Menu
Libraries |
Category

svelte-formly

  • ⚡️ Dynamic Forms: Generates dynamic and reactive forms with ease.
  • 🛠 Extensible: Supports custom field types and custom validation rules.
  • 📝 Documentation: Comprehensive guide available at svelte.formly-js.com .
  • 🎯 Target Audience: Developers looking for a flexible form generation solution in Svelte.

Key Features:

  • Supports Svelte as the primary framework.
  • Declarative field configuration with type, name, attributes, validation rules, and messages.
  • Event handling (e.g., onSubmit) for form interactions.

Example Use Case:

const fields: IField[] = [
  {
    type: 'input',
    name: 'firstname',
    attributes: { type: 'text', placeholder: 'Tap your first name' },
    rules: ['required', 'min:3', 'max:10'],
    messages: { /* Custom validation messages */ }
  }
];
  • Validation: Built-in support for rules like required, min, max with customizable error messages.

sveltesvelte-v3svelte-frameworksvelte-jssvelte-formformformsformly

Comments