A svelte component library that allows complex form validation
npm install sveltejs-formSvelteJSForm is a component library for svelte that allows for complex form validation.
``$ npm install sveltejs-form`
The library contains a Form component with a required id prop, and a FormField component with required type prop. The separation of both components allows for complex DOM structure with diverse elements within the form tag as is sometimes necessary.
`
`
``
positiveRegex: {
'No commas are allowed': /,/
}
} } />`$3
The negativeRegex prop allows you to define props that will trigger errors when the value of the field doesn't match the regex.`
negativeRegex: {
'The field must contain a comma': /,/
}
} } />
``
group: 'field-group',
groupMin: 1,
errorGroup: 'At least one of these fields is required'
} } />
``
group: 'field-group',
identicalGroup: true,
errorGroup: 'These fields must be identical'
} } />
Global configuration can be changed by calling the setConfiguration method:
``
import { setConfiguration } from 'sveltejs-form';
setConfiguration({
libClassName: 'svelte-form';
defaultEmptyMessage: 'This field is mandatory';
defaultGroupMessage: 'At least {x} fields must be filled in';
});
You can register libraries or custom components as form components with the
registerComponent function. The target component will receive the onInput,
onFocus, onBlur, onChange methods that will need to be bound to appropriate events.
`
import { registerComponent } from 'sveltejs-form';
import { AutoComplete } from 'svelte-auto-completion';
// the AutoComplete component takes onInput, onFocus, onBlur props
registerComponent('autocomplete', AutoComplete);
``