UNPKG

@sjsf/shadcn4-theme

Version:

The shadcn-svelte based theme for svelte-jsonschema-form

13 lines (12 loc) 407 B
import '@sjsf/form/fields/extra-components/label'; import type { LabelProps } from '../types/label.js'; declare module '@sjsf/form' { interface UiOptions { shadcn4Label?: LabelProps; } } declare const Label: import("svelte").Component<import("@sjsf/form/fields/components").ComponentCommonProps & { title: string; }, {}, "">; type Label = ReturnType<typeof Label>; export default Label;