pelatform-ui 1.3.1 → 1.4.1
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/css/styles/style-lyra.css +16 -7
- package/css/styles/style-maia.css +15 -10
- package/css/styles/style-mira.css +16 -7
- package/css/styles/style-nova.css +11 -6
- package/css/styles/style-vega.css +11 -6
- package/css/theme.css +5 -0
- package/dist/{badge-Rr33PgV_.d.ts → badge-CnQznr5B.d.ts} +2 -1
- package/dist/base.d.ts +111 -24
- package/dist/base.js +2176 -1254
- package/dist/{chunk-Q2RH7YQE.js → chunk-Z4CHIWTI.js} +14 -8
- package/dist/components.d.ts +1 -1
- package/dist/components.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/radix.d.ts +122 -25
- package/dist/radix.js +2140 -1216
- package/package.json +14 -14
package/dist/base.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import { Separator as Separator$1 } from '@base-ui/react/separator';
|
|
|
13
13
|
import { DayPicker, DayButton, Locale } from 'react-day-picker';
|
|
14
14
|
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
15
15
|
import * as RechartsPrimitive from 'recharts';
|
|
16
|
+
import { ValueType, NameType } from 'recharts/types/component/DefaultTooltipContent';
|
|
16
17
|
import { Checkbox as Checkbox$1 } from '@base-ui/react/checkbox';
|
|
17
18
|
import { Collapsible as Collapsible$1 } from '@base-ui/react/collapsible';
|
|
18
19
|
import { Combobox as Combobox$1 } from '@base-ui/react';
|
|
@@ -20,7 +21,9 @@ import { Command as Command$1 } from 'cmdk';
|
|
|
20
21
|
import { Dialog as Dialog$1 } from '@base-ui/react/dialog';
|
|
21
22
|
import { ContextMenu as ContextMenu$1 } from '@base-ui/react/context-menu';
|
|
22
23
|
import { Column, Table as Table$1, Row, Cell, HeaderGroup, Header, RowData, SortingState, ColumnFiltersState } from '@tanstack/react-table';
|
|
24
|
+
import { ScrollArea as ScrollArea$1 } from '@base-ui/react/scroll-area';
|
|
23
25
|
import { DragEndEvent, UniqueIdentifier, Modifiers, DragOverlay, DragStartEvent } from '@dnd-kit/core';
|
|
26
|
+
import { VirtualizerOptions } from '@tanstack/react-virtual';
|
|
24
27
|
export { DirectionProvider, useDirection } from '@base-ui/react/direction-provider';
|
|
25
28
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
26
29
|
import { Menu } from '@base-ui/react/menu';
|
|
@@ -35,7 +38,6 @@ import { Progress as Progress$1 } from '@base-ui/react/progress';
|
|
|
35
38
|
import { Radio } from '@base-ui/react/radio';
|
|
36
39
|
import { RadioGroup as RadioGroup$1 } from '@base-ui/react/radio-group';
|
|
37
40
|
import * as ResizablePrimitive from 'react-resizable-panels';
|
|
38
|
-
import { ScrollArea as ScrollArea$1 } from '@base-ui/react/scroll-area';
|
|
39
41
|
import { Select as Select$1 } from '@base-ui/react/select';
|
|
40
42
|
import { Tooltip as Tooltip$1 } from '@base-ui/react/tooltip';
|
|
41
43
|
import { Slider as Slider$1 } from '@base-ui/react/slider';
|
|
@@ -134,12 +136,14 @@ declare function AvatarGroupCount({ className, ...props }: React.ComponentProps<
|
|
|
134
136
|
declare const badgeVariants: (props?: ({
|
|
135
137
|
variant?: "default" | "outline" | "secondary" | "destructive" | "info" | "success" | "warning" | "invert" | "focus" | "primary-light" | "warning-light" | "success-light" | "info-light" | "destructive-light" | "invert-light" | "focus-light" | "primary-outline" | "warning-outline" | "success-outline" | "info-outline" | "destructive-outline" | "invert-outline" | "focus-outline" | null | undefined;
|
|
136
138
|
size?: "default" | "xs" | "sm" | "lg" | "xl" | null | undefined;
|
|
139
|
+
radius?: "default" | "full" | null | undefined;
|
|
137
140
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
138
141
|
interface BadgeProps extends useRender.ComponentProps<"span"> {
|
|
139
142
|
variant?: VariantProps<typeof badgeVariants>["variant"];
|
|
140
143
|
size?: VariantProps<typeof badgeVariants>["size"];
|
|
144
|
+
radius?: VariantProps<typeof badgeVariants>["radius"];
|
|
141
145
|
}
|
|
142
|
-
declare function Badge({ className, variant, size, render, ...props }: BadgeProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
|
|
146
|
+
declare function Badge({ className, variant, size, radius, render, ...props }: BadgeProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
|
|
143
147
|
|
|
144
148
|
declare function Breadcrumb({ className, ...props }: React.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
145
149
|
declare function BreadcrumbList({ className, ...props }: React.ComponentProps<"ol">): react_jsx_runtime.JSX.Element;
|
|
@@ -204,21 +208,23 @@ declare const THEMES: {
|
|
|
204
208
|
readonly light: "";
|
|
205
209
|
readonly dark: ".dark";
|
|
206
210
|
};
|
|
207
|
-
type ChartConfig = {
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
};
|
|
219
|
-
declare function ChartContainer({ id, className, children, config, ...props }: React.ComponentProps<"div"> & {
|
|
211
|
+
type ChartConfig = Record<string, {
|
|
212
|
+
label?: React.ReactNode;
|
|
213
|
+
icon?: React.ComponentType;
|
|
214
|
+
} & ({
|
|
215
|
+
color?: string;
|
|
216
|
+
theme?: never;
|
|
217
|
+
} | {
|
|
218
|
+
color?: never;
|
|
219
|
+
theme: Record<keyof typeof THEMES, string>;
|
|
220
|
+
})>;
|
|
221
|
+
declare function ChartContainer({ id, className, children, config, initialDimension, ...props }: React.ComponentProps<"div"> & {
|
|
220
222
|
config: ChartConfig;
|
|
221
223
|
children: React.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
|
|
224
|
+
initialDimension?: {
|
|
225
|
+
width: number;
|
|
226
|
+
height: number;
|
|
227
|
+
};
|
|
222
228
|
}): react_jsx_runtime.JSX.Element;
|
|
223
229
|
declare const ChartStyle: ({ id, config }: {
|
|
224
230
|
id: string;
|
|
@@ -231,12 +237,12 @@ declare function ChartTooltipContent({ active, payload, className, indicator, hi
|
|
|
231
237
|
indicator?: "line" | "dot" | "dashed";
|
|
232
238
|
nameKey?: string;
|
|
233
239
|
labelKey?: string;
|
|
234
|
-
}): react_jsx_runtime.JSX.Element | null;
|
|
240
|
+
} & Omit<RechartsPrimitive.DefaultTooltipContentProps<ValueType, NameType>, "accessibilityLayer">): react_jsx_runtime.JSX.Element | null;
|
|
235
241
|
declare const ChartLegend: typeof RechartsPrimitive.Legend;
|
|
236
|
-
declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React.ComponentProps<"div"> &
|
|
242
|
+
declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React.ComponentProps<"div"> & {
|
|
237
243
|
hideIcon?: boolean;
|
|
238
244
|
nameKey?: string;
|
|
239
|
-
}): react_jsx_runtime.JSX.Element | null;
|
|
245
|
+
} & RechartsPrimitive.DefaultLegendContentProps): react_jsx_runtime.JSX.Element | null;
|
|
240
246
|
|
|
241
247
|
declare function Checkbox({ className, ...props }: Checkbox$1.Root.Props): react_jsx_runtime.JSX.Element;
|
|
242
248
|
|
|
@@ -339,6 +345,7 @@ declare function DataGridColumnFilter<TData, TValue>({ column, title, options, }
|
|
|
339
345
|
|
|
340
346
|
interface DataGridColumnHeaderProps<TData, TValue> extends HTMLAttributes<HTMLDivElement> {
|
|
341
347
|
column: Column<TData, TValue>;
|
|
348
|
+
/** When omitted, uses `column.columnDef.meta.headerTitle`, then a string `columnDef.header`, then `column.id`. */
|
|
342
349
|
title?: string;
|
|
343
350
|
icon?: ReactNode;
|
|
344
351
|
pinnable?: boolean;
|
|
@@ -371,21 +378,69 @@ interface DataGridPaginationProps {
|
|
|
371
378
|
}
|
|
372
379
|
declare function DataGridPagination(props: DataGridPaginationProps): React__default.JSX.Element;
|
|
373
380
|
|
|
381
|
+
type DataGridScrollAreaOrientation = "horizontal" | "vertical" | "both";
|
|
382
|
+
type DataGridScrollAreaProps = Omit<ScrollArea$1.Root.Props, "children"> & {
|
|
383
|
+
children: ReactNode;
|
|
384
|
+
orientation?: DataGridScrollAreaOrientation;
|
|
385
|
+
};
|
|
386
|
+
declare function DataGridScrollArea({ children, className, orientation, ...props }: DataGridScrollAreaProps): react_jsx_runtime.JSX.Element;
|
|
387
|
+
|
|
374
388
|
declare function DataGridTableDndRowHandle({ className }: {
|
|
375
389
|
className?: string;
|
|
376
390
|
}): react_jsx_runtime.JSX.Element;
|
|
377
|
-
declare function DataGridTableDndRows<TData>({ handleDragEnd, dataIds, }: {
|
|
391
|
+
declare function DataGridTableDndRows<TData>({ handleDragEnd, dataIds, footerContent, }: {
|
|
378
392
|
handleDragEnd: (event: DragEndEvent) => void;
|
|
379
393
|
dataIds: UniqueIdentifier[];
|
|
394
|
+
footerContent?: ReactNode;
|
|
380
395
|
}): react_jsx_runtime.JSX.Element;
|
|
381
396
|
|
|
382
|
-
declare function DataGridTableDnd<TData>({ handleDragEnd, }: {
|
|
397
|
+
declare function DataGridTableDnd<TData>({ handleDragEnd, footerContent, }: {
|
|
383
398
|
handleDragEnd: (event: DragEndEvent) => void;
|
|
399
|
+
footerContent?: ReactNode;
|
|
384
400
|
}): react_jsx_runtime.JSX.Element;
|
|
385
401
|
|
|
402
|
+
type DataGridTableVirtualScrollElements = {
|
|
403
|
+
containerElement: HTMLDivElement | null;
|
|
404
|
+
scrollElement: HTMLElement | null;
|
|
405
|
+
};
|
|
406
|
+
type DataGridTableVirtualizerOptions<TData> = Omit<VirtualizerOptions<HTMLElement, HTMLTableRowElement>, "count" | "estimateSize" | "getItemKey" | "getScrollElement"> & {
|
|
407
|
+
estimateSize?: (index: number, row: Row<TData>) => number;
|
|
408
|
+
getItemKey?: (index: number, row: Row<TData>) => string | number;
|
|
409
|
+
getScrollElement?: (elements: DataGridTableVirtualScrollElements) => HTMLElement | null;
|
|
410
|
+
};
|
|
411
|
+
interface DataGridTableVirtualProps<TData> {
|
|
412
|
+
height?: number | string;
|
|
413
|
+
estimateSize?: number;
|
|
414
|
+
overscan?: number;
|
|
415
|
+
footerContent?: ReactNode;
|
|
416
|
+
renderHeader?: boolean;
|
|
417
|
+
onFetchMore?: () => void;
|
|
418
|
+
isFetchingMore?: boolean;
|
|
419
|
+
hasMore?: boolean;
|
|
420
|
+
fetchMoreOffset?: number;
|
|
421
|
+
virtualizerOptions?: DataGridTableVirtualizerOptions<TData>;
|
|
422
|
+
}
|
|
423
|
+
declare function DataGridTableVirtual<TData>({ height, estimateSize, overscan, footerContent, renderHeader, onFetchMore, isFetchingMore, hasMore, fetchMoreOffset, virtualizerOptions, }: DataGridTableVirtualProps<TData>): react_jsx_runtime.JSX.Element;
|
|
424
|
+
|
|
425
|
+
type DataGridTablePinnedBoundary = "top" | "bottom";
|
|
426
|
+
declare function getDataGridTableRowSections<TData>(table: Table$1<TData>, rowsPinnable?: boolean): {
|
|
427
|
+
topRows: Row<TData>[];
|
|
428
|
+
centerRows: Row<TData>[];
|
|
429
|
+
bottomRows: Row<TData>[];
|
|
430
|
+
};
|
|
431
|
+
declare function getDataGridTableResolvedRows<TData>(table: Table$1<TData>, rowsPinnable?: boolean): {
|
|
432
|
+
row: Row<TData>;
|
|
433
|
+
pinnedBoundary?: DataGridTablePinnedBoundary;
|
|
434
|
+
}[];
|
|
386
435
|
declare function DataGridTableBase({ children }: {
|
|
387
436
|
children: ReactNode;
|
|
388
437
|
}): react_jsx_runtime.JSX.Element;
|
|
438
|
+
declare function DataGridTableViewport({ children, className, viewportRef, style, }: {
|
|
439
|
+
children: ReactNode;
|
|
440
|
+
className?: string;
|
|
441
|
+
viewportRef?: React.Ref<HTMLDivElement>;
|
|
442
|
+
style?: CSSProperties;
|
|
443
|
+
}): react_jsx_runtime.JSX.Element;
|
|
389
444
|
declare function DataGridTableHead({ children }: {
|
|
390
445
|
children: ReactNode;
|
|
391
446
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -406,6 +461,17 @@ declare function DataGridTableRowSpacer(): react_jsx_runtime.JSX.Element;
|
|
|
406
461
|
declare function DataGridTableBody({ children }: {
|
|
407
462
|
children: ReactNode;
|
|
408
463
|
}): react_jsx_runtime.JSX.Element;
|
|
464
|
+
declare function DataGridTableFoot({ children }: {
|
|
465
|
+
children: ReactNode;
|
|
466
|
+
}): react_jsx_runtime.JSX.Element;
|
|
467
|
+
declare function DataGridTableFootRow({ children }: {
|
|
468
|
+
children: ReactNode;
|
|
469
|
+
}): react_jsx_runtime.JSX.Element;
|
|
470
|
+
declare function DataGridTableFootRowCell({ children, colSpan, className, }: {
|
|
471
|
+
children?: ReactNode;
|
|
472
|
+
colSpan?: number;
|
|
473
|
+
className?: string;
|
|
474
|
+
}): react_jsx_runtime.JSX.Element;
|
|
409
475
|
declare function DataGridTableBodyRowSkeleton({ children }: {
|
|
410
476
|
children: ReactNode;
|
|
411
477
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -413,9 +479,11 @@ declare function DataGridTableBodyRowSkeletonCell<TData>({ children, column, }:
|
|
|
413
479
|
children: ReactNode;
|
|
414
480
|
column: Column<TData>;
|
|
415
481
|
}): react_jsx_runtime.JSX.Element;
|
|
416
|
-
declare function DataGridTableBodyRow<TData>({ children, row, dndRef, dndStyle, }: {
|
|
482
|
+
declare function DataGridTableBodyRow<TData>({ children, row, pinnedBoundary, rowRef, dndRef, dndStyle, }: {
|
|
417
483
|
children: ReactNode;
|
|
418
484
|
row: Row<TData>;
|
|
485
|
+
pinnedBoundary?: DataGridTablePinnedBoundary;
|
|
486
|
+
rowRef?: React.Ref<HTMLTableRowElement>;
|
|
419
487
|
dndRef?: React.Ref<HTMLTableRowElement>;
|
|
420
488
|
dndStyle?: CSSProperties;
|
|
421
489
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -428,13 +496,25 @@ declare function DataGridTableBodyRowCell<TData>({ children, cell, dndRef, dndSt
|
|
|
428
496
|
dndRef?: React.Ref<HTMLTableCellElement>;
|
|
429
497
|
dndStyle?: CSSProperties;
|
|
430
498
|
}): react_jsx_runtime.JSX.Element;
|
|
499
|
+
declare function DataGridTableRenderedRow<TData>({ row, pinnedBoundary, rowRef, }: {
|
|
500
|
+
row: Row<TData>;
|
|
501
|
+
pinnedBoundary?: DataGridTablePinnedBoundary;
|
|
502
|
+
rowRef?: React.Ref<HTMLTableRowElement>;
|
|
503
|
+
}): react_jsx_runtime.JSX.Element;
|
|
431
504
|
declare function DataGridTableEmpty(): react_jsx_runtime.JSX.Element;
|
|
432
505
|
declare function DataGridTableLoader(): react_jsx_runtime.JSX.Element;
|
|
506
|
+
declare function DataGridTableRowPin<TData>({ row }: {
|
|
507
|
+
row: Row<TData>;
|
|
508
|
+
}): react_jsx_runtime.JSX.Element;
|
|
433
509
|
declare function DataGridTableRowSelect<TData>({ row }: {
|
|
434
510
|
row: Row<TData>;
|
|
435
511
|
}): react_jsx_runtime.JSX.Element;
|
|
436
512
|
declare function DataGridTableRowSelectAll(): react_jsx_runtime.JSX.Element;
|
|
437
|
-
declare function
|
|
513
|
+
declare function DataGridTableHeader<TData>(): react_jsx_runtime.JSX.Element;
|
|
514
|
+
declare function DataGridTable<TData>({ footerContent, renderHeader, }: {
|
|
515
|
+
footerContent?: ReactNode;
|
|
516
|
+
renderHeader?: boolean;
|
|
517
|
+
}): react_jsx_runtime.JSX.Element;
|
|
438
518
|
|
|
439
519
|
declare module "@tanstack/react-table" {
|
|
440
520
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
@@ -446,6 +526,8 @@ declare module "@tanstack/react-table" {
|
|
|
446
526
|
expandedContent?: (row: TData) => ReactNode;
|
|
447
527
|
}
|
|
448
528
|
}
|
|
529
|
+
/** Label for headers / column visibility: `meta.headerTitle`, string `columnDef.header`, or `column.id`. */
|
|
530
|
+
declare function getColumnHeaderLabel<TData, TValue>(column: Column<TData, TValue>): string;
|
|
449
531
|
type DataGridApiFetchParams = {
|
|
450
532
|
pageIndex: number;
|
|
451
533
|
pageSize: number;
|
|
@@ -482,6 +564,8 @@ interface DataGridProps<TData extends object> {
|
|
|
482
564
|
isLoading?: boolean;
|
|
483
565
|
loadingMode?: "skeleton" | "spinner";
|
|
484
566
|
loadingMessage?: ReactNode | string;
|
|
567
|
+
fetchingMoreMessage?: ReactNode | string;
|
|
568
|
+
allRowsLoadedMessage?: ReactNode | string;
|
|
485
569
|
emptyMessage?: ReactNode | string;
|
|
486
570
|
tableLayout?: {
|
|
487
571
|
dense?: boolean;
|
|
@@ -499,6 +583,7 @@ interface DataGridProps<TData extends object> {
|
|
|
499
583
|
columnsMovable?: boolean;
|
|
500
584
|
columnsDraggable?: boolean;
|
|
501
585
|
rowsDraggable?: boolean;
|
|
586
|
+
rowsPinnable?: boolean;
|
|
502
587
|
};
|
|
503
588
|
tableClassNames?: {
|
|
504
589
|
base?: string;
|
|
@@ -892,7 +977,9 @@ declare const frameVariants: (props?: ({
|
|
|
892
977
|
dense?: boolean | null | undefined;
|
|
893
978
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
894
979
|
declare function Frame({ className, variant, spacing, stacked, dense, ...props }: React.ComponentProps<"div"> & VariantProps<typeof frameVariants>): react_jsx_runtime.JSX.Element;
|
|
895
|
-
declare function FramePanel({ className, ...props }: React.ComponentProps<"div">
|
|
980
|
+
declare function FramePanel({ className, fit, ...props }: React.ComponentProps<"div"> & {
|
|
981
|
+
fit?: boolean;
|
|
982
|
+
}): react_jsx_runtime.JSX.Element;
|
|
896
983
|
declare function FrameHeader({ className, ...props }: React.ComponentProps<"header">): react_jsx_runtime.JSX.Element;
|
|
897
984
|
declare function FrameTitle({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
898
985
|
declare function FrameDescription({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
|
|
@@ -1449,4 +1536,4 @@ interface TreeItemLabelProps<T = any> extends React.HTMLAttributes<HTMLSpanEleme
|
|
|
1449
1536
|
declare function TreeItemLabel<T = any>({ item: propItem, children, className, ...props }: TreeItemLabelProps<T>): react_jsx_runtime.JSX.Element | null;
|
|
1450
1537
|
declare function TreeDragLine({ className, ...props }: React.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element | null;
|
|
1451
1538
|
|
|
1452
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ApplePayLogo, AspectRatio, Autocomplete, AutocompleteArrow, AutocompleteBackdrop, AutocompleteClear, AutocompleteCollection, AutocompleteContent, type AutocompleteContentProps, AutocompleteEmpty, AutocompleteGroup, AutocompleteGroupLabel, AutocompleteInput, AutocompleteItem, AutocompleteList, AutocompletePortal, AutocompletePositioner, AutocompleteRow, AutocompleteSeparator, AutocompleteStatus, AutocompleteTrigger, AutocompleteValue, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BtcchinaLogo, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, ClusterhqLogo, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type CustomRendererProps, DEFAULT_DATE_SELECTOR_I18N, DEFAULT_I18N, DEFAULT_OPERATORS, DataGrid, type DataGridApiFetchParams, type DataGridApiResponse, DataGridColumnFilter, type DataGridColumnFilterProps, DataGridColumnHeader, type DataGridColumnHeaderProps, DataGridColumnVisibility, DataGridContainer, type DataGridContextProps, DataGridPagination, type DataGridPaginationProps, type DataGridProps, DataGridProvider, type DataGridRequestParams, DataGridTable, DataGridTableBase, DataGridTableBody, DataGridTableBodyRow, DataGridTableBodyRowCell, DataGridTableBodyRowExpandded, DataGridTableBodyRowSkeleton, DataGridTableBodyRowSkeletonCell, DataGridTableDnd, DataGridTableDndRowHandle, DataGridTableDndRows, DataGridTableEmpty, DataGridTableHead, DataGridTableHeadRow, DataGridTableHeadRowCell, DataGridTableHeadRowCellResize, DataGridTableLoader, DataGridTableRowSelect, DataGridTableRowSelectAll, DataGridTableRowSpacer, DateSelector, type DateSelectorContextValue, type DateSelectorFilterType, type DateSelectorI18nConfig, type DateSelectorPeriodType, type DateSelectorProps, type DateSelectorValue, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, type Filter, type FilterFieldConfig, type FilterFieldGroup, type FilterFieldsConfig, type FilterGroup, type FilterI18nConfig, type FilterOperator, type FilterOption, Filters, FiltersContent, Frame, FrameDescription, FrameFooter, FrameHeader, FramePanel, FrameTitle, GooglePlayLogo, GoogleWebdevLogo, HoverCard, HoverCardContent, HoverCardTrigger, IdealLogo, InfernoLogo, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, JiraLogo, Kanban, KanbanBoard, type KanbanBoardProps, KanbanColumn, KanbanColumnContent, type KanbanColumnContentProps, KanbanColumnHandle, type KanbanColumnHandleProps, type KanbanColumnProps, KanbanItem, KanbanItemHandle, type KanbanItemHandleProps, type KanbanItemProps, type KanbanMoveEvent, KanbanOverlay, type KanbanOverlayProps, type KanbanRootProps, Kbd, KbdGroup, Label, MastercardLogo, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, NumberField, NumberFieldDecrement, NumberFieldGroup, NumberFieldIncrement, NumberFieldInput, NumberFieldScrubArea, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PatientoryLogo, PayPalLogo, PhoneInput, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, RadioGroup, RadioGroupItem, Rating, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Scrollspy, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Sortable, SortableItem, SortableItemHandle, type SortableItemHandleProps, type SortableItemProps, SortableOverlay, type SortableOverlayProps, type SortableRootProps, Spinner, Stepper, StepperContent, type StepperContentProps, StepperDescription, StepperIndicator, StepperItem, type StepperItemProps, StepperNav, StepperPanel, type StepperProps, StepperSeparator, StepperTitle, StepperTrigger, type StepperTriggerProps, StripeLogo, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Timeline, TimelineContent, TimelineDate, TimelineHeader, TimelineIndicator, TimelineItem, TimelineSeparator, TimelineTitle, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Tree, TreeDragLine, TreeItem, TreeItemLabel, badgeVariants, buttonGroupVariants, buttonVariants, createFilter, createFilterGroup, formatDateValue, frameVariants, navigationMenuTriggerStyle, tabsListVariants, toggleVariants, useCarousel, useComboboxAnchor, useDataGrid, useDateSelector, useDateSelectorContext, useSidebar, useStepItem, useStepper };
|
|
1539
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ApplePayLogo, AspectRatio, Autocomplete, AutocompleteArrow, AutocompleteBackdrop, AutocompleteClear, AutocompleteCollection, AutocompleteContent, type AutocompleteContentProps, AutocompleteEmpty, AutocompleteGroup, AutocompleteGroupLabel, AutocompleteInput, AutocompleteItem, AutocompleteList, AutocompletePortal, AutocompletePositioner, AutocompleteRow, AutocompleteSeparator, AutocompleteStatus, AutocompleteTrigger, AutocompleteValue, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BtcchinaLogo, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, ClusterhqLogo, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type CustomRendererProps, DEFAULT_DATE_SELECTOR_I18N, DEFAULT_I18N, DEFAULT_OPERATORS, DataGrid, type DataGridApiFetchParams, type DataGridApiResponse, DataGridColumnFilter, type DataGridColumnFilterProps, DataGridColumnHeader, type DataGridColumnHeaderProps, DataGridColumnVisibility, DataGridContainer, type DataGridContextProps, DataGridPagination, type DataGridPaginationProps, type DataGridProps, DataGridProvider, type DataGridRequestParams, DataGridScrollArea, type DataGridScrollAreaOrientation, type DataGridScrollAreaProps, DataGridTable, DataGridTableBase, DataGridTableBody, DataGridTableBodyRow, DataGridTableBodyRowCell, DataGridTableBodyRowExpandded, DataGridTableBodyRowSkeleton, DataGridTableBodyRowSkeletonCell, DataGridTableDnd, DataGridTableDndRowHandle, DataGridTableDndRows, DataGridTableEmpty, DataGridTableFoot, DataGridTableFootRow, DataGridTableFootRowCell, DataGridTableHead, DataGridTableHeadRow, DataGridTableHeadRowCell, DataGridTableHeadRowCellResize, DataGridTableHeader, DataGridTableLoader, type DataGridTablePinnedBoundary, DataGridTableRenderedRow, DataGridTableRowPin, DataGridTableRowSelect, DataGridTableRowSelectAll, DataGridTableRowSpacer, DataGridTableViewport, DataGridTableVirtual, type DataGridTableVirtualProps, type DataGridTableVirtualScrollElements, type DataGridTableVirtualizerOptions, DateSelector, type DateSelectorContextValue, type DateSelectorFilterType, type DateSelectorI18nConfig, type DateSelectorPeriodType, type DateSelectorProps, type DateSelectorValue, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, type Filter, type FilterFieldConfig, type FilterFieldGroup, type FilterFieldsConfig, type FilterGroup, type FilterI18nConfig, type FilterOperator, type FilterOption, Filters, FiltersContent, Frame, FrameDescription, FrameFooter, FrameHeader, FramePanel, FrameTitle, GooglePlayLogo, GoogleWebdevLogo, HoverCard, HoverCardContent, HoverCardTrigger, IdealLogo, InfernoLogo, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, JiraLogo, Kanban, KanbanBoard, type KanbanBoardProps, KanbanColumn, KanbanColumnContent, type KanbanColumnContentProps, KanbanColumnHandle, type KanbanColumnHandleProps, type KanbanColumnProps, KanbanItem, KanbanItemHandle, type KanbanItemHandleProps, type KanbanItemProps, type KanbanMoveEvent, KanbanOverlay, type KanbanOverlayProps, type KanbanRootProps, Kbd, KbdGroup, Label, MastercardLogo, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, NumberField, NumberFieldDecrement, NumberFieldGroup, NumberFieldIncrement, NumberFieldInput, NumberFieldScrubArea, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PatientoryLogo, PayPalLogo, PhoneInput, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, RadioGroup, RadioGroupItem, Rating, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Scrollspy, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Sortable, SortableItem, SortableItemHandle, type SortableItemHandleProps, type SortableItemProps, SortableOverlay, type SortableOverlayProps, type SortableRootProps, Spinner, Stepper, StepperContent, type StepperContentProps, StepperDescription, StepperIndicator, StepperItem, type StepperItemProps, StepperNav, StepperPanel, type StepperProps, StepperSeparator, StepperTitle, StepperTrigger, type StepperTriggerProps, StripeLogo, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Timeline, TimelineContent, TimelineDate, TimelineHeader, TimelineIndicator, TimelineItem, TimelineSeparator, TimelineTitle, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, Tree, TreeDragLine, TreeItem, TreeItemLabel, badgeVariants, buttonGroupVariants, buttonVariants, createFilter, createFilterGroup, formatDateValue, frameVariants, getColumnHeaderLabel, getDataGridTableResolvedRows, getDataGridTableRowSections, navigationMenuTriggerStyle, tabsListVariants, toggleVariants, useCarousel, useComboboxAnchor, useDataGrid, useDateSelector, useDateSelectorContext, useSidebar, useStepItem, useStepper };
|