2.0.1 • Published 17 days ago

@sjsf/form v2.0.1

Weekly downloads
-
License
(MIT AND Apache-2...
Repository
github
Last release
17 days ago

@sjsf/form

Svelte 5 library for creating forms based on JSON schema. Unofficial port of react-jsonschema-form.

Installation

Install the library, basic theme and ajv for validation.

npm install @sjsf/form @sjsf/basic-theme @sjsf/ajv8-validator ajv@8

Usage

<script lang="ts">
  import { createForm, BasicForm, type Schema } from '@sjsf/form';
  import { resolver } from '@sjsf/form/resolvers/basic';
  import { translation } from '@sjsf/form/translations/en';
  import { theme } from '@sjsf/basic-theme';
  import { createFormValidator } from "@sjsf/ajv8-validator";

  const validator = createFormValidator();

  const schema: Schema = {
    title: 'Tasks',
    type: 'array',
    items: {
      type: 'object',
      properties: {
        name: {
          type: 'string',
          title: 'Name',
        },
        description: {
          type: 'string',
          title: 'Description',
        },
      },
      required: ["name"]
    },
  }

  const form = createForm({
    theme,
    schema,
    resolver
    validator,
    translation,
    onSubmit: console.log
  })
</script>

<BasicForm {form} />

License

This project includes modifications of code from react-jsonschema-form, which is licensed under the Apache License, Version 2.0. The rest of the project is under the MIT license.

See LICENSE-MIT and LICENSE-APACHE for details.

See also

2.0.0-next.15

25 days ago

2.0.0-next.8

3 months ago

2.0.0-next.9

2 months ago

2.0.0-next.6

3 months ago

2.0.0-next.7

3 months ago

2.0.0-next.4

3 months ago

2.0.0-next.5

3 months ago

1.8.0

6 months ago

2.0.0-next.10

2 months ago

1.6.1

7 months ago

2.0.0-next.11

2 months ago

1.6.0

7 months ago

2.0.0-next.12

1 month ago

2.0.0-next.13

1 month ago

1.4.0

8 months ago

2.0.0-next.14

1 month ago

2.0.0-next.2

4 months ago

2.0.0-next.3

3 months ago

2.0.0-next.0

4 months ago

2.0.0-next.1

4 months ago

2.0.1

17 days ago

2.0.0

17 days ago

1.9.2

5 months ago

1.9.1

5 months ago

1.9.0

5 months ago

1.7.0

7 months ago

1.5.1

8 months ago

1.5.0

8 months ago

1.3.0

8 months ago

1.2.0

8 months ago

1.1.1

8 months ago

1.1.0

8 months ago

1.1.2

8 months ago

1.0.0

8 months ago

0.2.7

8 months ago

0.2.6

8 months ago

0.2.3

8 months ago

0.2.2

8 months ago

0.2.5

8 months ago

0.2.4

8 months ago

0.2.1

8 months ago

0.2.0

9 months ago

0.1.0

9 months ago

0.0.6

9 months ago

0.0.5

9 months ago

0.0.4

9 months ago

0.0.3

9 months ago

0.0.2

9 months ago

0.0.1

9 months ago