florixui 1.5.0 → 1.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -0
- package/dist/components/custom/alert-card.d.ts +38 -0
- package/dist/components/ui/badge.d.ts +1 -1
- package/dist/components/ui/card.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +851 -742
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -2,25 +2,25 @@ import { clsx as e } from "clsx";
|
|
|
2
2
|
import { twMerge as t } from "tailwind-merge";
|
|
3
3
|
import * as n from "react";
|
|
4
4
|
import { createContext as r, forwardRef as i, useCallback as a, useContext as o, useEffect as s, useId as c, useImperativeHandle as l, useMemo as u, useRef as d, useState as f } from "react";
|
|
5
|
-
import { AlertCircleIcon as p, AlertTriangle as m, ArrowLeftIcon as h, Calendar as g, Check as _, CheckIcon as v, ChevronDown as y, ChevronDownIcon as b, ChevronLeftIcon as x, ChevronRightIcon as S, ChevronUpIcon as C, ChevronsLeftIcon as w, ChevronsRightIcon as T, CircleCheckIcon as E, CircleDotIcon as D,
|
|
5
|
+
import { AlertCircleIcon as p, AlertTriangle as m, ArrowLeftIcon as h, Calendar as g, Check as _, CheckIcon as v, ChevronDown as y, ChevronDownIcon as b, ChevronLeftIcon as x, ChevronRightIcon as S, ChevronUpIcon as C, ChevronsLeftIcon as w, ChevronsRightIcon as T, CircleCheckIcon as E, CircleDotIcon as D, CircleXIcon as O, Clock as k, Eye as A, EyeOff as ee, FileArchiveIcon as j, FileIcon as M, FileSpreadsheetIcon as N, FileTextIcon as P, HeadphonesIcon as F, HomeIcon as I, ImageIcon as L, ImageUpIcon as te, InboxIcon as R, InfoIcon as ne, Layers as z, Loader2 as re, Loader2Icon as B, LoaderCircleIcon as ie, Locate as ae, Maximize as V, Minus as oe, MoreVertical as H, OctagonXIcon as se, Plus as ce, PlusCircleIcon as le, PlusIcon as ue, RefreshCwIcon as de, SearchIcon as fe, Trash2Icon as pe, TrendingDownIcon as me, TrendingUpIcon as he, TriangleAlertIcon as ge, UploadIcon as _e, VideoIcon as ve, X as ye, XIcon as U } from "lucide-react";
|
|
6
6
|
import { cva as W } from "class-variance-authority";
|
|
7
|
-
import { AlertDialog as G, Checkbox as
|
|
7
|
+
import { AlertDialog as G, Checkbox as be, Dialog as K, DropdownMenu as q, HoverCard as xe, Label as Se, Popover as Ce, Progress as we, RadioGroup as Te, Select as J, Separator as Ee, Slider as De, Slot as Oe, Switch as ke, Tabs as Ae, Toggle as je, ToggleGroup as Me, Tooltip as Ne } from "radix-ui";
|
|
8
8
|
import { Fragment as Y, jsx as X, jsxs as Z } from "react/jsx-runtime";
|
|
9
|
-
import { Command as
|
|
10
|
-
import * as
|
|
11
|
-
import { Area as
|
|
12
|
-
import { DayPicker as
|
|
13
|
-
import
|
|
14
|
-
import { createPortal as
|
|
15
|
-
import { useTheme as
|
|
16
|
-
import { Toaster as
|
|
9
|
+
import { Command as Pe } from "cmdk";
|
|
10
|
+
import * as Fe from "recharts";
|
|
11
|
+
import { Area as Ie, AreaChart as Le, ResponsiveContainer as Re } from "recharts";
|
|
12
|
+
import { DayPicker as ze, getDefaultClassNames as Be } from "react-day-picker";
|
|
13
|
+
import Ve from "maplibre-gl";
|
|
14
|
+
import { createPortal as He } from "react-dom";
|
|
15
|
+
import { useTheme as Ue } from "next-themes";
|
|
16
|
+
import { Toaster as We } from "sonner";
|
|
17
17
|
//#region src/lib/utils.ts
|
|
18
18
|
function Q(...n) {
|
|
19
19
|
return t(e(n));
|
|
20
20
|
}
|
|
21
21
|
//#endregion
|
|
22
22
|
//#region src/lib/use-file-upload.ts
|
|
23
|
-
var
|
|
23
|
+
var Ge = (e, t = 2) => {
|
|
24
24
|
if (e === 0) return "0 Bytes";
|
|
25
25
|
let n = 1024, r = t < 0 ? 0 : t, i = [
|
|
26
26
|
"Bytes",
|
|
@@ -34,7 +34,7 @@ var We = (e, t = 2) => {
|
|
|
34
34
|
"YB"
|
|
35
35
|
], a = Math.floor(Math.log(e) / Math.log(n));
|
|
36
36
|
return Number.parseFloat((e / n ** a).toFixed(r)) + i[a];
|
|
37
|
-
},
|
|
37
|
+
}, Ke = (e = {}) => {
|
|
38
38
|
let { maxFiles: t = Infinity, maxSize: n = Infinity, accept: r = "*", multiple: i = !1, initialFiles: o = [], onFilesChange: s, onFilesAdded: c } = e, [l, u] = f({
|
|
39
39
|
errors: [],
|
|
40
40
|
files: o.map((e) => ({
|
|
@@ -44,7 +44,7 @@ var We = (e, t = 2) => {
|
|
|
44
44
|
})),
|
|
45
45
|
isDragging: !1
|
|
46
46
|
}), p = d(null), m = a((e) => {
|
|
47
|
-
if (e.size > n) return `File "${e.name}" exceeds the maximum size of ${
|
|
47
|
+
if (e.size > n) return `File "${e.name}" exceeds the maximum size of ${Ge(n)}.`;
|
|
48
48
|
if (r !== "*") {
|
|
49
49
|
let t = r.split(",").map((e) => e.trim()), n = e instanceof File ? e.type || "" : e.type, i = `.${e.name.split(".").pop()}`;
|
|
50
50
|
if (!t.some((e) => {
|
|
@@ -85,7 +85,7 @@ var We = (e, t = 2) => {
|
|
|
85
85
|
for (let e of r) {
|
|
86
86
|
if (i && l.files.some((t) => t.file.name === e.name && t.file.size === e.size)) continue;
|
|
87
87
|
if (e.size > n) {
|
|
88
|
-
a.push(i ? `Some files exceed the maximum size of ${
|
|
88
|
+
a.push(i ? `Some files exceed the maximum size of ${Ge(n)}.` : `File exceeds the maximum size of ${Ge(n)}.`);
|
|
89
89
|
continue;
|
|
90
90
|
}
|
|
91
91
|
let t = m(e);
|
|
@@ -190,8 +190,8 @@ var We = (e, t = 2) => {
|
|
|
190
190
|
};
|
|
191
191
|
//#endregion
|
|
192
192
|
//#region src/components/ui/spinner.tsx
|
|
193
|
-
function
|
|
194
|
-
return /* @__PURE__ */ X(
|
|
193
|
+
function qe({ className: e, ...t }) {
|
|
194
|
+
return /* @__PURE__ */ X(B, {
|
|
195
195
|
role: "status",
|
|
196
196
|
"aria-label": "Loading",
|
|
197
197
|
className: Q("size-4 animate-spin", e),
|
|
@@ -200,7 +200,7 @@ function Ke({ className: e, ...t }) {
|
|
|
200
200
|
}
|
|
201
201
|
//#endregion
|
|
202
202
|
//#region src/components/ui/button.tsx
|
|
203
|
-
var
|
|
203
|
+
var Je = W("group/button inline-flex shrink-0 items-center justify-center rounded-lg border border-transparent bg-clip-padding text-sm font-medium whitespace-nowrap transition-all outline-none select-none focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 active:not-aria-[haspopup]:translate-y-px disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", {
|
|
204
204
|
variants: {
|
|
205
205
|
variant: {
|
|
206
206
|
default: "bg-primary text-primary-foreground hover:bg-primary/80",
|
|
@@ -227,8 +227,8 @@ var qe = W("group/button inline-flex shrink-0 items-center justify-center rounde
|
|
|
227
227
|
}
|
|
228
228
|
});
|
|
229
229
|
function $({ className: e, variant: t = "default", size: n = "default", asChild: r = !1, loading: i = !1, startItem: a, endItem: o, disabled: s, children: c, ...l }) {
|
|
230
|
-
let u = r ?
|
|
231
|
-
i ? /* @__PURE__ */ X(
|
|
230
|
+
let u = r ? Oe.Root : "button", d = r ? c : /* @__PURE__ */ Z(Y, { children: [
|
|
231
|
+
i ? /* @__PURE__ */ X(qe, {}) : a,
|
|
232
232
|
c,
|
|
233
233
|
o
|
|
234
234
|
] });
|
|
@@ -240,7 +240,7 @@ function $({ className: e, variant: t = "default", size: n = "default", asChild:
|
|
|
240
240
|
disabled: s ?? (u === "button" ? i : void 0),
|
|
241
241
|
"aria-disabled": i || void 0,
|
|
242
242
|
"aria-busy": i || void 0,
|
|
243
|
-
className: Q(
|
|
243
|
+
className: Q(Je({
|
|
244
244
|
variant: t,
|
|
245
245
|
size: n,
|
|
246
246
|
className: e
|
|
@@ -251,25 +251,25 @@ function $({ className: e, variant: t = "default", size: n = "default", asChild:
|
|
|
251
251
|
}
|
|
252
252
|
//#endregion
|
|
253
253
|
//#region src/components/ui/dropdown-menu.tsx
|
|
254
|
-
function
|
|
254
|
+
function Ye({ ...e }) {
|
|
255
255
|
return /* @__PURE__ */ X(q.Root, {
|
|
256
256
|
"data-slot": "dropdown-menu",
|
|
257
257
|
...e
|
|
258
258
|
});
|
|
259
259
|
}
|
|
260
|
-
function
|
|
260
|
+
function Xe({ ...e }) {
|
|
261
261
|
return /* @__PURE__ */ X(q.Portal, {
|
|
262
262
|
"data-slot": "dropdown-menu-portal",
|
|
263
263
|
...e
|
|
264
264
|
});
|
|
265
265
|
}
|
|
266
|
-
function
|
|
266
|
+
function Ze({ ...e }) {
|
|
267
267
|
return /* @__PURE__ */ X(q.Trigger, {
|
|
268
268
|
"data-slot": "dropdown-menu-trigger",
|
|
269
269
|
...e
|
|
270
270
|
});
|
|
271
271
|
}
|
|
272
|
-
function
|
|
272
|
+
function Qe({ className: e, align: t = "start", sideOffset: n = 4, ...r }) {
|
|
273
273
|
return /* @__PURE__ */ X(q.Portal, { children: /* @__PURE__ */ X(q.Content, {
|
|
274
274
|
"data-slot": "dropdown-menu-content",
|
|
275
275
|
sideOffset: n,
|
|
@@ -278,13 +278,13 @@ function Ze({ className: e, align: t = "start", sideOffset: n = 4, ...r }) {
|
|
|
278
278
|
...r
|
|
279
279
|
}) });
|
|
280
280
|
}
|
|
281
|
-
function
|
|
281
|
+
function $e({ ...e }) {
|
|
282
282
|
return /* @__PURE__ */ X(q.Group, {
|
|
283
283
|
"data-slot": "dropdown-menu-group",
|
|
284
284
|
...e
|
|
285
285
|
});
|
|
286
286
|
}
|
|
287
|
-
function
|
|
287
|
+
function et({ className: e, inset: t, variant: n = "default", ...r }) {
|
|
288
288
|
return /* @__PURE__ */ X(q.Item, {
|
|
289
289
|
"data-slot": "dropdown-menu-item",
|
|
290
290
|
"data-inset": t,
|
|
@@ -293,7 +293,7 @@ function $e({ className: e, inset: t, variant: n = "default", ...r }) {
|
|
|
293
293
|
...r
|
|
294
294
|
});
|
|
295
295
|
}
|
|
296
|
-
function
|
|
296
|
+
function tt({ className: e, children: t, checked: n, inset: r, ...i }) {
|
|
297
297
|
return /* @__PURE__ */ Z(q.CheckboxItem, {
|
|
298
298
|
"data-slot": "dropdown-menu-checkbox-item",
|
|
299
299
|
"data-inset": r,
|
|
@@ -307,13 +307,13 @@ function et({ className: e, children: t, checked: n, inset: r, ...i }) {
|
|
|
307
307
|
}), t]
|
|
308
308
|
});
|
|
309
309
|
}
|
|
310
|
-
function
|
|
310
|
+
function nt({ ...e }) {
|
|
311
311
|
return /* @__PURE__ */ X(q.RadioGroup, {
|
|
312
312
|
"data-slot": "dropdown-menu-radio-group",
|
|
313
313
|
...e
|
|
314
314
|
});
|
|
315
315
|
}
|
|
316
|
-
function
|
|
316
|
+
function rt({ className: e, children: t, inset: n, ...r }) {
|
|
317
317
|
return /* @__PURE__ */ Z(q.RadioItem, {
|
|
318
318
|
"data-slot": "dropdown-menu-radio-item",
|
|
319
319
|
"data-inset": n,
|
|
@@ -326,7 +326,7 @@ function nt({ className: e, children: t, inset: n, ...r }) {
|
|
|
326
326
|
}), t]
|
|
327
327
|
});
|
|
328
328
|
}
|
|
329
|
-
function
|
|
329
|
+
function it({ className: e, inset: t, ...n }) {
|
|
330
330
|
return /* @__PURE__ */ X(q.Label, {
|
|
331
331
|
"data-slot": "dropdown-menu-label",
|
|
332
332
|
"data-inset": t,
|
|
@@ -334,27 +334,27 @@ function rt({ className: e, inset: t, ...n }) {
|
|
|
334
334
|
...n
|
|
335
335
|
});
|
|
336
336
|
}
|
|
337
|
-
function
|
|
337
|
+
function at({ className: e, ...t }) {
|
|
338
338
|
return /* @__PURE__ */ X(q.Separator, {
|
|
339
339
|
"data-slot": "dropdown-menu-separator",
|
|
340
340
|
className: Q("-mx-1 my-1 h-px bg-border", e),
|
|
341
341
|
...t
|
|
342
342
|
});
|
|
343
343
|
}
|
|
344
|
-
function
|
|
344
|
+
function ot({ className: e, ...t }) {
|
|
345
345
|
return /* @__PURE__ */ X("span", {
|
|
346
346
|
"data-slot": "dropdown-menu-shortcut",
|
|
347
347
|
className: Q("ml-auto text-xs tracking-widest text-muted-foreground group-focus/dropdown-menu-item:text-accent-foreground", e),
|
|
348
348
|
...t
|
|
349
349
|
});
|
|
350
350
|
}
|
|
351
|
-
function
|
|
351
|
+
function st({ ...e }) {
|
|
352
352
|
return /* @__PURE__ */ X(q.Sub, {
|
|
353
353
|
"data-slot": "dropdown-menu-sub",
|
|
354
354
|
...e
|
|
355
355
|
});
|
|
356
356
|
}
|
|
357
|
-
function
|
|
357
|
+
function ct({ className: e, inset: t, children: n, ...r }) {
|
|
358
358
|
return /* @__PURE__ */ Z(q.SubTrigger, {
|
|
359
359
|
"data-slot": "dropdown-menu-sub-trigger",
|
|
360
360
|
"data-inset": t,
|
|
@@ -363,7 +363,7 @@ function st({ className: e, inset: t, children: n, ...r }) {
|
|
|
363
363
|
children: [n, /* @__PURE__ */ X(S, { className: "ml-auto" })]
|
|
364
364
|
});
|
|
365
365
|
}
|
|
366
|
-
function
|
|
366
|
+
function lt({ className: e, ...t }) {
|
|
367
367
|
return /* @__PURE__ */ X(q.SubContent, {
|
|
368
368
|
"data-slot": "dropdown-menu-sub-content",
|
|
369
369
|
className: Q("z-50 min-w-[96px] origin-(--radix-dropdown-menu-content-transform-origin) overflow-hidden rounded-lg bg-popover p-1 text-popover-foreground shadow-lg ring-1 ring-foreground/10 duration-100 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95", e),
|
|
@@ -372,42 +372,42 @@ function ct({ className: e, ...t }) {
|
|
|
372
372
|
}
|
|
373
373
|
//#endregion
|
|
374
374
|
//#region src/components/custom/actions-menu.tsx
|
|
375
|
-
var
|
|
376
|
-
function
|
|
375
|
+
var ut = 16;
|
|
376
|
+
function dt(e) {
|
|
377
377
|
return e.type === void 0 || e.type === "action";
|
|
378
378
|
}
|
|
379
|
-
function
|
|
380
|
-
return /* @__PURE__ */ Z(
|
|
379
|
+
function ft({ items: e, trigger: t, triggerIcon: n = H, triggerLabel: r = "Open menu", width: i = "10rem", align: a = "end", className: o, open: s, onOpenChange: c }) {
|
|
380
|
+
return /* @__PURE__ */ Z(Ye, {
|
|
381
381
|
open: s,
|
|
382
382
|
onOpenChange: c,
|
|
383
|
-
children: [/* @__PURE__ */ X(
|
|
383
|
+
children: [/* @__PURE__ */ X(Ze, {
|
|
384
384
|
asChild: !0,
|
|
385
385
|
children: t ?? /* @__PURE__ */ Z($, {
|
|
386
386
|
variant: "ghost",
|
|
387
387
|
size: "icon",
|
|
388
388
|
className: Q("size-8", o),
|
|
389
389
|
"aria-label": r,
|
|
390
|
-
children: [/* @__PURE__ */ X(n, { size:
|
|
390
|
+
children: [/* @__PURE__ */ X(n, { size: ut }), /* @__PURE__ */ X("span", {
|
|
391
391
|
className: "sr-only",
|
|
392
392
|
children: r
|
|
393
393
|
})]
|
|
394
394
|
})
|
|
395
|
-
}), /* @__PURE__ */ X(
|
|
395
|
+
}), /* @__PURE__ */ X(Qe, {
|
|
396
396
|
align: a,
|
|
397
397
|
style: { width: i },
|
|
398
398
|
children: e.map((e, t) => {
|
|
399
|
-
if (e.type === "separator") return /* @__PURE__ */ X(
|
|
400
|
-
if (e.type === "label") return /* @__PURE__ */ X(
|
|
401
|
-
if (!
|
|
399
|
+
if (e.type === "separator") return /* @__PURE__ */ X(at, {}, `sep-${t}`);
|
|
400
|
+
if (e.type === "label") return /* @__PURE__ */ X(it, { children: e.label }, `label-${t}`);
|
|
401
|
+
if (!dt(e)) return null;
|
|
402
402
|
let n = e.icon;
|
|
403
|
-
return /* @__PURE__ */ Z(
|
|
403
|
+
return /* @__PURE__ */ Z(et, {
|
|
404
404
|
onSelect: e.onSelect,
|
|
405
405
|
disabled: e.disabled,
|
|
406
406
|
variant: e.destructive ? "destructive" : "default",
|
|
407
407
|
children: [
|
|
408
|
-
n && /* @__PURE__ */ X(n, { size:
|
|
408
|
+
n && /* @__PURE__ */ X(n, { size: ut }),
|
|
409
409
|
e.label,
|
|
410
|
-
e.shortcut && /* @__PURE__ */ X(
|
|
410
|
+
e.shortcut && /* @__PURE__ */ X(ot, { children: e.shortcut })
|
|
411
411
|
]
|
|
412
412
|
}, t);
|
|
413
413
|
})
|
|
@@ -416,8 +416,8 @@ function dt({ items: e, trigger: t, triggerIcon: n = ae, triggerLabel: r = "Open
|
|
|
416
416
|
}
|
|
417
417
|
//#endregion
|
|
418
418
|
//#region src/components/ui/label.tsx
|
|
419
|
-
function
|
|
420
|
-
return /* @__PURE__ */ X(
|
|
419
|
+
function pt({ className: e, ...t }) {
|
|
420
|
+
return /* @__PURE__ */ X(Se.Root, {
|
|
421
421
|
"data-slot": "label",
|
|
422
422
|
className: Q("flex items-center gap-2 text-sm leading-none font-medium select-none group-data-[disabled=true]:pointer-events-none group-data-[disabled=true]:opacity-50 peer-disabled:cursor-not-allowed peer-disabled:opacity-50", e),
|
|
423
423
|
...t
|
|
@@ -425,8 +425,8 @@ function ft({ className: e, ...t }) {
|
|
|
425
425
|
}
|
|
426
426
|
//#endregion
|
|
427
427
|
//#region src/components/ui/separator.tsx
|
|
428
|
-
function
|
|
429
|
-
return /* @__PURE__ */ X(
|
|
428
|
+
function mt({ className: e, orientation: t = "horizontal", decorative: n = !0, ...r }) {
|
|
429
|
+
return /* @__PURE__ */ X(Ee.Root, {
|
|
430
430
|
"data-slot": "separator",
|
|
431
431
|
decorative: n,
|
|
432
432
|
orientation: t,
|
|
@@ -436,14 +436,14 @@ function pt({ className: e, orientation: t = "horizontal", decorative: n = !0, .
|
|
|
436
436
|
}
|
|
437
437
|
//#endregion
|
|
438
438
|
//#region src/components/ui/field.tsx
|
|
439
|
-
function
|
|
439
|
+
function ht({ className: e, ...t }) {
|
|
440
440
|
return /* @__PURE__ */ X("fieldset", {
|
|
441
441
|
"data-slot": "field-set",
|
|
442
442
|
className: Q("flex flex-col gap-4 has-[>[data-slot=checkbox-group]]:gap-3 has-[>[data-slot=radio-group]]:gap-3", e),
|
|
443
443
|
...t
|
|
444
444
|
});
|
|
445
445
|
}
|
|
446
|
-
function
|
|
446
|
+
function gt({ className: e, variant: t = "legend", ...n }) {
|
|
447
447
|
return /* @__PURE__ */ X("legend", {
|
|
448
448
|
"data-slot": "field-legend",
|
|
449
449
|
"data-variant": t,
|
|
@@ -451,14 +451,14 @@ function ht({ className: e, variant: t = "legend", ...n }) {
|
|
|
451
451
|
...n
|
|
452
452
|
});
|
|
453
453
|
}
|
|
454
|
-
function
|
|
454
|
+
function _t({ className: e, ...t }) {
|
|
455
455
|
return /* @__PURE__ */ X("div", {
|
|
456
456
|
"data-slot": "field-group",
|
|
457
457
|
className: Q("group/field-group @container/field-group flex w-full flex-col gap-5 data-[slot=checkbox-group]:gap-3 *:data-[slot=field-group]:gap-4", e),
|
|
458
458
|
...t
|
|
459
459
|
});
|
|
460
460
|
}
|
|
461
|
-
var
|
|
461
|
+
var vt = W("group/field flex w-full gap-2 data-[invalid=true]:text-destructive", {
|
|
462
462
|
variants: { orientation: {
|
|
463
463
|
vertical: "flex-col *:w-full [&>.sr-only]:w-auto",
|
|
464
464
|
horizontal: "flex-row items-center has-[>[data-slot=field-content]]:items-start *:data-[slot=field-label]:flex-auto has-[>[data-slot=field-content]]:[&>[role=checkbox],[role=radio]]:mt-px",
|
|
@@ -466,57 +466,57 @@ var _t = W("group/field flex w-full gap-2 data-[invalid=true]:text-destructive",
|
|
|
466
466
|
} },
|
|
467
467
|
defaultVariants: { orientation: "vertical" }
|
|
468
468
|
});
|
|
469
|
-
function
|
|
469
|
+
function yt({ className: e, orientation: t = "vertical", ...n }) {
|
|
470
470
|
return /* @__PURE__ */ X("div", {
|
|
471
471
|
role: "group",
|
|
472
472
|
"data-slot": "field",
|
|
473
473
|
"data-orientation": t,
|
|
474
|
-
className: Q(
|
|
474
|
+
className: Q(vt({ orientation: t }), e),
|
|
475
475
|
...n
|
|
476
476
|
});
|
|
477
477
|
}
|
|
478
|
-
function
|
|
478
|
+
function bt({ className: e, ...t }) {
|
|
479
479
|
return /* @__PURE__ */ X("div", {
|
|
480
480
|
"data-slot": "field-content",
|
|
481
481
|
className: Q("group/field-content flex flex-1 flex-col gap-0.5 leading-snug", e),
|
|
482
482
|
...t
|
|
483
483
|
});
|
|
484
484
|
}
|
|
485
|
-
function
|
|
486
|
-
return /* @__PURE__ */ X(
|
|
485
|
+
function xt({ className: e, ...t }) {
|
|
486
|
+
return /* @__PURE__ */ X(pt, {
|
|
487
487
|
"data-slot": "field-label",
|
|
488
488
|
className: Q("group/field-label peer/field-label flex w-fit gap-2 leading-snug group-data-[disabled=true]/field:opacity-50 has-data-checked:border-primary/30 has-data-checked:bg-primary/5 has-[>[data-slot=field]]:rounded-lg has-[>[data-slot=field]]:border *:data-[slot=field]:p-2.5 dark:has-data-checked:border-primary/20 dark:has-data-checked:bg-primary/10", "has-[>[data-slot=field]]:w-full has-[>[data-slot=field]]:flex-col", e),
|
|
489
489
|
...t
|
|
490
490
|
});
|
|
491
491
|
}
|
|
492
|
-
function
|
|
492
|
+
function St({ className: e, ...t }) {
|
|
493
493
|
return /* @__PURE__ */ X("div", {
|
|
494
494
|
"data-slot": "field-label",
|
|
495
495
|
className: Q("flex w-fit items-center gap-2 text-sm font-medium group-data-[disabled=true]/field:opacity-50", e),
|
|
496
496
|
...t
|
|
497
497
|
});
|
|
498
498
|
}
|
|
499
|
-
function
|
|
499
|
+
function Ct({ className: e, ...t }) {
|
|
500
500
|
return /* @__PURE__ */ X("p", {
|
|
501
501
|
"data-slot": "field-description",
|
|
502
502
|
className: Q("text-left text-sm leading-normal font-normal text-muted-foreground group-has-data-horizontal/field:text-balance [[data-variant=legend]+&]:-mt-1.5", "last:mt-0 nth-last-2:-mt-1", "[&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-primary", e),
|
|
503
503
|
...t
|
|
504
504
|
});
|
|
505
505
|
}
|
|
506
|
-
function
|
|
506
|
+
function wt({ children: e, className: t, ...n }) {
|
|
507
507
|
return /* @__PURE__ */ Z("div", {
|
|
508
508
|
"data-slot": "field-separator",
|
|
509
509
|
"data-content": !!e,
|
|
510
510
|
className: Q("relative -my-2 h-5 text-sm group-data-[variant=outline]/field-group:-mb-2", t),
|
|
511
511
|
...n,
|
|
512
|
-
children: [/* @__PURE__ */ X(
|
|
512
|
+
children: [/* @__PURE__ */ X(mt, { className: "absolute inset-0 top-1/2" }), e && /* @__PURE__ */ X("span", {
|
|
513
513
|
className: "relative mx-auto block w-fit bg-background px-2 text-muted-foreground",
|
|
514
514
|
"data-slot": "field-separator-content",
|
|
515
515
|
children: e
|
|
516
516
|
})]
|
|
517
517
|
});
|
|
518
518
|
}
|
|
519
|
-
function
|
|
519
|
+
function Tt({ className: e, children: t, errors: n, ...r }) {
|
|
520
520
|
let i = u(() => {
|
|
521
521
|
if (t) return t;
|
|
522
522
|
if (!n?.length) return null;
|
|
@@ -536,7 +536,7 @@ function wt({ className: e, children: t, errors: n, ...r }) {
|
|
|
536
536
|
}
|
|
537
537
|
//#endregion
|
|
538
538
|
//#region src/components/custom/advanced-input.tsx
|
|
539
|
-
function
|
|
539
|
+
function Et({ error: e, errorMessage: t, helperText: n, errorId: r, helperId: i }) {
|
|
540
540
|
return !t && !n ? null : /* @__PURE__ */ X("div", {
|
|
541
541
|
className: "mt-1.5 min-h-5",
|
|
542
542
|
children: e && t ? /* @__PURE__ */ X("p", {
|
|
@@ -550,11 +550,11 @@ function Tt({ error: e, errorMessage: t, helperText: n, errorId: r, helperId: i
|
|
|
550
550
|
}) : null
|
|
551
551
|
});
|
|
552
552
|
}
|
|
553
|
-
var
|
|
554
|
-
let { className: r, wrapperClassName: i, label: a, description: o, errorMessage: s, helperText: c, required: l = !1, size: u = "default", variant: d = "default", leftIcon: f, rightIcon: p, disabled: m, startItem: h, endItem: g, loading: _ = !1, as: v = "input", id: y, error: b, ...x } = e, S = b ?? !!s, C = n.useId(), w = y || C, [T, E] = n.useState(!1), D = `${w}-error`, O = `${w}-helper`,
|
|
553
|
+
var Dt = n.forwardRef(function(e, t) {
|
|
554
|
+
let { className: r, wrapperClassName: i, label: a, description: o, errorMessage: s, helperText: c, required: l = !1, size: u = "default", variant: d = "default", leftIcon: f, rightIcon: p, disabled: m, startItem: h, endItem: g, loading: _ = !1, as: v = "input", id: y, error: b, ...x } = e, S = b ?? !!s, C = n.useId(), w = y || C, [T, E] = n.useState(!1), D = `${w}-error`, O = `${w}-helper`, k = `${w}-description`, j = [
|
|
555
555
|
S && s ? D : null,
|
|
556
556
|
!S && c ? O : null,
|
|
557
|
-
o ?
|
|
557
|
+
o ? k : null
|
|
558
558
|
].filter(Boolean).join(" ") || void 0, M = d === "alt" ? "bg-muted" : "bg-transparent dark:bg-input/30", N = l ? /* @__PURE__ */ X("span", {
|
|
559
559
|
"aria-hidden": !0,
|
|
560
560
|
className: "ml-0.5 text-destructive",
|
|
@@ -565,7 +565,7 @@ var Et = n.forwardRef(function(e, t) {
|
|
|
565
565
|
return /* @__PURE__ */ Z("div", {
|
|
566
566
|
className: Q("space-y-1.5", i),
|
|
567
567
|
children: [
|
|
568
|
-
a && /* @__PURE__ */ Z(
|
|
568
|
+
a && /* @__PURE__ */ Z(xt, {
|
|
569
569
|
htmlFor: w,
|
|
570
570
|
className: Q(m && "text-muted-foreground"),
|
|
571
571
|
children: [a, N]
|
|
@@ -579,15 +579,15 @@ var Et = n.forwardRef(function(e, t) {
|
|
|
579
579
|
className: Q("flex min-h-20 w-full rounded-lg border border-input px-3 py-2 text-base outline-none transition-colors placeholder:text-muted-foreground md:text-sm", M, "focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50", "disabled:pointer-events-none disabled:cursor-not-allowed disabled:opacity-50", "aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40", r),
|
|
580
580
|
...e
|
|
581
581
|
}),
|
|
582
|
-
/* @__PURE__ */ X(
|
|
582
|
+
/* @__PURE__ */ X(Et, {
|
|
583
583
|
error: S,
|
|
584
584
|
errorMessage: s,
|
|
585
585
|
helperText: c,
|
|
586
586
|
errorId: D,
|
|
587
587
|
helperId: O
|
|
588
588
|
}),
|
|
589
|
-
o && /* @__PURE__ */ X(
|
|
590
|
-
id:
|
|
589
|
+
o && /* @__PURE__ */ X(Ct, {
|
|
590
|
+
id: k,
|
|
591
591
|
children: o
|
|
592
592
|
})
|
|
593
593
|
]
|
|
@@ -599,10 +599,10 @@ var Et = n.forwardRef(function(e, t) {
|
|
|
599
599
|
"aria-label": T ? "Hide password" : "Show password",
|
|
600
600
|
className: "cursor-pointer text-muted-foreground transition-colors hover:text-foreground",
|
|
601
601
|
tabIndex: -1,
|
|
602
|
-
children: X(T ?
|
|
602
|
+
children: X(T ? ee : A, { className: "size-4" })
|
|
603
603
|
}) : null, z = _ ? /* @__PURE__ */ X(re, { className: "size-4 animate-spin text-muted-foreground" }) : f, B = te ? ne : p, ie = (e) => {
|
|
604
604
|
R === "number" && e.target.select(), F?.(e);
|
|
605
|
-
},
|
|
605
|
+
}, ae = !!(h || g), V = /* @__PURE__ */ X("input", {
|
|
606
606
|
id: w,
|
|
607
607
|
type: R,
|
|
608
608
|
ref: t,
|
|
@@ -610,18 +610,18 @@ var Et = n.forwardRef(function(e, t) {
|
|
|
610
610
|
"aria-invalid": S,
|
|
611
611
|
"aria-describedby": j,
|
|
612
612
|
onFocus: ie,
|
|
613
|
-
className: Q("w-full min-w-0 bg-transparent text-base text-foreground outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed md:text-sm",
|
|
613
|
+
className: Q("w-full min-w-0 bg-transparent text-base text-foreground outline-none placeholder:text-muted-foreground disabled:cursor-not-allowed md:text-sm", ae ? "h-full border-0 py-1 focus-visible:ring-0" : Q("rounded-lg border border-input px-3 py-1 transition-colors", M, u === "default" ? "h-9" : "h-8", "focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50", "disabled:opacity-50", "aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40", z && "pl-9", B && "pr-9"), ae && Q(h ? "pl-0" : "pl-3", g ? "pr-0" : "pr-3"), ae && z && !h && "pl-9", ae && B && !g && "pr-9", r),
|
|
614
614
|
...I
|
|
615
615
|
});
|
|
616
616
|
return /* @__PURE__ */ Z("div", {
|
|
617
617
|
className: Q("space-y-1.5", i),
|
|
618
618
|
children: [
|
|
619
|
-
a && /* @__PURE__ */ Z(
|
|
619
|
+
a && /* @__PURE__ */ Z(xt, {
|
|
620
620
|
htmlFor: w,
|
|
621
621
|
className: Q(m && "text-muted-foreground"),
|
|
622
622
|
children: [a, N]
|
|
623
623
|
}),
|
|
624
|
-
|
|
624
|
+
ae ? /* @__PURE__ */ Z("div", {
|
|
625
625
|
"aria-invalid": S,
|
|
626
626
|
className: Q("flex items-center overflow-hidden rounded-lg border border-input transition-colors", M, u === "default" ? "h-9" : "h-8", "focus-within:border-ring focus-within:ring-3 focus-within:ring-ring/50", "aria-[invalid=true]:border-destructive aria-[invalid=true]:ring-3 aria-[invalid=true]:ring-destructive/20 dark:aria-[invalid=true]:ring-destructive/40", m && "cursor-not-allowed opacity-50"),
|
|
627
627
|
children: [
|
|
@@ -636,7 +636,7 @@ var Et = n.forwardRef(function(e, t) {
|
|
|
636
636
|
className: "pointer-events-none absolute left-3 flex items-center text-muted-foreground [&_svg]:size-4",
|
|
637
637
|
children: z
|
|
638
638
|
}),
|
|
639
|
-
|
|
639
|
+
V,
|
|
640
640
|
B && /* @__PURE__ */ X("div", {
|
|
641
641
|
className: "absolute right-3 z-10 flex items-center",
|
|
642
642
|
children: B
|
|
@@ -655,57 +655,197 @@ var Et = n.forwardRef(function(e, t) {
|
|
|
655
655
|
className: "pointer-events-none absolute left-3 top-1/2 flex -translate-y-1/2 items-center text-muted-foreground [&_svg]:size-4",
|
|
656
656
|
children: z
|
|
657
657
|
}),
|
|
658
|
-
|
|
658
|
+
V,
|
|
659
659
|
B && /* @__PURE__ */ X("div", {
|
|
660
660
|
className: "absolute right-3 top-1/2 z-10 flex -translate-y-1/2 items-center",
|
|
661
661
|
children: B
|
|
662
662
|
})
|
|
663
663
|
]
|
|
664
664
|
}),
|
|
665
|
-
/* @__PURE__ */ X(
|
|
665
|
+
/* @__PURE__ */ X(Et, {
|
|
666
666
|
error: S,
|
|
667
667
|
errorMessage: s,
|
|
668
668
|
helperText: c,
|
|
669
669
|
errorId: D,
|
|
670
670
|
helperId: O
|
|
671
671
|
}),
|
|
672
|
-
o && /* @__PURE__ */ X(
|
|
673
|
-
id:
|
|
672
|
+
o && /* @__PURE__ */ X(Ct, {
|
|
673
|
+
id: k,
|
|
674
674
|
children: o
|
|
675
675
|
})
|
|
676
676
|
]
|
|
677
677
|
});
|
|
678
|
-
}),
|
|
678
|
+
}), Ot = W("group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-md border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3!", {
|
|
679
|
+
variants: { variant: {
|
|
680
|
+
default: "bg-primary text-primary-foreground [a]:hover:bg-primary/80",
|
|
681
|
+
secondary: "bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80",
|
|
682
|
+
destructive: "bg-destructive/10 text-destructive focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 [a]:hover:bg-destructive/20",
|
|
683
|
+
outline: "border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground",
|
|
684
|
+
ghost: "hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50",
|
|
685
|
+
link: "text-primary underline-offset-4 hover:underline",
|
|
686
|
+
red: "border-red/30 bg-red/10 text-red",
|
|
687
|
+
orange: "border-orange/30 bg-orange/10 text-orange",
|
|
688
|
+
yellow: "border-yellow/30 bg-yellow/10 text-yellow",
|
|
689
|
+
green: "border-green/30 bg-green/10 text-green",
|
|
690
|
+
teal: "border-teal/30 bg-teal/10 text-teal",
|
|
691
|
+
cyan: "border-cyan/30 bg-cyan/10 text-cyan",
|
|
692
|
+
blue: "border-blue/30 bg-blue/10 text-blue",
|
|
693
|
+
purple: "border-purple/30 bg-purple/10 text-purple",
|
|
694
|
+
pink: "border-pink/30 bg-pink/10 text-pink",
|
|
695
|
+
gray: "border-gray/30 bg-gray/10 text-gray"
|
|
696
|
+
} },
|
|
697
|
+
defaultVariants: { variant: "default" }
|
|
698
|
+
});
|
|
699
|
+
function kt({ className: e, variant: t = "default", asChild: n = !1, ...r }) {
|
|
700
|
+
return /* @__PURE__ */ X(n ? Oe.Root : "span", {
|
|
701
|
+
"data-slot": "badge",
|
|
702
|
+
"data-variant": t,
|
|
703
|
+
className: Q(Ot({ variant: t }), e),
|
|
704
|
+
...r
|
|
705
|
+
});
|
|
706
|
+
}
|
|
707
|
+
//#endregion
|
|
708
|
+
//#region src/components/custom/alert-card.tsx
|
|
709
|
+
var At = {
|
|
710
|
+
info: {
|
|
711
|
+
icon: ne,
|
|
712
|
+
badge: "blue",
|
|
713
|
+
filled: "border-blue/30 bg-blue/10 text-blue",
|
|
714
|
+
iconBox: "bg-blue/10 text-blue",
|
|
715
|
+
actionBtn: "bg-blue text-white hover:bg-blue/90"
|
|
716
|
+
},
|
|
717
|
+
warning: {
|
|
718
|
+
icon: ge,
|
|
719
|
+
badge: "orange",
|
|
720
|
+
filled: "border-orange/30 bg-orange/10 text-orange",
|
|
721
|
+
iconBox: "bg-orange/10 text-orange",
|
|
722
|
+
actionBtn: "bg-orange text-white hover:bg-orange/90"
|
|
723
|
+
},
|
|
724
|
+
error: {
|
|
725
|
+
icon: O,
|
|
726
|
+
badge: "red",
|
|
727
|
+
filled: "border-red/30 bg-red/10 text-red",
|
|
728
|
+
iconBox: "bg-red/10 text-red",
|
|
729
|
+
actionBtn: "bg-red text-white hover:bg-red/90"
|
|
730
|
+
},
|
|
731
|
+
success: {
|
|
732
|
+
icon: E,
|
|
733
|
+
badge: "green",
|
|
734
|
+
filled: "border-green/30 bg-green/10 text-green",
|
|
735
|
+
iconBox: "bg-green/10 text-green",
|
|
736
|
+
actionBtn: "bg-green text-white hover:bg-green/90"
|
|
737
|
+
}
|
|
738
|
+
};
|
|
739
|
+
function jt({ severity: e = "info", variant: t = "filled", icon: n, title: r, description: i, badge: a, actions: o, dismissible: s = !1, onDismiss: c, className: l, ...u }) {
|
|
740
|
+
let d = At[e], f = d.icon, p = s && /* @__PURE__ */ X("button", {
|
|
741
|
+
type: "button",
|
|
742
|
+
"aria-label": "Dismiss",
|
|
743
|
+
onClick: c,
|
|
744
|
+
className: "-mr-1 -mt-0.5 flex size-6 shrink-0 items-center justify-center rounded-md text-current/60 transition-colors hover:bg-current/10 hover:text-current",
|
|
745
|
+
children: /* @__PURE__ */ X(U, { className: "size-3.5" })
|
|
746
|
+
});
|
|
747
|
+
return t === "filled" ? /* @__PURE__ */ Z("div", {
|
|
748
|
+
role: "alert",
|
|
749
|
+
"data-slot": "alert-card",
|
|
750
|
+
"data-severity": e,
|
|
751
|
+
className: Q("flex items-start gap-2.5 rounded-lg border p-3", d.filled, l),
|
|
752
|
+
...u,
|
|
753
|
+
children: [
|
|
754
|
+
/* @__PURE__ */ X("span", {
|
|
755
|
+
className: "mt-0.5 shrink-0 [&_svg]:size-4",
|
|
756
|
+
children: n ?? /* @__PURE__ */ X(f, {})
|
|
757
|
+
}),
|
|
758
|
+
/* @__PURE__ */ Z("div", {
|
|
759
|
+
className: "min-w-0 flex-1",
|
|
760
|
+
children: [r != null && /* @__PURE__ */ X("p", {
|
|
761
|
+
className: "text-sm font-medium",
|
|
762
|
+
children: r
|
|
763
|
+
}), i != null && /* @__PURE__ */ X("p", {
|
|
764
|
+
className: "text-sm/relaxed text-foreground/70",
|
|
765
|
+
children: i
|
|
766
|
+
})]
|
|
767
|
+
}),
|
|
768
|
+
p
|
|
769
|
+
]
|
|
770
|
+
}) : /* @__PURE__ */ Z("div", {
|
|
771
|
+
role: "alert",
|
|
772
|
+
"data-slot": "alert-card",
|
|
773
|
+
"data-severity": e,
|
|
774
|
+
className: Q("flex items-start gap-3 rounded-xl border bg-card p-3.5", l),
|
|
775
|
+
...u,
|
|
776
|
+
children: [
|
|
777
|
+
/* @__PURE__ */ X("span", {
|
|
778
|
+
className: Q("mt-0.5 flex size-9 shrink-0 items-center justify-center rounded-lg [&_svg]:size-4.5", d.iconBox),
|
|
779
|
+
children: n ?? /* @__PURE__ */ X(f, {})
|
|
780
|
+
}),
|
|
781
|
+
/* @__PURE__ */ Z("div", {
|
|
782
|
+
className: "min-w-0 flex-1",
|
|
783
|
+
children: [
|
|
784
|
+
/* @__PURE__ */ Z("div", {
|
|
785
|
+
className: "flex flex-wrap items-center gap-2",
|
|
786
|
+
children: [r != null && /* @__PURE__ */ X("p", {
|
|
787
|
+
className: "text-sm font-medium text-foreground",
|
|
788
|
+
children: r
|
|
789
|
+
}), a != null && /* @__PURE__ */ X(kt, {
|
|
790
|
+
variant: d.badge,
|
|
791
|
+
className: "text-[10px]",
|
|
792
|
+
children: a
|
|
793
|
+
})]
|
|
794
|
+
}),
|
|
795
|
+
i != null && /* @__PURE__ */ X("p", {
|
|
796
|
+
className: "mt-1 text-sm/relaxed text-muted-foreground",
|
|
797
|
+
children: i
|
|
798
|
+
}),
|
|
799
|
+
o != null && /* @__PURE__ */ X("div", {
|
|
800
|
+
className: "mt-3 flex flex-wrap items-center gap-2",
|
|
801
|
+
children: o
|
|
802
|
+
})
|
|
803
|
+
]
|
|
804
|
+
}),
|
|
805
|
+
p
|
|
806
|
+
]
|
|
807
|
+
});
|
|
808
|
+
}
|
|
809
|
+
function Mt({ severity: e = "info", className: t, ...n }) {
|
|
810
|
+
return /* @__PURE__ */ X($, {
|
|
811
|
+
size: "sm",
|
|
812
|
+
className: Q(At[e].actionBtn, t),
|
|
813
|
+
...n
|
|
814
|
+
});
|
|
815
|
+
}
|
|
816
|
+
//#endregion
|
|
817
|
+
//#region src/components/custom/file-upload.tsx
|
|
818
|
+
var Nt = [
|
|
679
819
|
{
|
|
680
820
|
match: (e, t) => e.includes("zip") || e.includes("archive") || t.endsWith(".zip") || t.endsWith(".rar"),
|
|
681
|
-
Icon:
|
|
821
|
+
Icon: j
|
|
682
822
|
},
|
|
683
823
|
{
|
|
684
824
|
match: (e) => e.includes("audio/"),
|
|
685
|
-
Icon:
|
|
825
|
+
Icon: F
|
|
686
826
|
},
|
|
687
827
|
{
|
|
688
828
|
match: (e, t) => e.includes("excel") || t.endsWith(".xls") || t.endsWith(".xlsx"),
|
|
689
|
-
Icon:
|
|
829
|
+
Icon: N
|
|
690
830
|
},
|
|
691
831
|
{
|
|
692
832
|
match: (e) => e.startsWith("image/"),
|
|
693
|
-
Icon:
|
|
833
|
+
Icon: L
|
|
694
834
|
},
|
|
695
835
|
{
|
|
696
836
|
match: (e, t) => e.includes("pdf") || t.endsWith(".pdf") || e.includes("word") || t.endsWith(".doc") || t.endsWith(".docx"),
|
|
697
|
-
Icon:
|
|
837
|
+
Icon: P
|
|
698
838
|
},
|
|
699
839
|
{
|
|
700
840
|
match: (e) => e.includes("video/"),
|
|
701
|
-
Icon:
|
|
841
|
+
Icon: ve
|
|
702
842
|
}
|
|
703
843
|
];
|
|
704
|
-
function
|
|
705
|
-
for (let { match: t, Icon: n } of
|
|
706
|
-
return /* @__PURE__ */ X(
|
|
844
|
+
function Pt(e) {
|
|
845
|
+
for (let { match: t, Icon: n } of Nt) if (t(e.type, e.name)) return /* @__PURE__ */ X(n, { className: "size-5 opacity-60" });
|
|
846
|
+
return /* @__PURE__ */ X(M, { className: "size-5 opacity-60" });
|
|
707
847
|
}
|
|
708
|
-
function
|
|
848
|
+
function Ft({ entry: e }) {
|
|
709
849
|
let { file: t } = e;
|
|
710
850
|
return /* @__PURE__ */ X("div", {
|
|
711
851
|
className: "flex aspect-square items-center justify-center overflow-hidden rounded-t-[inherit] bg-accent",
|
|
@@ -713,18 +853,18 @@ function kt({ entry: e }) {
|
|
|
713
853
|
alt: t.name,
|
|
714
854
|
className: "size-full rounded-t-[inherit] object-cover",
|
|
715
855
|
src: e.preview
|
|
716
|
-
}) :
|
|
856
|
+
}) : Pt(t)
|
|
717
857
|
});
|
|
718
858
|
}
|
|
719
|
-
function
|
|
720
|
-
let [{ files: l, isDragging: u, errors: d }, { handleDragEnter: f, handleDragLeave: m, handleDragOver: h, handleDrop: g, openFileDialog: _, removeFile: v, clearFiles: y, getInputProps: b }] =
|
|
859
|
+
function It({ variant: e = "image", accept: t = "image/*", maxSize: n = 5 * 1024 * 1024, maxFiles: r = 6, multiple: i, initialFiles: a, disabled: o, onFilesChange: s, className: c }) {
|
|
860
|
+
let [{ files: l, isDragging: u, errors: d }, { handleDragEnter: f, handleDragLeave: m, handleDragOver: h, handleDrop: g, openFileDialog: _, removeFile: v, clearFiles: y, getInputProps: b }] = Ke({
|
|
721
861
|
accept: t,
|
|
722
862
|
maxSize: n,
|
|
723
863
|
maxFiles: r,
|
|
724
864
|
multiple: e === "files" ? !0 : i ?? !1,
|
|
725
865
|
initialFiles: a,
|
|
726
866
|
onFilesChange: s
|
|
727
|
-
}), x =
|
|
867
|
+
}), x = Ge(n), S = d.length > 0 && /* @__PURE__ */ Z("div", {
|
|
728
868
|
className: "flex items-center gap-1 text-destructive text-xs",
|
|
729
869
|
role: "alert",
|
|
730
870
|
children: [/* @__PURE__ */ X(p, { className: "size-3 shrink-0" }), /* @__PURE__ */ X("span", { children: d[0] })]
|
|
@@ -762,7 +902,7 @@ function At({ variant: e = "image", accept: t = "image/*", maxSize: n = 5 * 1024
|
|
|
762
902
|
/* @__PURE__ */ X("div", {
|
|
763
903
|
"aria-hidden": "true",
|
|
764
904
|
className: "mb-2 flex size-11 shrink-0 items-center justify-center rounded-full border bg-background",
|
|
765
|
-
children: /* @__PURE__ */ X(
|
|
905
|
+
children: /* @__PURE__ */ X(te, { className: "size-4 opacity-60" })
|
|
766
906
|
}),
|
|
767
907
|
/* @__PURE__ */ X("p", {
|
|
768
908
|
className: "mb-1.5 font-medium text-sm",
|
|
@@ -781,7 +921,7 @@ function At({ variant: e = "image", accept: t = "image/*", maxSize: n = 5 * 1024
|
|
|
781
921
|
className: "z-50 flex size-8 cursor-pointer items-center justify-center rounded-full bg-black/60 text-white outline-none transition-[color,box-shadow] hover:bg-black/80 focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50",
|
|
782
922
|
onClick: () => t && v(t.id),
|
|
783
923
|
type: "button",
|
|
784
|
-
children: /* @__PURE__ */ X(
|
|
924
|
+
children: /* @__PURE__ */ X(U, {
|
|
785
925
|
"aria-hidden": "true",
|
|
786
926
|
className: "size-4"
|
|
787
927
|
})
|
|
@@ -822,7 +962,7 @@ function At({ variant: e = "image", accept: t = "image/*", maxSize: n = 5 * 1024
|
|
|
822
962
|
onClick: _,
|
|
823
963
|
size: "sm",
|
|
824
964
|
variant: "outline",
|
|
825
|
-
children: [/* @__PURE__ */ X(
|
|
965
|
+
children: [/* @__PURE__ */ X(_e, {
|
|
826
966
|
"aria-hidden": "true",
|
|
827
967
|
className: "-ms-0.5 size-3.5 opacity-60"
|
|
828
968
|
}), "Add files"]
|
|
@@ -831,7 +971,7 @@ function At({ variant: e = "image", accept: t = "image/*", maxSize: n = 5 * 1024
|
|
|
831
971
|
onClick: y,
|
|
832
972
|
size: "sm",
|
|
833
973
|
variant: "outline",
|
|
834
|
-
children: [/* @__PURE__ */ X(
|
|
974
|
+
children: [/* @__PURE__ */ X(pe, {
|
|
835
975
|
"aria-hidden": "true",
|
|
836
976
|
className: "-ms-0.5 size-3.5 opacity-60"
|
|
837
977
|
}), "Remove all"]
|
|
@@ -842,13 +982,13 @@ function At({ variant: e = "image", accept: t = "image/*", maxSize: n = 5 * 1024
|
|
|
842
982
|
children: l.map((e) => /* @__PURE__ */ Z("div", {
|
|
843
983
|
className: "relative flex flex-col rounded-md border bg-background",
|
|
844
984
|
children: [
|
|
845
|
-
/* @__PURE__ */ X(
|
|
985
|
+
/* @__PURE__ */ X(Ft, { entry: e }),
|
|
846
986
|
/* @__PURE__ */ X($, {
|
|
847
987
|
"aria-label": "Remove file",
|
|
848
988
|
className: "-top-2 -right-2 absolute size-6 rounded-full border-2 border-background shadow-none focus-visible:border-background",
|
|
849
989
|
onClick: () => v(e.id),
|
|
850
990
|
size: "icon",
|
|
851
|
-
children: /* @__PURE__ */ X(
|
|
991
|
+
children: /* @__PURE__ */ X(U, { className: "size-3.5" })
|
|
852
992
|
}),
|
|
853
993
|
/* @__PURE__ */ Z("div", {
|
|
854
994
|
className: "flex min-w-0 flex-col gap-0.5 border-t p-3",
|
|
@@ -857,7 +997,7 @@ function At({ variant: e = "image", accept: t = "image/*", maxSize: n = 5 * 1024
|
|
|
857
997
|
children: e.file.name
|
|
858
998
|
}), /* @__PURE__ */ X("p", {
|
|
859
999
|
className: "truncate text-muted-foreground text-xs",
|
|
860
|
-
children:
|
|
1000
|
+
children: Ge(e.file.size)
|
|
861
1001
|
})]
|
|
862
1002
|
})
|
|
863
1003
|
]
|
|
@@ -869,7 +1009,7 @@ function At({ variant: e = "image", accept: t = "image/*", maxSize: n = 5 * 1024
|
|
|
869
1009
|
/* @__PURE__ */ X("div", {
|
|
870
1010
|
"aria-hidden": "true",
|
|
871
1011
|
className: "mb-2 flex size-11 shrink-0 items-center justify-center rounded-full border bg-background",
|
|
872
|
-
children: /* @__PURE__ */ X(
|
|
1012
|
+
children: /* @__PURE__ */ X(L, { className: "size-4 opacity-60" })
|
|
873
1013
|
}),
|
|
874
1014
|
/* @__PURE__ */ X("p", {
|
|
875
1015
|
className: "mb-1.5 font-medium text-sm",
|
|
@@ -889,7 +1029,7 @@ function At({ variant: e = "image", accept: t = "image/*", maxSize: n = 5 * 1024
|
|
|
889
1029
|
disabled: o,
|
|
890
1030
|
onClick: _,
|
|
891
1031
|
variant: "outline",
|
|
892
|
-
children: [/* @__PURE__ */ X(
|
|
1032
|
+
children: [/* @__PURE__ */ X(_e, {
|
|
893
1033
|
"aria-hidden": "true",
|
|
894
1034
|
className: "-ms-1 opacity-60"
|
|
895
1035
|
}), "Select files"]
|
|
@@ -901,39 +1041,39 @@ function At({ variant: e = "image", accept: t = "image/*", maxSize: n = 5 * 1024
|
|
|
901
1041
|
}
|
|
902
1042
|
//#endregion
|
|
903
1043
|
//#region src/components/ui/dialog.tsx
|
|
904
|
-
function
|
|
1044
|
+
function Lt({ ...e }) {
|
|
905
1045
|
return /* @__PURE__ */ X(K.Root, {
|
|
906
1046
|
"data-slot": "dialog",
|
|
907
1047
|
...e
|
|
908
1048
|
});
|
|
909
1049
|
}
|
|
910
|
-
function
|
|
1050
|
+
function Rt({ ...e }) {
|
|
911
1051
|
return /* @__PURE__ */ X(K.Trigger, {
|
|
912
1052
|
"data-slot": "dialog-trigger",
|
|
913
1053
|
...e
|
|
914
1054
|
});
|
|
915
1055
|
}
|
|
916
|
-
function
|
|
1056
|
+
function zt({ ...e }) {
|
|
917
1057
|
return /* @__PURE__ */ X(K.Portal, {
|
|
918
1058
|
"data-slot": "dialog-portal",
|
|
919
1059
|
...e
|
|
920
1060
|
});
|
|
921
1061
|
}
|
|
922
|
-
function
|
|
1062
|
+
function Bt({ ...e }) {
|
|
923
1063
|
return /* @__PURE__ */ X(K.Close, {
|
|
924
1064
|
"data-slot": "dialog-close",
|
|
925
1065
|
...e
|
|
926
1066
|
});
|
|
927
1067
|
}
|
|
928
|
-
function
|
|
1068
|
+
function Vt({ className: e, ...t }) {
|
|
929
1069
|
return /* @__PURE__ */ X(K.Overlay, {
|
|
930
1070
|
"data-slot": "dialog-overlay",
|
|
931
1071
|
className: Q("fixed inset-0 isolate z-50 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs data-open:animate-in data-open:fade-in-0 data-closed:animate-out data-closed:fade-out-0", e),
|
|
932
1072
|
...t
|
|
933
1073
|
});
|
|
934
1074
|
}
|
|
935
|
-
function
|
|
936
|
-
return /* @__PURE__ */ Z(
|
|
1075
|
+
function Ht({ className: e, children: t, showCloseButton: n = !0, ...r }) {
|
|
1076
|
+
return /* @__PURE__ */ Z(zt, { children: [/* @__PURE__ */ X(Vt, {}), /* @__PURE__ */ Z(K.Content, {
|
|
937
1077
|
"data-slot": "dialog-content",
|
|
938
1078
|
className: Q("fixed top-1/2 left-1/2 z-50 grid w-full max-w-[calc(100%-2rem)] -translate-x-1/2 -translate-y-1/2 gap-4 rounded-xl bg-popover p-4 text-sm text-popover-foreground ring-1 ring-foreground/10 duration-100 outline-none sm:max-w-sm data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95", e),
|
|
939
1079
|
...r,
|
|
@@ -944,7 +1084,7 @@ function It({ className: e, children: t, showCloseButton: n = !0, ...r }) {
|
|
|
944
1084
|
variant: "ghost",
|
|
945
1085
|
className: "absolute top-2 right-2",
|
|
946
1086
|
size: "icon-sm",
|
|
947
|
-
children: [/* @__PURE__ */ X(
|
|
1087
|
+
children: [/* @__PURE__ */ X(U, {}), /* @__PURE__ */ X("span", {
|
|
948
1088
|
className: "sr-only",
|
|
949
1089
|
children: "Close"
|
|
950
1090
|
})]
|
|
@@ -952,14 +1092,14 @@ function It({ className: e, children: t, showCloseButton: n = !0, ...r }) {
|
|
|
952
1092
|
})]
|
|
953
1093
|
})] });
|
|
954
1094
|
}
|
|
955
|
-
function
|
|
1095
|
+
function Ut({ className: e, ...t }) {
|
|
956
1096
|
return /* @__PURE__ */ X("div", {
|
|
957
1097
|
"data-slot": "dialog-header",
|
|
958
1098
|
className: Q("flex flex-col gap-2", e),
|
|
959
1099
|
...t
|
|
960
1100
|
});
|
|
961
1101
|
}
|
|
962
|
-
function
|
|
1102
|
+
function Wt({ className: e, showCloseButton: t = !1, children: n, ...r }) {
|
|
963
1103
|
return /* @__PURE__ */ Z("div", {
|
|
964
1104
|
"data-slot": "dialog-footer",
|
|
965
1105
|
className: Q("-mx-4 -mb-4 flex flex-col-reverse gap-2 rounded-b-xl border-t bg-muted/50 p-4 sm:flex-row sm:justify-end", e),
|
|
@@ -973,14 +1113,14 @@ function Rt({ className: e, showCloseButton: t = !1, children: n, ...r }) {
|
|
|
973
1113
|
})]
|
|
974
1114
|
});
|
|
975
1115
|
}
|
|
976
|
-
function
|
|
1116
|
+
function Gt({ className: e, ...t }) {
|
|
977
1117
|
return /* @__PURE__ */ X(K.Title, {
|
|
978
1118
|
"data-slot": "dialog-title",
|
|
979
1119
|
className: Q("text-base leading-none font-medium", e),
|
|
980
1120
|
...t
|
|
981
1121
|
});
|
|
982
1122
|
}
|
|
983
|
-
function
|
|
1123
|
+
function Kt({ className: e, ...t }) {
|
|
984
1124
|
return /* @__PURE__ */ X(K.Description, {
|
|
985
1125
|
"data-slot": "dialog-description",
|
|
986
1126
|
className: Q("text-sm text-muted-foreground *:[a]:underline *:[a]:underline-offset-3 *:[a]:hover:text-foreground", e),
|
|
@@ -989,7 +1129,7 @@ function Bt({ className: e, ...t }) {
|
|
|
989
1129
|
}
|
|
990
1130
|
//#endregion
|
|
991
1131
|
//#region src/components/ui/input.tsx
|
|
992
|
-
function
|
|
1132
|
+
function qt({ className: e, type: t, ...n }) {
|
|
993
1133
|
return /* @__PURE__ */ X("input", {
|
|
994
1134
|
type: t,
|
|
995
1135
|
"data-slot": "input",
|
|
@@ -999,7 +1139,7 @@ function Vt({ className: e, type: t, ...n }) {
|
|
|
999
1139
|
}
|
|
1000
1140
|
//#endregion
|
|
1001
1141
|
//#region src/components/ui/textarea.tsx
|
|
1002
|
-
function
|
|
1142
|
+
function Jt({ className: e, ...t }) {
|
|
1003
1143
|
return /* @__PURE__ */ X("textarea", {
|
|
1004
1144
|
"data-slot": "textarea",
|
|
1005
1145
|
className: Q("flex field-sizing-content min-h-16 w-full rounded-lg border border-input bg-transparent px-2.5 py-2 text-base transition-colors outline-none placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:bg-input/50 disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 md:text-sm dark:bg-input/30 dark:disabled:bg-input/80 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40", e),
|
|
@@ -1008,7 +1148,7 @@ function Ht({ className: e, ...t }) {
|
|
|
1008
1148
|
}
|
|
1009
1149
|
//#endregion
|
|
1010
1150
|
//#region src/components/ui/input-group.tsx
|
|
1011
|
-
function
|
|
1151
|
+
function Yt({ className: e, ...t }) {
|
|
1012
1152
|
return /* @__PURE__ */ X("div", {
|
|
1013
1153
|
"data-slot": "input-group",
|
|
1014
1154
|
role: "group",
|
|
@@ -1016,7 +1156,7 @@ function Ut({ className: e, ...t }) {
|
|
|
1016
1156
|
...t
|
|
1017
1157
|
});
|
|
1018
1158
|
}
|
|
1019
|
-
var
|
|
1159
|
+
var Xt = W("flex h-auto cursor-text items-center justify-center gap-2 py-1.5 text-sm font-medium text-muted-foreground select-none group-data-[disabled=true]/input-group:opacity-50 [&>kbd]:rounded-[calc(var(--radius)-5px)] [&>svg:not([class*='size-'])]:size-4", {
|
|
1020
1160
|
variants: { align: {
|
|
1021
1161
|
"inline-start": "order-first pl-2 has-[>button]:ml-[-0.3rem] has-[>kbd]:ml-[-0.15rem]",
|
|
1022
1162
|
"inline-end": "order-last pr-2 has-[>button]:mr-[-0.3rem] has-[>kbd]:mr-[-0.15rem]",
|
|
@@ -1025,19 +1165,19 @@ var Wt = W("flex h-auto cursor-text items-center justify-center gap-2 py-1.5 tex
|
|
|
1025
1165
|
} },
|
|
1026
1166
|
defaultVariants: { align: "inline-start" }
|
|
1027
1167
|
});
|
|
1028
|
-
function
|
|
1168
|
+
function Zt({ className: e, align: t = "inline-start", ...n }) {
|
|
1029
1169
|
return /* @__PURE__ */ X("div", {
|
|
1030
1170
|
role: "group",
|
|
1031
1171
|
"data-slot": "input-group-addon",
|
|
1032
1172
|
"data-align": t,
|
|
1033
|
-
className: Q(
|
|
1173
|
+
className: Q(Xt({ align: t }), e),
|
|
1034
1174
|
onClick: (e) => {
|
|
1035
1175
|
e.target.closest("button") || e.currentTarget.parentElement?.querySelector("input")?.focus();
|
|
1036
1176
|
},
|
|
1037
1177
|
...n
|
|
1038
1178
|
});
|
|
1039
1179
|
}
|
|
1040
|
-
var
|
|
1180
|
+
var Qt = W("flex items-center gap-2 text-sm shadow-none", {
|
|
1041
1181
|
variants: { size: {
|
|
1042
1182
|
xs: "h-6 gap-1 rounded-[calc(var(--radius)-3px)] px-1.5 [&>svg:not([class*='size-'])]:size-3.5",
|
|
1043
1183
|
sm: "",
|
|
@@ -1046,30 +1186,30 @@ var Kt = W("flex items-center gap-2 text-sm shadow-none", {
|
|
|
1046
1186
|
} },
|
|
1047
1187
|
defaultVariants: { size: "xs" }
|
|
1048
1188
|
});
|
|
1049
|
-
function
|
|
1189
|
+
function $t({ className: e, type: t = "button", variant: n = "ghost", size: r = "xs", ...i }) {
|
|
1050
1190
|
return /* @__PURE__ */ X($, {
|
|
1051
1191
|
type: t,
|
|
1052
1192
|
"data-size": r,
|
|
1053
1193
|
variant: n,
|
|
1054
|
-
className: Q(
|
|
1194
|
+
className: Q(Qt({ size: r }), e),
|
|
1055
1195
|
...i
|
|
1056
1196
|
});
|
|
1057
1197
|
}
|
|
1058
|
-
function
|
|
1198
|
+
function en({ className: e, ...t }) {
|
|
1059
1199
|
return /* @__PURE__ */ X("span", {
|
|
1060
1200
|
className: Q("flex items-center gap-2 text-sm text-muted-foreground [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4", e),
|
|
1061
1201
|
...t
|
|
1062
1202
|
});
|
|
1063
1203
|
}
|
|
1064
|
-
function
|
|
1065
|
-
return /* @__PURE__ */ X(
|
|
1204
|
+
function tn({ className: e, ...t }) {
|
|
1205
|
+
return /* @__PURE__ */ X(qt, {
|
|
1066
1206
|
"data-slot": "input-group-control",
|
|
1067
1207
|
className: Q("flex-1 rounded-none border-0 bg-transparent shadow-none ring-0 focus-visible:ring-0 disabled:bg-transparent aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent", e),
|
|
1068
1208
|
...t
|
|
1069
1209
|
});
|
|
1070
1210
|
}
|
|
1071
|
-
function
|
|
1072
|
-
return /* @__PURE__ */ X(
|
|
1211
|
+
function nn({ className: e, ...t }) {
|
|
1212
|
+
return /* @__PURE__ */ X(Jt, {
|
|
1073
1213
|
"data-slot": "input-group-control",
|
|
1074
1214
|
className: Q("flex-1 resize-none rounded-none border-0 bg-transparent py-2 shadow-none ring-0 focus-visible:ring-0 disabled:bg-transparent aria-invalid:ring-0 dark:bg-transparent dark:disabled:bg-transparent", e),
|
|
1075
1215
|
...t
|
|
@@ -1077,77 +1217,77 @@ function Xt({ className: e, ...t }) {
|
|
|
1077
1217
|
}
|
|
1078
1218
|
//#endregion
|
|
1079
1219
|
//#region src/components/ui/command.tsx
|
|
1080
|
-
function
|
|
1081
|
-
return /* @__PURE__ */ X(
|
|
1220
|
+
function rn({ className: e, ...t }) {
|
|
1221
|
+
return /* @__PURE__ */ X(Pe, {
|
|
1082
1222
|
"data-slot": "command",
|
|
1083
1223
|
className: Q("flex size-full flex-col overflow-hidden rounded-xl! bg-popover p-1 text-popover-foreground", e),
|
|
1084
1224
|
...t
|
|
1085
1225
|
});
|
|
1086
1226
|
}
|
|
1087
|
-
function
|
|
1088
|
-
return /* @__PURE__ */ Z(
|
|
1227
|
+
function an({ title: e = "Command Palette", description: t = "Search for a command to run...", children: n, className: r, showCloseButton: i = !1, ...a }) {
|
|
1228
|
+
return /* @__PURE__ */ Z(Lt, {
|
|
1089
1229
|
...a,
|
|
1090
|
-
children: [/* @__PURE__ */ Z(
|
|
1230
|
+
children: [/* @__PURE__ */ Z(Ut, {
|
|
1091
1231
|
className: "sr-only",
|
|
1092
|
-
children: [/* @__PURE__ */ X(
|
|
1093
|
-
}), /* @__PURE__ */ X(
|
|
1232
|
+
children: [/* @__PURE__ */ X(Gt, { children: e }), /* @__PURE__ */ X(Kt, { children: t })]
|
|
1233
|
+
}), /* @__PURE__ */ X(Ht, {
|
|
1094
1234
|
className: Q("top-1/3 translate-y-0 overflow-hidden rounded-xl! p-0", r),
|
|
1095
1235
|
showCloseButton: i,
|
|
1096
1236
|
children: n
|
|
1097
1237
|
})]
|
|
1098
1238
|
});
|
|
1099
1239
|
}
|
|
1100
|
-
function
|
|
1240
|
+
function on({ className: e, ...t }) {
|
|
1101
1241
|
return /* @__PURE__ */ X("div", {
|
|
1102
1242
|
"data-slot": "command-input-wrapper",
|
|
1103
1243
|
className: "p-1 pb-0",
|
|
1104
|
-
children: /* @__PURE__ */ Z(
|
|
1244
|
+
children: /* @__PURE__ */ Z(Yt, {
|
|
1105
1245
|
className: "h-8! rounded-lg! border-input/30 bg-input/30 shadow-none! *:data-[slot=input-group-addon]:pl-2!",
|
|
1106
|
-
children: [/* @__PURE__ */ X(
|
|
1246
|
+
children: [/* @__PURE__ */ X(Pe.Input, {
|
|
1107
1247
|
"data-slot": "command-input",
|
|
1108
1248
|
className: Q("w-full text-sm outline-hidden disabled:cursor-not-allowed disabled:opacity-50", e),
|
|
1109
1249
|
...t
|
|
1110
|
-
}), /* @__PURE__ */ X(
|
|
1250
|
+
}), /* @__PURE__ */ X(Zt, { children: /* @__PURE__ */ X(fe, { className: "size-4 shrink-0 opacity-50" }) })]
|
|
1111
1251
|
})
|
|
1112
1252
|
});
|
|
1113
1253
|
}
|
|
1114
|
-
function
|
|
1115
|
-
return /* @__PURE__ */ X(
|
|
1254
|
+
function sn({ className: e, ...t }) {
|
|
1255
|
+
return /* @__PURE__ */ X(Pe.List, {
|
|
1116
1256
|
"data-slot": "command-list",
|
|
1117
1257
|
className: Q("no-scrollbar max-h-72 scroll-py-1 overflow-x-hidden overflow-y-auto outline-none", e),
|
|
1118
1258
|
...t
|
|
1119
1259
|
});
|
|
1120
1260
|
}
|
|
1121
|
-
function
|
|
1122
|
-
return /* @__PURE__ */ X(
|
|
1261
|
+
function cn({ className: e, ...t }) {
|
|
1262
|
+
return /* @__PURE__ */ X(Pe.Empty, {
|
|
1123
1263
|
"data-slot": "command-empty",
|
|
1124
1264
|
className: Q("py-6 text-center text-sm", e),
|
|
1125
1265
|
...t
|
|
1126
1266
|
});
|
|
1127
1267
|
}
|
|
1128
|
-
function
|
|
1129
|
-
return /* @__PURE__ */ X(
|
|
1268
|
+
function ln({ className: e, ...t }) {
|
|
1269
|
+
return /* @__PURE__ */ X(Pe.Group, {
|
|
1130
1270
|
"data-slot": "command-group",
|
|
1131
1271
|
className: Q("overflow-hidden p-1 text-foreground **:[[cmdk-group-heading]]:px-2 **:[[cmdk-group-heading]]:py-1.5 **:[[cmdk-group-heading]]:text-xs **:[[cmdk-group-heading]]:font-medium **:[[cmdk-group-heading]]:text-muted-foreground", e),
|
|
1132
1272
|
...t
|
|
1133
1273
|
});
|
|
1134
1274
|
}
|
|
1135
|
-
function
|
|
1136
|
-
return /* @__PURE__ */ X(
|
|
1275
|
+
function un({ className: e, ...t }) {
|
|
1276
|
+
return /* @__PURE__ */ X(Pe.Separator, {
|
|
1137
1277
|
"data-slot": "command-separator",
|
|
1138
1278
|
className: Q("-mx-1 h-px bg-border", e),
|
|
1139
1279
|
...t
|
|
1140
1280
|
});
|
|
1141
1281
|
}
|
|
1142
|
-
function
|
|
1143
|
-
return /* @__PURE__ */ Z(
|
|
1282
|
+
function dn({ className: e, children: t, ...n }) {
|
|
1283
|
+
return /* @__PURE__ */ Z(Pe.Item, {
|
|
1144
1284
|
"data-slot": "command-item",
|
|
1145
1285
|
className: Q("group/command-item relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none in-data-[slot=dialog-content]:rounded-lg! data-[disabled=true]:pointer-events-none data-[disabled=true]:opacity-50 data-selected:bg-muted data-selected:text-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 data-selected:*:[svg]:text-foreground", e),
|
|
1146
1286
|
...n,
|
|
1147
1287
|
children: [t, /* @__PURE__ */ X(v, { className: "ml-auto opacity-0 group-has-data-[slot=command-shortcut]/command-item:hidden group-data-[checked=true]/command-item:opacity-100" })]
|
|
1148
1288
|
});
|
|
1149
1289
|
}
|
|
1150
|
-
function
|
|
1290
|
+
function fn({ className: e, ...t }) {
|
|
1151
1291
|
return /* @__PURE__ */ X("span", {
|
|
1152
1292
|
"data-slot": "command-shortcut",
|
|
1153
1293
|
className: Q("ml-auto text-xs tracking-widest text-muted-foreground group-data-selected/command-item:text-foreground", e),
|
|
@@ -1156,20 +1296,20 @@ function on({ className: e, ...t }) {
|
|
|
1156
1296
|
}
|
|
1157
1297
|
//#endregion
|
|
1158
1298
|
//#region src/components/ui/popover.tsx
|
|
1159
|
-
function
|
|
1160
|
-
return /* @__PURE__ */ X(
|
|
1299
|
+
function pn({ ...e }) {
|
|
1300
|
+
return /* @__PURE__ */ X(Ce.Root, {
|
|
1161
1301
|
"data-slot": "popover",
|
|
1162
1302
|
...e
|
|
1163
1303
|
});
|
|
1164
1304
|
}
|
|
1165
|
-
function
|
|
1166
|
-
return /* @__PURE__ */ X(
|
|
1305
|
+
function mn({ ...e }) {
|
|
1306
|
+
return /* @__PURE__ */ X(Ce.Trigger, {
|
|
1167
1307
|
"data-slot": "popover-trigger",
|
|
1168
1308
|
...e
|
|
1169
1309
|
});
|
|
1170
1310
|
}
|
|
1171
|
-
function
|
|
1172
|
-
return /* @__PURE__ */ X(
|
|
1311
|
+
function hn({ className: e, align: t = "center", sideOffset: n = 4, ...r }) {
|
|
1312
|
+
return /* @__PURE__ */ X(Ce.Portal, { children: /* @__PURE__ */ X(Ce.Content, {
|
|
1173
1313
|
"data-slot": "popover-content",
|
|
1174
1314
|
align: t,
|
|
1175
1315
|
sideOffset: n,
|
|
@@ -1177,27 +1317,27 @@ function ln({ className: e, align: t = "center", sideOffset: n = 4, ...r }) {
|
|
|
1177
1317
|
...r
|
|
1178
1318
|
}) });
|
|
1179
1319
|
}
|
|
1180
|
-
function
|
|
1181
|
-
return /* @__PURE__ */ X(
|
|
1320
|
+
function gn({ ...e }) {
|
|
1321
|
+
return /* @__PURE__ */ X(Ce.Anchor, {
|
|
1182
1322
|
"data-slot": "popover-anchor",
|
|
1183
1323
|
...e
|
|
1184
1324
|
});
|
|
1185
1325
|
}
|
|
1186
|
-
function
|
|
1326
|
+
function _n({ className: e, ...t }) {
|
|
1187
1327
|
return /* @__PURE__ */ X("div", {
|
|
1188
1328
|
"data-slot": "popover-header",
|
|
1189
1329
|
className: Q("flex flex-col gap-0.5 text-sm", e),
|
|
1190
1330
|
...t
|
|
1191
1331
|
});
|
|
1192
1332
|
}
|
|
1193
|
-
function
|
|
1333
|
+
function vn({ className: e, ...t }) {
|
|
1194
1334
|
return /* @__PURE__ */ X("div", {
|
|
1195
1335
|
"data-slot": "popover-title",
|
|
1196
1336
|
className: Q("font-medium", e),
|
|
1197
1337
|
...t
|
|
1198
1338
|
});
|
|
1199
1339
|
}
|
|
1200
|
-
function
|
|
1340
|
+
function yn({ className: e, ...t }) {
|
|
1201
1341
|
return /* @__PURE__ */ X("p", {
|
|
1202
1342
|
"data-slot": "popover-description",
|
|
1203
1343
|
className: Q("text-muted-foreground", e),
|
|
@@ -1206,19 +1346,19 @@ function pn({ className: e, ...t }) {
|
|
|
1206
1346
|
}
|
|
1207
1347
|
//#endregion
|
|
1208
1348
|
//#region src/components/custom/advanced-select.tsx
|
|
1209
|
-
function
|
|
1349
|
+
function bn(e) {
|
|
1210
1350
|
return typeof e == "object" && !!e && "value" in e && "label" in e;
|
|
1211
1351
|
}
|
|
1212
|
-
function
|
|
1213
|
-
let [R, ne] = n.useState(
|
|
1352
|
+
function xn({ options: e = [], groups: t = [], value: r, onValueChange: i, placeholder: a = "Select option", disabled: o = !1, error: s = !1, errorMessage: c, multiple: l = !1, className: u, size: d = "default", variant: f = "default", searchable: p = !1, clearable: m = !1, getOptionLabel: h, getOptionValue: g, renderOptionLabel: _, label: y, description: x, required: S = !1, onCreateNew: C, createNewLabel: w = "New item", loading: T = !1, compactMultiple: E = !1, formatCompactDisplay: D, startItem: O, endItem: k, maxSelections: A, defaultOpen: ee = !1, onOpenChange: j, onLoadMore: M, hasNextPage: N = !1, isFetchingNextPage: P = !1, allowEmpty: F = !1, showSelectAll: I = !1, readOnly: L = !1, popoverClassName: te }) {
|
|
1353
|
+
let [R, ne] = n.useState(ee), z = n.useRef(!1), B = n.useRef(null), ie = n.useId(), ae = n.useCallback((e) => {
|
|
1214
1354
|
L && e || (ne(e), j?.(e), e && (z.current = !1));
|
|
1215
|
-
}, [j, L]), [
|
|
1355
|
+
}, [j, L]), [V, oe] = n.useState(l ? Array.isArray(r) ? r : r ? [r] : [] : []);
|
|
1216
1356
|
n.useEffect(() => {
|
|
1217
|
-
l &&
|
|
1357
|
+
l && oe(Array.isArray(r) ? r : r ? [r] : []);
|
|
1218
1358
|
}, [l, r]), n.useEffect(() => {
|
|
1219
1359
|
P || (z.current = !1);
|
|
1220
1360
|
}, [P]);
|
|
1221
|
-
let
|
|
1361
|
+
let H = n.useCallback((e) => typeof e == "string" ? e : g ? g(e) : bn(e) ? e.value : String(e), [g]), se = n.useCallback((n) => {
|
|
1222
1362
|
if (typeof n == "string") {
|
|
1223
1363
|
for (let e of t) {
|
|
1224
1364
|
let t = e.options.find((e) => e.value === n);
|
|
@@ -1226,33 +1366,33 @@ function hn({ options: e = [], groups: t = [], value: r, onValueChange: i, place
|
|
|
1226
1366
|
}
|
|
1227
1367
|
for (let t of e) if (typeof t == "string") {
|
|
1228
1368
|
if (t === n) return t;
|
|
1229
|
-
} else if (
|
|
1369
|
+
} else if (bn(t) && t.value === n) return t.label;
|
|
1230
1370
|
return n;
|
|
1231
1371
|
}
|
|
1232
|
-
return h ? h(n) :
|
|
1372
|
+
return h ? h(n) : bn(n) ? n.label : String(n);
|
|
1233
1373
|
}, [
|
|
1234
1374
|
h,
|
|
1235
1375
|
t,
|
|
1236
1376
|
e
|
|
1237
|
-
]),
|
|
1377
|
+
]), ce = n.useMemo(() => l || !r ? "" : typeof r == "string" ? r : Array.isArray(r) ? "" : H(r), [
|
|
1238
1378
|
l,
|
|
1239
1379
|
r,
|
|
1240
|
-
|
|
1380
|
+
H
|
|
1241
1381
|
]), le = n.useMemo(() => e.map((e) => typeof e == "string" ? {
|
|
1242
1382
|
value: e,
|
|
1243
1383
|
label: e
|
|
1244
|
-
} :
|
|
1245
|
-
value:
|
|
1246
|
-
label:
|
|
1384
|
+
} : bn(e) ? e : {
|
|
1385
|
+
value: H(e),
|
|
1386
|
+
label: se(e)
|
|
1247
1387
|
}), [
|
|
1248
1388
|
e,
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
]),
|
|
1389
|
+
se,
|
|
1390
|
+
H
|
|
1391
|
+
]), de = n.useCallback((t) => e.find((e) => H(e) === t), [e, H]), fe = n.useMemo(() => {
|
|
1252
1392
|
let e = [...le];
|
|
1253
1393
|
return t.forEach((t) => e.push(...t.options)), e;
|
|
1254
|
-
}, [le, t]),
|
|
1255
|
-
let r = e.find((e) =>
|
|
1394
|
+
}, [le, t]), pe = (n) => {
|
|
1395
|
+
let r = e.find((e) => H(e) === n);
|
|
1256
1396
|
if (r === void 0 && t.length > 0) for (let e of t) {
|
|
1257
1397
|
let t = e.options.find((e) => e.value === n);
|
|
1258
1398
|
if (t) {
|
|
@@ -1261,77 +1401,77 @@ function hn({ options: e = [], groups: t = [], value: r, onValueChange: i, place
|
|
|
1261
1401
|
}
|
|
1262
1402
|
}
|
|
1263
1403
|
if (l) {
|
|
1264
|
-
let e =
|
|
1265
|
-
if (!e &&
|
|
1266
|
-
let t = e ?
|
|
1267
|
-
|
|
1404
|
+
let e = V.some((e) => H(e) === n);
|
|
1405
|
+
if (!e && A && V.length >= A || e && V.length === 1 && !F) return;
|
|
1406
|
+
let t = e ? V.filter((e) => H(e) !== n) : [...V, r];
|
|
1407
|
+
oe(t), i?.(t);
|
|
1268
1408
|
} else i?.(r), ne(!1);
|
|
1269
|
-
},
|
|
1409
|
+
}, me = l && fe.length > 0 && fe.length === V.length, he = () => {
|
|
1270
1410
|
if (l) {
|
|
1271
|
-
if (
|
|
1272
|
-
F && (
|
|
1411
|
+
if (me) {
|
|
1412
|
+
F && (oe([]), i?.([]));
|
|
1273
1413
|
return;
|
|
1274
1414
|
}
|
|
1275
|
-
|
|
1415
|
+
A && fe.length > A || (oe(fe), i?.(fe));
|
|
1276
1416
|
}
|
|
1277
|
-
},
|
|
1278
|
-
e.stopPropagation(), l ? (
|
|
1279
|
-
},
|
|
1280
|
-
if (e.stopPropagation(),
|
|
1281
|
-
let n =
|
|
1282
|
-
|
|
1283
|
-
},
|
|
1417
|
+
}, ge = (e) => {
|
|
1418
|
+
e.stopPropagation(), l ? (oe([]), i?.([])) : i?.("");
|
|
1419
|
+
}, _e = (e, t) => {
|
|
1420
|
+
if (e.stopPropagation(), V.length === 1 && !F) return;
|
|
1421
|
+
let n = V.filter((e) => H(e) !== H(t));
|
|
1422
|
+
oe(n), i?.(n);
|
|
1423
|
+
}, ve = n.useCallback((e) => {
|
|
1284
1424
|
let t = e.currentTarget;
|
|
1285
1425
|
t.scrollHeight - t.scrollTop - t.clientHeight < 100 && M && N && !P && !z.current && (z.current = !0, M());
|
|
1286
1426
|
}, [
|
|
1287
1427
|
M,
|
|
1288
1428
|
N,
|
|
1289
1429
|
P
|
|
1290
|
-
]),
|
|
1430
|
+
]), ye = l ? V.length > 0 : !!ce, W = () => l ? null : fe.find((e) => e.value === ce)?.label || a, G = () => {
|
|
1291
1431
|
!o && !L && (B.current?.focus(), ne(!0));
|
|
1292
|
-
},
|
|
1293
|
-
className: Q("flex min-w-0 flex-1 items-center gap-1.5",
|
|
1294
|
-
children: l &&
|
|
1432
|
+
}, be = !!(O || k), K = l && !E, q = K ? d === "default" ? "min-h-9" : "min-h-7" : d === "default" ? "h-9" : "h-7", xe = f === "alt" ? "bg-muted" : "bg-transparent dark:bg-input/30", Se = /* @__PURE__ */ X("div", {
|
|
1433
|
+
className: Q("flex min-w-0 flex-1 items-center gap-1.5", K ? "py-1" : "overflow-hidden"),
|
|
1434
|
+
children: l && V.length > 0 ? E ? /* @__PURE__ */ X("span", {
|
|
1295
1435
|
className: "min-w-0 truncate",
|
|
1296
|
-
children: D ? D(
|
|
1436
|
+
children: D ? D(V) : `${V.length} selected`
|
|
1297
1437
|
}) : /* @__PURE__ */ X("div", {
|
|
1298
1438
|
className: "flex flex-wrap items-center gap-1.5",
|
|
1299
|
-
children:
|
|
1439
|
+
children: V.map((e, t) => /* @__PURE__ */ Z("span", {
|
|
1300
1440
|
className: "inline-flex items-center gap-1 rounded-sm bg-primary px-2 py-0.5 text-xs font-normal text-primary-foreground",
|
|
1301
|
-
children: [
|
|
1441
|
+
children: [se(e), !o && /* @__PURE__ */ X("button", {
|
|
1302
1442
|
type: "button",
|
|
1303
|
-
"aria-label": `Remove ${
|
|
1304
|
-
onClick: (t) =>
|
|
1443
|
+
"aria-label": `Remove ${se(e)}`,
|
|
1444
|
+
onClick: (t) => _e(t, e),
|
|
1305
1445
|
className: "rounded-sm transition-colors hover:bg-primary/80",
|
|
1306
|
-
children: /* @__PURE__ */ X(
|
|
1446
|
+
children: /* @__PURE__ */ X(U, { className: "size-3" })
|
|
1307
1447
|
})]
|
|
1308
|
-
}, `${
|
|
1448
|
+
}, `${H(e)}-${t}`))
|
|
1309
1449
|
}) : /* @__PURE__ */ X("span", {
|
|
1310
|
-
className: Q("block min-w-0 truncate", !
|
|
1311
|
-
children:
|
|
1450
|
+
className: Q("block min-w-0 truncate", !ye && "text-muted-foreground"),
|
|
1451
|
+
children: W() || a
|
|
1312
1452
|
})
|
|
1313
1453
|
}), Ce = /* @__PURE__ */ Z("div", {
|
|
1314
1454
|
className: "flex shrink-0 items-center gap-1",
|
|
1315
|
-
children: [m &&
|
|
1455
|
+
children: [m && ye && !o && /* @__PURE__ */ X("span", {
|
|
1316
1456
|
role: "button",
|
|
1317
1457
|
tabIndex: 0,
|
|
1318
1458
|
"aria-label": "Clear",
|
|
1319
|
-
onClick:
|
|
1459
|
+
onClick: ge,
|
|
1320
1460
|
onKeyDown: (e) => {
|
|
1321
|
-
(e.key === "Enter" || e.key === " ") && (e.stopPropagation(),
|
|
1461
|
+
(e.key === "Enter" || e.key === " ") && (e.stopPropagation(), ge(e));
|
|
1322
1462
|
},
|
|
1323
1463
|
className: "cursor-pointer rounded-sm p-0.5 transition-colors hover:bg-accent",
|
|
1324
|
-
children: /* @__PURE__ */ X(
|
|
1464
|
+
children: /* @__PURE__ */ X(U, { className: "size-3.5" })
|
|
1325
1465
|
}), /* @__PURE__ */ X(b, {
|
|
1326
1466
|
size: 16,
|
|
1327
1467
|
className: "shrink-0 opacity-60",
|
|
1328
1468
|
"aria-hidden": !0
|
|
1329
1469
|
})]
|
|
1330
1470
|
}), we = (e) => {
|
|
1331
|
-
let t = l ?
|
|
1332
|
-
return /* @__PURE__ */ Z(
|
|
1471
|
+
let t = l ? V.some((t) => H(t) === e.value) : ce === e.value, n = de(e.value);
|
|
1472
|
+
return /* @__PURE__ */ Z(dn, {
|
|
1333
1473
|
value: e.value,
|
|
1334
|
-
onSelect: () =>
|
|
1474
|
+
onSelect: () => pe(e.value),
|
|
1335
1475
|
disabled: e.disabled,
|
|
1336
1476
|
children: [
|
|
1337
1477
|
l ? /* @__PURE__ */ X("div", {
|
|
@@ -1373,46 +1513,46 @@ function hn({ options: e = [], groups: t = [], value: r, onValueChange: i, place
|
|
|
1373
1513
|
})
|
|
1374
1514
|
]
|
|
1375
1515
|
}, e.value);
|
|
1376
|
-
},
|
|
1516
|
+
}, Te = /* @__PURE__ */ X(hn, {
|
|
1377
1517
|
className: Q("w-(--radix-popper-anchor-width) min-w-(--radix-popper-anchor-width) p-0", te),
|
|
1378
1518
|
align: "start",
|
|
1379
1519
|
onOpenAutoFocus: (e) => {
|
|
1380
1520
|
p || e.preventDefault();
|
|
1381
1521
|
},
|
|
1382
1522
|
onWheel: (e) => e.stopPropagation(),
|
|
1383
|
-
children: /* @__PURE__ */ Z(
|
|
1523
|
+
children: /* @__PURE__ */ Z(rn, { children: [p && /* @__PURE__ */ X(on, {
|
|
1384
1524
|
placeholder: `Search ${a.toLowerCase()}...`,
|
|
1385
1525
|
autoFocus: !0
|
|
1386
|
-
}), /* @__PURE__ */ X(
|
|
1387
|
-
onScroll:
|
|
1526
|
+
}), /* @__PURE__ */ X(sn, {
|
|
1527
|
+
onScroll: ve,
|
|
1388
1528
|
children: T ? /* @__PURE__ */ X("div", {
|
|
1389
1529
|
className: "flex items-center justify-center py-6",
|
|
1390
1530
|
children: /* @__PURE__ */ X(re, { className: "size-5 animate-spin text-muted-foreground" })
|
|
1391
1531
|
}) : /* @__PURE__ */ Z(Y, { children: [
|
|
1392
|
-
l && I &&
|
|
1532
|
+
l && I && fe.length > 0 && /* @__PURE__ */ Z(Y, { children: [/* @__PURE__ */ X(ln, { children: /* @__PURE__ */ Z(dn, {
|
|
1393
1533
|
value: "__select_all__",
|
|
1394
|
-
onSelect:
|
|
1534
|
+
onSelect: he,
|
|
1395
1535
|
className: "font-medium",
|
|
1396
1536
|
children: [/* @__PURE__ */ X("div", {
|
|
1397
|
-
className: Q("flex size-4 shrink-0 items-center justify-center rounded-sm border",
|
|
1398
|
-
children:
|
|
1537
|
+
className: Q("flex size-4 shrink-0 items-center justify-center rounded-sm border", me ? "border-primary bg-primary" : "border-input"),
|
|
1538
|
+
children: me && /* @__PURE__ */ X(v, {
|
|
1399
1539
|
size: 12,
|
|
1400
1540
|
className: "text-primary-foreground"
|
|
1401
1541
|
})
|
|
1402
1542
|
}), /* @__PURE__ */ X("span", { children: "Select all" })]
|
|
1403
|
-
}) }), /* @__PURE__ */ X(
|
|
1404
|
-
/* @__PURE__ */ X(
|
|
1405
|
-
t.length > 0 ? t.map((e, t) => /* @__PURE__ */ Z(n.Fragment, { children: [t > 0 && /* @__PURE__ */ X(
|
|
1543
|
+
}) }), /* @__PURE__ */ X(un, {})] }),
|
|
1544
|
+
/* @__PURE__ */ X(cn, { children: "No results found." }),
|
|
1545
|
+
t.length > 0 ? t.map((e, t) => /* @__PURE__ */ Z(n.Fragment, { children: [t > 0 && /* @__PURE__ */ X(un, {}), /* @__PURE__ */ X(ln, {
|
|
1406
1546
|
heading: e.label,
|
|
1407
1547
|
children: e.options.map(we)
|
|
1408
|
-
})] }, e.label)) : /* @__PURE__ */ X(
|
|
1409
|
-
C && /* @__PURE__ */ Z(Y, { children: [/* @__PURE__ */ X(
|
|
1548
|
+
})] }, e.label)) : /* @__PURE__ */ X(ln, { children: le.map(we) }),
|
|
1549
|
+
C && /* @__PURE__ */ Z(Y, { children: [/* @__PURE__ */ X(un, {}), /* @__PURE__ */ X(ln, { children: /* @__PURE__ */ Z($, {
|
|
1410
1550
|
variant: "ghost",
|
|
1411
1551
|
className: "w-full justify-start font-normal",
|
|
1412
1552
|
onClick: () => {
|
|
1413
1553
|
C(), ne(!1);
|
|
1414
1554
|
},
|
|
1415
|
-
children: [/* @__PURE__ */ X(
|
|
1555
|
+
children: [/* @__PURE__ */ X(ue, {
|
|
1416
1556
|
size: 16,
|
|
1417
1557
|
className: "-ms-1 opacity-60",
|
|
1418
1558
|
"aria-hidden": !0
|
|
@@ -1424,7 +1564,7 @@ function hn({ options: e = [], groups: t = [], value: r, onValueChange: i, place
|
|
|
1424
1564
|
})
|
|
1425
1565
|
] })
|
|
1426
1566
|
})] })
|
|
1427
|
-
}),
|
|
1567
|
+
}), J = S ? /* @__PURE__ */ X("span", {
|
|
1428
1568
|
"aria-hidden": !0,
|
|
1429
1569
|
className: "ml-0.5 text-destructive",
|
|
1430
1570
|
children: "*"
|
|
@@ -1432,21 +1572,21 @@ function hn({ options: e = [], groups: t = [], value: r, onValueChange: i, place
|
|
|
1432
1572
|
return /* @__PURE__ */ Z("div", {
|
|
1433
1573
|
className: "space-y-1.5",
|
|
1434
1574
|
children: [
|
|
1435
|
-
y && /* @__PURE__ */ Z(
|
|
1575
|
+
y && /* @__PURE__ */ Z(xt, {
|
|
1436
1576
|
htmlFor: ie,
|
|
1437
|
-
onClick:
|
|
1577
|
+
onClick: G,
|
|
1438
1578
|
className: Q("cursor-pointer", o && "text-muted-foreground"),
|
|
1439
|
-
children: [y,
|
|
1579
|
+
children: [y, J]
|
|
1440
1580
|
}),
|
|
1441
|
-
|
|
1581
|
+
be ? /* @__PURE__ */ Z(pn, {
|
|
1442
1582
|
open: R,
|
|
1443
|
-
onOpenChange:
|
|
1583
|
+
onOpenChange: ae,
|
|
1444
1584
|
modal: !1,
|
|
1445
|
-
children: [/* @__PURE__ */ X(
|
|
1585
|
+
children: [/* @__PURE__ */ X(mn, {
|
|
1446
1586
|
asChild: !0,
|
|
1447
1587
|
children: /* @__PURE__ */ Z("div", {
|
|
1448
1588
|
"aria-invalid": s,
|
|
1449
|
-
className: Q("flex rounded-md border border-input transition-colors",
|
|
1589
|
+
className: Q("flex rounded-md border border-input transition-colors", K ? "items-stretch" : "items-center overflow-hidden", xe, q, R && "border-ring ring-3 ring-ring/50", "aria-[invalid=true]:border-destructive aria-[invalid=true]:ring-3 aria-[invalid=true]:ring-destructive/20", o && "pointer-events-none cursor-not-allowed opacity-50"),
|
|
1450
1590
|
children: [
|
|
1451
1591
|
O && /* @__PURE__ */ X("div", {
|
|
1452
1592
|
className: "flex h-full shrink-0 items-center justify-center border-r border-input bg-muted/40 px-3 text-sm text-muted-foreground [&_svg]:size-4",
|
|
@@ -1463,21 +1603,21 @@ function hn({ options: e = [], groups: t = [], value: r, onValueChange: i, place
|
|
|
1463
1603
|
onClick: (e) => {
|
|
1464
1604
|
L && (e.preventDefault(), e.stopPropagation());
|
|
1465
1605
|
},
|
|
1466
|
-
className: Q("h-full flex-1 justify-between rounded-none border-0 px-3 py-1 font-normal text-foreground shadow-none hover:bg-transparent focus-visible:ring-0",
|
|
1606
|
+
className: Q("h-full flex-1 justify-between rounded-none border-0 px-3 py-1 font-normal text-foreground shadow-none hover:bg-transparent focus-visible:ring-0", K ? "items-start" : "items-center", u),
|
|
1467
1607
|
children: [Se, Ce]
|
|
1468
1608
|
}),
|
|
1469
|
-
|
|
1609
|
+
k && /* @__PURE__ */ X("div", {
|
|
1470
1610
|
className: "flex h-full shrink-0 items-center justify-center border-l border-input bg-muted/40 px-3 text-sm text-foreground [&_svg]:size-4",
|
|
1471
|
-
children:
|
|
1611
|
+
children: k
|
|
1472
1612
|
})
|
|
1473
1613
|
]
|
|
1474
1614
|
})
|
|
1475
|
-
}),
|
|
1476
|
-
}) : /* @__PURE__ */ Z(
|
|
1615
|
+
}), Te]
|
|
1616
|
+
}) : /* @__PURE__ */ Z(pn, {
|
|
1477
1617
|
open: R,
|
|
1478
|
-
onOpenChange:
|
|
1618
|
+
onOpenChange: ae,
|
|
1479
1619
|
modal: !1,
|
|
1480
|
-
children: [/* @__PURE__ */ X(
|
|
1620
|
+
children: [/* @__PURE__ */ X(mn, {
|
|
1481
1621
|
asChild: !0,
|
|
1482
1622
|
children: /* @__PURE__ */ Z($, {
|
|
1483
1623
|
id: ie,
|
|
@@ -1491,27 +1631,27 @@ function hn({ options: e = [], groups: t = [], value: r, onValueChange: i, place
|
|
|
1491
1631
|
onClick: (e) => {
|
|
1492
1632
|
L && (e.preventDefault(), e.stopPropagation());
|
|
1493
1633
|
},
|
|
1494
|
-
className: Q("h-auto w-full justify-between px-3 py-1 font-normal text-foreground",
|
|
1634
|
+
className: Q("h-auto w-full justify-between px-3 py-1 font-normal text-foreground", q, K ? "items-start" : "items-center", xe, R && "border-ring ring-3 ring-ring/50", u),
|
|
1495
1635
|
children: [Se, Ce]
|
|
1496
1636
|
})
|
|
1497
|
-
}),
|
|
1637
|
+
}), Te]
|
|
1498
1638
|
}),
|
|
1499
1639
|
s && c && /* @__PURE__ */ X("p", {
|
|
1500
1640
|
className: "text-xs leading-5 text-destructive",
|
|
1501
1641
|
children: c
|
|
1502
1642
|
}),
|
|
1503
|
-
x && /* @__PURE__ */ X(
|
|
1643
|
+
x && /* @__PURE__ */ X(Ct, { children: x })
|
|
1504
1644
|
]
|
|
1505
1645
|
});
|
|
1506
1646
|
}
|
|
1507
1647
|
//#endregion
|
|
1508
1648
|
//#region src/components/ui/checkbox.tsx
|
|
1509
|
-
function
|
|
1510
|
-
return /* @__PURE__ */ X(
|
|
1649
|
+
function Sn({ className: e, ...t }) {
|
|
1650
|
+
return /* @__PURE__ */ X(be.Root, {
|
|
1511
1651
|
"data-slot": "checkbox",
|
|
1512
1652
|
className: Q("peer relative flex size-4 shrink-0 items-center justify-center rounded-[4px] border border-input transition-colors outline-none group-has-disabled/field:opacity-50 after:absolute after:-inset-x-3 after:-inset-y-2 focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 aria-invalid:aria-checked:border-primary dark:bg-input/30 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 data-checked:border-primary data-checked:bg-primary data-checked:text-primary-foreground dark:data-checked:bg-primary", e),
|
|
1513
1653
|
...t,
|
|
1514
|
-
children: /* @__PURE__ */ X(
|
|
1654
|
+
children: /* @__PURE__ */ X(be.Indicator, {
|
|
1515
1655
|
"data-slot": "checkbox-indicator",
|
|
1516
1656
|
className: "grid place-content-center text-current transition-none [&>svg]:size-3.5",
|
|
1517
1657
|
children: /* @__PURE__ */ X(v, {})
|
|
@@ -1520,7 +1660,7 @@ function gn({ className: e, ...t }) {
|
|
|
1520
1660
|
}
|
|
1521
1661
|
//#endregion
|
|
1522
1662
|
//#region src/components/ui/table.tsx
|
|
1523
|
-
function
|
|
1663
|
+
function Cn({ className: e, ...t }) {
|
|
1524
1664
|
return /* @__PURE__ */ X("div", {
|
|
1525
1665
|
"data-slot": "table-container",
|
|
1526
1666
|
className: "relative w-full overflow-x-auto",
|
|
@@ -1531,49 +1671,49 @@ function _n({ className: e, ...t }) {
|
|
|
1531
1671
|
})
|
|
1532
1672
|
});
|
|
1533
1673
|
}
|
|
1534
|
-
function
|
|
1674
|
+
function wn({ className: e, ...t }) {
|
|
1535
1675
|
return /* @__PURE__ */ X("thead", {
|
|
1536
1676
|
"data-slot": "table-header",
|
|
1537
1677
|
className: Q("[&_tr]:border-b", e),
|
|
1538
1678
|
...t
|
|
1539
1679
|
});
|
|
1540
1680
|
}
|
|
1541
|
-
function
|
|
1681
|
+
function Tn({ className: e, ...t }) {
|
|
1542
1682
|
return /* @__PURE__ */ X("tbody", {
|
|
1543
1683
|
"data-slot": "table-body",
|
|
1544
1684
|
className: Q("[&_tr:last-child]:border-0", e),
|
|
1545
1685
|
...t
|
|
1546
1686
|
});
|
|
1547
1687
|
}
|
|
1548
|
-
function
|
|
1688
|
+
function En({ className: e, ...t }) {
|
|
1549
1689
|
return /* @__PURE__ */ X("tfoot", {
|
|
1550
1690
|
"data-slot": "table-footer",
|
|
1551
1691
|
className: Q("border-t bg-muted/50 font-medium [&>tr]:last:border-b-0", e),
|
|
1552
1692
|
...t
|
|
1553
1693
|
});
|
|
1554
1694
|
}
|
|
1555
|
-
function
|
|
1695
|
+
function Dn({ className: e, ...t }) {
|
|
1556
1696
|
return /* @__PURE__ */ X("tr", {
|
|
1557
1697
|
"data-slot": "table-row",
|
|
1558
1698
|
className: Q("border-b transition-colors hover:bg-muted/50 has-aria-expanded:bg-muted/50 data-[state=selected]:bg-muted", e),
|
|
1559
1699
|
...t
|
|
1560
1700
|
});
|
|
1561
1701
|
}
|
|
1562
|
-
function
|
|
1702
|
+
function On({ className: e, ...t }) {
|
|
1563
1703
|
return /* @__PURE__ */ X("th", {
|
|
1564
1704
|
"data-slot": "table-head",
|
|
1565
1705
|
className: Q("h-10 px-2 text-left align-middle font-medium whitespace-nowrap text-foreground [&:has([role=checkbox])]:pr-0", e),
|
|
1566
1706
|
...t
|
|
1567
1707
|
});
|
|
1568
1708
|
}
|
|
1569
|
-
function
|
|
1709
|
+
function kn({ className: e, ...t }) {
|
|
1570
1710
|
return /* @__PURE__ */ X("td", {
|
|
1571
1711
|
"data-slot": "table-cell",
|
|
1572
1712
|
className: Q("p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0", e),
|
|
1573
1713
|
...t
|
|
1574
1714
|
});
|
|
1575
1715
|
}
|
|
1576
|
-
function
|
|
1716
|
+
function An({ className: e, ...t }) {
|
|
1577
1717
|
return /* @__PURE__ */ X("caption", {
|
|
1578
1718
|
"data-slot": "table-caption",
|
|
1579
1719
|
className: Q("mt-4 text-sm text-muted-foreground", e),
|
|
@@ -1582,12 +1722,12 @@ function wn({ className: e, ...t }) {
|
|
|
1582
1722
|
}
|
|
1583
1723
|
//#endregion
|
|
1584
1724
|
//#region src/components/custom/data-table.tsx
|
|
1585
|
-
var
|
|
1725
|
+
var jn = {
|
|
1586
1726
|
left: "text-left",
|
|
1587
1727
|
center: "text-center",
|
|
1588
1728
|
right: "text-right"
|
|
1589
1729
|
};
|
|
1590
|
-
function
|
|
1730
|
+
function Mn({ columns: e, data: t, getRowId: r = (e, t) => String(t), selectable: i = !1, selectedIds: a, onSelectionChange: o, rowActions: s, loading: c = !1, emptyMessage: l = "No results.", pagination: u = !1, pageSize: d = 25, pageSizeOptions: f = [
|
|
1591
1731
|
25,
|
|
1592
1732
|
50,
|
|
1593
1733
|
100,
|
|
@@ -1595,7 +1735,7 @@ function En({ columns: e, data: t, getRowId: r = (e, t) => String(t), selectable
|
|
|
1595
1735
|
], striped: p = !0, stickyHeader: m = !1, maxHeight: h, fillHeight: g = !1, onRowClick: _, className: v }) {
|
|
1596
1736
|
let y = n.useMemo(() => t.map((e, t) => r(e, t)), [t, r]), [b, C] = n.useState([]), E = a ?? b, D = (e) => {
|
|
1597
1737
|
a === void 0 && C(e), o?.(e);
|
|
1598
|
-
}, O = y.length > 0 && y.every((e) => E.includes(e)),
|
|
1738
|
+
}, O = y.length > 0 && y.every((e) => E.includes(e)), k = E.length > 0 && !O, A = () => D(O ? [] : y), ee = (e) => D(E.includes(e) ? E.filter((t) => t !== e) : [...E, e]), j = e.length + +!!i + +!!s, [M, N] = n.useState(d), [P, F] = n.useState(0), I = u ? Math.max(1, Math.ceil(t.length / M)) : 1, L = Math.min(P, I - 1), te = n.useMemo(() => {
|
|
1599
1739
|
let e = t.map((e, t) => ({
|
|
1600
1740
|
row: e,
|
|
1601
1741
|
index: t
|
|
@@ -1608,73 +1748,73 @@ function En({ columns: e, data: t, getRowId: r = (e, t) => String(t), selectable
|
|
|
1608
1748
|
u,
|
|
1609
1749
|
L,
|
|
1610
1750
|
M
|
|
1611
|
-
]), R = "px-4 py-3 first:pl-5 last:pr-5", ne = "px-4 first:pl-5 last:pr-5",
|
|
1751
|
+
]), R = "px-4 py-3 first:pl-5 last:pr-5", ne = "px-4 first:pl-5 last:pr-5", z = !g && h !== void 0 ? typeof h == "number" ? `${h}px` : h : void 0;
|
|
1612
1752
|
return /* @__PURE__ */ Z("div", {
|
|
1613
1753
|
className: Q("overflow-hidden rounded-lg border", u && "rounded-b-none border-b-0", (g || h !== void 0) && "flex min-h-0 flex-col [&_[data-slot=table-container]]:overflow-y-auto", g && "min-h-0 flex-1 [&_[data-slot=table-container]]:min-h-0 [&_[data-slot=table-container]]:flex-1", !g && h !== void 0 && "[&_[data-slot=table-container]]:max-h-(--dt-max-h)", v),
|
|
1614
|
-
style:
|
|
1615
|
-
children: [/* @__PURE__ */ Z(
|
|
1754
|
+
style: z ? { "--dt-max-h": z } : void 0,
|
|
1755
|
+
children: [/* @__PURE__ */ Z(Cn, { children: [/* @__PURE__ */ X(wn, {
|
|
1616
1756
|
className: Q("bg-muted/60", m && Q("sticky top-0 z-10 [&_th]:border-b [&_th]:bg-muted/95 [&_th]:backdrop-blur supports-backdrop-filter:[&_th]:bg-muted/80", "[&_th:first-child]:rounded-tl-lg [&_th:last-child]:rounded-tr-lg")),
|
|
1617
|
-
children: /* @__PURE__ */ Z(
|
|
1757
|
+
children: /* @__PURE__ */ Z(Dn, {
|
|
1618
1758
|
className: "hover:bg-transparent",
|
|
1619
1759
|
children: [
|
|
1620
|
-
i && /* @__PURE__ */ X(
|
|
1760
|
+
i && /* @__PURE__ */ X(On, {
|
|
1621
1761
|
className: Q("w-10", ne),
|
|
1622
|
-
children: /* @__PURE__ */ X(
|
|
1762
|
+
children: /* @__PURE__ */ X(Sn, {
|
|
1623
1763
|
"aria-label": "Select all rows",
|
|
1624
|
-
checked: O ? !0 :
|
|
1625
|
-
onCheckedChange:
|
|
1764
|
+
checked: O ? !0 : k ? "indeterminate" : !1,
|
|
1765
|
+
onCheckedChange: A
|
|
1626
1766
|
})
|
|
1627
1767
|
}),
|
|
1628
|
-
e.map((e) => /* @__PURE__ */ X(
|
|
1768
|
+
e.map((e) => /* @__PURE__ */ X(On, {
|
|
1629
1769
|
style: e.width ? { width: e.width } : void 0,
|
|
1630
|
-
className: Q("h-11 text-xs font-semibold tracking-wide text-foreground uppercase", ne, e.align &&
|
|
1770
|
+
className: Q("h-11 text-xs font-semibold tracking-wide text-foreground uppercase", ne, e.align && jn[e.align], e.className, e.headerClassName),
|
|
1631
1771
|
children: e.header
|
|
1632
1772
|
}, e.key)),
|
|
1633
|
-
s && /* @__PURE__ */ X(
|
|
1773
|
+
s && /* @__PURE__ */ X(On, { className: "w-12" })
|
|
1634
1774
|
]
|
|
1635
1775
|
})
|
|
1636
|
-
}), /* @__PURE__ */ X(
|
|
1776
|
+
}), /* @__PURE__ */ X(Tn, { children: c ? /* @__PURE__ */ X(Dn, {
|
|
1637
1777
|
className: "hover:bg-transparent",
|
|
1638
|
-
children: /* @__PURE__ */ X(
|
|
1778
|
+
children: /* @__PURE__ */ X(kn, {
|
|
1639
1779
|
colSpan: j,
|
|
1640
1780
|
className: "h-28 text-center",
|
|
1641
1781
|
children: /* @__PURE__ */ Z("span", {
|
|
1642
1782
|
className: "inline-flex items-center gap-2 text-muted-foreground",
|
|
1643
|
-
children: [/* @__PURE__ */ X(
|
|
1783
|
+
children: [/* @__PURE__ */ X(qe, { className: "size-4" }), " Loading…"]
|
|
1644
1784
|
})
|
|
1645
1785
|
})
|
|
1646
|
-
}) : t.length === 0 ? /* @__PURE__ */ X(
|
|
1786
|
+
}) : t.length === 0 ? /* @__PURE__ */ X(Dn, {
|
|
1647
1787
|
className: "hover:bg-transparent",
|
|
1648
|
-
children: /* @__PURE__ */ X(
|
|
1788
|
+
children: /* @__PURE__ */ X(kn, {
|
|
1649
1789
|
colSpan: j,
|
|
1650
1790
|
className: "h-28 text-center text-muted-foreground",
|
|
1651
1791
|
children: l
|
|
1652
1792
|
})
|
|
1653
1793
|
}) : te.map(({ row: t, index: n }) => {
|
|
1654
1794
|
let r = y[n], a = E.includes(r);
|
|
1655
|
-
return /* @__PURE__ */ Z(
|
|
1795
|
+
return /* @__PURE__ */ Z(Dn, {
|
|
1656
1796
|
"data-state": a ? "selected" : void 0,
|
|
1657
1797
|
onClick: _ ? () => _(t) : void 0,
|
|
1658
1798
|
className: Q(p && !a && "odd:bg-muted/40", a && "bg-primary/10 shadow-[inset_3px_0_0_0_var(--primary)] hover:bg-primary/15", _ && "cursor-pointer"),
|
|
1659
1799
|
children: [
|
|
1660
|
-
i && /* @__PURE__ */ X(
|
|
1800
|
+
i && /* @__PURE__ */ X(kn, {
|
|
1661
1801
|
className: Q("w-10", R),
|
|
1662
1802
|
onClick: (e) => e.stopPropagation(),
|
|
1663
|
-
children: /* @__PURE__ */ X(
|
|
1803
|
+
children: /* @__PURE__ */ X(Sn, {
|
|
1664
1804
|
"aria-label": "Select row",
|
|
1665
1805
|
checked: a,
|
|
1666
|
-
onCheckedChange: () =>
|
|
1806
|
+
onCheckedChange: () => ee(r)
|
|
1667
1807
|
})
|
|
1668
1808
|
}),
|
|
1669
|
-
e.map((e) => /* @__PURE__ */ X(
|
|
1809
|
+
e.map((e) => /* @__PURE__ */ X(kn, {
|
|
1670
1810
|
style: e.width ? { width: e.width } : void 0,
|
|
1671
|
-
className: Q(R, e.align &&
|
|
1811
|
+
className: Q(R, e.align && jn[e.align], e.className),
|
|
1672
1812
|
children: e.cell ? e.cell(t, n) : String(t[e.key] ?? "")
|
|
1673
1813
|
}, e.key)),
|
|
1674
|
-
s && /* @__PURE__ */ X(
|
|
1814
|
+
s && /* @__PURE__ */ X(kn, {
|
|
1675
1815
|
className: "w-12 pr-3 text-right",
|
|
1676
1816
|
onClick: (e) => e.stopPropagation(),
|
|
1677
|
-
children: /* @__PURE__ */ X(
|
|
1817
|
+
children: /* @__PURE__ */ X(ft, { items: s(t) })
|
|
1678
1818
|
})
|
|
1679
1819
|
]
|
|
1680
1820
|
}, r);
|
|
@@ -1700,7 +1840,7 @@ function En({ columns: e, data: t, getRowId: r = (e, t) => String(t), selectable
|
|
|
1700
1840
|
children: [/* @__PURE__ */ X("span", {
|
|
1701
1841
|
className: "whitespace-nowrap",
|
|
1702
1842
|
children: "Rows per page"
|
|
1703
|
-
}), /* @__PURE__ */ X(
|
|
1843
|
+
}), /* @__PURE__ */ X(xn, {
|
|
1704
1844
|
size: "sm",
|
|
1705
1845
|
className: "w-20",
|
|
1706
1846
|
value: String(M),
|
|
@@ -1756,26 +1896,26 @@ function En({ columns: e, data: t, getRowId: r = (e, t) => String(t), selectable
|
|
|
1756
1896
|
}
|
|
1757
1897
|
//#endregion
|
|
1758
1898
|
//#region src/components/custom/form-dialog.tsx
|
|
1759
|
-
function
|
|
1760
|
-
return /* @__PURE__ */ X(
|
|
1899
|
+
function Nn({ children: e, title: t, open: n, onClose: r, description: i, notDismissable: a, footer: o, className: s }) {
|
|
1900
|
+
return /* @__PURE__ */ X(Lt, {
|
|
1761
1901
|
open: n,
|
|
1762
1902
|
onOpenChange: a ? void 0 : (e) => !e && r(),
|
|
1763
|
-
children: /* @__PURE__ */ X(
|
|
1903
|
+
children: /* @__PURE__ */ X(Ht, {
|
|
1764
1904
|
showCloseButton: !1,
|
|
1765
1905
|
className: Q("max-h-[75vh] gap-0 p-0 sm:max-w-2xl", s),
|
|
1766
1906
|
children: /* @__PURE__ */ Z("div", {
|
|
1767
1907
|
className: "flex max-h-[75vh] flex-col",
|
|
1768
1908
|
children: [
|
|
1769
|
-
t && /* @__PURE__ */ X(
|
|
1909
|
+
t && /* @__PURE__ */ X(Ut, {
|
|
1770
1910
|
className: "flex-shrink-0 border-b border-border p-6 pb-4",
|
|
1771
1911
|
children: /* @__PURE__ */ Z("div", {
|
|
1772
1912
|
className: "flex items-start justify-between gap-4",
|
|
1773
1913
|
children: [/* @__PURE__ */ Z("div", {
|
|
1774
1914
|
className: "flex flex-col gap-1",
|
|
1775
|
-
children: [/* @__PURE__ */ X(
|
|
1915
|
+
children: [/* @__PURE__ */ X(Gt, {
|
|
1776
1916
|
className: "text-left text-xl font-semibold",
|
|
1777
1917
|
children: t
|
|
1778
|
-
}), i && /* @__PURE__ */ X(
|
|
1918
|
+
}), i && /* @__PURE__ */ X(Kt, {
|
|
1779
1919
|
className: "text-left text-muted-foreground",
|
|
1780
1920
|
children: i
|
|
1781
1921
|
})]
|
|
@@ -1788,7 +1928,7 @@ function Dn({ children: e, title: t, open: n, onClose: r, description: i, notDis
|
|
|
1788
1928
|
onClick: (e) => {
|
|
1789
1929
|
e.preventDefault(), e.stopPropagation(), r();
|
|
1790
1930
|
},
|
|
1791
|
-
children: /* @__PURE__ */ X(
|
|
1931
|
+
children: /* @__PURE__ */ X(U, {})
|
|
1792
1932
|
})]
|
|
1793
1933
|
})
|
|
1794
1934
|
}),
|
|
@@ -1796,7 +1936,7 @@ function Dn({ children: e, title: t, open: n, onClose: r, description: i, notDis
|
|
|
1796
1936
|
className: "flex-1 overflow-y-auto p-6",
|
|
1797
1937
|
children: e
|
|
1798
1938
|
}),
|
|
1799
|
-
o && /* @__PURE__ */ X(
|
|
1939
|
+
o && /* @__PURE__ */ X(Wt, {
|
|
1800
1940
|
className: "m-0 flex-shrink-0 rounded-none border-t border-border bg-transparent p-6 pt-4",
|
|
1801
1941
|
children: o
|
|
1802
1942
|
})
|
|
@@ -1807,19 +1947,19 @@ function Dn({ children: e, title: t, open: n, onClose: r, description: i, notDis
|
|
|
1807
1947
|
}
|
|
1808
1948
|
//#endregion
|
|
1809
1949
|
//#region src/components/ui/radio-group.tsx
|
|
1810
|
-
function
|
|
1811
|
-
return /* @__PURE__ */ X(
|
|
1950
|
+
function Pn({ className: e, ...t }) {
|
|
1951
|
+
return /* @__PURE__ */ X(Te.Root, {
|
|
1812
1952
|
"data-slot": "radio-group",
|
|
1813
1953
|
className: Q("grid w-full gap-2", e),
|
|
1814
1954
|
...t
|
|
1815
1955
|
});
|
|
1816
1956
|
}
|
|
1817
|
-
function
|
|
1818
|
-
return /* @__PURE__ */ X(
|
|
1957
|
+
function Fn({ className: e, ...t }) {
|
|
1958
|
+
return /* @__PURE__ */ X(Te.Item, {
|
|
1819
1959
|
"data-slot": "radio-group-item",
|
|
1820
1960
|
className: Q("group/radio-group-item peer relative flex aspect-square size-4 shrink-0 rounded-full border border-input outline-none after:absolute after:-inset-x-3 after:-inset-y-2 focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 disabled:cursor-not-allowed disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 aria-invalid:aria-checked:border-primary dark:bg-input/30 dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 data-checked:border-primary data-checked:bg-primary data-checked:text-primary-foreground dark:data-checked:bg-primary", e),
|
|
1821
1961
|
...t,
|
|
1822
|
-
children: /* @__PURE__ */ X(
|
|
1962
|
+
children: /* @__PURE__ */ X(Te.Indicator, {
|
|
1823
1963
|
"data-slot": "radio-group-indicator",
|
|
1824
1964
|
className: "flex size-4 items-center justify-center",
|
|
1825
1965
|
children: /* @__PURE__ */ X("span", { className: "absolute top-1/2 left-1/2 size-2 -translate-x-1/2 -translate-y-1/2 rounded-full bg-primary-foreground" })
|
|
@@ -1828,9 +1968,9 @@ function kn({ className: e, ...t }) {
|
|
|
1828
1968
|
}
|
|
1829
1969
|
//#endregion
|
|
1830
1970
|
//#region src/components/custom/card-radio-group.tsx
|
|
1831
|
-
function
|
|
1971
|
+
function In({ items: e, indicatorPosition: t = "end", className: r, cardClassName: i, ...a }) {
|
|
1832
1972
|
let o = n.useId();
|
|
1833
|
-
return /* @__PURE__ */ X(
|
|
1973
|
+
return /* @__PURE__ */ X(Pn, {
|
|
1834
1974
|
className: Q("gap-2", r),
|
|
1835
1975
|
...a,
|
|
1836
1976
|
children: e.map((e, n) => {
|
|
@@ -1838,7 +1978,7 @@ function An({ items: e, indicatorPosition: t = "end", className: r, cardClassNam
|
|
|
1838
1978
|
return /* @__PURE__ */ Z("label", {
|
|
1839
1979
|
htmlFor: r,
|
|
1840
1980
|
className: Q("flex w-full items-start gap-3 rounded-md border border-input p-4 shadow-xs transition-colors", "has-data-[state=checked]:border-primary/50", e.disabled ? "cursor-not-allowed opacity-60" : "cursor-pointer", i),
|
|
1841
|
-
children: [/* @__PURE__ */ X(
|
|
1981
|
+
children: [/* @__PURE__ */ X(Fn, {
|
|
1842
1982
|
id: r,
|
|
1843
1983
|
value: e.value,
|
|
1844
1984
|
disabled: e.disabled,
|
|
@@ -1871,75 +2011,75 @@ function An({ items: e, indicatorPosition: t = "end", className: r, cardClassNam
|
|
|
1871
2011
|
}
|
|
1872
2012
|
//#endregion
|
|
1873
2013
|
//#region src/components/ui/alert-dialog.tsx
|
|
1874
|
-
function
|
|
2014
|
+
function Ln({ ...e }) {
|
|
1875
2015
|
return /* @__PURE__ */ X(G.Root, {
|
|
1876
2016
|
"data-slot": "alert-dialog",
|
|
1877
2017
|
...e
|
|
1878
2018
|
});
|
|
1879
2019
|
}
|
|
1880
|
-
function
|
|
2020
|
+
function Rn({ ...e }) {
|
|
1881
2021
|
return /* @__PURE__ */ X(G.Trigger, {
|
|
1882
2022
|
"data-slot": "alert-dialog-trigger",
|
|
1883
2023
|
...e
|
|
1884
2024
|
});
|
|
1885
2025
|
}
|
|
1886
|
-
function
|
|
2026
|
+
function zn({ ...e }) {
|
|
1887
2027
|
return /* @__PURE__ */ X(G.Portal, {
|
|
1888
2028
|
"data-slot": "alert-dialog-portal",
|
|
1889
2029
|
...e
|
|
1890
2030
|
});
|
|
1891
2031
|
}
|
|
1892
|
-
function
|
|
2032
|
+
function Bn({ className: e, ...t }) {
|
|
1893
2033
|
return /* @__PURE__ */ X(G.Overlay, {
|
|
1894
2034
|
"data-slot": "alert-dialog-overlay",
|
|
1895
2035
|
className: Q("fixed inset-0 z-50 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs data-open:animate-in data-open:fade-in-0 data-closed:animate-out data-closed:fade-out-0", e),
|
|
1896
2036
|
...t
|
|
1897
2037
|
});
|
|
1898
2038
|
}
|
|
1899
|
-
function
|
|
1900
|
-
return /* @__PURE__ */ Z(
|
|
2039
|
+
function Vn({ className: e, size: t = "default", ...n }) {
|
|
2040
|
+
return /* @__PURE__ */ Z(zn, { children: [/* @__PURE__ */ X(Bn, {}), /* @__PURE__ */ X(G.Content, {
|
|
1901
2041
|
"data-slot": "alert-dialog-content",
|
|
1902
2042
|
"data-size": t,
|
|
1903
2043
|
className: Q("group/alert-dialog-content fixed top-1/2 left-1/2 z-50 grid w-full -translate-x-1/2 -translate-y-1/2 gap-4 rounded-xl bg-popover p-4 text-popover-foreground ring-1 ring-foreground/10 duration-100 outline-none data-[size=default]:max-w-xs data-[size=sm]:max-w-xs data-[size=default]:sm:max-w-sm data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95", e),
|
|
1904
2044
|
...n
|
|
1905
2045
|
})] });
|
|
1906
2046
|
}
|
|
1907
|
-
function
|
|
2047
|
+
function Hn({ className: e, ...t }) {
|
|
1908
2048
|
return /* @__PURE__ */ X("div", {
|
|
1909
2049
|
"data-slot": "alert-dialog-header",
|
|
1910
2050
|
className: Q("grid grid-rows-[auto_1fr] place-items-center gap-1.5 text-center has-data-[slot=alert-dialog-media]:grid-rows-[auto_auto_1fr] has-data-[slot=alert-dialog-media]:gap-x-4 sm:group-data-[size=default]/alert-dialog-content:place-items-start sm:group-data-[size=default]/alert-dialog-content:text-left sm:group-data-[size=default]/alert-dialog-content:has-data-[slot=alert-dialog-media]:grid-rows-[auto_1fr]", e),
|
|
1911
2051
|
...t
|
|
1912
2052
|
});
|
|
1913
2053
|
}
|
|
1914
|
-
function
|
|
2054
|
+
function Un({ className: e, ...t }) {
|
|
1915
2055
|
return /* @__PURE__ */ X("div", {
|
|
1916
2056
|
"data-slot": "alert-dialog-footer",
|
|
1917
2057
|
className: Q("-mx-4 -mb-4 flex flex-col-reverse gap-2 rounded-b-xl border-t bg-muted/50 p-4 group-data-[size=sm]/alert-dialog-content:grid group-data-[size=sm]/alert-dialog-content:grid-cols-2 sm:flex-row sm:justify-end", e),
|
|
1918
2058
|
...t
|
|
1919
2059
|
});
|
|
1920
2060
|
}
|
|
1921
|
-
function
|
|
2061
|
+
function Wn({ className: e, ...t }) {
|
|
1922
2062
|
return /* @__PURE__ */ X("div", {
|
|
1923
2063
|
"data-slot": "alert-dialog-media",
|
|
1924
2064
|
className: Q("mb-2 inline-flex size-10 items-center justify-center rounded-md bg-muted sm:group-data-[size=default]/alert-dialog-content:row-span-2 *:[svg:not([class*='size-'])]:size-6", e),
|
|
1925
2065
|
...t
|
|
1926
2066
|
});
|
|
1927
2067
|
}
|
|
1928
|
-
function
|
|
2068
|
+
function Gn({ className: e, ...t }) {
|
|
1929
2069
|
return /* @__PURE__ */ X(G.Title, {
|
|
1930
2070
|
"data-slot": "alert-dialog-title",
|
|
1931
2071
|
className: Q("text-base font-medium sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2", e),
|
|
1932
2072
|
...t
|
|
1933
2073
|
});
|
|
1934
2074
|
}
|
|
1935
|
-
function
|
|
2075
|
+
function Kn({ className: e, ...t }) {
|
|
1936
2076
|
return /* @__PURE__ */ X(G.Description, {
|
|
1937
2077
|
"data-slot": "alert-dialog-description",
|
|
1938
2078
|
className: Q("text-sm text-balance text-muted-foreground md:text-pretty *:[a]:underline *:[a]:underline-offset-3 *:[a]:hover:text-foreground", e),
|
|
1939
2079
|
...t
|
|
1940
2080
|
});
|
|
1941
2081
|
}
|
|
1942
|
-
function
|
|
2082
|
+
function qn({ className: e, variant: t = "default", size: n = "default", ...r }) {
|
|
1943
2083
|
return /* @__PURE__ */ X($, {
|
|
1944
2084
|
variant: t,
|
|
1945
2085
|
size: n,
|
|
@@ -1951,7 +2091,7 @@ function Vn({ className: e, variant: t = "default", size: n = "default", ...r })
|
|
|
1951
2091
|
})
|
|
1952
2092
|
});
|
|
1953
2093
|
}
|
|
1954
|
-
function
|
|
2094
|
+
function Jn({ className: e, variant: t = "outline", size: n = "default", ...r }) {
|
|
1955
2095
|
return /* @__PURE__ */ X($, {
|
|
1956
2096
|
variant: t,
|
|
1957
2097
|
size: n,
|
|
@@ -1965,7 +2105,7 @@ function Hn({ className: e, variant: t = "outline", size: n = "default", ...r })
|
|
|
1965
2105
|
}
|
|
1966
2106
|
//#endregion
|
|
1967
2107
|
//#region src/components/custom/confirm-prompt.tsx
|
|
1968
|
-
function
|
|
2108
|
+
function Yn({ show: e, title: t = "Are you absolutely sure?", message: r = "This action cannot be undone. This will permanently delete and remove your data from our servers.", onConfirm: i, onCancel: a, loading: o, disabled: s, validate: c, item: l = "CONFIRM", confirmLabel: u = "Confirm", cancelLabel: d = "Cancel" }) {
|
|
1969
2109
|
let [f, p] = n.useState(""), [h, g] = n.useState(!1), _ = o ?? h, v = s || _ || !(!c || f === l), y = () => {
|
|
1970
2110
|
_ || (p(""), a());
|
|
1971
2111
|
}, b = async () => {
|
|
@@ -1975,24 +2115,24 @@ function Un({ show: e, title: t = "Are you absolutely sure?", message: r = "This
|
|
|
1975
2115
|
g(!1);
|
|
1976
2116
|
}
|
|
1977
2117
|
};
|
|
1978
|
-
return /* @__PURE__ */ X(
|
|
2118
|
+
return /* @__PURE__ */ X(Ln, {
|
|
1979
2119
|
open: !!e,
|
|
1980
2120
|
onOpenChange: (e) => {
|
|
1981
2121
|
e || y();
|
|
1982
2122
|
},
|
|
1983
|
-
children: /* @__PURE__ */ Z(
|
|
2123
|
+
children: /* @__PURE__ */ Z(Vn, {
|
|
1984
2124
|
className: "sm:max-w-lg!",
|
|
1985
2125
|
children: [
|
|
1986
|
-
/* @__PURE__ */ Z(
|
|
2126
|
+
/* @__PURE__ */ Z(Hn, { children: [/* @__PURE__ */ Z(Gn, {
|
|
1987
2127
|
className: "flex items-center gap-2",
|
|
1988
2128
|
children: [/* @__PURE__ */ X("div", {
|
|
1989
2129
|
className: "flex size-8 shrink-0 items-center justify-center rounded-full bg-amber-100 dark:bg-amber-900/30",
|
|
1990
2130
|
children: /* @__PURE__ */ X(m, { className: "size-5 text-amber-600 dark:text-amber-500" })
|
|
1991
2131
|
}), t]
|
|
1992
|
-
}), r != null && /* @__PURE__ */ X(
|
|
2132
|
+
}), r != null && /* @__PURE__ */ X(Kn, { children: r })] }),
|
|
1993
2133
|
c && /* @__PURE__ */ Z("div", {
|
|
1994
2134
|
className: "space-y-1",
|
|
1995
|
-
children: [/* @__PURE__ */ Z(
|
|
2135
|
+
children: [/* @__PURE__ */ Z(Kn, { children: [
|
|
1996
2136
|
"To confirm, type",
|
|
1997
2137
|
" ",
|
|
1998
2138
|
/* @__PURE__ */ Z("span", {
|
|
@@ -2005,7 +2145,7 @@ function Un({ show: e, title: t = "Are you absolutely sure?", message: r = "This
|
|
|
2005
2145
|
}),
|
|
2006
2146
|
" ",
|
|
2007
2147
|
"in the box below"
|
|
2008
|
-
] }), /* @__PURE__ */ X(
|
|
2148
|
+
] }), /* @__PURE__ */ X(Dt, {
|
|
2009
2149
|
value: f,
|
|
2010
2150
|
onChange: (e) => p(e.target.value),
|
|
2011
2151
|
size: "sm",
|
|
@@ -2018,7 +2158,7 @@ function Un({ show: e, title: t = "Are you absolutely sure?", message: r = "This
|
|
|
2018
2158
|
}
|
|
2019
2159
|
})]
|
|
2020
2160
|
}),
|
|
2021
|
-
/* @__PURE__ */ Z(
|
|
2161
|
+
/* @__PURE__ */ Z(Un, {
|
|
2022
2162
|
className: "gap-2 space-x-0!",
|
|
2023
2163
|
children: [/* @__PURE__ */ X($, {
|
|
2024
2164
|
variant: "outline",
|
|
@@ -2037,56 +2177,25 @@ function Un({ show: e, title: t = "Are you absolutely sure?", message: r = "This
|
|
|
2037
2177
|
});
|
|
2038
2178
|
}
|
|
2039
2179
|
//#endregion
|
|
2040
|
-
//#region src/components/ui/badge.tsx
|
|
2041
|
-
var Wn = W("group/badge inline-flex h-5 w-fit shrink-0 items-center justify-center gap-1 overflow-hidden rounded-md border border-transparent px-2 py-0.5 text-xs font-medium whitespace-nowrap transition-all focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 has-data-[icon=inline-end]:pr-1.5 has-data-[icon=inline-start]:pl-1.5 aria-invalid:border-destructive aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 [&>svg]:pointer-events-none [&>svg]:size-3!", {
|
|
2042
|
-
variants: { variant: {
|
|
2043
|
-
default: "bg-primary text-primary-foreground [a]:hover:bg-primary/80",
|
|
2044
|
-
secondary: "bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80",
|
|
2045
|
-
destructive: "bg-destructive/10 text-destructive focus-visible:ring-destructive/20 dark:bg-destructive/20 dark:focus-visible:ring-destructive/40 [a]:hover:bg-destructive/20",
|
|
2046
|
-
outline: "border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground",
|
|
2047
|
-
ghost: "hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50",
|
|
2048
|
-
link: "text-primary underline-offset-4 hover:underline",
|
|
2049
|
-
red: "border-red/30 bg-red/10 text-red",
|
|
2050
|
-
orange: "border-orange/30 bg-orange/10 text-orange",
|
|
2051
|
-
yellow: "border-yellow/30 bg-yellow/10 text-yellow",
|
|
2052
|
-
green: "border-green/30 bg-green/10 text-green",
|
|
2053
|
-
teal: "border-teal/30 bg-teal/10 text-teal",
|
|
2054
|
-
cyan: "border-cyan/30 bg-cyan/10 text-cyan",
|
|
2055
|
-
blue: "border-blue/30 bg-blue/10 text-blue",
|
|
2056
|
-
purple: "border-purple/30 bg-purple/10 text-purple",
|
|
2057
|
-
pink: "border-pink/30 bg-pink/10 text-pink",
|
|
2058
|
-
gray: "border-gray/30 bg-gray/10 text-gray"
|
|
2059
|
-
} },
|
|
2060
|
-
defaultVariants: { variant: "default" }
|
|
2061
|
-
});
|
|
2062
|
-
function Gn({ className: e, variant: t = "default", asChild: n = !1, ...r }) {
|
|
2063
|
-
return /* @__PURE__ */ X(n ? De.Root : "span", {
|
|
2064
|
-
"data-slot": "badge",
|
|
2065
|
-
"data-variant": t,
|
|
2066
|
-
className: Q(Wn({ variant: t }), e),
|
|
2067
|
-
...r
|
|
2068
|
-
});
|
|
2069
|
-
}
|
|
2070
|
-
//#endregion
|
|
2071
2180
|
//#region src/components/custom/custom-tabs.tsx
|
|
2072
|
-
function
|
|
2073
|
-
return /* @__PURE__ */ X(
|
|
2181
|
+
function Xn({ type: e = "underline", items: t, className: n, listClassName: r, ...i }) {
|
|
2182
|
+
return /* @__PURE__ */ X(Ae.Root, {
|
|
2074
2183
|
"data-slot": "custom-tabs",
|
|
2075
2184
|
"data-type": e,
|
|
2076
2185
|
className: Q("flex flex-col gap-2", n),
|
|
2077
2186
|
...i,
|
|
2078
|
-
children: /* @__PURE__ */ X(
|
|
2187
|
+
children: /* @__PURE__ */ X(Ae.List, {
|
|
2079
2188
|
"data-slot": "custom-tabs-list",
|
|
2080
2189
|
className: Q("inline-flex items-center text-muted-foreground", e === "underline" && "w-full gap-6 border-b border-border", e === "pill" && "w-fit gap-1 rounded-lg bg-muted p-1", r),
|
|
2081
|
-
children: t.map((t) => /* @__PURE__ */ X(
|
|
2190
|
+
children: t.map((t) => /* @__PURE__ */ X(Zn, {
|
|
2082
2191
|
type: e,
|
|
2083
2192
|
item: t
|
|
2084
2193
|
}, t.value))
|
|
2085
2194
|
})
|
|
2086
2195
|
});
|
|
2087
2196
|
}
|
|
2088
|
-
function
|
|
2089
|
-
return /* @__PURE__ */ Z(
|
|
2197
|
+
function Zn({ type: e, item: t }) {
|
|
2198
|
+
return /* @__PURE__ */ Z(Ae.Trigger, {
|
|
2090
2199
|
"data-slot": "custom-tabs-trigger",
|
|
2091
2200
|
value: t.value,
|
|
2092
2201
|
disabled: t.disabled,
|
|
@@ -2098,7 +2207,7 @@ function qn({ type: e, item: t }) {
|
|
|
2098
2207
|
className: Q("inline-flex h-5 min-w-5 items-center justify-center rounded-full px-1.5 text-xs font-medium tabular-nums", "bg-muted text-muted-foreground", e === "underline" && "group-data-[state=active]/trigger:bg-primary/10 group-data-[state=active]/trigger:text-primary", e === "pill" && "group-data-[state=active]/trigger:bg-primary-foreground/20 group-data-[state=active]/trigger:text-primary-foreground"),
|
|
2099
2208
|
children: t.count
|
|
2100
2209
|
}),
|
|
2101
|
-
t.badge != null && /* @__PURE__ */ X(
|
|
2210
|
+
t.badge != null && /* @__PURE__ */ X(kt, {
|
|
2102
2211
|
className: "px-2 text-[10px]",
|
|
2103
2212
|
children: t.badge
|
|
2104
2213
|
})
|
|
@@ -2107,7 +2216,7 @@ function qn({ type: e, item: t }) {
|
|
|
2107
2216
|
}
|
|
2108
2217
|
//#endregion
|
|
2109
2218
|
//#region src/components/custom/data-cell.tsx
|
|
2110
|
-
function
|
|
2219
|
+
function Qn({ label: e, value: t, icon: n, layout: r = "stacked", className: i, ...a }) {
|
|
2111
2220
|
let o = n && /* @__PURE__ */ X("span", {
|
|
2112
2221
|
className: "shrink-0 text-muted-foreground [&_svg]:size-4",
|
|
2113
2222
|
children: n
|
|
@@ -2140,7 +2249,7 @@ function Jn({ label: e, value: t, icon: n, layout: r = "stacked", className: i,
|
|
|
2140
2249
|
}
|
|
2141
2250
|
//#endregion
|
|
2142
2251
|
//#region src/components/custom/def-row.tsx
|
|
2143
|
-
function
|
|
2252
|
+
function $n({ label: e, value: t, className: n, ...r }) {
|
|
2144
2253
|
return /* @__PURE__ */ Z("div", {
|
|
2145
2254
|
"data-slot": "def-row",
|
|
2146
2255
|
className: Q("flex items-center justify-between gap-4 py-2", n),
|
|
@@ -2156,53 +2265,53 @@ function Yn({ label: e, value: t, className: n, ...r }) {
|
|
|
2156
2265
|
}
|
|
2157
2266
|
//#endregion
|
|
2158
2267
|
//#region src/components/ui/empty.tsx
|
|
2159
|
-
function
|
|
2268
|
+
function er({ className: e, ...t }) {
|
|
2160
2269
|
return /* @__PURE__ */ X("div", {
|
|
2161
2270
|
"data-slot": "empty",
|
|
2162
2271
|
className: Q("flex min-w-0 flex-1 flex-col items-center justify-center gap-6 rounded-lg border-dashed p-6 text-center text-balance md:p-12", e),
|
|
2163
2272
|
...t
|
|
2164
2273
|
});
|
|
2165
2274
|
}
|
|
2166
|
-
function
|
|
2275
|
+
function tr({ className: e, ...t }) {
|
|
2167
2276
|
return /* @__PURE__ */ X("div", {
|
|
2168
2277
|
"data-slot": "empty-header",
|
|
2169
2278
|
className: Q("flex max-w-sm flex-col items-center gap-2 text-center", e),
|
|
2170
2279
|
...t
|
|
2171
2280
|
});
|
|
2172
2281
|
}
|
|
2173
|
-
var
|
|
2282
|
+
var nr = W("flex shrink-0 items-center justify-center mb-2 [&_svg:not([class*='size-'])]:size-6", {
|
|
2174
2283
|
variants: { variant: {
|
|
2175
2284
|
default: "bg-transparent",
|
|
2176
2285
|
icon: "bg-muted text-foreground flex size-10 shrink-0 items-center justify-center rounded-lg [&_svg:not([class*='size-'])]:size-6"
|
|
2177
2286
|
} },
|
|
2178
2287
|
defaultVariants: { variant: "default" }
|
|
2179
2288
|
});
|
|
2180
|
-
function
|
|
2289
|
+
function rr({ className: e, variant: t = "default", ...n }) {
|
|
2181
2290
|
return /* @__PURE__ */ X("div", {
|
|
2182
2291
|
"data-slot": "empty-icon",
|
|
2183
2292
|
"data-variant": t,
|
|
2184
|
-
className: Q(
|
|
2293
|
+
className: Q(nr({
|
|
2185
2294
|
variant: t,
|
|
2186
2295
|
className: e
|
|
2187
2296
|
})),
|
|
2188
2297
|
...n
|
|
2189
2298
|
});
|
|
2190
2299
|
}
|
|
2191
|
-
function
|
|
2300
|
+
function ir({ className: e, ...t }) {
|
|
2192
2301
|
return /* @__PURE__ */ X("div", {
|
|
2193
2302
|
"data-slot": "empty-title",
|
|
2194
2303
|
className: Q("text-lg font-medium tracking-tight", e),
|
|
2195
2304
|
...t
|
|
2196
2305
|
});
|
|
2197
2306
|
}
|
|
2198
|
-
function
|
|
2307
|
+
function ar({ className: e, ...t }) {
|
|
2199
2308
|
return /* @__PURE__ */ X("p", {
|
|
2200
2309
|
"data-slot": "empty-description",
|
|
2201
2310
|
className: Q("text-sm/relaxed text-muted-foreground [&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-foreground", e),
|
|
2202
2311
|
...t
|
|
2203
2312
|
});
|
|
2204
2313
|
}
|
|
2205
|
-
function
|
|
2314
|
+
function or({ className: e, ...t }) {
|
|
2206
2315
|
return /* @__PURE__ */ X("div", {
|
|
2207
2316
|
"data-slot": "empty-content",
|
|
2208
2317
|
className: Q("flex w-full max-w-sm min-w-0 flex-col items-center gap-4 text-sm text-balance", e),
|
|
@@ -2211,22 +2320,22 @@ function nr({ className: e, ...t }) {
|
|
|
2211
2320
|
}
|
|
2212
2321
|
//#endregion
|
|
2213
2322
|
//#region src/components/custom/empty-state.tsx
|
|
2214
|
-
function
|
|
2215
|
-
return /* @__PURE__ */ Z(
|
|
2323
|
+
function sr({ icon: e = /* @__PURE__ */ X(R, {}), mediaVariant: t = "icon", title: n = "No data", description: r, actions: i, ...a }) {
|
|
2324
|
+
return /* @__PURE__ */ Z(er, {
|
|
2216
2325
|
...a,
|
|
2217
|
-
children: [/* @__PURE__ */ Z(
|
|
2218
|
-
e != null && /* @__PURE__ */ X(
|
|
2326
|
+
children: [/* @__PURE__ */ Z(tr, { children: [
|
|
2327
|
+
e != null && /* @__PURE__ */ X(rr, {
|
|
2219
2328
|
variant: t,
|
|
2220
2329
|
children: e
|
|
2221
2330
|
}),
|
|
2222
|
-
n != null && /* @__PURE__ */ X(
|
|
2223
|
-
r != null && /* @__PURE__ */ X(
|
|
2224
|
-
] }), i != null && /* @__PURE__ */ X(
|
|
2331
|
+
n != null && /* @__PURE__ */ X(ir, { children: n }),
|
|
2332
|
+
r != null && /* @__PURE__ */ X(ar, { children: r })
|
|
2333
|
+
] }), i != null && /* @__PURE__ */ X(or, { children: i })]
|
|
2225
2334
|
});
|
|
2226
2335
|
}
|
|
2227
2336
|
//#endregion
|
|
2228
2337
|
//#region src/components/custom/faceted-filter.tsx
|
|
2229
|
-
function
|
|
2338
|
+
function cr(e) {
|
|
2230
2339
|
let { title: t, options: r, searchPlaceholder: i, searchable: a = !0, className: o } = e, s = e.mode !== "single", c = n.useMemo(() => new Set(s ? e.value : e.value ? [e.value] : []), [s, e.value]), l = (t) => {
|
|
2231
2340
|
if (s) {
|
|
2232
2341
|
let n = new Set(c);
|
|
@@ -2236,32 +2345,32 @@ function ir(e) {
|
|
|
2236
2345
|
n(c.has(t) ? null : t);
|
|
2237
2346
|
}
|
|
2238
2347
|
};
|
|
2239
|
-
return /* @__PURE__ */ Z(
|
|
2348
|
+
return /* @__PURE__ */ Z(pn, { children: [/* @__PURE__ */ X(mn, {
|
|
2240
2349
|
asChild: !0,
|
|
2241
2350
|
children: /* @__PURE__ */ Z($, {
|
|
2242
2351
|
variant: "outline",
|
|
2243
2352
|
className: Q("w-fit border-dashed", o),
|
|
2244
2353
|
children: [
|
|
2245
|
-
/* @__PURE__ */ X(
|
|
2354
|
+
/* @__PURE__ */ X(le, {}),
|
|
2246
2355
|
t,
|
|
2247
|
-
c.size > 0 && /* @__PURE__ */ Z(Y, { children: [/* @__PURE__ */ X(
|
|
2356
|
+
c.size > 0 && /* @__PURE__ */ Z(Y, { children: [/* @__PURE__ */ X(mt, {
|
|
2248
2357
|
orientation: "vertical",
|
|
2249
2358
|
className: "mx-0.5 h-4"
|
|
2250
|
-
}), /* @__PURE__ */ X(
|
|
2359
|
+
}), /* @__PURE__ */ X(kt, {
|
|
2251
2360
|
variant: "secondary",
|
|
2252
2361
|
className: "rounded-sm px-1 font-normal",
|
|
2253
2362
|
children: c.size
|
|
2254
2363
|
})] })
|
|
2255
2364
|
]
|
|
2256
2365
|
})
|
|
2257
|
-
}), /* @__PURE__ */ X(
|
|
2366
|
+
}), /* @__PURE__ */ X(hn, {
|
|
2258
2367
|
className: "w-56 p-0",
|
|
2259
2368
|
align: "start",
|
|
2260
|
-
children: /* @__PURE__ */ Z(
|
|
2261
|
-
/* @__PURE__ */ X(
|
|
2262
|
-
/* @__PURE__ */ X(
|
|
2369
|
+
children: /* @__PURE__ */ Z(rn, { children: [a && /* @__PURE__ */ X(on, { placeholder: i ?? t }), /* @__PURE__ */ Z(sn, { children: [
|
|
2370
|
+
/* @__PURE__ */ X(cn, { children: "No results found." }),
|
|
2371
|
+
/* @__PURE__ */ X(ln, { children: r.map((e) => {
|
|
2263
2372
|
let t = c.has(e.value);
|
|
2264
|
-
return /* @__PURE__ */ Z(
|
|
2373
|
+
return /* @__PURE__ */ Z(dn, {
|
|
2265
2374
|
onSelect: () => l(e.value),
|
|
2266
2375
|
children: [
|
|
2267
2376
|
/* @__PURE__ */ X("div", {
|
|
@@ -2280,7 +2389,7 @@ function ir(e) {
|
|
|
2280
2389
|
]
|
|
2281
2390
|
}, e.value);
|
|
2282
2391
|
}) }),
|
|
2283
|
-
c.size > 0 && /* @__PURE__ */ Z(Y, { children: [/* @__PURE__ */ X(
|
|
2392
|
+
c.size > 0 && /* @__PURE__ */ Z(Y, { children: [/* @__PURE__ */ X(un, {}), /* @__PURE__ */ X(ln, { children: /* @__PURE__ */ X(dn, {
|
|
2284
2393
|
onSelect: () => {
|
|
2285
2394
|
s ? e.onChange([]) : e.onChange(null);
|
|
2286
2395
|
},
|
|
@@ -2292,7 +2401,7 @@ function ir(e) {
|
|
|
2292
2401
|
}
|
|
2293
2402
|
//#endregion
|
|
2294
2403
|
//#region src/components/custom/list-card.tsx
|
|
2295
|
-
function
|
|
2404
|
+
function lr({ name: e, src: t, className: n }) {
|
|
2296
2405
|
let r = e.split(/\s+/).slice(0, 2).map((e) => e[0]?.toUpperCase() ?? "").join("");
|
|
2297
2406
|
return /* @__PURE__ */ Z("span", {
|
|
2298
2407
|
className: Q("flex min-w-0 items-center gap-1.5 text-xs text-muted-foreground", n),
|
|
@@ -2309,7 +2418,7 @@ function ar({ name: e, src: t, className: n }) {
|
|
|
2309
2418
|
})]
|
|
2310
2419
|
});
|
|
2311
2420
|
}
|
|
2312
|
-
function
|
|
2421
|
+
function ur({ icon: e, children: t, className: n }) {
|
|
2313
2422
|
return /* @__PURE__ */ Z("span", {
|
|
2314
2423
|
className: Q("inline-flex min-w-0 items-center gap-1.5 rounded-md border px-2 py-0.5 text-xs text-muted-foreground [&_svg]:size-3.5 [&_svg]:shrink-0 [&_svg]:opacity-70", n),
|
|
2315
2424
|
children: [e, /* @__PURE__ */ X("span", {
|
|
@@ -2318,8 +2427,8 @@ function or({ icon: e, children: t, className: n }) {
|
|
|
2318
2427
|
})]
|
|
2319
2428
|
});
|
|
2320
2429
|
}
|
|
2321
|
-
function
|
|
2322
|
-
let g = p != null, _ = s === "row", v = l ? /* @__PURE__ */ X(
|
|
2430
|
+
function dr({ title: e, description: t, media: n, badge: r, meta: i, footer: a, actions: o, layout: s = "stacked", variant: c = "default", selectable: l = !1, selected: u, onSelectedChange: d, active: f = !1, onClick: p, className: m, ...h }) {
|
|
2431
|
+
let g = p != null, _ = s === "row", v = l ? /* @__PURE__ */ X(Sn, {
|
|
2323
2432
|
checked: u,
|
|
2324
2433
|
onCheckedChange: (e) => d?.(e === !0),
|
|
2325
2434
|
onClick: (e) => e.stopPropagation(),
|
|
@@ -2329,11 +2438,11 @@ function sr({ title: e, description: t, media: n, badge: r, meta: i, footer: a,
|
|
|
2329
2438
|
src: n,
|
|
2330
2439
|
alt: "",
|
|
2331
2440
|
className: "size-12 shrink-0 rounded-md object-cover"
|
|
2332
|
-
}) : n, b = r == null ? null : typeof r == "string" || typeof r == "number" ? /* @__PURE__ */ X(
|
|
2441
|
+
}) : n, b = r == null ? null : typeof r == "string" || typeof r == "number" ? /* @__PURE__ */ X(kt, {
|
|
2333
2442
|
variant: "secondary",
|
|
2334
2443
|
className: "font-medium",
|
|
2335
2444
|
children: r
|
|
2336
|
-
}) : r, x = Array.isArray(o) ? /* @__PURE__ */ X(
|
|
2445
|
+
}) : r, x = Array.isArray(o) ? /* @__PURE__ */ X(ft, {
|
|
2337
2446
|
items: o,
|
|
2338
2447
|
align: "end"
|
|
2339
2448
|
}) : o, S = Q("rounded-xl border p-4 text-card-foreground transition-colors", c === "alt" ? "bg-muted/50" : "bg-card", g && "cursor-pointer hover:bg-accent/40 focus-visible:outline-none focus-visible:ring-[3px] focus-visible:ring-ring/50", f && "ring-2 ring-ring", m), C = {
|
|
@@ -2417,22 +2526,22 @@ function sr({ title: e, description: t, media: n, badge: r, meta: i, footer: a,
|
|
|
2417
2526
|
]
|
|
2418
2527
|
});
|
|
2419
2528
|
}
|
|
2420
|
-
var
|
|
2529
|
+
var fr = {
|
|
2421
2530
|
1: "grid-cols-1",
|
|
2422
2531
|
2: "grid-cols-1 sm:grid-cols-2",
|
|
2423
2532
|
3: "grid-cols-1 sm:grid-cols-2 lg:grid-cols-3",
|
|
2424
2533
|
4: "grid-cols-1 sm:grid-cols-2 lg:grid-cols-4"
|
|
2425
2534
|
};
|
|
2426
|
-
function
|
|
2535
|
+
function pr({ columns: e = 3, className: t, ...n }) {
|
|
2427
2536
|
return /* @__PURE__ */ X("div", {
|
|
2428
2537
|
"data-slot": "list-card-grid",
|
|
2429
|
-
className: Q("grid w-full gap-4",
|
|
2538
|
+
className: Q("grid w-full gap-4", fr[e], t),
|
|
2430
2539
|
...n
|
|
2431
2540
|
});
|
|
2432
2541
|
}
|
|
2433
2542
|
//#endregion
|
|
2434
2543
|
//#region src/components/custom/not-found.tsx
|
|
2435
|
-
function
|
|
2544
|
+
function mr({ code: e = "404", title: t = "Page Not Found", description: n = "Sorry, we couldn't find the page you're looking for. The page might have been moved, deleted, or never existed.", showBack: r = !0, onGoBack: i, homeHref: a = "/", homeLabel: o = "Go to Home", actions: s, className: c, ...l }) {
|
|
2436
2545
|
let u = () => {
|
|
2437
2546
|
i ? i() : typeof window < "u" && window.history.back();
|
|
2438
2547
|
};
|
|
@@ -2466,7 +2575,7 @@ function ur({ code: e = "404", title: t = "Page Not Found", description: n = "So
|
|
|
2466
2575
|
asChild: !0,
|
|
2467
2576
|
children: /* @__PURE__ */ Z("a", {
|
|
2468
2577
|
href: a,
|
|
2469
|
-
children: [/* @__PURE__ */ X(
|
|
2578
|
+
children: [/* @__PURE__ */ X(I, {}), o]
|
|
2470
2579
|
})
|
|
2471
2580
|
}),
|
|
2472
2581
|
s
|
|
@@ -2477,7 +2586,7 @@ function ur({ code: e = "404", title: t = "Page Not Found", description: n = "So
|
|
|
2477
2586
|
}
|
|
2478
2587
|
//#endregion
|
|
2479
2588
|
//#region src/components/custom/quick-stat.tsx
|
|
2480
|
-
function
|
|
2589
|
+
function hr({ icon: e, value: t, label: n, className: r, ...i }) {
|
|
2481
2590
|
return /* @__PURE__ */ Z("div", {
|
|
2482
2591
|
"data-slot": "quick-stat",
|
|
2483
2592
|
className: Q("flex items-center gap-1.5 text-sm", r),
|
|
@@ -2500,7 +2609,7 @@ function dr({ icon: e, value: t, label: n, className: r, ...i }) {
|
|
|
2500
2609
|
}
|
|
2501
2610
|
//#endregion
|
|
2502
2611
|
//#region src/components/ui/card.tsx
|
|
2503
|
-
var
|
|
2612
|
+
var gr = W("group/card flex flex-col gap-4 overflow-hidden rounded-xl py-4 text-sm ring-1 has-data-[slot=card-footer]:pb-0 has-[>img:first-child]:pt-0 data-[size=sm]:gap-3 data-[size=sm]:py-3 data-[size=sm]:has-data-[slot=card-footer]:pb-0 *:[img:first-child]:rounded-t-xl *:[img:last-child]:rounded-b-xl", {
|
|
2504
2613
|
variants: { variant: {
|
|
2505
2614
|
default: "bg-card text-card-foreground ring-foreground/10",
|
|
2506
2615
|
alt: "bg-muted/40 text-card-foreground ring-foreground/10",
|
|
@@ -2511,51 +2620,51 @@ var fr = W("group/card flex flex-col gap-4 overflow-hidden rounded-xl py-4 text-
|
|
|
2511
2620
|
} },
|
|
2512
2621
|
defaultVariants: { variant: "default" }
|
|
2513
2622
|
});
|
|
2514
|
-
function
|
|
2623
|
+
function _r({ className: e, size: t = "default", variant: n = "default", ...r }) {
|
|
2515
2624
|
return /* @__PURE__ */ X("div", {
|
|
2516
2625
|
"data-slot": "card",
|
|
2517
2626
|
"data-size": t,
|
|
2518
2627
|
"data-variant": n,
|
|
2519
|
-
className: Q(
|
|
2628
|
+
className: Q(gr({ variant: n }), e),
|
|
2520
2629
|
...r
|
|
2521
2630
|
});
|
|
2522
2631
|
}
|
|
2523
|
-
function
|
|
2632
|
+
function vr({ className: e, ...t }) {
|
|
2524
2633
|
return /* @__PURE__ */ X("div", {
|
|
2525
2634
|
"data-slot": "card-header",
|
|
2526
2635
|
className: Q("group/card-header @container/card-header grid auto-rows-min items-start gap-1 rounded-t-xl px-4 group-data-[size=sm]/card:px-3 has-data-[slot=card-action]:grid-cols-[1fr_auto] has-data-[slot=card-description]:grid-rows-[auto_auto] [.border-b]:pb-4 group-data-[size=sm]/card:[.border-b]:pb-3", e),
|
|
2527
2636
|
...t
|
|
2528
2637
|
});
|
|
2529
2638
|
}
|
|
2530
|
-
function
|
|
2639
|
+
function yr({ className: e, ...t }) {
|
|
2531
2640
|
return /* @__PURE__ */ X("div", {
|
|
2532
2641
|
"data-slot": "card-title",
|
|
2533
2642
|
className: Q("text-base leading-snug font-medium group-data-[size=sm]/card:text-sm", e),
|
|
2534
2643
|
...t
|
|
2535
2644
|
});
|
|
2536
2645
|
}
|
|
2537
|
-
function
|
|
2646
|
+
function br({ className: e, ...t }) {
|
|
2538
2647
|
return /* @__PURE__ */ X("div", {
|
|
2539
2648
|
"data-slot": "card-description",
|
|
2540
2649
|
className: Q("text-sm text-muted-foreground", e),
|
|
2541
2650
|
...t
|
|
2542
2651
|
});
|
|
2543
2652
|
}
|
|
2544
|
-
function
|
|
2653
|
+
function xr({ className: e, ...t }) {
|
|
2545
2654
|
return /* @__PURE__ */ X("div", {
|
|
2546
2655
|
"data-slot": "card-action",
|
|
2547
2656
|
className: Q("col-start-2 row-span-2 row-start-1 self-start justify-self-end", e),
|
|
2548
2657
|
...t
|
|
2549
2658
|
});
|
|
2550
2659
|
}
|
|
2551
|
-
function
|
|
2660
|
+
function Sr({ className: e, ...t }) {
|
|
2552
2661
|
return /* @__PURE__ */ X("div", {
|
|
2553
2662
|
"data-slot": "card-content",
|
|
2554
2663
|
className: Q("px-4 group-data-[size=sm]/card:px-3", e),
|
|
2555
2664
|
...t
|
|
2556
2665
|
});
|
|
2557
2666
|
}
|
|
2558
|
-
function
|
|
2667
|
+
function Cr({ className: e, ...t }) {
|
|
2559
2668
|
return /* @__PURE__ */ X("div", {
|
|
2560
2669
|
"data-slot": "card-footer",
|
|
2561
2670
|
className: Q("flex items-center rounded-b-xl border-t bg-muted/50 p-4 group-data-[size=sm]/card:p-3", e),
|
|
@@ -2564,7 +2673,7 @@ function yr({ className: e, ...t }) {
|
|
|
2564
2673
|
}
|
|
2565
2674
|
//#endregion
|
|
2566
2675
|
//#region src/components/custom/sensor-card.tsx
|
|
2567
|
-
var
|
|
2676
|
+
var wr = {
|
|
2568
2677
|
primary: {
|
|
2569
2678
|
text: "text-primary",
|
|
2570
2679
|
bg: "bg-primary"
|
|
@@ -2582,8 +2691,8 @@ var br = {
|
|
|
2582
2691
|
bg: "bg-muted-foreground"
|
|
2583
2692
|
}
|
|
2584
2693
|
};
|
|
2585
|
-
function
|
|
2586
|
-
let h =
|
|
2694
|
+
function Tr({ icon: e, mode: t, description: n, value: r, showAccent: i = !1, colorVariant: a = "primary", accentColorVariant: o, valueColorVariant: s, showPercentSign: c = !0, unit: l, stackedLayout: u = !1, variant: d = "default", onClick: f, onValueClick: p, className: m }) {
|
|
2695
|
+
let h = wr[a], g = wr[o ?? a], _ = s ? wr[s].text : "text-foreground", v = u ? "size-10" : "size-5", y = e ?? (t?.toLowerCase() === "auto" ? /* @__PURE__ */ X(de, { className: Q(v, h.text) }) : /* @__PURE__ */ X(D, { className: Q(v, h.text) })), b = /* @__PURE__ */ Z(Y, { children: [u ? /* @__PURE__ */ Z("div", {
|
|
2587
2696
|
className: "flex items-center gap-3",
|
|
2588
2697
|
children: [y, /* @__PURE__ */ Z("div", {
|
|
2589
2698
|
className: "flex flex-col",
|
|
@@ -2625,7 +2734,7 @@ function xr({ icon: e, mode: t, description: n, value: r, showAccent: i = !1, co
|
|
|
2625
2734
|
children: c && r !== "" && !isNaN(Number(r)) ? `${r}%` : r
|
|
2626
2735
|
})]
|
|
2627
2736
|
})] }), x = Q("flex w-full flex-row items-center justify-between gap-3", u ? "py-3 pr-3 pl-3" : "py-3.5 pr-3 pl-4", f && "cursor-pointer hover:bg-accent", m);
|
|
2628
|
-
return d === "standalone" ? /* @__PURE__ */ X(
|
|
2737
|
+
return d === "standalone" ? /* @__PURE__ */ X(_r, {
|
|
2629
2738
|
className: "p-0",
|
|
2630
2739
|
onClick: f,
|
|
2631
2740
|
children: /* @__PURE__ */ X("div", {
|
|
@@ -2640,39 +2749,39 @@ function xr({ icon: e, mode: t, description: n, value: r, showAccent: i = !1, co
|
|
|
2640
2749
|
}
|
|
2641
2750
|
//#endregion
|
|
2642
2751
|
//#region src/components/ui/sheet.tsx
|
|
2643
|
-
function
|
|
2752
|
+
function Er({ ...e }) {
|
|
2644
2753
|
return /* @__PURE__ */ X(K.Root, {
|
|
2645
2754
|
"data-slot": "sheet",
|
|
2646
2755
|
...e
|
|
2647
2756
|
});
|
|
2648
2757
|
}
|
|
2649
|
-
function
|
|
2758
|
+
function Dr({ ...e }) {
|
|
2650
2759
|
return /* @__PURE__ */ X(K.Trigger, {
|
|
2651
2760
|
"data-slot": "sheet-trigger",
|
|
2652
2761
|
...e
|
|
2653
2762
|
});
|
|
2654
2763
|
}
|
|
2655
|
-
function
|
|
2764
|
+
function Or({ ...e }) {
|
|
2656
2765
|
return /* @__PURE__ */ X(K.Close, {
|
|
2657
2766
|
"data-slot": "sheet-close",
|
|
2658
2767
|
...e
|
|
2659
2768
|
});
|
|
2660
2769
|
}
|
|
2661
|
-
function
|
|
2770
|
+
function kr({ ...e }) {
|
|
2662
2771
|
return /* @__PURE__ */ X(K.Portal, {
|
|
2663
2772
|
"data-slot": "sheet-portal",
|
|
2664
2773
|
...e
|
|
2665
2774
|
});
|
|
2666
2775
|
}
|
|
2667
|
-
function
|
|
2776
|
+
function Ar({ className: e, ...t }) {
|
|
2668
2777
|
return /* @__PURE__ */ X(K.Overlay, {
|
|
2669
2778
|
"data-slot": "sheet-overlay",
|
|
2670
2779
|
className: Q("fixed inset-0 z-50 bg-black/10 duration-100 supports-backdrop-filter:backdrop-blur-xs data-open:animate-in data-open:fade-in-0 data-closed:animate-out data-closed:fade-out-0", e),
|
|
2671
2780
|
...t
|
|
2672
2781
|
});
|
|
2673
2782
|
}
|
|
2674
|
-
function
|
|
2675
|
-
return /* @__PURE__ */ Z(
|
|
2783
|
+
function jr({ className: e, children: t, side: n = "right", showCloseButton: r = !0, ...i }) {
|
|
2784
|
+
return /* @__PURE__ */ Z(kr, { children: [/* @__PURE__ */ X(Ar, {}), /* @__PURE__ */ Z(K.Content, {
|
|
2676
2785
|
"data-slot": "sheet-content",
|
|
2677
2786
|
"data-side": n,
|
|
2678
2787
|
className: Q("fixed z-50 flex flex-col gap-4 bg-popover bg-clip-padding text-sm text-popover-foreground shadow-lg transition duration-200 ease-in-out data-[side=bottom]:inset-x-0 data-[side=bottom]:bottom-0 data-[side=bottom]:h-auto data-[side=bottom]:border-t data-[side=left]:inset-y-0 data-[side=left]:left-0 data-[side=left]:h-full data-[side=left]:w-3/4 data-[side=left]:border-r data-[side=right]:inset-y-0 data-[side=right]:right-0 data-[side=right]:h-full data-[side=right]:w-3/4 data-[side=right]:border-l data-[side=top]:inset-x-0 data-[side=top]:top-0 data-[side=top]:h-auto data-[side=top]:border-b data-[side=left]:sm:max-w-sm data-[side=right]:sm:max-w-sm data-open:animate-in data-open:fade-in-0 data-[side=bottom]:data-open:slide-in-from-bottom-10 data-[side=left]:data-open:slide-in-from-left-10 data-[side=right]:data-open:slide-in-from-right-10 data-[side=top]:data-open:slide-in-from-top-10 data-closed:animate-out data-closed:fade-out-0 data-[side=bottom]:data-closed:slide-out-to-bottom-10 data-[side=left]:data-closed:slide-out-to-left-10 data-[side=right]:data-closed:slide-out-to-right-10 data-[side=top]:data-closed:slide-out-to-top-10", e),
|
|
@@ -2684,7 +2793,7 @@ function Dr({ className: e, children: t, side: n = "right", showCloseButton: r =
|
|
|
2684
2793
|
variant: "ghost",
|
|
2685
2794
|
className: "absolute top-3 right-3",
|
|
2686
2795
|
size: "icon-sm",
|
|
2687
|
-
children: [/* @__PURE__ */ X(
|
|
2796
|
+
children: [/* @__PURE__ */ X(U, {}), /* @__PURE__ */ X("span", {
|
|
2688
2797
|
className: "sr-only",
|
|
2689
2798
|
children: "Close"
|
|
2690
2799
|
})]
|
|
@@ -2692,28 +2801,28 @@ function Dr({ className: e, children: t, side: n = "right", showCloseButton: r =
|
|
|
2692
2801
|
})]
|
|
2693
2802
|
})] });
|
|
2694
2803
|
}
|
|
2695
|
-
function
|
|
2804
|
+
function Mr({ className: e, ...t }) {
|
|
2696
2805
|
return /* @__PURE__ */ X("div", {
|
|
2697
2806
|
"data-slot": "sheet-header",
|
|
2698
2807
|
className: Q("flex flex-col gap-0.5 p-4", e),
|
|
2699
2808
|
...t
|
|
2700
2809
|
});
|
|
2701
2810
|
}
|
|
2702
|
-
function
|
|
2811
|
+
function Nr({ className: e, ...t }) {
|
|
2703
2812
|
return /* @__PURE__ */ X("div", {
|
|
2704
2813
|
"data-slot": "sheet-footer",
|
|
2705
2814
|
className: Q("mt-auto flex flex-col gap-2 p-4", e),
|
|
2706
2815
|
...t
|
|
2707
2816
|
});
|
|
2708
2817
|
}
|
|
2709
|
-
function
|
|
2818
|
+
function Pr({ className: e, ...t }) {
|
|
2710
2819
|
return /* @__PURE__ */ X(K.Title, {
|
|
2711
2820
|
"data-slot": "sheet-title",
|
|
2712
2821
|
className: Q("text-base font-medium text-foreground", e),
|
|
2713
2822
|
...t
|
|
2714
2823
|
});
|
|
2715
2824
|
}
|
|
2716
|
-
function
|
|
2825
|
+
function Fr({ className: e, ...t }) {
|
|
2717
2826
|
return /* @__PURE__ */ X(K.Description, {
|
|
2718
2827
|
"data-slot": "sheet-description",
|
|
2719
2828
|
className: Q("text-sm text-muted-foreground", e),
|
|
@@ -2722,17 +2831,17 @@ function jr({ className: e, ...t }) {
|
|
|
2722
2831
|
}
|
|
2723
2832
|
//#endregion
|
|
2724
2833
|
//#region src/components/custom/side-sheet.tsx
|
|
2725
|
-
function
|
|
2834
|
+
function Ir({ children: e, title: t, open: n, onClose: r, description: i, side: a = "right", floating: o, onBack: s, notDismissable: c, footer: l, className: u }) {
|
|
2726
2835
|
let d = s !== void 0;
|
|
2727
|
-
return /* @__PURE__ */ X(
|
|
2836
|
+
return /* @__PURE__ */ X(Er, {
|
|
2728
2837
|
open: n,
|
|
2729
2838
|
onOpenChange: c ? void 0 : (e) => !e && r(),
|
|
2730
|
-
children: /* @__PURE__ */ Z(
|
|
2839
|
+
children: /* @__PURE__ */ Z(jr, {
|
|
2731
2840
|
side: a,
|
|
2732
2841
|
showCloseButton: !1,
|
|
2733
2842
|
className: Q("flex w-full flex-col gap-0 overflow-hidden p-0", "data-[side=left]:sm:max-w-[570px] data-[side=right]:sm:max-w-[570px]", o && Q("rounded-xl shadow-xl ring-1 ring-foreground/10", "data-[side=right]:inset-y-3 data-[side=right]:right-3 data-[side=right]:h-auto", "data-[side=left]:inset-y-3 data-[side=left]:left-3 data-[side=left]:h-auto"), u),
|
|
2734
2843
|
children: [
|
|
2735
|
-
/* @__PURE__ */ Z(
|
|
2844
|
+
/* @__PURE__ */ Z(Mr, {
|
|
2736
2845
|
className: "shrink-0 flex-row items-center gap-2 border-b border-border px-4 py-3",
|
|
2737
2846
|
children: [/* @__PURE__ */ X($, {
|
|
2738
2847
|
type: "button",
|
|
@@ -2743,13 +2852,13 @@ function Mr({ children: e, title: t, open: n, onClose: r, description: i, side:
|
|
|
2743
2852
|
onClick: (e) => {
|
|
2744
2853
|
e.preventDefault(), e.stopPropagation(), (d ? s : r)();
|
|
2745
2854
|
},
|
|
2746
|
-
children: X(d ? x :
|
|
2855
|
+
children: X(d ? x : U, {})
|
|
2747
2856
|
}), /* @__PURE__ */ Z("div", {
|
|
2748
2857
|
className: "flex min-w-0 flex-col",
|
|
2749
|
-
children: [/* @__PURE__ */ X(
|
|
2858
|
+
children: [/* @__PURE__ */ X(Pr, {
|
|
2750
2859
|
className: "truncate text-left text-lg font-semibold",
|
|
2751
2860
|
children: t
|
|
2752
|
-
}), i && /* @__PURE__ */ X(
|
|
2861
|
+
}), i && /* @__PURE__ */ X(Fr, {
|
|
2753
2862
|
className: "text-left",
|
|
2754
2863
|
children: i
|
|
2755
2864
|
})]
|
|
@@ -2767,7 +2876,7 @@ function Mr({ children: e, title: t, open: n, onClose: r, description: i, side:
|
|
|
2767
2876
|
})
|
|
2768
2877
|
});
|
|
2769
2878
|
}
|
|
2770
|
-
function
|
|
2879
|
+
function Lr({ label: e, action: t, className: n, children: r, ...i }) {
|
|
2771
2880
|
return /* @__PURE__ */ Z("div", {
|
|
2772
2881
|
"data-slot": "side-sheet-section",
|
|
2773
2882
|
...i,
|
|
@@ -2789,7 +2898,7 @@ function Nr({ label: e, action: t, className: n, children: r, ...i }) {
|
|
|
2789
2898
|
}
|
|
2790
2899
|
//#endregion
|
|
2791
2900
|
//#region src/components/custom/stat-card.tsx
|
|
2792
|
-
var
|
|
2901
|
+
var Rr = {
|
|
2793
2902
|
primary: {
|
|
2794
2903
|
text: "text-primary",
|
|
2795
2904
|
bg: "bg-primary",
|
|
@@ -2816,14 +2925,14 @@ var Pr = {
|
|
|
2816
2925
|
soft: "bg-muted"
|
|
2817
2926
|
}
|
|
2818
2927
|
};
|
|
2819
|
-
function
|
|
2928
|
+
function zr({ data: e, colorVar: t }) {
|
|
2820
2929
|
let r = n.useId().replace(/:/g, "");
|
|
2821
2930
|
return /* @__PURE__ */ X("div", {
|
|
2822
2931
|
className: "mt-3 h-16 w-full",
|
|
2823
|
-
children: /* @__PURE__ */ X(
|
|
2932
|
+
children: /* @__PURE__ */ X(Re, {
|
|
2824
2933
|
width: "100%",
|
|
2825
2934
|
height: "100%",
|
|
2826
|
-
children: /* @__PURE__ */ Z(
|
|
2935
|
+
children: /* @__PURE__ */ Z(Le, {
|
|
2827
2936
|
data: e.map((e, t) => ({
|
|
2828
2937
|
x: t,
|
|
2829
2938
|
y: e
|
|
@@ -2849,7 +2958,7 @@ function Fr({ data: e, colorVar: t }) {
|
|
|
2849
2958
|
stopColor: t,
|
|
2850
2959
|
stopOpacity: 0
|
|
2851
2960
|
})]
|
|
2852
|
-
}) }), /* @__PURE__ */ X(
|
|
2961
|
+
}) }), /* @__PURE__ */ X(Ie, {
|
|
2853
2962
|
dataKey: "y",
|
|
2854
2963
|
type: "natural",
|
|
2855
2964
|
stroke: t,
|
|
@@ -2863,11 +2972,11 @@ function Fr({ data: e, colorVar: t }) {
|
|
|
2863
2972
|
})
|
|
2864
2973
|
});
|
|
2865
2974
|
}
|
|
2866
|
-
function
|
|
2867
|
-
let u =
|
|
2868
|
-
return /* @__PURE__ */ Z(
|
|
2975
|
+
function Br({ title: e, value: t, description: n, icon: r, color: i = "primary", trend: a, progress: o, sparkline: s, ring: c, className: l }) {
|
|
2976
|
+
let u = Rr[i], d = i === "muted" ? "var(--muted-foreground)" : `var(--${Vr(i)})`;
|
|
2977
|
+
return /* @__PURE__ */ Z(_r, {
|
|
2869
2978
|
className: Q("gap-3", l),
|
|
2870
|
-
children: [/* @__PURE__ */ Z(
|
|
2979
|
+
children: [/* @__PURE__ */ Z(vr, {
|
|
2871
2980
|
className: "flex flex-row items-start justify-between gap-2 pb-0",
|
|
2872
2981
|
children: [/* @__PURE__ */ X("span", {
|
|
2873
2982
|
className: "text-sm font-medium text-muted-foreground",
|
|
@@ -2876,10 +2985,10 @@ function Ir({ title: e, value: t, description: n, icon: r, color: i = "primary",
|
|
|
2876
2985
|
className: Q("flex size-9 shrink-0 items-center justify-center rounded-md", u.soft, u.text, "[&_svg]:size-4"),
|
|
2877
2986
|
children: r
|
|
2878
2987
|
})]
|
|
2879
|
-
}), /* @__PURE__ */ Z(
|
|
2988
|
+
}), /* @__PURE__ */ Z(Sr, { children: [
|
|
2880
2989
|
c ? /* @__PURE__ */ Z("div", {
|
|
2881
2990
|
className: "mt-1 flex items-center gap-4",
|
|
2882
|
-
children: [/* @__PURE__ */ X(
|
|
2991
|
+
children: [/* @__PURE__ */ X(Hr, {
|
|
2883
2992
|
ring: c,
|
|
2884
2993
|
colors: u
|
|
2885
2994
|
}), /* @__PURE__ */ Z("div", {
|
|
@@ -2900,7 +3009,7 @@ function Ir({ title: e, value: t, description: n, icon: r, color: i = "primary",
|
|
|
2900
3009
|
className: "mt-1 flex items-center gap-1 text-sm text-muted-foreground",
|
|
2901
3010
|
children: [/* @__PURE__ */ Z("span", {
|
|
2902
3011
|
className: Q("flex items-center gap-1 font-medium", a.direction === "down" ? "text-red" : "text-green"),
|
|
2903
|
-
children: [a.direction === "down" ? /* @__PURE__ */ X(
|
|
3012
|
+
children: [a.direction === "down" ? /* @__PURE__ */ X(me, { className: "size-4" }) : /* @__PURE__ */ X(he, { className: "size-4" }), a.value]
|
|
2904
3013
|
}), a.label]
|
|
2905
3014
|
}) : n && !c ? /* @__PURE__ */ X("p", {
|
|
2906
3015
|
className: "mt-1 text-sm text-muted-foreground",
|
|
@@ -2919,14 +3028,14 @@ function Ir({ title: e, value: t, description: n, icon: r, color: i = "primary",
|
|
|
2919
3028
|
children: [/* @__PURE__ */ X("span", { children: o.caption }), /* @__PURE__ */ X("span", { children: o.target })]
|
|
2920
3029
|
})]
|
|
2921
3030
|
}),
|
|
2922
|
-
s && s.length > 1 && /* @__PURE__ */ X(
|
|
3031
|
+
s && s.length > 1 && /* @__PURE__ */ X(zr, {
|
|
2923
3032
|
data: s,
|
|
2924
3033
|
colorVar: d
|
|
2925
3034
|
})
|
|
2926
3035
|
] })]
|
|
2927
3036
|
});
|
|
2928
3037
|
}
|
|
2929
|
-
function
|
|
3038
|
+
function Vr(e) {
|
|
2930
3039
|
switch (e) {
|
|
2931
3040
|
case "primary": return "primary";
|
|
2932
3041
|
case "success": return "green";
|
|
@@ -2935,7 +3044,7 @@ function Lr(e) {
|
|
|
2935
3044
|
default: return "muted-foreground";
|
|
2936
3045
|
}
|
|
2937
3046
|
}
|
|
2938
|
-
function
|
|
3047
|
+
function Hr({ ring: e, colors: t }) {
|
|
2939
3048
|
let n = Math.max(0, Math.min(100, e.value)), r = 2 * Math.PI * 34;
|
|
2940
3049
|
return /* @__PURE__ */ Z("div", {
|
|
2941
3050
|
className: "relative size-20 shrink-0",
|
|
@@ -2969,7 +3078,7 @@ function Rr({ ring: e, colors: t }) {
|
|
|
2969
3078
|
}
|
|
2970
3079
|
//#endregion
|
|
2971
3080
|
//#region src/components/custom/status-list.tsx
|
|
2972
|
-
var
|
|
3081
|
+
var Ur = {
|
|
2973
3082
|
neutral: {
|
|
2974
3083
|
text: "text-muted-foreground",
|
|
2975
3084
|
pill: "border-transparent bg-muted text-muted-foreground",
|
|
@@ -3011,16 +3120,16 @@ var zr = {
|
|
|
3011
3120
|
avatar: "bg-red/15 text-red"
|
|
3012
3121
|
}
|
|
3013
3122
|
};
|
|
3014
|
-
function
|
|
3123
|
+
function Wr({ tone: e = "neutral", className: t, children: n }) {
|
|
3015
3124
|
return /* @__PURE__ */ X("span", {
|
|
3016
|
-
className: Q("flex size-9 shrink-0 items-center justify-center rounded-lg [&_svg]:size-5",
|
|
3125
|
+
className: Q("flex size-9 shrink-0 items-center justify-center rounded-lg [&_svg]:size-5", Ur[e].softBox, t),
|
|
3017
3126
|
children: n
|
|
3018
3127
|
});
|
|
3019
3128
|
}
|
|
3020
|
-
function
|
|
3129
|
+
function Gr({ src: e, name: t, tone: n = "primary", className: r }) {
|
|
3021
3130
|
let i = t.split(/\s+/).slice(0, 2).map((e) => e[0]?.toUpperCase() ?? "").join("");
|
|
3022
3131
|
return /* @__PURE__ */ X("span", {
|
|
3023
|
-
className: Q("flex size-9 shrink-0 items-center justify-center overflow-hidden rounded-full text-xs font-semibold",
|
|
3132
|
+
className: Q("flex size-9 shrink-0 items-center justify-center overflow-hidden rounded-full text-xs font-semibold", Ur[n].avatar, r),
|
|
3024
3133
|
children: e ? /* @__PURE__ */ X("img", {
|
|
3025
3134
|
src: e,
|
|
3026
3135
|
alt: t,
|
|
@@ -3028,14 +3137,14 @@ function Vr({ src: e, name: t, tone: n = "primary", className: r }) {
|
|
|
3028
3137
|
}) : i
|
|
3029
3138
|
});
|
|
3030
3139
|
}
|
|
3031
|
-
function
|
|
3140
|
+
function Kr({ className: e, ...t }) {
|
|
3032
3141
|
return /* @__PURE__ */ X("div", {
|
|
3033
3142
|
"data-slot": "status-list",
|
|
3034
3143
|
className: Q("flex flex-col gap-2", e),
|
|
3035
3144
|
...t
|
|
3036
3145
|
});
|
|
3037
3146
|
}
|
|
3038
|
-
function
|
|
3147
|
+
function qr({ label: e, count: t, className: n, children: r, ...i }) {
|
|
3039
3148
|
return /* @__PURE__ */ Z("div", {
|
|
3040
3149
|
"data-slot": "status-list-group",
|
|
3041
3150
|
className: n,
|
|
@@ -3056,8 +3165,8 @@ function Ur({ label: e, count: t, className: n, children: r, ...i }) {
|
|
|
3056
3165
|
})]
|
|
3057
3166
|
});
|
|
3058
3167
|
}
|
|
3059
|
-
function
|
|
3060
|
-
let u =
|
|
3168
|
+
function Jr({ media: e, title: t, description: n, status: r, statusVariant: i = "pill", hint: a, tone: o = "neutral", active: s = !1, className: c, ...l }) {
|
|
3169
|
+
let u = Ur[o];
|
|
3061
3170
|
return /* @__PURE__ */ Z("div", {
|
|
3062
3171
|
"data-slot": "status-list-item",
|
|
3063
3172
|
className: Q("flex items-center gap-3 rounded-lg border p-3", s ? Q("border-transparent ring-1", u.activeBg) : "bg-card", c),
|
|
@@ -3082,7 +3191,7 @@ function Wr({ media: e, title: t, description: n, status: r, statusVariant: i =
|
|
|
3082
3191
|
}), r != null && (i === "text" ? /* @__PURE__ */ X("span", {
|
|
3083
3192
|
className: Q("text-sm font-medium", u.text),
|
|
3084
3193
|
children: r
|
|
3085
|
-
}) : /* @__PURE__ */ X(
|
|
3194
|
+
}) : /* @__PURE__ */ X(kt, {
|
|
3086
3195
|
variant: "outline",
|
|
3087
3196
|
className: Q("font-medium", i === "outline" ? u.outline : u.pill),
|
|
3088
3197
|
children: r
|
|
@@ -3093,9 +3202,9 @@ function Wr({ media: e, title: t, description: n, status: r, statusVariant: i =
|
|
|
3093
3202
|
}
|
|
3094
3203
|
//#endregion
|
|
3095
3204
|
//#region src/components/ui/calendar.tsx
|
|
3096
|
-
function
|
|
3097
|
-
let l =
|
|
3098
|
-
return /* @__PURE__ */ X(
|
|
3205
|
+
function Yr({ className: e, classNames: t, showOutsideDays: n = !0, captionLayout: r = "label", buttonVariant: i = "ghost", locale: a, formatters: o, components: s, ...c }) {
|
|
3206
|
+
let l = Be();
|
|
3207
|
+
return /* @__PURE__ */ X(ze, {
|
|
3099
3208
|
showOutsideDays: n,
|
|
3100
3209
|
className: Q("group/calendar bg-background p-2 [--cell-radius:var(--radius-md)] [--cell-size:--spacing(7)] in-data-[slot=card-content]:bg-transparent in-data-[slot=popover-content]:bg-transparent", String.raw`rtl:**:[.rdp-button\_next>svg]:rotate-180`, String.raw`rtl:**:[.rdp-button\_previous>svg]:rotate-180`, e),
|
|
3101
3210
|
captionLayout: r,
|
|
@@ -3109,8 +3218,8 @@ function Gr({ className: e, classNames: t, showOutsideDays: n = !0, captionLayou
|
|
|
3109
3218
|
months: Q("relative flex flex-col gap-4 md:flex-row", l.months),
|
|
3110
3219
|
month: Q("flex w-full flex-col gap-4", l.month),
|
|
3111
3220
|
nav: Q("absolute inset-x-0 top-0 flex w-full items-center justify-between gap-1", l.nav),
|
|
3112
|
-
button_previous: Q(
|
|
3113
|
-
button_next: Q(
|
|
3221
|
+
button_previous: Q(Je({ variant: i }), "size-(--cell-size) p-0 select-none aria-disabled:opacity-50", l.button_previous),
|
|
3222
|
+
button_next: Q(Je({ variant: i }), "size-(--cell-size) p-0 select-none aria-disabled:opacity-50", l.button_next),
|
|
3114
3223
|
month_caption: Q("flex h-(--cell-size) w-full items-center justify-center px-(--cell-size)", l.month_caption),
|
|
3115
3224
|
dropdowns: Q("flex h-(--cell-size) w-full items-center justify-center gap-1.5 text-sm font-medium", l.dropdowns),
|
|
3116
3225
|
dropdown_root: Q("relative rounded-(--cell-radius)", l.dropdown_root),
|
|
@@ -3143,7 +3252,7 @@ function Gr({ className: e, classNames: t, showOutsideDays: n = !0, captionLayou
|
|
|
3143
3252
|
className: Q("size-4", e),
|
|
3144
3253
|
...n
|
|
3145
3254
|
}),
|
|
3146
|
-
DayButton: ({ ...e }) => /* @__PURE__ */ X(
|
|
3255
|
+
DayButton: ({ ...e }) => /* @__PURE__ */ X(Xr, {
|
|
3147
3256
|
locale: a,
|
|
3148
3257
|
...e
|
|
3149
3258
|
}),
|
|
@@ -3159,8 +3268,8 @@ function Gr({ className: e, classNames: t, showOutsideDays: n = !0, captionLayou
|
|
|
3159
3268
|
...c
|
|
3160
3269
|
});
|
|
3161
3270
|
}
|
|
3162
|
-
function
|
|
3163
|
-
let o =
|
|
3271
|
+
function Xr({ className: e, day: t, modifiers: r, locale: i, ...a }) {
|
|
3272
|
+
let o = Be(), s = n.useRef(null);
|
|
3164
3273
|
return n.useEffect(() => {
|
|
3165
3274
|
r.focused && s.current?.focus();
|
|
3166
3275
|
}, [r.focused]), /* @__PURE__ */ X($, {
|
|
@@ -3178,10 +3287,10 @@ function Kr({ className: e, day: t, modifiers: r, locale: i, ...a }) {
|
|
|
3178
3287
|
}
|
|
3179
3288
|
//#endregion
|
|
3180
3289
|
//#region src/components/custom/date-time-range-picker-utils.ts
|
|
3181
|
-
function
|
|
3290
|
+
function Zr(e) {
|
|
3182
3291
|
return `${e.getUTCFullYear()}-${String(e.getUTCMonth() + 1).padStart(2, "0")}-${String(e.getUTCDate()).padStart(2, "0")}T${String(e.getUTCHours()).padStart(2, "0")}:${String(e.getUTCMinutes()).padStart(2, "0")}:${String(e.getUTCSeconds()).padStart(2, "0")}Z`;
|
|
3183
3292
|
}
|
|
3184
|
-
function
|
|
3293
|
+
function Qr(e, t) {
|
|
3185
3294
|
if (!e) return null;
|
|
3186
3295
|
let n = new Date(e);
|
|
3187
3296
|
if (isNaN(n.getTime())) return null;
|
|
@@ -3204,7 +3313,7 @@ function Jr(e, t) {
|
|
|
3204
3313
|
s: i("second").padStart(2, "0")
|
|
3205
3314
|
};
|
|
3206
3315
|
}
|
|
3207
|
-
function
|
|
3316
|
+
function $r(e, t, n, r, i, a, o) {
|
|
3208
3317
|
let s = Date.UTC(e, t, n, parseInt(r), parseInt(i), parseInt(a)), c = new Date(s), l = new Intl.DateTimeFormat("en-US", {
|
|
3209
3318
|
year: "numeric",
|
|
3210
3319
|
month: "2-digit",
|
|
@@ -3215,9 +3324,9 @@ function Yr(e, t, n, r, i, a, o) {
|
|
|
3215
3324
|
hour12: !1,
|
|
3216
3325
|
timeZone: o
|
|
3217
3326
|
}).formatToParts(c), u = (e) => parseInt(l.find((t) => t.type === e)?.value || "0", 10), d = Date.UTC(u("year"), u("month") - 1, u("day"), u("hour"), u("minute"), u("second")) - s;
|
|
3218
|
-
return
|
|
3327
|
+
return Zr(new Date(s - d));
|
|
3219
3328
|
}
|
|
3220
|
-
var
|
|
3329
|
+
var ei = [
|
|
3221
3330
|
{
|
|
3222
3331
|
value: "hour",
|
|
3223
3332
|
label: "Hour"
|
|
@@ -3235,8 +3344,8 @@ var Xr = [
|
|
|
3235
3344
|
label: "Month"
|
|
3236
3345
|
}
|
|
3237
3346
|
];
|
|
3238
|
-
function
|
|
3239
|
-
let t = /* @__PURE__ */ new Date(), n =
|
|
3347
|
+
function ti(e) {
|
|
3348
|
+
let t = /* @__PURE__ */ new Date(), n = Zr(t), r = new Date(t);
|
|
3240
3349
|
switch (e) {
|
|
3241
3350
|
case "hour":
|
|
3242
3351
|
r.setUTCHours(r.getUTCHours() - 1);
|
|
@@ -3252,20 +3361,20 @@ function Zr(e) {
|
|
|
3252
3361
|
break;
|
|
3253
3362
|
}
|
|
3254
3363
|
return {
|
|
3255
|
-
from:
|
|
3364
|
+
from: Zr(r),
|
|
3256
3365
|
to: n
|
|
3257
3366
|
};
|
|
3258
3367
|
}
|
|
3259
|
-
function
|
|
3368
|
+
function ni(e, t) {
|
|
3260
3369
|
let n = new Date(e.from).getTime(), r = new Date(e.to).getTime(), i = r - n, a = t === "prev" ? -i : i;
|
|
3261
3370
|
return {
|
|
3262
3371
|
preset: e.preset,
|
|
3263
|
-
from:
|
|
3264
|
-
to:
|
|
3372
|
+
from: Zr(new Date(n + a)),
|
|
3373
|
+
to: Zr(new Date(r + a))
|
|
3265
3374
|
};
|
|
3266
3375
|
}
|
|
3267
|
-
function
|
|
3268
|
-
if (e.preset) return
|
|
3376
|
+
function ri(e, t) {
|
|
3377
|
+
if (e.preset) return ei.find((t) => t.value === e.preset)?.label ?? e.preset;
|
|
3269
3378
|
if (e.from && e.to) {
|
|
3270
3379
|
let n = (e) => new Date(e).toLocaleString("en-US", {
|
|
3271
3380
|
year: "numeric",
|
|
@@ -3282,7 +3391,7 @@ function $r(e, t) {
|
|
|
3282
3391
|
}
|
|
3283
3392
|
//#endregion
|
|
3284
3393
|
//#region src/components/custom/date-time-range-picker.tsx
|
|
3285
|
-
function
|
|
3394
|
+
function ii({ value: e, max: t, onChange: r }) {
|
|
3286
3395
|
let [i, a] = n.useState(e);
|
|
3287
3396
|
n.useEffect(() => {
|
|
3288
3397
|
a(e);
|
|
@@ -3307,13 +3416,13 @@ function ei({ value: e, max: t, onChange: r }) {
|
|
|
3307
3416
|
className: Q("h-8 w-12 rounded-md border border-input bg-transparent text-center text-sm font-medium dark:bg-input/30", "focus:border-ring focus:ring-3 focus:ring-ring/50 focus:outline-none", "[appearance:textfield] [&::-webkit-inner-spin-button]:appearance-none [&::-webkit-outer-spin-button]:appearance-none")
|
|
3308
3417
|
});
|
|
3309
3418
|
}
|
|
3310
|
-
function
|
|
3311
|
-
let [c, l] = n.useState(!1), u = a || "UTC", d =
|
|
3419
|
+
function ai({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date & time", timezone: a, minDate: o, maxDate: s }) {
|
|
3420
|
+
let [c, l] = n.useState(!1), u = a || "UTC", d = Qr(e, u), [f, p] = n.useState(d?.h ?? "00"), [m, h] = n.useState(d?.m ?? "00"), [_, v] = n.useState(d?.s ?? "00");
|
|
3312
3421
|
n.useEffect(() => {
|
|
3313
|
-
let t =
|
|
3422
|
+
let t = Qr(e, u);
|
|
3314
3423
|
p(t?.h ?? "00"), h(t?.m ?? "00"), v(t?.s ?? "00");
|
|
3315
3424
|
}, [e, u]);
|
|
3316
|
-
let y = d ? new Date(d.year, d.month, d.day) : void 0, b = (e, n, r, i, a, o) => t(
|
|
3425
|
+
let y = d ? new Date(d.year, d.month, d.day) : void 0, b = (e, n, r, i, a, o) => t($r(e, n, r, i, a, o, u)), x = (e) => {
|
|
3317
3426
|
e && b(e.getFullYear(), e.getMonth(), e.getDate(), f, m, _);
|
|
3318
3427
|
}, S = (e, t) => {
|
|
3319
3428
|
let n = e === "h" ? t : f, r = e === "m" ? t : m, i = e === "s" ? t : _;
|
|
@@ -3343,11 +3452,11 @@ function ti({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date
|
|
|
3343
3452
|
children: [/* @__PURE__ */ X("label", {
|
|
3344
3453
|
className: "px-0.5 text-xs text-muted-foreground",
|
|
3345
3454
|
children: r
|
|
3346
|
-
}), /* @__PURE__ */ Z(
|
|
3455
|
+
}), /* @__PURE__ */ Z(pn, {
|
|
3347
3456
|
open: c,
|
|
3348
3457
|
onOpenChange: l,
|
|
3349
3458
|
modal: !1,
|
|
3350
|
-
children: [/* @__PURE__ */ X(
|
|
3459
|
+
children: [/* @__PURE__ */ X(mn, {
|
|
3351
3460
|
asChild: !0,
|
|
3352
3461
|
children: /* @__PURE__ */ Z("button", {
|
|
3353
3462
|
type: "button",
|
|
@@ -3357,11 +3466,11 @@ function ti({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date
|
|
|
3357
3466
|
children: w
|
|
3358
3467
|
}), /* @__PURE__ */ X(g, { className: "size-3.5 shrink-0 opacity-60" })]
|
|
3359
3468
|
})
|
|
3360
|
-
}), /* @__PURE__ */ Z(
|
|
3469
|
+
}), /* @__PURE__ */ Z(hn, {
|
|
3361
3470
|
className: "w-auto p-0",
|
|
3362
3471
|
align: "start",
|
|
3363
3472
|
sideOffset: 4,
|
|
3364
|
-
children: [/* @__PURE__ */ X(
|
|
3473
|
+
children: [/* @__PURE__ */ X(Yr, {
|
|
3365
3474
|
mode: "single",
|
|
3366
3475
|
selected: y,
|
|
3367
3476
|
onSelect: x,
|
|
@@ -3371,8 +3480,8 @@ function ti({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date
|
|
|
3371
3480
|
}), /* @__PURE__ */ Z("div", {
|
|
3372
3481
|
className: "flex items-center gap-2 border-t px-3 py-2.5",
|
|
3373
3482
|
children: [
|
|
3374
|
-
/* @__PURE__ */ X(
|
|
3375
|
-
/* @__PURE__ */ X(
|
|
3483
|
+
/* @__PURE__ */ X(k, { className: "size-4 shrink-0 text-muted-foreground" }),
|
|
3484
|
+
/* @__PURE__ */ X(ii, {
|
|
3376
3485
|
value: f,
|
|
3377
3486
|
max: 23,
|
|
3378
3487
|
onChange: (e) => S("h", e)
|
|
@@ -3381,7 +3490,7 @@ function ti({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date
|
|
|
3381
3490
|
className: "text-sm font-medium text-muted-foreground",
|
|
3382
3491
|
children: ":"
|
|
3383
3492
|
}),
|
|
3384
|
-
/* @__PURE__ */ X(
|
|
3493
|
+
/* @__PURE__ */ X(ii, {
|
|
3385
3494
|
value: m,
|
|
3386
3495
|
max: 59,
|
|
3387
3496
|
onChange: (e) => S("m", e)
|
|
@@ -3390,7 +3499,7 @@ function ti({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date
|
|
|
3390
3499
|
className: "text-sm font-medium text-muted-foreground",
|
|
3391
3500
|
children: ":"
|
|
3392
3501
|
}),
|
|
3393
|
-
/* @__PURE__ */ X(
|
|
3502
|
+
/* @__PURE__ */ X(ii, {
|
|
3394
3503
|
value: _,
|
|
3395
3504
|
max: 59,
|
|
3396
3505
|
onChange: (e) => S("s", e)
|
|
@@ -3401,8 +3510,8 @@ function ti({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date
|
|
|
3401
3510
|
})]
|
|
3402
3511
|
});
|
|
3403
3512
|
}
|
|
3404
|
-
var
|
|
3405
|
-
let c = a ??
|
|
3513
|
+
var oi = n.forwardRef(function({ value: e, onChange: t, className: r, timezone: i, presets: a, maxRangeDays: o }, s) {
|
|
3514
|
+
let c = a ?? ei, [l, u] = n.useState(!1), [d, f] = n.useState(e.from), [p, m] = n.useState(e.to);
|
|
3406
3515
|
n.useEffect(() => {
|
|
3407
3516
|
f(e.from), m(e.to);
|
|
3408
3517
|
}, [e]);
|
|
@@ -3414,13 +3523,13 @@ var ni = n.forwardRef(function({ value: e, onChange: t, className: r, timezone:
|
|
|
3414
3523
|
}, _ = (e) => {
|
|
3415
3524
|
t({
|
|
3416
3525
|
preset: e,
|
|
3417
|
-
...
|
|
3526
|
+
...ti(e)
|
|
3418
3527
|
}), u(!1);
|
|
3419
3528
|
};
|
|
3420
|
-
return /* @__PURE__ */ Z(
|
|
3529
|
+
return /* @__PURE__ */ Z(pn, {
|
|
3421
3530
|
open: l,
|
|
3422
3531
|
onOpenChange: u,
|
|
3423
|
-
children: [/* @__PURE__ */ X(
|
|
3532
|
+
children: [/* @__PURE__ */ X(mn, {
|
|
3424
3533
|
asChild: !0,
|
|
3425
3534
|
children: /* @__PURE__ */ Z("button", {
|
|
3426
3535
|
ref: s,
|
|
@@ -3430,12 +3539,12 @@ var ni = n.forwardRef(function({ value: e, onChange: t, className: r, timezone:
|
|
|
3430
3539
|
/* @__PURE__ */ X(g, { className: "size-3.5 shrink-0 opacity-60" }),
|
|
3431
3540
|
/* @__PURE__ */ X("span", {
|
|
3432
3541
|
className: "truncate",
|
|
3433
|
-
children:
|
|
3542
|
+
children: ri(e, i)
|
|
3434
3543
|
}),
|
|
3435
3544
|
/* @__PURE__ */ X(y, { className: Q("size-3.5 shrink-0 opacity-60 transition-transform", l && "rotate-180") })
|
|
3436
3545
|
]
|
|
3437
3546
|
})
|
|
3438
|
-
}), /* @__PURE__ */ X(
|
|
3547
|
+
}), /* @__PURE__ */ X(hn, {
|
|
3439
3548
|
align: "end",
|
|
3440
3549
|
sideOffset: 4,
|
|
3441
3550
|
className: "w-auto p-0",
|
|
@@ -3463,7 +3572,7 @@ var ni = n.forwardRef(function({ value: e, onChange: t, className: r, timezone:
|
|
|
3463
3572
|
className: "px-0.5 text-sm text-muted-foreground",
|
|
3464
3573
|
children: "Custom range"
|
|
3465
3574
|
}),
|
|
3466
|
-
/* @__PURE__ */ X(
|
|
3575
|
+
/* @__PURE__ */ X(ai, {
|
|
3467
3576
|
isoValue: d,
|
|
3468
3577
|
onChange: h,
|
|
3469
3578
|
label: "From",
|
|
@@ -3471,7 +3580,7 @@ var ni = n.forwardRef(function({ value: e, onChange: t, className: r, timezone:
|
|
|
3471
3580
|
timezone: i,
|
|
3472
3581
|
maxDate: (/* @__PURE__ */ new Date()).toISOString()
|
|
3473
3582
|
}),
|
|
3474
|
-
/* @__PURE__ */ X(
|
|
3583
|
+
/* @__PURE__ */ X(ai, {
|
|
3475
3584
|
isoValue: p,
|
|
3476
3585
|
onChange: m,
|
|
3477
3586
|
label: "To",
|
|
@@ -3506,36 +3615,36 @@ var ni = n.forwardRef(function({ value: e, onChange: t, className: r, timezone:
|
|
|
3506
3615
|
})
|
|
3507
3616
|
})]
|
|
3508
3617
|
});
|
|
3509
|
-
}),
|
|
3618
|
+
}), si = W("group/alert relative grid w-full gap-0.5 rounded-lg border px-2.5 py-2 text-left text-sm has-data-[slot=alert-action]:relative has-data-[slot=alert-action]:pr-18 has-[>svg]:grid-cols-[auto_1fr] has-[>svg]:gap-x-2 *:[svg]:row-span-2 *:[svg]:translate-y-0.5 *:[svg]:text-current *:[svg:not([class*='size-'])]:size-4", {
|
|
3510
3619
|
variants: { variant: {
|
|
3511
3620
|
default: "bg-card text-card-foreground",
|
|
3512
3621
|
destructive: "bg-card text-destructive *:data-[slot=alert-description]:text-destructive/90 *:[svg]:text-current"
|
|
3513
3622
|
} },
|
|
3514
3623
|
defaultVariants: { variant: "default" }
|
|
3515
3624
|
});
|
|
3516
|
-
function
|
|
3625
|
+
function ci({ className: e, variant: t, ...n }) {
|
|
3517
3626
|
return /* @__PURE__ */ X("div", {
|
|
3518
3627
|
"data-slot": "alert",
|
|
3519
3628
|
role: "alert",
|
|
3520
|
-
className: Q(
|
|
3629
|
+
className: Q(si({ variant: t }), e),
|
|
3521
3630
|
...n
|
|
3522
3631
|
});
|
|
3523
3632
|
}
|
|
3524
|
-
function
|
|
3633
|
+
function li({ className: e, ...t }) {
|
|
3525
3634
|
return /* @__PURE__ */ X("div", {
|
|
3526
3635
|
"data-slot": "alert-title",
|
|
3527
3636
|
className: Q("font-medium group-has-[>svg]/alert:col-start-2 [&_a]:underline [&_a]:underline-offset-3 [&_a]:hover:text-foreground", e),
|
|
3528
3637
|
...t
|
|
3529
3638
|
});
|
|
3530
3639
|
}
|
|
3531
|
-
function
|
|
3640
|
+
function ui({ className: e, ...t }) {
|
|
3532
3641
|
return /* @__PURE__ */ X("div", {
|
|
3533
3642
|
"data-slot": "alert-description",
|
|
3534
3643
|
className: Q("text-sm text-balance text-muted-foreground md:text-pretty [&_a]:underline [&_a]:underline-offset-3 [&_a]:hover:text-foreground [&_p:not(:last-child)]:mb-4", e),
|
|
3535
3644
|
...t
|
|
3536
3645
|
});
|
|
3537
3646
|
}
|
|
3538
|
-
function
|
|
3647
|
+
function di({ className: e, ...t }) {
|
|
3539
3648
|
return /* @__PURE__ */ X("div", {
|
|
3540
3649
|
"data-slot": "alert-action",
|
|
3541
3650
|
className: Q("absolute top-2 right-2", e),
|
|
@@ -3544,30 +3653,30 @@ function si({ className: e, ...t }) {
|
|
|
3544
3653
|
}
|
|
3545
3654
|
//#endregion
|
|
3546
3655
|
//#region src/components/ui/button-group.tsx
|
|
3547
|
-
var
|
|
3656
|
+
var fi = W("group/button-group flex w-fit items-stretch *:focus-visible:relative *:focus-visible:z-10 has-[>[data-slot=button-group]]:gap-2 has-[select[aria-hidden=true]:last-child]:[&>[data-slot=select-trigger]:last-of-type]:rounded-r-lg [&>[data-slot=select-trigger]:not([class*='w-'])]:w-fit [&>input]:flex-1", {
|
|
3548
3657
|
variants: { orientation: {
|
|
3549
3658
|
horizontal: "[&>*:not(:first-child)]:rounded-l-none [&>*:not(:first-child)]:border-l-0 [&>*:not(:last-child)]:rounded-r-none [&>[data-slot]:not(:has(~[data-slot]))]:rounded-r-lg!",
|
|
3550
3659
|
vertical: "flex-col [&>*:not(:first-child)]:rounded-t-none [&>*:not(:first-child)]:border-t-0 [&>*:not(:last-child)]:rounded-b-none [&>[data-slot]:not(:has(~[data-slot]))]:rounded-b-lg!"
|
|
3551
3660
|
} },
|
|
3552
3661
|
defaultVariants: { orientation: "horizontal" }
|
|
3553
3662
|
});
|
|
3554
|
-
function
|
|
3663
|
+
function pi({ className: e, orientation: t, ...n }) {
|
|
3555
3664
|
return /* @__PURE__ */ X("div", {
|
|
3556
3665
|
role: "group",
|
|
3557
3666
|
"data-slot": "button-group",
|
|
3558
3667
|
"data-orientation": t,
|
|
3559
|
-
className: Q(
|
|
3668
|
+
className: Q(fi({ orientation: t }), e),
|
|
3560
3669
|
...n
|
|
3561
3670
|
});
|
|
3562
3671
|
}
|
|
3563
|
-
function
|
|
3564
|
-
return /* @__PURE__ */ X(t ?
|
|
3672
|
+
function mi({ className: e, asChild: t = !1, ...n }) {
|
|
3673
|
+
return /* @__PURE__ */ X(t ? Oe.Root : "div", {
|
|
3565
3674
|
className: Q("flex items-center gap-2 rounded-lg border bg-muted px-2.5 text-sm font-medium [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4", e),
|
|
3566
3675
|
...n
|
|
3567
3676
|
});
|
|
3568
3677
|
}
|
|
3569
|
-
function
|
|
3570
|
-
return /* @__PURE__ */ X(
|
|
3678
|
+
function hi({ className: e, orientation: t = "vertical", ...n }) {
|
|
3679
|
+
return /* @__PURE__ */ X(mt, {
|
|
3571
3680
|
"data-slot": "button-group-separator",
|
|
3572
3681
|
orientation: t,
|
|
3573
3682
|
className: Q("relative self-stretch bg-input data-horizontal:mx-px data-horizontal:w-auto data-vertical:my-px data-vertical:h-auto", e),
|
|
@@ -3576,40 +3685,40 @@ function di({ className: e, orientation: t = "vertical", ...n }) {
|
|
|
3576
3685
|
}
|
|
3577
3686
|
//#endregion
|
|
3578
3687
|
//#region src/components/ui/chart.tsx
|
|
3579
|
-
var
|
|
3688
|
+
var gi = {
|
|
3580
3689
|
light: "",
|
|
3581
3690
|
dark: ".dark"
|
|
3582
|
-
},
|
|
3691
|
+
}, _i = {
|
|
3583
3692
|
width: 320,
|
|
3584
3693
|
height: 200
|
|
3585
|
-
},
|
|
3586
|
-
function
|
|
3587
|
-
let e = n.useContext(
|
|
3694
|
+
}, vi = n.createContext(null);
|
|
3695
|
+
function yi() {
|
|
3696
|
+
let e = n.useContext(vi);
|
|
3588
3697
|
if (!e) throw Error("useChart must be used within a <ChartContainer />");
|
|
3589
3698
|
return e;
|
|
3590
3699
|
}
|
|
3591
|
-
function
|
|
3700
|
+
function bi({ id: e, className: t, children: r, config: i, initialDimension: a = _i, ...o }) {
|
|
3592
3701
|
let s = n.useId(), c = `chart-${e ?? s.replace(/:/g, "")}`;
|
|
3593
|
-
return /* @__PURE__ */ X(
|
|
3702
|
+
return /* @__PURE__ */ X(vi.Provider, {
|
|
3594
3703
|
value: { config: i },
|
|
3595
3704
|
children: /* @__PURE__ */ Z("div", {
|
|
3596
3705
|
"data-slot": "chart",
|
|
3597
3706
|
"data-chart": c,
|
|
3598
3707
|
className: Q("flex aspect-video justify-center text-xs [&_.recharts-cartesian-axis-tick_text]:fill-muted-foreground [&_.recharts-cartesian-grid_line[stroke='#ccc']]:stroke-border/50 [&_.recharts-curve.recharts-tooltip-cursor]:stroke-border [&_.recharts-dot[stroke='#fff']]:stroke-transparent [&_.recharts-layer]:outline-hidden [&_.recharts-polar-grid_[stroke='#ccc']]:stroke-border [&_.recharts-radial-bar-background-sector]:fill-muted [&_.recharts-rectangle.recharts-tooltip-cursor]:fill-muted [&_.recharts-reference-line_[stroke='#ccc']]:stroke-border [&_.recharts-sector]:outline-hidden [&_.recharts-sector[stroke='#fff']]:stroke-transparent [&_.recharts-surface]:outline-hidden", t),
|
|
3599
3708
|
...o,
|
|
3600
|
-
children: [/* @__PURE__ */ X(
|
|
3709
|
+
children: [/* @__PURE__ */ X(xi, {
|
|
3601
3710
|
id: c,
|
|
3602
3711
|
config: i
|
|
3603
|
-
}), /* @__PURE__ */ X(
|
|
3712
|
+
}), /* @__PURE__ */ X(Fe.ResponsiveContainer, {
|
|
3604
3713
|
initialDimension: a,
|
|
3605
3714
|
children: r
|
|
3606
3715
|
})]
|
|
3607
3716
|
})
|
|
3608
3717
|
});
|
|
3609
3718
|
}
|
|
3610
|
-
var
|
|
3719
|
+
var xi = ({ id: e, config: t }) => {
|
|
3611
3720
|
let n = Object.entries(t).filter(([, e]) => e.theme ?? e.color);
|
|
3612
|
-
return n.length ? /* @__PURE__ */ X("style", { dangerouslySetInnerHTML: { __html: Object.entries(
|
|
3721
|
+
return n.length ? /* @__PURE__ */ X("style", { dangerouslySetInnerHTML: { __html: Object.entries(gi).map(([t, r]) => `
|
|
3613
3722
|
${r} [data-chart=${e}] {
|
|
3614
3723
|
${n.map(([e, n]) => {
|
|
3615
3724
|
let r = n.theme?.[t] ?? n.color;
|
|
@@ -3617,11 +3726,11 @@ ${n.map(([e, n]) => {
|
|
|
3617
3726
|
}).join("\n")}
|
|
3618
3727
|
}
|
|
3619
3728
|
`).join("\n") } }) : null;
|
|
3620
|
-
},
|
|
3621
|
-
function
|
|
3622
|
-
let { config: m } =
|
|
3729
|
+
}, Si = Fe.Tooltip;
|
|
3730
|
+
function Ci({ active: e, payload: t, className: r, indicator: i = "dot", hideLabel: a = !1, hideIndicator: o = !1, label: s, labelFormatter: c, labelClassName: l, formatter: u, color: d, nameKey: f, labelKey: p }) {
|
|
3731
|
+
let { config: m } = yi(), h = n.useMemo(() => {
|
|
3623
3732
|
if (a || !t?.length) return null;
|
|
3624
|
-
let [e] = t, n =
|
|
3733
|
+
let [e] = t, n = Ei(m, e, `${p ?? e?.dataKey ?? e?.name ?? "value"}`), r = !p && typeof s == "string" ? m[s]?.label ?? s : n?.label;
|
|
3625
3734
|
return c ? /* @__PURE__ */ X("div", {
|
|
3626
3735
|
className: Q("font-medium", l),
|
|
3627
3736
|
children: c(r, t)
|
|
@@ -3645,7 +3754,7 @@ function yi({ active: e, payload: t, className: r, indicator: i = "dot", hideLab
|
|
|
3645
3754
|
children: [g ? null : h, /* @__PURE__ */ X("div", {
|
|
3646
3755
|
className: "grid gap-1.5",
|
|
3647
3756
|
children: t.filter((e) => e.type !== "none").map((e, t) => {
|
|
3648
|
-
let n =
|
|
3757
|
+
let n = Ei(m, e, `${f ?? e.name ?? e.dataKey ?? "value"}`), r = d ?? e.payload?.fill ?? e.color;
|
|
3649
3758
|
return /* @__PURE__ */ X("div", {
|
|
3650
3759
|
className: Q("flex w-full flex-wrap items-stretch gap-2 [&>svg]:h-2.5 [&>svg]:w-2.5 [&>svg]:text-muted-foreground", i === "dot" && "items-center"),
|
|
3651
3760
|
children: u && e?.value !== void 0 && e.name ? u(e.value, e.name, e, t, e.payload) : /* @__PURE__ */ Z(Y, { children: [n?.icon ? /* @__PURE__ */ X(n.icon, {}) : !o && /* @__PURE__ */ X("div", {
|
|
@@ -3677,13 +3786,13 @@ function yi({ active: e, payload: t, className: r, indicator: i = "dot", hideLab
|
|
|
3677
3786
|
})]
|
|
3678
3787
|
});
|
|
3679
3788
|
}
|
|
3680
|
-
var
|
|
3681
|
-
function
|
|
3682
|
-
let { config: a } =
|
|
3789
|
+
var wi = Fe.Legend;
|
|
3790
|
+
function Ti({ className: e, hideIcon: t = !1, payload: n, verticalAlign: r = "bottom", nameKey: i }) {
|
|
3791
|
+
let { config: a } = yi();
|
|
3683
3792
|
return n?.length ? /* @__PURE__ */ X("div", {
|
|
3684
3793
|
className: Q("flex items-center justify-center gap-4", r === "top" ? "pb-3" : "pt-3", e),
|
|
3685
3794
|
children: n.filter((e) => e.type !== "none").map((e, n) => {
|
|
3686
|
-
let r =
|
|
3795
|
+
let r = Ei(a, e, `${i ?? e.dataKey ?? "value"}`);
|
|
3687
3796
|
return /* @__PURE__ */ Z("div", {
|
|
3688
3797
|
className: Q("flex items-center gap-1.5 [&>svg]:h-3 [&>svg]:w-3 [&>svg]:text-muted-foreground"),
|
|
3689
3798
|
children: [r?.icon && !t ? /* @__PURE__ */ X(r.icon, {}) : /* @__PURE__ */ X("div", {
|
|
@@ -3694,29 +3803,29 @@ function xi({ className: e, hideIcon: t = !1, payload: n, verticalAlign: r = "bo
|
|
|
3694
3803
|
})
|
|
3695
3804
|
}) : null;
|
|
3696
3805
|
}
|
|
3697
|
-
function
|
|
3806
|
+
function Ei(e, t, n) {
|
|
3698
3807
|
if (typeof t != "object" || !t) return;
|
|
3699
3808
|
let r = "payload" in t && typeof t.payload == "object" && t.payload !== null ? t.payload : void 0, i = n;
|
|
3700
3809
|
return n in t && typeof t[n] == "string" ? i = t[n] : r && n in r && typeof r[n] == "string" && (i = r[n]), i in e ? e[i] : e[n];
|
|
3701
3810
|
}
|
|
3702
3811
|
//#endregion
|
|
3703
3812
|
//#region src/components/ui/hover-card.tsx
|
|
3704
|
-
function
|
|
3705
|
-
return /* @__PURE__ */ X(
|
|
3813
|
+
function Di({ ...e }) {
|
|
3814
|
+
return /* @__PURE__ */ X(xe.Root, {
|
|
3706
3815
|
"data-slot": "hover-card",
|
|
3707
3816
|
...e
|
|
3708
3817
|
});
|
|
3709
3818
|
}
|
|
3710
|
-
function
|
|
3711
|
-
return /* @__PURE__ */ X(
|
|
3819
|
+
function Oi({ ...e }) {
|
|
3820
|
+
return /* @__PURE__ */ X(xe.Trigger, {
|
|
3712
3821
|
"data-slot": "hover-card-trigger",
|
|
3713
3822
|
...e
|
|
3714
3823
|
});
|
|
3715
3824
|
}
|
|
3716
|
-
function
|
|
3717
|
-
return /* @__PURE__ */ X(
|
|
3825
|
+
function ki({ className: e, align: t = "center", sideOffset: n = 4, ...r }) {
|
|
3826
|
+
return /* @__PURE__ */ X(xe.Portal, {
|
|
3718
3827
|
"data-slot": "hover-card-portal",
|
|
3719
|
-
children: /* @__PURE__ */ X(
|
|
3828
|
+
children: /* @__PURE__ */ X(xe.Content, {
|
|
3720
3829
|
"data-slot": "hover-card-content",
|
|
3721
3830
|
align: t,
|
|
3722
3831
|
sideOffset: n,
|
|
@@ -3727,7 +3836,7 @@ function Ti({ className: e, align: t = "center", sideOffset: n = 4, ...r }) {
|
|
|
3727
3836
|
}
|
|
3728
3837
|
//#endregion
|
|
3729
3838
|
//#region src/components/ui/item.tsx
|
|
3730
|
-
function
|
|
3839
|
+
function Ai({ className: e, ...t }) {
|
|
3731
3840
|
return /* @__PURE__ */ X("div", {
|
|
3732
3841
|
role: "list",
|
|
3733
3842
|
"data-slot": "item-group",
|
|
@@ -3735,15 +3844,15 @@ function Ei({ className: e, ...t }) {
|
|
|
3735
3844
|
...t
|
|
3736
3845
|
});
|
|
3737
3846
|
}
|
|
3738
|
-
function
|
|
3739
|
-
return /* @__PURE__ */ X(
|
|
3847
|
+
function ji({ className: e, ...t }) {
|
|
3848
|
+
return /* @__PURE__ */ X(mt, {
|
|
3740
3849
|
"data-slot": "item-separator",
|
|
3741
3850
|
orientation: "horizontal",
|
|
3742
3851
|
className: Q("my-2", e),
|
|
3743
3852
|
...t
|
|
3744
3853
|
});
|
|
3745
3854
|
}
|
|
3746
|
-
var
|
|
3855
|
+
var Mi = W("group/item flex w-full flex-wrap items-center rounded-lg border text-sm transition-colors duration-100 outline-none focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 [a]:transition-colors [a]:hover:bg-muted", {
|
|
3747
3856
|
variants: {
|
|
3748
3857
|
variant: {
|
|
3749
3858
|
default: "border-transparent",
|
|
@@ -3761,12 +3870,12 @@ var Oi = W("group/item flex w-full flex-wrap items-center rounded-lg border text
|
|
|
3761
3870
|
size: "default"
|
|
3762
3871
|
}
|
|
3763
3872
|
});
|
|
3764
|
-
function
|
|
3765
|
-
return /* @__PURE__ */ X(r ?
|
|
3873
|
+
function Ni({ className: e, variant: t = "default", size: n = "default", asChild: r = !1, ...i }) {
|
|
3874
|
+
return /* @__PURE__ */ X(r ? Oe.Root : "div", {
|
|
3766
3875
|
"data-slot": "item",
|
|
3767
3876
|
"data-variant": t,
|
|
3768
3877
|
"data-size": n,
|
|
3769
|
-
className: Q(
|
|
3878
|
+
className: Q(Mi({
|
|
3770
3879
|
variant: t,
|
|
3771
3880
|
size: n,
|
|
3772
3881
|
className: e
|
|
@@ -3774,7 +3883,7 @@ function ki({ className: e, variant: t = "default", size: n = "default", asChild
|
|
|
3774
3883
|
...i
|
|
3775
3884
|
});
|
|
3776
3885
|
}
|
|
3777
|
-
var
|
|
3886
|
+
var Pi = W("flex shrink-0 items-center justify-center gap-2 group-has-data-[slot=item-description]/item:translate-y-0.5 group-has-data-[slot=item-description]/item:self-start [&_svg]:pointer-events-none", {
|
|
3778
3887
|
variants: { variant: {
|
|
3779
3888
|
default: "bg-transparent",
|
|
3780
3889
|
icon: "[&_svg:not([class*='size-'])]:size-4",
|
|
@@ -3782,53 +3891,53 @@ var Ai = W("flex shrink-0 items-center justify-center gap-2 group-has-data-[slot
|
|
|
3782
3891
|
} },
|
|
3783
3892
|
defaultVariants: { variant: "default" }
|
|
3784
3893
|
});
|
|
3785
|
-
function
|
|
3894
|
+
function Fi({ className: e, variant: t = "default", ...n }) {
|
|
3786
3895
|
return /* @__PURE__ */ X("div", {
|
|
3787
3896
|
"data-slot": "item-media",
|
|
3788
3897
|
"data-variant": t,
|
|
3789
|
-
className: Q(
|
|
3898
|
+
className: Q(Pi({
|
|
3790
3899
|
variant: t,
|
|
3791
3900
|
className: e
|
|
3792
3901
|
})),
|
|
3793
3902
|
...n
|
|
3794
3903
|
});
|
|
3795
3904
|
}
|
|
3796
|
-
function
|
|
3905
|
+
function Ii({ className: e, ...t }) {
|
|
3797
3906
|
return /* @__PURE__ */ X("div", {
|
|
3798
3907
|
"data-slot": "item-content",
|
|
3799
3908
|
className: Q("flex flex-1 flex-col gap-1 group-data-[size=xs]/item:gap-0 [&+[data-slot=item-content]]:flex-none", e),
|
|
3800
3909
|
...t
|
|
3801
3910
|
});
|
|
3802
3911
|
}
|
|
3803
|
-
function
|
|
3912
|
+
function Li({ className: e, ...t }) {
|
|
3804
3913
|
return /* @__PURE__ */ X("div", {
|
|
3805
3914
|
"data-slot": "item-title",
|
|
3806
3915
|
className: Q("line-clamp-1 flex w-fit items-center gap-2 text-sm leading-snug font-medium underline-offset-4", e),
|
|
3807
3916
|
...t
|
|
3808
3917
|
});
|
|
3809
3918
|
}
|
|
3810
|
-
function
|
|
3919
|
+
function Ri({ className: e, ...t }) {
|
|
3811
3920
|
return /* @__PURE__ */ X("p", {
|
|
3812
3921
|
"data-slot": "item-description",
|
|
3813
3922
|
className: Q("line-clamp-2 text-left text-sm leading-normal font-normal text-muted-foreground group-data-[size=xs]/item:text-xs [&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-primary", e),
|
|
3814
3923
|
...t
|
|
3815
3924
|
});
|
|
3816
3925
|
}
|
|
3817
|
-
function
|
|
3926
|
+
function zi({ className: e, ...t }) {
|
|
3818
3927
|
return /* @__PURE__ */ X("div", {
|
|
3819
3928
|
"data-slot": "item-actions",
|
|
3820
3929
|
className: Q("flex items-center gap-2", e),
|
|
3821
3930
|
...t
|
|
3822
3931
|
});
|
|
3823
3932
|
}
|
|
3824
|
-
function
|
|
3933
|
+
function Bi({ className: e, ...t }) {
|
|
3825
3934
|
return /* @__PURE__ */ X("div", {
|
|
3826
3935
|
"data-slot": "item-header",
|
|
3827
3936
|
className: Q("flex basis-full items-center justify-between gap-2", e),
|
|
3828
3937
|
...t
|
|
3829
3938
|
});
|
|
3830
3939
|
}
|
|
3831
|
-
function
|
|
3940
|
+
function Vi({ className: e, ...t }) {
|
|
3832
3941
|
return /* @__PURE__ */ X("div", {
|
|
3833
3942
|
"data-slot": "item-footer",
|
|
3834
3943
|
className: Q("flex basis-full items-center justify-between gap-2", e),
|
|
@@ -3837,10 +3946,10 @@ function Li({ className: e, ...t }) {
|
|
|
3837
3946
|
}
|
|
3838
3947
|
//#endregion
|
|
3839
3948
|
//#region src/components/ui/map.tsx
|
|
3840
|
-
var
|
|
3949
|
+
var Hi = {
|
|
3841
3950
|
dark: "https://basemaps.cartocdn.com/gl/dark-matter-gl-style/style.json",
|
|
3842
3951
|
light: "https://basemaps.cartocdn.com/gl/positron-gl-style/style.json"
|
|
3843
|
-
},
|
|
3952
|
+
}, Ui = [
|
|
3844
3953
|
{
|
|
3845
3954
|
label: "Light",
|
|
3846
3955
|
url: "https://basemaps.cartocdn.com/gl/positron-gl-style/style.json"
|
|
@@ -3853,13 +3962,13 @@ var Ri = {
|
|
|
3853
3962
|
label: "Dark",
|
|
3854
3963
|
url: "https://basemaps.cartocdn.com/gl/dark-matter-gl-style/style.json"
|
|
3855
3964
|
}
|
|
3856
|
-
],
|
|
3857
|
-
function
|
|
3858
|
-
let e = o(
|
|
3965
|
+
], Wi = r(null);
|
|
3966
|
+
function Gi() {
|
|
3967
|
+
let e = o(Wi);
|
|
3859
3968
|
if (!e) throw Error("useMap must be used within a Map component");
|
|
3860
3969
|
return e;
|
|
3861
3970
|
}
|
|
3862
|
-
function
|
|
3971
|
+
function Ki() {
|
|
3863
3972
|
return /* @__PURE__ */ X("div", {
|
|
3864
3973
|
className: "bg-background/50 absolute inset-0 z-10 flex items-center justify-center backdrop-blur-xs",
|
|
3865
3974
|
children: /* @__PURE__ */ Z("div", {
|
|
@@ -3872,7 +3981,7 @@ function Hi() {
|
|
|
3872
3981
|
})
|
|
3873
3982
|
});
|
|
3874
3983
|
}
|
|
3875
|
-
function
|
|
3984
|
+
function qi(e) {
|
|
3876
3985
|
let t = e.getCenter();
|
|
3877
3986
|
return {
|
|
3878
3987
|
center: [t.lng, t.lat],
|
|
@@ -3881,22 +3990,22 @@ function Ui(e) {
|
|
|
3881
3990
|
pitch: e.getPitch()
|
|
3882
3991
|
};
|
|
3883
3992
|
}
|
|
3884
|
-
var
|
|
3885
|
-
let v = h === !1 ? [] : h, y = d(null), [b, x] = f(null), [S, C] = f(!1), [w, T] = f(!1), [E, D] = f(0), O = d(null),
|
|
3993
|
+
var Ji = i(function({ children: e, className: t, theme: n, styles: r, projection: i, viewport: o, onViewportChange: c, loading: p = !1, controls: m = !0, tiles: h = Ui, ...g }, _) {
|
|
3994
|
+
let v = h === !1 ? [] : h, y = d(null), [b, x] = f(null), [S, C] = f(!1), [w, T] = f(!1), [E, D] = f(0), O = d(null), k = d(null), A = d(!1), ee = o !== void 0 && c !== void 0, j = d(c);
|
|
3886
3995
|
j.current = c;
|
|
3887
3996
|
let M = u(() => ({
|
|
3888
|
-
dark: r?.dark ??
|
|
3889
|
-
light: r?.light ??
|
|
3997
|
+
dark: r?.dark ?? Hi.dark,
|
|
3998
|
+
light: r?.light ?? Hi.light
|
|
3890
3999
|
}), [r]);
|
|
3891
4000
|
l(_, () => b, [b]);
|
|
3892
4001
|
let N = a(() => {
|
|
3893
|
-
|
|
4002
|
+
k.current &&= (clearTimeout(k.current), null);
|
|
3894
4003
|
}, []);
|
|
3895
4004
|
s(() => {
|
|
3896
4005
|
if (!y.current) return;
|
|
3897
4006
|
let e = v[0]?.url ?? M.light;
|
|
3898
4007
|
O.current = e;
|
|
3899
|
-
let t = new
|
|
4008
|
+
let t = new Ve.Map({
|
|
3900
4009
|
container: y.current,
|
|
3901
4010
|
style: e,
|
|
3902
4011
|
renderWorldCopies: !1,
|
|
@@ -3904,27 +4013,27 @@ var Wi = i(function({ children: e, className: t, theme: n, styles: r, projection
|
|
|
3904
4013
|
...g,
|
|
3905
4014
|
...o
|
|
3906
4015
|
}), n = () => {
|
|
3907
|
-
N(),
|
|
4016
|
+
N(), k.current = setTimeout(() => {
|
|
3908
4017
|
T(!0), i && t.setProjection(i);
|
|
3909
4018
|
}, 100);
|
|
3910
4019
|
}, r = () => C(!0), a = () => {
|
|
3911
|
-
|
|
4020
|
+
A.current || j.current?.(qi(t));
|
|
3912
4021
|
};
|
|
3913
4022
|
return t.on("load", r), t.on("styledata", n), t.on("move", a), x(t), () => {
|
|
3914
4023
|
N(), t.off("load", r), t.off("styledata", n), t.off("move", a), t.remove(), C(!1), T(!1), x(null);
|
|
3915
4024
|
};
|
|
3916
4025
|
}, []), s(() => {
|
|
3917
|
-
if (!b || !
|
|
3918
|
-
let e =
|
|
4026
|
+
if (!b || !ee || !o || b.isMoving()) return;
|
|
4027
|
+
let e = qi(b), t = {
|
|
3919
4028
|
center: o.center ?? e.center,
|
|
3920
4029
|
zoom: o.zoom ?? e.zoom,
|
|
3921
4030
|
bearing: o.bearing ?? e.bearing,
|
|
3922
4031
|
pitch: o.pitch ?? e.pitch
|
|
3923
4032
|
};
|
|
3924
|
-
t.center[0] === e.center[0] && t.center[1] === e.center[1] && t.zoom === e.zoom && t.bearing === e.bearing && t.pitch === e.pitch || (
|
|
4033
|
+
t.center[0] === e.center[0] && t.center[1] === e.center[1] && t.zoom === e.zoom && t.bearing === e.bearing && t.pitch === e.pitch || (A.current = !0, b.jumpTo(t), A.current = !1);
|
|
3925
4034
|
}, [
|
|
3926
4035
|
b,
|
|
3927
|
-
|
|
4036
|
+
ee,
|
|
3928
4037
|
o
|
|
3929
4038
|
]), s(() => {
|
|
3930
4039
|
if (!b) return;
|
|
@@ -3945,12 +4054,12 @@ var Wi = i(function({ children: e, className: t, theme: n, styles: r, projection
|
|
|
3945
4054
|
S,
|
|
3946
4055
|
w
|
|
3947
4056
|
]);
|
|
3948
|
-
return /* @__PURE__ */ X(
|
|
4057
|
+
return /* @__PURE__ */ X(Wi.Provider, {
|
|
3949
4058
|
value: P,
|
|
3950
4059
|
children: /* @__PURE__ */ Z("div", {
|
|
3951
4060
|
ref: y,
|
|
3952
4061
|
className: Q("relative h-full w-full", t),
|
|
3953
|
-
children: [(!S || p) && /* @__PURE__ */ X(
|
|
4062
|
+
children: [(!S || p) && /* @__PURE__ */ X(Ki, {}), b && /* @__PURE__ */ Z(Y, { children: [m && /* @__PURE__ */ X(ca, {
|
|
3954
4063
|
position: "top-right",
|
|
3955
4064
|
tiles: v,
|
|
3956
4065
|
tileIndex: E,
|
|
@@ -3958,14 +4067,14 @@ var Wi = i(function({ children: e, className: t, theme: n, styles: r, projection
|
|
|
3958
4067
|
}), e] })]
|
|
3959
4068
|
})
|
|
3960
4069
|
});
|
|
3961
|
-
}),
|
|
3962
|
-
function
|
|
3963
|
-
let e = o(
|
|
4070
|
+
}), Yi = r(null);
|
|
4071
|
+
function Xi() {
|
|
4072
|
+
let e = o(Yi);
|
|
3964
4073
|
if (!e) throw Error("Marker components must be used within MapMarker");
|
|
3965
4074
|
return e;
|
|
3966
4075
|
}
|
|
3967
|
-
function
|
|
3968
|
-
let { map: m } =
|
|
4076
|
+
function Zi({ longitude: e, latitude: t, children: n, onClick: r, onMouseEnter: i, onMouseLeave: a, onDragStart: o, onDrag: c, onDragEnd: l, draggable: f = !1, ...p }) {
|
|
4077
|
+
let { map: m } = Gi(), h = d({
|
|
3969
4078
|
onClick: r,
|
|
3970
4079
|
onMouseEnter: i,
|
|
3971
4080
|
onMouseLeave: a,
|
|
@@ -3982,7 +4091,7 @@ function qi({ longitude: e, latitude: t, children: n, onClick: r, onMouseEnter:
|
|
|
3982
4091
|
onDragEnd: l
|
|
3983
4092
|
};
|
|
3984
4093
|
let g = u(() => {
|
|
3985
|
-
let n = new
|
|
4094
|
+
let n = new Ve.Marker({
|
|
3986
4095
|
...p,
|
|
3987
4096
|
element: document.createElement("div"),
|
|
3988
4097
|
draggable: f
|
|
@@ -4013,7 +4122,7 @@ function qi({ longitude: e, latitude: t, children: n, onClick: r, onMouseEnter:
|
|
|
4013
4122
|
};
|
|
4014
4123
|
}, [m]), (g.getLngLat().lng !== e || g.getLngLat().lat !== t) && g.setLngLat([e, t]), g.isDraggable() !== f && g.setDraggable(f);
|
|
4015
4124
|
let _ = g.getOffset(), v = p.offset ?? [0, 0], [y, b] = Array.isArray(v) ? v : [v.x, v.y];
|
|
4016
|
-
return (_.x !== y || _.y !== b) && g.setOffset(v), g.getRotation() !== p.rotation && g.setRotation(p.rotation ?? 0), g.getRotationAlignment() !== p.rotationAlignment && g.setRotationAlignment(p.rotationAlignment ?? "auto"), g.getPitchAlignment() !== p.pitchAlignment && g.setPitchAlignment(p.pitchAlignment ?? "auto"), /* @__PURE__ */ X(
|
|
4125
|
+
return (_.x !== y || _.y !== b) && g.setOffset(v), g.getRotation() !== p.rotation && g.setRotation(p.rotation ?? 0), g.getRotationAlignment() !== p.rotationAlignment && g.setRotationAlignment(p.rotationAlignment ?? "auto"), g.getPitchAlignment() !== p.pitchAlignment && g.setPitchAlignment(p.pitchAlignment ?? "auto"), /* @__PURE__ */ X(Yi.Provider, {
|
|
4017
4126
|
value: {
|
|
4018
4127
|
marker: g,
|
|
4019
4128
|
map: m
|
|
@@ -4021,27 +4130,27 @@ function qi({ longitude: e, latitude: t, children: n, onClick: r, onMouseEnter:
|
|
|
4021
4130
|
children: n
|
|
4022
4131
|
});
|
|
4023
4132
|
}
|
|
4024
|
-
function
|
|
4025
|
-
let { marker: n } =
|
|
4026
|
-
return
|
|
4133
|
+
function Qi({ children: e, className: t }) {
|
|
4134
|
+
let { marker: n } = Xi();
|
|
4135
|
+
return He(/* @__PURE__ */ X("div", {
|
|
4027
4136
|
className: Q("relative cursor-pointer", t),
|
|
4028
|
-
children: e || /* @__PURE__ */ X(
|
|
4137
|
+
children: e || /* @__PURE__ */ X($i, {})
|
|
4029
4138
|
}), n.getElement());
|
|
4030
4139
|
}
|
|
4031
|
-
function
|
|
4140
|
+
function $i() {
|
|
4032
4141
|
return /* @__PURE__ */ X("div", { className: "relative h-4 w-4 rounded-full border-2 border-white bg-blue-500 shadow-lg" });
|
|
4033
4142
|
}
|
|
4034
|
-
function
|
|
4143
|
+
function ea({ onClick: e }) {
|
|
4035
4144
|
return /* @__PURE__ */ X("button", {
|
|
4036
4145
|
type: "button",
|
|
4037
4146
|
onClick: e,
|
|
4038
4147
|
"aria-label": "Close popup",
|
|
4039
4148
|
className: "focus-visible:ring-ring hover:bg-muted text-foreground absolute top-0.5 right-0.5 z-10 inline-flex size-5 cursor-pointer items-center justify-center rounded-sm transition-colors focus:outline-none focus-visible:ring-2",
|
|
4040
|
-
children: /* @__PURE__ */ X(
|
|
4149
|
+
children: /* @__PURE__ */ X(ye, { className: "size-3.5" })
|
|
4041
4150
|
});
|
|
4042
4151
|
}
|
|
4043
|
-
function
|
|
4044
|
-
let { marker: i, map: a } =
|
|
4152
|
+
function ta({ children: e, className: t, closeButton: n = !1, ...r }) {
|
|
4153
|
+
let { marker: i, map: a } = Xi(), o = u(() => document.createElement("div"), []), c = d(r), l = u(() => new Ve.Popup({
|
|
4045
4154
|
offset: 16,
|
|
4046
4155
|
...r,
|
|
4047
4156
|
closeButton: !1
|
|
@@ -4054,13 +4163,13 @@ function Zi({ children: e, className: t, closeButton: n = !1, ...r }) {
|
|
|
4054
4163
|
let e = c.current;
|
|
4055
4164
|
e.offset !== r.offset && l.setOffset(r.offset ?? 16), e.maxWidth !== r.maxWidth && r.maxWidth && l.setMaxWidth(r.maxWidth ?? "none"), c.current = r;
|
|
4056
4165
|
}
|
|
4057
|
-
return
|
|
4166
|
+
return He(/* @__PURE__ */ Z("div", {
|
|
4058
4167
|
className: Q("bg-popover text-popover-foreground relative max-w-62 rounded-md border p-3 shadow-md", "animate-in fade-in-0 zoom-in-95 duration-200 ease-out", t),
|
|
4059
|
-
children: [n && /* @__PURE__ */ X(
|
|
4168
|
+
children: [n && /* @__PURE__ */ X(ea, { onClick: () => l.remove() }), e]
|
|
4060
4169
|
}), o);
|
|
4061
4170
|
}
|
|
4062
|
-
function
|
|
4063
|
-
let { marker: r, map: i } =
|
|
4171
|
+
function na({ children: e, className: t, ...n }) {
|
|
4172
|
+
let { marker: r, map: i } = Xi(), a = u(() => document.createElement("div"), []), o = d(n), c = u(() => new Ve.Popup({
|
|
4064
4173
|
offset: 16,
|
|
4065
4174
|
...n,
|
|
4066
4175
|
closeOnClick: !0,
|
|
@@ -4079,12 +4188,12 @@ function Qi({ children: e, className: t, ...n }) {
|
|
|
4079
4188
|
let e = o.current;
|
|
4080
4189
|
e.offset !== n.offset && c.setOffset(n.offset ?? 16), e.maxWidth !== n.maxWidth && n.maxWidth && c.setMaxWidth(n.maxWidth ?? "none"), o.current = n;
|
|
4081
4190
|
}
|
|
4082
|
-
return
|
|
4191
|
+
return He(/* @__PURE__ */ X("div", {
|
|
4083
4192
|
className: Q("bg-foreground text-background pointer-events-none rounded-md px-2 py-1 text-xs text-balance shadow-md", "animate-in fade-in-0 zoom-in-95 duration-200 ease-out", t),
|
|
4084
4193
|
children: e
|
|
4085
4194
|
}), a);
|
|
4086
4195
|
}
|
|
4087
|
-
function
|
|
4196
|
+
function ra({ children: e, className: t, position: n = "top" }) {
|
|
4088
4197
|
return /* @__PURE__ */ X("div", {
|
|
4089
4198
|
className: Q("absolute left-1/2 -translate-x-1/2 whitespace-nowrap", "text-foreground text-[10px] font-medium", {
|
|
4090
4199
|
top: "bottom-full mb-1",
|
|
@@ -4093,19 +4202,19 @@ function $i({ children: e, className: t, position: n = "top" }) {
|
|
|
4093
4202
|
children: e
|
|
4094
4203
|
});
|
|
4095
4204
|
}
|
|
4096
|
-
var
|
|
4205
|
+
var ia = {
|
|
4097
4206
|
"top-left": "top-2 left-2",
|
|
4098
4207
|
"top-right": "top-2 right-2",
|
|
4099
4208
|
"bottom-left": "bottom-2 left-2",
|
|
4100
4209
|
"bottom-right": "bottom-10 right-2"
|
|
4101
4210
|
};
|
|
4102
|
-
function
|
|
4211
|
+
function aa({ children: e }) {
|
|
4103
4212
|
return /* @__PURE__ */ X("div", {
|
|
4104
4213
|
className: "border-border bg-background [&>button:not(:last-child)]:border-border flex flex-col overflow-hidden rounded-md border shadow-sm [&>button:not(:last-child)]:border-b",
|
|
4105
4214
|
children: e
|
|
4106
4215
|
});
|
|
4107
4216
|
}
|
|
4108
|
-
function
|
|
4217
|
+
function oa({ onClick: e, label: t, children: n, disabled: r = !1 }) {
|
|
4109
4218
|
return /* @__PURE__ */ X("button", {
|
|
4110
4219
|
onClick: e,
|
|
4111
4220
|
"aria-label": t,
|
|
@@ -4115,7 +4224,7 @@ function na({ onClick: e, label: t, children: n, disabled: r = !1 }) {
|
|
|
4115
4224
|
children: n
|
|
4116
4225
|
});
|
|
4117
4226
|
}
|
|
4118
|
-
function
|
|
4227
|
+
function sa({ tiles: e, tileIndex: t, onTileChange: n, openLeft: r }) {
|
|
4119
4228
|
let [i, a] = f(!1), o = d(null);
|
|
4120
4229
|
return s(() => {
|
|
4121
4230
|
if (!i) return;
|
|
@@ -4130,10 +4239,10 @@ function ra({ tiles: e, tileIndex: t, onTileChange: n, openLeft: r }) {
|
|
|
4130
4239
|
}, [i]), /* @__PURE__ */ Z("div", {
|
|
4131
4240
|
ref: o,
|
|
4132
4241
|
className: "relative",
|
|
4133
|
-
children: [/* @__PURE__ */ X(
|
|
4242
|
+
children: [/* @__PURE__ */ X(aa, { children: /* @__PURE__ */ X(oa, {
|
|
4134
4243
|
onClick: () => a((e) => !e),
|
|
4135
4244
|
label: `Basemap: ${e[t]?.label ?? ""}`,
|
|
4136
|
-
children: /* @__PURE__ */ X(
|
|
4245
|
+
children: /* @__PURE__ */ X(z, { className: "size-4" })
|
|
4137
4246
|
}) }), i && /* @__PURE__ */ X("div", {
|
|
4138
4247
|
role: "listbox",
|
|
4139
4248
|
"aria-label": "Basemap",
|
|
@@ -4151,8 +4260,8 @@ function ra({ tiles: e, tileIndex: t, onTileChange: n, openLeft: r }) {
|
|
|
4151
4260
|
})]
|
|
4152
4261
|
});
|
|
4153
4262
|
}
|
|
4154
|
-
function
|
|
4155
|
-
let { map: d } =
|
|
4263
|
+
function ca({ position: e = "bottom-right", showZoom: t = !0, showCompass: n = !1, showLocate: r = !1, showFullscreen: i = !1, className: o, onLocate: s, tiles: c = [], tileIndex: l = 0, onTileChange: u }) {
|
|
4264
|
+
let { map: d } = Gi(), [p, m] = f(!1), h = a(() => {
|
|
4156
4265
|
d?.zoomTo(d.getZoom() + 1, { duration: 300 });
|
|
4157
4266
|
}, [d]), g = a(() => {
|
|
4158
4267
|
d?.zoomTo(d.getZoom() - 1, { duration: 300 });
|
|
@@ -4177,31 +4286,31 @@ function ia({ position: e = "bottom-right", showZoom: t = !0, showCompass: n = !
|
|
|
4177
4286
|
e && (document.fullscreenElement ? document.exitFullscreen() : e.requestFullscreen());
|
|
4178
4287
|
}, [d]);
|
|
4179
4288
|
return /* @__PURE__ */ Z("div", {
|
|
4180
|
-
className: Q("absolute z-10 flex flex-col gap-1.5",
|
|
4289
|
+
className: Q("absolute z-10 flex flex-col gap-1.5", ia[e], o),
|
|
4181
4290
|
children: [
|
|
4182
|
-
t && /* @__PURE__ */ Z(
|
|
4291
|
+
t && /* @__PURE__ */ Z(aa, { children: [/* @__PURE__ */ X(oa, {
|
|
4183
4292
|
onClick: h,
|
|
4184
4293
|
label: "Zoom in",
|
|
4185
|
-
children: /* @__PURE__ */ X(
|
|
4186
|
-
}), /* @__PURE__ */ X(
|
|
4294
|
+
children: /* @__PURE__ */ X(ce, { className: "size-4" })
|
|
4295
|
+
}), /* @__PURE__ */ X(oa, {
|
|
4187
4296
|
onClick: g,
|
|
4188
4297
|
label: "Zoom out",
|
|
4189
|
-
children: /* @__PURE__ */ X(
|
|
4298
|
+
children: /* @__PURE__ */ X(oe, { className: "size-4" })
|
|
4190
4299
|
})] }),
|
|
4191
|
-
c.length > 1 && /* @__PURE__ */ X(
|
|
4300
|
+
c.length > 1 && /* @__PURE__ */ X(sa, {
|
|
4192
4301
|
tiles: c,
|
|
4193
4302
|
tileIndex: l,
|
|
4194
4303
|
onTileChange: u,
|
|
4195
4304
|
openLeft: e.endsWith("right")
|
|
4196
4305
|
}),
|
|
4197
|
-
n && /* @__PURE__ */ X(
|
|
4198
|
-
r && /* @__PURE__ */ X(
|
|
4306
|
+
n && /* @__PURE__ */ X(aa, { children: /* @__PURE__ */ X(la, { onClick: _ }) }),
|
|
4307
|
+
r && /* @__PURE__ */ X(aa, { children: /* @__PURE__ */ X(oa, {
|
|
4199
4308
|
onClick: v,
|
|
4200
4309
|
label: "Find my location",
|
|
4201
4310
|
disabled: p,
|
|
4202
|
-
children: p ? /* @__PURE__ */ X(re, { className: "size-4 animate-spin" }) : /* @__PURE__ */ X(
|
|
4311
|
+
children: p ? /* @__PURE__ */ X(re, { className: "size-4 animate-spin" }) : /* @__PURE__ */ X(ae, { className: "size-4" })
|
|
4203
4312
|
}) }),
|
|
4204
|
-
i && /* @__PURE__ */ X(
|
|
4313
|
+
i && /* @__PURE__ */ X(aa, { children: /* @__PURE__ */ X(oa, {
|
|
4205
4314
|
onClick: y,
|
|
4206
4315
|
label: "Toggle fullscreen",
|
|
4207
4316
|
children: /* @__PURE__ */ X(V, { className: "size-4" })
|
|
@@ -4209,8 +4318,8 @@ function ia({ position: e = "bottom-right", showZoom: t = !0, showCompass: n = !
|
|
|
4209
4318
|
]
|
|
4210
4319
|
});
|
|
4211
4320
|
}
|
|
4212
|
-
function
|
|
4213
|
-
let { map: t } =
|
|
4321
|
+
function la({ onClick: e }) {
|
|
4322
|
+
let { map: t } = Gi(), n = d(null);
|
|
4214
4323
|
return s(() => {
|
|
4215
4324
|
if (!t || !n.current) return;
|
|
4216
4325
|
let e = n.current, r = () => {
|
|
@@ -4220,7 +4329,7 @@ function aa({ onClick: e }) {
|
|
|
4220
4329
|
return t.on("rotate", r), t.on("pitch", r), r(), () => {
|
|
4221
4330
|
t.off("rotate", r), t.off("pitch", r);
|
|
4222
4331
|
};
|
|
4223
|
-
}, [t]), /* @__PURE__ */ X(
|
|
4332
|
+
}, [t]), /* @__PURE__ */ X(oa, {
|
|
4224
4333
|
onClick: e,
|
|
4225
4334
|
label: "Reset bearing to north",
|
|
4226
4335
|
children: /* @__PURE__ */ Z("svg", {
|
|
@@ -4249,10 +4358,10 @@ function aa({ onClick: e }) {
|
|
|
4249
4358
|
})
|
|
4250
4359
|
});
|
|
4251
4360
|
}
|
|
4252
|
-
function
|
|
4253
|
-
let { map: c } =
|
|
4361
|
+
function ua({ longitude: e, latitude: t, onClose: n, children: r, className: i, closeButton: a = !1, ...o }) {
|
|
4362
|
+
let { map: c } = Gi(), l = d(o), f = d(n);
|
|
4254
4363
|
f.current = n;
|
|
4255
|
-
let p = u(() => document.createElement("div"), []), m = u(() => new
|
|
4364
|
+
let p = u(() => document.createElement("div"), []), m = u(() => new Ve.Popup({
|
|
4256
4365
|
offset: 16,
|
|
4257
4366
|
...o,
|
|
4258
4367
|
closeButton: !1
|
|
@@ -4267,15 +4376,15 @@ function oa({ longitude: e, latitude: t, onClose: n, children: r, className: i,
|
|
|
4267
4376
|
let n = l.current;
|
|
4268
4377
|
(m.getLngLat().lng !== e || m.getLngLat().lat !== t) && m.setLngLat([e, t]), n.offset !== o.offset && m.setOffset(o.offset ?? 16), n.maxWidth !== o.maxWidth && o.maxWidth && m.setMaxWidth(o.maxWidth ?? "none"), l.current = o;
|
|
4269
4378
|
}
|
|
4270
|
-
return
|
|
4379
|
+
return He(/* @__PURE__ */ Z("div", {
|
|
4271
4380
|
className: Q("bg-popover text-popover-foreground relative max-w-62 rounded-md border p-3 shadow-md", "animate-in fade-in-0 zoom-in-95 duration-200 ease-out", i),
|
|
4272
|
-
children: [a && /* @__PURE__ */ X(
|
|
4381
|
+
children: [a && /* @__PURE__ */ X(ea, { onClick: () => {
|
|
4273
4382
|
m.remove();
|
|
4274
4383
|
} }), r]
|
|
4275
4384
|
}), p);
|
|
4276
4385
|
}
|
|
4277
|
-
function
|
|
4278
|
-
let { map: f, isLoaded: p } =
|
|
4386
|
+
function da({ id: e, coordinates: t, color: n = "#4285F4", width: r = 3, opacity: i = .8, dashArray: a, onClick: o, onMouseEnter: l, onMouseLeave: u, interactive: d = !0 }) {
|
|
4387
|
+
let { map: f, isLoaded: p } = Gi(), m = c(), h = e ?? m, g = `route-source-${h}`, _ = `route-layer-${h}`;
|
|
4279
4388
|
return s(() => {
|
|
4280
4389
|
if (!(!p || !f)) return f.addSource(g, {
|
|
4281
4390
|
type: "geojson",
|
|
@@ -4354,15 +4463,15 @@ function sa({ id: e, coordinates: t, color: n = "#4285F4", width: r = 3, opacity
|
|
|
4354
4463
|
d
|
|
4355
4464
|
]), null;
|
|
4356
4465
|
}
|
|
4357
|
-
var
|
|
4466
|
+
var fa = .2, pa = 64, ma = 12, ha = 6, ga = {
|
|
4358
4467
|
"line-color": "#4285F4",
|
|
4359
4468
|
"line-width": 2,
|
|
4360
4469
|
"line-opacity": .85
|
|
4361
|
-
},
|
|
4470
|
+
}, _a = {
|
|
4362
4471
|
"line-join": "round",
|
|
4363
4472
|
"line-cap": "round"
|
|
4364
4473
|
};
|
|
4365
|
-
function
|
|
4474
|
+
function va(e, t) {
|
|
4366
4475
|
if (!t) return e;
|
|
4367
4476
|
let n = { ...e };
|
|
4368
4477
|
for (let [e, r] of Object.entries(t)) {
|
|
@@ -4381,7 +4490,7 @@ function ma(e, t) {
|
|
|
4381
4490
|
}
|
|
4382
4491
|
return n;
|
|
4383
4492
|
}
|
|
4384
|
-
function
|
|
4493
|
+
function ya(e, t, n, r) {
|
|
4385
4494
|
let [i, a] = e, [o, s] = t, c = o - i, l = s - a, u = Math.hypot(c, l);
|
|
4386
4495
|
if (u === 0 || n === 0) return [e, t];
|
|
4387
4496
|
let d = (i + o) / 2, f = (a + s) / 2, p = -l / u, m = c / u, h = u * n, g = d + p * h, _ = f + m * h, v = [], y = Math.max(2, Math.floor(r));
|
|
@@ -4391,16 +4500,16 @@ function ha(e, t, n, r) {
|
|
|
4391
4500
|
}
|
|
4392
4501
|
return v;
|
|
4393
4502
|
}
|
|
4394
|
-
function
|
|
4395
|
-
let { map: h, isLoaded: g } =
|
|
4396
|
-
...
|
|
4503
|
+
function ba({ data: e, id: t, curvature: n = fa, samples: r = pa, paint: i, layout: a, hoverPaint: o, onClick: l, onHover: f, interactive: p = !0, beforeId: m }) {
|
|
4504
|
+
let { map: h, isLoaded: g } = Gi(), _ = c(), v = t ?? _, y = `arc-source-${v}`, b = `arc-layer-${v}`, x = `arc-hit-layer-${v}`, S = u(() => va({
|
|
4505
|
+
...ga,
|
|
4397
4506
|
...i
|
|
4398
4507
|
}, o), [i, o]), C = u(() => ({
|
|
4399
|
-
...
|
|
4508
|
+
..._a,
|
|
4400
4509
|
...a
|
|
4401
4510
|
}), [a]), w = u(() => {
|
|
4402
|
-
let e = i?.["line-width"] ??
|
|
4403
|
-
return Math.max((typeof e == "number" ? e :
|
|
4511
|
+
let e = i?.["line-width"] ?? ga["line-width"];
|
|
4512
|
+
return Math.max((typeof e == "number" ? e : ma) + ha, ma);
|
|
4404
4513
|
}, [i]), T = u(() => ({
|
|
4405
4514
|
type: "FeatureCollection",
|
|
4406
4515
|
features: e.map((e) => {
|
|
@@ -4410,7 +4519,7 @@ function ga({ data: e, id: t, curvature: n = ca, samples: r = la, paint: i, layo
|
|
|
4410
4519
|
properties: a,
|
|
4411
4520
|
geometry: {
|
|
4412
4521
|
type: "LineString",
|
|
4413
|
-
coordinates:
|
|
4522
|
+
coordinates: ya(t, i, n, r)
|
|
4414
4523
|
}
|
|
4415
4524
|
};
|
|
4416
4525
|
})
|
|
@@ -4436,7 +4545,7 @@ function ga({ data: e, id: t, curvature: n = ca, samples: r = la, paint: i, layo
|
|
|
4436
4545
|
id: x,
|
|
4437
4546
|
type: "line",
|
|
4438
4547
|
source: y,
|
|
4439
|
-
layout:
|
|
4548
|
+
layout: _a,
|
|
4440
4549
|
paint: {
|
|
4441
4550
|
"line-color": "rgba(0, 0, 0, 0)",
|
|
4442
4551
|
"line-width": w,
|
|
@@ -4519,12 +4628,12 @@ function ga({ data: e, id: t, curvature: n = ca, samples: r = la, paint: i, layo
|
|
|
4519
4628
|
p
|
|
4520
4629
|
]), null;
|
|
4521
4630
|
}
|
|
4522
|
-
function
|
|
4631
|
+
function xa({ data: e, clusterMaxZoom: t = 14, clusterRadius: n = 50, clusterColors: r = [
|
|
4523
4632
|
"#22c55e",
|
|
4524
4633
|
"#eab308",
|
|
4525
4634
|
"#ef4444"
|
|
4526
4635
|
], clusterThresholds: i = [100, 750], pointColor: a = "#3b82f6", onPointClick: o, onClusterClick: l }) {
|
|
4527
|
-
let { map: u, isLoaded: f } =
|
|
4636
|
+
let { map: u, isLoaded: f } = Gi(), p = c(), m = `cluster-source-${p}`, h = `clusters-${p}`, g = `cluster-count-${p}`, _ = `unclustered-point-${p}`, v = d({
|
|
4528
4637
|
clusterColors: r,
|
|
4529
4638
|
clusterThresholds: i,
|
|
4530
4639
|
pointColor: a
|
|
@@ -4679,12 +4788,12 @@ function _a({ data: e, clusterMaxZoom: t = 14, clusterRadius: n = 50, clusterCol
|
|
|
4679
4788
|
}
|
|
4680
4789
|
//#endregion
|
|
4681
4790
|
//#region src/components/ui/progress.tsx
|
|
4682
|
-
function
|
|
4683
|
-
return /* @__PURE__ */ X(
|
|
4791
|
+
function Sa({ className: e, value: t, ...n }) {
|
|
4792
|
+
return /* @__PURE__ */ X(we.Root, {
|
|
4684
4793
|
"data-slot": "progress",
|
|
4685
4794
|
className: Q("relative flex h-1 w-full items-center overflow-x-hidden rounded-full bg-muted", e),
|
|
4686
4795
|
...n,
|
|
4687
|
-
children: /* @__PURE__ */ X(
|
|
4796
|
+
children: /* @__PURE__ */ X(we.Indicator, {
|
|
4688
4797
|
"data-slot": "progress-indicator",
|
|
4689
4798
|
className: "size-full flex-1 bg-primary transition-all",
|
|
4690
4799
|
style: { transform: `translateX(-${100 - (t || 0)}%)` }
|
|
@@ -4693,26 +4802,26 @@ function va({ className: e, value: t, ...n }) {
|
|
|
4693
4802
|
}
|
|
4694
4803
|
//#endregion
|
|
4695
4804
|
//#region src/components/ui/select.tsx
|
|
4696
|
-
function
|
|
4805
|
+
function Ca({ ...e }) {
|
|
4697
4806
|
return /* @__PURE__ */ X(J.Root, {
|
|
4698
4807
|
"data-slot": "select",
|
|
4699
4808
|
...e
|
|
4700
4809
|
});
|
|
4701
4810
|
}
|
|
4702
|
-
function
|
|
4811
|
+
function wa({ className: e, ...t }) {
|
|
4703
4812
|
return /* @__PURE__ */ X(J.Group, {
|
|
4704
4813
|
"data-slot": "select-group",
|
|
4705
4814
|
className: Q("scroll-my-1 p-1", e),
|
|
4706
4815
|
...t
|
|
4707
4816
|
});
|
|
4708
4817
|
}
|
|
4709
|
-
function
|
|
4818
|
+
function Ta({ ...e }) {
|
|
4710
4819
|
return /* @__PURE__ */ X(J.Value, {
|
|
4711
4820
|
"data-slot": "select-value",
|
|
4712
4821
|
...e
|
|
4713
4822
|
});
|
|
4714
4823
|
}
|
|
4715
|
-
function
|
|
4824
|
+
function Ea({ className: e, size: t = "default", children: n, ...r }) {
|
|
4716
4825
|
return /* @__PURE__ */ Z(J.Trigger, {
|
|
4717
4826
|
"data-slot": "select-trigger",
|
|
4718
4827
|
"data-size": t,
|
|
@@ -4724,7 +4833,7 @@ function Sa({ className: e, size: t = "default", children: n, ...r }) {
|
|
|
4724
4833
|
})]
|
|
4725
4834
|
});
|
|
4726
4835
|
}
|
|
4727
|
-
function
|
|
4836
|
+
function Da({ className: e, children: t, position: n = "item-aligned", align: r = "center", ...i }) {
|
|
4728
4837
|
return /* @__PURE__ */ X(J.Portal, { children: /* @__PURE__ */ Z(J.Content, {
|
|
4729
4838
|
"data-slot": "select-content",
|
|
4730
4839
|
"data-align-trigger": n === "item-aligned",
|
|
@@ -4733,24 +4842,24 @@ function Ca({ className: e, children: t, position: n = "item-aligned", align: r
|
|
|
4733
4842
|
align: r,
|
|
4734
4843
|
...i,
|
|
4735
4844
|
children: [
|
|
4736
|
-
/* @__PURE__ */ X(
|
|
4845
|
+
/* @__PURE__ */ X(ja, {}),
|
|
4737
4846
|
/* @__PURE__ */ X(J.Viewport, {
|
|
4738
4847
|
"data-position": n,
|
|
4739
4848
|
className: Q("data-[position=popper]:h-(--radix-select-trigger-height) data-[position=popper]:w-full data-[position=popper]:min-w-(--radix-select-trigger-width)", n === "popper" && ""),
|
|
4740
4849
|
children: t
|
|
4741
4850
|
}),
|
|
4742
|
-
/* @__PURE__ */ X(
|
|
4851
|
+
/* @__PURE__ */ X(Ma, {})
|
|
4743
4852
|
]
|
|
4744
4853
|
}) });
|
|
4745
4854
|
}
|
|
4746
|
-
function
|
|
4855
|
+
function Oa({ className: e, ...t }) {
|
|
4747
4856
|
return /* @__PURE__ */ X(J.Label, {
|
|
4748
4857
|
"data-slot": "select-label",
|
|
4749
4858
|
className: Q("px-1.5 py-1 text-xs text-muted-foreground", e),
|
|
4750
4859
|
...t
|
|
4751
4860
|
});
|
|
4752
4861
|
}
|
|
4753
|
-
function
|
|
4862
|
+
function ka({ className: e, children: t, ...n }) {
|
|
4754
4863
|
return /* @__PURE__ */ Z(J.Item, {
|
|
4755
4864
|
"data-slot": "select-item",
|
|
4756
4865
|
className: Q("relative flex w-full cursor-default items-center gap-1.5 rounded-md py-1 pr-8 pl-1.5 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2", e),
|
|
@@ -4761,14 +4870,14 @@ function Ta({ className: e, children: t, ...n }) {
|
|
|
4761
4870
|
}), /* @__PURE__ */ X(J.ItemText, { children: t })]
|
|
4762
4871
|
});
|
|
4763
4872
|
}
|
|
4764
|
-
function
|
|
4873
|
+
function Aa({ className: e, ...t }) {
|
|
4765
4874
|
return /* @__PURE__ */ X(J.Separator, {
|
|
4766
4875
|
"data-slot": "select-separator",
|
|
4767
4876
|
className: Q("pointer-events-none -mx-1 my-1 h-px bg-border", e),
|
|
4768
4877
|
...t
|
|
4769
4878
|
});
|
|
4770
4879
|
}
|
|
4771
|
-
function
|
|
4880
|
+
function ja({ className: e, ...t }) {
|
|
4772
4881
|
return /* @__PURE__ */ X(J.ScrollUpButton, {
|
|
4773
4882
|
"data-slot": "select-scroll-up-button",
|
|
4774
4883
|
className: Q("z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4", e),
|
|
@@ -4776,7 +4885,7 @@ function Da({ className: e, ...t }) {
|
|
|
4776
4885
|
children: /* @__PURE__ */ X(C, {})
|
|
4777
4886
|
});
|
|
4778
4887
|
}
|
|
4779
|
-
function
|
|
4888
|
+
function Ma({ className: e, ...t }) {
|
|
4780
4889
|
return /* @__PURE__ */ X(J.ScrollDownButton, {
|
|
4781
4890
|
"data-slot": "select-scroll-down-button",
|
|
4782
4891
|
className: Q("z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4", e),
|
|
@@ -4786,14 +4895,14 @@ function Oa({ className: e, ...t }) {
|
|
|
4786
4895
|
}
|
|
4787
4896
|
//#endregion
|
|
4788
4897
|
//#region src/components/ui/slider.tsx
|
|
4789
|
-
function
|
|
4898
|
+
function Na({ className: e, defaultValue: t, value: r, min: i = 0, max: a = 100, ...o }) {
|
|
4790
4899
|
let s = n.useMemo(() => Array.isArray(r) ? r : Array.isArray(t) ? t : [i, a], [
|
|
4791
4900
|
r,
|
|
4792
4901
|
t,
|
|
4793
4902
|
i,
|
|
4794
4903
|
a
|
|
4795
4904
|
]);
|
|
4796
|
-
return /* @__PURE__ */ Z(
|
|
4905
|
+
return /* @__PURE__ */ Z(De.Root, {
|
|
4797
4906
|
"data-slot": "slider",
|
|
4798
4907
|
defaultValue: t,
|
|
4799
4908
|
value: r,
|
|
@@ -4801,14 +4910,14 @@ function ka({ className: e, defaultValue: t, value: r, min: i = 0, max: a = 100,
|
|
|
4801
4910
|
max: a,
|
|
4802
4911
|
className: Q("relative flex w-full touch-none items-center select-none data-disabled:opacity-50 data-vertical:h-full data-vertical:min-h-40 data-vertical:w-auto data-vertical:flex-col", e),
|
|
4803
4912
|
...o,
|
|
4804
|
-
children: [/* @__PURE__ */ X(
|
|
4913
|
+
children: [/* @__PURE__ */ X(De.Track, {
|
|
4805
4914
|
"data-slot": "slider-track",
|
|
4806
4915
|
className: "relative grow overflow-hidden rounded-full bg-muted data-horizontal:h-1 data-horizontal:w-full data-vertical:h-full data-vertical:w-1",
|
|
4807
|
-
children: /* @__PURE__ */ X(
|
|
4916
|
+
children: /* @__PURE__ */ X(De.Range, {
|
|
4808
4917
|
"data-slot": "slider-range",
|
|
4809
4918
|
className: "absolute bg-primary select-none data-horizontal:h-full data-vertical:w-full"
|
|
4810
4919
|
})
|
|
4811
|
-
}), Array.from({ length: s.length }, (e, t) => /* @__PURE__ */ X(
|
|
4920
|
+
}), Array.from({ length: s.length }, (e, t) => /* @__PURE__ */ X(De.Thumb, {
|
|
4812
4921
|
"data-slot": "slider-thumb",
|
|
4813
4922
|
className: "relative block size-3 shrink-0 rounded-full border border-ring bg-white ring-ring/50 transition-[color,box-shadow] select-none after:absolute after:-inset-2 hover:ring-3 focus-visible:ring-3 focus-visible:outline-hidden active:ring-3 disabled:pointer-events-none disabled:opacity-50"
|
|
4814
4923
|
}, t))]
|
|
@@ -4816,17 +4925,17 @@ function ka({ className: e, defaultValue: t, value: r, min: i = 0, max: a = 100,
|
|
|
4816
4925
|
}
|
|
4817
4926
|
//#endregion
|
|
4818
4927
|
//#region src/components/ui/sonner.tsx
|
|
4819
|
-
var
|
|
4820
|
-
let { theme: t = "system" } =
|
|
4821
|
-
return /* @__PURE__ */ X(
|
|
4928
|
+
var Pa = ({ ...e }) => {
|
|
4929
|
+
let { theme: t = "system" } = Ue();
|
|
4930
|
+
return /* @__PURE__ */ X(We, {
|
|
4822
4931
|
theme: t,
|
|
4823
4932
|
className: "toaster group",
|
|
4824
4933
|
icons: {
|
|
4825
4934
|
success: /* @__PURE__ */ X(E, { className: "size-4" }),
|
|
4826
|
-
info: /* @__PURE__ */ X(
|
|
4827
|
-
warning: /* @__PURE__ */ X(
|
|
4828
|
-
error: /* @__PURE__ */ X(
|
|
4829
|
-
loading: /* @__PURE__ */ X(
|
|
4935
|
+
info: /* @__PURE__ */ X(ne, { className: "size-4" }),
|
|
4936
|
+
warning: /* @__PURE__ */ X(ge, { className: "size-4" }),
|
|
4937
|
+
error: /* @__PURE__ */ X(se, { className: "size-4" }),
|
|
4938
|
+
loading: /* @__PURE__ */ X(B, { className: "size-4 animate-spin" })
|
|
4830
4939
|
},
|
|
4831
4940
|
style: {
|
|
4832
4941
|
"--normal-bg": "var(--popover)",
|
|
@@ -4837,20 +4946,20 @@ var Aa = ({ ...e }) => {
|
|
|
4837
4946
|
toastOptions: { classNames: { toast: "cn-toast" } },
|
|
4838
4947
|
...e
|
|
4839
4948
|
});
|
|
4840
|
-
},
|
|
4841
|
-
let e = o(
|
|
4949
|
+
}, Fa = r(void 0), Ia = r(void 0), La = () => {
|
|
4950
|
+
let e = o(Fa);
|
|
4842
4951
|
if (!e) throw Error("useStepper must be used within a Stepper");
|
|
4843
4952
|
return e;
|
|
4844
|
-
},
|
|
4845
|
-
let e = o(
|
|
4953
|
+
}, Ra = () => {
|
|
4954
|
+
let e = o(Ia);
|
|
4846
4955
|
if (!e) throw Error("useStepItem must be used within a StepperItem");
|
|
4847
4956
|
return e;
|
|
4848
4957
|
};
|
|
4849
|
-
function
|
|
4958
|
+
function za({ defaultValue: e = 0, value: t, onValueChange: r, orientation: i = "horizontal", className: a, ...o }) {
|
|
4850
4959
|
let [s, c] = n.useState(e), l = n.useCallback((e) => {
|
|
4851
4960
|
t === void 0 && c(e), r?.(e);
|
|
4852
4961
|
}, [t, r]), u = t ?? s;
|
|
4853
|
-
return /* @__PURE__ */ X(
|
|
4962
|
+
return /* @__PURE__ */ X(Fa.Provider, {
|
|
4854
4963
|
value: {
|
|
4855
4964
|
activeStep: u,
|
|
4856
4965
|
orientation: i,
|
|
@@ -4864,9 +4973,9 @@ function Fa({ defaultValue: e = 0, value: t, onValueChange: r, orientation: i =
|
|
|
4864
4973
|
})
|
|
4865
4974
|
});
|
|
4866
4975
|
}
|
|
4867
|
-
function
|
|
4868
|
-
let { activeStep: s } =
|
|
4869
|
-
return /* @__PURE__ */ X(
|
|
4976
|
+
function Ba({ step: e, completed: t = !1, disabled: n = !1, loading: r = !1, className: i, children: a, ...o }) {
|
|
4977
|
+
let { activeStep: s } = La(), c = t || e < s ? "completed" : s === e ? "active" : "inactive", l = r && e === s;
|
|
4978
|
+
return /* @__PURE__ */ X(Ia.Provider, {
|
|
4870
4979
|
value: {
|
|
4871
4980
|
isDisabled: n,
|
|
4872
4981
|
isLoading: l,
|
|
@@ -4883,9 +4992,9 @@ function Ia({ step: e, completed: t = !1, disabled: n = !1, loading: r = !1, cla
|
|
|
4883
4992
|
})
|
|
4884
4993
|
});
|
|
4885
4994
|
}
|
|
4886
|
-
function
|
|
4887
|
-
let { setActiveStep: i } =
|
|
4888
|
-
return e ? /* @__PURE__ */ X(e ?
|
|
4995
|
+
function Va({ asChild: e = !1, className: t, children: n, ...r }) {
|
|
4996
|
+
let { setActiveStep: i } = La(), { step: a, isDisabled: o } = Ra();
|
|
4997
|
+
return e ? /* @__PURE__ */ X(e ? Oe.Root : "span", {
|
|
4889
4998
|
className: t,
|
|
4890
4999
|
"data-slot": "stepper-trigger",
|
|
4891
5000
|
children: n
|
|
@@ -4899,8 +5008,8 @@ function La({ asChild: e = !1, className: t, children: n, ...r }) {
|
|
|
4899
5008
|
children: n
|
|
4900
5009
|
});
|
|
4901
5010
|
}
|
|
4902
|
-
function
|
|
4903
|
-
let { state: i, step: a, isLoading: o } =
|
|
5011
|
+
function Ha({ asChild: e = !1, className: t, children: n, ...r }) {
|
|
5012
|
+
let { state: i, step: a, isLoading: o } = Ra();
|
|
4904
5013
|
return /* @__PURE__ */ X("span", {
|
|
4905
5014
|
className: Q("relative flex size-6 shrink-0 items-center justify-center rounded-full bg-muted font-medium text-muted-foreground text-xs data-[state=active]:bg-primary data-[state=completed]:bg-primary data-[state=active]:text-primary-foreground data-[state=completed]:text-primary-foreground", t),
|
|
4906
5015
|
"data-slot": "stepper-indicator",
|
|
@@ -4918,7 +5027,7 @@ function Ra({ asChild: e = !1, className: t, children: n, ...r }) {
|
|
|
4918
5027
|
}),
|
|
4919
5028
|
o && /* @__PURE__ */ X("span", {
|
|
4920
5029
|
className: "absolute transition-all",
|
|
4921
|
-
children: /* @__PURE__ */ X(
|
|
5030
|
+
children: /* @__PURE__ */ X(ie, {
|
|
4922
5031
|
"aria-hidden": "true",
|
|
4923
5032
|
className: "animate-spin",
|
|
4924
5033
|
size: 14
|
|
@@ -4927,21 +5036,21 @@ function Ra({ asChild: e = !1, className: t, children: n, ...r }) {
|
|
|
4927
5036
|
] })
|
|
4928
5037
|
});
|
|
4929
5038
|
}
|
|
4930
|
-
function
|
|
5039
|
+
function Ua({ className: e, ...t }) {
|
|
4931
5040
|
return /* @__PURE__ */ X("h3", {
|
|
4932
5041
|
className: Q("font-medium text-sm", e),
|
|
4933
5042
|
"data-slot": "stepper-title",
|
|
4934
5043
|
...t
|
|
4935
5044
|
});
|
|
4936
5045
|
}
|
|
4937
|
-
function
|
|
5046
|
+
function Wa({ className: e, ...t }) {
|
|
4938
5047
|
return /* @__PURE__ */ X("p", {
|
|
4939
5048
|
className: Q("text-muted-foreground text-sm", e),
|
|
4940
5049
|
"data-slot": "stepper-description",
|
|
4941
5050
|
...t
|
|
4942
5051
|
});
|
|
4943
5052
|
}
|
|
4944
|
-
function
|
|
5053
|
+
function Ga({ className: e, ...t }) {
|
|
4945
5054
|
return /* @__PURE__ */ X("div", {
|
|
4946
5055
|
className: Q("m-0.5 bg-muted group-data-[orientation=horizontal]/stepper:h-0.5 group-data-[orientation=vertical]/stepper:h-12 group-data-[orientation=horizontal]/stepper:w-full group-data-[orientation=vertical]/stepper:w-0.5 group-data-[orientation=horizontal]/stepper:flex-1 group-data-[state=completed]/step:bg-primary", e),
|
|
4947
5056
|
"data-slot": "stepper-separator",
|
|
@@ -4950,13 +5059,13 @@ function Va({ className: e, ...t }) {
|
|
|
4950
5059
|
}
|
|
4951
5060
|
//#endregion
|
|
4952
5061
|
//#region src/components/ui/switch.tsx
|
|
4953
|
-
function
|
|
4954
|
-
return /* @__PURE__ */ X(
|
|
5062
|
+
function Ka({ className: e, size: t = "default", ...n }) {
|
|
5063
|
+
return /* @__PURE__ */ X(ke.Root, {
|
|
4955
5064
|
"data-slot": "switch",
|
|
4956
5065
|
"data-size": t,
|
|
4957
5066
|
className: Q("peer group/switch relative inline-flex shrink-0 items-center rounded-full border border-transparent transition-all outline-none after:absolute after:-inset-x-3 after:-inset-y-2 focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50 aria-invalid:border-destructive aria-invalid:ring-3 aria-invalid:ring-destructive/20 data-[size=default]:h-[18.4px] data-[size=default]:w-[32px] data-[size=sm]:h-[14px] data-[size=sm]:w-[24px] dark:aria-invalid:border-destructive/50 dark:aria-invalid:ring-destructive/40 data-checked:bg-primary data-unchecked:bg-input dark:data-unchecked:bg-input/80 data-disabled:cursor-not-allowed data-disabled:opacity-50", e),
|
|
4958
5067
|
...n,
|
|
4959
|
-
children: /* @__PURE__ */ X(
|
|
5068
|
+
children: /* @__PURE__ */ X(ke.Thumb, {
|
|
4960
5069
|
"data-slot": "switch-thumb",
|
|
4961
5070
|
className: "pointer-events-none block rounded-full bg-background ring-0 transition-transform group-data-[size=default]/switch:size-4 group-data-[size=sm]/switch:size-3 group-data-[size=default]/switch:data-checked:translate-x-[calc(100%-2px)] group-data-[size=sm]/switch:data-checked:translate-x-[calc(100%-2px)] dark:data-checked:bg-primary-foreground group-data-[size=default]/switch:data-unchecked:translate-x-0 group-data-[size=sm]/switch:data-unchecked:translate-x-0 dark:data-unchecked:bg-foreground"
|
|
4962
5071
|
})
|
|
@@ -4964,38 +5073,38 @@ function Ha({ className: e, size: t = "default", ...n }) {
|
|
|
4964
5073
|
}
|
|
4965
5074
|
//#endregion
|
|
4966
5075
|
//#region src/components/ui/tabs.tsx
|
|
4967
|
-
function
|
|
4968
|
-
return /* @__PURE__ */ X(
|
|
5076
|
+
function qa({ className: e, orientation: t = "horizontal", ...n }) {
|
|
5077
|
+
return /* @__PURE__ */ X(Ae.Root, {
|
|
4969
5078
|
"data-slot": "tabs",
|
|
4970
5079
|
"data-orientation": t,
|
|
4971
5080
|
className: Q("group/tabs flex gap-2 data-horizontal:flex-col", e),
|
|
4972
5081
|
...n
|
|
4973
5082
|
});
|
|
4974
5083
|
}
|
|
4975
|
-
var
|
|
5084
|
+
var Ja = W("group/tabs-list inline-flex w-fit items-center justify-center rounded-lg p-[3px] text-muted-foreground group-data-horizontal/tabs:h-8 group-data-vertical/tabs:h-fit group-data-vertical/tabs:flex-col data-[variant=line]:rounded-none", {
|
|
4976
5085
|
variants: { variant: {
|
|
4977
5086
|
default: "bg-muted",
|
|
4978
5087
|
line: "gap-1 bg-transparent"
|
|
4979
5088
|
} },
|
|
4980
5089
|
defaultVariants: { variant: "default" }
|
|
4981
5090
|
});
|
|
4982
|
-
function
|
|
4983
|
-
return /* @__PURE__ */ X(
|
|
5091
|
+
function Ya({ className: e, variant: t = "default", ...n }) {
|
|
5092
|
+
return /* @__PURE__ */ X(Ae.List, {
|
|
4984
5093
|
"data-slot": "tabs-list",
|
|
4985
5094
|
"data-variant": t,
|
|
4986
|
-
className: Q(
|
|
5095
|
+
className: Q(Ja({ variant: t }), e),
|
|
4987
5096
|
...n
|
|
4988
5097
|
});
|
|
4989
5098
|
}
|
|
4990
|
-
function
|
|
4991
|
-
return /* @__PURE__ */ X(
|
|
5099
|
+
function Xa({ className: e, ...t }) {
|
|
5100
|
+
return /* @__PURE__ */ X(Ae.Trigger, {
|
|
4992
5101
|
"data-slot": "tabs-trigger",
|
|
4993
5102
|
className: Q("relative inline-flex h-[calc(100%-1px)] flex-1 items-center justify-center gap-1.5 rounded-md border border-transparent px-1.5 py-0.5 text-sm font-medium whitespace-nowrap text-foreground/60 transition-all group-data-vertical/tabs:w-full group-data-vertical/tabs:justify-start hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 focus-visible:outline-1 focus-visible:outline-ring disabled:pointer-events-none disabled:opacity-50 has-data-[icon=inline-end]:pr-1 has-data-[icon=inline-start]:pl-1 dark:text-muted-foreground dark:hover:text-foreground group-data-[variant=default]/tabs-list:data-active:shadow-sm group-data-[variant=line]/tabs-list:data-active:shadow-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", "group-data-[variant=line]/tabs-list:bg-transparent group-data-[variant=line]/tabs-list:data-active:bg-transparent dark:group-data-[variant=line]/tabs-list:data-active:border-transparent dark:group-data-[variant=line]/tabs-list:data-active:bg-transparent", "data-active:bg-background data-active:text-foreground dark:data-active:border-input dark:data-active:bg-input/30 dark:data-active:text-foreground", "after:absolute after:bg-foreground after:opacity-0 after:transition-opacity group-data-horizontal/tabs:after:inset-x-0 group-data-horizontal/tabs:after:bottom-[-5px] group-data-horizontal/tabs:after:h-0.5 group-data-vertical/tabs:after:inset-y-0 group-data-vertical/tabs:after:-right-1 group-data-vertical/tabs:after:w-0.5 group-data-[variant=line]/tabs-list:data-active:after:opacity-100", e),
|
|
4994
5103
|
...t
|
|
4995
5104
|
});
|
|
4996
5105
|
}
|
|
4997
|
-
function
|
|
4998
|
-
return /* @__PURE__ */ X(
|
|
5106
|
+
function Za({ className: e, ...t }) {
|
|
5107
|
+
return /* @__PURE__ */ X(Ae.Content, {
|
|
4999
5108
|
"data-slot": "tabs-content",
|
|
5000
5109
|
className: Q("flex-1 text-sm outline-none", e),
|
|
5001
5110
|
...t
|
|
@@ -5003,16 +5112,16 @@ function qa({ className: e, ...t }) {
|
|
|
5003
5112
|
}
|
|
5004
5113
|
//#endregion
|
|
5005
5114
|
//#region src/components/ui/timeline.tsx
|
|
5006
|
-
var
|
|
5007
|
-
let e = n.useContext(
|
|
5115
|
+
var Qa = n.createContext(void 0), $a = () => {
|
|
5116
|
+
let e = n.useContext(Qa);
|
|
5008
5117
|
if (!e) throw Error("useTimeline must be used within a Timeline");
|
|
5009
5118
|
return e;
|
|
5010
5119
|
};
|
|
5011
|
-
function
|
|
5120
|
+
function eo({ defaultValue: e = 1, value: t, onValueChange: r, orientation: i = "vertical", className: a, ...o }) {
|
|
5012
5121
|
let [s, c] = n.useState(e), l = n.useCallback((e) => {
|
|
5013
5122
|
t === void 0 && c(e), r?.(e);
|
|
5014
5123
|
}, [t, r]), u = t ?? s;
|
|
5015
|
-
return /* @__PURE__ */ X(
|
|
5124
|
+
return /* @__PURE__ */ X(Qa.Provider, {
|
|
5016
5125
|
value: {
|
|
5017
5126
|
activeStep: u,
|
|
5018
5127
|
setActiveStep: l
|
|
@@ -5025,28 +5134,28 @@ function Xa({ defaultValue: e = 1, value: t, onValueChange: r, orientation: i =
|
|
|
5025
5134
|
})
|
|
5026
5135
|
});
|
|
5027
5136
|
}
|
|
5028
|
-
function
|
|
5137
|
+
function to({ className: e, ...t }) {
|
|
5029
5138
|
return /* @__PURE__ */ X("div", {
|
|
5030
5139
|
className: Q("text-muted-foreground text-sm", e),
|
|
5031
5140
|
"data-slot": "timeline-content",
|
|
5032
5141
|
...t
|
|
5033
5142
|
});
|
|
5034
5143
|
}
|
|
5035
|
-
function
|
|
5036
|
-
return /* @__PURE__ */ X(e ?
|
|
5144
|
+
function no({ asChild: e = !1, className: t, ...n }) {
|
|
5145
|
+
return /* @__PURE__ */ X(e ? Oe.Root : "time", {
|
|
5037
5146
|
className: Q("mb-1 block font-medium text-muted-foreground text-xs group-data-[orientation=vertical]/timeline:max-sm:h-4", t),
|
|
5038
5147
|
"data-slot": "timeline-date",
|
|
5039
5148
|
...n
|
|
5040
5149
|
});
|
|
5041
5150
|
}
|
|
5042
|
-
function
|
|
5151
|
+
function ro({ className: e, ...t }) {
|
|
5043
5152
|
return /* @__PURE__ */ X("div", {
|
|
5044
5153
|
className: Q(e),
|
|
5045
5154
|
"data-slot": "timeline-header",
|
|
5046
5155
|
...t
|
|
5047
5156
|
});
|
|
5048
5157
|
}
|
|
5049
|
-
function
|
|
5158
|
+
function io({ className: e, children: t, ...n }) {
|
|
5050
5159
|
return /* @__PURE__ */ X("div", {
|
|
5051
5160
|
"aria-hidden": "true",
|
|
5052
5161
|
className: Q("group-data-[orientation=horizontal]/timeline:-top-6 group-data-[orientation=horizontal]/timeline:-translate-y-1/2 group-data-[orientation=vertical]/timeline:-left-6 group-data-[orientation=vertical]/timeline:-translate-x-1/2 absolute size-4 rounded-full border-2 border-primary/20 group-data-[orientation=vertical]/timeline:top-0 group-data-[orientation=horizontal]/timeline:left-0 group-data-completed/timeline-item:border-primary", e),
|
|
@@ -5055,8 +5164,8 @@ function eo({ className: e, children: t, ...n }) {
|
|
|
5055
5164
|
children: t
|
|
5056
5165
|
});
|
|
5057
5166
|
}
|
|
5058
|
-
function
|
|
5059
|
-
let { activeStep: r } =
|
|
5167
|
+
function ao({ step: e, className: t, ...n }) {
|
|
5168
|
+
let { activeStep: r } = $a();
|
|
5060
5169
|
return /* @__PURE__ */ X("div", {
|
|
5061
5170
|
className: Q("group/timeline-item relative flex flex-1 flex-col gap-0.5 group-data-[orientation=vertical]/timeline:ms-8 group-data-[orientation=horizontal]/timeline:mt-8 group-data-[orientation=horizontal]/timeline:not-last:pe-8 group-data-[orientation=vertical]/timeline:not-last:pb-12 has-[+[data-completed]]:[&_[data-slot=timeline-separator]]:bg-primary", t),
|
|
5062
5171
|
"data-completed": e <= r || void 0,
|
|
@@ -5064,7 +5173,7 @@ function to({ step: e, className: t, ...n }) {
|
|
|
5064
5173
|
...n
|
|
5065
5174
|
});
|
|
5066
5175
|
}
|
|
5067
|
-
function
|
|
5176
|
+
function oo({ className: e, ...t }) {
|
|
5068
5177
|
return /* @__PURE__ */ X("div", {
|
|
5069
5178
|
"aria-hidden": "true",
|
|
5070
5179
|
className: Q("group-data-[orientation=horizontal]/timeline:-top-6 group-data-[orientation=horizontal]/timeline:-translate-y-1/2 group-data-[orientation=vertical]/timeline:-left-6 group-data-[orientation=vertical]/timeline:-translate-x-1/2 absolute self-start bg-primary/10 group-last/timeline-item:hidden group-data-[orientation=horizontal]/timeline:h-0.5 group-data-[orientation=vertical]/timeline:h-[calc(100%-1rem-0.25rem)] group-data-[orientation=horizontal]/timeline:w-[calc(100%-1rem-0.25rem)] group-data-[orientation=vertical]/timeline:w-0.5 group-data-[orientation=horizontal]/timeline:translate-x-4.5 group-data-[orientation=vertical]/timeline:translate-y-4.5", e),
|
|
@@ -5072,7 +5181,7 @@ function no({ className: e, ...t }) {
|
|
|
5072
5181
|
...t
|
|
5073
5182
|
});
|
|
5074
5183
|
}
|
|
5075
|
-
function
|
|
5184
|
+
function so({ className: e, ...t }) {
|
|
5076
5185
|
return /* @__PURE__ */ X("h3", {
|
|
5077
5186
|
className: Q("font-medium text-sm", e),
|
|
5078
5187
|
"data-slot": "timeline-title",
|
|
@@ -5081,7 +5190,7 @@ function ro({ className: e, ...t }) {
|
|
|
5081
5190
|
}
|
|
5082
5191
|
//#endregion
|
|
5083
5192
|
//#region src/components/ui/toggle.tsx
|
|
5084
|
-
var
|
|
5193
|
+
var co = W("group/toggle inline-flex items-center justify-center gap-1 rounded-lg text-sm font-medium whitespace-nowrap transition-all outline-none hover:bg-muted hover:text-foreground focus-visible:border-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 disabled:pointer-events-none disabled:opacity-50 aria-invalid:border-destructive aria-invalid:ring-destructive/20 aria-pressed:bg-muted data-[state=on]:bg-muted dark:aria-invalid:ring-destructive/40 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", {
|
|
5085
5194
|
variants: {
|
|
5086
5195
|
variant: {
|
|
5087
5196
|
default: "bg-transparent",
|
|
@@ -5098,10 +5207,10 @@ var io = W("group/toggle inline-flex items-center justify-center gap-1 rounded-l
|
|
|
5098
5207
|
size: "default"
|
|
5099
5208
|
}
|
|
5100
5209
|
});
|
|
5101
|
-
function
|
|
5102
|
-
return /* @__PURE__ */ X(
|
|
5210
|
+
function lo({ className: e, variant: t = "default", size: n = "default", ...r }) {
|
|
5211
|
+
return /* @__PURE__ */ X(je.Root, {
|
|
5103
5212
|
"data-slot": "toggle",
|
|
5104
|
-
className: Q(
|
|
5213
|
+
className: Q(co({
|
|
5105
5214
|
variant: t,
|
|
5106
5215
|
size: n,
|
|
5107
5216
|
className: e
|
|
@@ -5111,14 +5220,14 @@ function ao({ className: e, variant: t = "default", size: n = "default", ...r })
|
|
|
5111
5220
|
}
|
|
5112
5221
|
//#endregion
|
|
5113
5222
|
//#region src/components/ui/toggle-group.tsx
|
|
5114
|
-
var
|
|
5223
|
+
var uo = n.createContext({
|
|
5115
5224
|
size: "default",
|
|
5116
5225
|
variant: "default",
|
|
5117
5226
|
spacing: 2,
|
|
5118
5227
|
orientation: "horizontal"
|
|
5119
5228
|
});
|
|
5120
|
-
function
|
|
5121
|
-
return /* @__PURE__ */ X(
|
|
5229
|
+
function fo({ className: e, variant: t, size: n, spacing: r = 2, orientation: i = "horizontal", children: a, ...o }) {
|
|
5230
|
+
return /* @__PURE__ */ X(Me.Root, {
|
|
5122
5231
|
"data-slot": "toggle-group",
|
|
5123
5232
|
"data-variant": t,
|
|
5124
5233
|
"data-size": n,
|
|
@@ -5127,7 +5236,7 @@ function so({ className: e, variant: t, size: n, spacing: r = 2, orientation: i
|
|
|
5127
5236
|
style: { "--gap": r },
|
|
5128
5237
|
className: Q("group/toggle-group flex w-fit flex-row items-center gap-[--spacing(var(--gap))] rounded-lg data-[size=sm]:rounded-[min(var(--radius-md),10px)] data-vertical:flex-col data-vertical:items-stretch", e),
|
|
5129
5238
|
...o,
|
|
5130
|
-
children: /* @__PURE__ */ X(
|
|
5239
|
+
children: /* @__PURE__ */ X(uo.Provider, {
|
|
5131
5240
|
value: {
|
|
5132
5241
|
variant: t,
|
|
5133
5242
|
size: n,
|
|
@@ -5138,14 +5247,14 @@ function so({ className: e, variant: t, size: n, spacing: r = 2, orientation: i
|
|
|
5138
5247
|
})
|
|
5139
5248
|
});
|
|
5140
5249
|
}
|
|
5141
|
-
function
|
|
5142
|
-
let o = n.useContext(
|
|
5143
|
-
return /* @__PURE__ */ X(
|
|
5250
|
+
function po({ className: e, children: t, variant: r = "default", size: i = "default", ...a }) {
|
|
5251
|
+
let o = n.useContext(uo);
|
|
5252
|
+
return /* @__PURE__ */ X(Me.Item, {
|
|
5144
5253
|
"data-slot": "toggle-group-item",
|
|
5145
5254
|
"data-variant": o.variant || r,
|
|
5146
5255
|
"data-size": o.size || i,
|
|
5147
5256
|
"data-spacing": o.spacing,
|
|
5148
|
-
className: Q("shrink-0 group-data-[spacing=0]/toggle-group:rounded-none group-data-[spacing=0]/toggle-group:px-2 focus:z-10 focus-visible:z-10 group-data-[spacing=0]/toggle-group:has-data-[icon=inline-end]:pr-1.5 group-data-[spacing=0]/toggle-group:has-data-[icon=inline-start]:pl-1.5 group-data-horizontal/toggle-group:data-[spacing=0]:first:rounded-l-lg group-data-vertical/toggle-group:data-[spacing=0]:first:rounded-t-lg group-data-horizontal/toggle-group:data-[spacing=0]:last:rounded-r-lg group-data-vertical/toggle-group:data-[spacing=0]:last:rounded-b-lg group-data-horizontal/toggle-group:data-[spacing=0]:data-[variant=outline]:border-l-0 group-data-vertical/toggle-group:data-[spacing=0]:data-[variant=outline]:border-t-0 group-data-horizontal/toggle-group:data-[spacing=0]:data-[variant=outline]:first:border-l group-data-vertical/toggle-group:data-[spacing=0]:data-[variant=outline]:first:border-t",
|
|
5257
|
+
className: Q("shrink-0 group-data-[spacing=0]/toggle-group:rounded-none group-data-[spacing=0]/toggle-group:px-2 focus:z-10 focus-visible:z-10 group-data-[spacing=0]/toggle-group:has-data-[icon=inline-end]:pr-1.5 group-data-[spacing=0]/toggle-group:has-data-[icon=inline-start]:pl-1.5 group-data-horizontal/toggle-group:data-[spacing=0]:first:rounded-l-lg group-data-vertical/toggle-group:data-[spacing=0]:first:rounded-t-lg group-data-horizontal/toggle-group:data-[spacing=0]:last:rounded-r-lg group-data-vertical/toggle-group:data-[spacing=0]:last:rounded-b-lg group-data-horizontal/toggle-group:data-[spacing=0]:data-[variant=outline]:border-l-0 group-data-vertical/toggle-group:data-[spacing=0]:data-[variant=outline]:border-t-0 group-data-horizontal/toggle-group:data-[spacing=0]:data-[variant=outline]:first:border-l group-data-vertical/toggle-group:data-[spacing=0]:data-[variant=outline]:first:border-t", co({
|
|
5149
5258
|
variant: o.variant || r,
|
|
5150
5259
|
size: o.size || i
|
|
5151
5260
|
}), e),
|
|
@@ -5155,35 +5264,35 @@ function co({ className: e, children: t, variant: r = "default", size: i = "defa
|
|
|
5155
5264
|
}
|
|
5156
5265
|
//#endregion
|
|
5157
5266
|
//#region src/components/ui/tooltip.tsx
|
|
5158
|
-
function
|
|
5159
|
-
return /* @__PURE__ */ X(
|
|
5267
|
+
function mo({ delayDuration: e = 0, ...t }) {
|
|
5268
|
+
return /* @__PURE__ */ X(Ne.Provider, {
|
|
5160
5269
|
"data-slot": "tooltip-provider",
|
|
5161
5270
|
delayDuration: e,
|
|
5162
5271
|
...t
|
|
5163
5272
|
});
|
|
5164
5273
|
}
|
|
5165
|
-
function
|
|
5166
|
-
return /* @__PURE__ */ X(
|
|
5274
|
+
function ho({ ...e }) {
|
|
5275
|
+
return /* @__PURE__ */ X(Ne.Root, {
|
|
5167
5276
|
"data-slot": "tooltip",
|
|
5168
5277
|
...e
|
|
5169
5278
|
});
|
|
5170
5279
|
}
|
|
5171
|
-
function
|
|
5172
|
-
return /* @__PURE__ */ X(
|
|
5280
|
+
function go({ ...e }) {
|
|
5281
|
+
return /* @__PURE__ */ X(Ne.Trigger, {
|
|
5173
5282
|
"data-slot": "tooltip-trigger",
|
|
5174
5283
|
...e
|
|
5175
5284
|
});
|
|
5176
5285
|
}
|
|
5177
|
-
function
|
|
5178
|
-
return /* @__PURE__ */ X(
|
|
5286
|
+
function _o({ className: e, sideOffset: t = 0, children: n, ...r }) {
|
|
5287
|
+
return /* @__PURE__ */ X(Ne.Portal, { children: /* @__PURE__ */ Z(Ne.Content, {
|
|
5179
5288
|
"data-slot": "tooltip-content",
|
|
5180
5289
|
sideOffset: t,
|
|
5181
5290
|
className: Q("z-50 inline-flex w-fit max-w-xs origin-(--radix-tooltip-content-transform-origin) items-center gap-1.5 rounded-md bg-foreground px-3 py-1.5 text-xs text-background has-data-[slot=kbd]:pr-1.5 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 **:data-[slot=kbd]:relative **:data-[slot=kbd]:isolate **:data-[slot=kbd]:z-50 **:data-[slot=kbd]:rounded-sm data-[state=delayed-open]:animate-in data-[state=delayed-open]:fade-in-0 data-[state=delayed-open]:zoom-in-95 data-open:animate-in data-open:fade-in-0 data-open:zoom-in-95 data-closed:animate-out data-closed:fade-out-0 data-closed:zoom-out-95", e),
|
|
5182
5291
|
...r,
|
|
5183
|
-
children: [n, /* @__PURE__ */ X(
|
|
5292
|
+
children: [n, /* @__PURE__ */ X(Ne.Arrow, { className: "z-50 size-2.5 translate-y-[calc(-50%_-_2px)] rotate-45 rounded-[2px] bg-foreground fill-foreground" })]
|
|
5184
5293
|
}) });
|
|
5185
5294
|
}
|
|
5186
5295
|
//#endregion
|
|
5187
|
-
export {
|
|
5296
|
+
export { ft as ActionsMenu, Dt as AdvancedInput, xn as AdvancedSelect, ci as Alert, di as AlertAction, jt as AlertCard, Mt as AlertCardAction, ui as AlertDescription, Ln as AlertDialog, qn as AlertDialogAction, Jn as AlertDialogCancel, Vn as AlertDialogContent, Kn as AlertDialogDescription, Un as AlertDialogFooter, Hn as AlertDialogHeader, Wn as AlertDialogMedia, Bn as AlertDialogOverlay, zn as AlertDialogPortal, Gn as AlertDialogTitle, Rn as AlertDialogTrigger, li as AlertTitle, kt as Badge, $ as Button, pi as ButtonGroup, hi as ButtonGroupSeparator, mi as ButtonGroupText, Yr as Calendar, Xr as CalendarDayButton, _r as Card, xr as CardAction, Sr as CardContent, br as CardDescription, Cr as CardFooter, vr as CardHeader, In as CardRadioGroup, yr as CardTitle, bi as ChartContainer, wi as ChartLegend, Ti as ChartLegendContent, xi as ChartStyle, Si as ChartTooltip, Ci as ChartTooltipContent, Sn as Checkbox, rn as Command, an as CommandDialog, cn as CommandEmpty, ln as CommandGroup, on as CommandInput, dn as CommandItem, sn as CommandList, un as CommandSeparator, fn as CommandShortcut, Yn as ConfirmPrompt, Xn as CustomTabs, Qn as DataCell, Mn as DataTable, oi as DateTimeRangePicker, $n as DefRow, Lt as Dialog, Bt as DialogClose, Ht as DialogContent, Kt as DialogDescription, Wt as DialogFooter, Ut as DialogHeader, Vt as DialogOverlay, zt as DialogPortal, Gt as DialogTitle, Rt as DialogTrigger, Ye as DropdownMenu, tt as DropdownMenuCheckboxItem, Qe as DropdownMenuContent, $e as DropdownMenuGroup, et as DropdownMenuItem, it as DropdownMenuLabel, Xe as DropdownMenuPortal, nt as DropdownMenuRadioGroup, rt as DropdownMenuRadioItem, at as DropdownMenuSeparator, ot as DropdownMenuShortcut, st as DropdownMenuSub, lt as DropdownMenuSubContent, ct as DropdownMenuSubTrigger, Ze as DropdownMenuTrigger, er as Empty, or as EmptyContent, ar as EmptyDescription, tr as EmptyHeader, rr as EmptyMedia, sr as EmptyState, ir as EmptyTitle, cr as FacetedFilter, yt as Field, bt as FieldContent, Ct as FieldDescription, Tt as FieldError, _t as FieldGroup, xt as FieldLabel, gt as FieldLegend, wt as FieldSeparator, ht as FieldSet, St as FieldTitle, It as FileUpload, Nn as FormDialog, Di as HoverCard, ki as HoverCardContent, Oi as HoverCardTrigger, qt as Input, Yt as InputGroup, Zt as InputGroupAddon, $t as InputGroupButton, tn as InputGroupInput, en as InputGroupText, nn as InputGroupTextarea, Ni as Item, zi as ItemActions, Ii as ItemContent, Ri as ItemDescription, Vi as ItemFooter, Ai as ItemGroup, Bi as ItemHeader, Fi as ItemMedia, ji as ItemSeparator, Li as ItemTitle, pt as Label, dr as ListCard, ur as ListCardChip, pr as ListCardGrid, lr as ListCardPerson, Ji as Map, ba as MapArc, xa as MapClusterLayer, ca as MapControls, Zi as MapMarker, ua as MapPopup, da as MapRoute, Qi as MarkerContent, ra as MarkerLabel, ta as MarkerPopup, na as MarkerTooltip, mr as NotFound, pn as Popover, gn as PopoverAnchor, hn as PopoverContent, yn as PopoverDescription, _n as PopoverHeader, vn as PopoverTitle, mn as PopoverTrigger, Sa as Progress, hr as QuickStat, Pn as RadioGroup, Fn as RadioGroupItem, Ca as Select, Da as SelectContent, wa as SelectGroup, ka as SelectItem, Oa as SelectLabel, Ma as SelectScrollDownButton, ja as SelectScrollUpButton, Aa as SelectSeparator, Ea as SelectTrigger, Ta as SelectValue, Tr as SensorCard, mt as Separator, Er as Sheet, Or as SheetClose, jr as SheetContent, Fr as SheetDescription, Nr as SheetFooter, Mr as SheetHeader, Pr as SheetTitle, Dr as SheetTrigger, Ir as SideSheet, Lr as SideSheetSection, Na as Slider, qe as Spinner, Br as StatCard, Gr as StatusAvatar, Wr as StatusIcon, Kr as StatusList, qr as StatusListGroup, Jr as StatusListItem, za as Stepper, Wa as StepperDescription, Ha as StepperIndicator, Ba as StepperItem, Ga as StepperSeparator, Ua as StepperTitle, Va as StepperTrigger, Ka as Switch, Cn as Table, Tn as TableBody, An as TableCaption, kn as TableCell, En as TableFooter, On as TableHead, wn as TableHeader, Dn as TableRow, qa as Tabs, Za as TabsContent, Ya as TabsList, Xa as TabsTrigger, Jt as Textarea, eo as Timeline, to as TimelineContent, no as TimelineDate, ro as TimelineHeader, io as TimelineIndicator, ao as TimelineItem, oo as TimelineSeparator, so as TimelineTitle, Pa as Toaster, lo as Toggle, fo as ToggleGroup, po as ToggleGroupItem, ho as Tooltip, _o as TooltipContent, mo as TooltipProvider, go as TooltipTrigger, Ot as badgeVariants, fi as buttonGroupVariants, Je as buttonVariants, gr as cardVariants, Q as cn, Ge as formatBytes, ni as navigateRange, ti as presetToRange, Ja as tabsListVariants, co as toggleVariants, Ke as useFileUpload, Gi as useMap };
|
|
5188
5297
|
|
|
5189
5298
|
//# sourceMappingURL=index.js.map
|