UNPKG

daisy-data-components

Version:

The "daisy-data-components" NPM package transforms general UI components from daisyUI into specialized "data components", such as Data Tables and Data Date Pickers, optimized for working with data-centric applications. It provides powerful functionality t

9 lines (7 loc) 185 B
export type DataSelectOption<T> = { label: string; value?: T; disabled?: boolean; selected?: boolean; }; export type DataSelectOptions<T> = Array<DataSelectOption<T>>;