svelte-ux
svelte-ux copied to clipboard
Collection of Svelte components, actions, stores, and utilities to build highly interactive applications.
Results
142
svelte-ux issues
Sort by
recently updated
recently updated
newest added
Useful for categorizing buttons into categories Like this: 
Is there a possibility for forms and their respective validation to use complex schemas, e.g. ``` z.object({ name: z.string().min(1), address: z.object({ street: z.string(), postalCode: z.string(), }), }) ``` The form...