@scripso-homepad/ui 0.4.2 → 0.4.4
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/dist/{chunk-WDSMJWKC.js → chunk-66WR57JJ.js} +35 -3
- package/dist/chunk-66WR57JJ.js.map +1 -0
- package/dist/index.cjs +2258 -384
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +134 -1
- package/dist/index.d.ts +134 -1
- package/dist/index.js +1959 -97
- package/dist/index.js.map +1 -1
- package/dist/web/index.cjs +30650 -1009
- package/dist/web/index.cjs.map +1 -1
- package/dist/web/index.css +78 -0
- package/dist/web/index.css.map +1 -0
- package/dist/web/index.d.cts +267 -6
- package/dist/web/index.d.ts +267 -6
- package/dist/web/index.js +30179 -601
- package/dist/web/index.js.map +1 -1
- package/package.json +5 -4
- package/src/components/Calendar.stories.tsx +337 -0
- package/src/components/Calendar.tsx +441 -0
- package/src/components/DatePicker.stories.tsx +219 -0
- package/src/components/DatePicker.tsx +366 -0
- package/src/components/Select.stories.tsx +134 -0
- package/src/components/Select.tsx +465 -0
- package/src/css.d.ts +1 -0
- package/src/icons/CalendarIcon.tsx +28 -0
- package/src/icons/CalendarIcon.web.tsx +34 -0
- package/src/icons/ChevronDownIcon.tsx +11 -4
- package/src/icons/ChevronDownIcon.web.tsx +6 -4
- package/src/icons/ChevronNavIcons.tsx +44 -0
- package/src/icons/ChevronNavIcons.web.tsx +57 -0
- package/src/icons/calendarIconPaths.ts +2 -0
- package/src/icons/chevronDownPath.ts +1 -0
- package/src/icons/chevronNavPaths.ts +2 -0
- package/src/index.ts +41 -0
- package/src/theme/calendar.ts +357 -0
- package/src/theme/select.ts +247 -0
- package/src/utils/calendarDays.ts +273 -0
- package/src/utils/calendarLocaleContext.tsx +95 -0
- package/src/utils/calendarLocalization.ts +187 -0
- package/src/utils/countryDropdownScrollStyles.ts +53 -13
- package/src/utils/formatMultiSelectDisplay.ts +56 -0
- package/src/web/components/Badge.stories.tsx +43 -0
- package/src/web/components/Badge.tsx +35 -0
- package/src/web/components/Pagination.stories.tsx +78 -0
- package/src/web/components/Pagination.tsx +153 -0
- package/src/web/components/StatusBadge.tsx +20 -0
- package/src/web/components/Table.stories.tsx +415 -0
- package/src/web/components/Table.tsx +3 -0
- package/src/web/components/TableActionButton.tsx +67 -0
- package/src/web/components/TableActionsMenu.tsx +208 -0
- package/src/web/components/TableIconText.tsx +23 -0
- package/src/web/components/TableRowStatusActions.tsx +33 -0
- package/src/web/components/TableStatusActionsCell.tsx +29 -0
- package/src/web/components/pagination-utils.ts +39 -0
- package/src/web/components/table/DataTable.tsx +123 -0
- package/src/web/components/table/TablePrimitives.tsx +214 -0
- package/src/web/components/table/TableScrollArea.tsx +51 -0
- package/src/web/components/table/constants.ts +59 -0
- package/src/web/components/table/data-table-class-names.ts +26 -0
- package/src/web/components/table/index.ts +44 -0
- package/src/web/components/table/table-row-context.tsx +19 -0
- package/src/web/components/table/use-horizontal-scroll-state.ts +72 -0
- package/src/web/components/table-scroll.css +81 -0
- package/src/web/hooks/useOnClickOutside.ts +20 -5
- package/src/web/icons/TableMenuActivateIcon.tsx +27 -0
- package/src/web/icons/TableMenuCheckIcon.tsx +27 -0
- package/src/web/icons/TableMenuCloseIcon.tsx +27 -0
- package/src/web/icons/TableMenuEditIcon.tsx +27 -0
- package/src/web/icons/TableMenuInfoIcon.tsx +27 -0
- package/src/web/icons/TableMenuRefreshIcon.tsx +27 -0
- package/src/web/icons/TableMenuSuspendIcon.tsx +34 -0
- package/src/web/icons/TableMenuTrashIcon.tsx +27 -0
- package/src/web/icons/TableMoreIcon.tsx +41 -0
- package/src/web/icons/TableSortIcon.tsx +37 -0
- package/src/web/index.ts +74 -0
- package/src/web/layout/AppHeader.stories.tsx +2 -0
- package/src/web/layout/AppHeader.tsx +18 -14
- package/src/web/layout/DashboardLayout.stories.tsx +1 -0
- package/src/web/layout/DashboardLayout.tsx +4 -4
- package/src/web/layout/story-helpers.tsx +10 -2
- package/dist/chunk-WDSMJWKC.js.map +0 -1
package/dist/web/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
|
-
import { ReactNode, RefObject } from 'react';
|
|
2
|
+
import { ReactNode, TdHTMLAttributes, HTMLAttributes, ThHTMLAttributes, ButtonHTMLAttributes, RefObject } from 'react';
|
|
3
3
|
import { StyleProp, ViewStyle } from 'react-native';
|
|
4
4
|
import { ClassValue } from 'clsx';
|
|
5
5
|
|
|
@@ -47,8 +47,9 @@ type AdminLayoutLabels = {
|
|
|
47
47
|
type AppHeaderProps = {
|
|
48
48
|
title: string;
|
|
49
49
|
labels: AdminHeaderLabels;
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
hasBuildingSelect?: boolean;
|
|
51
|
+
buildingOptions?: AdminBuildingOption[];
|
|
52
|
+
selectedBuildingId?: string;
|
|
52
53
|
className?: string;
|
|
53
54
|
buildingSelectClassName?: string;
|
|
54
55
|
searchClassName?: string;
|
|
@@ -66,7 +67,7 @@ type AppHeaderProps = {
|
|
|
66
67
|
onNotificationsClick?: () => void;
|
|
67
68
|
onSearchChange?: (value: string) => void;
|
|
68
69
|
};
|
|
69
|
-
declare function AppHeader({ title, labels, buildingOptions, selectedBuildingId, className, buildingSelectClassName, searchClassName, notificationsButtonClassName, searchValue, searchFieldStyle, buildingIcon, notificationsIcon, searchIcon, buildingChevronIcon, buildingSelectDisabled, searchDisabled, notificationsDisabled, onBuildingChange, onNotificationsClick, onSearchChange, }: AppHeaderProps): react.JSX.Element;
|
|
70
|
+
declare function AppHeader({ title, labels, hasBuildingSelect, buildingOptions, selectedBuildingId, className, buildingSelectClassName, searchClassName, notificationsButtonClassName, searchValue, searchFieldStyle, buildingIcon, notificationsIcon, searchIcon, buildingChevronIcon, buildingSelectDisabled, searchDisabled, notificationsDisabled, onBuildingChange, onNotificationsClick, onSearchChange, }: AppHeaderProps): react.JSX.Element;
|
|
70
71
|
|
|
71
72
|
type BuildingSelectProps = {
|
|
72
73
|
options: AdminBuildingOption[];
|
|
@@ -147,10 +148,270 @@ type BuildingIconProps = {
|
|
|
147
148
|
};
|
|
148
149
|
declare function BuildingIcon({ className }: BuildingIconProps): react.JSX.Element;
|
|
149
150
|
|
|
151
|
+
type TableMoreIconProps = {
|
|
152
|
+
className?: string;
|
|
153
|
+
};
|
|
154
|
+
declare function TableMoreIcon({ className }: TableMoreIconProps): react.JSX.Element;
|
|
155
|
+
|
|
156
|
+
type TableSortDirection = 'asc' | 'desc';
|
|
157
|
+
type TableSortIconProps = {
|
|
158
|
+
direction?: TableSortDirection | null;
|
|
159
|
+
className?: string;
|
|
160
|
+
};
|
|
161
|
+
declare function TableSortIcon({ direction, className }: TableSortIconProps): react.JSX.Element;
|
|
162
|
+
|
|
163
|
+
type TableMenuCheckIconProps = {
|
|
164
|
+
className?: string;
|
|
165
|
+
};
|
|
166
|
+
declare function TableMenuCheckIcon({ className }: TableMenuCheckIconProps): react.JSX.Element;
|
|
167
|
+
|
|
168
|
+
type TableMenuCloseIconProps = {
|
|
169
|
+
className?: string;
|
|
170
|
+
};
|
|
171
|
+
declare function TableMenuCloseIcon({ className }: TableMenuCloseIconProps): react.JSX.Element;
|
|
172
|
+
|
|
173
|
+
type TableMenuInfoIconProps = {
|
|
174
|
+
className?: string;
|
|
175
|
+
};
|
|
176
|
+
declare function TableMenuInfoIcon({ className }: TableMenuInfoIconProps): react.JSX.Element;
|
|
177
|
+
|
|
178
|
+
type TableMenuRefreshIconProps = {
|
|
179
|
+
className?: string;
|
|
180
|
+
};
|
|
181
|
+
declare function TableMenuRefreshIcon({ className }: TableMenuRefreshIconProps): react.JSX.Element;
|
|
182
|
+
|
|
183
|
+
type TableMenuActivateIconProps = {
|
|
184
|
+
className?: string;
|
|
185
|
+
};
|
|
186
|
+
declare function TableMenuActivateIcon({ className }: TableMenuActivateIconProps): react.JSX.Element;
|
|
187
|
+
|
|
188
|
+
type TableMenuEditIconProps = {
|
|
189
|
+
className?: string;
|
|
190
|
+
};
|
|
191
|
+
declare function TableMenuEditIcon({ className }: TableMenuEditIconProps): react.JSX.Element;
|
|
192
|
+
|
|
193
|
+
type TableMenuSuspendIconProps = {
|
|
194
|
+
className?: string;
|
|
195
|
+
};
|
|
196
|
+
declare function TableMenuSuspendIcon({ className }: TableMenuSuspendIconProps): react.JSX.Element;
|
|
197
|
+
|
|
198
|
+
type TableMenuTrashIconProps = {
|
|
199
|
+
className?: string;
|
|
200
|
+
};
|
|
201
|
+
declare function TableMenuTrashIcon({ className }: TableMenuTrashIconProps): react.JSX.Element;
|
|
202
|
+
|
|
203
|
+
declare function getTotalPages(total: number, pageSize: number): number;
|
|
204
|
+
declare function getPaginationRange(page: number, pageSize: number, total: number): {
|
|
205
|
+
start: number;
|
|
206
|
+
end: number;
|
|
207
|
+
};
|
|
208
|
+
declare function getVisiblePageNumbers(currentPage: number, totalPages: number, maxButtons?: number): number[];
|
|
209
|
+
|
|
210
|
+
type PaginationLabels = {
|
|
211
|
+
previousPage: string;
|
|
212
|
+
nextPage: string;
|
|
213
|
+
page: (pageNumber: number) => string;
|
|
214
|
+
showing: (range: {
|
|
215
|
+
start: number;
|
|
216
|
+
end: number;
|
|
217
|
+
total: number;
|
|
218
|
+
}) => string;
|
|
219
|
+
};
|
|
220
|
+
type PaginationVariant = 'standalone' | 'attached';
|
|
221
|
+
type PaginationProps = {
|
|
222
|
+
page: number;
|
|
223
|
+
pageSize: number;
|
|
224
|
+
total: number;
|
|
225
|
+
onPageChange: (page: number) => void;
|
|
226
|
+
labels?: Partial<PaginationLabels>;
|
|
227
|
+
maxPageButtons?: number;
|
|
228
|
+
/**
|
|
229
|
+
* `attached` — below a table; no top radius (footer shell handles bottom radius).
|
|
230
|
+
* `standalone` — full `rounded-xl` shell.
|
|
231
|
+
*/
|
|
232
|
+
variant?: PaginationVariant;
|
|
233
|
+
className?: string;
|
|
234
|
+
hideOnSinglePage?: boolean;
|
|
235
|
+
};
|
|
236
|
+
declare function Pagination({ page, pageSize, total, onPageChange, labels, maxPageButtons, variant, className, hideOnSinglePage, }: PaginationProps): react.JSX.Element | null;
|
|
237
|
+
|
|
238
|
+
type TableActionsMenuItemTone = 'default' | 'success' | 'danger';
|
|
239
|
+
type TableActionsMenuItem = {
|
|
240
|
+
id: string;
|
|
241
|
+
label: string;
|
|
242
|
+
icon?: ReactNode;
|
|
243
|
+
onSelect: () => void;
|
|
244
|
+
tone?: TableActionsMenuItemTone;
|
|
245
|
+
disabled?: boolean;
|
|
246
|
+
};
|
|
247
|
+
type TableActionsMenuProps = {
|
|
248
|
+
items: TableActionsMenuItem[];
|
|
249
|
+
triggerAriaLabel: string;
|
|
250
|
+
className?: string;
|
|
251
|
+
menuClassName?: string;
|
|
252
|
+
};
|
|
253
|
+
declare function TableActionsMenu({ items, triggerAriaLabel, className, menuClassName, }: TableActionsMenuProps): react.JSX.Element | null;
|
|
254
|
+
|
|
255
|
+
type TableRowActionsConfig = {
|
|
256
|
+
status: ReactNode;
|
|
257
|
+
menuItems?: TableActionsMenuItem[];
|
|
258
|
+
inlineActions?: ReactNode;
|
|
259
|
+
menuAriaLabel?: string;
|
|
260
|
+
};
|
|
261
|
+
type TableRowStatusActionsProps = TableRowActionsConfig;
|
|
262
|
+
declare function TableRowStatusActions({ status, menuItems, inlineActions, menuAriaLabel, }: TableRowStatusActionsProps): react.JSX.Element;
|
|
263
|
+
|
|
264
|
+
type TableStatusActionsCellProps = TdHTMLAttributes<HTMLTableCellElement> & {
|
|
265
|
+
status: ReactNode;
|
|
266
|
+
actions?: ReactNode;
|
|
267
|
+
};
|
|
268
|
+
/** @deprecated Prefer `TableCell` + `TableActionsCell` via `TableRowStatusActions`. */
|
|
269
|
+
declare function TableStatusActionsCell({ status, actions, className, ...props }: TableStatusActionsCellProps): react.JSX.Element;
|
|
270
|
+
|
|
271
|
+
type DataTableClassNames = {
|
|
272
|
+
/** Outer flex wrapper around the whole table block. */
|
|
273
|
+
root?: string;
|
|
274
|
+
/** Bordered shell around the scroll area (border, radius, background). */
|
|
275
|
+
shell?: string;
|
|
276
|
+
/** Scrollable table region. */
|
|
277
|
+
scroll?: string;
|
|
278
|
+
/** Footer wrapper around pagination. */
|
|
279
|
+
footer?: string;
|
|
280
|
+
/** The `<table>` element. */
|
|
281
|
+
table?: string;
|
|
282
|
+
/** The `<thead>` section. */
|
|
283
|
+
header?: string;
|
|
284
|
+
/** The `<tbody>` section. */
|
|
285
|
+
body?: string;
|
|
286
|
+
/** Pagination component when used as a table footer. */
|
|
287
|
+
pagination?: string;
|
|
288
|
+
};
|
|
289
|
+
|
|
290
|
+
declare const tableRowDisabledCellClassName = "bg-[#ECEEF0]/30 [&>*]:opacity-70";
|
|
291
|
+
declare const DEFAULT_TABLE_BODY_MIN_HEIGHT = 320;
|
|
292
|
+
declare const tableAlignClasses: {
|
|
293
|
+
readonly left: "";
|
|
294
|
+
readonly right: "text-right";
|
|
295
|
+
readonly center: "text-center";
|
|
296
|
+
};
|
|
297
|
+
type TableCellVariant = 'default' | 'emphasis' | 'muted' | 'strong';
|
|
298
|
+
|
|
299
|
+
type DataTableProps = {
|
|
300
|
+
children: ReactNode;
|
|
301
|
+
footer?: ReactNode;
|
|
302
|
+
minWidth?: number | string;
|
|
303
|
+
/** Outer flex container — override layout spacing if needed. */
|
|
304
|
+
className?: string;
|
|
305
|
+
/** Table shell — default `rounded-xl` alone, or `rounded-t-xl` when a footer is present. */
|
|
306
|
+
tableClassName?: string;
|
|
307
|
+
/** Footer shell — default `rounded-b-xl` when a footer is present. */
|
|
308
|
+
footerClassName?: string;
|
|
309
|
+
scrollClassName?: string;
|
|
310
|
+
/** Class names for individual table parts. Merged with the matching `*ClassName` props above. */
|
|
311
|
+
classNames?: DataTableClassNames;
|
|
312
|
+
/** Minimum height of the scrollable table body. Default: 320px. */
|
|
313
|
+
minBodyHeight?: number | string;
|
|
314
|
+
/** Fixed height of the scrollable table body (scrolls when content overflows). */
|
|
315
|
+
bodyHeight?: number | string;
|
|
316
|
+
/** Grow the table region to fill a flex parent (`flex-1 min-h-0`). */
|
|
317
|
+
fillHeight?: boolean;
|
|
318
|
+
};
|
|
319
|
+
declare function DataTable({ children, footer, minWidth, className, tableClassName, footerClassName, scrollClassName, classNames, minBodyHeight, bodyHeight, fillHeight, }: DataTableProps): react.JSX.Element;
|
|
320
|
+
|
|
321
|
+
type TableScrollAreaProps = {
|
|
322
|
+
children: ReactNode;
|
|
323
|
+
minWidth?: number | string;
|
|
324
|
+
className?: string;
|
|
325
|
+
minHeight?: number | string;
|
|
326
|
+
height?: number | string;
|
|
327
|
+
fillHeight?: boolean;
|
|
328
|
+
};
|
|
329
|
+
declare function TableScrollArea({ children, minWidth, className, minHeight, height, fillHeight, }: TableScrollAreaProps): react.JSX.Element;
|
|
330
|
+
|
|
331
|
+
type TableProps = HTMLAttributes<HTMLTableElement>;
|
|
332
|
+
declare function Table({ className, ...props }: TableProps): react.JSX.Element;
|
|
333
|
+
type TableHeaderProps = HTMLAttributes<HTMLTableSectionElement>;
|
|
334
|
+
declare function TableHeader({ className, ...props }: TableHeaderProps): react.JSX.Element;
|
|
335
|
+
type TableBodyProps = HTMLAttributes<HTMLTableSectionElement>;
|
|
336
|
+
declare function TableBody({ className, ...props }: TableBodyProps): react.JSX.Element;
|
|
337
|
+
type TableRowProps = HTMLAttributes<HTMLTableRowElement> & {
|
|
338
|
+
/** Muted row state — Storm Gray/50 background at 30% with 70% content opacity. */
|
|
339
|
+
disabled?: boolean;
|
|
340
|
+
};
|
|
341
|
+
declare function TableRow({ className, disabled, ...props }: TableRowProps): react.JSX.Element;
|
|
342
|
+
type TableHeadProps = ThHTMLAttributes<HTMLTableCellElement> & {
|
|
343
|
+
align?: keyof typeof tableAlignClasses;
|
|
344
|
+
/** Pins the column to the right edge during horizontal scroll (e.g. actions menu). */
|
|
345
|
+
stickyRight?: boolean;
|
|
346
|
+
/** Enables sort UI and click handler for this column header. */
|
|
347
|
+
sortable?: boolean;
|
|
348
|
+
/** Active sort direction for this column. Omit or `null` when unsorted. */
|
|
349
|
+
sortDirection?: TableSortDirection | null;
|
|
350
|
+
/** Called when the sortable header is clicked. */
|
|
351
|
+
onSort?: () => void;
|
|
352
|
+
children?: ReactNode;
|
|
353
|
+
};
|
|
354
|
+
declare function TableHead({ className, align, stickyRight, sortable, sortDirection, onSort, children, ...props }: TableHeadProps): react.JSX.Element;
|
|
355
|
+
|
|
356
|
+
type TableCellProps = TdHTMLAttributes<HTMLTableCellElement> & {
|
|
357
|
+
variant?: TableCellVariant;
|
|
358
|
+
align?: keyof typeof tableAlignClasses;
|
|
359
|
+
children?: ReactNode;
|
|
360
|
+
};
|
|
361
|
+
declare function TableCell({ className, variant, align, children, ...props }: TableCellProps): react.JSX.Element;
|
|
362
|
+
type TableActionsCellProps = TdHTMLAttributes<HTMLTableCellElement> & {
|
|
363
|
+
children?: ReactNode;
|
|
364
|
+
};
|
|
365
|
+
declare function TableActionsCell({ className, children, ...props }: TableActionsCellProps): react.JSX.Element;
|
|
366
|
+
|
|
367
|
+
type BadgeVariant = 'info' | 'danger' | 'warning' | 'success' | 'neutral';
|
|
368
|
+
type BadgeProps = {
|
|
369
|
+
children: ReactNode;
|
|
370
|
+
variant?: BadgeVariant;
|
|
371
|
+
icon?: ReactNode;
|
|
372
|
+
className?: string;
|
|
373
|
+
};
|
|
374
|
+
declare function Badge({ children, variant, icon, className }: BadgeProps): react.JSX.Element;
|
|
375
|
+
|
|
376
|
+
type StatusBadgeTone = BadgeVariant;
|
|
377
|
+
type StatusBadgeProps = {
|
|
378
|
+
children: ReactNode;
|
|
379
|
+
tone?: StatusBadgeTone;
|
|
380
|
+
icon?: ReactNode;
|
|
381
|
+
className?: string;
|
|
382
|
+
};
|
|
383
|
+
declare function StatusBadge({ children, tone, icon, className }: StatusBadgeProps): react.JSX.Element;
|
|
384
|
+
|
|
385
|
+
type TableActionButtonVariant = 'approve' | 'reject' | 'menu';
|
|
386
|
+
type TableActionButtonProps = {
|
|
387
|
+
variant: TableActionButtonVariant;
|
|
388
|
+
children?: ReactNode;
|
|
389
|
+
icon?: ReactNode;
|
|
390
|
+
ariaLabel?: string;
|
|
391
|
+
className?: string;
|
|
392
|
+
disabled?: boolean;
|
|
393
|
+
} & Pick<ButtonHTMLAttributes<HTMLButtonElement>, 'onClick' | 'aria-expanded' | 'aria-haspopup' | 'aria-controls'>;
|
|
394
|
+
declare const TableActionButton: react.ForwardRefExoticComponent<{
|
|
395
|
+
variant: TableActionButtonVariant;
|
|
396
|
+
children?: ReactNode;
|
|
397
|
+
icon?: ReactNode;
|
|
398
|
+
ariaLabel?: string;
|
|
399
|
+
className?: string;
|
|
400
|
+
disabled?: boolean;
|
|
401
|
+
} & Pick<ButtonHTMLAttributes<HTMLButtonElement>, "aria-expanded" | "onClick" | "aria-controls" | "aria-haspopup"> & react.RefAttributes<HTMLButtonElement>>;
|
|
402
|
+
|
|
403
|
+
type TableIconTextProps = {
|
|
404
|
+
icon: ReactNode;
|
|
405
|
+
children: ReactNode;
|
|
406
|
+
className?: string;
|
|
407
|
+
};
|
|
408
|
+
declare function TableIconText({ icon, children, className }: TableIconTextProps): react.JSX.Element;
|
|
409
|
+
|
|
150
410
|
declare function useMediaQuery(query: string): boolean;
|
|
151
411
|
|
|
152
|
-
|
|
412
|
+
type OutsideTarget<T extends HTMLElement> = RefObject<T | null> | Array<RefObject<T | null>>;
|
|
413
|
+
declare function useOnClickOutside<T extends HTMLElement>(ref: OutsideTarget<T>, handler: () => void, enabled?: boolean): void;
|
|
153
414
|
|
|
154
415
|
declare function cn(...inputs: ClassValue[]): string;
|
|
155
416
|
|
|
156
|
-
export { type AdminBuildingOption, type AdminHeaderLabels, type AdminLayoutLabels, type AdminNavItem, type AdminSidebarBranding, type AdminSidebarLabels, type AdminSidebarUser, AppHeader, type AppHeaderProps, BellIcon, BuildingIcon, BuildingSelect, type BuildingSelectProps, DashboardLayout, type DashboardLayoutProps, Sidebar, SidebarMobileHeader, type SidebarMobileHeaderProps, SidebarNavItem, type SidebarNavItemProps, type SidebarProps, SidebarUserCard, type SidebarUserCardProps, cn, useMediaQuery, useOnClickOutside };
|
|
417
|
+
export { type AdminBuildingOption, type AdminHeaderLabels, type AdminLayoutLabels, type AdminNavItem, type AdminSidebarBranding, type AdminSidebarLabels, type AdminSidebarUser, AppHeader, type AppHeaderProps, Badge, type BadgeProps, type BadgeVariant, BellIcon, BuildingIcon, BuildingSelect, type BuildingSelectProps, DEFAULT_TABLE_BODY_MIN_HEIGHT, DashboardLayout, type DashboardLayoutProps, DataTable, type DataTableClassNames, type DataTableProps, Pagination, type PaginationLabels, type PaginationProps, type PaginationVariant, Sidebar, SidebarMobileHeader, type SidebarMobileHeaderProps, SidebarNavItem, type SidebarNavItemProps, type SidebarProps, SidebarUserCard, type SidebarUserCardProps, StatusBadge, type StatusBadgeProps, type StatusBadgeTone, Table, TableActionButton, type TableActionButtonProps, type TableActionButtonVariant, TableActionsCell, type TableActionsCellProps, TableActionsMenu, type TableActionsMenuItem, type TableActionsMenuItemTone, type TableActionsMenuProps, TableBody, type TableBodyProps, TableCell, type TableCellProps, type TableCellVariant, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIconText, type TableIconTextProps, TableMenuActivateIcon, TableMenuCheckIcon, TableMenuCloseIcon, TableMenuEditIcon, TableMenuInfoIcon, TableMenuRefreshIcon, TableMenuSuspendIcon, TableMenuTrashIcon, TableMoreIcon, type TableProps, TableRow, type TableRowActionsConfig, type TableRowProps, TableRowStatusActions, type TableRowStatusActionsProps, TableScrollArea, type TableScrollAreaProps, type TableSortDirection, TableSortIcon, TableStatusActionsCell, type TableStatusActionsCellProps, cn, getPaginationRange, getTotalPages, getVisiblePageNumbers, tableRowDisabledCellClassName, useMediaQuery, useOnClickOutside };
|