gov-gui
Version:
Gov UI Component Library Typscript Build
112 lines (111 loc) • 2.94 kB
TypeScript
import '../../global/animate.min.css';
/**
* The ComboBox component is a searchable dropdown that allows users to filter options as they type.
* It displays a list of predefined options and lets users select one. The dropdown can be opened manually or automatically when the input is clicked or typed in.
*/
declare const _default: {
title: string;
tags: string[];
parameters: {
actions: {
handles: string[];
};
};
argTypes: {
options: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
label: {
control: string;
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
description: {
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;
};
};
onSelect: {
description: string;
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
category: string;
};
};
};
};
export default _default;
export declare const ComboBox: any;