UNPKG

gov-gui

Version:

Gov UI Component Library Typscript Build

165 lines (164 loc) 4.23 kB
import '../../global/animate.min.css'; /** * Radio buttons allow users to select a single option from a set of predefined choices. * They are typically used in forms where only one selection is allowed within a group. */ declare const _default: { title: string; tags: string[]; parameters: { actions: { handles: string[]; }; }; argTypes: { heading: { control: string; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; category: string; }; }; subtitle: { control: string; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; category: string; }; }; options: { control: string; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; category: string; }; }; required: { control: string; description: string; table: { type: { summary: string; }; defaultValue: { summary: boolean; }; category: string; }; }; requiredErrorMessage: { control: string; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; category: string; }; }; animation: { control: string; options: string[]; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; category: string; }; }; animationDelay: { control: string; options: string[]; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; category: string; }; }; animationSpeed: { control: string; options: string[]; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; category: string; }; }; selectedChange: { action: string; description: string; table: { type: { summary: string; }; defaultValue: { summary: () => void; }; category: string; }; }; value: { control: string; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; category: string; }; }; validate: { control: string; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; category: string; }; }; }; }; export default _default; export declare const RadioButtons: any;