@acronis-platform/ui-react 0.36.0 → 0.43.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/dist/components/ui/card/card.js +92 -0
- package/dist/components/ui/card/card.js.map +1 -0
- package/dist/components/ui/data-table/data-table-column-header.js +48 -0
- package/dist/components/ui/data-table/data-table-column-header.js.map +1 -0
- package/dist/components/ui/data-table/data-table-pagination.js +89 -0
- package/dist/components/ui/data-table/data-table-pagination.js.map +1 -0
- package/dist/components/ui/data-table/data-table-toolbar.js +46 -0
- package/dist/components/ui/data-table/data-table-toolbar.js.map +1 -0
- package/dist/components/ui/data-table/data-table-view-options.js +40 -0
- package/dist/components/ui/data-table/data-table-view-options.js.map +1 -0
- package/dist/components/ui/data-table/data-table.js +89 -0
- package/dist/components/ui/data-table/data-table.js.map +1 -0
- package/dist/components/ui/dialog/dialog.js +140 -0
- package/dist/components/ui/dialog/dialog.js.map +1 -0
- package/dist/components/ui/dropdown-menu/dropdown-menu.js +159 -0
- package/dist/components/ui/dropdown-menu/dropdown-menu.js.map +1 -0
- package/dist/components/ui/empty/empty.js +78 -0
- package/dist/components/ui/empty/empty.js.map +1 -0
- package/dist/components/ui/input/input.js +2 -2
- package/dist/components/ui/input/input.js.map +1 -1
- package/dist/components/ui/input-search/input-search.js +4 -4
- package/dist/components/ui/input-search/input-search.js.map +1 -1
- package/dist/components/ui/input-text/input-text.js +1 -1
- package/dist/components/ui/input-text/input-text.js.map +1 -1
- package/dist/components/ui/label/label.js +12 -0
- package/dist/components/ui/label/label.js.map +1 -0
- package/dist/components/ui/popover/popover.js +48 -0
- package/dist/components/ui/popover/popover.js.map +1 -0
- package/dist/components/ui/progress/progress.js +30 -0
- package/dist/components/ui/progress/progress.js.map +1 -0
- package/dist/components/ui/search/search.js +2 -2
- package/dist/components/ui/search/search.js.map +1 -1
- package/dist/components/ui/separator/separator.js +22 -0
- package/dist/components/ui/separator/separator.js.map +1 -0
- package/dist/components/ui/spinner/spinner.js +38 -0
- package/dist/components/ui/spinner/spinner.js.map +1 -0
- package/dist/components/ui/table/table.js +118 -0
- package/dist/components/ui/table/table.js.map +1 -0
- package/dist/components/ui/tabs/tabs.js +44 -0
- package/dist/components/ui/tabs/tabs.js.map +1 -0
- package/dist/components/ui/toast/toast.js +83 -0
- package/dist/components/ui/toast/toast.js.map +1 -0
- package/dist/components/ui/widget-placeholder/widget-placeholder.js +106 -0
- package/dist/components/ui/widget-placeholder/widget-placeholder.js.map +1 -0
- package/dist/index.js +210 -113
- package/dist/index.js.map +1 -1
- package/dist/node_modules/.pnpm/@tanstack_react-table@8.21.3_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/@tanstack/react-table/build/lib/index.js +104 -0
- package/dist/node_modules/.pnpm/@tanstack_react-table@8.21.3_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/@tanstack/react-table/build/lib/index.js.map +1 -0
- package/dist/node_modules/.pnpm/@tanstack_table-core@8.21.3/node_modules/@tanstack/table-core/build/lib/index.js +1900 -0
- package/dist/node_modules/.pnpm/@tanstack_table-core@8.21.3/node_modules/@tanstack/table-core/build/lib/index.js.map +1 -0
- package/dist/react.js +210 -113
- package/dist/react.js.map +1 -1
- package/dist/src/components/ui/card/card.d.ts +17 -0
- package/dist/src/components/ui/card/index.d.ts +1 -0
- package/dist/src/components/ui/data-table/data-table-column-header.d.ts +8 -0
- package/dist/src/components/ui/data-table/data-table-pagination.d.ts +8 -0
- package/dist/src/components/ui/data-table/data-table-toolbar.d.ts +9 -0
- package/dist/src/components/ui/data-table/data-table-view-options.d.ts +6 -0
- package/dist/src/components/ui/data-table/data-table.d.ts +24 -0
- package/dist/src/components/ui/data-table/data-table.docs.d.ts +22 -0
- package/dist/src/components/ui/data-table/index.d.ts +5 -0
- package/dist/src/components/ui/dialog/dialog.d.ts +39 -0
- package/dist/src/components/ui/dialog/dialog.docs.d.ts +24 -0
- package/dist/src/components/ui/dialog/index.d.ts +1 -0
- package/dist/src/components/ui/dropdown-menu/dropdown-menu.d.ts +39 -0
- package/dist/src/components/ui/dropdown-menu/dropdown-menu.docs.d.ts +25 -0
- package/dist/src/components/ui/dropdown-menu/index.d.ts +1 -0
- package/dist/src/components/ui/empty/empty.d.ts +9 -0
- package/dist/src/components/ui/empty/index.d.ts +1 -0
- package/dist/src/components/ui/input/index.d.ts +1 -1
- package/dist/src/components/ui/input/input.d.ts +3 -3
- package/dist/src/components/ui/input-search/input-search.d.ts +2 -2
- package/dist/src/components/ui/label/index.d.ts +1 -0
- package/dist/src/components/ui/label/label.d.ts +5 -0
- package/dist/src/components/ui/label/label.docs.d.ts +10 -0
- package/dist/src/components/ui/popover/index.d.ts +1 -0
- package/dist/src/components/ui/popover/popover.d.ts +27 -0
- package/dist/src/components/ui/popover/popover.docs.d.ts +25 -0
- package/dist/src/components/ui/progress/index.d.ts +1 -0
- package/dist/src/components/ui/progress/progress.d.ts +9 -0
- package/dist/src/components/ui/progress/progress.docs.d.ts +16 -0
- package/dist/src/components/ui/search/index.d.ts +1 -1
- package/dist/src/components/ui/search/search.d.ts +3 -3
- package/dist/src/components/ui/separator/index.d.ts +1 -0
- package/dist/src/components/ui/separator/separator.d.ts +3 -0
- package/dist/src/components/ui/spinner/index.d.ts +1 -0
- package/dist/src/components/ui/spinner/spinner.d.ts +9 -0
- package/dist/src/components/ui/table/index.d.ts +1 -0
- package/dist/src/components/ui/table/table.d.ts +23 -0
- package/dist/src/components/ui/tabs/index.d.ts +1 -0
- package/dist/src/components/ui/tabs/tabs.d.ts +6 -0
- package/dist/src/components/ui/tabs/tabs.docs.d.ts +25 -0
- package/dist/src/components/ui/tag/tag.d.ts +1 -1
- package/dist/src/components/ui/toast/index.d.ts +1 -0
- package/dist/src/components/ui/toast/toast.d.ts +48 -0
- package/dist/src/components/ui/toast/toast.docs.d.ts +12 -0
- package/dist/src/components/ui/widget-placeholder/index.d.ts +1 -0
- package/dist/src/components/ui/widget-placeholder/widget-placeholder.d.ts +18 -0
- package/dist/src/components/ui/widget-placeholder/widget-placeholder.docs.d.ts +14 -0
- package/dist/src/index.d.ts +18 -2
- package/dist/ui-react.css +1 -1
- package/package.json +4 -1
package/dist/index.js
CHANGED
|
@@ -1,119 +1,216 @@
|
|
|
1
|
-
import { cn as
|
|
2
|
-
import { Avatar as
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
1
|
+
import { cn as o } from "./lib/utils.js";
|
|
2
|
+
import { Avatar as a, AvatarFallback as n, AvatarGroup as i, AvatarImage as p, avatarVariants as l } from "./components/ui/avatar/avatar.js";
|
|
3
|
+
import { Tag as u, Tag as S, tagVariants as c } from "./components/ui/tag/tag.js";
|
|
4
|
+
import { Breadcrumb as b, BreadcrumbEllipsis as s, BreadcrumbItem as g, BreadcrumbLink as x, BreadcrumbList as I, BreadcrumbPage as T, BreadcrumbSeparator as f } from "./components/ui/breadcrumb/breadcrumb.js";
|
|
5
|
+
import { Button as y, buttonVariants as C } from "./components/ui/button/button.js";
|
|
6
|
+
import { ButtonIcon as M, buttonIconVariants as h } from "./components/ui/button-icon/button-icon.js";
|
|
7
|
+
import { ButtonMenu as B, buttonMenuVariants as V } from "./components/ui/button-menu/button-menu.js";
|
|
8
|
+
import { Card as v, CardContent as E, CardDescription as F, CardFooter as H, CardHeader as G, CardTitle as W } from "./components/ui/card/card.js";
|
|
9
|
+
import { CardFilter as R, cardFilterVariants as k } from "./components/ui/card-filter/card-filter.js";
|
|
10
|
+
import { Checkbox as O } from "./components/ui/checkbox/checkbox.js";
|
|
11
|
+
import { Chip as j, chipVariants as q } from "./components/ui/chip/chip.js";
|
|
12
|
+
import { DataTable as K } from "./components/ui/data-table/data-table.js";
|
|
13
|
+
import { DataTableColumnHeader as U } from "./components/ui/data-table/data-table-column-header.js";
|
|
14
|
+
import { DataTablePagination as Y } from "./components/ui/data-table/data-table-pagination.js";
|
|
15
|
+
import { DataTableToolbar as _ } from "./components/ui/data-table/data-table-toolbar.js";
|
|
16
|
+
import { DataTableViewOptions as ee } from "./components/ui/data-table/data-table-view-options.js";
|
|
17
|
+
import { Dialog as oe, DialogBody as te, DialogClose as ae, DialogCloseButton as ne, DialogContent as ie, DialogDescription as pe, DialogFooter as le, DialogHeader as de, DialogOverlay as ue, DialogPortal as Se, DialogTitle as ce, DialogTrigger as me, dialogContentVariants as be } from "./components/ui/dialog/dialog.js";
|
|
18
|
+
import { DropdownMenu as ge, DropdownMenuCheckboxItem as xe, DropdownMenuContent as Ie, DropdownMenuGroup as Te, DropdownMenuItem as fe, DropdownMenuLabel as De, DropdownMenuPortal as ye, DropdownMenuRadioGroup as Ce, DropdownMenuRadioItem as Pe, DropdownMenuSeparator as Me, DropdownMenuShortcut as he, DropdownMenuSub as we, DropdownMenuSubContent as Be, DropdownMenuSubTrigger as Ve, DropdownMenuTrigger as Le } from "./components/ui/dropdown-menu/dropdown-menu.js";
|
|
19
|
+
import { Empty as Ee, EmptyActions as Fe, EmptyDescription as He, EmptyHeader as Ge, EmptyIcon as We, EmptyLinks as Ae, EmptyTitle as Re } from "./components/ui/empty/empty.js";
|
|
20
|
+
import { InputText as ze, InputText as Oe } from "./components/ui/input-text/input-text.js";
|
|
21
|
+
import { InputDatePicker as je } from "./components/ui/input-date-picker/input-date-picker.js";
|
|
22
|
+
import { InputSearch as Je, InputSearch as Ke } from "./components/ui/input-search/input-search.js";
|
|
23
|
+
import { InputSelect as Ue, InputSelectContent as Xe, InputSelectDescription as Ye, InputSelectError as Ze, InputSelectField as _e, InputSelectGroup as $e, InputSelectItem as er, InputSelectLabel as rr, InputSelectSearch as or, InputSelectSection as tr, InputSelectSectionLabel as ar, InputSelectStatus as nr, InputSelectTrigger as ir, InputSelectValue as pr, InputSelect as lr, InputSelectContent as dr, InputSelectSection as ur, InputSelectSectionLabel as Sr, InputSelectItem as cr, InputSelectTrigger as mr, InputSelectValue as br } from "./components/ui/input-select/input-select.js";
|
|
24
|
+
import { InputTextArea as gr, InputTextArea as xr } from "./components/ui/input-text-area/input-text-area.js";
|
|
25
|
+
import { Label as Tr, labelClassName as fr } from "./components/ui/label/label.js";
|
|
26
|
+
import { Link as yr } from "./components/ui/link/link.js";
|
|
27
|
+
import { Popover as Pr, PopoverContent as Mr, PopoverPortal as hr, PopoverTrigger as wr } from "./components/ui/popover/popover.js";
|
|
28
|
+
import { Progress as Vr } from "./components/ui/progress/progress.js";
|
|
29
|
+
import { Radio as vr, RadioGroup as Er } from "./components/ui/radio/radio.js";
|
|
30
|
+
import { ResizableHandle as Hr, ResizablePanel as Gr, ResizablePanelGroup as Wr } from "./components/ui/resizable/resizable.js";
|
|
31
|
+
import { SearchGlobal as Rr } from "./components/ui/search-global/search-global.js";
|
|
32
|
+
import { Separator as zr } from "./components/ui/separator/separator.js";
|
|
33
|
+
import { SidebarPrimary as Nr, SidebarPrimaryCollapseTrigger as jr, SidebarPrimaryContent as qr, SidebarPrimaryFooter as Jr, SidebarPrimaryHeader as Kr, SidebarPrimaryMenu as Qr, SidebarPrimaryMenuItem as Ur, SidebarPrimaryMenuItemExtras as Xr, SidebarPrimarySection as Yr, sidebarPrimaryMenuItemVariants as Zr } from "./components/ui/sidebar-primary/sidebar-primary.js";
|
|
34
|
+
import { SidebarSecondary as $r, SidebarSecondaryCollapseTrigger as eo, SidebarSecondaryCollapsedBreadcrumb as ro, SidebarSecondaryContent as oo, SidebarSecondaryFooter as to, SidebarSecondaryHeader as ao, SidebarSecondaryMenu as no, SidebarSecondaryMenuItem as io, SidebarSecondaryMenuItemExtras as po, SidebarSecondaryMenuSub as lo, SidebarSecondaryMenuSubContent as uo, SidebarSecondaryMenuSubItem as So, SidebarSecondaryMenuSubTrigger as co, SidebarSecondarySection as mo, SidebarSecondarySectionLabel as bo, sidebarSecondaryMenuItemVariants as so } from "./components/ui/sidebar-secondary/sidebar-secondary.js";
|
|
35
|
+
import { Spinner as xo, spinnerVariants as Io } from "./components/ui/spinner/spinner.js";
|
|
36
|
+
import { Switch as fo } from "./components/ui/switch/switch.js";
|
|
37
|
+
import { Table as yo, TableBody as Co, TableCaption as Po, TableCell as Mo, TableFooter as ho, TableHead as wo, TableHeader as Bo, TableRow as Vo } from "./components/ui/table/table.js";
|
|
38
|
+
import { Tabs as vo, TabsContent as Eo, TabsList as Fo, TabsTrigger as Ho } from "./components/ui/tabs/tabs.js";
|
|
39
|
+
import { Toaster as Wo, toast as Ao } from "./components/ui/toast/toast.js";
|
|
40
|
+
import { Tooltip as ko, TooltipContent as zo, TooltipProvider as Oo, TooltipTrigger as No } from "./components/ui/tooltip/tooltip.js";
|
|
41
|
+
import { WidgetPlaceholder as qo, WidgetPlaceholderAction as Jo, WidgetPlaceholderContent as Ko, WidgetPlaceholderFooter as Qo, WidgetPlaceholderHeader as Uo, WidgetPlaceholderIcon as Xo, WidgetPlaceholderImage as Yo, WidgetPlaceholderText as Zo, WidgetPlaceholderTitle as _o } from "./components/ui/widget-placeholder/widget-placeholder.js";
|
|
26
42
|
export {
|
|
27
|
-
|
|
43
|
+
a as Avatar,
|
|
28
44
|
n as AvatarFallback,
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
u as
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
I as
|
|
37
|
-
|
|
45
|
+
i as AvatarGroup,
|
|
46
|
+
p as AvatarImage,
|
|
47
|
+
u as Badge,
|
|
48
|
+
b as Breadcrumb,
|
|
49
|
+
s as BreadcrumbEllipsis,
|
|
50
|
+
g as BreadcrumbItem,
|
|
51
|
+
x as BreadcrumbLink,
|
|
52
|
+
I as BreadcrumbList,
|
|
53
|
+
T as BreadcrumbPage,
|
|
54
|
+
f as BreadcrumbSeparator,
|
|
38
55
|
y as Button,
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
H as
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
Fe as
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
je as
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
56
|
+
M as ButtonIcon,
|
|
57
|
+
B as ButtonMenu,
|
|
58
|
+
v as Card,
|
|
59
|
+
E as CardContent,
|
|
60
|
+
F as CardDescription,
|
|
61
|
+
R as CardFilter,
|
|
62
|
+
H as CardFooter,
|
|
63
|
+
G as CardHeader,
|
|
64
|
+
W as CardTitle,
|
|
65
|
+
O as Checkbox,
|
|
66
|
+
j as Chip,
|
|
67
|
+
K as DataTable,
|
|
68
|
+
U as DataTableColumnHeader,
|
|
69
|
+
Y as DataTablePagination,
|
|
70
|
+
_ as DataTableToolbar,
|
|
71
|
+
ee as DataTableViewOptions,
|
|
72
|
+
oe as Dialog,
|
|
73
|
+
te as DialogBody,
|
|
74
|
+
ae as DialogClose,
|
|
75
|
+
ne as DialogCloseButton,
|
|
76
|
+
ie as DialogContent,
|
|
77
|
+
pe as DialogDescription,
|
|
78
|
+
le as DialogFooter,
|
|
79
|
+
de as DialogHeader,
|
|
80
|
+
ue as DialogOverlay,
|
|
81
|
+
Se as DialogPortal,
|
|
82
|
+
ce as DialogTitle,
|
|
83
|
+
me as DialogTrigger,
|
|
84
|
+
ge as DropdownMenu,
|
|
85
|
+
xe as DropdownMenuCheckboxItem,
|
|
86
|
+
Ie as DropdownMenuContent,
|
|
87
|
+
Te as DropdownMenuGroup,
|
|
88
|
+
fe as DropdownMenuItem,
|
|
89
|
+
De as DropdownMenuLabel,
|
|
90
|
+
ye as DropdownMenuPortal,
|
|
91
|
+
Ce as DropdownMenuRadioGroup,
|
|
92
|
+
Pe as DropdownMenuRadioItem,
|
|
93
|
+
Me as DropdownMenuSeparator,
|
|
94
|
+
he as DropdownMenuShortcut,
|
|
95
|
+
we as DropdownMenuSub,
|
|
96
|
+
Be as DropdownMenuSubContent,
|
|
97
|
+
Ve as DropdownMenuSubTrigger,
|
|
98
|
+
Le as DropdownMenuTrigger,
|
|
99
|
+
Ee as Empty,
|
|
100
|
+
Fe as EmptyActions,
|
|
101
|
+
He as EmptyDescription,
|
|
102
|
+
Ge as EmptyHeader,
|
|
103
|
+
We as EmptyIcon,
|
|
104
|
+
Ae as EmptyLinks,
|
|
105
|
+
Re as EmptyTitle,
|
|
106
|
+
ze as Input,
|
|
107
|
+
je as InputDatePicker,
|
|
108
|
+
Je as InputSearch,
|
|
109
|
+
Ue as InputSelect,
|
|
110
|
+
Xe as InputSelectContent,
|
|
111
|
+
Ye as InputSelectDescription,
|
|
112
|
+
Ze as InputSelectError,
|
|
113
|
+
_e as InputSelectField,
|
|
114
|
+
$e as InputSelectGroup,
|
|
115
|
+
er as InputSelectItem,
|
|
116
|
+
rr as InputSelectLabel,
|
|
117
|
+
or as InputSelectSearch,
|
|
118
|
+
tr as InputSelectSection,
|
|
119
|
+
ar as InputSelectSectionLabel,
|
|
120
|
+
nr as InputSelectStatus,
|
|
121
|
+
ir as InputSelectTrigger,
|
|
122
|
+
pr as InputSelectValue,
|
|
123
|
+
Oe as InputText,
|
|
124
|
+
gr as InputTextArea,
|
|
125
|
+
Tr as Label,
|
|
126
|
+
yr as Link,
|
|
127
|
+
Pr as Popover,
|
|
128
|
+
Mr as PopoverContent,
|
|
129
|
+
hr as PopoverPortal,
|
|
130
|
+
wr as PopoverTrigger,
|
|
131
|
+
Vr as Progress,
|
|
132
|
+
vr as Radio,
|
|
133
|
+
Er as RadioGroup,
|
|
134
|
+
Hr as ResizableHandle,
|
|
135
|
+
Gr as ResizablePanel,
|
|
136
|
+
Wr as ResizablePanelGroup,
|
|
137
|
+
Ke as Search,
|
|
138
|
+
Rr as SearchGlobal,
|
|
139
|
+
lr as Select,
|
|
140
|
+
dr as SelectContent,
|
|
141
|
+
ur as SelectGroup,
|
|
142
|
+
Sr as SelectGroupLabel,
|
|
143
|
+
cr as SelectItem,
|
|
144
|
+
mr as SelectTrigger,
|
|
145
|
+
br as SelectValue,
|
|
146
|
+
zr as Separator,
|
|
147
|
+
Nr as SidebarPrimary,
|
|
148
|
+
jr as SidebarPrimaryCollapseTrigger,
|
|
149
|
+
qr as SidebarPrimaryContent,
|
|
150
|
+
Jr as SidebarPrimaryFooter,
|
|
151
|
+
Kr as SidebarPrimaryHeader,
|
|
152
|
+
Qr as SidebarPrimaryMenu,
|
|
153
|
+
Ur as SidebarPrimaryMenuItem,
|
|
154
|
+
Xr as SidebarPrimaryMenuItemExtras,
|
|
155
|
+
Yr as SidebarPrimarySection,
|
|
156
|
+
$r as SidebarSecondary,
|
|
157
|
+
eo as SidebarSecondaryCollapseTrigger,
|
|
158
|
+
ro as SidebarSecondaryCollapsedBreadcrumb,
|
|
159
|
+
oo as SidebarSecondaryContent,
|
|
160
|
+
to as SidebarSecondaryFooter,
|
|
161
|
+
ao as SidebarSecondaryHeader,
|
|
162
|
+
no as SidebarSecondaryMenu,
|
|
163
|
+
io as SidebarSecondaryMenuItem,
|
|
164
|
+
po as SidebarSecondaryMenuItemExtras,
|
|
165
|
+
lo as SidebarSecondaryMenuSub,
|
|
166
|
+
uo as SidebarSecondaryMenuSubContent,
|
|
167
|
+
So as SidebarSecondaryMenuSubItem,
|
|
168
|
+
co as SidebarSecondaryMenuSubTrigger,
|
|
169
|
+
mo as SidebarSecondarySection,
|
|
170
|
+
bo as SidebarSecondarySectionLabel,
|
|
171
|
+
xo as Spinner,
|
|
172
|
+
fo as Switch,
|
|
173
|
+
yo as Table,
|
|
174
|
+
Co as TableBody,
|
|
175
|
+
Po as TableCaption,
|
|
176
|
+
Mo as TableCell,
|
|
177
|
+
ho as TableFooter,
|
|
178
|
+
wo as TableHead,
|
|
179
|
+
Bo as TableHeader,
|
|
180
|
+
Vo as TableRow,
|
|
181
|
+
vo as Tabs,
|
|
182
|
+
Eo as TabsContent,
|
|
183
|
+
Fo as TabsList,
|
|
184
|
+
Ho as TabsTrigger,
|
|
185
|
+
S as Tag,
|
|
186
|
+
xr as Textarea,
|
|
187
|
+
Wo as Toaster,
|
|
188
|
+
ko as Tooltip,
|
|
189
|
+
zo as TooltipContent,
|
|
190
|
+
Oo as TooltipProvider,
|
|
191
|
+
No as TooltipTrigger,
|
|
192
|
+
qo as WidgetPlaceholder,
|
|
193
|
+
Jo as WidgetPlaceholderAction,
|
|
194
|
+
Ko as WidgetPlaceholderContent,
|
|
195
|
+
Qo as WidgetPlaceholderFooter,
|
|
196
|
+
Uo as WidgetPlaceholderHeader,
|
|
197
|
+
Xo as WidgetPlaceholderIcon,
|
|
198
|
+
Yo as WidgetPlaceholderImage,
|
|
199
|
+
Zo as WidgetPlaceholderText,
|
|
200
|
+
_o as WidgetPlaceholderTitle,
|
|
201
|
+
l as avatarVariants,
|
|
202
|
+
h as buttonIconVariants,
|
|
110
203
|
V as buttonMenuVariants,
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
204
|
+
C as buttonVariants,
|
|
205
|
+
k as cardFilterVariants,
|
|
206
|
+
q as chipVariants,
|
|
207
|
+
o as cn,
|
|
208
|
+
be as dialogContentVariants,
|
|
209
|
+
fr as labelClassName,
|
|
210
|
+
Zr as sidebarPrimaryMenuItemVariants,
|
|
211
|
+
so as sidebarSecondaryMenuItemVariants,
|
|
212
|
+
Io as spinnerVariants,
|
|
213
|
+
c as tagVariants,
|
|
214
|
+
Ao as toast
|
|
118
215
|
};
|
|
119
216
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import * as o from "react";
|
|
2
|
+
import { createTable as u } from "../../../../../../@tanstack_table-core@8.21.3/node_modules/@tanstack/table-core/build/lib/index.js";
|
|
3
|
+
import { ColumnFaceting as C, ColumnFiltering as S, ColumnGrouping as w, ColumnOrdering as b, ColumnPinning as y, ColumnSizing as F, ColumnVisibility as x, GlobalFaceting as h, GlobalFiltering as M, Headers as O, RowExpanding as E, RowPagination as P, RowPinning as v, RowSelection as G, RowSorting as $, _getVisibleLeafColumns as A, aggregationFns as V, buildHeaderGroups as j, createCell as k, createColumn as z, createRow as H, defaultColumnSizing as N, expandRows as T, filterFns as U, flattenBy as _, functionalUpdate as B, getCoreRowModel as L, getExpandedRowModel as q, getFilteredRowModel as D, getMemoOptions as I, getPaginationRowModel as J, getSortedRowModel as K, isFunction as Q, isNumberArray as W, isRowSelected as X, isSubRowSelected as Y, makeStateUpdater as Z, memo as ee, orderColumns as te, passiveEventSupported as ne, reSplitAlphaNumeric as oe, selectRowsFn as re, shouldAutoRemoveFilter as ie, sortingFns as ae } from "../../../../../../@tanstack_table-core@8.21.3/node_modules/@tanstack/table-core/build/lib/index.js";
|
|
4
|
+
/**
|
|
5
|
+
* react-table
|
|
6
|
+
*
|
|
7
|
+
* Copyright (c) TanStack
|
|
8
|
+
*
|
|
9
|
+
* This source code is licensed under the MIT license found in the
|
|
10
|
+
* LICENSE.md file in the root directory of this source tree.
|
|
11
|
+
*
|
|
12
|
+
* @license MIT
|
|
13
|
+
*/
|
|
14
|
+
function f(e, t) {
|
|
15
|
+
return e ? s(e) ? /* @__PURE__ */ o.createElement(e, t) : e : null;
|
|
16
|
+
}
|
|
17
|
+
function s(e) {
|
|
18
|
+
return c(e) || typeof e == "function" || g(e);
|
|
19
|
+
}
|
|
20
|
+
function c(e) {
|
|
21
|
+
return typeof e == "function" && (() => {
|
|
22
|
+
const t = Object.getPrototypeOf(e);
|
|
23
|
+
return t.prototype && t.prototype.isReactComponent;
|
|
24
|
+
})();
|
|
25
|
+
}
|
|
26
|
+
function g(e) {
|
|
27
|
+
return typeof e == "object" && typeof e.$$typeof == "symbol" && ["react.memo", "react.forward_ref"].includes(e.$$typeof.description);
|
|
28
|
+
}
|
|
29
|
+
function m(e) {
|
|
30
|
+
const t = {
|
|
31
|
+
state: {},
|
|
32
|
+
// Dummy state
|
|
33
|
+
onStateChange: () => {
|
|
34
|
+
},
|
|
35
|
+
// noop
|
|
36
|
+
renderFallbackValue: null,
|
|
37
|
+
...e
|
|
38
|
+
}, [n] = o.useState(() => ({
|
|
39
|
+
current: u(t)
|
|
40
|
+
})), [i, a] = o.useState(() => n.current.initialState);
|
|
41
|
+
return n.current.setOptions((l) => ({
|
|
42
|
+
...l,
|
|
43
|
+
...e,
|
|
44
|
+
state: {
|
|
45
|
+
...i,
|
|
46
|
+
...e.state
|
|
47
|
+
},
|
|
48
|
+
// Similarly, we'll maintain both our internal state and any user-provided
|
|
49
|
+
// state.
|
|
50
|
+
onStateChange: (r) => {
|
|
51
|
+
a(r), e.onStateChange == null || e.onStateChange(r);
|
|
52
|
+
}
|
|
53
|
+
})), n.current;
|
|
54
|
+
}
|
|
55
|
+
export {
|
|
56
|
+
C as ColumnFaceting,
|
|
57
|
+
S as ColumnFiltering,
|
|
58
|
+
w as ColumnGrouping,
|
|
59
|
+
b as ColumnOrdering,
|
|
60
|
+
y as ColumnPinning,
|
|
61
|
+
F as ColumnSizing,
|
|
62
|
+
x as ColumnVisibility,
|
|
63
|
+
h as GlobalFaceting,
|
|
64
|
+
M as GlobalFiltering,
|
|
65
|
+
O as Headers,
|
|
66
|
+
E as RowExpanding,
|
|
67
|
+
P as RowPagination,
|
|
68
|
+
v as RowPinning,
|
|
69
|
+
G as RowSelection,
|
|
70
|
+
$ as RowSorting,
|
|
71
|
+
A as _getVisibleLeafColumns,
|
|
72
|
+
V as aggregationFns,
|
|
73
|
+
j as buildHeaderGroups,
|
|
74
|
+
k as createCell,
|
|
75
|
+
z as createColumn,
|
|
76
|
+
H as createRow,
|
|
77
|
+
u as createTable,
|
|
78
|
+
N as defaultColumnSizing,
|
|
79
|
+
T as expandRows,
|
|
80
|
+
U as filterFns,
|
|
81
|
+
_ as flattenBy,
|
|
82
|
+
f as flexRender,
|
|
83
|
+
B as functionalUpdate,
|
|
84
|
+
L as getCoreRowModel,
|
|
85
|
+
q as getExpandedRowModel,
|
|
86
|
+
D as getFilteredRowModel,
|
|
87
|
+
I as getMemoOptions,
|
|
88
|
+
J as getPaginationRowModel,
|
|
89
|
+
K as getSortedRowModel,
|
|
90
|
+
Q as isFunction,
|
|
91
|
+
W as isNumberArray,
|
|
92
|
+
X as isRowSelected,
|
|
93
|
+
Y as isSubRowSelected,
|
|
94
|
+
Z as makeStateUpdater,
|
|
95
|
+
ee as memo,
|
|
96
|
+
te as orderColumns,
|
|
97
|
+
ne as passiveEventSupported,
|
|
98
|
+
oe as reSplitAlphaNumeric,
|
|
99
|
+
re as selectRowsFn,
|
|
100
|
+
ie as shouldAutoRemoveFilter,
|
|
101
|
+
ae as sortingFns,
|
|
102
|
+
m as useReactTable
|
|
103
|
+
};
|
|
104
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../../../../../../../../../node_modules/.pnpm/@tanstack+react-table@8.21.3_react-dom@19.2.6_react@19.2.6__react@19.2.6/node_modules/@tanstack/react-table/build/lib/index.mjs"],"sourcesContent":["/**\n * react-table\n *\n * Copyright (c) TanStack\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE.md file in the root directory of this source tree.\n *\n * @license MIT\n */\nimport * as React from 'react';\nimport { createTable } from '@tanstack/table-core';\nexport * from '@tanstack/table-core';\n\n//\n\n/**\n * If rendering headers, cells, or footers with custom markup, use flexRender instead of `cell.getValue()` or `cell.renderValue()`.\n */\nfunction flexRender(Comp, props) {\n return !Comp ? null : isReactComponent(Comp) ? /*#__PURE__*/React.createElement(Comp, props) : Comp;\n}\nfunction isReactComponent(component) {\n return isClassComponent(component) || typeof component === 'function' || isExoticComponent(component);\n}\nfunction isClassComponent(component) {\n return typeof component === 'function' && (() => {\n const proto = Object.getPrototypeOf(component);\n return proto.prototype && proto.prototype.isReactComponent;\n })();\n}\nfunction isExoticComponent(component) {\n return typeof component === 'object' && typeof component.$$typeof === 'symbol' && ['react.memo', 'react.forward_ref'].includes(component.$$typeof.description);\n}\nfunction useReactTable(options) {\n // Compose in the generic options to the user options\n const resolvedOptions = {\n state: {},\n // Dummy state\n onStateChange: () => {},\n // noop\n renderFallbackValue: null,\n ...options\n };\n\n // Create a new table and store it in state\n const [tableRef] = React.useState(() => ({\n current: createTable(resolvedOptions)\n }));\n\n // By default, manage table state here using the table's initial state\n const [state, setState] = React.useState(() => tableRef.current.initialState);\n\n // Compose the default state above with any user state. This will allow the user\n // to only control a subset of the state if desired.\n tableRef.current.setOptions(prev => ({\n ...prev,\n ...options,\n state: {\n ...state,\n ...options.state\n },\n // Similarly, we'll maintain both our internal state and any user-provided\n // state.\n onStateChange: updater => {\n setState(updater);\n options.onStateChange == null || options.onStateChange(updater);\n }\n }));\n return tableRef.current;\n}\n\nexport { flexRender, useReactTable };\n//# sourceMappingURL=index.mjs.map\n"],"names":["flexRender","Comp","props","isReactComponent","React","component","isClassComponent","isExoticComponent","proto","useReactTable","options","resolvedOptions","tableRef","createTable","state","setState","prev","updater"],"mappings":";;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAmBA,SAASA,EAAWC,GAAMC,GAAO;AAC/B,SAAQD,IAAcE,EAAiBF,CAAI,IAAiB,gBAAAG,EAAM,cAAcH,GAAMC,CAAK,IAAID,IAAhF;AACjB;AACA,SAASE,EAAiBE,GAAW;AACnC,SAAOC,EAAiBD,CAAS,KAAK,OAAOA,KAAc,cAAcE,EAAkBF,CAAS;AACtG;AACA,SAASC,EAAiBD,GAAW;AACnC,SAAO,OAAOA,KAAc,eAAe,MAAM;AAC/C,UAAMG,IAAQ,OAAO,eAAeH,CAAS;AAC7C,WAAOG,EAAM,aAAaA,EAAM,UAAU;AAAA,EAC5C,GAAC;AACH;AACA,SAASD,EAAkBF,GAAW;AACpC,SAAO,OAAOA,KAAc,YAAY,OAAOA,EAAU,YAAa,YAAY,CAAC,cAAc,mBAAmB,EAAE,SAASA,EAAU,SAAS,WAAW;AAC/J;AACA,SAASI,EAAcC,GAAS;AAE9B,QAAMC,IAAkB;AAAA,IACtB,OAAO,CAAA;AAAA;AAAA,IAEP,eAAe,MAAM;AAAA,IAAC;AAAA;AAAA,IAEtB,qBAAqB;AAAA,IACrB,GAAGD;AAAA,EACP,GAGQ,CAACE,CAAQ,IAAIR,EAAM,SAAS,OAAO;AAAA,IACvC,SAASS,EAAYF,CAAe;AAAA,EACxC,EAAI,GAGI,CAACG,GAAOC,CAAQ,IAAIX,EAAM,SAAS,MAAMQ,EAAS,QAAQ,YAAY;AAI5E,SAAAA,EAAS,QAAQ,WAAW,CAAAI,OAAS;AAAA,IACnC,GAAGA;AAAA,IACH,GAAGN;AAAA,IACH,OAAO;AAAA,MACL,GAAGI;AAAA,MACH,GAAGJ,EAAQ;AAAA,IACjB;AAAA;AAAA;AAAA,IAGI,eAAe,CAAAO,MAAW;AACxB,MAAAF,EAASE,CAAO,GAChBP,EAAQ,iBAAiB,QAAQA,EAAQ,cAAcO,CAAO;AAAA,IAChE;AAAA,EACJ,EAAI,GACKL,EAAS;AAClB;","x_google_ignoreList":[0]}
|