adminium 1.0.6 → 1.0.8
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/index.cjs +290 -65
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +35 -9
- package/dist/index.d.ts +35 -9
- package/dist/index.js +280 -67
- package/dist/index.js.map +1 -1
- package/dist/styles/adminium.css +591 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { Loader2Icon, ChevronDown, X, Search, Check, Minus, ChevronRight, Circle
|
|
|
6
6
|
import * as SlotPrimitive2 from '@radix-ui/react-slot';
|
|
7
7
|
import { Slot } from '@radix-ui/react-slot';
|
|
8
8
|
import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
|
|
9
|
-
import { AlertDialog as AlertDialog$1, Dialog as Dialog$1, Popover as Popover$1, Avatar as Avatar$1, Select as Select$1, Accordion as Accordion$1, Slot as Slot$1, Collapsible as Collapsible$1, Tabs as Tabs$1, ContextMenu as ContextMenu$1, Label, RadioGroup, Slider as Slider$1, Switch as Switch$1, ScrollArea as ScrollArea$1, AspectRatio as AspectRatio$1, Progress as Progress$1, NavigationMenu as NavigationMenu$1 } from 'radix-ui';
|
|
9
|
+
import { AlertDialog as AlertDialog$1, Dialog as Dialog$1, Popover as Popover$1, Tooltip as Tooltip$1, Avatar as Avatar$1, Select as Select$1, Accordion as Accordion$1, Slot as Slot$1, Collapsible as Collapsible$1, Tabs as Tabs$1, ContextMenu as ContextMenu$1, Label, RadioGroup, Slider as Slider$1, Switch as Switch$1, ScrollArea as ScrollArea$1, AspectRatio as AspectRatio$1, Progress as Progress$1, NavigationMenu as NavigationMenu$1 } from 'radix-ui';
|
|
10
10
|
import { Drawer as Drawer$1 } from 'vaul';
|
|
11
11
|
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
12
12
|
import { Command as Command$1 } from 'cmdk';
|
|
@@ -42,10 +42,25 @@ function Spinner({ className, ...props }) {
|
|
|
42
42
|
}
|
|
43
43
|
var buttonVariantConfig = {
|
|
44
44
|
variant: {
|
|
45
|
+
// Primary
|
|
45
46
|
primary: "bg-primary text-primary-foreground hover:bg-primary/90 data-[state=open]:bg-primary/90",
|
|
46
|
-
|
|
47
|
+
"dark-primary": "bg-foreground/50 text-white border border-white/20 hover:bg-foreground/70 data-[state=open]:bg-background data-[state=open]:text-primary data-[state=open]:border-primary/30 data-[state=open]:hover:bg-background/90",
|
|
48
|
+
"outline-primary": "bg-background text-primary border border-primary/30 hover:bg-background/90",
|
|
49
|
+
// Destructive
|
|
47
50
|
destructive: "bg-destructive text-destructive-foreground hover:bg-destructive/90 data-[state=open]:bg-destructive/90",
|
|
51
|
+
"destructive-soft": "bg-red-100 text-red-600 border border-red-500 hover:bg-red-200 data-[state=open]:bg-red-200 dark:bg-red-950 dark:text-red-400 dark:border-red-500 dark:hover:bg-red-900 dark:data-[state=open]:bg-red-900",
|
|
52
|
+
"outline-destructive": "bg-background text-destructive border border-destructive/30 hover:bg-background/90",
|
|
53
|
+
// Success
|
|
48
54
|
success: "bg-emerald-500 text-white hover:bg-emerald-600 data-[state=open]:bg-emerald-600",
|
|
55
|
+
"success-soft": "bg-green-100 text-green-600 border border-green-500 hover:bg-green-200 data-[state=open]:bg-green-200 dark:bg-green-950 dark:text-green-400 dark:border-green-500 dark:hover:bg-green-900 dark:data-[state=open]:bg-green-900",
|
|
56
|
+
// Info
|
|
57
|
+
info: "bg-violet-600 text-white hover:bg-violet-700 data-[state=open]:bg-violet-700",
|
|
58
|
+
"info-soft": "bg-violet-100 text-violet-600 border border-violet-500 hover:bg-violet-200 data-[state=open]:bg-violet-200 dark:bg-violet-950 dark:text-violet-400 dark:border-violet-500 dark:hover:bg-violet-900 dark:data-[state=open]:bg-violet-900",
|
|
59
|
+
// Warning
|
|
60
|
+
warning: "bg-yellow-500 text-white hover:bg-yellow-600 data-[state=open]:bg-yellow-600",
|
|
61
|
+
"warning-soft": "bg-yellow-100 text-yellow-800 border border-yellow-500 hover:bg-yellow-200 data-[state=open]:bg-yellow-200 dark:bg-yellow-950 dark:text-yellow-400 dark:border-yellow-500 dark:hover:bg-yellow-900 dark:data-[state=open]:bg-yellow-900",
|
|
62
|
+
// Neutral
|
|
63
|
+
mono: "bg-zinc-950 text-white dark:bg-zinc-300 dark:text-black hover:bg-zinc-950/90 dark:hover:bg-zinc-300/90 data-[state=open]:bg-zinc-950/90 dark:data-[state=open]:bg-zinc-300/90",
|
|
49
64
|
secondary: "bg-secondary text-secondary-foreground hover:bg-secondary/90 data-[state=open]:bg-secondary/90",
|
|
50
65
|
outline: "bg-background text-accent-foreground border border-input hover:bg-accent data-[state=open]:bg-accent",
|
|
51
66
|
dashed: "text-accent-foreground border border-input border-dashed bg-background hover:bg-accent hover:text-accent-foreground data-[state=open]:text-accent-foreground",
|
|
@@ -151,76 +166,50 @@ var buttonVariants = cva(
|
|
|
151
166
|
autoHeight: true,
|
|
152
167
|
className: "h-auto min-h-10"
|
|
153
168
|
},
|
|
154
|
-
// Shadow support
|
|
155
|
-
{
|
|
156
|
-
variant: "primary",
|
|
157
|
-
mode: "default",
|
|
158
|
-
appearance: "default",
|
|
159
|
-
className: "shadow-xs shadow-black/5"
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
variant: "mono",
|
|
163
|
-
mode: "default",
|
|
164
|
-
appearance: "default",
|
|
165
|
-
className: "shadow-xs shadow-black/5"
|
|
166
|
-
},
|
|
167
|
-
{
|
|
168
|
-
variant: "secondary",
|
|
169
|
-
mode: "default",
|
|
170
|
-
appearance: "default",
|
|
171
|
-
className: "shadow-xs shadow-black/5"
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
variant: "outline",
|
|
175
|
-
mode: "default",
|
|
176
|
-
appearance: "default",
|
|
177
|
-
className: "shadow-xs shadow-black/5"
|
|
178
|
-
},
|
|
179
|
-
{
|
|
180
|
-
variant: "dashed",
|
|
181
|
-
mode: "default",
|
|
182
|
-
appearance: "default",
|
|
183
|
-
className: "shadow-xs shadow-black/5"
|
|
184
|
-
},
|
|
169
|
+
// Shadow support (default mode)
|
|
185
170
|
{
|
|
186
|
-
variant:
|
|
171
|
+
variant: [
|
|
172
|
+
"primary",
|
|
173
|
+
"mono",
|
|
174
|
+
"secondary",
|
|
175
|
+
"outline",
|
|
176
|
+
"dashed",
|
|
177
|
+
"destructive",
|
|
178
|
+
"destructive-soft",
|
|
179
|
+
"dark-primary",
|
|
180
|
+
"outline-primary",
|
|
181
|
+
"outline-destructive",
|
|
182
|
+
"success",
|
|
183
|
+
"success-soft",
|
|
184
|
+
"info",
|
|
185
|
+
"info-soft",
|
|
186
|
+
"warning",
|
|
187
|
+
"warning-soft"
|
|
188
|
+
],
|
|
187
189
|
mode: "default",
|
|
188
190
|
appearance: "default",
|
|
189
191
|
className: "shadow-xs shadow-black/5"
|
|
190
192
|
},
|
|
191
|
-
// Shadow support
|
|
192
|
-
{
|
|
193
|
-
variant: "primary",
|
|
194
|
-
mode: "icon",
|
|
195
|
-
appearance: "default",
|
|
196
|
-
className: "shadow-xs shadow-black/5"
|
|
197
|
-
},
|
|
198
|
-
{
|
|
199
|
-
variant: "mono",
|
|
200
|
-
mode: "icon",
|
|
201
|
-
appearance: "default",
|
|
202
|
-
className: "shadow-xs shadow-black/5"
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
variant: "secondary",
|
|
206
|
-
mode: "icon",
|
|
207
|
-
appearance: "default",
|
|
208
|
-
className: "shadow-xs shadow-black/5"
|
|
209
|
-
},
|
|
210
|
-
{
|
|
211
|
-
variant: "outline",
|
|
212
|
-
mode: "icon",
|
|
213
|
-
appearance: "default",
|
|
214
|
-
className: "shadow-xs shadow-black/5"
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
variant: "dashed",
|
|
218
|
-
mode: "icon",
|
|
219
|
-
appearance: "default",
|
|
220
|
-
className: "shadow-xs shadow-black/5"
|
|
221
|
-
},
|
|
193
|
+
// Shadow support (icon mode)
|
|
222
194
|
{
|
|
223
|
-
variant:
|
|
195
|
+
variant: [
|
|
196
|
+
"primary",
|
|
197
|
+
"mono",
|
|
198
|
+
"secondary",
|
|
199
|
+
"outline",
|
|
200
|
+
"dashed",
|
|
201
|
+
"destructive",
|
|
202
|
+
"destructive-soft",
|
|
203
|
+
"dark-primary",
|
|
204
|
+
"outline-primary",
|
|
205
|
+
"outline-destructive",
|
|
206
|
+
"success",
|
|
207
|
+
"success-soft",
|
|
208
|
+
"info",
|
|
209
|
+
"info-soft",
|
|
210
|
+
"warning",
|
|
211
|
+
"warning-soft"
|
|
212
|
+
],
|
|
224
213
|
mode: "icon",
|
|
225
214
|
appearance: "default",
|
|
226
215
|
className: "shadow-xs shadow-black/5"
|
|
@@ -309,11 +298,56 @@ var buttonVariants = cva(
|
|
|
309
298
|
appearance: "ghost",
|
|
310
299
|
className: "bg-transparent text-destructive/90 hover:bg-destructive/5 data-[state=open]:bg-destructive/5"
|
|
311
300
|
},
|
|
301
|
+
{
|
|
302
|
+
variant: "dark-primary",
|
|
303
|
+
appearance: "ghost",
|
|
304
|
+
className: "bg-transparent text-foreground/60 hover:text-foreground hover:bg-foreground/5 data-[state=open]:text-primary/90 data-[state=open]:bg-primary/5"
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
variant: "outline-primary",
|
|
308
|
+
appearance: "ghost",
|
|
309
|
+
className: "bg-transparent text-primary/90 border-transparent hover:bg-primary/5 data-[state=open]:bg-primary/5"
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
variant: "outline-destructive",
|
|
313
|
+
appearance: "ghost",
|
|
314
|
+
className: "bg-transparent text-destructive/90 border-transparent hover:bg-destructive/5 data-[state=open]:bg-destructive/5"
|
|
315
|
+
},
|
|
312
316
|
{
|
|
313
317
|
variant: "success",
|
|
314
318
|
appearance: "ghost",
|
|
315
319
|
className: "bg-transparent text-emerald-500 hover:bg-emerald-500/5 data-[state=open]:bg-emerald-500/5"
|
|
316
320
|
},
|
|
321
|
+
{
|
|
322
|
+
variant: "success-soft",
|
|
323
|
+
appearance: "ghost",
|
|
324
|
+
className: "bg-transparent text-green-600 border-transparent hover:bg-green-100/50 data-[state=open]:bg-green-100/50 dark:text-green-400 dark:hover:bg-green-950/50 dark:data-[state=open]:bg-green-950/50"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
variant: "destructive-soft",
|
|
328
|
+
appearance: "ghost",
|
|
329
|
+
className: "bg-transparent text-red-600 border-transparent hover:bg-red-100/50 data-[state=open]:bg-red-100/50 dark:text-red-400 dark:hover:bg-red-950/50 dark:data-[state=open]:bg-red-950/50"
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
variant: "info",
|
|
333
|
+
appearance: "ghost",
|
|
334
|
+
className: "bg-transparent text-violet-500 hover:bg-violet-500/5 data-[state=open]:bg-violet-500/5"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
variant: "info-soft",
|
|
338
|
+
appearance: "ghost",
|
|
339
|
+
className: "bg-transparent text-violet-600 border-transparent hover:bg-violet-100/50 data-[state=open]:bg-violet-100/50 dark:text-violet-400 dark:hover:bg-violet-950/50 dark:data-[state=open]:bg-violet-950/50"
|
|
340
|
+
},
|
|
341
|
+
{
|
|
342
|
+
variant: "warning",
|
|
343
|
+
appearance: "ghost",
|
|
344
|
+
className: "bg-transparent text-yellow-500 hover:bg-yellow-500/5 data-[state=open]:bg-yellow-500/5"
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
variant: "warning-soft",
|
|
348
|
+
appearance: "ghost",
|
|
349
|
+
className: "bg-transparent text-yellow-800 border-transparent hover:bg-yellow-100/50 data-[state=open]:bg-yellow-100/50 dark:text-yellow-400 dark:hover:bg-yellow-950/50 dark:data-[state=open]:bg-yellow-950/50"
|
|
350
|
+
},
|
|
317
351
|
{
|
|
318
352
|
variant: "ghost",
|
|
319
353
|
mode: "icon",
|
|
@@ -1206,6 +1240,66 @@ function SheetDescription({ className, ...props }) {
|
|
|
1206
1240
|
}
|
|
1207
1241
|
);
|
|
1208
1242
|
}
|
|
1243
|
+
function TooltipProvider({
|
|
1244
|
+
delayDuration = 0,
|
|
1245
|
+
...props
|
|
1246
|
+
}) {
|
|
1247
|
+
return /* @__PURE__ */ jsx(
|
|
1248
|
+
Tooltip$1.Provider,
|
|
1249
|
+
{
|
|
1250
|
+
"data-slot": "tooltip-provider",
|
|
1251
|
+
delayDuration,
|
|
1252
|
+
...props
|
|
1253
|
+
}
|
|
1254
|
+
);
|
|
1255
|
+
}
|
|
1256
|
+
function Tooltip({
|
|
1257
|
+
...props
|
|
1258
|
+
}) {
|
|
1259
|
+
return /* @__PURE__ */ jsx(TooltipProvider, { children: /* @__PURE__ */ jsx(Tooltip$1.Root, { "data-slot": "tooltip", ...props }) });
|
|
1260
|
+
}
|
|
1261
|
+
function TooltipTrigger({
|
|
1262
|
+
...props
|
|
1263
|
+
}) {
|
|
1264
|
+
return /* @__PURE__ */ jsx(Tooltip$1.Trigger, { "data-slot": "tooltip-trigger", ...props });
|
|
1265
|
+
}
|
|
1266
|
+
var tooltipVariants = cva(
|
|
1267
|
+
[
|
|
1268
|
+
"z-50 overflow-hidden rounded-md px-3 py-1.5 text-xs",
|
|
1269
|
+
"animate-in fade-in-0 zoom-in-95",
|
|
1270
|
+
"data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95",
|
|
1271
|
+
"data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2",
|
|
1272
|
+
"data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2"
|
|
1273
|
+
],
|
|
1274
|
+
{
|
|
1275
|
+
variants: {
|
|
1276
|
+
variant: {
|
|
1277
|
+
light: "border border-border bg-background text-foreground shadow-md shadow-black/5",
|
|
1278
|
+
// Adaptive: dark bg in light mode, light bg in dark mode
|
|
1279
|
+
dark: "border border-border bg-zinc-950 text-white dark:bg-zinc-300 dark:text-black shadow-md shadow-black/5"
|
|
1280
|
+
}
|
|
1281
|
+
},
|
|
1282
|
+
defaultVariants: {
|
|
1283
|
+
variant: "dark"
|
|
1284
|
+
}
|
|
1285
|
+
}
|
|
1286
|
+
);
|
|
1287
|
+
function TooltipContent({
|
|
1288
|
+
className,
|
|
1289
|
+
sideOffset = 4,
|
|
1290
|
+
variant,
|
|
1291
|
+
...props
|
|
1292
|
+
}) {
|
|
1293
|
+
return /* @__PURE__ */ jsx(
|
|
1294
|
+
Tooltip$1.Content,
|
|
1295
|
+
{
|
|
1296
|
+
"data-slot": "tooltip-content",
|
|
1297
|
+
sideOffset,
|
|
1298
|
+
className: cn(tooltipVariants({ variant }), className),
|
|
1299
|
+
...props
|
|
1300
|
+
}
|
|
1301
|
+
);
|
|
1302
|
+
}
|
|
1209
1303
|
function Command({
|
|
1210
1304
|
className,
|
|
1211
1305
|
...props
|
|
@@ -3743,6 +3837,125 @@ function KanbanOverlay({ children, className }) {
|
|
|
3743
3837
|
}
|
|
3744
3838
|
) });
|
|
3745
3839
|
}
|
|
3840
|
+
function Table({
|
|
3841
|
+
className,
|
|
3842
|
+
...props
|
|
3843
|
+
}) {
|
|
3844
|
+
return /* @__PURE__ */ jsx("div", { "data-slot": "table-wrapper", className: "relative w-full overflow-auto", children: /* @__PURE__ */ jsx(
|
|
3845
|
+
"table",
|
|
3846
|
+
{
|
|
3847
|
+
"data-slot": "table",
|
|
3848
|
+
className: cn(
|
|
3849
|
+
"w-full caption-bottom text-sm border-collapse",
|
|
3850
|
+
className
|
|
3851
|
+
),
|
|
3852
|
+
...props
|
|
3853
|
+
}
|
|
3854
|
+
) });
|
|
3855
|
+
}
|
|
3856
|
+
function TableHeader({
|
|
3857
|
+
className,
|
|
3858
|
+
...props
|
|
3859
|
+
}) {
|
|
3860
|
+
return /* @__PURE__ */ jsx(
|
|
3861
|
+
"thead",
|
|
3862
|
+
{
|
|
3863
|
+
"data-slot": "table-header",
|
|
3864
|
+
className: cn("[&_tr]:border-b", className),
|
|
3865
|
+
...props
|
|
3866
|
+
}
|
|
3867
|
+
);
|
|
3868
|
+
}
|
|
3869
|
+
function TableBody({
|
|
3870
|
+
className,
|
|
3871
|
+
...props
|
|
3872
|
+
}) {
|
|
3873
|
+
return /* @__PURE__ */ jsx(
|
|
3874
|
+
"tbody",
|
|
3875
|
+
{
|
|
3876
|
+
"data-slot": "table-body",
|
|
3877
|
+
className: cn("[&_tr:last-child]:border-0", className),
|
|
3878
|
+
...props
|
|
3879
|
+
}
|
|
3880
|
+
);
|
|
3881
|
+
}
|
|
3882
|
+
function TableFooter({
|
|
3883
|
+
className,
|
|
3884
|
+
...props
|
|
3885
|
+
}) {
|
|
3886
|
+
return /* @__PURE__ */ jsx(
|
|
3887
|
+
"tfoot",
|
|
3888
|
+
{
|
|
3889
|
+
"data-slot": "table-footer",
|
|
3890
|
+
className: cn(
|
|
3891
|
+
"border-t bg-muted/50 font-medium [&>tr]:last:border-b-0",
|
|
3892
|
+
className
|
|
3893
|
+
),
|
|
3894
|
+
...props
|
|
3895
|
+
}
|
|
3896
|
+
);
|
|
3897
|
+
}
|
|
3898
|
+
function TableRow({
|
|
3899
|
+
className,
|
|
3900
|
+
...props
|
|
3901
|
+
}) {
|
|
3902
|
+
return /* @__PURE__ */ jsx(
|
|
3903
|
+
"tr",
|
|
3904
|
+
{
|
|
3905
|
+
"data-slot": "table-row",
|
|
3906
|
+
className: cn(
|
|
3907
|
+
"border-b border-border transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",
|
|
3908
|
+
className
|
|
3909
|
+
),
|
|
3910
|
+
...props
|
|
3911
|
+
}
|
|
3912
|
+
);
|
|
3913
|
+
}
|
|
3914
|
+
function TableHead({
|
|
3915
|
+
className,
|
|
3916
|
+
...props
|
|
3917
|
+
}) {
|
|
3918
|
+
return /* @__PURE__ */ jsx(
|
|
3919
|
+
"th",
|
|
3920
|
+
{
|
|
3921
|
+
"data-slot": "table-head",
|
|
3922
|
+
className: cn(
|
|
3923
|
+
"h-10 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pe-0 *:[[role=checkbox]]:translate-y-0.5",
|
|
3924
|
+
className
|
|
3925
|
+
),
|
|
3926
|
+
...props
|
|
3927
|
+
}
|
|
3928
|
+
);
|
|
3929
|
+
}
|
|
3930
|
+
function TableCell({
|
|
3931
|
+
className,
|
|
3932
|
+
...props
|
|
3933
|
+
}) {
|
|
3934
|
+
return /* @__PURE__ */ jsx(
|
|
3935
|
+
"td",
|
|
3936
|
+
{
|
|
3937
|
+
"data-slot": "table-cell",
|
|
3938
|
+
className: cn(
|
|
3939
|
+
"px-4 py-3 align-middle [&:has([role=checkbox])]:pe-0 *:[[role=checkbox]]:translate-y-0.5",
|
|
3940
|
+
className
|
|
3941
|
+
),
|
|
3942
|
+
...props
|
|
3943
|
+
}
|
|
3944
|
+
);
|
|
3945
|
+
}
|
|
3946
|
+
function TableCaption({
|
|
3947
|
+
className,
|
|
3948
|
+
...props
|
|
3949
|
+
}) {
|
|
3950
|
+
return /* @__PURE__ */ jsx(
|
|
3951
|
+
"caption",
|
|
3952
|
+
{
|
|
3953
|
+
"data-slot": "table-caption",
|
|
3954
|
+
className: cn("mt-4 text-sm text-muted-foreground", className),
|
|
3955
|
+
...props
|
|
3956
|
+
}
|
|
3957
|
+
);
|
|
3958
|
+
}
|
|
3746
3959
|
var badgeVariants = cva(
|
|
3747
3960
|
"inline-flex items-center justify-center border border-transparent font-medium focus:outline-hidden focus:ring-2 focus:ring-ring focus:ring-offset-2 [&_svg]:-ms-px [&_svg]:shrink-0",
|
|
3748
3961
|
{
|
|
@@ -7194,6 +7407,6 @@ function useMounted() {
|
|
|
7194
7407
|
return mounted;
|
|
7195
7408
|
}
|
|
7196
7409
|
|
|
7197
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionMenu, AccordionMenuGroup, AccordionMenuIndicator, AccordionMenuItem, AccordionMenuLabel, AccordionMenuSeparator, AccordionMenuSub, AccordionMenuSubContent, AccordionMenuSubTrigger, AccordionTrigger, Alert, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, AlertTitle, AlertToolbar, AspectRatio, Avatar, AvatarFallback, AvatarGroup, AvatarGroupItem, AvatarGroupTooltip, AvatarImage, AvatarIndicator, AvatarStatus, Badge, BadgeButton, BadgeDot, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonArrow, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardHeading, CardTable, CardTitle, CardToolbar, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Code, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandCheck, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataGrid, DataGridColumnHeader, DataGridColumnVisibility, DataGridContainer, DataGridPagination, DataGridProvider, DataGridTable, DataGridTableBase, DataGridTableBody, DataGridTableBodyRow, DataGridTableBodyRowCell, DataGridTableBodyRowExpanded, DataGridTableBodyRowSkeleton, DataGridTableBodyRowSkeletonCell, DataGridTableEmpty, DataGridTableHead, DataGridTableHeadRow, DataGridTableHeadRowCell, DataGridTableHeadRowCellResize, DataGridTableLoader, DataGridTableRowSelect, DataGridTableRowSelectAll, DataGridTableRowSpacer, DateField, DateInput, DateSegment, Dialog, DialogBody, 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, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, HoverCard, HoverCardContent, HoverCardTrigger, Icons, Input, InputAddon, InputGroup, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputWrapper, Kanban, KanbanBoard, KanbanColumn, KanbanColumnContent, KanbanColumnHandle, KanbanItem, KanbanItemHandle, KanbanOverlay, Kbd, Label2 as Label, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, Popover, PopoverContent, PopoverTrigger, Progress, ProgressCircle, ProgressRadial, RadioGroup2 as RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Scrollspy, Select, SelectContent, SelectGroup, SelectIndicator, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator2 as Separator, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, SliderThumb, Spinner, Switch, SwitchIndicator, SwitchWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, TimeField, TimelineItem, Toolbar, ToolbarActions, ToolbarDescription, ToolbarHeading, ToolbarTitle, avatarStatusVariants, badgeVariants, buttonVariantConfig, buttonVariants, cn, codeVariants, containerVariants, dateInputStyles, headings, inputAddonVariants, inputVariants, kbdVariants, labelVariants, navigationMenuTriggerStyle, radioGroupVariants, radioItemVariants, selectTriggerVariants, switchShapes, switchSizes, tabsListVariantConfig, textareaVariants, useChart, useCopyToClipboard, useDataGrid, useIsMobile, useMounted };
|
|
7410
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionMenu, AccordionMenuGroup, AccordionMenuIndicator, AccordionMenuItem, AccordionMenuLabel, AccordionMenuSeparator, AccordionMenuSub, AccordionMenuSubContent, AccordionMenuSubTrigger, AccordionTrigger, Alert, AlertContent, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertIcon, AlertTitle, AlertToolbar, AspectRatio, Avatar, AvatarFallback, AvatarGroup, AvatarGroupItem, AvatarGroupTooltip, AvatarImage, AvatarIndicator, AvatarStatus, Badge, BadgeButton, BadgeDot, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonArrow, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardHeading, CardTable, CardTitle, CardToolbar, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Code, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandCheck, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataGrid, DataGridColumnHeader, DataGridColumnVisibility, DataGridContainer, DataGridPagination, DataGridProvider, DataGridTable, DataGridTableBase, DataGridTableBody, DataGridTableBodyRow, DataGridTableBodyRowCell, DataGridTableBodyRowExpanded, DataGridTableBodyRowSkeleton, DataGridTableBodyRowSkeletonCell, DataGridTableEmpty, DataGridTableHead, DataGridTableHeadRow, DataGridTableHeadRowCell, DataGridTableHeadRowCellResize, DataGridTableLoader, DataGridTableRowSelect, DataGridTableRowSelectAll, DataGridTableRowSpacer, DateField, DateInput, DateSegment, Dialog, DialogBody, 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, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, HoverCard, HoverCardContent, HoverCardTrigger, Icons, Input, InputAddon, InputGroup, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputWrapper, Kanban, KanbanBoard, KanbanColumn, KanbanColumnContent, KanbanColumnHandle, KanbanItem, KanbanItemHandle, KanbanOverlay, Kbd, Label2 as Label, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, Popover, PopoverContent, PopoverTrigger, Progress, ProgressCircle, ProgressRadial, RadioGroup2 as RadioGroup, RadioGroupItem, ScrollArea, ScrollBar, Scrollspy, Select, SelectContent, SelectGroup, SelectIndicator, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator2 as Separator, Sheet, SheetBody, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, SliderThumb, Spinner, Switch, SwitchIndicator, SwitchWrapper, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, TimeField, TimelineItem, Toolbar, ToolbarActions, ToolbarDescription, ToolbarHeading, ToolbarTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, avatarStatusVariants, badgeVariants, buttonVariantConfig, buttonVariants, cn, codeVariants, containerVariants, dateInputStyles, headings, inputAddonVariants, inputVariants, kbdVariants, labelVariants, navigationMenuTriggerStyle, radioGroupVariants, radioItemVariants, selectTriggerVariants, switchShapes, switchSizes, tabsListVariantConfig, textareaVariants, useChart, useCopyToClipboard, useDataGrid, useIsMobile, useMounted };
|
|
7198
7411
|
//# sourceMappingURL=index.js.map
|
|
7199
7412
|
//# sourceMappingURL=index.js.map
|