svelte-forms-lib icon indicating copy to clipboard operation
svelte-forms-lib copied to clipboard

📝. A lightweight library for managing forms in Svelte

Results 63 svelte-forms-lib issues
Sort by recently updated
recently updated
newest added

There is the case of a lazy validation schema. In that case, fields needed for errors can only be retrieved if schema's `builder` method is called. Lazy schema definition according...

I've created this library during a simple exploration of svelte framework, and genuinely enjoyed what I've learned about svelte. However, I'm not actively using svelte in my daily work nor...

This will help bind nested JSON object properties (including array properties) to `Form`. Similar to `Felte` [nested-forms](https://felte.dev/docs/svelte/nested-forms) Example: ```js export const policySchema: ObjectSchema = object({ id: string().defined(), displayName: string().required(), description:...

Bumps [svelte](https://github.com/sveltejs/svelte) from 3.40.2 to 3.49.0. Changelog Sourced from svelte's changelog. 3.49.0 Improve performance of string escaping during SSR (#5701) Add ComponentType and ComponentProps convenience types (#6770) Add support for...

dependencies

Set errors imperatively on certain field/s, while validating (inside the callback provided to `onSubmit`) a form or after creating a form. ### Problem to solve As a user I want...

enhancement

### Summary ### Steps to reproduce Copy paste the form array code example [here](https://svelte-forms-lib-sapper-docs.vercel.app/array) and change the script lang for `ts` ### Example Project ``` import { createForm } from...

bug

Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.6 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...

dependencies

### Summary The `isValid` store is always `true` initially. This is unintended and it seems like this has not always been the case, since the example at https://svelte-forms-lib-sapper-docs-tjin.vercel.app/observables is working...

bug

Bumps [semantic-release](https://github.com/semantic-release/semantic-release) from 17.4.7 to 19.0.3. Release notes Sourced from semantic-release's releases. v19.0.3 19.0.3 (2022-06-09) Bug Fixes log-repo: use the original form of the repo url to remove the need...

dependencies

### Summary According to my tests, the validation with nested object behaves in two different ways: * keys are actually nested (as expected) when validating the whole form (eg. on...

bug