svelte-ux icon indicating copy to clipboard operation
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: ![{8A205933-C1B8-4970-AF0F-1441772BEB7E}](https://github.com/user-attachments/assets/f796c579-ffe8-49ad-9a65-48e99f210d15)

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...