claritykit-svelte
Version:
A comprehensive Svelte component library focused on accessibility, ADHD-optimized design, developer experience, and full SSR compatibility
20 lines • 655 B
TypeScript
interface Props {
name?: string;
legend?: string;
description?: string;
required?: boolean;
disabled?: boolean;
showValidation?: boolean;
showContactForm?: boolean;
showConditionalFields?: boolean;
showAddressForm?: boolean;
showPaymentForm?: boolean;
showMultiStepForm?: boolean;
showFormWithErrors?: boolean;
showAsyncValidation?: boolean;
showComprehensiveForm?: boolean;
}
declare const FormGroupStories: import("svelte").Component<Props, {}, "">;
type FormGroupStories = ReturnType<typeof FormGroupStories>;
export default FormGroupStories;
//# sourceMappingURL=FormGroupStories.svelte.d.ts.map