@andreagiugni/tailwind-dashboard-ui 0.1.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -16
- package/dist/index.cjs +288 -24
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +75 -36
- package/dist/index.d.ts +75 -36
- package/dist/index.js +288 -25
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -137,30 +137,8 @@ interface DropzoneProps {
|
|
|
137
137
|
/** Drag-and-drop file upload area — dependency-free (native HTML5 drag/drop). */
|
|
138
138
|
declare const Dropzone: React.FC<DropzoneProps>;
|
|
139
139
|
|
|
140
|
-
interface TableProps extends React.TableHTMLAttributes<HTMLTableElement> {
|
|
141
|
-
}
|
|
142
|
-
declare const Table: React.FC<TableProps>;
|
|
143
|
-
interface TableSectionProps extends React.HTMLAttributes<HTMLTableSectionElement> {
|
|
144
|
-
}
|
|
145
|
-
declare const TableHeader: React.FC<TableSectionProps>;
|
|
146
|
-
declare const TableBody: React.FC<TableSectionProps>;
|
|
147
|
-
interface TableRowProps extends React.HTMLAttributes<HTMLTableRowElement> {
|
|
148
|
-
}
|
|
149
|
-
declare const TableRow: React.FC<TableRowProps>;
|
|
150
|
-
interface TableCellProps extends React.TdHTMLAttributes<HTMLTableCellElement> {
|
|
151
|
-
isHeader?: boolean;
|
|
152
|
-
}
|
|
153
|
-
declare const TableCell: React.FC<TableCellProps>;
|
|
154
|
-
|
|
155
|
-
interface PaginationProps {
|
|
156
|
-
currentPage: number;
|
|
157
|
-
totalPages: number;
|
|
158
|
-
onPageChange: (page: number) => void;
|
|
159
|
-
}
|
|
160
|
-
declare const Pagination: React.FC<PaginationProps>;
|
|
161
|
-
|
|
162
140
|
type SortDirection = "asc" | "desc";
|
|
163
|
-
interface
|
|
141
|
+
interface TableColumn<T> {
|
|
164
142
|
/** Key into the row object — also the value used for sorting/searching. */
|
|
165
143
|
key: Extract<keyof T, string>;
|
|
166
144
|
/** Column header label. */
|
|
@@ -174,12 +152,17 @@ interface DataTableColumn<T> {
|
|
|
174
152
|
/** Extra classes applied to this column's header and body cells. */
|
|
175
153
|
className?: string;
|
|
176
154
|
}
|
|
177
|
-
interface
|
|
155
|
+
interface TableProps<T = Record<string, unknown>> extends Omit<React.TableHTMLAttributes<HTMLTableElement>, "children"> {
|
|
156
|
+
/**
|
|
157
|
+
* Composable content (Table / TableHeader / TableBody / TableRow / TableCell).
|
|
158
|
+
* Used when `columns` is **not** provided.
|
|
159
|
+
*/
|
|
160
|
+
children?: React.ReactNode;
|
|
178
161
|
/** The array of row objects to display. */
|
|
179
|
-
data
|
|
180
|
-
/** Column definitions
|
|
181
|
-
columns
|
|
182
|
-
/**
|
|
162
|
+
data?: T[];
|
|
163
|
+
/** Column definitions. Providing this switches Table into data-driven mode. */
|
|
164
|
+
columns?: TableColumn<T>[];
|
|
165
|
+
/** Maximum number of rows shown per page. Default: 10. */
|
|
183
166
|
rowsPerPage?: number;
|
|
184
167
|
/** Options for the "Show N entries" selector. Default: [5, 10, 25, 50]. Pass [] to hide it. */
|
|
185
168
|
rowsPerPageOptions?: number[];
|
|
@@ -187,12 +170,13 @@ interface DataTableProps<T> {
|
|
|
187
170
|
pagination?: boolean;
|
|
188
171
|
/** Render the "Show N entries" selector (only when pagination is on). Default: true. */
|
|
189
172
|
showSizeSelector?: boolean;
|
|
190
|
-
/**
|
|
191
|
-
|
|
173
|
+
/**
|
|
174
|
+
* Fields matched when searching. The search input is shown **only** when this
|
|
175
|
+
* is a non-empty array — omit it (or pass `[]`) to hide the search box.
|
|
176
|
+
*/
|
|
177
|
+
searchKeys?: Extract<keyof T, string>[];
|
|
192
178
|
/** Placeholder for the search field. Default: "Search...". */
|
|
193
179
|
searchPlaceholder?: string;
|
|
194
|
-
/** Keys matched when searching. Defaults to every column key. */
|
|
195
|
-
searchKeys?: Extract<keyof T, string>[];
|
|
196
180
|
/** Column sorted on first render. */
|
|
197
181
|
defaultSortKey?: Extract<keyof T, string>;
|
|
198
182
|
/** Initial sort direction. Default: "asc". */
|
|
@@ -203,10 +187,26 @@ interface DataTableProps<T> {
|
|
|
203
187
|
onRowClick?: (row: T, index: number) => void;
|
|
204
188
|
/** Shown when no rows match. Default: "No matching records". */
|
|
205
189
|
emptyContent?: React.ReactNode;
|
|
206
|
-
/** Extra classes for the outer wrapper. */
|
|
207
|
-
className?: string;
|
|
208
190
|
}
|
|
209
|
-
|
|
191
|
+
interface TableSectionProps extends React.HTMLAttributes<HTMLTableSectionElement> {
|
|
192
|
+
}
|
|
193
|
+
declare const TableHeader: React.FC<TableSectionProps>;
|
|
194
|
+
declare const TableBody: React.FC<TableSectionProps>;
|
|
195
|
+
interface TableRowProps extends React.HTMLAttributes<HTMLTableRowElement> {
|
|
196
|
+
}
|
|
197
|
+
declare const TableRow: React.FC<TableRowProps>;
|
|
198
|
+
interface TableCellProps extends React.TdHTMLAttributes<HTMLTableCellElement> {
|
|
199
|
+
isHeader?: boolean;
|
|
200
|
+
}
|
|
201
|
+
declare const TableCell: React.FC<TableCellProps>;
|
|
202
|
+
declare function Table<T extends Record<string, unknown> = Record<string, unknown>>({ children, data, columns, rowsPerPage, rowsPerPageOptions, pagination, showSizeSelector, searchKeys, searchPlaceholder, defaultSortKey, defaultSortDirection, getRowId, onRowClick, emptyContent, className, ...rest }: TableProps<T>): React.JSX.Element;
|
|
203
|
+
|
|
204
|
+
interface PaginationProps {
|
|
205
|
+
currentPage: number;
|
|
206
|
+
totalPages: number;
|
|
207
|
+
onPageChange: (page: number) => void;
|
|
208
|
+
}
|
|
209
|
+
declare const Pagination: React.FC<PaginationProps>;
|
|
210
210
|
|
|
211
211
|
interface BreadcrumbItem {
|
|
212
212
|
label: string;
|
|
@@ -224,6 +224,45 @@ interface ThemeToggleButtonProps extends React.ButtonHTMLAttributes<HTMLButtonEl
|
|
|
224
224
|
}
|
|
225
225
|
declare const ThemeToggleButton: React.FC<ThemeToggleButtonProps>;
|
|
226
226
|
|
|
227
|
+
interface CardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title">, ColorOverrideProps {
|
|
228
|
+
/** Heading shown above the description. */
|
|
229
|
+
title?: React.ReactNode;
|
|
230
|
+
/** Supporting text rendered under the title. */
|
|
231
|
+
description?: React.ReactNode;
|
|
232
|
+
/** Icon rendered in a rounded square above the title. */
|
|
233
|
+
icon?: React.ReactNode;
|
|
234
|
+
/** Optional cover image source. Rendered on top (or alongside when `horizontal`). */
|
|
235
|
+
image?: string;
|
|
236
|
+
/** Alt text for the cover image. */
|
|
237
|
+
imageAlt?: string;
|
|
238
|
+
/** Lay the image alongside the content instead of on top. */
|
|
239
|
+
horizontal?: boolean;
|
|
240
|
+
/** Footer area, e.g. a link or a `Button` call-to-action. */
|
|
241
|
+
footer?: React.ReactNode;
|
|
242
|
+
/** Custom body content, rendered after the description. */
|
|
243
|
+
children?: React.ReactNode;
|
|
244
|
+
}
|
|
245
|
+
declare const Card: React.FC<CardProps>;
|
|
246
|
+
|
|
247
|
+
type ToastVariant = "success" | "danger" | "warning" | "info";
|
|
248
|
+
interface ToastProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title">, ColorOverrideProps {
|
|
249
|
+
/** Color/severity variant. */
|
|
250
|
+
variant?: ToastVariant;
|
|
251
|
+
title: React.ReactNode;
|
|
252
|
+
message?: React.ReactNode;
|
|
253
|
+
/** Override the default variant icon. */
|
|
254
|
+
icon?: React.ReactNode;
|
|
255
|
+
/** Hide the leading icon entirely. */
|
|
256
|
+
hideIcon?: boolean;
|
|
257
|
+
/** Render the dismiss button (default `true`). */
|
|
258
|
+
showCloseButton?: boolean;
|
|
259
|
+
/** Called when the close button is clicked. */
|
|
260
|
+
onClose?: () => void;
|
|
261
|
+
/** Hide the colored accent bar at the bottom. */
|
|
262
|
+
hideAccentBar?: boolean;
|
|
263
|
+
}
|
|
264
|
+
declare const Toast: React.FC<ToastProps>;
|
|
265
|
+
|
|
227
266
|
type AccordionSelectionMode = "single" | "multiple";
|
|
228
267
|
interface AccordionItemProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
229
268
|
/** Unique key identifying this item. */
|
|
@@ -570,4 +609,4 @@ interface SliderProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>,
|
|
|
570
609
|
}
|
|
571
610
|
declare const Slider: React.FC<SliderProps>;
|
|
572
611
|
|
|
573
|
-
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, type AccordionSelectionMode, Alert, type AlertProps, type AlertVariant, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, AvatarText, type AvatarTextProps, Badge, type BadgeColor, type BadgeProps, type BadgeSize, type BadgeVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, type ChipColor, type ChipProps, type ChipSize, type ChipVariant, Code, type CodeColor, type CodeProps, type CodeSize, ColorOverrideProps,
|
|
612
|
+
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, type AccordionSelectionMode, Alert, type AlertProps, type AlertVariant, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, AvatarText, type AvatarTextProps, Badge, type BadgeColor, type BadgeProps, type BadgeSize, type BadgeVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonProps, Card, type CardProps, Checkbox, type CheckboxProps, Chip, type ChipColor, type ChipProps, type ChipSize, type ChipVariant, Code, type CodeColor, type CodeProps, type CodeSize, ColorOverrideProps, DatePicker, type DatePickerProps, DateTimePicker, type DateTimePickerProps, Drawer, type DrawerPlacement, type DrawerProps, Dropdown, DropdownItem, type DropdownItemProps, type DropdownItemVariant, type DropdownProps, Dropzone, type DropzoneProps, FileInput, type FileInputProps, Form, type FormProps, Input, type InputProps, Label, type LabelProps, Modal, type ModalProps, type ModalVariant, MultiSelect, type MultiSelectProps, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, Popover, type PopoverPlacement, type PopoverProps, Progress, type ProgressColor, type ProgressProps, type ProgressSize, Radio, type RadioProps, RadioSm, type RadioSmProps, Ribbon, type RibbonColor, type RibbonPosition, type RibbonProps, type RibbonVariant, Select, type SelectProps, Skeleton, type SkeletonProps, Slider, type SliderColor, type SliderProps, Snippet, type SnippetProps, type SnippetSize, type SortDirection, Spinner, type SpinnerColor, type SpinnerProps, type SpinnerSize, Switch, type SwitchProps, Tab, type TabProps, Table, TableBody, TableCell, type TableCellProps, type TableColumn, TableHeader, type TableProps, TableRow, type TableRowProps, type TableSectionProps, Tabs, type TabsProps, type TabsVariant, TextArea, type TextAreaProps, ThemeToggleButton, type ThemeToggleButtonProps, Toast, type ToastProps, type ToastVariant, Tooltip, type TooltipPlacement, type TooltipProps, cn };
|
package/dist/index.d.ts
CHANGED
|
@@ -137,30 +137,8 @@ interface DropzoneProps {
|
|
|
137
137
|
/** Drag-and-drop file upload area — dependency-free (native HTML5 drag/drop). */
|
|
138
138
|
declare const Dropzone: React.FC<DropzoneProps>;
|
|
139
139
|
|
|
140
|
-
interface TableProps extends React.TableHTMLAttributes<HTMLTableElement> {
|
|
141
|
-
}
|
|
142
|
-
declare const Table: React.FC<TableProps>;
|
|
143
|
-
interface TableSectionProps extends React.HTMLAttributes<HTMLTableSectionElement> {
|
|
144
|
-
}
|
|
145
|
-
declare const TableHeader: React.FC<TableSectionProps>;
|
|
146
|
-
declare const TableBody: React.FC<TableSectionProps>;
|
|
147
|
-
interface TableRowProps extends React.HTMLAttributes<HTMLTableRowElement> {
|
|
148
|
-
}
|
|
149
|
-
declare const TableRow: React.FC<TableRowProps>;
|
|
150
|
-
interface TableCellProps extends React.TdHTMLAttributes<HTMLTableCellElement> {
|
|
151
|
-
isHeader?: boolean;
|
|
152
|
-
}
|
|
153
|
-
declare const TableCell: React.FC<TableCellProps>;
|
|
154
|
-
|
|
155
|
-
interface PaginationProps {
|
|
156
|
-
currentPage: number;
|
|
157
|
-
totalPages: number;
|
|
158
|
-
onPageChange: (page: number) => void;
|
|
159
|
-
}
|
|
160
|
-
declare const Pagination: React.FC<PaginationProps>;
|
|
161
|
-
|
|
162
140
|
type SortDirection = "asc" | "desc";
|
|
163
|
-
interface
|
|
141
|
+
interface TableColumn<T> {
|
|
164
142
|
/** Key into the row object — also the value used for sorting/searching. */
|
|
165
143
|
key: Extract<keyof T, string>;
|
|
166
144
|
/** Column header label. */
|
|
@@ -174,12 +152,17 @@ interface DataTableColumn<T> {
|
|
|
174
152
|
/** Extra classes applied to this column's header and body cells. */
|
|
175
153
|
className?: string;
|
|
176
154
|
}
|
|
177
|
-
interface
|
|
155
|
+
interface TableProps<T = Record<string, unknown>> extends Omit<React.TableHTMLAttributes<HTMLTableElement>, "children"> {
|
|
156
|
+
/**
|
|
157
|
+
* Composable content (Table / TableHeader / TableBody / TableRow / TableCell).
|
|
158
|
+
* Used when `columns` is **not** provided.
|
|
159
|
+
*/
|
|
160
|
+
children?: React.ReactNode;
|
|
178
161
|
/** The array of row objects to display. */
|
|
179
|
-
data
|
|
180
|
-
/** Column definitions
|
|
181
|
-
columns
|
|
182
|
-
/**
|
|
162
|
+
data?: T[];
|
|
163
|
+
/** Column definitions. Providing this switches Table into data-driven mode. */
|
|
164
|
+
columns?: TableColumn<T>[];
|
|
165
|
+
/** Maximum number of rows shown per page. Default: 10. */
|
|
183
166
|
rowsPerPage?: number;
|
|
184
167
|
/** Options for the "Show N entries" selector. Default: [5, 10, 25, 50]. Pass [] to hide it. */
|
|
185
168
|
rowsPerPageOptions?: number[];
|
|
@@ -187,12 +170,13 @@ interface DataTableProps<T> {
|
|
|
187
170
|
pagination?: boolean;
|
|
188
171
|
/** Render the "Show N entries" selector (only when pagination is on). Default: true. */
|
|
189
172
|
showSizeSelector?: boolean;
|
|
190
|
-
/**
|
|
191
|
-
|
|
173
|
+
/**
|
|
174
|
+
* Fields matched when searching. The search input is shown **only** when this
|
|
175
|
+
* is a non-empty array — omit it (or pass `[]`) to hide the search box.
|
|
176
|
+
*/
|
|
177
|
+
searchKeys?: Extract<keyof T, string>[];
|
|
192
178
|
/** Placeholder for the search field. Default: "Search...". */
|
|
193
179
|
searchPlaceholder?: string;
|
|
194
|
-
/** Keys matched when searching. Defaults to every column key. */
|
|
195
|
-
searchKeys?: Extract<keyof T, string>[];
|
|
196
180
|
/** Column sorted on first render. */
|
|
197
181
|
defaultSortKey?: Extract<keyof T, string>;
|
|
198
182
|
/** Initial sort direction. Default: "asc". */
|
|
@@ -203,10 +187,26 @@ interface DataTableProps<T> {
|
|
|
203
187
|
onRowClick?: (row: T, index: number) => void;
|
|
204
188
|
/** Shown when no rows match. Default: "No matching records". */
|
|
205
189
|
emptyContent?: React.ReactNode;
|
|
206
|
-
/** Extra classes for the outer wrapper. */
|
|
207
|
-
className?: string;
|
|
208
190
|
}
|
|
209
|
-
|
|
191
|
+
interface TableSectionProps extends React.HTMLAttributes<HTMLTableSectionElement> {
|
|
192
|
+
}
|
|
193
|
+
declare const TableHeader: React.FC<TableSectionProps>;
|
|
194
|
+
declare const TableBody: React.FC<TableSectionProps>;
|
|
195
|
+
interface TableRowProps extends React.HTMLAttributes<HTMLTableRowElement> {
|
|
196
|
+
}
|
|
197
|
+
declare const TableRow: React.FC<TableRowProps>;
|
|
198
|
+
interface TableCellProps extends React.TdHTMLAttributes<HTMLTableCellElement> {
|
|
199
|
+
isHeader?: boolean;
|
|
200
|
+
}
|
|
201
|
+
declare const TableCell: React.FC<TableCellProps>;
|
|
202
|
+
declare function Table<T extends Record<string, unknown> = Record<string, unknown>>({ children, data, columns, rowsPerPage, rowsPerPageOptions, pagination, showSizeSelector, searchKeys, searchPlaceholder, defaultSortKey, defaultSortDirection, getRowId, onRowClick, emptyContent, className, ...rest }: TableProps<T>): React.JSX.Element;
|
|
203
|
+
|
|
204
|
+
interface PaginationProps {
|
|
205
|
+
currentPage: number;
|
|
206
|
+
totalPages: number;
|
|
207
|
+
onPageChange: (page: number) => void;
|
|
208
|
+
}
|
|
209
|
+
declare const Pagination: React.FC<PaginationProps>;
|
|
210
210
|
|
|
211
211
|
interface BreadcrumbItem {
|
|
212
212
|
label: string;
|
|
@@ -224,6 +224,45 @@ interface ThemeToggleButtonProps extends React.ButtonHTMLAttributes<HTMLButtonEl
|
|
|
224
224
|
}
|
|
225
225
|
declare const ThemeToggleButton: React.FC<ThemeToggleButtonProps>;
|
|
226
226
|
|
|
227
|
+
interface CardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title">, ColorOverrideProps {
|
|
228
|
+
/** Heading shown above the description. */
|
|
229
|
+
title?: React.ReactNode;
|
|
230
|
+
/** Supporting text rendered under the title. */
|
|
231
|
+
description?: React.ReactNode;
|
|
232
|
+
/** Icon rendered in a rounded square above the title. */
|
|
233
|
+
icon?: React.ReactNode;
|
|
234
|
+
/** Optional cover image source. Rendered on top (or alongside when `horizontal`). */
|
|
235
|
+
image?: string;
|
|
236
|
+
/** Alt text for the cover image. */
|
|
237
|
+
imageAlt?: string;
|
|
238
|
+
/** Lay the image alongside the content instead of on top. */
|
|
239
|
+
horizontal?: boolean;
|
|
240
|
+
/** Footer area, e.g. a link or a `Button` call-to-action. */
|
|
241
|
+
footer?: React.ReactNode;
|
|
242
|
+
/** Custom body content, rendered after the description. */
|
|
243
|
+
children?: React.ReactNode;
|
|
244
|
+
}
|
|
245
|
+
declare const Card: React.FC<CardProps>;
|
|
246
|
+
|
|
247
|
+
type ToastVariant = "success" | "danger" | "warning" | "info";
|
|
248
|
+
interface ToastProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title">, ColorOverrideProps {
|
|
249
|
+
/** Color/severity variant. */
|
|
250
|
+
variant?: ToastVariant;
|
|
251
|
+
title: React.ReactNode;
|
|
252
|
+
message?: React.ReactNode;
|
|
253
|
+
/** Override the default variant icon. */
|
|
254
|
+
icon?: React.ReactNode;
|
|
255
|
+
/** Hide the leading icon entirely. */
|
|
256
|
+
hideIcon?: boolean;
|
|
257
|
+
/** Render the dismiss button (default `true`). */
|
|
258
|
+
showCloseButton?: boolean;
|
|
259
|
+
/** Called when the close button is clicked. */
|
|
260
|
+
onClose?: () => void;
|
|
261
|
+
/** Hide the colored accent bar at the bottom. */
|
|
262
|
+
hideAccentBar?: boolean;
|
|
263
|
+
}
|
|
264
|
+
declare const Toast: React.FC<ToastProps>;
|
|
265
|
+
|
|
227
266
|
type AccordionSelectionMode = "single" | "multiple";
|
|
228
267
|
interface AccordionItemProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
229
268
|
/** Unique key identifying this item. */
|
|
@@ -570,4 +609,4 @@ interface SliderProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>,
|
|
|
570
609
|
}
|
|
571
610
|
declare const Slider: React.FC<SliderProps>;
|
|
572
611
|
|
|
573
|
-
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, type AccordionSelectionMode, Alert, type AlertProps, type AlertVariant, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, AvatarText, type AvatarTextProps, Badge, type BadgeColor, type BadgeProps, type BadgeSize, type BadgeVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonProps, Checkbox, type CheckboxProps, Chip, type ChipColor, type ChipProps, type ChipSize, type ChipVariant, Code, type CodeColor, type CodeProps, type CodeSize, ColorOverrideProps,
|
|
612
|
+
export { Accordion, AccordionItem, type AccordionItemProps, type AccordionProps, type AccordionSelectionMode, Alert, type AlertProps, type AlertVariant, Avatar, type AvatarProps, type AvatarSize, type AvatarStatus, AvatarText, type AvatarTextProps, Badge, type BadgeColor, type BadgeProps, type BadgeSize, type BadgeVariant, Breadcrumb, type BreadcrumbItem, type BreadcrumbProps, Button, type ButtonProps, Card, type CardProps, Checkbox, type CheckboxProps, Chip, type ChipColor, type ChipProps, type ChipSize, type ChipVariant, Code, type CodeColor, type CodeProps, type CodeSize, ColorOverrideProps, DatePicker, type DatePickerProps, DateTimePicker, type DateTimePickerProps, Drawer, type DrawerPlacement, type DrawerProps, Dropdown, DropdownItem, type DropdownItemProps, type DropdownItemVariant, type DropdownProps, Dropzone, type DropzoneProps, FileInput, type FileInputProps, Form, type FormProps, Input, type InputProps, Label, type LabelProps, Modal, type ModalProps, type ModalVariant, MultiSelect, type MultiSelectProps, Pagination, type PaginationProps, PasswordInput, type PasswordInputProps, Popover, type PopoverPlacement, type PopoverProps, Progress, type ProgressColor, type ProgressProps, type ProgressSize, Radio, type RadioProps, RadioSm, type RadioSmProps, Ribbon, type RibbonColor, type RibbonPosition, type RibbonProps, type RibbonVariant, Select, type SelectProps, Skeleton, type SkeletonProps, Slider, type SliderColor, type SliderProps, Snippet, type SnippetProps, type SnippetSize, type SortDirection, Spinner, type SpinnerColor, type SpinnerProps, type SpinnerSize, Switch, type SwitchProps, Tab, type TabProps, Table, TableBody, TableCell, type TableCellProps, type TableColumn, TableHeader, type TableProps, TableRow, type TableRowProps, type TableSectionProps, Tabs, type TabsProps, type TabsVariant, TextArea, type TextAreaProps, ThemeToggleButton, type ThemeToggleButtonProps, Toast, type ToastProps, type ToastVariant, Tooltip, type TooltipPlacement, type TooltipProps, cn };
|