0.1.18 • Published 2 years ago

schemy-forms-material v0.1.18

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

Schemy form

The best friend for your frontends.

Usage

Define your schema and we will generate the forms for you:

import { Schemy } from 'schemy-ts';
import { SchemyForm } from 'schemy-forms';

export const Page = () => {
    // We will generate the correct inputs or select based on your schema
    const user = new Schemy({
        name: {
            type: String,
            required: true
        },
        age: {
            type: Number,
            min: 18
        },
        sex: {
            type: String,
            enum: ['male','female','other']
        }
    });

    return (
        <SchemyForm showInlineErrors={true} schema={user} />
    );
}
0.1.18

2 years ago

0.1.16

2 years ago

0.1.15

2 years ago

0.1.14

2 years ago

0.1.13

2 years ago

0.1.12

2 years ago

0.1.11

2 years ago

0.1.10

2 years ago

0.1.9

2 years ago

0.1.8

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago