@lglab/compose-ui 0.18.0 → 0.19.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/slider.d.ts +35 -0
- package/dist/components/slider.d.ts.map +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.es.js +551 -493
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import { jsx as t, jsxs as b } from "react/jsx-runtime";
|
|
3
|
-
import { Button as
|
|
3
|
+
import { Button as H } from "@base-ui/react/button";
|
|
4
4
|
import { cva as m } from "class-variance-authority";
|
|
5
|
-
import { clsx as
|
|
6
|
-
import { twMerge as
|
|
7
|
-
import { Collapsible as
|
|
5
|
+
import { clsx as G } from "clsx";
|
|
6
|
+
import { twMerge as _ } from "tailwind-merge";
|
|
7
|
+
import { Collapsible as I } from "@base-ui/react/collapsible";
|
|
8
8
|
import { AlertDialog as p } from "@base-ui/react/alert-dialog";
|
|
9
|
-
import { AlertDialog as
|
|
10
|
-
import { Avatar as
|
|
11
|
-
import * as
|
|
9
|
+
import { AlertDialog as br } from "@base-ui/react/alert-dialog";
|
|
10
|
+
import { Avatar as R } from "@base-ui/react/avatar";
|
|
11
|
+
import * as h from "react";
|
|
12
12
|
import { ScrollArea as f } from "@base-ui/react/scroll-area";
|
|
13
|
-
import { Separator as
|
|
14
|
-
import { Switch as
|
|
13
|
+
import { Separator as j } from "@base-ui/react/separator";
|
|
14
|
+
import { Switch as S } from "@base-ui/react/switch";
|
|
15
15
|
import { Toggle as A } from "@base-ui/react/toggle";
|
|
16
|
-
import { Tabs as
|
|
16
|
+
import { Tabs as v } from "@base-ui/react/tabs";
|
|
17
17
|
import { Dialog as d } from "@base-ui/react/dialog";
|
|
18
|
-
import { Accordion as
|
|
19
|
-
import { Meter as
|
|
18
|
+
import { Accordion as w } from "@base-ui/react/accordion";
|
|
19
|
+
import { Meter as C } from "@base-ui/react/meter";
|
|
20
20
|
import { Menu as s } from "@base-ui/react/menu";
|
|
21
21
|
import { Popover as c } from "@base-ui/react/popover";
|
|
22
|
-
import { Progress as
|
|
23
|
-
import { ToggleGroup as
|
|
22
|
+
import { Progress as M } from "@base-ui/react/progress";
|
|
23
|
+
import { ToggleGroup as B } from "@base-ui/react/toggle-group";
|
|
24
24
|
import { ContextMenu as l } from "@base-ui/react/context-menu";
|
|
25
|
-
import { Menubar as
|
|
25
|
+
import { Menubar as F } from "@base-ui/react/menubar";
|
|
26
|
+
import { Slider as y } from "@base-ui/react/slider";
|
|
26
27
|
const i = m(
|
|
27
28
|
[
|
|
28
29
|
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all select-none [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive"
|
|
@@ -53,9 +54,9 @@ const i = m(
|
|
|
53
54
|
}
|
|
54
55
|
);
|
|
55
56
|
function r(...e) {
|
|
56
|
-
return G(
|
|
57
|
+
return _(G(e));
|
|
57
58
|
}
|
|
58
|
-
const
|
|
59
|
+
const Z = ({
|
|
59
60
|
className: e,
|
|
60
61
|
variant: a,
|
|
61
62
|
size: o,
|
|
@@ -63,7 +64,7 @@ const F = ({
|
|
|
63
64
|
children: u,
|
|
64
65
|
...g
|
|
65
66
|
}) => /* @__PURE__ */ t(
|
|
66
|
-
|
|
67
|
+
H,
|
|
67
68
|
{
|
|
68
69
|
className: r(i({ variant: a, size: o }), e),
|
|
69
70
|
disabled: n,
|
|
@@ -71,19 +72,19 @@ const F = ({
|
|
|
71
72
|
children: u
|
|
72
73
|
}
|
|
73
74
|
);
|
|
74
|
-
|
|
75
|
-
const
|
|
76
|
-
|
|
77
|
-
const
|
|
78
|
-
|
|
75
|
+
Z.displayName = "Button";
|
|
76
|
+
const $ = ({ className: e, ...a }) => /* @__PURE__ */ t(I.Root, { className: r("w-full", e), ...a });
|
|
77
|
+
$.displayName = "CollapsibleRoot";
|
|
78
|
+
const q = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
79
|
+
I.Trigger,
|
|
79
80
|
{
|
|
80
81
|
className: r("flex items-center justify-between font-medium", e),
|
|
81
82
|
...a
|
|
82
83
|
}
|
|
83
84
|
);
|
|
84
|
-
|
|
85
|
-
const
|
|
86
|
-
|
|
85
|
+
q.displayName = "CollapsibleTrigger";
|
|
86
|
+
const O = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
87
|
+
I.Panel,
|
|
87
88
|
{
|
|
88
89
|
className: r(
|
|
89
90
|
'[&[hidden]:not([hidden="until-found"])]:hidden h-(--collapsible-panel-height)',
|
|
@@ -95,10 +96,10 @@ const q = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
95
96
|
...a
|
|
96
97
|
}
|
|
97
98
|
);
|
|
98
|
-
|
|
99
|
-
const
|
|
100
|
-
|
|
101
|
-
const
|
|
99
|
+
O.displayName = "CollapsiblePanel";
|
|
100
|
+
const E = (e) => /* @__PURE__ */ t(p.Root, { ...e });
|
|
101
|
+
E.displayName = "AlertDialogRoot";
|
|
102
|
+
const J = ({
|
|
102
103
|
className: e,
|
|
103
104
|
variant: a,
|
|
104
105
|
size: o,
|
|
@@ -110,10 +111,10 @@ const E = ({
|
|
|
110
111
|
...n
|
|
111
112
|
}
|
|
112
113
|
);
|
|
113
|
-
|
|
114
|
-
const
|
|
115
|
-
|
|
116
|
-
const
|
|
114
|
+
J.displayName = "AlertDialogTrigger";
|
|
115
|
+
const K = (e) => /* @__PURE__ */ t(p.Portal, { ...e });
|
|
116
|
+
K.displayName = "AlertDialogPortal";
|
|
117
|
+
const Q = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
117
118
|
p.Backdrop,
|
|
118
119
|
{
|
|
119
120
|
className: r(
|
|
@@ -125,16 +126,16 @@ const K = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
125
126
|
...a
|
|
126
127
|
}
|
|
127
128
|
);
|
|
128
|
-
|
|
129
|
-
const
|
|
129
|
+
Q.displayName = "AlertDialogBackdrop";
|
|
130
|
+
const U = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
130
131
|
p.Viewport,
|
|
131
132
|
{
|
|
132
133
|
className: r("fixed inset-0 z-50 flex items-center justify-center p-4", e),
|
|
133
134
|
...a
|
|
134
135
|
}
|
|
135
136
|
);
|
|
136
|
-
|
|
137
|
-
const
|
|
137
|
+
U.displayName = "AlertDialogViewport";
|
|
138
|
+
const W = m(
|
|
138
139
|
[
|
|
139
140
|
"fixed left-1/2 top-1/2 z-50 -translate-x-1/2 -translate-y-1/2",
|
|
140
141
|
"w-full max-w-[calc(100vw-2rem)] rounded-lg border border-border bg-background p-6 shadow-lg",
|
|
@@ -158,25 +159,25 @@ const U = m(
|
|
|
158
159
|
size: "default"
|
|
159
160
|
}
|
|
160
161
|
}
|
|
161
|
-
),
|
|
162
|
+
), X = ({ className: e, size: a, ...o }) => /* @__PURE__ */ t(
|
|
162
163
|
p.Popup,
|
|
163
164
|
{
|
|
164
|
-
className: r(
|
|
165
|
+
className: r(W({ size: a }), e),
|
|
165
166
|
...o
|
|
166
167
|
}
|
|
167
168
|
);
|
|
168
|
-
|
|
169
|
-
const
|
|
169
|
+
X.displayName = "AlertDialogPopup";
|
|
170
|
+
const Y = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
170
171
|
p.Title,
|
|
171
172
|
{
|
|
172
173
|
className: r("text-lg font-semibold leading-none tracking-tight", e),
|
|
173
174
|
...a
|
|
174
175
|
}
|
|
175
176
|
);
|
|
176
|
-
|
|
177
|
-
const
|
|
178
|
-
|
|
179
|
-
const
|
|
177
|
+
Y.displayName = "AlertDialogTitle";
|
|
178
|
+
const ee = ({ className: e, ...a }) => /* @__PURE__ */ t(p.Description, { className: r("mt-2", e), ...a });
|
|
179
|
+
ee.displayName = "AlertDialogDescription";
|
|
180
|
+
const ae = ({
|
|
180
181
|
className: e,
|
|
181
182
|
variant: a,
|
|
182
183
|
size: o,
|
|
@@ -188,7 +189,7 @@ const ee = ({
|
|
|
188
189
|
...n
|
|
189
190
|
}
|
|
190
191
|
);
|
|
191
|
-
|
|
192
|
+
ae.displayName = "AlertDialogClose";
|
|
192
193
|
const z = m(
|
|
193
194
|
[
|
|
194
195
|
"relative flex shrink-0 items-center justify-center overflow-hidden rounded-full",
|
|
@@ -207,18 +208,18 @@ const z = m(
|
|
|
207
208
|
size: "default"
|
|
208
209
|
}
|
|
209
210
|
}
|
|
210
|
-
),
|
|
211
|
-
|
|
212
|
-
const
|
|
213
|
-
|
|
211
|
+
), V = ({ className: e, size: a, ...o }) => /* @__PURE__ */ t(R.Root, { className: r(z({ size: a }), e), ...o });
|
|
212
|
+
V.displayName = "AvatarRoot";
|
|
213
|
+
const te = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
214
|
+
R.Image,
|
|
214
215
|
{
|
|
215
216
|
className: r("aspect-square h-full w-full object-cover", e),
|
|
216
217
|
...a
|
|
217
218
|
}
|
|
218
219
|
);
|
|
219
|
-
|
|
220
|
-
const
|
|
221
|
-
|
|
220
|
+
te.displayName = "AvatarImage";
|
|
221
|
+
const re = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
222
|
+
R.Fallback,
|
|
222
223
|
{
|
|
223
224
|
className: r(
|
|
224
225
|
"flex h-full w-full items-center justify-center font-medium",
|
|
@@ -227,20 +228,20 @@ const te = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
227
228
|
...a
|
|
228
229
|
}
|
|
229
230
|
);
|
|
230
|
-
|
|
231
|
-
const
|
|
231
|
+
re.displayName = "AvatarFallback";
|
|
232
|
+
const oe = ({
|
|
232
233
|
"aria-label": e,
|
|
233
234
|
maxVisible: a,
|
|
234
235
|
className: o,
|
|
235
236
|
children: n
|
|
236
237
|
}) => {
|
|
237
|
-
const u =
|
|
238
|
-
const
|
|
239
|
-
return
|
|
238
|
+
const u = h.Children.toArray(n), g = u.length, N = a !== void 0 ? Math.min(a, g) : g, k = g - N, P = u.slice(0, N), L = (() => {
|
|
239
|
+
const x = u[0];
|
|
240
|
+
return h.isValidElement(x) && x.type === V ? x.props.size ?? "default" : "default";
|
|
240
241
|
})();
|
|
241
242
|
return /* @__PURE__ */ b("ul", { "aria-label": e, className: r("flex -space-x-2", o), children: [
|
|
242
|
-
|
|
243
|
-
|
|
243
|
+
P.map((x, D) => /* @__PURE__ */ t("li", { children: x }, D)),
|
|
244
|
+
k > 0 && /* @__PURE__ */ t("li", { children: /* @__PURE__ */ b(
|
|
244
245
|
"span",
|
|
245
246
|
{
|
|
246
247
|
className: r(
|
|
@@ -251,26 +252,26 @@ const re = ({
|
|
|
251
252
|
),
|
|
252
253
|
children: [
|
|
253
254
|
"+",
|
|
254
|
-
|
|
255
|
+
k
|
|
255
256
|
]
|
|
256
257
|
}
|
|
257
258
|
) })
|
|
258
259
|
] });
|
|
259
260
|
};
|
|
260
|
-
|
|
261
|
-
const
|
|
262
|
-
|
|
263
|
-
const
|
|
261
|
+
oe.displayName = "AvatarStack";
|
|
262
|
+
const se = ({ className: e, ...a }) => /* @__PURE__ */ t(f.Root, { className: r("relative", e), ...a });
|
|
263
|
+
se.displayName = "ScrollAreaRoot";
|
|
264
|
+
const ne = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
264
265
|
f.Viewport,
|
|
265
266
|
{
|
|
266
267
|
className: r("h-full overscroll-contain pr-3", e),
|
|
267
268
|
...a
|
|
268
269
|
}
|
|
269
270
|
);
|
|
270
|
-
|
|
271
|
-
const
|
|
272
|
-
|
|
273
|
-
const
|
|
271
|
+
ne.displayName = "ScrollAreaViewport";
|
|
272
|
+
const ie = ({ className: e, ...a }) => /* @__PURE__ */ t(f.Content, { className: r("min-w-full", e), ...a });
|
|
273
|
+
ie.displayName = "ScrollAreaContent";
|
|
274
|
+
const le = ({
|
|
274
275
|
className: e,
|
|
275
276
|
orientation: a = "vertical",
|
|
276
277
|
...o
|
|
@@ -288,8 +289,8 @@ const ie = ({
|
|
|
288
289
|
...o
|
|
289
290
|
}
|
|
290
291
|
);
|
|
291
|
-
|
|
292
|
-
const
|
|
292
|
+
le.displayName = "ScrollAreaScrollbar";
|
|
293
|
+
const de = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
293
294
|
f.Thumb,
|
|
294
295
|
{
|
|
295
296
|
className: r(
|
|
@@ -300,15 +301,15 @@ const le = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
300
301
|
...a
|
|
301
302
|
}
|
|
302
303
|
);
|
|
303
|
-
|
|
304
|
-
const
|
|
305
|
-
|
|
306
|
-
const
|
|
304
|
+
de.displayName = "ScrollAreaThumb";
|
|
305
|
+
const ce = ({ className: e, ...a }) => /* @__PURE__ */ t(f.Corner, { className: r("bg-muted/50", e), ...a });
|
|
306
|
+
ce.displayName = "ScrollAreaCorner";
|
|
307
|
+
const ue = ({
|
|
307
308
|
className: e,
|
|
308
309
|
orientation: a = "horizontal",
|
|
309
310
|
...o
|
|
310
311
|
}) => /* @__PURE__ */ t(
|
|
311
|
-
|
|
312
|
+
j,
|
|
312
313
|
{
|
|
313
314
|
orientation: a,
|
|
314
315
|
className: r(
|
|
@@ -319,9 +320,9 @@ const ce = ({
|
|
|
319
320
|
...o
|
|
320
321
|
}
|
|
321
322
|
);
|
|
322
|
-
|
|
323
|
-
const
|
|
324
|
-
|
|
323
|
+
ue.displayName = "Separator";
|
|
324
|
+
const me = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
325
|
+
S.Root,
|
|
325
326
|
{
|
|
326
327
|
className: r(
|
|
327
328
|
"relative flex h-6 w-10 rounded-full",
|
|
@@ -336,9 +337,9 @@ const ue = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
336
337
|
...a
|
|
337
338
|
}
|
|
338
339
|
);
|
|
339
|
-
|
|
340
|
-
const
|
|
341
|
-
|
|
340
|
+
me.displayName = "SwitchRoot";
|
|
341
|
+
const pe = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
342
|
+
S.Thumb,
|
|
342
343
|
{
|
|
343
344
|
className: r(
|
|
344
345
|
"aspect-square h-full rounded-full bg-background",
|
|
@@ -352,8 +353,8 @@ const me = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
352
353
|
...a
|
|
353
354
|
}
|
|
354
355
|
);
|
|
355
|
-
|
|
356
|
-
const
|
|
356
|
+
pe.displayName = "SwitchThumb";
|
|
357
|
+
const T = m(
|
|
357
358
|
[
|
|
358
359
|
"inline-flex items-center justify-center gap-2 rounded-md",
|
|
359
360
|
"text-sm font-medium",
|
|
@@ -385,17 +386,17 @@ const R = m(
|
|
|
385
386
|
size: "default"
|
|
386
387
|
}
|
|
387
388
|
}
|
|
388
|
-
),
|
|
389
|
+
), ge = ({ className: e, variant: a, size: o, ...n }) => /* @__PURE__ */ t(
|
|
389
390
|
A,
|
|
390
391
|
{
|
|
391
|
-
className: r(
|
|
392
|
+
className: r(T({ variant: a, size: o }), e),
|
|
392
393
|
...n
|
|
393
394
|
}
|
|
394
395
|
);
|
|
395
|
-
|
|
396
|
-
const
|
|
397
|
-
|
|
398
|
-
const
|
|
396
|
+
ge.displayName = "Toggle";
|
|
397
|
+
const be = ({ className: e, ...a }) => /* @__PURE__ */ t(v.Root, { className: r("flex flex-col", e), ...a });
|
|
398
|
+
be.displayName = "TabsRoot";
|
|
399
|
+
const fe = m(
|
|
399
400
|
["relative inline-flex w-fit items-center gap-1", "rounded-lg bg-muted p-1"],
|
|
400
401
|
{
|
|
401
402
|
variants: {
|
|
@@ -408,15 +409,15 @@ const be = m(
|
|
|
408
409
|
orientation: "horizontal"
|
|
409
410
|
}
|
|
410
411
|
}
|
|
411
|
-
),
|
|
412
|
-
|
|
412
|
+
), ye = ({ className: e, orientation: a = "horizontal", ...o }) => /* @__PURE__ */ t(
|
|
413
|
+
v.List,
|
|
413
414
|
{
|
|
414
|
-
className: r(
|
|
415
|
+
className: r(fe({ orientation: a }), e),
|
|
415
416
|
...o
|
|
416
417
|
}
|
|
417
418
|
);
|
|
418
|
-
|
|
419
|
-
const
|
|
419
|
+
ye.displayName = "TabsList";
|
|
420
|
+
const Ne = m(
|
|
420
421
|
[
|
|
421
422
|
"relative z-10 inline-flex items-center justify-center whitespace-nowrap",
|
|
422
423
|
"rounded-md px-3 py-1.5 text-sm font-medium",
|
|
@@ -437,9 +438,9 @@ const ye = m(
|
|
|
437
438
|
size: "default"
|
|
438
439
|
}
|
|
439
440
|
}
|
|
440
|
-
),
|
|
441
|
-
|
|
442
|
-
const
|
|
441
|
+
), xe = ({ className: e, size: a, ...o }) => /* @__PURE__ */ t(v.Tab, { className: r(Ne({ size: a }), e), ...o });
|
|
442
|
+
xe.displayName = "TabsTab";
|
|
443
|
+
const he = m(
|
|
443
444
|
["absolute rounded-md bg-background shadow-sm", "transition-all duration-200 ease-out"],
|
|
444
445
|
{
|
|
445
446
|
variants: {
|
|
@@ -452,33 +453,33 @@ const xe = m(
|
|
|
452
453
|
orientation: "horizontal"
|
|
453
454
|
}
|
|
454
455
|
}
|
|
455
|
-
),
|
|
456
|
+
), ve = ({
|
|
456
457
|
className: e,
|
|
457
458
|
orientation: a = "horizontal",
|
|
458
459
|
...o
|
|
459
460
|
}) => /* @__PURE__ */ t(
|
|
460
|
-
|
|
461
|
+
v.Indicator,
|
|
461
462
|
{
|
|
462
|
-
className: r(
|
|
463
|
+
className: r(he({ orientation: a }), e),
|
|
463
464
|
...o
|
|
464
465
|
}
|
|
465
466
|
);
|
|
466
|
-
|
|
467
|
-
const
|
|
468
|
-
|
|
469
|
-
const
|
|
470
|
-
|
|
471
|
-
const
|
|
467
|
+
ve.displayName = "TabsIndicator";
|
|
468
|
+
const we = ({ className: e, ...a }) => /* @__PURE__ */ t(v.Panel, { className: r("mt-2 ring-offset-background", e), ...a });
|
|
469
|
+
we.displayName = "TabsPanel";
|
|
470
|
+
const Ce = (e) => /* @__PURE__ */ t(d.Root, { ...e });
|
|
471
|
+
Ce.displayName = "DialogRoot";
|
|
472
|
+
const Me = ({ className: e, variant: a, size: o, ...n }) => /* @__PURE__ */ t(
|
|
472
473
|
d.Trigger,
|
|
473
474
|
{
|
|
474
475
|
className: r(i({ variant: a, size: o }), e),
|
|
475
476
|
...n
|
|
476
477
|
}
|
|
477
478
|
);
|
|
478
|
-
|
|
479
|
-
const
|
|
480
|
-
|
|
481
|
-
const
|
|
479
|
+
Me.displayName = "DialogTrigger";
|
|
480
|
+
const ke = (e) => /* @__PURE__ */ t(d.Portal, { ...e });
|
|
481
|
+
ke.displayName = "DialogPortal";
|
|
482
|
+
const Pe = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
482
483
|
d.Backdrop,
|
|
483
484
|
{
|
|
484
485
|
className: r(
|
|
@@ -490,8 +491,8 @@ const ke = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
490
491
|
...a
|
|
491
492
|
}
|
|
492
493
|
);
|
|
493
|
-
|
|
494
|
-
const
|
|
494
|
+
Pe.displayName = "DialogBackdrop";
|
|
495
|
+
const Ie = m(
|
|
495
496
|
[
|
|
496
497
|
"fixed left-1/2 top-1/2 z-50 -translate-x-1/2 -translate-y-1/2",
|
|
497
498
|
"w-full max-w-[calc(100vw-2rem)] rounded-lg border border-border bg-background p-6 shadow-lg",
|
|
@@ -515,32 +516,32 @@ const Pe = m(
|
|
|
515
516
|
size: "default"
|
|
516
517
|
}
|
|
517
518
|
}
|
|
518
|
-
),
|
|
519
|
+
), Re = ({ className: e, size: a, ...o }) => /* @__PURE__ */ t(
|
|
519
520
|
d.Popup,
|
|
520
521
|
{
|
|
521
|
-
className: r(
|
|
522
|
+
className: r(Ie({ size: a }), e),
|
|
522
523
|
...o
|
|
523
524
|
}
|
|
524
525
|
);
|
|
525
|
-
|
|
526
|
-
const
|
|
526
|
+
Re.displayName = "DialogPopup";
|
|
527
|
+
const Te = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
527
528
|
d.Title,
|
|
528
529
|
{
|
|
529
530
|
className: r("text-lg font-semibold leading-none tracking-tight", e),
|
|
530
531
|
...a
|
|
531
532
|
}
|
|
532
533
|
);
|
|
533
|
-
|
|
534
|
-
const
|
|
535
|
-
|
|
536
|
-
const
|
|
534
|
+
Te.displayName = "DialogTitle";
|
|
535
|
+
const De = ({ className: e, ...a }) => /* @__PURE__ */ t(d.Description, { className: r("mt-2", e), ...a });
|
|
536
|
+
De.displayName = "DialogDescription";
|
|
537
|
+
const Se = ({ className: e, variant: a, size: o, ...n }) => /* @__PURE__ */ t(
|
|
537
538
|
d.Close,
|
|
538
539
|
{
|
|
539
540
|
className: r(i({ variant: a ?? "outline", size: o }), e),
|
|
540
541
|
...n
|
|
541
542
|
}
|
|
542
543
|
);
|
|
543
|
-
|
|
544
|
+
Se.displayName = "DialogClose";
|
|
544
545
|
const Ae = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("flex flex-col space-y-1 mb-5", e), ...a });
|
|
545
546
|
Ae.displayName = "DialogHeader";
|
|
546
547
|
const ze = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
@@ -554,8 +555,8 @@ const ze = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
554
555
|
}
|
|
555
556
|
);
|
|
556
557
|
ze.displayName = "DialogFooter";
|
|
557
|
-
const
|
|
558
|
-
|
|
558
|
+
const Ve = (e) => /* @__PURE__ */ t(d.Root, { ...e });
|
|
559
|
+
Ve.displayName = "DrawerRoot";
|
|
559
560
|
const Le = ({ className: e, variant: a, size: o, ...n }) => /* @__PURE__ */ t(
|
|
560
561
|
d.Trigger,
|
|
561
562
|
{
|
|
@@ -564,9 +565,9 @@ const Le = ({ className: e, variant: a, size: o, ...n }) => /* @__PURE__ */ t(
|
|
|
564
565
|
}
|
|
565
566
|
);
|
|
566
567
|
Le.displayName = "DrawerTrigger";
|
|
567
|
-
const
|
|
568
|
-
|
|
569
|
-
const
|
|
568
|
+
const He = (e) => /* @__PURE__ */ t(d.Portal, { ...e });
|
|
569
|
+
He.displayName = "DrawerPortal";
|
|
570
|
+
const Ge = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
570
571
|
d.Backdrop,
|
|
571
572
|
{
|
|
572
573
|
className: r(
|
|
@@ -578,8 +579,8 @@ const He = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
578
579
|
...a
|
|
579
580
|
}
|
|
580
581
|
);
|
|
581
|
-
|
|
582
|
-
const
|
|
582
|
+
Ge.displayName = "DrawerBackdrop";
|
|
583
|
+
const _e = m(
|
|
583
584
|
[
|
|
584
585
|
"fixed z-50 flex flex-col bg-background p-6 shadow-lg",
|
|
585
586
|
"transition-transform duration-300 ease-out",
|
|
@@ -615,52 +616,52 @@ const Ge = m(
|
|
|
615
616
|
side: "right"
|
|
616
617
|
}
|
|
617
618
|
}
|
|
618
|
-
),
|
|
619
|
+
), je = ({ className: e, side: a, ...o }) => /* @__PURE__ */ t(
|
|
619
620
|
d.Popup,
|
|
620
621
|
{
|
|
621
|
-
className: r(
|
|
622
|
+
className: r(_e({ side: a }), e),
|
|
622
623
|
...o
|
|
623
624
|
}
|
|
624
625
|
);
|
|
625
|
-
|
|
626
|
-
const
|
|
626
|
+
je.displayName = "DrawerPopup";
|
|
627
|
+
const Be = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
627
628
|
d.Title,
|
|
628
629
|
{
|
|
629
630
|
className: r("text-lg font-semibold leading-none tracking-tight", e),
|
|
630
631
|
...a
|
|
631
632
|
}
|
|
632
633
|
);
|
|
633
|
-
|
|
634
|
-
const
|
|
635
|
-
|
|
636
|
-
const
|
|
634
|
+
Be.displayName = "DrawerTitle";
|
|
635
|
+
const Fe = ({ className: e, ...a }) => /* @__PURE__ */ t(d.Description, { className: r("", e), ...a });
|
|
636
|
+
Fe.displayName = "DrawerDescription";
|
|
637
|
+
const Ze = ({ className: e, variant: a, size: o, ...n }) => /* @__PURE__ */ t(
|
|
637
638
|
d.Close,
|
|
638
639
|
{
|
|
639
640
|
className: r(i({ variant: a ?? "outline", size: o }), e),
|
|
640
641
|
...n
|
|
641
642
|
}
|
|
642
643
|
);
|
|
643
|
-
|
|
644
|
-
const
|
|
645
|
-
|
|
646
|
-
const
|
|
647
|
-
|
|
648
|
-
const
|
|
649
|
-
|
|
650
|
-
const
|
|
651
|
-
|
|
652
|
-
const
|
|
653
|
-
|
|
644
|
+
Ze.displayName = "DrawerClose";
|
|
645
|
+
const $e = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("flex flex-col space-y-1.5", e), ...a });
|
|
646
|
+
$e.displayName = "DrawerHeader";
|
|
647
|
+
const qe = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("py-5", e), ...a });
|
|
648
|
+
qe.displayName = "DrawerContent";
|
|
649
|
+
const Oe = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("", e), ...a });
|
|
650
|
+
Oe.displayName = "DrawerFooter";
|
|
651
|
+
const Ee = ({ className: e, ...a }) => /* @__PURE__ */ t(w.Root, { className: r("w-full", e), ...a });
|
|
652
|
+
Ee.displayName = "AccordionRoot";
|
|
653
|
+
const Je = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
654
|
+
w.Item,
|
|
654
655
|
{
|
|
655
656
|
className: r("border-b border-border last:border-b-0", e),
|
|
656
657
|
...a
|
|
657
658
|
}
|
|
658
659
|
);
|
|
659
|
-
|
|
660
|
-
const
|
|
661
|
-
|
|
662
|
-
const
|
|
663
|
-
|
|
660
|
+
Je.displayName = "AccordionItem";
|
|
661
|
+
const Ke = ({ className: e, ...a }) => /* @__PURE__ */ t(w.Header, { className: r("flex", e), ...a });
|
|
662
|
+
Ke.displayName = "AccordionHeader";
|
|
663
|
+
const Qe = ({ className: e, children: a, ...o }) => /* @__PURE__ */ t(
|
|
664
|
+
w.Trigger,
|
|
664
665
|
{
|
|
665
666
|
className: r(
|
|
666
667
|
"flex flex-1 items-center justify-between py-3 font-medium",
|
|
@@ -670,9 +671,9 @@ const Ke = ({ className: e, children: a, ...o }) => /* @__PURE__ */ t(
|
|
|
670
671
|
children: a
|
|
671
672
|
}
|
|
672
673
|
);
|
|
673
|
-
|
|
674
|
-
const
|
|
675
|
-
|
|
674
|
+
Qe.displayName = "AccordionTrigger";
|
|
675
|
+
const Ue = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
676
|
+
w.Panel,
|
|
676
677
|
{
|
|
677
678
|
className: r(
|
|
678
679
|
"overflow-hidden duration-200 h-(--accordion-panel-height) transition-height ease-out data-ending-style:h-0 data-starting-style:h-0",
|
|
@@ -681,25 +682,25 @@ const Qe = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
681
682
|
...a
|
|
682
683
|
}
|
|
683
684
|
);
|
|
684
|
-
|
|
685
|
-
const
|
|
686
|
-
const u = o ?? 0, [g,
|
|
687
|
-
return
|
|
685
|
+
Ue.displayName = "AccordionPanel";
|
|
686
|
+
const We = ({ className: e, animated: a, value: o, ...n }) => {
|
|
687
|
+
const u = o ?? 0, [g, N] = h.useState(a ? 0 : u);
|
|
688
|
+
return h.useEffect(() => {
|
|
688
689
|
if (a) {
|
|
689
|
-
const
|
|
690
|
-
const
|
|
691
|
-
|
|
690
|
+
const k = requestAnimationFrame(() => {
|
|
691
|
+
const P = requestAnimationFrame(() => {
|
|
692
|
+
N(u ?? 0);
|
|
692
693
|
});
|
|
693
|
-
return () => cancelAnimationFrame(
|
|
694
|
+
return () => cancelAnimationFrame(P);
|
|
694
695
|
});
|
|
695
|
-
return () => cancelAnimationFrame(
|
|
696
|
+
return () => cancelAnimationFrame(k);
|
|
696
697
|
} else
|
|
697
|
-
|
|
698
|
-
}, [a, u]), /* @__PURE__ */ t(
|
|
698
|
+
N(u ?? 0);
|
|
699
|
+
}, [a, u]), /* @__PURE__ */ t(C.Root, { className: r("w-full", e), value: g, ...n });
|
|
699
700
|
};
|
|
700
|
-
|
|
701
|
-
const
|
|
702
|
-
|
|
701
|
+
We.displayName = "MeterRoot";
|
|
702
|
+
const Xe = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
703
|
+
C.Track,
|
|
703
704
|
{
|
|
704
705
|
className: r(
|
|
705
706
|
"relative h-2 w-full overflow-hidden rounded-full bg-primary/20",
|
|
@@ -708,9 +709,9 @@ const We = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
708
709
|
...a
|
|
709
710
|
}
|
|
710
711
|
);
|
|
711
|
-
|
|
712
|
-
const
|
|
713
|
-
|
|
712
|
+
Xe.displayName = "MeterTrack";
|
|
713
|
+
const Ye = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
714
|
+
C.Indicator,
|
|
714
715
|
{
|
|
715
716
|
className: r(
|
|
716
717
|
"h-full rounded-full bg-primary transition-all duration-1000 ease-out-expo",
|
|
@@ -719,30 +720,30 @@ const Xe = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
719
720
|
...a
|
|
720
721
|
}
|
|
721
722
|
);
|
|
722
|
-
|
|
723
|
-
const
|
|
724
|
-
|
|
723
|
+
Ye.displayName = "MeterIndicator";
|
|
724
|
+
const ea = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
725
|
+
C.Value,
|
|
725
726
|
{
|
|
726
727
|
className: r("text-sm font-medium text-foreground", e),
|
|
727
728
|
...a
|
|
728
729
|
}
|
|
729
730
|
);
|
|
730
|
-
|
|
731
|
-
const
|
|
732
|
-
|
|
731
|
+
ea.displayName = "MeterValue";
|
|
732
|
+
const aa = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
733
|
+
C.Label,
|
|
733
734
|
{
|
|
734
735
|
className: r("text-sm font-medium text-foreground", e),
|
|
735
736
|
...a
|
|
736
737
|
}
|
|
737
738
|
);
|
|
738
|
-
|
|
739
|
-
const
|
|
740
|
-
|
|
741
|
-
const
|
|
742
|
-
|
|
743
|
-
const
|
|
744
|
-
|
|
745
|
-
const
|
|
739
|
+
aa.displayName = "MeterLabel";
|
|
740
|
+
const ta = (e) => /* @__PURE__ */ t(s.Root, { ...e });
|
|
741
|
+
ta.displayName = "MenuRoot";
|
|
742
|
+
const ra = ({ className: e, ...a }) => /* @__PURE__ */ t(s.Trigger, { className: r(e), ...a });
|
|
743
|
+
ra.displayName = "MenuTrigger";
|
|
744
|
+
const oa = (e) => /* @__PURE__ */ t(s.Portal, { ...e });
|
|
745
|
+
oa.displayName = "MenuPortal";
|
|
746
|
+
const sa = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
746
747
|
s.Positioner,
|
|
747
748
|
{
|
|
748
749
|
className: r("z-50 outline-none", e),
|
|
@@ -750,8 +751,8 @@ const oa = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
750
751
|
...a
|
|
751
752
|
}
|
|
752
753
|
);
|
|
753
|
-
|
|
754
|
-
const
|
|
754
|
+
sa.displayName = "MenuPositioner";
|
|
755
|
+
const na = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
755
756
|
s.Popup,
|
|
756
757
|
{
|
|
757
758
|
className: r(
|
|
@@ -762,8 +763,8 @@ const sa = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
762
763
|
...a
|
|
763
764
|
}
|
|
764
765
|
);
|
|
765
|
-
|
|
766
|
-
const
|
|
766
|
+
na.displayName = "MenuPopup";
|
|
767
|
+
const ia = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
767
768
|
s.Arrow,
|
|
768
769
|
{
|
|
769
770
|
className: r(
|
|
@@ -771,10 +772,10 @@ const na = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
771
772
|
e
|
|
772
773
|
),
|
|
773
774
|
...a,
|
|
774
|
-
children: /* @__PURE__ */ t(
|
|
775
|
+
children: /* @__PURE__ */ t(la, {})
|
|
775
776
|
}
|
|
776
777
|
);
|
|
777
|
-
function
|
|
778
|
+
function la(e) {
|
|
778
779
|
return /* @__PURE__ */ b("svg", { width: "20", height: "10", viewBox: "0 0 20 10", fill: "none", ...e, children: [
|
|
779
780
|
/* @__PURE__ */ t(
|
|
780
781
|
"path",
|
|
@@ -792,8 +793,8 @@ function ia(e) {
|
|
|
792
793
|
)
|
|
793
794
|
] });
|
|
794
795
|
}
|
|
795
|
-
|
|
796
|
-
const
|
|
796
|
+
ia.displayName = "MenuArrow";
|
|
797
|
+
const da = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
797
798
|
s.Item,
|
|
798
799
|
{
|
|
799
800
|
className: r(
|
|
@@ -804,28 +805,28 @@ const la = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
804
805
|
...a
|
|
805
806
|
}
|
|
806
807
|
);
|
|
807
|
-
|
|
808
|
-
const
|
|
808
|
+
da.displayName = "MenuItem";
|
|
809
|
+
const ca = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
809
810
|
s.Separator,
|
|
810
811
|
{
|
|
811
812
|
className: r("-mx-1 my-1 h-px bg-border", e),
|
|
812
813
|
...a
|
|
813
814
|
}
|
|
814
815
|
);
|
|
815
|
-
|
|
816
|
-
const
|
|
817
|
-
|
|
818
|
-
const
|
|
816
|
+
ca.displayName = "MenuSeparator";
|
|
817
|
+
const ua = ({ className: e, ...a }) => /* @__PURE__ */ t(s.Group, { className: r(e), ...a });
|
|
818
|
+
ua.displayName = "MenuGroup";
|
|
819
|
+
const ma = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
819
820
|
s.GroupLabel,
|
|
820
821
|
{
|
|
821
822
|
className: r("px-3 py-1.5 text-sm font-semibold", e),
|
|
822
823
|
...a
|
|
823
824
|
}
|
|
824
825
|
);
|
|
825
|
-
|
|
826
|
-
const
|
|
827
|
-
|
|
828
|
-
const
|
|
826
|
+
ma.displayName = "MenuGroupLabel";
|
|
827
|
+
const pa = ({ className: e, ...a }) => /* @__PURE__ */ t(s.RadioGroup, { className: r(e), ...a });
|
|
828
|
+
pa.displayName = "MenuRadioGroup";
|
|
829
|
+
const ga = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
829
830
|
s.RadioItem,
|
|
830
831
|
{
|
|
831
832
|
className: r(
|
|
@@ -836,8 +837,8 @@ const pa = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
836
837
|
...a
|
|
837
838
|
}
|
|
838
839
|
);
|
|
839
|
-
|
|
840
|
-
const
|
|
840
|
+
ga.displayName = "MenuRadioItem";
|
|
841
|
+
const ba = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
841
842
|
s.CheckboxItem,
|
|
842
843
|
{
|
|
843
844
|
className: r(
|
|
@@ -848,19 +849,19 @@ const ga = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
848
849
|
...a
|
|
849
850
|
}
|
|
850
851
|
);
|
|
851
|
-
|
|
852
|
-
const
|
|
853
|
-
|
|
854
|
-
const
|
|
852
|
+
ba.displayName = "MenuCheckboxItem";
|
|
853
|
+
const fa = ({ className: e, ...a }) => /* @__PURE__ */ t(s.RadioItemIndicator, { className: r("col-start-1", e), ...a });
|
|
854
|
+
fa.displayName = "MenuRadioItemIndicator";
|
|
855
|
+
const ya = ({
|
|
855
856
|
className: e,
|
|
856
857
|
...a
|
|
857
858
|
}) => /* @__PURE__ */ t(s.CheckboxItemIndicator, { className: r("col-start-1", e), ...a });
|
|
858
|
-
|
|
859
|
-
const ya = ({ className: e, ...a }) => /* @__PURE__ */ t("span", { className: r("col-start-2", e), ...a });
|
|
860
|
-
ya.displayName = "MenuCheckboxItemLabel";
|
|
859
|
+
ya.displayName = "MenuCheckboxItemIndicator";
|
|
861
860
|
const Na = ({ className: e, ...a }) => /* @__PURE__ */ t("span", { className: r("col-start-2", e), ...a });
|
|
862
|
-
Na.displayName = "
|
|
863
|
-
const xa = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
861
|
+
Na.displayName = "MenuCheckboxItemLabel";
|
|
862
|
+
const xa = ({ className: e, ...a }) => /* @__PURE__ */ t("span", { className: r("col-start-2", e), ...a });
|
|
863
|
+
xa.displayName = "MenuRadioItemLabel";
|
|
864
|
+
const ha = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
864
865
|
s.SubmenuTrigger,
|
|
865
866
|
{
|
|
866
867
|
className: r(
|
|
@@ -871,16 +872,16 @@ const xa = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
871
872
|
...a
|
|
872
873
|
}
|
|
873
874
|
);
|
|
874
|
-
|
|
875
|
-
const
|
|
876
|
-
|
|
877
|
-
const
|
|
878
|
-
|
|
879
|
-
const
|
|
880
|
-
|
|
881
|
-
const
|
|
882
|
-
|
|
883
|
-
const
|
|
875
|
+
ha.displayName = "MenuSubmenuTrigger";
|
|
876
|
+
const va = (e) => /* @__PURE__ */ t(s.SubmenuRoot, { ...e });
|
|
877
|
+
va.displayName = "MenuSubmenuRoot";
|
|
878
|
+
const wa = (e) => /* @__PURE__ */ t(c.Root, { ...e });
|
|
879
|
+
wa.displayName = "PopoverRoot";
|
|
880
|
+
const Ca = ({ className: e, ...a }) => /* @__PURE__ */ t(c.Trigger, { className: r(e), ...a });
|
|
881
|
+
Ca.displayName = "PopoverTrigger";
|
|
882
|
+
const Ma = (e) => /* @__PURE__ */ t(c.Portal, { ...e });
|
|
883
|
+
Ma.displayName = "PopoverPortal";
|
|
884
|
+
const ka = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
884
885
|
c.Backdrop,
|
|
885
886
|
{
|
|
886
887
|
className: r(
|
|
@@ -892,8 +893,8 @@ const Ma = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
892
893
|
...a
|
|
893
894
|
}
|
|
894
895
|
);
|
|
895
|
-
|
|
896
|
-
const
|
|
896
|
+
ka.displayName = "PopoverBackdrop";
|
|
897
|
+
const Pa = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
897
898
|
c.Positioner,
|
|
898
899
|
{
|
|
899
900
|
className: r(
|
|
@@ -910,8 +911,8 @@ const ka = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
910
911
|
...a
|
|
911
912
|
}
|
|
912
913
|
);
|
|
913
|
-
|
|
914
|
-
const
|
|
914
|
+
Pa.displayName = "PopoverPositioner";
|
|
915
|
+
const Ia = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
915
916
|
c.Popup,
|
|
916
917
|
{
|
|
917
918
|
className: r(
|
|
@@ -930,8 +931,8 @@ const Pa = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
930
931
|
...a
|
|
931
932
|
}
|
|
932
933
|
);
|
|
933
|
-
|
|
934
|
-
const
|
|
934
|
+
Ia.displayName = "PopoverPopup";
|
|
935
|
+
const Ra = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
935
936
|
c.Arrow,
|
|
936
937
|
{
|
|
937
938
|
className: r(
|
|
@@ -939,10 +940,10 @@ const Ia = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
939
940
|
e
|
|
940
941
|
),
|
|
941
942
|
...a,
|
|
942
|
-
children: /* @__PURE__ */ t(
|
|
943
|
+
children: /* @__PURE__ */ t(Ta, {})
|
|
943
944
|
}
|
|
944
945
|
);
|
|
945
|
-
function
|
|
946
|
+
function Ta(e) {
|
|
946
947
|
return /* @__PURE__ */ b("svg", { width: "20", height: "10", viewBox: "0 0 20 10", fill: "none", ...e, children: [
|
|
947
948
|
/* @__PURE__ */ t(
|
|
948
949
|
"path",
|
|
@@ -960,19 +961,19 @@ function Ra(e) {
|
|
|
960
961
|
)
|
|
961
962
|
] });
|
|
962
963
|
}
|
|
963
|
-
|
|
964
|
-
const
|
|
965
|
-
|
|
966
|
-
const
|
|
967
|
-
|
|
964
|
+
Ra.displayName = "PopoverArrow";
|
|
965
|
+
const Da = ({ className: e, ...a }) => /* @__PURE__ */ t(c.Title, { className: r("text-sm font-semibold", e), ...a });
|
|
966
|
+
Da.displayName = "PopoverTitle";
|
|
967
|
+
const Sa = ({ className: e, ...a }) => /* @__PURE__ */ t(c.Description, { className: r("text-sm", e), ...a });
|
|
968
|
+
Sa.displayName = "PopoverDescription";
|
|
968
969
|
const Aa = ({ className: e, ...a }) => /* @__PURE__ */ t(c.Close, { className: r(e), ...a });
|
|
969
970
|
Aa.displayName = "PopoverClose";
|
|
970
971
|
const za = ({ className: e, ...a }) => /* @__PURE__ */ t(c.Viewport, { className: r(e), ...a });
|
|
971
972
|
za.displayName = "PopoverViewport";
|
|
972
|
-
const
|
|
973
|
-
|
|
973
|
+
const Va = ({ className: e, ...a }) => /* @__PURE__ */ t(M.Root, { className: r("w-full", e), ...a });
|
|
974
|
+
Va.displayName = "ProgressRoot";
|
|
974
975
|
const La = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
975
|
-
|
|
976
|
+
M.Track,
|
|
976
977
|
{
|
|
977
978
|
className: r(
|
|
978
979
|
"relative h-2 w-full overflow-hidden rounded-full bg-primary/20",
|
|
@@ -982,8 +983,8 @@ const La = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
982
983
|
}
|
|
983
984
|
);
|
|
984
985
|
La.displayName = "ProgressTrack";
|
|
985
|
-
const
|
|
986
|
-
|
|
986
|
+
const Ha = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
987
|
+
M.Indicator,
|
|
987
988
|
{
|
|
988
989
|
className: r(
|
|
989
990
|
"h-full rounded-full bg-primary transition-all duration-1000 ease-out-expo",
|
|
@@ -992,25 +993,25 @@ const Va = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
992
993
|
...a
|
|
993
994
|
}
|
|
994
995
|
);
|
|
995
|
-
|
|
996
|
-
const
|
|
997
|
-
|
|
996
|
+
Ha.displayName = "ProgressIndicator";
|
|
997
|
+
const Ga = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
998
|
+
M.Value,
|
|
998
999
|
{
|
|
999
1000
|
className: r("text-sm font-medium text-foreground", e),
|
|
1000
1001
|
...a
|
|
1001
1002
|
}
|
|
1002
1003
|
);
|
|
1003
|
-
|
|
1004
|
-
const
|
|
1005
|
-
|
|
1004
|
+
Ga.displayName = "ProgressValue";
|
|
1005
|
+
const _a = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1006
|
+
M.Label,
|
|
1006
1007
|
{
|
|
1007
1008
|
className: r("text-sm font-medium text-foreground", e),
|
|
1008
1009
|
...a
|
|
1009
1010
|
}
|
|
1010
1011
|
);
|
|
1011
|
-
|
|
1012
|
-
const
|
|
1013
|
-
|
|
1012
|
+
_a.displayName = "ProgressLabel";
|
|
1013
|
+
const ja = ({ className: e, orientation: a, ...o }) => /* @__PURE__ */ t(
|
|
1014
|
+
B,
|
|
1014
1015
|
{
|
|
1015
1016
|
orientation: a,
|
|
1016
1017
|
className: r(
|
|
@@ -1026,15 +1027,15 @@ const _a = ({ className: e, orientation: a, ...o }) => /* @__PURE__ */ t(
|
|
|
1026
1027
|
...o
|
|
1027
1028
|
}
|
|
1028
1029
|
);
|
|
1029
|
-
|
|
1030
|
-
const
|
|
1030
|
+
ja.displayName = "ToggleGroupRoot";
|
|
1031
|
+
const Ba = ({
|
|
1031
1032
|
className: e,
|
|
1032
1033
|
variant: a,
|
|
1033
1034
|
size: o,
|
|
1034
1035
|
...n
|
|
1035
|
-
}) => /* @__PURE__ */ t(A, { className: r(
|
|
1036
|
-
|
|
1037
|
-
const
|
|
1036
|
+
}) => /* @__PURE__ */ t(A, { className: r(T({ variant: a, size: o }), e), ...n });
|
|
1037
|
+
Ba.displayName = "ToggleGroupItem";
|
|
1038
|
+
const Fa = m("rounded-lg bg-card text-card-foreground transition-colors", {
|
|
1038
1039
|
variants: {
|
|
1039
1040
|
variant: {
|
|
1040
1041
|
default: "border shadow-sm",
|
|
@@ -1045,18 +1046,18 @@ const Ba = m("rounded-lg bg-card text-card-foreground transition-colors", {
|
|
|
1045
1046
|
defaultVariants: {
|
|
1046
1047
|
variant: "default"
|
|
1047
1048
|
}
|
|
1048
|
-
}),
|
|
1049
|
+
}), Za = h.forwardRef(
|
|
1049
1050
|
({ className: e, variant: a, ...o }, n) => /* @__PURE__ */ t(
|
|
1050
1051
|
"article",
|
|
1051
1052
|
{
|
|
1052
1053
|
ref: n,
|
|
1053
|
-
className: r(
|
|
1054
|
+
className: r(Fa({ variant: a }), e),
|
|
1054
1055
|
...o
|
|
1055
1056
|
}
|
|
1056
1057
|
)
|
|
1057
1058
|
);
|
|
1058
|
-
|
|
1059
|
-
const
|
|
1059
|
+
Za.displayName = "CardRoot";
|
|
1060
|
+
const $a = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1060
1061
|
"div",
|
|
1061
1062
|
{
|
|
1062
1063
|
className: r(
|
|
@@ -1067,32 +1068,32 @@ const Za = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1067
1068
|
...a
|
|
1068
1069
|
}
|
|
1069
1070
|
);
|
|
1070
|
-
|
|
1071
|
-
const
|
|
1072
|
-
|
|
1073
|
-
const
|
|
1071
|
+
$a.displayName = "CardMedia";
|
|
1072
|
+
const qa = ({ className: e, ...a }) => /* @__PURE__ */ t("header", { className: r("flex flex-col gap-1 p-4", e), ...a });
|
|
1073
|
+
qa.displayName = "CardHeader";
|
|
1074
|
+
const Oa = ({ as: e = "h3", className: a, ...o }) => /* @__PURE__ */ t(
|
|
1074
1075
|
e,
|
|
1075
1076
|
{
|
|
1076
1077
|
className: r("text-base font-semibold leading-tight", a),
|
|
1077
1078
|
...o
|
|
1078
1079
|
}
|
|
1079
1080
|
);
|
|
1080
|
-
|
|
1081
|
-
const
|
|
1082
|
-
|
|
1083
|
-
const
|
|
1084
|
-
|
|
1085
|
-
const
|
|
1086
|
-
|
|
1087
|
-
const
|
|
1088
|
-
|
|
1089
|
-
const
|
|
1090
|
-
|
|
1091
|
-
const
|
|
1092
|
-
|
|
1093
|
-
const
|
|
1094
|
-
|
|
1095
|
-
const
|
|
1081
|
+
Oa.displayName = "CardTitle";
|
|
1082
|
+
const Ea = ({ className: e, ...a }) => /* @__PURE__ */ t("p", { className: r("text-sm", e), ...a });
|
|
1083
|
+
Ea.displayName = "CardDescription";
|
|
1084
|
+
const Ja = ({ className: e, ...a }) => /* @__PURE__ */ t("div", { className: r("p-4 pt-0", e), ...a });
|
|
1085
|
+
Ja.displayName = "CardContent";
|
|
1086
|
+
const Ka = ({ className: e, ...a }) => /* @__PURE__ */ t("section", { className: r("p-4", e), ...a });
|
|
1087
|
+
Ka.displayName = "CardSection";
|
|
1088
|
+
const Qa = ({ className: e, ...a }) => /* @__PURE__ */ t("footer", { className: r("flex items-center p-4", e), ...a });
|
|
1089
|
+
Qa.displayName = "CardFooter";
|
|
1090
|
+
const Ua = (e) => /* @__PURE__ */ t(l.Root, { ...e });
|
|
1091
|
+
Ua.displayName = "ContextMenuRoot";
|
|
1092
|
+
const Wa = ({ className: e, ...a }) => /* @__PURE__ */ t(l.Trigger, { className: r(e), ...a });
|
|
1093
|
+
Wa.displayName = "ContextMenuTrigger";
|
|
1094
|
+
const Xa = (e) => /* @__PURE__ */ t(l.Portal, { ...e });
|
|
1095
|
+
Xa.displayName = "ContextMenuPortal";
|
|
1096
|
+
const Ya = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1096
1097
|
l.Positioner,
|
|
1097
1098
|
{
|
|
1098
1099
|
className: r("z-50 outline-none", e),
|
|
@@ -1100,8 +1101,8 @@ const Xa = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1100
1101
|
...a
|
|
1101
1102
|
}
|
|
1102
1103
|
);
|
|
1103
|
-
|
|
1104
|
-
const
|
|
1104
|
+
Ya.displayName = "ContextMenuPositioner";
|
|
1105
|
+
const et = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1105
1106
|
l.Popup,
|
|
1106
1107
|
{
|
|
1107
1108
|
className: r(
|
|
@@ -1112,8 +1113,8 @@ const Ya = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1112
1113
|
...a
|
|
1113
1114
|
}
|
|
1114
1115
|
);
|
|
1115
|
-
|
|
1116
|
-
const
|
|
1116
|
+
et.displayName = "ContextMenuPopup";
|
|
1117
|
+
const at = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1117
1118
|
l.Arrow,
|
|
1118
1119
|
{
|
|
1119
1120
|
className: r(
|
|
@@ -1121,10 +1122,10 @@ const et = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1121
1122
|
e
|
|
1122
1123
|
),
|
|
1123
1124
|
...a,
|
|
1124
|
-
children: /* @__PURE__ */ t(
|
|
1125
|
+
children: /* @__PURE__ */ t(tt, {})
|
|
1125
1126
|
}
|
|
1126
1127
|
);
|
|
1127
|
-
function
|
|
1128
|
+
function tt(e) {
|
|
1128
1129
|
return /* @__PURE__ */ b("svg", { width: "20", height: "10", viewBox: "0 0 20 10", fill: "none", ...e, children: [
|
|
1129
1130
|
/* @__PURE__ */ t(
|
|
1130
1131
|
"path",
|
|
@@ -1142,8 +1143,8 @@ function at(e) {
|
|
|
1142
1143
|
)
|
|
1143
1144
|
] });
|
|
1144
1145
|
}
|
|
1145
|
-
|
|
1146
|
-
const
|
|
1146
|
+
at.displayName = "ContextMenuArrow";
|
|
1147
|
+
const rt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1147
1148
|
l.Item,
|
|
1148
1149
|
{
|
|
1149
1150
|
className: r(
|
|
@@ -1154,28 +1155,28 @@ const tt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1154
1155
|
...a
|
|
1155
1156
|
}
|
|
1156
1157
|
);
|
|
1157
|
-
|
|
1158
|
-
const
|
|
1158
|
+
rt.displayName = "ContextMenuItem";
|
|
1159
|
+
const ot = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1159
1160
|
l.Separator,
|
|
1160
1161
|
{
|
|
1161
1162
|
className: r("-mx-1 my-1 h-px bg-border", e),
|
|
1162
1163
|
...a
|
|
1163
1164
|
}
|
|
1164
1165
|
);
|
|
1165
|
-
|
|
1166
|
-
const
|
|
1167
|
-
|
|
1168
|
-
const
|
|
1166
|
+
ot.displayName = "ContextMenuSeparator";
|
|
1167
|
+
const st = ({ className: e, ...a }) => /* @__PURE__ */ t(l.Group, { className: r(e), ...a });
|
|
1168
|
+
st.displayName = "ContextMenuGroup";
|
|
1169
|
+
const nt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1169
1170
|
l.GroupLabel,
|
|
1170
1171
|
{
|
|
1171
1172
|
className: r("px-3 py-1.5 text-sm font-semibold", e),
|
|
1172
1173
|
...a
|
|
1173
1174
|
}
|
|
1174
1175
|
);
|
|
1175
|
-
|
|
1176
|
-
const
|
|
1177
|
-
|
|
1178
|
-
const
|
|
1176
|
+
nt.displayName = "ContextMenuGroupLabel";
|
|
1177
|
+
const it = ({ className: e, ...a }) => /* @__PURE__ */ t(l.RadioGroup, { className: r(e), ...a });
|
|
1178
|
+
it.displayName = "ContextMenuRadioGroup";
|
|
1179
|
+
const lt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1179
1180
|
l.RadioItem,
|
|
1180
1181
|
{
|
|
1181
1182
|
className: r(
|
|
@@ -1186,8 +1187,8 @@ const it = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1186
1187
|
...a
|
|
1187
1188
|
}
|
|
1188
1189
|
);
|
|
1189
|
-
|
|
1190
|
-
const
|
|
1190
|
+
lt.displayName = "ContextMenuRadioItem";
|
|
1191
|
+
const dt = ({
|
|
1191
1192
|
className: e,
|
|
1192
1193
|
...a
|
|
1193
1194
|
}) => /* @__PURE__ */ t(
|
|
@@ -1201,8 +1202,8 @@ const lt = ({
|
|
|
1201
1202
|
...a
|
|
1202
1203
|
}
|
|
1203
1204
|
);
|
|
1204
|
-
|
|
1205
|
-
const
|
|
1205
|
+
dt.displayName = "ContextMenuCheckboxItem";
|
|
1206
|
+
const ct = ({
|
|
1206
1207
|
className: e,
|
|
1207
1208
|
...a
|
|
1208
1209
|
}) => /* @__PURE__ */ t(
|
|
@@ -1212,8 +1213,8 @@ const dt = ({
|
|
|
1212
1213
|
...a
|
|
1213
1214
|
}
|
|
1214
1215
|
);
|
|
1215
|
-
|
|
1216
|
-
const
|
|
1216
|
+
ct.displayName = "ContextMenuRadioItemIndicator";
|
|
1217
|
+
const ut = ({
|
|
1217
1218
|
className: e,
|
|
1218
1219
|
...a
|
|
1219
1220
|
}) => /* @__PURE__ */ t(
|
|
@@ -1223,18 +1224,18 @@ const ct = ({
|
|
|
1223
1224
|
...a
|
|
1224
1225
|
}
|
|
1225
1226
|
);
|
|
1226
|
-
|
|
1227
|
-
const
|
|
1227
|
+
ut.displayName = "ContextMenuCheckboxItemIndicator";
|
|
1228
|
+
const mt = ({
|
|
1228
1229
|
className: e,
|
|
1229
1230
|
...a
|
|
1230
1231
|
}) => /* @__PURE__ */ t("span", { className: r("col-start-2", e), ...a });
|
|
1231
|
-
|
|
1232
|
-
const
|
|
1232
|
+
mt.displayName = "ContextMenuCheckboxItemLabel";
|
|
1233
|
+
const pt = ({
|
|
1233
1234
|
className: e,
|
|
1234
1235
|
...a
|
|
1235
1236
|
}) => /* @__PURE__ */ t("span", { className: r("col-start-2", e), ...a });
|
|
1236
|
-
|
|
1237
|
-
const
|
|
1237
|
+
pt.displayName = "ContextMenuRadioItemLabel";
|
|
1238
|
+
const gt = ({
|
|
1238
1239
|
className: e,
|
|
1239
1240
|
...a
|
|
1240
1241
|
}) => /* @__PURE__ */ t(
|
|
@@ -1248,11 +1249,11 @@ const pt = ({
|
|
|
1248
1249
|
...a
|
|
1249
1250
|
}
|
|
1250
1251
|
);
|
|
1251
|
-
|
|
1252
|
-
const
|
|
1253
|
-
|
|
1254
|
-
const
|
|
1255
|
-
|
|
1252
|
+
gt.displayName = "ContextMenuSubmenuTrigger";
|
|
1253
|
+
const bt = (e) => /* @__PURE__ */ t(l.SubmenuRoot, { ...e });
|
|
1254
|
+
bt.displayName = "ContextMenuSubmenuRoot";
|
|
1255
|
+
const ft = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1256
|
+
F,
|
|
1256
1257
|
{
|
|
1257
1258
|
className: r(
|
|
1258
1259
|
"inline-flex",
|
|
@@ -1264,20 +1265,20 @@ const bt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1264
1265
|
...a
|
|
1265
1266
|
}
|
|
1266
1267
|
);
|
|
1267
|
-
|
|
1268
|
-
const
|
|
1269
|
-
|
|
1270
|
-
const
|
|
1268
|
+
ft.displayName = "MenubarRoot";
|
|
1269
|
+
const yt = (e) => /* @__PURE__ */ t(s.Root, { ...e });
|
|
1270
|
+
yt.displayName = "MenubarMenu";
|
|
1271
|
+
const Nt = ({ className: e, variant: a, size: o, ...n }) => /* @__PURE__ */ t(
|
|
1271
1272
|
s.Trigger,
|
|
1272
1273
|
{
|
|
1273
|
-
className: r(
|
|
1274
|
+
className: r(T({ variant: a, size: o }), e),
|
|
1274
1275
|
...n
|
|
1275
1276
|
}
|
|
1276
1277
|
);
|
|
1277
|
-
|
|
1278
|
-
const
|
|
1279
|
-
|
|
1280
|
-
const
|
|
1278
|
+
Nt.displayName = "MenubarTrigger";
|
|
1279
|
+
const xt = (e) => /* @__PURE__ */ t(s.Portal, { ...e });
|
|
1280
|
+
xt.displayName = "MenubarPortal";
|
|
1281
|
+
const ht = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1281
1282
|
s.Positioner,
|
|
1282
1283
|
{
|
|
1283
1284
|
className: r("z-50 outline-none", e),
|
|
@@ -1285,8 +1286,8 @@ const xt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1285
1286
|
...a
|
|
1286
1287
|
}
|
|
1287
1288
|
);
|
|
1288
|
-
|
|
1289
|
-
const
|
|
1289
|
+
ht.displayName = "MenubarPositioner";
|
|
1290
|
+
const vt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1290
1291
|
s.Popup,
|
|
1291
1292
|
{
|
|
1292
1293
|
className: r(
|
|
@@ -1297,8 +1298,8 @@ const ht = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1297
1298
|
...a
|
|
1298
1299
|
}
|
|
1299
1300
|
);
|
|
1300
|
-
|
|
1301
|
-
const
|
|
1301
|
+
vt.displayName = "MenubarPopup";
|
|
1302
|
+
const wt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1302
1303
|
s.Arrow,
|
|
1303
1304
|
{
|
|
1304
1305
|
className: r(
|
|
@@ -1306,10 +1307,10 @@ const vt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1306
1307
|
e
|
|
1307
1308
|
),
|
|
1308
1309
|
...a,
|
|
1309
|
-
children: /* @__PURE__ */ t(
|
|
1310
|
+
children: /* @__PURE__ */ t(Ct, {})
|
|
1310
1311
|
}
|
|
1311
1312
|
);
|
|
1312
|
-
function
|
|
1313
|
+
function Ct(e) {
|
|
1313
1314
|
return /* @__PURE__ */ b("svg", { width: "20", height: "10", viewBox: "0 0 20 10", fill: "none", ...e, children: [
|
|
1314
1315
|
/* @__PURE__ */ t(
|
|
1315
1316
|
"path",
|
|
@@ -1327,8 +1328,8 @@ function wt(e) {
|
|
|
1327
1328
|
)
|
|
1328
1329
|
] });
|
|
1329
1330
|
}
|
|
1330
|
-
|
|
1331
|
-
const
|
|
1331
|
+
wt.displayName = "MenubarArrow";
|
|
1332
|
+
const Mt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1332
1333
|
s.Item,
|
|
1333
1334
|
{
|
|
1334
1335
|
className: r(
|
|
@@ -1339,22 +1340,22 @@ const Ct = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1339
1340
|
...a
|
|
1340
1341
|
}
|
|
1341
1342
|
);
|
|
1342
|
-
|
|
1343
|
-
const
|
|
1344
|
-
|
|
1345
|
-
const
|
|
1346
|
-
|
|
1347
|
-
const
|
|
1343
|
+
Mt.displayName = "MenubarItem";
|
|
1344
|
+
const kt = ({ className: e, ...a }) => /* @__PURE__ */ t(s.Separator, { className: r("-mx-1 my-1 h-px bg-border", e), ...a });
|
|
1345
|
+
kt.displayName = "MenubarSeparator";
|
|
1346
|
+
const Pt = ({ className: e, ...a }) => /* @__PURE__ */ t(s.Group, { className: r(e), ...a });
|
|
1347
|
+
Pt.displayName = "MenubarGroup";
|
|
1348
|
+
const It = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1348
1349
|
s.GroupLabel,
|
|
1349
1350
|
{
|
|
1350
1351
|
className: r("px-3 py-1.5 text-sm font-semibold", e),
|
|
1351
1352
|
...a
|
|
1352
1353
|
}
|
|
1353
1354
|
);
|
|
1354
|
-
|
|
1355
|
-
const
|
|
1356
|
-
|
|
1357
|
-
const
|
|
1355
|
+
It.displayName = "MenubarGroupLabel";
|
|
1356
|
+
const Rt = ({ className: e, ...a }) => /* @__PURE__ */ t(s.RadioGroup, { className: r(e), ...a });
|
|
1357
|
+
Rt.displayName = "MenubarRadioGroup";
|
|
1358
|
+
const Tt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1358
1359
|
s.RadioItem,
|
|
1359
1360
|
{
|
|
1360
1361
|
className: r(
|
|
@@ -1365,8 +1366,8 @@ const Rt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1365
1366
|
...a
|
|
1366
1367
|
}
|
|
1367
1368
|
);
|
|
1368
|
-
|
|
1369
|
-
const
|
|
1369
|
+
Tt.displayName = "MenubarRadioItem";
|
|
1370
|
+
const Dt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1370
1371
|
s.CheckboxItem,
|
|
1371
1372
|
{
|
|
1372
1373
|
className: r(
|
|
@@ -1377,12 +1378,12 @@ const Tt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1377
1378
|
...a
|
|
1378
1379
|
}
|
|
1379
1380
|
);
|
|
1380
|
-
|
|
1381
|
-
const
|
|
1381
|
+
Dt.displayName = "MenubarCheckboxItem";
|
|
1382
|
+
const St = ({
|
|
1382
1383
|
className: e,
|
|
1383
1384
|
...a
|
|
1384
1385
|
}) => /* @__PURE__ */ t(s.RadioItemIndicator, { className: r("col-start-1", e), ...a });
|
|
1385
|
-
|
|
1386
|
+
St.displayName = "MenubarRadioItemIndicator";
|
|
1386
1387
|
const At = ({
|
|
1387
1388
|
className: e,
|
|
1388
1389
|
...a
|
|
@@ -1393,8 +1394,8 @@ const zt = ({
|
|
|
1393
1394
|
...a
|
|
1394
1395
|
}) => /* @__PURE__ */ t("span", { className: r("col-start-2", e), ...a });
|
|
1395
1396
|
zt.displayName = "MenubarCheckboxItemLabel";
|
|
1396
|
-
const
|
|
1397
|
-
|
|
1397
|
+
const Vt = ({ className: e, ...a }) => /* @__PURE__ */ t("span", { className: r("col-start-2", e), ...a });
|
|
1398
|
+
Vt.displayName = "MenubarRadioItemLabel";
|
|
1398
1399
|
const Lt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1399
1400
|
s.SubmenuTrigger,
|
|
1400
1401
|
{
|
|
@@ -1407,155 +1408,212 @@ const Lt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
|
1407
1408
|
}
|
|
1408
1409
|
);
|
|
1409
1410
|
Lt.displayName = "MenubarSubmenuTrigger";
|
|
1410
|
-
const
|
|
1411
|
-
|
|
1411
|
+
const Ht = (e) => /* @__PURE__ */ t(s.SubmenuRoot, { ...e });
|
|
1412
|
+
Ht.displayName = "MenubarSubmenuRoot";
|
|
1413
|
+
const Gt = ({ className: e, ...a }) => /* @__PURE__ */ t(y.Root, { className: r("w-full", e), ...a });
|
|
1414
|
+
Gt.displayName = "SliderRoot";
|
|
1415
|
+
const _t = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1416
|
+
y.Value,
|
|
1417
|
+
{
|
|
1418
|
+
className: r("text-sm font-medium text-foreground", e),
|
|
1419
|
+
...a
|
|
1420
|
+
}
|
|
1421
|
+
);
|
|
1422
|
+
_t.displayName = "SliderValue";
|
|
1423
|
+
const jt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1424
|
+
y.Control,
|
|
1425
|
+
{
|
|
1426
|
+
className: r("flex w-full touch-none items-center py-2 select-none", e),
|
|
1427
|
+
...a
|
|
1428
|
+
}
|
|
1429
|
+
);
|
|
1430
|
+
jt.displayName = "SliderControl";
|
|
1431
|
+
const Bt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1432
|
+
y.Track,
|
|
1433
|
+
{
|
|
1434
|
+
className: r("relative h-1.5 w-full rounded-full bg-primary/20", e),
|
|
1435
|
+
...a
|
|
1436
|
+
}
|
|
1437
|
+
);
|
|
1438
|
+
Bt.displayName = "SliderTrack";
|
|
1439
|
+
const Ft = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1440
|
+
y.Indicator,
|
|
1441
|
+
{
|
|
1442
|
+
className: r("rounded-full bg-primary", e),
|
|
1443
|
+
...a
|
|
1444
|
+
}
|
|
1445
|
+
);
|
|
1446
|
+
Ft.displayName = "SliderIndicator";
|
|
1447
|
+
const Zt = ({ className: e, ...a }) => /* @__PURE__ */ t(
|
|
1448
|
+
y.Thumb,
|
|
1449
|
+
{
|
|
1450
|
+
className: r(
|
|
1451
|
+
"size-4 rounded-full bg-background",
|
|
1452
|
+
"outline",
|
|
1453
|
+
"shadow-sm",
|
|
1454
|
+
"transition-[box-shadow,outline-color] duration-150",
|
|
1455
|
+
"hover:outline-primary/50",
|
|
1456
|
+
"focus-visible:outline-2 focus-visible:outline-primary",
|
|
1457
|
+
"data-dragging:outline-2 data-dragging:outline-primary",
|
|
1458
|
+
e
|
|
1459
|
+
),
|
|
1460
|
+
...a
|
|
1461
|
+
}
|
|
1462
|
+
);
|
|
1463
|
+
Zt.displayName = "SliderThumb";
|
|
1412
1464
|
export {
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1465
|
+
Ke as AccordionHeader,
|
|
1466
|
+
Je as AccordionItem,
|
|
1467
|
+
Ue as AccordionPanel,
|
|
1468
|
+
Ee as AccordionRoot,
|
|
1469
|
+
Qe as AccordionTrigger,
|
|
1470
|
+
br as AlertDialog,
|
|
1471
|
+
Q as AlertDialogBackdrop,
|
|
1472
|
+
ae as AlertDialogClose,
|
|
1473
|
+
ee as AlertDialogDescription,
|
|
1474
|
+
X as AlertDialogPopup,
|
|
1475
|
+
K as AlertDialogPortal,
|
|
1476
|
+
E as AlertDialogRoot,
|
|
1477
|
+
Y as AlertDialogTitle,
|
|
1478
|
+
J as AlertDialogTrigger,
|
|
1479
|
+
U as AlertDialogViewport,
|
|
1480
|
+
re as AvatarFallback,
|
|
1481
|
+
te as AvatarImage,
|
|
1482
|
+
V as AvatarRoot,
|
|
1483
|
+
oe as AvatarStack,
|
|
1484
|
+
Z as Button,
|
|
1485
|
+
Ja as CardContent,
|
|
1486
|
+
Ea as CardDescription,
|
|
1487
|
+
Qa as CardFooter,
|
|
1488
|
+
qa as CardHeader,
|
|
1489
|
+
$a as CardMedia,
|
|
1490
|
+
Za as CardRoot,
|
|
1491
|
+
Ka as CardSection,
|
|
1492
|
+
Oa as CardTitle,
|
|
1493
|
+
O as CollapsiblePanel,
|
|
1494
|
+
$ as CollapsibleRoot,
|
|
1495
|
+
q as CollapsibleTrigger,
|
|
1496
|
+
at as ContextMenuArrow,
|
|
1497
|
+
dt as ContextMenuCheckboxItem,
|
|
1498
|
+
ut as ContextMenuCheckboxItemIndicator,
|
|
1499
|
+
mt as ContextMenuCheckboxItemLabel,
|
|
1500
|
+
st as ContextMenuGroup,
|
|
1501
|
+
nt as ContextMenuGroupLabel,
|
|
1502
|
+
rt as ContextMenuItem,
|
|
1503
|
+
et as ContextMenuPopup,
|
|
1504
|
+
Xa as ContextMenuPortal,
|
|
1505
|
+
Ya as ContextMenuPositioner,
|
|
1506
|
+
it as ContextMenuRadioGroup,
|
|
1507
|
+
lt as ContextMenuRadioItem,
|
|
1508
|
+
ct as ContextMenuRadioItemIndicator,
|
|
1509
|
+
pt as ContextMenuRadioItemLabel,
|
|
1510
|
+
Ua as ContextMenuRoot,
|
|
1511
|
+
ot as ContextMenuSeparator,
|
|
1512
|
+
bt as ContextMenuSubmenuRoot,
|
|
1513
|
+
gt as ContextMenuSubmenuTrigger,
|
|
1514
|
+
Wa as ContextMenuTrigger,
|
|
1515
|
+
Pe as DialogBackdrop,
|
|
1516
|
+
Se as DialogClose,
|
|
1517
|
+
De as DialogDescription,
|
|
1466
1518
|
ze as DialogFooter,
|
|
1467
1519
|
Ae as DialogHeader,
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1520
|
+
Re as DialogPopup,
|
|
1521
|
+
ke as DialogPortal,
|
|
1522
|
+
Ce as DialogRoot,
|
|
1523
|
+
Te as DialogTitle,
|
|
1524
|
+
Me as DialogTrigger,
|
|
1525
|
+
Ge as DrawerBackdrop,
|
|
1526
|
+
Ze as DrawerClose,
|
|
1527
|
+
qe as DrawerContent,
|
|
1528
|
+
Fe as DrawerDescription,
|
|
1529
|
+
Oe as DrawerFooter,
|
|
1530
|
+
$e as DrawerHeader,
|
|
1531
|
+
je as DrawerPopup,
|
|
1532
|
+
He as DrawerPortal,
|
|
1533
|
+
Ve as DrawerRoot,
|
|
1534
|
+
Be as DrawerTitle,
|
|
1483
1535
|
Le as DrawerTrigger,
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1536
|
+
ia as MenuArrow,
|
|
1537
|
+
ba as MenuCheckboxItem,
|
|
1538
|
+
ya as MenuCheckboxItemIndicator,
|
|
1539
|
+
Na as MenuCheckboxItemLabel,
|
|
1540
|
+
ua as MenuGroup,
|
|
1541
|
+
ma as MenuGroupLabel,
|
|
1542
|
+
da as MenuItem,
|
|
1543
|
+
na as MenuPopup,
|
|
1544
|
+
oa as MenuPortal,
|
|
1545
|
+
sa as MenuPositioner,
|
|
1546
|
+
pa as MenuRadioGroup,
|
|
1547
|
+
ga as MenuRadioItem,
|
|
1548
|
+
fa as MenuRadioItemIndicator,
|
|
1549
|
+
xa as MenuRadioItemLabel,
|
|
1550
|
+
ta as MenuRoot,
|
|
1551
|
+
ca as MenuSeparator,
|
|
1552
|
+
va as MenuSubmenuRoot,
|
|
1553
|
+
ha as MenuSubmenuTrigger,
|
|
1554
|
+
ra as MenuTrigger,
|
|
1555
|
+
wt as MenubarArrow,
|
|
1556
|
+
Dt as MenubarCheckboxItem,
|
|
1505
1557
|
At as MenubarCheckboxItemIndicator,
|
|
1506
1558
|
zt as MenubarCheckboxItemLabel,
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1559
|
+
Pt as MenubarGroup,
|
|
1560
|
+
It as MenubarGroupLabel,
|
|
1561
|
+
Mt as MenubarItem,
|
|
1562
|
+
yt as MenubarMenu,
|
|
1563
|
+
vt as MenubarPopup,
|
|
1564
|
+
xt as MenubarPortal,
|
|
1565
|
+
ht as MenubarPositioner,
|
|
1566
|
+
Rt as MenubarRadioGroup,
|
|
1567
|
+
Tt as MenubarRadioItem,
|
|
1568
|
+
St as MenubarRadioItemIndicator,
|
|
1569
|
+
Vt as MenubarRadioItemLabel,
|
|
1570
|
+
ft as MenubarRoot,
|
|
1571
|
+
kt as MenubarSeparator,
|
|
1572
|
+
Ht as MenubarSubmenuRoot,
|
|
1521
1573
|
Lt as MenubarSubmenuTrigger,
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1574
|
+
Nt as MenubarTrigger,
|
|
1575
|
+
Ye as MeterIndicator,
|
|
1576
|
+
aa as MeterLabel,
|
|
1577
|
+
We as MeterRoot,
|
|
1578
|
+
Xe as MeterTrack,
|
|
1579
|
+
ea as MeterValue,
|
|
1580
|
+
Ra as PopoverArrow,
|
|
1581
|
+
ka as PopoverBackdrop,
|
|
1530
1582
|
Aa as PopoverClose,
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1583
|
+
Sa as PopoverDescription,
|
|
1584
|
+
Ia as PopoverPopup,
|
|
1585
|
+
Ma as PopoverPortal,
|
|
1586
|
+
Pa as PopoverPositioner,
|
|
1587
|
+
wa as PopoverRoot,
|
|
1588
|
+
Da as PopoverTitle,
|
|
1589
|
+
Ca as PopoverTrigger,
|
|
1538
1590
|
za as PopoverViewport,
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1591
|
+
Ha as ProgressIndicator,
|
|
1592
|
+
_a as ProgressLabel,
|
|
1593
|
+
Va as ProgressRoot,
|
|
1542
1594
|
La as ProgressTrack,
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
pe as
|
|
1559
|
-
|
|
1560
|
-
|
|
1595
|
+
Ga as ProgressValue,
|
|
1596
|
+
ie as ScrollAreaContent,
|
|
1597
|
+
ce as ScrollAreaCorner,
|
|
1598
|
+
se as ScrollAreaRoot,
|
|
1599
|
+
le as ScrollAreaScrollbar,
|
|
1600
|
+
de as ScrollAreaThumb,
|
|
1601
|
+
ne as ScrollAreaViewport,
|
|
1602
|
+
ue as Separator,
|
|
1603
|
+
jt as SliderControl,
|
|
1604
|
+
Ft as SliderIndicator,
|
|
1605
|
+
Gt as SliderRoot,
|
|
1606
|
+
Zt as SliderThumb,
|
|
1607
|
+
Bt as SliderTrack,
|
|
1608
|
+
_t as SliderValue,
|
|
1609
|
+
me as SwitchRoot,
|
|
1610
|
+
pe as SwitchThumb,
|
|
1611
|
+
ve as TabsIndicator,
|
|
1612
|
+
ye as TabsList,
|
|
1613
|
+
we as TabsPanel,
|
|
1614
|
+
be as TabsRoot,
|
|
1615
|
+
xe as TabsTab,
|
|
1616
|
+
ge as Toggle,
|
|
1617
|
+
Ba as ToggleGroupItem,
|
|
1618
|
+
ja as ToggleGroupRoot
|
|
1561
1619
|
};
|