UNPKG

gov-gui

Version:

Gov UI Component Library Typscript Build

100 lines (99 loc) 2.8 kB
import '../../global/animate.min.css'; /** Chips are compact visual elements used to represent an input, attribute, or action. * They can display information like tags or categories, enhancing user interactions * by allowing selections or indicating states. */ declare const _default: { title: string; tags: string[]; argTypes: { selected: { control: string; description: string; table: { type: { summary: string; }; category: string; defaultValue: { summary: string; }; }; }; disabled: { control: string; description: string; table: { type: { summary: string; }; category: string; defaultValue: { summary: string; }; }; }; label: { control: string; description: string; table: { type: { summary: string; }; category: string; defaultValue: { summary: 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; }; }; }; }; export default _default; export declare const Default: any; /** A chip component with selected property set to true. * This indicates that the chip is currently selected. */ export declare const Selected: any; /** A chip component with the disabled property set to true. * This chip cannot be selected in this state. */ export declare const Disabled: any;