UNPKG

gov-gui

Version:

Gov UI Component Library Typscript Build

122 lines (121 loc) 3.17 kB
import '../../global/animate.min.css'; /** * The Dropdown component allows users to select an option from a list. * It can display a heading, subtitle, and a list of options, and has * interactivity to toggle between opening and closing the dropdown. */ declare const _default: { title: string; tags: 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; }; }; 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; }; }; selectedOption: { control: string; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; category: string; }; }; isOpen: { control: string; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; category: string; }; }; }; }; export default _default; export declare const Dropdown: any;