@acronis-platform/ui-react 0.43.0 → 0.45.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/checkbox/checkbox.js +3 -1
- package/dist/components/ui/checkbox/checkbox.js.map +1 -1
- package/dist/components/ui/description-list/description-list.js +54 -0
- package/dist/components/ui/description-list/description-list.js.map +1 -0
- package/dist/components/ui/sheet/sheet-details.js +80 -0
- package/dist/components/ui/sheet/sheet-details.js.map +1 -0
- package/dist/components/ui/sheet/sheet.js +138 -0
- package/dist/components/ui/sheet/sheet.js.map +1 -0
- package/dist/components/ui/table/table.js +8 -8
- package/dist/components/ui/table/table.js.map +1 -1
- package/dist/index.js +224 -189
- package/dist/index.js.map +1 -1
- package/dist/react.js +224 -189
- package/dist/react.js.map +1 -1
- package/dist/src/components/ui/description-list/description-list.d.ts +8 -0
- package/dist/src/components/ui/description-list/index.d.ts +1 -0
- package/dist/src/components/ui/sheet/index.d.ts +3 -0
- package/dist/src/components/ui/sheet/sheet-details.d.ts +42 -0
- package/dist/src/components/ui/sheet/sheet.d.ts +36 -0
- package/dist/src/components/ui/sheet/sheet.docs.d.ts +21 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/ui-react.css +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,216 +1,251 @@
|
|
|
1
|
-
import { cn as
|
|
2
|
-
import { Avatar as a, AvatarFallback as n, AvatarGroup as i, AvatarImage as
|
|
3
|
-
import { Tag as
|
|
4
|
-
import { Breadcrumb as
|
|
5
|
-
import { Button as
|
|
6
|
-
import { ButtonIcon as
|
|
7
|
-
import { ButtonMenu as
|
|
8
|
-
import { Card as v, CardContent as
|
|
1
|
+
import { cn as r } from "./lib/utils.js";
|
|
2
|
+
import { Avatar as a, AvatarFallback as n, AvatarGroup as i, AvatarImage as l, avatarVariants as p } from "./components/ui/avatar/avatar.js";
|
|
3
|
+
import { Tag as d, Tag as s, tagVariants as c } from "./components/ui/tag/tag.js";
|
|
4
|
+
import { Breadcrumb as m, BreadcrumbEllipsis as b, BreadcrumbItem as g, BreadcrumbLink as D, BreadcrumbList as x, BreadcrumbPage as T, BreadcrumbSeparator as I } from "./components/ui/breadcrumb/breadcrumb.js";
|
|
5
|
+
import { Button as f, buttonVariants as C } from "./components/ui/button/button.js";
|
|
6
|
+
import { ButtonIcon as P, buttonIconVariants as M } from "./components/ui/button-icon/button-icon.js";
|
|
7
|
+
import { ButtonMenu as L, buttonMenuVariants as w } from "./components/ui/button-menu/button-menu.js";
|
|
8
|
+
import { Card as v, CardContent as F, CardDescription as H, CardFooter as E, CardHeader as A, CardTitle as G } from "./components/ui/card/card.js";
|
|
9
9
|
import { CardFilter as R, cardFilterVariants as k } from "./components/ui/card-filter/card-filter.js";
|
|
10
|
-
import { Checkbox as
|
|
10
|
+
import { Checkbox as z } from "./components/ui/checkbox/checkbox.js";
|
|
11
11
|
import { Chip as j, chipVariants as q } from "./components/ui/chip/chip.js";
|
|
12
12
|
import { DataTable as K } from "./components/ui/data-table/data-table.js";
|
|
13
13
|
import { DataTableColumnHeader as U } from "./components/ui/data-table/data-table-column-header.js";
|
|
14
14
|
import { DataTablePagination as Y } from "./components/ui/data-table/data-table-pagination.js";
|
|
15
15
|
import { DataTableToolbar as _ } from "./components/ui/data-table/data-table-toolbar.js";
|
|
16
16
|
import { DataTableViewOptions as ee } from "./components/ui/data-table/data-table-view-options.js";
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
17
|
+
import { DescriptionList as re, DescriptionListActions as oe, DescriptionListItem as ae, DescriptionListLabel as ne, DescriptionListValue as ie, DescriptionListValueDescription as le } from "./components/ui/description-list/description-list.js";
|
|
18
|
+
import { Sheet as Se, SheetBody as de, SheetClose as se, SheetCloseButton as ce, SheetContent as ue, SheetDescription as me, SheetFooter as be, SheetHeader as ge, SheetOverlay as De, SheetPortal as xe, SheetTitle as Te, SheetTrigger as Ie, Sheet as he, SheetBody as fe, SheetClose as Ce, SheetCloseButton as ye, SheetContent as Pe, SheetDescription as Me, SheetFooter as Be, SheetHeader as Le, SheetOverlay as we, SheetPortal as Ve, SheetTitle as ve, SheetTrigger as Fe, sheetVariants as He } from "./components/ui/sheet/sheet.js";
|
|
19
|
+
import { Dialog as Ae, DialogBody as Ge, DialogClose as We, DialogCloseButton as Re, DialogContent as ke, DialogDescription as Oe, DialogFooter as ze, DialogHeader as Ne, DialogOverlay as je, DialogPortal as qe, DialogTitle as Je, DialogTrigger as Ke, dialogContentVariants as Qe } from "./components/ui/dialog/dialog.js";
|
|
20
|
+
import { DropdownMenu as Xe, DropdownMenuCheckboxItem as Ye, DropdownMenuContent as Ze, DropdownMenuGroup as _e, DropdownMenuItem as $e, DropdownMenuLabel as et, DropdownMenuPortal as tt, DropdownMenuRadioGroup as rt, DropdownMenuRadioItem as ot, DropdownMenuSeparator as at, DropdownMenuShortcut as nt, DropdownMenuSub as it, DropdownMenuSubContent as lt, DropdownMenuSubTrigger as pt, DropdownMenuTrigger as St } from "./components/ui/dropdown-menu/dropdown-menu.js";
|
|
21
|
+
import { Empty as st, EmptyActions as ct, EmptyDescription as ut, EmptyHeader as mt, EmptyIcon as bt, EmptyLinks as gt, EmptyTitle as Dt } from "./components/ui/empty/empty.js";
|
|
22
|
+
import { InputText as Tt, InputText as It } from "./components/ui/input-text/input-text.js";
|
|
23
|
+
import { InputDatePicker as ft } from "./components/ui/input-date-picker/input-date-picker.js";
|
|
24
|
+
import { InputSearch as yt, InputSearch as Pt } from "./components/ui/input-search/input-search.js";
|
|
25
|
+
import { InputSelect as Bt, InputSelectContent as Lt, InputSelectDescription as wt, InputSelectError as Vt, InputSelectField as vt, InputSelectGroup as Ft, InputSelectItem as Ht, InputSelectLabel as Et, InputSelectSearch as At, InputSelectSection as Gt, InputSelectSectionLabel as Wt, InputSelectStatus as Rt, InputSelectTrigger as kt, InputSelectValue as Ot, InputSelect as zt, InputSelectContent as Nt, InputSelectSection as jt, InputSelectSectionLabel as qt, InputSelectItem as Jt, InputSelectTrigger as Kt, InputSelectValue as Qt } from "./components/ui/input-select/input-select.js";
|
|
26
|
+
import { InputTextArea as Xt, InputTextArea as Yt } from "./components/ui/input-text-area/input-text-area.js";
|
|
27
|
+
import { Label as _t, labelClassName as $t } from "./components/ui/label/label.js";
|
|
28
|
+
import { Link as tr } from "./components/ui/link/link.js";
|
|
29
|
+
import { Popover as or, PopoverContent as ar, PopoverPortal as nr, PopoverTrigger as ir } from "./components/ui/popover/popover.js";
|
|
30
|
+
import { Progress as pr } from "./components/ui/progress/progress.js";
|
|
31
|
+
import { Radio as dr, RadioGroup as sr } from "./components/ui/radio/radio.js";
|
|
32
|
+
import { ResizableHandle as ur, ResizablePanel as mr, ResizablePanelGroup as br } from "./components/ui/resizable/resizable.js";
|
|
33
|
+
import { SearchGlobal as Dr } from "./components/ui/search-global/search-global.js";
|
|
34
|
+
import { Separator as Tr } from "./components/ui/separator/separator.js";
|
|
35
|
+
import { SheetDetails as hr } from "./components/ui/sheet/sheet-details.js";
|
|
36
|
+
import { SidebarPrimary as Cr, SidebarPrimaryCollapseTrigger as yr, SidebarPrimaryContent as Pr, SidebarPrimaryFooter as Mr, SidebarPrimaryHeader as Br, SidebarPrimaryMenu as Lr, SidebarPrimaryMenuItem as wr, SidebarPrimaryMenuItemExtras as Vr, SidebarPrimarySection as vr, sidebarPrimaryMenuItemVariants as Fr } from "./components/ui/sidebar-primary/sidebar-primary.js";
|
|
37
|
+
import { SidebarSecondary as Er, SidebarSecondaryCollapseTrigger as Ar, SidebarSecondaryCollapsedBreadcrumb as Gr, SidebarSecondaryContent as Wr, SidebarSecondaryFooter as Rr, SidebarSecondaryHeader as kr, SidebarSecondaryMenu as Or, SidebarSecondaryMenuItem as zr, SidebarSecondaryMenuItemExtras as Nr, SidebarSecondaryMenuSub as jr, SidebarSecondaryMenuSubContent as qr, SidebarSecondaryMenuSubItem as Jr, SidebarSecondaryMenuSubTrigger as Kr, SidebarSecondarySection as Qr, SidebarSecondarySectionLabel as Ur, sidebarSecondaryMenuItemVariants as Xr } from "./components/ui/sidebar-secondary/sidebar-secondary.js";
|
|
38
|
+
import { Spinner as Zr, spinnerVariants as _r } from "./components/ui/spinner/spinner.js";
|
|
39
|
+
import { Switch as eo } from "./components/ui/switch/switch.js";
|
|
40
|
+
import { Table as ro, TableBody as oo, TableCaption as ao, TableCell as no, TableFooter as io, TableHead as lo, TableHeader as po, TableRow as So } from "./components/ui/table/table.js";
|
|
41
|
+
import { Tabs as co, TabsContent as uo, TabsList as mo, TabsTrigger as bo } from "./components/ui/tabs/tabs.js";
|
|
42
|
+
import { Toaster as Do, toast as xo } from "./components/ui/toast/toast.js";
|
|
43
|
+
import { Tooltip as Io, TooltipContent as ho, TooltipProvider as fo, TooltipTrigger as Co } from "./components/ui/tooltip/tooltip.js";
|
|
44
|
+
import { WidgetPlaceholder as Po, WidgetPlaceholderAction as Mo, WidgetPlaceholderContent as Bo, WidgetPlaceholderFooter as Lo, WidgetPlaceholderHeader as wo, WidgetPlaceholderIcon as Vo, WidgetPlaceholderImage as vo, WidgetPlaceholderText as Fo, WidgetPlaceholderTitle as Ho } from "./components/ui/widget-placeholder/widget-placeholder.js";
|
|
42
45
|
export {
|
|
43
46
|
a as Avatar,
|
|
44
47
|
n as AvatarFallback,
|
|
45
48
|
i as AvatarGroup,
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
49
|
+
l as AvatarImage,
|
|
50
|
+
d as Badge,
|
|
51
|
+
m as Breadcrumb,
|
|
52
|
+
b as BreadcrumbEllipsis,
|
|
50
53
|
g as BreadcrumbItem,
|
|
51
|
-
|
|
52
|
-
|
|
54
|
+
D as BreadcrumbLink,
|
|
55
|
+
x as BreadcrumbList,
|
|
53
56
|
T as BreadcrumbPage,
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
57
|
+
I as BreadcrumbSeparator,
|
|
58
|
+
f as Button,
|
|
59
|
+
P as ButtonIcon,
|
|
60
|
+
L as ButtonMenu,
|
|
58
61
|
v as Card,
|
|
59
|
-
|
|
60
|
-
|
|
62
|
+
F as CardContent,
|
|
63
|
+
H as CardDescription,
|
|
61
64
|
R as CardFilter,
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
65
|
+
E as CardFooter,
|
|
66
|
+
A as CardHeader,
|
|
67
|
+
G as CardTitle,
|
|
68
|
+
z as Checkbox,
|
|
66
69
|
j as Chip,
|
|
67
70
|
K as DataTable,
|
|
68
71
|
U as DataTableColumnHeader,
|
|
69
72
|
Y as DataTablePagination,
|
|
70
73
|
_ as DataTableToolbar,
|
|
71
74
|
ee as DataTableViewOptions,
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
ae as
|
|
75
|
-
ne as
|
|
76
|
-
ie as
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
de as
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
me as
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
75
|
+
re as DescriptionList,
|
|
76
|
+
oe as DescriptionListActions,
|
|
77
|
+
ae as DescriptionListItem,
|
|
78
|
+
ne as DescriptionListLabel,
|
|
79
|
+
ie as DescriptionListValue,
|
|
80
|
+
le as DescriptionListValueDescription,
|
|
81
|
+
Se as Details,
|
|
82
|
+
de as DetailsBody,
|
|
83
|
+
se as DetailsClose,
|
|
84
|
+
ce as DetailsCloseButton,
|
|
85
|
+
ue as DetailsContent,
|
|
86
|
+
me as DetailsDescription,
|
|
87
|
+
be as DetailsFooter,
|
|
88
|
+
ge as DetailsHeader,
|
|
89
|
+
De as DetailsOverlay,
|
|
90
|
+
xe as DetailsPortal,
|
|
91
|
+
Te as DetailsTitle,
|
|
92
|
+
Ie as DetailsTrigger,
|
|
93
|
+
Ae as Dialog,
|
|
94
|
+
Ge as DialogBody,
|
|
95
|
+
We as DialogClose,
|
|
96
|
+
Re as DialogCloseButton,
|
|
97
|
+
ke as DialogContent,
|
|
98
|
+
Oe as DialogDescription,
|
|
99
|
+
ze as DialogFooter,
|
|
100
|
+
Ne as DialogHeader,
|
|
101
|
+
je as DialogOverlay,
|
|
102
|
+
qe as DialogPortal,
|
|
103
|
+
Je as DialogTitle,
|
|
104
|
+
Ke as DialogTrigger,
|
|
105
|
+
Xe as DropdownMenu,
|
|
106
|
+
Ye as DropdownMenuCheckboxItem,
|
|
107
|
+
Ze as DropdownMenuContent,
|
|
108
|
+
_e as DropdownMenuGroup,
|
|
109
|
+
$e as DropdownMenuItem,
|
|
110
|
+
et as DropdownMenuLabel,
|
|
111
|
+
tt as DropdownMenuPortal,
|
|
112
|
+
rt as DropdownMenuRadioGroup,
|
|
113
|
+
ot as DropdownMenuRadioItem,
|
|
114
|
+
at as DropdownMenuSeparator,
|
|
115
|
+
nt as DropdownMenuShortcut,
|
|
116
|
+
it as DropdownMenuSub,
|
|
117
|
+
lt as DropdownMenuSubContent,
|
|
118
|
+
pt as DropdownMenuSubTrigger,
|
|
119
|
+
St as DropdownMenuTrigger,
|
|
120
|
+
st as Empty,
|
|
121
|
+
ct as EmptyActions,
|
|
122
|
+
ut as EmptyDescription,
|
|
123
|
+
mt as EmptyHeader,
|
|
124
|
+
bt as EmptyIcon,
|
|
125
|
+
gt as EmptyLinks,
|
|
126
|
+
Dt as EmptyTitle,
|
|
127
|
+
Tt as Input,
|
|
128
|
+
ft as InputDatePicker,
|
|
129
|
+
yt as InputSearch,
|
|
130
|
+
Bt as InputSelect,
|
|
131
|
+
Lt as InputSelectContent,
|
|
132
|
+
wt as InputSelectDescription,
|
|
133
|
+
Vt as InputSelectError,
|
|
134
|
+
vt as InputSelectField,
|
|
135
|
+
Ft as InputSelectGroup,
|
|
136
|
+
Ht as InputSelectItem,
|
|
137
|
+
Et as InputSelectLabel,
|
|
138
|
+
At as InputSelectSearch,
|
|
139
|
+
Gt as InputSelectSection,
|
|
140
|
+
Wt as InputSelectSectionLabel,
|
|
141
|
+
Rt as InputSelectStatus,
|
|
142
|
+
kt as InputSelectTrigger,
|
|
143
|
+
Ot as InputSelectValue,
|
|
144
|
+
It as InputText,
|
|
145
|
+
Xt as InputTextArea,
|
|
146
|
+
_t as Label,
|
|
147
|
+
tr as Link,
|
|
148
|
+
or as Popover,
|
|
149
|
+
ar as PopoverContent,
|
|
150
|
+
nr as PopoverPortal,
|
|
151
|
+
ir as PopoverTrigger,
|
|
152
|
+
pr as Progress,
|
|
153
|
+
dr as Radio,
|
|
154
|
+
sr as RadioGroup,
|
|
155
|
+
ur as ResizableHandle,
|
|
156
|
+
mr as ResizablePanel,
|
|
157
|
+
br as ResizablePanelGroup,
|
|
158
|
+
Pt as Search,
|
|
159
|
+
Dr as SearchGlobal,
|
|
160
|
+
zt as Select,
|
|
161
|
+
Nt as SelectContent,
|
|
162
|
+
jt as SelectGroup,
|
|
163
|
+
qt as SelectGroupLabel,
|
|
164
|
+
Jt as SelectItem,
|
|
165
|
+
Kt as SelectTrigger,
|
|
166
|
+
Qt as SelectValue,
|
|
167
|
+
Tr as Separator,
|
|
168
|
+
he as Sheet,
|
|
169
|
+
fe as SheetBody,
|
|
170
|
+
Ce as SheetClose,
|
|
171
|
+
ye as SheetCloseButton,
|
|
172
|
+
Pe as SheetContent,
|
|
173
|
+
Me as SheetDescription,
|
|
174
|
+
hr as SheetDetails,
|
|
175
|
+
Be as SheetFooter,
|
|
176
|
+
Le as SheetHeader,
|
|
177
|
+
we as SheetOverlay,
|
|
178
|
+
Ve as SheetPortal,
|
|
179
|
+
ve as SheetTitle,
|
|
180
|
+
Fe as SheetTrigger,
|
|
181
|
+
Cr as SidebarPrimary,
|
|
182
|
+
yr as SidebarPrimaryCollapseTrigger,
|
|
183
|
+
Pr as SidebarPrimaryContent,
|
|
184
|
+
Mr as SidebarPrimaryFooter,
|
|
185
|
+
Br as SidebarPrimaryHeader,
|
|
186
|
+
Lr as SidebarPrimaryMenu,
|
|
187
|
+
wr as SidebarPrimaryMenuItem,
|
|
188
|
+
Vr as SidebarPrimaryMenuItemExtras,
|
|
189
|
+
vr as SidebarPrimarySection,
|
|
190
|
+
Er as SidebarSecondary,
|
|
191
|
+
Ar as SidebarSecondaryCollapseTrigger,
|
|
192
|
+
Gr as SidebarSecondaryCollapsedBreadcrumb,
|
|
193
|
+
Wr as SidebarSecondaryContent,
|
|
194
|
+
Rr as SidebarSecondaryFooter,
|
|
195
|
+
kr as SidebarSecondaryHeader,
|
|
196
|
+
Or as SidebarSecondaryMenu,
|
|
197
|
+
zr as SidebarSecondaryMenuItem,
|
|
198
|
+
Nr as SidebarSecondaryMenuItemExtras,
|
|
199
|
+
jr as SidebarSecondaryMenuSub,
|
|
200
|
+
qr as SidebarSecondaryMenuSubContent,
|
|
201
|
+
Jr as SidebarSecondaryMenuSubItem,
|
|
202
|
+
Kr as SidebarSecondaryMenuSubTrigger,
|
|
203
|
+
Qr as SidebarSecondarySection,
|
|
204
|
+
Ur as SidebarSecondarySectionLabel,
|
|
205
|
+
Zr as Spinner,
|
|
206
|
+
eo as Switch,
|
|
207
|
+
ro as Table,
|
|
208
|
+
oo as TableBody,
|
|
209
|
+
ao as TableCaption,
|
|
210
|
+
no as TableCell,
|
|
211
|
+
io as TableFooter,
|
|
212
|
+
lo as TableHead,
|
|
213
|
+
po as TableHeader,
|
|
214
|
+
So as TableRow,
|
|
215
|
+
co as Tabs,
|
|
216
|
+
uo as TabsContent,
|
|
217
|
+
mo as TabsList,
|
|
218
|
+
bo as TabsTrigger,
|
|
219
|
+
s as Tag,
|
|
220
|
+
Yt as Textarea,
|
|
221
|
+
Do as Toaster,
|
|
222
|
+
Io as Tooltip,
|
|
223
|
+
ho as TooltipContent,
|
|
224
|
+
fo as TooltipProvider,
|
|
225
|
+
Co as TooltipTrigger,
|
|
226
|
+
Po as WidgetPlaceholder,
|
|
227
|
+
Mo as WidgetPlaceholderAction,
|
|
228
|
+
Bo as WidgetPlaceholderContent,
|
|
229
|
+
Lo as WidgetPlaceholderFooter,
|
|
230
|
+
wo as WidgetPlaceholderHeader,
|
|
231
|
+
Vo as WidgetPlaceholderIcon,
|
|
232
|
+
vo as WidgetPlaceholderImage,
|
|
233
|
+
Fo as WidgetPlaceholderText,
|
|
234
|
+
Ho as WidgetPlaceholderTitle,
|
|
235
|
+
p as avatarVariants,
|
|
236
|
+
M as buttonIconVariants,
|
|
237
|
+
w as buttonMenuVariants,
|
|
204
238
|
C as buttonVariants,
|
|
205
239
|
k as cardFilterVariants,
|
|
206
240
|
q as chipVariants,
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
241
|
+
r as cn,
|
|
242
|
+
Qe as dialogContentVariants,
|
|
243
|
+
$t as labelClassName,
|
|
244
|
+
He as sheetVariants,
|
|
245
|
+
Fr as sidebarPrimaryMenuItemVariants,
|
|
246
|
+
Xr as sidebarSecondaryMenuItemVariants,
|
|
247
|
+
_r as spinnerVariants,
|
|
213
248
|
c as tagVariants,
|
|
214
|
-
|
|
249
|
+
xo as toast
|
|
215
250
|
};
|
|
216
251
|
//# 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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|