florixui 1.4.1 → 1.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +219 -0
- package/dist/components/custom/alert-card.d.ts +38 -0
- package/dist/components/custom/data-cell.d.ts +24 -0
- package/dist/components/custom/data-table.d.ts +7 -2
- package/dist/components/custom/empty-state.d.ts +21 -0
- package/dist/components/custom/not-found.d.ts +25 -0
- package/dist/components/ui/card.d.ts +1 -1
- package/dist/components/ui/empty.d.ts +12 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +1173 -919
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
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,
|
|
6
|
-
import { cva as
|
|
7
|
-
import { AlertDialog as
|
|
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
|
+
import { cva as W } from "class-variance-authority";
|
|
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 Ve = (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 Ve = (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 Ve = (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 Ve = (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 Ue({ 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 We = U("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,26 +251,26 @@ 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
|
|
255
|
-
return /* @__PURE__ */ X(
|
|
254
|
+
function Ye({ ...e }) {
|
|
255
|
+
return /* @__PURE__ */ X(q.Root, {
|
|
256
256
|
"data-slot": "dropdown-menu",
|
|
257
257
|
...e
|
|
258
258
|
});
|
|
259
259
|
}
|
|
260
|
-
function
|
|
261
|
-
return /* @__PURE__ */ X(
|
|
260
|
+
function Xe({ ...e }) {
|
|
261
|
+
return /* @__PURE__ */ X(q.Portal, {
|
|
262
262
|
"data-slot": "dropdown-menu-portal",
|
|
263
263
|
...e
|
|
264
264
|
});
|
|
265
265
|
}
|
|
266
|
-
function
|
|
267
|
-
return /* @__PURE__ */ X(
|
|
266
|
+
function Ze({ ...e }) {
|
|
267
|
+
return /* @__PURE__ */ X(q.Trigger, {
|
|
268
268
|
"data-slot": "dropdown-menu-trigger",
|
|
269
269
|
...e
|
|
270
270
|
});
|
|
271
271
|
}
|
|
272
|
-
function
|
|
273
|
-
return /* @__PURE__ */ X(
|
|
272
|
+
function Qe({ className: e, align: t = "start", sideOffset: n = 4, ...r }) {
|
|
273
|
+
return /* @__PURE__ */ X(q.Portal, { children: /* @__PURE__ */ X(q.Content, {
|
|
274
274
|
"data-slot": "dropdown-menu-content",
|
|
275
275
|
sideOffset: n,
|
|
276
276
|
align: t,
|
|
@@ -278,14 +278,14 @@ function Je({ className: e, align: t = "start", sideOffset: n = 4, ...r }) {
|
|
|
278
278
|
...r
|
|
279
279
|
}) });
|
|
280
280
|
}
|
|
281
|
-
function
|
|
282
|
-
return /* @__PURE__ */ X(
|
|
281
|
+
function $e({ ...e }) {
|
|
282
|
+
return /* @__PURE__ */ X(q.Group, {
|
|
283
283
|
"data-slot": "dropdown-menu-group",
|
|
284
284
|
...e
|
|
285
285
|
});
|
|
286
286
|
}
|
|
287
|
-
function
|
|
288
|
-
return /* @__PURE__ */ X(
|
|
287
|
+
function et({ className: e, inset: t, variant: n = "default", ...r }) {
|
|
288
|
+
return /* @__PURE__ */ X(q.Item, {
|
|
289
289
|
"data-slot": "dropdown-menu-item",
|
|
290
290
|
"data-inset": t,
|
|
291
291
|
"data-variant": n,
|
|
@@ -293,8 +293,8 @@ function Xe({ className: e, inset: t, variant: n = "default", ...r }) {
|
|
|
293
293
|
...r
|
|
294
294
|
});
|
|
295
295
|
}
|
|
296
|
-
function
|
|
297
|
-
return /* @__PURE__ */ Z(
|
|
296
|
+
function tt({ className: e, children: t, checked: n, inset: r, ...i }) {
|
|
297
|
+
return /* @__PURE__ */ Z(q.CheckboxItem, {
|
|
298
298
|
"data-slot": "dropdown-menu-checkbox-item",
|
|
299
299
|
"data-inset": r,
|
|
300
300
|
className: Q("relative flex 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 focus:**:text-accent-foreground data-inset:pl-7 data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", e),
|
|
@@ -303,18 +303,18 @@ function Ze({ className: e, children: t, checked: n, inset: r, ...i }) {
|
|
|
303
303
|
children: [/* @__PURE__ */ X("span", {
|
|
304
304
|
className: "pointer-events-none absolute right-2 flex items-center justify-center",
|
|
305
305
|
"data-slot": "dropdown-menu-checkbox-item-indicator",
|
|
306
|
-
children: /* @__PURE__ */ X(
|
|
306
|
+
children: /* @__PURE__ */ X(q.ItemIndicator, { children: /* @__PURE__ */ X(v, {}) })
|
|
307
307
|
}), t]
|
|
308
308
|
});
|
|
309
309
|
}
|
|
310
|
-
function
|
|
311
|
-
return /* @__PURE__ */ X(
|
|
310
|
+
function nt({ ...e }) {
|
|
311
|
+
return /* @__PURE__ */ X(q.RadioGroup, {
|
|
312
312
|
"data-slot": "dropdown-menu-radio-group",
|
|
313
313
|
...e
|
|
314
314
|
});
|
|
315
315
|
}
|
|
316
|
-
function
|
|
317
|
-
return /* @__PURE__ */ Z(
|
|
316
|
+
function rt({ className: e, children: t, inset: n, ...r }) {
|
|
317
|
+
return /* @__PURE__ */ Z(q.RadioItem, {
|
|
318
318
|
"data-slot": "dropdown-menu-radio-item",
|
|
319
319
|
"data-inset": n,
|
|
320
320
|
className: Q("relative flex 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 focus:**:text-accent-foreground data-inset:pl-7 data-disabled:pointer-events-none data-disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", e),
|
|
@@ -322,49 +322,49 @@ function $e({ className: e, children: t, inset: n, ...r }) {
|
|
|
322
322
|
children: [/* @__PURE__ */ X("span", {
|
|
323
323
|
className: "pointer-events-none absolute right-2 flex items-center justify-center",
|
|
324
324
|
"data-slot": "dropdown-menu-radio-item-indicator",
|
|
325
|
-
children: /* @__PURE__ */ X(
|
|
325
|
+
children: /* @__PURE__ */ X(q.ItemIndicator, { children: /* @__PURE__ */ X(v, {}) })
|
|
326
326
|
}), t]
|
|
327
327
|
});
|
|
328
328
|
}
|
|
329
|
-
function
|
|
330
|
-
return /* @__PURE__ */ X(
|
|
329
|
+
function it({ className: e, inset: t, ...n }) {
|
|
330
|
+
return /* @__PURE__ */ X(q.Label, {
|
|
331
331
|
"data-slot": "dropdown-menu-label",
|
|
332
332
|
"data-inset": t,
|
|
333
333
|
className: Q("px-1.5 py-1 text-xs font-medium text-muted-foreground data-inset:pl-7", e),
|
|
334
334
|
...n
|
|
335
335
|
});
|
|
336
336
|
}
|
|
337
|
-
function
|
|
338
|
-
return /* @__PURE__ */ X(
|
|
337
|
+
function at({ className: e, ...t }) {
|
|
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
|
|
352
|
-
return /* @__PURE__ */ X(
|
|
351
|
+
function st({ ...e }) {
|
|
352
|
+
return /* @__PURE__ */ X(q.Sub, {
|
|
353
353
|
"data-slot": "dropdown-menu-sub",
|
|
354
354
|
...e
|
|
355
355
|
});
|
|
356
356
|
}
|
|
357
|
-
function
|
|
358
|
-
return /* @__PURE__ */ Z(
|
|
357
|
+
function ct({ className: e, inset: t, children: n, ...r }) {
|
|
358
|
+
return /* @__PURE__ */ Z(q.SubTrigger, {
|
|
359
359
|
"data-slot": "dropdown-menu-sub-trigger",
|
|
360
360
|
"data-inset": t,
|
|
361
361
|
className: Q("flex cursor-default items-center gap-1.5 rounded-md px-1.5 py-1 text-sm outline-hidden select-none focus:bg-accent focus:text-accent-foreground not-data-[variant=destructive]:focus:**:text-accent-foreground data-inset:pl-7 data-open:bg-accent data-open:text-accent-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", e),
|
|
362
362
|
...r,
|
|
363
|
-
children: [n, /* @__PURE__ */ X(
|
|
363
|
+
children: [n, /* @__PURE__ */ X(S, { className: "ml-auto" })]
|
|
364
364
|
});
|
|
365
365
|
}
|
|
366
|
-
function
|
|
367
|
-
return /* @__PURE__ */ X(
|
|
366
|
+
function lt({ className: e, ...t }) {
|
|
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),
|
|
370
370
|
...t
|
|
@@ -372,42 +372,42 @@ function at({ 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 ct({ 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 lt({ 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 ut({ 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 ft({ 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 mt = U("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 xt({ 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,12 +550,12 @@ function St({ 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`, k = `${w}-description`,
|
|
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
557
|
o ? k : null
|
|
558
|
-
].filter(Boolean).join(" ") || void 0,
|
|
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",
|
|
561
561
|
children: "*"
|
|
@@ -565,65 +565,65 @@ var Ct = 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
|
-
children: [a,
|
|
571
|
+
children: [a, N]
|
|
572
572
|
}),
|
|
573
573
|
/* @__PURE__ */ X("textarea", {
|
|
574
574
|
id: w,
|
|
575
575
|
ref: t,
|
|
576
576
|
disabled: m,
|
|
577
577
|
"aria-invalid": S,
|
|
578
|
-
"aria-describedby":
|
|
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",
|
|
578
|
+
"aria-describedby": j,
|
|
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(
|
|
589
|
+
o && /* @__PURE__ */ X(Ct, {
|
|
590
590
|
id: k,
|
|
591
591
|
children: o
|
|
592
592
|
})
|
|
593
593
|
]
|
|
594
594
|
});
|
|
595
595
|
}
|
|
596
|
-
let { type:
|
|
596
|
+
let { type: P, onFocus: F, ...I } = x, L = P ?? "text", te = L === "password", R = te && T ? "text" : L, ne = te ? /* @__PURE__ */ X("button", {
|
|
597
597
|
type: "button",
|
|
598
598
|
onClick: () => E((e) => !e),
|
|
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 ?
|
|
603
|
-
}) : null,
|
|
604
|
-
|
|
605
|
-
},
|
|
602
|
+
children: X(T ? ee : A, { className: "size-4" })
|
|
603
|
+
}) : null, z = _ ? /* @__PURE__ */ X(re, { className: "size-4 animate-spin text-muted-foreground" }) : f, B = te ? ne : p, ie = (e) => {
|
|
604
|
+
R === "number" && e.target.select(), F?.(e);
|
|
605
|
+
}, ae = !!(h || g), V = /* @__PURE__ */ X("input", {
|
|
606
606
|
id: w,
|
|
607
|
-
type:
|
|
607
|
+
type: R,
|
|
608
608
|
ref: t,
|
|
609
609
|
disabled: m,
|
|
610
610
|
"aria-invalid": S,
|
|
611
|
-
"aria-describedby":
|
|
612
|
-
onFocus:
|
|
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",
|
|
614
|
-
...
|
|
611
|
+
"aria-describedby": j,
|
|
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", 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
|
+
...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
|
-
children: [a,
|
|
622
|
+
children: [a, N]
|
|
623
623
|
}),
|
|
624
|
-
|
|
624
|
+
ae ? /* @__PURE__ */ Z("div", {
|
|
625
625
|
"aria-invalid": S,
|
|
626
|
-
className: Q("flex items-center overflow-hidden rounded-lg border border-input transition-colors",
|
|
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: [
|
|
628
628
|
h && /* @__PURE__ */ X("div", {
|
|
629
629
|
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",
|
|
@@ -632,14 +632,14 @@ var Ct = n.forwardRef(function(e, t) {
|
|
|
632
632
|
/* @__PURE__ */ Z("div", {
|
|
633
633
|
className: "relative flex h-full flex-1 items-center",
|
|
634
634
|
children: [
|
|
635
|
-
|
|
635
|
+
z && /* @__PURE__ */ X("div", {
|
|
636
636
|
className: "pointer-events-none absolute left-3 flex items-center text-muted-foreground [&_svg]:size-4",
|
|
637
|
-
children:
|
|
637
|
+
children: z
|
|
638
638
|
}),
|
|
639
|
-
|
|
640
|
-
|
|
639
|
+
V,
|
|
640
|
+
B && /* @__PURE__ */ X("div", {
|
|
641
641
|
className: "absolute right-3 z-10 flex items-center",
|
|
642
|
-
children:
|
|
642
|
+
children: B
|
|
643
643
|
})
|
|
644
644
|
]
|
|
645
645
|
}),
|
|
@@ -651,61 +651,201 @@ var Ct = n.forwardRef(function(e, t) {
|
|
|
651
651
|
}) : /* @__PURE__ */ Z("div", {
|
|
652
652
|
className: "relative",
|
|
653
653
|
children: [
|
|
654
|
-
|
|
654
|
+
z && /* @__PURE__ */ X("div", {
|
|
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
|
-
children:
|
|
656
|
+
children: z
|
|
657
657
|
}),
|
|
658
|
-
|
|
659
|
-
|
|
658
|
+
V,
|
|
659
|
+
B && /* @__PURE__ */ X("div", {
|
|
660
660
|
className: "absolute right-3 top-1/2 z-10 flex -translate-y-1/2 items-center",
|
|
661
|
-
children:
|
|
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(
|
|
672
|
+
o && /* @__PURE__ */ X(Ct, {
|
|
673
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 Et({ 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 Dt({ 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 Dt({ 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 Dt({ 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 Dt({ 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 Dt({ 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 Dt({ 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 Dt({ 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 Dt({ 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,50 +1041,50 @@ function Dt({ 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
|
|
905
|
-
return /* @__PURE__ */ X(
|
|
1044
|
+
function Lt({ ...e }) {
|
|
1045
|
+
return /* @__PURE__ */ X(K.Root, {
|
|
906
1046
|
"data-slot": "dialog",
|
|
907
1047
|
...e
|
|
908
1048
|
});
|
|
909
1049
|
}
|
|
910
|
-
function
|
|
911
|
-
return /* @__PURE__ */ X(
|
|
1050
|
+
function Rt({ ...e }) {
|
|
1051
|
+
return /* @__PURE__ */ X(K.Trigger, {
|
|
912
1052
|
"data-slot": "dialog-trigger",
|
|
913
1053
|
...e
|
|
914
1054
|
});
|
|
915
1055
|
}
|
|
916
|
-
function
|
|
917
|
-
return /* @__PURE__ */ X(
|
|
1056
|
+
function zt({ ...e }) {
|
|
1057
|
+
return /* @__PURE__ */ X(K.Portal, {
|
|
918
1058
|
"data-slot": "dialog-portal",
|
|
919
1059
|
...e
|
|
920
1060
|
});
|
|
921
1061
|
}
|
|
922
|
-
function
|
|
923
|
-
return /* @__PURE__ */ X(
|
|
1062
|
+
function Bt({ ...e }) {
|
|
1063
|
+
return /* @__PURE__ */ X(K.Close, {
|
|
924
1064
|
"data-slot": "dialog-close",
|
|
925
1065
|
...e
|
|
926
1066
|
});
|
|
927
1067
|
}
|
|
928
|
-
function
|
|
929
|
-
return /* @__PURE__ */ X(
|
|
1068
|
+
function Vt({ className: e, ...t }) {
|
|
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,
|
|
940
|
-
children: [t, n && /* @__PURE__ */ X(
|
|
1080
|
+
children: [t, n && /* @__PURE__ */ X(K.Close, {
|
|
941
1081
|
"data-slot": "dialog-close",
|
|
942
1082
|
asChild: !0,
|
|
943
1083
|
children: /* @__PURE__ */ Z($, {
|
|
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,19 +1092,19 @@ function Nt({ 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),
|
|
966
1106
|
...r,
|
|
967
|
-
children: [n, t && /* @__PURE__ */ X(
|
|
1107
|
+
children: [n, t && /* @__PURE__ */ X(K.Close, {
|
|
968
1108
|
asChild: !0,
|
|
969
1109
|
children: /* @__PURE__ */ X($, {
|
|
970
1110
|
variant: "outline",
|
|
@@ -973,15 +1113,15 @@ function Ft({ className: e, showCloseButton: t = !1, children: n, ...r }) {
|
|
|
973
1113
|
})]
|
|
974
1114
|
});
|
|
975
1115
|
}
|
|
976
|
-
function
|
|
977
|
-
return /* @__PURE__ */ X(
|
|
1116
|
+
function Gt({ className: e, ...t }) {
|
|
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
|
|
984
|
-
return /* @__PURE__ */ X(
|
|
1123
|
+
function Kt({ className: e, ...t }) {
|
|
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),
|
|
987
1127
|
...t
|
|
@@ -989,7 +1129,7 @@ function Lt({ 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 Rt({ 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 zt({ 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 Bt({ 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 Vt = U("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 Ut = U("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 qt({ 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
|
-
children: [t, /* @__PURE__ */ X(
|
|
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 nn({ 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 on({ 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 un({ 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 [
|
|
1214
|
-
|
|
1215
|
-
}, [
|
|
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) => {
|
|
1354
|
+
L && e || (ne(e), j?.(e), e && (z.current = !1));
|
|
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
|
-
|
|
1220
|
-
}, [
|
|
1221
|
-
let
|
|
1359
|
+
P || (z.current = !1);
|
|
1360
|
+
}, [P]);
|
|
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 fn({ 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
|
-
|
|
1241
|
-
]),
|
|
1380
|
+
H
|
|
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
|
-
]),
|
|
1252
|
-
let e = [...
|
|
1389
|
+
se,
|
|
1390
|
+
H
|
|
1391
|
+
]), de = n.useCallback((t) => e.find((e) => H(e) === t), [e, H]), fe = n.useMemo(() => {
|
|
1392
|
+
let e = [...le];
|
|
1253
1393
|
return t.forEach((t) => e.push(...t.options)), e;
|
|
1254
|
-
}, [
|
|
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,88 +1401,88 @@ function fn({ 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
|
-
|
|
1268
|
-
} else i?.(r),
|
|
1269
|
-
}, me = l &&
|
|
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);
|
|
1408
|
+
} else i?.(r), ne(!1);
|
|
1409
|
+
}, me = l && fe.length > 0 && fe.length === V.length, he = () => {
|
|
1270
1410
|
if (l) {
|
|
1271
1411
|
if (me) {
|
|
1272
|
-
|
|
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
|
-
t.scrollHeight - t.scrollTop - t.clientHeight < 100 &&
|
|
1425
|
+
t.scrollHeight - t.scrollTop - t.clientHeight < 100 && M && N && !P && !z.current && (z.current = !0, M());
|
|
1286
1426
|
}, [
|
|
1287
|
-
j,
|
|
1288
1427
|
M,
|
|
1289
|
-
N
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1428
|
+
N,
|
|
1429
|
+
P
|
|
1430
|
+
]), ye = l ? V.length > 0 : !!ce, W = () => l ? null : fe.find((e) => e.value === ce)?.label || a, G = () => {
|
|
1431
|
+
!o && !L && (B.current?.focus(), ne(!0));
|
|
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(
|
|
1325
|
-
}), /* @__PURE__ */ X(
|
|
1464
|
+
children: /* @__PURE__ */ X(U, { className: "size-3.5" })
|
|
1465
|
+
}), /* @__PURE__ */ X(b, {
|
|
1326
1466
|
size: 16,
|
|
1327
1467
|
className: "shrink-0 opacity-60",
|
|
1328
1468
|
"aria-hidden": !0
|
|
1329
1469
|
})]
|
|
1330
|
-
}),
|
|
1331
|
-
let t = l ?
|
|
1332
|
-
return /* @__PURE__ */ Z(
|
|
1470
|
+
}), we = (e) => {
|
|
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
1474
|
onSelect: () => pe(e.value),
|
|
1335
1475
|
disabled: e.disabled,
|
|
1336
1476
|
children: [
|
|
1337
1477
|
l ? /* @__PURE__ */ X("div", {
|
|
1338
1478
|
className: Q("flex size-4 shrink-0 items-center justify-center rounded-sm border", t ? "border-primary bg-primary" : "border-input"),
|
|
1339
|
-
children: t && /* @__PURE__ */ X(
|
|
1479
|
+
children: t && /* @__PURE__ */ X(v, {
|
|
1340
1480
|
size: 12,
|
|
1341
1481
|
className: "text-primary-foreground"
|
|
1342
1482
|
})
|
|
1343
1483
|
}) : /* @__PURE__ */ X("div", {
|
|
1344
1484
|
className: "flex size-4 shrink-0 items-center justify-center",
|
|
1345
|
-
children: t && /* @__PURE__ */ X(
|
|
1485
|
+
children: t && /* @__PURE__ */ X(v, {
|
|
1346
1486
|
size: 16,
|
|
1347
1487
|
className: "text-primary"
|
|
1348
1488
|
})
|
|
@@ -1361,7 +1501,7 @@ function fn({ options: e = [], groups: t = [], value: r, onValueChange: i, place
|
|
|
1361
1501
|
className: "flex flex-col gap-0.5",
|
|
1362
1502
|
children: [/* @__PURE__ */ X("span", {
|
|
1363
1503
|
className: "text-sm font-normal",
|
|
1364
|
-
children:
|
|
1504
|
+
children: _ && n ? _(n) : e.label
|
|
1365
1505
|
}), e.description && /* @__PURE__ */ X("span", {
|
|
1366
1506
|
className: "text-xs leading-snug text-muted-foreground",
|
|
1367
1507
|
children: e.description
|
|
@@ -1373,58 +1513,58 @@ function fn({ options: e = [], groups: t = [], value: r, onValueChange: i, place
|
|
|
1373
1513
|
})
|
|
1374
1514
|
]
|
|
1375
1515
|
}, e.value);
|
|
1376
|
-
},
|
|
1377
|
-
className: Q("w-(--radix-popper-anchor-width) min-w-(--radix-popper-anchor-width) p-0",
|
|
1516
|
+
}, Te = /* @__PURE__ */ X(hn, {
|
|
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
|
-
children: /* @__PURE__ */ X(
|
|
1530
|
+
children: /* @__PURE__ */ X(re, { className: "size-5 animate-spin text-muted-foreground" })
|
|
1391
1531
|
}) : /* @__PURE__ */ Z(Y, { children: [
|
|
1392
|
-
l &&
|
|
1532
|
+
l && I && fe.length > 0 && /* @__PURE__ */ Z(Y, { children: [/* @__PURE__ */ X(ln, { children: /* @__PURE__ */ Z(dn, {
|
|
1393
1533
|
value: "__select_all__",
|
|
1394
1534
|
onSelect: he,
|
|
1395
1535
|
className: "font-medium",
|
|
1396
1536
|
children: [/* @__PURE__ */ X("div", {
|
|
1397
1537
|
className: Q("flex size-4 shrink-0 items-center justify-center rounded-sm border", me ? "border-primary bg-primary" : "border-input"),
|
|
1398
|
-
children: me && /* @__PURE__ */ X(
|
|
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
|
-
children: e.options.map(
|
|
1408
|
-
})] }, e.label)) : /* @__PURE__ */ X(
|
|
1409
|
-
C && /* @__PURE__ */ Z(Y, { children: [/* @__PURE__ */ X(
|
|
1547
|
+
children: e.options.map(we)
|
|
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
|
-
C(),
|
|
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
|
|
1419
1559
|
}), w]
|
|
1420
1560
|
}) })] }),
|
|
1421
|
-
|
|
1561
|
+
P && /* @__PURE__ */ X("div", {
|
|
1422
1562
|
className: "flex items-center justify-center py-3",
|
|
1423
|
-
children: /* @__PURE__ */ X(
|
|
1563
|
+
children: /* @__PURE__ */ X(re, { className: "size-4 animate-spin text-muted-foreground" })
|
|
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,95 +1572,95 @@ function fn({ 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
|
-
|
|
1436
|
-
htmlFor:
|
|
1437
|
-
onClick:
|
|
1575
|
+
y && /* @__PURE__ */ Z(xt, {
|
|
1576
|
+
htmlFor: ie,
|
|
1577
|
+
onClick: G,
|
|
1438
1578
|
className: Q("cursor-pointer", o && "text-muted-foreground"),
|
|
1439
|
-
children: [
|
|
1579
|
+
children: [y, J]
|
|
1440
1580
|
}),
|
|
1441
|
-
|
|
1442
|
-
open:
|
|
1443
|
-
onOpenChange:
|
|
1581
|
+
be ? /* @__PURE__ */ Z(pn, {
|
|
1582
|
+
open: R,
|
|
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",
|
|
1453
|
-
children:
|
|
1593
|
+
children: O
|
|
1454
1594
|
}),
|
|
1455
1595
|
/* @__PURE__ */ Z($, {
|
|
1456
|
-
id:
|
|
1596
|
+
id: ie,
|
|
1457
1597
|
type: "button",
|
|
1458
1598
|
disabled: o,
|
|
1459
|
-
ref:
|
|
1599
|
+
ref: B,
|
|
1460
1600
|
variant: "ghost",
|
|
1461
1601
|
role: "combobox",
|
|
1462
|
-
"aria-expanded":
|
|
1602
|
+
"aria-expanded": R,
|
|
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",
|
|
1467
|
-
children: [
|
|
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),
|
|
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(
|
|
1477
|
-
open:
|
|
1478
|
-
onOpenChange:
|
|
1615
|
+
}), Te]
|
|
1616
|
+
}) : /* @__PURE__ */ Z(pn, {
|
|
1617
|
+
open: R,
|
|
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
|
-
id:
|
|
1623
|
+
id: ie,
|
|
1484
1624
|
type: "button",
|
|
1485
1625
|
disabled: o,
|
|
1486
|
-
ref:
|
|
1626
|
+
ref: B,
|
|
1487
1627
|
variant: "outline",
|
|
1488
1628
|
role: "combobox",
|
|
1489
|
-
"aria-expanded":
|
|
1629
|
+
"aria-expanded": R,
|
|
1490
1630
|
"aria-invalid": s,
|
|
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",
|
|
1495
|
-
children: [
|
|
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),
|
|
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
|
-
children: /* @__PURE__ */ X(
|
|
1657
|
+
children: /* @__PURE__ */ X(v, {})
|
|
1518
1658
|
})
|
|
1519
1659
|
});
|
|
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 mn({ 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,114 +1722,111 @@ function xn({ 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,
|
|
1594
1734
|
200
|
|
1595
|
-
], striped: p = !0, stickyHeader: m = !1, maxHeight: h,
|
|
1596
|
-
let
|
|
1597
|
-
a === void 0 &&
|
|
1598
|
-
},
|
|
1735
|
+
], striped: p = !0, stickyHeader: m = !1, maxHeight: h, fillHeight: g = !1, onRowClick: _, className: v }) {
|
|
1736
|
+
let y = n.useMemo(() => t.map((e, t) => r(e, t)), [t, r]), [b, C] = n.useState([]), E = a ?? b, D = (e) => {
|
|
1737
|
+
a === void 0 && C(e), o?.(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
|
|
1602
1742
|
}));
|
|
1603
1743
|
if (!u) return e;
|
|
1604
|
-
let n =
|
|
1605
|
-
return e.slice(n, n +
|
|
1744
|
+
let n = L * M;
|
|
1745
|
+
return e.slice(n, n + M);
|
|
1606
1746
|
}, [
|
|
1607
1747
|
t,
|
|
1608
1748
|
u,
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
]),
|
|
1749
|
+
L,
|
|
1750
|
+
M
|
|
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
|
-
className: Q("rounded-lg border", _),
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
children: /* @__PURE__ */ Z(
|
|
1618
|
-
className: Q("bg-muted/60", m && "sticky top-0 z-10 [&_th]:bg-muted/95 [&_th]:backdrop-blur supports-backdrop-filter:[&_th]:bg-muted/80"),
|
|
1619
|
-
children: /* @__PURE__ */ Z(vn, {
|
|
1620
|
-
className: "hover:bg-transparent",
|
|
1621
|
-
children: [
|
|
1622
|
-
i && /* @__PURE__ */ X(yn, {
|
|
1623
|
-
className: Q("w-10", re),
|
|
1624
|
-
children: /* @__PURE__ */ X(pn, {
|
|
1625
|
-
"aria-label": "Select all rows",
|
|
1626
|
-
checked: D ? !0 : ee ? "indeterminate" : !1,
|
|
1627
|
-
onCheckedChange: te
|
|
1628
|
-
})
|
|
1629
|
-
}),
|
|
1630
|
-
e.map((e) => /* @__PURE__ */ X(yn, {
|
|
1631
|
-
style: e.width ? { width: e.width } : void 0,
|
|
1632
|
-
className: Q("h-11 text-xs font-semibold tracking-wide text-foreground uppercase", re, e.align && Sn[e.align], e.className, e.headerClassName),
|
|
1633
|
-
children: e.header
|
|
1634
|
-
}, e.key)),
|
|
1635
|
-
s && /* @__PURE__ */ X(yn, { className: "w-12" })
|
|
1636
|
-
]
|
|
1637
|
-
})
|
|
1638
|
-
}), /* @__PURE__ */ X(gn, { children: c ? /* @__PURE__ */ X(vn, {
|
|
1639
|
-
className: "hover:bg-transparent",
|
|
1640
|
-
children: /* @__PURE__ */ X(bn, {
|
|
1641
|
-
colSpan: k,
|
|
1642
|
-
className: "h-28 text-center",
|
|
1643
|
-
children: /* @__PURE__ */ Z("span", {
|
|
1644
|
-
className: "inline-flex items-center gap-2 text-muted-foreground",
|
|
1645
|
-
children: [/* @__PURE__ */ X(Ue, { className: "size-4" }), " Loading…"]
|
|
1646
|
-
})
|
|
1647
|
-
})
|
|
1648
|
-
}) : t.length === 0 ? /* @__PURE__ */ X(vn, {
|
|
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),
|
|
1754
|
+
style: z ? { "--dt-max-h": z } : void 0,
|
|
1755
|
+
children: [/* @__PURE__ */ Z(Cn, { children: [/* @__PURE__ */ X(wn, {
|
|
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")),
|
|
1757
|
+
children: /* @__PURE__ */ Z(Dn, {
|
|
1649
1758
|
className: "hover:bg-transparent",
|
|
1650
|
-
children:
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1759
|
+
children: [
|
|
1760
|
+
i && /* @__PURE__ */ X(On, {
|
|
1761
|
+
className: Q("w-10", ne),
|
|
1762
|
+
children: /* @__PURE__ */ X(Sn, {
|
|
1763
|
+
"aria-label": "Select all rows",
|
|
1764
|
+
checked: O ? !0 : k ? "indeterminate" : !1,
|
|
1765
|
+
onCheckedChange: A
|
|
1766
|
+
})
|
|
1767
|
+
}),
|
|
1768
|
+
e.map((e) => /* @__PURE__ */ X(On, {
|
|
1769
|
+
style: e.width ? { width: e.width } : void 0,
|
|
1770
|
+
className: Q("h-11 text-xs font-semibold tracking-wide text-foreground uppercase", ne, e.align && jn[e.align], e.className, e.headerClassName),
|
|
1771
|
+
children: e.header
|
|
1772
|
+
}, e.key)),
|
|
1773
|
+
s && /* @__PURE__ */ X(On, { className: "w-12" })
|
|
1774
|
+
]
|
|
1775
|
+
})
|
|
1776
|
+
}), /* @__PURE__ */ X(Tn, { children: c ? /* @__PURE__ */ X(Dn, {
|
|
1777
|
+
className: "hover:bg-transparent",
|
|
1778
|
+
children: /* @__PURE__ */ X(kn, {
|
|
1779
|
+
colSpan: j,
|
|
1780
|
+
className: "h-28 text-center",
|
|
1781
|
+
children: /* @__PURE__ */ Z("span", {
|
|
1782
|
+
className: "inline-flex items-center gap-2 text-muted-foreground",
|
|
1783
|
+
children: [/* @__PURE__ */ X(qe, { className: "size-4" }), " Loading…"]
|
|
1654
1784
|
})
|
|
1655
|
-
})
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
className: "w-12 pr-3 text-right",
|
|
1678
|
-
onClick: (e) => e.stopPropagation(),
|
|
1679
|
-
children: /* @__PURE__ */ X(ct, { items: s(t) })
|
|
1785
|
+
})
|
|
1786
|
+
}) : t.length === 0 ? /* @__PURE__ */ X(Dn, {
|
|
1787
|
+
className: "hover:bg-transparent",
|
|
1788
|
+
children: /* @__PURE__ */ X(kn, {
|
|
1789
|
+
colSpan: j,
|
|
1790
|
+
className: "h-28 text-center text-muted-foreground",
|
|
1791
|
+
children: l
|
|
1792
|
+
})
|
|
1793
|
+
}) : te.map(({ row: t, index: n }) => {
|
|
1794
|
+
let r = y[n], a = E.includes(r);
|
|
1795
|
+
return /* @__PURE__ */ Z(Dn, {
|
|
1796
|
+
"data-state": a ? "selected" : void 0,
|
|
1797
|
+
onClick: _ ? () => _(t) : void 0,
|
|
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"),
|
|
1799
|
+
children: [
|
|
1800
|
+
i && /* @__PURE__ */ X(kn, {
|
|
1801
|
+
className: Q("w-10", R),
|
|
1802
|
+
onClick: (e) => e.stopPropagation(),
|
|
1803
|
+
children: /* @__PURE__ */ X(Sn, {
|
|
1804
|
+
"aria-label": "Select row",
|
|
1805
|
+
checked: a,
|
|
1806
|
+
onCheckedChange: () => ee(r)
|
|
1680
1807
|
})
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1808
|
+
}),
|
|
1809
|
+
e.map((e) => /* @__PURE__ */ X(kn, {
|
|
1810
|
+
style: e.width ? { width: e.width } : void 0,
|
|
1811
|
+
className: Q(R, e.align && jn[e.align], e.className),
|
|
1812
|
+
children: e.cell ? e.cell(t, n) : String(t[e.key] ?? "")
|
|
1813
|
+
}, e.key)),
|
|
1814
|
+
s && /* @__PURE__ */ X(kn, {
|
|
1815
|
+
className: "w-12 pr-3 text-right",
|
|
1816
|
+
onClick: (e) => e.stopPropagation(),
|
|
1817
|
+
children: /* @__PURE__ */ X(ft, { items: s(t) })
|
|
1818
|
+
})
|
|
1819
|
+
]
|
|
1820
|
+
}, r);
|
|
1821
|
+
}) })] }), u && /* @__PURE__ */ Z("div", {
|
|
1685
1822
|
className: "flex flex-wrap items-center justify-between gap-3 border-t px-4 py-3 text-sm",
|
|
1686
1823
|
children: [/* @__PURE__ */ Z("p", {
|
|
1687
1824
|
className: "text-muted-foreground",
|
|
1688
1825
|
children: [
|
|
1689
1826
|
"Page ",
|
|
1690
|
-
t.length === 0 ? 0 :
|
|
1827
|
+
t.length === 0 ? 0 : L + 1,
|
|
1691
1828
|
" of ",
|
|
1692
|
-
|
|
1829
|
+
I,
|
|
1693
1830
|
" (",
|
|
1694
1831
|
t.length,
|
|
1695
1832
|
" total ",
|
|
@@ -1703,13 +1840,13 @@ function Cn({ columns: e, data: t, getRowId: r = (e, t) => String(t), selectable
|
|
|
1703
1840
|
children: [/* @__PURE__ */ X("span", {
|
|
1704
1841
|
className: "whitespace-nowrap",
|
|
1705
1842
|
children: "Rows per page"
|
|
1706
|
-
}), /* @__PURE__ */ X(
|
|
1843
|
+
}), /* @__PURE__ */ X(xn, {
|
|
1707
1844
|
size: "sm",
|
|
1708
1845
|
className: "w-20",
|
|
1709
|
-
value: String(
|
|
1846
|
+
value: String(M),
|
|
1710
1847
|
onValueChange: (e) => {
|
|
1711
1848
|
let t = typeof e == "object" && e && "value" in e ? e.value : e;
|
|
1712
|
-
|
|
1849
|
+
N(Number(t)), F(0);
|
|
1713
1850
|
},
|
|
1714
1851
|
options: f.map((e) => ({
|
|
1715
1852
|
value: String(e),
|
|
@@ -1723,33 +1860,33 @@ function Cn({ columns: e, data: t, getRowId: r = (e, t) => String(t), selectable
|
|
|
1723
1860
|
variant: "outline",
|
|
1724
1861
|
size: "icon-sm",
|
|
1725
1862
|
"aria-label": "First page",
|
|
1726
|
-
disabled:
|
|
1727
|
-
onClick: () =>
|
|
1728
|
-
children: /* @__PURE__ */ X(
|
|
1863
|
+
disabled: L <= 0,
|
|
1864
|
+
onClick: () => F(0),
|
|
1865
|
+
children: /* @__PURE__ */ X(w, {})
|
|
1729
1866
|
}),
|
|
1730
1867
|
/* @__PURE__ */ X($, {
|
|
1731
1868
|
variant: "outline",
|
|
1732
1869
|
size: "icon-sm",
|
|
1733
1870
|
"aria-label": "Previous page",
|
|
1734
|
-
disabled:
|
|
1735
|
-
onClick: () =>
|
|
1736
|
-
children: /* @__PURE__ */ X(
|
|
1871
|
+
disabled: L <= 0,
|
|
1872
|
+
onClick: () => F(Math.max(0, L - 1)),
|
|
1873
|
+
children: /* @__PURE__ */ X(x, {})
|
|
1737
1874
|
}),
|
|
1738
1875
|
/* @__PURE__ */ X($, {
|
|
1739
1876
|
variant: "outline",
|
|
1740
1877
|
size: "icon-sm",
|
|
1741
1878
|
"aria-label": "Next page",
|
|
1742
|
-
disabled:
|
|
1743
|
-
onClick: () =>
|
|
1744
|
-
children: /* @__PURE__ */ X(
|
|
1879
|
+
disabled: L >= I - 1,
|
|
1880
|
+
onClick: () => F(Math.min(I - 1, L + 1)),
|
|
1881
|
+
children: /* @__PURE__ */ X(S, {})
|
|
1745
1882
|
}),
|
|
1746
1883
|
/* @__PURE__ */ X($, {
|
|
1747
1884
|
variant: "outline",
|
|
1748
1885
|
size: "icon-sm",
|
|
1749
1886
|
"aria-label": "Last page",
|
|
1750
|
-
disabled:
|
|
1751
|
-
onClick: () =>
|
|
1752
|
-
children: /* @__PURE__ */ X(
|
|
1887
|
+
disabled: L >= I - 1,
|
|
1888
|
+
onClick: () => F(I - 1),
|
|
1889
|
+
children: /* @__PURE__ */ X(T, {})
|
|
1753
1890
|
})
|
|
1754
1891
|
]
|
|
1755
1892
|
})]
|
|
@@ -1759,26 +1896,26 @@ function Cn({ columns: e, data: t, getRowId: r = (e, t) => String(t), selectable
|
|
|
1759
1896
|
}
|
|
1760
1897
|
//#endregion
|
|
1761
1898
|
//#region src/components/custom/form-dialog.tsx
|
|
1762
|
-
function
|
|
1763
|
-
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, {
|
|
1764
1901
|
open: n,
|
|
1765
1902
|
onOpenChange: a ? void 0 : (e) => !e && r(),
|
|
1766
|
-
children: /* @__PURE__ */ X(
|
|
1903
|
+
children: /* @__PURE__ */ X(Ht, {
|
|
1767
1904
|
showCloseButton: !1,
|
|
1768
1905
|
className: Q("max-h-[75vh] gap-0 p-0 sm:max-w-2xl", s),
|
|
1769
1906
|
children: /* @__PURE__ */ Z("div", {
|
|
1770
1907
|
className: "flex max-h-[75vh] flex-col",
|
|
1771
1908
|
children: [
|
|
1772
|
-
t && /* @__PURE__ */ X(
|
|
1909
|
+
t && /* @__PURE__ */ X(Ut, {
|
|
1773
1910
|
className: "flex-shrink-0 border-b border-border p-6 pb-4",
|
|
1774
1911
|
children: /* @__PURE__ */ Z("div", {
|
|
1775
1912
|
className: "flex items-start justify-between gap-4",
|
|
1776
1913
|
children: [/* @__PURE__ */ Z("div", {
|
|
1777
1914
|
className: "flex flex-col gap-1",
|
|
1778
|
-
children: [/* @__PURE__ */ X(
|
|
1915
|
+
children: [/* @__PURE__ */ X(Gt, {
|
|
1779
1916
|
className: "text-left text-xl font-semibold",
|
|
1780
1917
|
children: t
|
|
1781
|
-
}), i && /* @__PURE__ */ X(
|
|
1918
|
+
}), i && /* @__PURE__ */ X(Kt, {
|
|
1782
1919
|
className: "text-left text-muted-foreground",
|
|
1783
1920
|
children: i
|
|
1784
1921
|
})]
|
|
@@ -1791,7 +1928,7 @@ function wn({ children: e, title: t, open: n, onClose: r, description: i, notDis
|
|
|
1791
1928
|
onClick: (e) => {
|
|
1792
1929
|
e.preventDefault(), e.stopPropagation(), r();
|
|
1793
1930
|
},
|
|
1794
|
-
children: /* @__PURE__ */ X(
|
|
1931
|
+
children: /* @__PURE__ */ X(U, {})
|
|
1795
1932
|
})]
|
|
1796
1933
|
})
|
|
1797
1934
|
}),
|
|
@@ -1799,7 +1936,7 @@ function wn({ children: e, title: t, open: n, onClose: r, description: i, notDis
|
|
|
1799
1936
|
className: "flex-1 overflow-y-auto p-6",
|
|
1800
1937
|
children: e
|
|
1801
1938
|
}),
|
|
1802
|
-
o && /* @__PURE__ */ X(
|
|
1939
|
+
o && /* @__PURE__ */ X(Wt, {
|
|
1803
1940
|
className: "m-0 flex-shrink-0 rounded-none border-t border-border bg-transparent p-6 pt-4",
|
|
1804
1941
|
children: o
|
|
1805
1942
|
})
|
|
@@ -1810,19 +1947,19 @@ function wn({ children: e, title: t, open: n, onClose: r, description: i, notDis
|
|
|
1810
1947
|
}
|
|
1811
1948
|
//#endregion
|
|
1812
1949
|
//#region src/components/ui/radio-group.tsx
|
|
1813
|
-
function
|
|
1814
|
-
return /* @__PURE__ */ X(
|
|
1950
|
+
function Pn({ className: e, ...t }) {
|
|
1951
|
+
return /* @__PURE__ */ X(Te.Root, {
|
|
1815
1952
|
"data-slot": "radio-group",
|
|
1816
1953
|
className: Q("grid w-full gap-2", e),
|
|
1817
1954
|
...t
|
|
1818
1955
|
});
|
|
1819
1956
|
}
|
|
1820
|
-
function
|
|
1821
|
-
return /* @__PURE__ */ X(
|
|
1957
|
+
function Fn({ className: e, ...t }) {
|
|
1958
|
+
return /* @__PURE__ */ X(Te.Item, {
|
|
1822
1959
|
"data-slot": "radio-group-item",
|
|
1823
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),
|
|
1824
1961
|
...t,
|
|
1825
|
-
children: /* @__PURE__ */ X(
|
|
1962
|
+
children: /* @__PURE__ */ X(Te.Indicator, {
|
|
1826
1963
|
"data-slot": "radio-group-indicator",
|
|
1827
1964
|
className: "flex size-4 items-center justify-center",
|
|
1828
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" })
|
|
@@ -1831,9 +1968,9 @@ function En({ className: e, ...t }) {
|
|
|
1831
1968
|
}
|
|
1832
1969
|
//#endregion
|
|
1833
1970
|
//#region src/components/custom/card-radio-group.tsx
|
|
1834
|
-
function
|
|
1971
|
+
function In({ items: e, indicatorPosition: t = "end", className: r, cardClassName: i, ...a }) {
|
|
1835
1972
|
let o = n.useId();
|
|
1836
|
-
return /* @__PURE__ */ X(
|
|
1973
|
+
return /* @__PURE__ */ X(Pn, {
|
|
1837
1974
|
className: Q("gap-2", r),
|
|
1838
1975
|
...a,
|
|
1839
1976
|
children: e.map((e, n) => {
|
|
@@ -1841,7 +1978,7 @@ function Dn({ items: e, indicatorPosition: t = "end", className: r, cardClassNam
|
|
|
1841
1978
|
return /* @__PURE__ */ Z("label", {
|
|
1842
1979
|
htmlFor: r,
|
|
1843
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),
|
|
1844
|
-
children: [/* @__PURE__ */ X(
|
|
1981
|
+
children: [/* @__PURE__ */ X(Fn, {
|
|
1845
1982
|
id: r,
|
|
1846
1983
|
value: e.value,
|
|
1847
1984
|
disabled: e.disabled,
|
|
@@ -1874,92 +2011,92 @@ function Dn({ items: e, indicatorPosition: t = "end", className: r, cardClassNam
|
|
|
1874
2011
|
}
|
|
1875
2012
|
//#endregion
|
|
1876
2013
|
//#region src/components/ui/alert-dialog.tsx
|
|
1877
|
-
function
|
|
1878
|
-
return /* @__PURE__ */ X(
|
|
2014
|
+
function Ln({ ...e }) {
|
|
2015
|
+
return /* @__PURE__ */ X(G.Root, {
|
|
1879
2016
|
"data-slot": "alert-dialog",
|
|
1880
2017
|
...e
|
|
1881
2018
|
});
|
|
1882
2019
|
}
|
|
1883
|
-
function
|
|
1884
|
-
return /* @__PURE__ */ X(
|
|
2020
|
+
function Rn({ ...e }) {
|
|
2021
|
+
return /* @__PURE__ */ X(G.Trigger, {
|
|
1885
2022
|
"data-slot": "alert-dialog-trigger",
|
|
1886
2023
|
...e
|
|
1887
2024
|
});
|
|
1888
2025
|
}
|
|
1889
|
-
function
|
|
1890
|
-
return /* @__PURE__ */ X(
|
|
2026
|
+
function zn({ ...e }) {
|
|
2027
|
+
return /* @__PURE__ */ X(G.Portal, {
|
|
1891
2028
|
"data-slot": "alert-dialog-portal",
|
|
1892
2029
|
...e
|
|
1893
2030
|
});
|
|
1894
2031
|
}
|
|
1895
|
-
function
|
|
1896
|
-
return /* @__PURE__ */ X(
|
|
2032
|
+
function Bn({ className: e, ...t }) {
|
|
2033
|
+
return /* @__PURE__ */ X(G.Overlay, {
|
|
1897
2034
|
"data-slot": "alert-dialog-overlay",
|
|
1898
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),
|
|
1899
2036
|
...t
|
|
1900
2037
|
});
|
|
1901
2038
|
}
|
|
1902
|
-
function
|
|
1903
|
-
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, {
|
|
1904
2041
|
"data-slot": "alert-dialog-content",
|
|
1905
2042
|
"data-size": t,
|
|
1906
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),
|
|
1907
2044
|
...n
|
|
1908
2045
|
})] });
|
|
1909
2046
|
}
|
|
1910
|
-
function
|
|
2047
|
+
function Hn({ className: e, ...t }) {
|
|
1911
2048
|
return /* @__PURE__ */ X("div", {
|
|
1912
2049
|
"data-slot": "alert-dialog-header",
|
|
1913
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),
|
|
1914
2051
|
...t
|
|
1915
2052
|
});
|
|
1916
2053
|
}
|
|
1917
|
-
function
|
|
2054
|
+
function Un({ className: e, ...t }) {
|
|
1918
2055
|
return /* @__PURE__ */ X("div", {
|
|
1919
2056
|
"data-slot": "alert-dialog-footer",
|
|
1920
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),
|
|
1921
2058
|
...t
|
|
1922
2059
|
});
|
|
1923
2060
|
}
|
|
1924
|
-
function
|
|
2061
|
+
function Wn({ className: e, ...t }) {
|
|
1925
2062
|
return /* @__PURE__ */ X("div", {
|
|
1926
2063
|
"data-slot": "alert-dialog-media",
|
|
1927
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),
|
|
1928
2065
|
...t
|
|
1929
2066
|
});
|
|
1930
2067
|
}
|
|
1931
|
-
function
|
|
1932
|
-
return /* @__PURE__ */ X(
|
|
2068
|
+
function Gn({ className: e, ...t }) {
|
|
2069
|
+
return /* @__PURE__ */ X(G.Title, {
|
|
1933
2070
|
"data-slot": "alert-dialog-title",
|
|
1934
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),
|
|
1935
2072
|
...t
|
|
1936
2073
|
});
|
|
1937
2074
|
}
|
|
1938
|
-
function
|
|
1939
|
-
return /* @__PURE__ */ X(
|
|
2075
|
+
function Kn({ className: e, ...t }) {
|
|
2076
|
+
return /* @__PURE__ */ X(G.Description, {
|
|
1940
2077
|
"data-slot": "alert-dialog-description",
|
|
1941
2078
|
className: Q("text-sm text-balance text-muted-foreground md:text-pretty *:[a]:underline *:[a]:underline-offset-3 *:[a]:hover:text-foreground", e),
|
|
1942
2079
|
...t
|
|
1943
2080
|
});
|
|
1944
2081
|
}
|
|
1945
|
-
function
|
|
2082
|
+
function qn({ className: e, variant: t = "default", size: n = "default", ...r }) {
|
|
1946
2083
|
return /* @__PURE__ */ X($, {
|
|
1947
2084
|
variant: t,
|
|
1948
2085
|
size: n,
|
|
1949
2086
|
asChild: !0,
|
|
1950
|
-
children: /* @__PURE__ */ X(
|
|
2087
|
+
children: /* @__PURE__ */ X(G.Action, {
|
|
1951
2088
|
"data-slot": "alert-dialog-action",
|
|
1952
2089
|
className: Q(e),
|
|
1953
2090
|
...r
|
|
1954
2091
|
})
|
|
1955
2092
|
});
|
|
1956
2093
|
}
|
|
1957
|
-
function
|
|
2094
|
+
function Jn({ className: e, variant: t = "outline", size: n = "default", ...r }) {
|
|
1958
2095
|
return /* @__PURE__ */ X($, {
|
|
1959
2096
|
variant: t,
|
|
1960
2097
|
size: n,
|
|
1961
2098
|
asChild: !0,
|
|
1962
|
-
children: /* @__PURE__ */ X(
|
|
2099
|
+
children: /* @__PURE__ */ X(G.Cancel, {
|
|
1963
2100
|
"data-slot": "alert-dialog-cancel",
|
|
1964
2101
|
className: Q(e),
|
|
1965
2102
|
...r
|
|
@@ -1968,7 +2105,7 @@ function zn({ className: e, variant: t = "outline", size: n = "default", ...r })
|
|
|
1968
2105
|
}
|
|
1969
2106
|
//#endregion
|
|
1970
2107
|
//#region src/components/custom/confirm-prompt.tsx
|
|
1971
|
-
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" }) {
|
|
1972
2109
|
let [f, p] = n.useState(""), [h, g] = n.useState(!1), _ = o ?? h, v = s || _ || !(!c || f === l), y = () => {
|
|
1973
2110
|
_ || (p(""), a());
|
|
1974
2111
|
}, b = async () => {
|
|
@@ -1978,24 +2115,24 @@ function Bn({ show: e, title: t = "Are you absolutely sure?", message: r = "This
|
|
|
1978
2115
|
g(!1);
|
|
1979
2116
|
}
|
|
1980
2117
|
};
|
|
1981
|
-
return /* @__PURE__ */ X(
|
|
2118
|
+
return /* @__PURE__ */ X(Ln, {
|
|
1982
2119
|
open: !!e,
|
|
1983
2120
|
onOpenChange: (e) => {
|
|
1984
2121
|
e || y();
|
|
1985
2122
|
},
|
|
1986
|
-
children: /* @__PURE__ */ Z(
|
|
2123
|
+
children: /* @__PURE__ */ Z(Vn, {
|
|
1987
2124
|
className: "sm:max-w-lg!",
|
|
1988
2125
|
children: [
|
|
1989
|
-
/* @__PURE__ */ Z(
|
|
2126
|
+
/* @__PURE__ */ Z(Hn, { children: [/* @__PURE__ */ Z(Gn, {
|
|
1990
2127
|
className: "flex items-center gap-2",
|
|
1991
2128
|
children: [/* @__PURE__ */ X("div", {
|
|
1992
2129
|
className: "flex size-8 shrink-0 items-center justify-center rounded-full bg-amber-100 dark:bg-amber-900/30",
|
|
1993
2130
|
children: /* @__PURE__ */ X(m, { className: "size-5 text-amber-600 dark:text-amber-500" })
|
|
1994
2131
|
}), t]
|
|
1995
|
-
}), r != null && /* @__PURE__ */ X(
|
|
2132
|
+
}), r != null && /* @__PURE__ */ X(Kn, { children: r })] }),
|
|
1996
2133
|
c && /* @__PURE__ */ Z("div", {
|
|
1997
2134
|
className: "space-y-1",
|
|
1998
|
-
children: [/* @__PURE__ */ Z(
|
|
2135
|
+
children: [/* @__PURE__ */ Z(Kn, { children: [
|
|
1999
2136
|
"To confirm, type",
|
|
2000
2137
|
" ",
|
|
2001
2138
|
/* @__PURE__ */ Z("span", {
|
|
@@ -2008,7 +2145,7 @@ function Bn({ show: e, title: t = "Are you absolutely sure?", message: r = "This
|
|
|
2008
2145
|
}),
|
|
2009
2146
|
" ",
|
|
2010
2147
|
"in the box below"
|
|
2011
|
-
] }), /* @__PURE__ */ X(
|
|
2148
|
+
] }), /* @__PURE__ */ X(Dt, {
|
|
2012
2149
|
value: f,
|
|
2013
2150
|
onChange: (e) => p(e.target.value),
|
|
2014
2151
|
size: "sm",
|
|
@@ -2021,7 +2158,7 @@ function Bn({ show: e, title: t = "Are you absolutely sure?", message: r = "This
|
|
|
2021
2158
|
}
|
|
2022
2159
|
})]
|
|
2023
2160
|
}),
|
|
2024
|
-
/* @__PURE__ */ Z(
|
|
2161
|
+
/* @__PURE__ */ Z(Un, {
|
|
2025
2162
|
className: "gap-2 space-x-0!",
|
|
2026
2163
|
children: [/* @__PURE__ */ X($, {
|
|
2027
2164
|
variant: "outline",
|
|
@@ -2032,7 +2169,7 @@ function Bn({ show: e, title: t = "Are you absolutely sure?", message: r = "This
|
|
|
2032
2169
|
onClick: b,
|
|
2033
2170
|
className: Q("bg-red-500 text-white hover:bg-red-600"),
|
|
2034
2171
|
disabled: v,
|
|
2035
|
-
children: _ ? /* @__PURE__ */ X(
|
|
2172
|
+
children: _ ? /* @__PURE__ */ X(re, { className: "size-4 animate-spin" }) : u
|
|
2036
2173
|
})]
|
|
2037
2174
|
})
|
|
2038
2175
|
]
|
|
@@ -2040,56 +2177,25 @@ function Bn({ show: e, title: t = "Are you absolutely sure?", message: r = "This
|
|
|
2040
2177
|
});
|
|
2041
2178
|
}
|
|
2042
2179
|
//#endregion
|
|
2043
|
-
//#region src/components/ui/badge.tsx
|
|
2044
|
-
var Vn = U("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!", {
|
|
2045
|
-
variants: { variant: {
|
|
2046
|
-
default: "bg-primary text-primary-foreground [a]:hover:bg-primary/80",
|
|
2047
|
-
secondary: "bg-secondary text-secondary-foreground [a]:hover:bg-secondary/80",
|
|
2048
|
-
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",
|
|
2049
|
-
outline: "border-border text-foreground [a]:hover:bg-muted [a]:hover:text-muted-foreground",
|
|
2050
|
-
ghost: "hover:bg-muted hover:text-muted-foreground dark:hover:bg-muted/50",
|
|
2051
|
-
link: "text-primary underline-offset-4 hover:underline",
|
|
2052
|
-
red: "border-red/30 bg-red/10 text-red",
|
|
2053
|
-
orange: "border-orange/30 bg-orange/10 text-orange",
|
|
2054
|
-
yellow: "border-yellow/30 bg-yellow/10 text-yellow",
|
|
2055
|
-
green: "border-green/30 bg-green/10 text-green",
|
|
2056
|
-
teal: "border-teal/30 bg-teal/10 text-teal",
|
|
2057
|
-
cyan: "border-cyan/30 bg-cyan/10 text-cyan",
|
|
2058
|
-
blue: "border-blue/30 bg-blue/10 text-blue",
|
|
2059
|
-
purple: "border-purple/30 bg-purple/10 text-purple",
|
|
2060
|
-
pink: "border-pink/30 bg-pink/10 text-pink",
|
|
2061
|
-
gray: "border-gray/30 bg-gray/10 text-gray"
|
|
2062
|
-
} },
|
|
2063
|
-
defaultVariants: { variant: "default" }
|
|
2064
|
-
});
|
|
2065
|
-
function Hn({ className: e, variant: t = "default", asChild: n = !1, ...r }) {
|
|
2066
|
-
return /* @__PURE__ */ X(n ? we.Root : "span", {
|
|
2067
|
-
"data-slot": "badge",
|
|
2068
|
-
"data-variant": t,
|
|
2069
|
-
className: Q(Vn({ variant: t }), e),
|
|
2070
|
-
...r
|
|
2071
|
-
});
|
|
2072
|
-
}
|
|
2073
|
-
//#endregion
|
|
2074
2180
|
//#region src/components/custom/custom-tabs.tsx
|
|
2075
|
-
function
|
|
2076
|
-
return /* @__PURE__ */ X(
|
|
2181
|
+
function Xn({ type: e = "underline", items: t, className: n, listClassName: r, ...i }) {
|
|
2182
|
+
return /* @__PURE__ */ X(Ae.Root, {
|
|
2077
2183
|
"data-slot": "custom-tabs",
|
|
2078
2184
|
"data-type": e,
|
|
2079
2185
|
className: Q("flex flex-col gap-2", n),
|
|
2080
2186
|
...i,
|
|
2081
|
-
children: /* @__PURE__ */ X(
|
|
2187
|
+
children: /* @__PURE__ */ X(Ae.List, {
|
|
2082
2188
|
"data-slot": "custom-tabs-list",
|
|
2083
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),
|
|
2084
|
-
children: t.map((t) => /* @__PURE__ */ X(
|
|
2190
|
+
children: t.map((t) => /* @__PURE__ */ X(Zn, {
|
|
2085
2191
|
type: e,
|
|
2086
2192
|
item: t
|
|
2087
2193
|
}, t.value))
|
|
2088
2194
|
})
|
|
2089
2195
|
});
|
|
2090
2196
|
}
|
|
2091
|
-
function
|
|
2092
|
-
return /* @__PURE__ */ Z(
|
|
2197
|
+
function Zn({ type: e, item: t }) {
|
|
2198
|
+
return /* @__PURE__ */ Z(Ae.Trigger, {
|
|
2093
2199
|
"data-slot": "custom-tabs-trigger",
|
|
2094
2200
|
value: t.value,
|
|
2095
2201
|
disabled: t.disabled,
|
|
@@ -2101,7 +2207,7 @@ function Wn({ type: e, item: t }) {
|
|
|
2101
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"),
|
|
2102
2208
|
children: t.count
|
|
2103
2209
|
}),
|
|
2104
|
-
t.badge != null && /* @__PURE__ */ X(
|
|
2210
|
+
t.badge != null && /* @__PURE__ */ X(kt, {
|
|
2105
2211
|
className: "px-2 text-[10px]",
|
|
2106
2212
|
children: t.badge
|
|
2107
2213
|
})
|
|
@@ -2109,8 +2215,41 @@ function Wn({ type: e, item: t }) {
|
|
|
2109
2215
|
});
|
|
2110
2216
|
}
|
|
2111
2217
|
//#endregion
|
|
2218
|
+
//#region src/components/custom/data-cell.tsx
|
|
2219
|
+
function Qn({ label: e, value: t, icon: n, layout: r = "stacked", className: i, ...a }) {
|
|
2220
|
+
let o = n && /* @__PURE__ */ X("span", {
|
|
2221
|
+
className: "shrink-0 text-muted-foreground [&_svg]:size-4",
|
|
2222
|
+
children: n
|
|
2223
|
+
});
|
|
2224
|
+
return r === "row" ? /* @__PURE__ */ Z("div", {
|
|
2225
|
+
"data-slot": "data-cell",
|
|
2226
|
+
"data-layout": "row",
|
|
2227
|
+
className: Q("flex items-center justify-between gap-4 py-2", i),
|
|
2228
|
+
...a,
|
|
2229
|
+
children: [/* @__PURE__ */ Z("span", {
|
|
2230
|
+
className: "flex items-center gap-1.5 text-sm text-muted-foreground",
|
|
2231
|
+
children: [o, e]
|
|
2232
|
+
}), /* @__PURE__ */ X("span", {
|
|
2233
|
+
className: "text-sm font-medium",
|
|
2234
|
+
children: t
|
|
2235
|
+
})]
|
|
2236
|
+
}) : /* @__PURE__ */ Z("div", {
|
|
2237
|
+
"data-slot": "data-cell",
|
|
2238
|
+
"data-layout": "stacked",
|
|
2239
|
+
className: Q("flex flex-col gap-0.5", i),
|
|
2240
|
+
...a,
|
|
2241
|
+
children: [/* @__PURE__ */ X("span", {
|
|
2242
|
+
className: "text-xs text-muted-foreground",
|
|
2243
|
+
children: e
|
|
2244
|
+
}), /* @__PURE__ */ Z("span", {
|
|
2245
|
+
className: "flex items-center gap-1.5 text-sm font-medium",
|
|
2246
|
+
children: [o, t]
|
|
2247
|
+
})]
|
|
2248
|
+
});
|
|
2249
|
+
}
|
|
2250
|
+
//#endregion
|
|
2112
2251
|
//#region src/components/custom/def-row.tsx
|
|
2113
|
-
function
|
|
2252
|
+
function $n({ label: e, value: t, className: n, ...r }) {
|
|
2114
2253
|
return /* @__PURE__ */ Z("div", {
|
|
2115
2254
|
"data-slot": "def-row",
|
|
2116
2255
|
className: Q("flex items-center justify-between gap-4 py-2", n),
|
|
@@ -2125,8 +2264,78 @@ function Gn({ label: e, value: t, className: n, ...r }) {
|
|
|
2125
2264
|
});
|
|
2126
2265
|
}
|
|
2127
2266
|
//#endregion
|
|
2267
|
+
//#region src/components/ui/empty.tsx
|
|
2268
|
+
function er({ className: e, ...t }) {
|
|
2269
|
+
return /* @__PURE__ */ X("div", {
|
|
2270
|
+
"data-slot": "empty",
|
|
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),
|
|
2272
|
+
...t
|
|
2273
|
+
});
|
|
2274
|
+
}
|
|
2275
|
+
function tr({ className: e, ...t }) {
|
|
2276
|
+
return /* @__PURE__ */ X("div", {
|
|
2277
|
+
"data-slot": "empty-header",
|
|
2278
|
+
className: Q("flex max-w-sm flex-col items-center gap-2 text-center", e),
|
|
2279
|
+
...t
|
|
2280
|
+
});
|
|
2281
|
+
}
|
|
2282
|
+
var nr = W("flex shrink-0 items-center justify-center mb-2 [&_svg:not([class*='size-'])]:size-6", {
|
|
2283
|
+
variants: { variant: {
|
|
2284
|
+
default: "bg-transparent",
|
|
2285
|
+
icon: "bg-muted text-foreground flex size-10 shrink-0 items-center justify-center rounded-lg [&_svg:not([class*='size-'])]:size-6"
|
|
2286
|
+
} },
|
|
2287
|
+
defaultVariants: { variant: "default" }
|
|
2288
|
+
});
|
|
2289
|
+
function rr({ className: e, variant: t = "default", ...n }) {
|
|
2290
|
+
return /* @__PURE__ */ X("div", {
|
|
2291
|
+
"data-slot": "empty-icon",
|
|
2292
|
+
"data-variant": t,
|
|
2293
|
+
className: Q(nr({
|
|
2294
|
+
variant: t,
|
|
2295
|
+
className: e
|
|
2296
|
+
})),
|
|
2297
|
+
...n
|
|
2298
|
+
});
|
|
2299
|
+
}
|
|
2300
|
+
function ir({ className: e, ...t }) {
|
|
2301
|
+
return /* @__PURE__ */ X("div", {
|
|
2302
|
+
"data-slot": "empty-title",
|
|
2303
|
+
className: Q("text-lg font-medium tracking-tight", e),
|
|
2304
|
+
...t
|
|
2305
|
+
});
|
|
2306
|
+
}
|
|
2307
|
+
function ar({ className: e, ...t }) {
|
|
2308
|
+
return /* @__PURE__ */ X("p", {
|
|
2309
|
+
"data-slot": "empty-description",
|
|
2310
|
+
className: Q("text-sm/relaxed text-muted-foreground [&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-foreground", e),
|
|
2311
|
+
...t
|
|
2312
|
+
});
|
|
2313
|
+
}
|
|
2314
|
+
function or({ className: e, ...t }) {
|
|
2315
|
+
return /* @__PURE__ */ X("div", {
|
|
2316
|
+
"data-slot": "empty-content",
|
|
2317
|
+
className: Q("flex w-full max-w-sm min-w-0 flex-col items-center gap-4 text-sm text-balance", e),
|
|
2318
|
+
...t
|
|
2319
|
+
});
|
|
2320
|
+
}
|
|
2321
|
+
//#endregion
|
|
2322
|
+
//#region src/components/custom/empty-state.tsx
|
|
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, {
|
|
2325
|
+
...a,
|
|
2326
|
+
children: [/* @__PURE__ */ Z(tr, { children: [
|
|
2327
|
+
e != null && /* @__PURE__ */ X(rr, {
|
|
2328
|
+
variant: t,
|
|
2329
|
+
children: e
|
|
2330
|
+
}),
|
|
2331
|
+
n != null && /* @__PURE__ */ X(ir, { children: n }),
|
|
2332
|
+
r != null && /* @__PURE__ */ X(ar, { children: r })
|
|
2333
|
+
] }), i != null && /* @__PURE__ */ X(or, { children: i })]
|
|
2334
|
+
});
|
|
2335
|
+
}
|
|
2336
|
+
//#endregion
|
|
2128
2337
|
//#region src/components/custom/faceted-filter.tsx
|
|
2129
|
-
function
|
|
2338
|
+
function cr(e) {
|
|
2130
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) => {
|
|
2131
2340
|
if (s) {
|
|
2132
2341
|
let n = new Set(c);
|
|
@@ -2136,37 +2345,37 @@ function Kn(e) {
|
|
|
2136
2345
|
n(c.has(t) ? null : t);
|
|
2137
2346
|
}
|
|
2138
2347
|
};
|
|
2139
|
-
return /* @__PURE__ */ Z(
|
|
2348
|
+
return /* @__PURE__ */ Z(pn, { children: [/* @__PURE__ */ X(mn, {
|
|
2140
2349
|
asChild: !0,
|
|
2141
2350
|
children: /* @__PURE__ */ Z($, {
|
|
2142
2351
|
variant: "outline",
|
|
2143
2352
|
className: Q("w-fit border-dashed", o),
|
|
2144
2353
|
children: [
|
|
2145
|
-
/* @__PURE__ */ X(
|
|
2354
|
+
/* @__PURE__ */ X(le, {}),
|
|
2146
2355
|
t,
|
|
2147
|
-
c.size > 0 && /* @__PURE__ */ Z(Y, { children: [/* @__PURE__ */ X(
|
|
2356
|
+
c.size > 0 && /* @__PURE__ */ Z(Y, { children: [/* @__PURE__ */ X(mt, {
|
|
2148
2357
|
orientation: "vertical",
|
|
2149
2358
|
className: "mx-0.5 h-4"
|
|
2150
|
-
}), /* @__PURE__ */ X(
|
|
2359
|
+
}), /* @__PURE__ */ X(kt, {
|
|
2151
2360
|
variant: "secondary",
|
|
2152
2361
|
className: "rounded-sm px-1 font-normal",
|
|
2153
2362
|
children: c.size
|
|
2154
2363
|
})] })
|
|
2155
2364
|
]
|
|
2156
2365
|
})
|
|
2157
|
-
}), /* @__PURE__ */ X(
|
|
2366
|
+
}), /* @__PURE__ */ X(hn, {
|
|
2158
2367
|
className: "w-56 p-0",
|
|
2159
2368
|
align: "start",
|
|
2160
|
-
children: /* @__PURE__ */ Z(
|
|
2161
|
-
/* @__PURE__ */ X(
|
|
2162
|
-
/* @__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) => {
|
|
2163
2372
|
let t = c.has(e.value);
|
|
2164
|
-
return /* @__PURE__ */ Z(
|
|
2373
|
+
return /* @__PURE__ */ Z(dn, {
|
|
2165
2374
|
onSelect: () => l(e.value),
|
|
2166
2375
|
children: [
|
|
2167
2376
|
/* @__PURE__ */ X("div", {
|
|
2168
2377
|
className: Q("flex size-4 items-center justify-center rounded-[4px] border", s ? "rounded-[4px]" : "rounded-full", t ? "border-primary bg-primary text-primary-foreground" : "border-input [&_svg]:invisible"),
|
|
2169
|
-
children: /* @__PURE__ */ X(
|
|
2378
|
+
children: /* @__PURE__ */ X(v, { className: "size-3" })
|
|
2170
2379
|
}),
|
|
2171
2380
|
e.icon && /* @__PURE__ */ X("span", {
|
|
2172
2381
|
className: "text-muted-foreground [&_svg]:size-4",
|
|
@@ -2180,7 +2389,7 @@ function Kn(e) {
|
|
|
2180
2389
|
]
|
|
2181
2390
|
}, e.value);
|
|
2182
2391
|
}) }),
|
|
2183
|
-
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, {
|
|
2184
2393
|
onSelect: () => {
|
|
2185
2394
|
s ? e.onChange([]) : e.onChange(null);
|
|
2186
2395
|
},
|
|
@@ -2192,7 +2401,7 @@ function Kn(e) {
|
|
|
2192
2401
|
}
|
|
2193
2402
|
//#endregion
|
|
2194
2403
|
//#region src/components/custom/list-card.tsx
|
|
2195
|
-
function
|
|
2404
|
+
function lr({ name: e, src: t, className: n }) {
|
|
2196
2405
|
let r = e.split(/\s+/).slice(0, 2).map((e) => e[0]?.toUpperCase() ?? "").join("");
|
|
2197
2406
|
return /* @__PURE__ */ Z("span", {
|
|
2198
2407
|
className: Q("flex min-w-0 items-center gap-1.5 text-xs text-muted-foreground", n),
|
|
@@ -2209,7 +2418,7 @@ function qn({ name: e, src: t, className: n }) {
|
|
|
2209
2418
|
})]
|
|
2210
2419
|
});
|
|
2211
2420
|
}
|
|
2212
|
-
function
|
|
2421
|
+
function ur({ icon: e, children: t, className: n }) {
|
|
2213
2422
|
return /* @__PURE__ */ Z("span", {
|
|
2214
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),
|
|
2215
2424
|
children: [e, /* @__PURE__ */ X("span", {
|
|
@@ -2218,8 +2427,8 @@ function Jn({ icon: e, children: t, className: n }) {
|
|
|
2218
2427
|
})]
|
|
2219
2428
|
});
|
|
2220
2429
|
}
|
|
2221
|
-
function
|
|
2222
|
-
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, {
|
|
2223
2432
|
checked: u,
|
|
2224
2433
|
onCheckedChange: (e) => d?.(e === !0),
|
|
2225
2434
|
onClick: (e) => e.stopPropagation(),
|
|
@@ -2229,11 +2438,11 @@ function Yn({ title: e, description: t, media: n, badge: r, meta: i, footer: a,
|
|
|
2229
2438
|
src: n,
|
|
2230
2439
|
alt: "",
|
|
2231
2440
|
className: "size-12 shrink-0 rounded-md object-cover"
|
|
2232
|
-
}) : 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, {
|
|
2233
2442
|
variant: "secondary",
|
|
2234
2443
|
className: "font-medium",
|
|
2235
2444
|
children: r
|
|
2236
|
-
}) : r, x = Array.isArray(o) ? /* @__PURE__ */ X(
|
|
2445
|
+
}) : r, x = Array.isArray(o) ? /* @__PURE__ */ X(ft, {
|
|
2237
2446
|
items: o,
|
|
2238
2447
|
align: "end"
|
|
2239
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 = {
|
|
@@ -2317,22 +2526,67 @@ function Yn({ title: e, description: t, media: n, badge: r, meta: i, footer: a,
|
|
|
2317
2526
|
]
|
|
2318
2527
|
});
|
|
2319
2528
|
}
|
|
2320
|
-
var
|
|
2529
|
+
var fr = {
|
|
2321
2530
|
1: "grid-cols-1",
|
|
2322
2531
|
2: "grid-cols-1 sm:grid-cols-2",
|
|
2323
2532
|
3: "grid-cols-1 sm:grid-cols-2 lg:grid-cols-3",
|
|
2324
2533
|
4: "grid-cols-1 sm:grid-cols-2 lg:grid-cols-4"
|
|
2325
2534
|
};
|
|
2326
|
-
function
|
|
2535
|
+
function pr({ columns: e = 3, className: t, ...n }) {
|
|
2327
2536
|
return /* @__PURE__ */ X("div", {
|
|
2328
2537
|
"data-slot": "list-card-grid",
|
|
2329
|
-
className: Q("grid w-full gap-4",
|
|
2538
|
+
className: Q("grid w-full gap-4", fr[e], t),
|
|
2330
2539
|
...n
|
|
2331
2540
|
});
|
|
2332
2541
|
}
|
|
2333
2542
|
//#endregion
|
|
2543
|
+
//#region src/components/custom/not-found.tsx
|
|
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 }) {
|
|
2545
|
+
let u = () => {
|
|
2546
|
+
i ? i() : typeof window < "u" && window.history.back();
|
|
2547
|
+
};
|
|
2548
|
+
return /* @__PURE__ */ Z("div", {
|
|
2549
|
+
"data-slot": "not-found",
|
|
2550
|
+
className: Q("flex min-h-[60svh] flex-col items-center justify-center px-6 text-center", c),
|
|
2551
|
+
...l,
|
|
2552
|
+
children: [
|
|
2553
|
+
e != null && /* @__PURE__ */ X("div", {
|
|
2554
|
+
className: "text-7xl font-extrabold tracking-tight text-primary tabular-nums sm:text-8xl [&_svg]:size-20",
|
|
2555
|
+
children: e
|
|
2556
|
+
}),
|
|
2557
|
+
t != null && /* @__PURE__ */ X("h1", {
|
|
2558
|
+
className: "mt-4 text-2xl font-bold tracking-tight sm:text-3xl",
|
|
2559
|
+
children: t
|
|
2560
|
+
}),
|
|
2561
|
+
n != null && /* @__PURE__ */ X("p", {
|
|
2562
|
+
className: "mt-3 max-w-md text-muted-foreground",
|
|
2563
|
+
children: n
|
|
2564
|
+
}),
|
|
2565
|
+
(r || a || s) && /* @__PURE__ */ Z("div", {
|
|
2566
|
+
className: "mt-8 flex flex-wrap items-center justify-center gap-3",
|
|
2567
|
+
children: [
|
|
2568
|
+
r && /* @__PURE__ */ X($, {
|
|
2569
|
+
variant: "outline",
|
|
2570
|
+
onClick: u,
|
|
2571
|
+
startItem: /* @__PURE__ */ X(h, {}),
|
|
2572
|
+
children: "Go Back"
|
|
2573
|
+
}),
|
|
2574
|
+
a != null && /* @__PURE__ */ X($, {
|
|
2575
|
+
asChild: !0,
|
|
2576
|
+
children: /* @__PURE__ */ Z("a", {
|
|
2577
|
+
href: a,
|
|
2578
|
+
children: [/* @__PURE__ */ X(I, {}), o]
|
|
2579
|
+
})
|
|
2580
|
+
}),
|
|
2581
|
+
s
|
|
2582
|
+
]
|
|
2583
|
+
})
|
|
2584
|
+
]
|
|
2585
|
+
});
|
|
2586
|
+
}
|
|
2587
|
+
//#endregion
|
|
2334
2588
|
//#region src/components/custom/quick-stat.tsx
|
|
2335
|
-
function
|
|
2589
|
+
function hr({ icon: e, value: t, label: n, className: r, ...i }) {
|
|
2336
2590
|
return /* @__PURE__ */ Z("div", {
|
|
2337
2591
|
"data-slot": "quick-stat",
|
|
2338
2592
|
className: Q("flex items-center gap-1.5 text-sm", r),
|
|
@@ -2355,7 +2609,7 @@ function Qn({ icon: e, value: t, label: n, className: r, ...i }) {
|
|
|
2355
2609
|
}
|
|
2356
2610
|
//#endregion
|
|
2357
2611
|
//#region src/components/ui/card.tsx
|
|
2358
|
-
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", {
|
|
2359
2613
|
variants: { variant: {
|
|
2360
2614
|
default: "bg-card text-card-foreground ring-foreground/10",
|
|
2361
2615
|
alt: "bg-muted/40 text-card-foreground ring-foreground/10",
|
|
@@ -2366,51 +2620,51 @@ var $n = U("group/card flex flex-col gap-4 overflow-hidden rounded-xl py-4 text-
|
|
|
2366
2620
|
} },
|
|
2367
2621
|
defaultVariants: { variant: "default" }
|
|
2368
2622
|
});
|
|
2369
|
-
function
|
|
2623
|
+
function _r({ className: e, size: t = "default", variant: n = "default", ...r }) {
|
|
2370
2624
|
return /* @__PURE__ */ X("div", {
|
|
2371
2625
|
"data-slot": "card",
|
|
2372
2626
|
"data-size": t,
|
|
2373
2627
|
"data-variant": n,
|
|
2374
|
-
className: Q(
|
|
2628
|
+
className: Q(gr({ variant: n }), e),
|
|
2375
2629
|
...r
|
|
2376
2630
|
});
|
|
2377
2631
|
}
|
|
2378
|
-
function
|
|
2632
|
+
function vr({ className: e, ...t }) {
|
|
2379
2633
|
return /* @__PURE__ */ X("div", {
|
|
2380
2634
|
"data-slot": "card-header",
|
|
2381
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),
|
|
2382
2636
|
...t
|
|
2383
2637
|
});
|
|
2384
2638
|
}
|
|
2385
|
-
function
|
|
2639
|
+
function yr({ className: e, ...t }) {
|
|
2386
2640
|
return /* @__PURE__ */ X("div", {
|
|
2387
2641
|
"data-slot": "card-title",
|
|
2388
2642
|
className: Q("text-base leading-snug font-medium group-data-[size=sm]/card:text-sm", e),
|
|
2389
2643
|
...t
|
|
2390
2644
|
});
|
|
2391
2645
|
}
|
|
2392
|
-
function
|
|
2646
|
+
function br({ className: e, ...t }) {
|
|
2393
2647
|
return /* @__PURE__ */ X("div", {
|
|
2394
2648
|
"data-slot": "card-description",
|
|
2395
2649
|
className: Q("text-sm text-muted-foreground", e),
|
|
2396
2650
|
...t
|
|
2397
2651
|
});
|
|
2398
2652
|
}
|
|
2399
|
-
function
|
|
2653
|
+
function xr({ className: e, ...t }) {
|
|
2400
2654
|
return /* @__PURE__ */ X("div", {
|
|
2401
2655
|
"data-slot": "card-action",
|
|
2402
2656
|
className: Q("col-start-2 row-span-2 row-start-1 self-start justify-self-end", e),
|
|
2403
2657
|
...t
|
|
2404
2658
|
});
|
|
2405
2659
|
}
|
|
2406
|
-
function
|
|
2660
|
+
function Sr({ className: e, ...t }) {
|
|
2407
2661
|
return /* @__PURE__ */ X("div", {
|
|
2408
2662
|
"data-slot": "card-content",
|
|
2409
2663
|
className: Q("px-4 group-data-[size=sm]/card:px-3", e),
|
|
2410
2664
|
...t
|
|
2411
2665
|
});
|
|
2412
2666
|
}
|
|
2413
|
-
function
|
|
2667
|
+
function Cr({ className: e, ...t }) {
|
|
2414
2668
|
return /* @__PURE__ */ X("div", {
|
|
2415
2669
|
"data-slot": "card-footer",
|
|
2416
2670
|
className: Q("flex items-center rounded-b-xl border-t bg-muted/50 p-4 group-data-[size=sm]/card:p-3", e),
|
|
@@ -2419,7 +2673,7 @@ function or({ className: e, ...t }) {
|
|
|
2419
2673
|
}
|
|
2420
2674
|
//#endregion
|
|
2421
2675
|
//#region src/components/custom/sensor-card.tsx
|
|
2422
|
-
var
|
|
2676
|
+
var wr = {
|
|
2423
2677
|
primary: {
|
|
2424
2678
|
text: "text-primary",
|
|
2425
2679
|
bg: "bg-primary"
|
|
@@ -2437,8 +2691,8 @@ var sr = {
|
|
|
2437
2691
|
bg: "bg-muted-foreground"
|
|
2438
2692
|
}
|
|
2439
2693
|
};
|
|
2440
|
-
function
|
|
2441
|
-
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", {
|
|
2442
2696
|
className: "flex items-center gap-3",
|
|
2443
2697
|
children: [y, /* @__PURE__ */ Z("div", {
|
|
2444
2698
|
className: "flex flex-col",
|
|
@@ -2480,7 +2734,7 @@ function cr({ icon: e, mode: t, description: n, value: r, showAccent: i = !1, co
|
|
|
2480
2734
|
children: c && r !== "" && !isNaN(Number(r)) ? `${r}%` : r
|
|
2481
2735
|
})]
|
|
2482
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);
|
|
2483
|
-
return d === "standalone" ? /* @__PURE__ */ X(
|
|
2737
|
+
return d === "standalone" ? /* @__PURE__ */ X(_r, {
|
|
2484
2738
|
className: "p-0",
|
|
2485
2739
|
onClick: f,
|
|
2486
2740
|
children: /* @__PURE__ */ X("div", {
|
|
@@ -2495,51 +2749,51 @@ function cr({ icon: e, mode: t, description: n, value: r, showAccent: i = !1, co
|
|
|
2495
2749
|
}
|
|
2496
2750
|
//#endregion
|
|
2497
2751
|
//#region src/components/ui/sheet.tsx
|
|
2498
|
-
function
|
|
2499
|
-
return /* @__PURE__ */ X(
|
|
2752
|
+
function Er({ ...e }) {
|
|
2753
|
+
return /* @__PURE__ */ X(K.Root, {
|
|
2500
2754
|
"data-slot": "sheet",
|
|
2501
2755
|
...e
|
|
2502
2756
|
});
|
|
2503
2757
|
}
|
|
2504
|
-
function
|
|
2505
|
-
return /* @__PURE__ */ X(
|
|
2758
|
+
function Dr({ ...e }) {
|
|
2759
|
+
return /* @__PURE__ */ X(K.Trigger, {
|
|
2506
2760
|
"data-slot": "sheet-trigger",
|
|
2507
2761
|
...e
|
|
2508
2762
|
});
|
|
2509
2763
|
}
|
|
2510
|
-
function
|
|
2511
|
-
return /* @__PURE__ */ X(
|
|
2764
|
+
function Or({ ...e }) {
|
|
2765
|
+
return /* @__PURE__ */ X(K.Close, {
|
|
2512
2766
|
"data-slot": "sheet-close",
|
|
2513
2767
|
...e
|
|
2514
2768
|
});
|
|
2515
2769
|
}
|
|
2516
|
-
function
|
|
2517
|
-
return /* @__PURE__ */ X(
|
|
2770
|
+
function kr({ ...e }) {
|
|
2771
|
+
return /* @__PURE__ */ X(K.Portal, {
|
|
2518
2772
|
"data-slot": "sheet-portal",
|
|
2519
2773
|
...e
|
|
2520
2774
|
});
|
|
2521
2775
|
}
|
|
2522
|
-
function
|
|
2523
|
-
return /* @__PURE__ */ X(
|
|
2776
|
+
function Ar({ className: e, ...t }) {
|
|
2777
|
+
return /* @__PURE__ */ X(K.Overlay, {
|
|
2524
2778
|
"data-slot": "sheet-overlay",
|
|
2525
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),
|
|
2526
2780
|
...t
|
|
2527
2781
|
});
|
|
2528
2782
|
}
|
|
2529
|
-
function
|
|
2530
|
-
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, {
|
|
2531
2785
|
"data-slot": "sheet-content",
|
|
2532
2786
|
"data-side": n,
|
|
2533
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),
|
|
2534
2788
|
...i,
|
|
2535
|
-
children: [t, r && /* @__PURE__ */ X(
|
|
2789
|
+
children: [t, r && /* @__PURE__ */ X(K.Close, {
|
|
2536
2790
|
"data-slot": "sheet-close",
|
|
2537
2791
|
asChild: !0,
|
|
2538
2792
|
children: /* @__PURE__ */ Z($, {
|
|
2539
2793
|
variant: "ghost",
|
|
2540
2794
|
className: "absolute top-3 right-3",
|
|
2541
2795
|
size: "icon-sm",
|
|
2542
|
-
children: [/* @__PURE__ */ X(
|
|
2796
|
+
children: [/* @__PURE__ */ X(U, {}), /* @__PURE__ */ X("span", {
|
|
2543
2797
|
className: "sr-only",
|
|
2544
2798
|
children: "Close"
|
|
2545
2799
|
})]
|
|
@@ -2547,29 +2801,29 @@ function mr({ className: e, children: t, side: n = "right", showCloseButton: r =
|
|
|
2547
2801
|
})]
|
|
2548
2802
|
})] });
|
|
2549
2803
|
}
|
|
2550
|
-
function
|
|
2804
|
+
function Mr({ className: e, ...t }) {
|
|
2551
2805
|
return /* @__PURE__ */ X("div", {
|
|
2552
2806
|
"data-slot": "sheet-header",
|
|
2553
2807
|
className: Q("flex flex-col gap-0.5 p-4", e),
|
|
2554
2808
|
...t
|
|
2555
2809
|
});
|
|
2556
2810
|
}
|
|
2557
|
-
function
|
|
2811
|
+
function Nr({ className: e, ...t }) {
|
|
2558
2812
|
return /* @__PURE__ */ X("div", {
|
|
2559
2813
|
"data-slot": "sheet-footer",
|
|
2560
2814
|
className: Q("mt-auto flex flex-col gap-2 p-4", e),
|
|
2561
2815
|
...t
|
|
2562
2816
|
});
|
|
2563
2817
|
}
|
|
2564
|
-
function
|
|
2565
|
-
return /* @__PURE__ */ X(
|
|
2818
|
+
function Pr({ className: e, ...t }) {
|
|
2819
|
+
return /* @__PURE__ */ X(K.Title, {
|
|
2566
2820
|
"data-slot": "sheet-title",
|
|
2567
2821
|
className: Q("text-base font-medium text-foreground", e),
|
|
2568
2822
|
...t
|
|
2569
2823
|
});
|
|
2570
2824
|
}
|
|
2571
|
-
function
|
|
2572
|
-
return /* @__PURE__ */ X(
|
|
2825
|
+
function Fr({ className: e, ...t }) {
|
|
2826
|
+
return /* @__PURE__ */ X(K.Description, {
|
|
2573
2827
|
"data-slot": "sheet-description",
|
|
2574
2828
|
className: Q("text-sm text-muted-foreground", e),
|
|
2575
2829
|
...t
|
|
@@ -2577,17 +2831,17 @@ function vr({ className: e, ...t }) {
|
|
|
2577
2831
|
}
|
|
2578
2832
|
//#endregion
|
|
2579
2833
|
//#region src/components/custom/side-sheet.tsx
|
|
2580
|
-
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 }) {
|
|
2581
2835
|
let d = s !== void 0;
|
|
2582
|
-
return /* @__PURE__ */ X(
|
|
2836
|
+
return /* @__PURE__ */ X(Er, {
|
|
2583
2837
|
open: n,
|
|
2584
2838
|
onOpenChange: c ? void 0 : (e) => !e && r(),
|
|
2585
|
-
children: /* @__PURE__ */ Z(
|
|
2839
|
+
children: /* @__PURE__ */ Z(jr, {
|
|
2586
2840
|
side: a,
|
|
2587
2841
|
showCloseButton: !1,
|
|
2588
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),
|
|
2589
2843
|
children: [
|
|
2590
|
-
/* @__PURE__ */ Z(
|
|
2844
|
+
/* @__PURE__ */ Z(Mr, {
|
|
2591
2845
|
className: "shrink-0 flex-row items-center gap-2 border-b border-border px-4 py-3",
|
|
2592
2846
|
children: [/* @__PURE__ */ X($, {
|
|
2593
2847
|
type: "button",
|
|
@@ -2598,13 +2852,13 @@ function yr({ children: e, title: t, open: n, onClose: r, description: i, side:
|
|
|
2598
2852
|
onClick: (e) => {
|
|
2599
2853
|
e.preventDefault(), e.stopPropagation(), (d ? s : r)();
|
|
2600
2854
|
},
|
|
2601
|
-
children: X(d ?
|
|
2855
|
+
children: X(d ? x : U, {})
|
|
2602
2856
|
}), /* @__PURE__ */ Z("div", {
|
|
2603
2857
|
className: "flex min-w-0 flex-col",
|
|
2604
|
-
children: [/* @__PURE__ */ X(
|
|
2858
|
+
children: [/* @__PURE__ */ X(Pr, {
|
|
2605
2859
|
className: "truncate text-left text-lg font-semibold",
|
|
2606
2860
|
children: t
|
|
2607
|
-
}), i && /* @__PURE__ */ X(
|
|
2861
|
+
}), i && /* @__PURE__ */ X(Fr, {
|
|
2608
2862
|
className: "text-left",
|
|
2609
2863
|
children: i
|
|
2610
2864
|
})]
|
|
@@ -2622,7 +2876,7 @@ function yr({ children: e, title: t, open: n, onClose: r, description: i, side:
|
|
|
2622
2876
|
})
|
|
2623
2877
|
});
|
|
2624
2878
|
}
|
|
2625
|
-
function
|
|
2879
|
+
function Lr({ label: e, action: t, className: n, children: r, ...i }) {
|
|
2626
2880
|
return /* @__PURE__ */ Z("div", {
|
|
2627
2881
|
"data-slot": "side-sheet-section",
|
|
2628
2882
|
...i,
|
|
@@ -2644,7 +2898,7 @@ function br({ label: e, action: t, className: n, children: r, ...i }) {
|
|
|
2644
2898
|
}
|
|
2645
2899
|
//#endregion
|
|
2646
2900
|
//#region src/components/custom/stat-card.tsx
|
|
2647
|
-
var
|
|
2901
|
+
var Rr = {
|
|
2648
2902
|
primary: {
|
|
2649
2903
|
text: "text-primary",
|
|
2650
2904
|
bg: "bg-primary",
|
|
@@ -2671,14 +2925,14 @@ var xr = {
|
|
|
2671
2925
|
soft: "bg-muted"
|
|
2672
2926
|
}
|
|
2673
2927
|
};
|
|
2674
|
-
function
|
|
2928
|
+
function zr({ data: e, colorVar: t }) {
|
|
2675
2929
|
let r = n.useId().replace(/:/g, "");
|
|
2676
2930
|
return /* @__PURE__ */ X("div", {
|
|
2677
2931
|
className: "mt-3 h-16 w-full",
|
|
2678
|
-
children: /* @__PURE__ */ X(
|
|
2932
|
+
children: /* @__PURE__ */ X(Re, {
|
|
2679
2933
|
width: "100%",
|
|
2680
2934
|
height: "100%",
|
|
2681
|
-
children: /* @__PURE__ */ Z(
|
|
2935
|
+
children: /* @__PURE__ */ Z(Le, {
|
|
2682
2936
|
data: e.map((e, t) => ({
|
|
2683
2937
|
x: t,
|
|
2684
2938
|
y: e
|
|
@@ -2704,7 +2958,7 @@ function Sr({ data: e, colorVar: t }) {
|
|
|
2704
2958
|
stopColor: t,
|
|
2705
2959
|
stopOpacity: 0
|
|
2706
2960
|
})]
|
|
2707
|
-
}) }), /* @__PURE__ */ X(
|
|
2961
|
+
}) }), /* @__PURE__ */ X(Ie, {
|
|
2708
2962
|
dataKey: "y",
|
|
2709
2963
|
type: "natural",
|
|
2710
2964
|
stroke: t,
|
|
@@ -2718,11 +2972,11 @@ function Sr({ data: e, colorVar: t }) {
|
|
|
2718
2972
|
})
|
|
2719
2973
|
});
|
|
2720
2974
|
}
|
|
2721
|
-
function
|
|
2722
|
-
let u =
|
|
2723
|
-
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, {
|
|
2724
2978
|
className: Q("gap-3", l),
|
|
2725
|
-
children: [/* @__PURE__ */ Z(
|
|
2979
|
+
children: [/* @__PURE__ */ Z(vr, {
|
|
2726
2980
|
className: "flex flex-row items-start justify-between gap-2 pb-0",
|
|
2727
2981
|
children: [/* @__PURE__ */ X("span", {
|
|
2728
2982
|
className: "text-sm font-medium text-muted-foreground",
|
|
@@ -2731,10 +2985,10 @@ function Cr({ title: e, value: t, description: n, icon: r, color: i = "primary",
|
|
|
2731
2985
|
className: Q("flex size-9 shrink-0 items-center justify-center rounded-md", u.soft, u.text, "[&_svg]:size-4"),
|
|
2732
2986
|
children: r
|
|
2733
2987
|
})]
|
|
2734
|
-
}), /* @__PURE__ */ Z(
|
|
2988
|
+
}), /* @__PURE__ */ Z(Sr, { children: [
|
|
2735
2989
|
c ? /* @__PURE__ */ Z("div", {
|
|
2736
2990
|
className: "mt-1 flex items-center gap-4",
|
|
2737
|
-
children: [/* @__PURE__ */ X(
|
|
2991
|
+
children: [/* @__PURE__ */ X(Hr, {
|
|
2738
2992
|
ring: c,
|
|
2739
2993
|
colors: u
|
|
2740
2994
|
}), /* @__PURE__ */ Z("div", {
|
|
@@ -2755,7 +3009,7 @@ function Cr({ title: e, value: t, description: n, icon: r, color: i = "primary",
|
|
|
2755
3009
|
className: "mt-1 flex items-center gap-1 text-sm text-muted-foreground",
|
|
2756
3010
|
children: [/* @__PURE__ */ Z("span", {
|
|
2757
3011
|
className: Q("flex items-center gap-1 font-medium", a.direction === "down" ? "text-red" : "text-green"),
|
|
2758
|
-
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]
|
|
2759
3013
|
}), a.label]
|
|
2760
3014
|
}) : n && !c ? /* @__PURE__ */ X("p", {
|
|
2761
3015
|
className: "mt-1 text-sm text-muted-foreground",
|
|
@@ -2774,14 +3028,14 @@ function Cr({ title: e, value: t, description: n, icon: r, color: i = "primary",
|
|
|
2774
3028
|
children: [/* @__PURE__ */ X("span", { children: o.caption }), /* @__PURE__ */ X("span", { children: o.target })]
|
|
2775
3029
|
})]
|
|
2776
3030
|
}),
|
|
2777
|
-
s && s.length > 1 && /* @__PURE__ */ X(
|
|
3031
|
+
s && s.length > 1 && /* @__PURE__ */ X(zr, {
|
|
2778
3032
|
data: s,
|
|
2779
3033
|
colorVar: d
|
|
2780
3034
|
})
|
|
2781
3035
|
] })]
|
|
2782
3036
|
});
|
|
2783
3037
|
}
|
|
2784
|
-
function
|
|
3038
|
+
function Vr(e) {
|
|
2785
3039
|
switch (e) {
|
|
2786
3040
|
case "primary": return "primary";
|
|
2787
3041
|
case "success": return "green";
|
|
@@ -2790,7 +3044,7 @@ function wr(e) {
|
|
|
2790
3044
|
default: return "muted-foreground";
|
|
2791
3045
|
}
|
|
2792
3046
|
}
|
|
2793
|
-
function
|
|
3047
|
+
function Hr({ ring: e, colors: t }) {
|
|
2794
3048
|
let n = Math.max(0, Math.min(100, e.value)), r = 2 * Math.PI * 34;
|
|
2795
3049
|
return /* @__PURE__ */ Z("div", {
|
|
2796
3050
|
className: "relative size-20 shrink-0",
|
|
@@ -2824,7 +3078,7 @@ function Tr({ ring: e, colors: t }) {
|
|
|
2824
3078
|
}
|
|
2825
3079
|
//#endregion
|
|
2826
3080
|
//#region src/components/custom/status-list.tsx
|
|
2827
|
-
var
|
|
3081
|
+
var Ur = {
|
|
2828
3082
|
neutral: {
|
|
2829
3083
|
text: "text-muted-foreground",
|
|
2830
3084
|
pill: "border-transparent bg-muted text-muted-foreground",
|
|
@@ -2866,16 +3120,16 @@ var Er = {
|
|
|
2866
3120
|
avatar: "bg-red/15 text-red"
|
|
2867
3121
|
}
|
|
2868
3122
|
};
|
|
2869
|
-
function
|
|
3123
|
+
function Wr({ tone: e = "neutral", className: t, children: n }) {
|
|
2870
3124
|
return /* @__PURE__ */ X("span", {
|
|
2871
|
-
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),
|
|
2872
3126
|
children: n
|
|
2873
3127
|
});
|
|
2874
3128
|
}
|
|
2875
|
-
function
|
|
3129
|
+
function Gr({ src: e, name: t, tone: n = "primary", className: r }) {
|
|
2876
3130
|
let i = t.split(/\s+/).slice(0, 2).map((e) => e[0]?.toUpperCase() ?? "").join("");
|
|
2877
3131
|
return /* @__PURE__ */ X("span", {
|
|
2878
|
-
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),
|
|
2879
3133
|
children: e ? /* @__PURE__ */ X("img", {
|
|
2880
3134
|
src: e,
|
|
2881
3135
|
alt: t,
|
|
@@ -2883,14 +3137,14 @@ function Or({ src: e, name: t, tone: n = "primary", className: r }) {
|
|
|
2883
3137
|
}) : i
|
|
2884
3138
|
});
|
|
2885
3139
|
}
|
|
2886
|
-
function
|
|
3140
|
+
function Kr({ className: e, ...t }) {
|
|
2887
3141
|
return /* @__PURE__ */ X("div", {
|
|
2888
3142
|
"data-slot": "status-list",
|
|
2889
3143
|
className: Q("flex flex-col gap-2", e),
|
|
2890
3144
|
...t
|
|
2891
3145
|
});
|
|
2892
3146
|
}
|
|
2893
|
-
function
|
|
3147
|
+
function qr({ label: e, count: t, className: n, children: r, ...i }) {
|
|
2894
3148
|
return /* @__PURE__ */ Z("div", {
|
|
2895
3149
|
"data-slot": "status-list-group",
|
|
2896
3150
|
className: n,
|
|
@@ -2911,8 +3165,8 @@ function Ar({ label: e, count: t, className: n, children: r, ...i }) {
|
|
|
2911
3165
|
})]
|
|
2912
3166
|
});
|
|
2913
3167
|
}
|
|
2914
|
-
function
|
|
2915
|
-
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];
|
|
2916
3170
|
return /* @__PURE__ */ Z("div", {
|
|
2917
3171
|
"data-slot": "status-list-item",
|
|
2918
3172
|
className: Q("flex items-center gap-3 rounded-lg border p-3", s ? Q("border-transparent ring-1", u.activeBg) : "bg-card", c),
|
|
@@ -2937,7 +3191,7 @@ function jr({ media: e, title: t, description: n, status: r, statusVariant: i =
|
|
|
2937
3191
|
}), r != null && (i === "text" ? /* @__PURE__ */ X("span", {
|
|
2938
3192
|
className: Q("text-sm font-medium", u.text),
|
|
2939
3193
|
children: r
|
|
2940
|
-
}) : /* @__PURE__ */ X(
|
|
3194
|
+
}) : /* @__PURE__ */ X(kt, {
|
|
2941
3195
|
variant: "outline",
|
|
2942
3196
|
className: Q("font-medium", i === "outline" ? u.outline : u.pill),
|
|
2943
3197
|
children: r
|
|
@@ -2948,9 +3202,9 @@ function jr({ media: e, title: t, description: n, status: r, statusVariant: i =
|
|
|
2948
3202
|
}
|
|
2949
3203
|
//#endregion
|
|
2950
3204
|
//#region src/components/ui/calendar.tsx
|
|
2951
|
-
function
|
|
2952
|
-
let l =
|
|
2953
|
-
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, {
|
|
2954
3208
|
showOutsideDays: n,
|
|
2955
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),
|
|
2956
3210
|
captionLayout: r,
|
|
@@ -2964,8 +3218,8 @@ function Mr({ className: e, classNames: t, showOutsideDays: n = !0, captionLayou
|
|
|
2964
3218
|
months: Q("relative flex flex-col gap-4 md:flex-row", l.months),
|
|
2965
3219
|
month: Q("flex w-full flex-col gap-4", l.month),
|
|
2966
3220
|
nav: Q("absolute inset-x-0 top-0 flex w-full items-center justify-between gap-1", l.nav),
|
|
2967
|
-
button_previous: Q(
|
|
2968
|
-
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),
|
|
2969
3223
|
month_caption: Q("flex h-(--cell-size) w-full items-center justify-center px-(--cell-size)", l.month_caption),
|
|
2970
3224
|
dropdowns: Q("flex h-(--cell-size) w-full items-center justify-center gap-1.5 text-sm font-medium", l.dropdowns),
|
|
2971
3225
|
dropdown_root: Q("relative rounded-(--cell-radius)", l.dropdown_root),
|
|
@@ -2994,11 +3248,11 @@ function Mr({ className: e, classNames: t, showOutsideDays: n = !0, captionLayou
|
|
|
2994
3248
|
className: Q(e),
|
|
2995
3249
|
...n
|
|
2996
3250
|
}),
|
|
2997
|
-
Chevron: ({ className: e, orientation: t, ...n }) => X(t === "left" ?
|
|
3251
|
+
Chevron: ({ className: e, orientation: t, ...n }) => X(t === "left" ? x : t === "right" ? S : b, {
|
|
2998
3252
|
className: Q("size-4", e),
|
|
2999
3253
|
...n
|
|
3000
3254
|
}),
|
|
3001
|
-
DayButton: ({ ...e }) => /* @__PURE__ */ X(
|
|
3255
|
+
DayButton: ({ ...e }) => /* @__PURE__ */ X(Xr, {
|
|
3002
3256
|
locale: a,
|
|
3003
3257
|
...e
|
|
3004
3258
|
}),
|
|
@@ -3014,8 +3268,8 @@ function Mr({ className: e, classNames: t, showOutsideDays: n = !0, captionLayou
|
|
|
3014
3268
|
...c
|
|
3015
3269
|
});
|
|
3016
3270
|
}
|
|
3017
|
-
function
|
|
3018
|
-
let o =
|
|
3271
|
+
function Xr({ className: e, day: t, modifiers: r, locale: i, ...a }) {
|
|
3272
|
+
let o = Be(), s = n.useRef(null);
|
|
3019
3273
|
return n.useEffect(() => {
|
|
3020
3274
|
r.focused && s.current?.focus();
|
|
3021
3275
|
}, [r.focused]), /* @__PURE__ */ X($, {
|
|
@@ -3033,10 +3287,10 @@ function Nr({ className: e, day: t, modifiers: r, locale: i, ...a }) {
|
|
|
3033
3287
|
}
|
|
3034
3288
|
//#endregion
|
|
3035
3289
|
//#region src/components/custom/date-time-range-picker-utils.ts
|
|
3036
|
-
function
|
|
3290
|
+
function Zr(e) {
|
|
3037
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`;
|
|
3038
3292
|
}
|
|
3039
|
-
function
|
|
3293
|
+
function Qr(e, t) {
|
|
3040
3294
|
if (!e) return null;
|
|
3041
3295
|
let n = new Date(e);
|
|
3042
3296
|
if (isNaN(n.getTime())) return null;
|
|
@@ -3059,7 +3313,7 @@ function Fr(e, t) {
|
|
|
3059
3313
|
s: i("second").padStart(2, "0")
|
|
3060
3314
|
};
|
|
3061
3315
|
}
|
|
3062
|
-
function
|
|
3316
|
+
function $r(e, t, n, r, i, a, o) {
|
|
3063
3317
|
let s = Date.UTC(e, t, n, parseInt(r), parseInt(i), parseInt(a)), c = new Date(s), l = new Intl.DateTimeFormat("en-US", {
|
|
3064
3318
|
year: "numeric",
|
|
3065
3319
|
month: "2-digit",
|
|
@@ -3070,9 +3324,9 @@ function Ir(e, t, n, r, i, a, o) {
|
|
|
3070
3324
|
hour12: !1,
|
|
3071
3325
|
timeZone: o
|
|
3072
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;
|
|
3073
|
-
return
|
|
3327
|
+
return Zr(new Date(s - d));
|
|
3074
3328
|
}
|
|
3075
|
-
var
|
|
3329
|
+
var ei = [
|
|
3076
3330
|
{
|
|
3077
3331
|
value: "hour",
|
|
3078
3332
|
label: "Hour"
|
|
@@ -3090,8 +3344,8 @@ var Lr = [
|
|
|
3090
3344
|
label: "Month"
|
|
3091
3345
|
}
|
|
3092
3346
|
];
|
|
3093
|
-
function
|
|
3094
|
-
let t = /* @__PURE__ */ new Date(), n =
|
|
3347
|
+
function ti(e) {
|
|
3348
|
+
let t = /* @__PURE__ */ new Date(), n = Zr(t), r = new Date(t);
|
|
3095
3349
|
switch (e) {
|
|
3096
3350
|
case "hour":
|
|
3097
3351
|
r.setUTCHours(r.getUTCHours() - 1);
|
|
@@ -3107,20 +3361,20 @@ function Rr(e) {
|
|
|
3107
3361
|
break;
|
|
3108
3362
|
}
|
|
3109
3363
|
return {
|
|
3110
|
-
from:
|
|
3364
|
+
from: Zr(r),
|
|
3111
3365
|
to: n
|
|
3112
3366
|
};
|
|
3113
3367
|
}
|
|
3114
|
-
function
|
|
3368
|
+
function ni(e, t) {
|
|
3115
3369
|
let n = new Date(e.from).getTime(), r = new Date(e.to).getTime(), i = r - n, a = t === "prev" ? -i : i;
|
|
3116
3370
|
return {
|
|
3117
3371
|
preset: e.preset,
|
|
3118
|
-
from:
|
|
3119
|
-
to:
|
|
3372
|
+
from: Zr(new Date(n + a)),
|
|
3373
|
+
to: Zr(new Date(r + a))
|
|
3120
3374
|
};
|
|
3121
3375
|
}
|
|
3122
|
-
function
|
|
3123
|
-
if (e.preset) return
|
|
3376
|
+
function ri(e, t) {
|
|
3377
|
+
if (e.preset) return ei.find((t) => t.value === e.preset)?.label ?? e.preset;
|
|
3124
3378
|
if (e.from && e.to) {
|
|
3125
3379
|
let n = (e) => new Date(e).toLocaleString("en-US", {
|
|
3126
3380
|
year: "numeric",
|
|
@@ -3137,7 +3391,7 @@ function Br(e, t) {
|
|
|
3137
3391
|
}
|
|
3138
3392
|
//#endregion
|
|
3139
3393
|
//#region src/components/custom/date-time-range-picker.tsx
|
|
3140
|
-
function
|
|
3394
|
+
function ii({ value: e, max: t, onChange: r }) {
|
|
3141
3395
|
let [i, a] = n.useState(e);
|
|
3142
3396
|
n.useEffect(() => {
|
|
3143
3397
|
a(e);
|
|
@@ -3162,17 +3416,17 @@ function Vr({ value: e, max: t, onChange: r }) {
|
|
|
3162
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")
|
|
3163
3417
|
});
|
|
3164
3418
|
}
|
|
3165
|
-
function
|
|
3166
|
-
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");
|
|
3167
3421
|
n.useEffect(() => {
|
|
3168
|
-
let t =
|
|
3169
|
-
p(t?.h ?? "00"),
|
|
3422
|
+
let t = Qr(e, u);
|
|
3423
|
+
p(t?.h ?? "00"), h(t?.m ?? "00"), v(t?.s ?? "00");
|
|
3170
3424
|
}, [e, u]);
|
|
3171
|
-
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) => {
|
|
3172
3426
|
e && b(e.getFullYear(), e.getMonth(), e.getDate(), f, m, _);
|
|
3173
3427
|
}, S = (e, t) => {
|
|
3174
3428
|
let n = e === "h" ? t : f, r = e === "m" ? t : m, i = e === "s" ? t : _;
|
|
3175
|
-
e === "h" && p(t), e === "m" &&
|
|
3429
|
+
e === "h" && p(t), e === "m" && h(t), e === "s" && v(t), d && b(d.year, d.month, d.day, n, r, i);
|
|
3176
3430
|
}, C = (e) => {
|
|
3177
3431
|
if (o) {
|
|
3178
3432
|
let t = new Date(o);
|
|
@@ -3198,11 +3452,11 @@ function Hr({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date
|
|
|
3198
3452
|
children: [/* @__PURE__ */ X("label", {
|
|
3199
3453
|
className: "px-0.5 text-xs text-muted-foreground",
|
|
3200
3454
|
children: r
|
|
3201
|
-
}), /* @__PURE__ */ Z(
|
|
3455
|
+
}), /* @__PURE__ */ Z(pn, {
|
|
3202
3456
|
open: c,
|
|
3203
3457
|
onOpenChange: l,
|
|
3204
3458
|
modal: !1,
|
|
3205
|
-
children: [/* @__PURE__ */ X(
|
|
3459
|
+
children: [/* @__PURE__ */ X(mn, {
|
|
3206
3460
|
asChild: !0,
|
|
3207
3461
|
children: /* @__PURE__ */ Z("button", {
|
|
3208
3462
|
type: "button",
|
|
@@ -3210,13 +3464,13 @@ function Hr({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date
|
|
|
3210
3464
|
children: [/* @__PURE__ */ X("span", {
|
|
3211
3465
|
className: "truncate",
|
|
3212
3466
|
children: w
|
|
3213
|
-
}), /* @__PURE__ */ X(
|
|
3467
|
+
}), /* @__PURE__ */ X(g, { className: "size-3.5 shrink-0 opacity-60" })]
|
|
3214
3468
|
})
|
|
3215
|
-
}), /* @__PURE__ */ Z(
|
|
3469
|
+
}), /* @__PURE__ */ Z(hn, {
|
|
3216
3470
|
className: "w-auto p-0",
|
|
3217
3471
|
align: "start",
|
|
3218
3472
|
sideOffset: 4,
|
|
3219
|
-
children: [/* @__PURE__ */ X(
|
|
3473
|
+
children: [/* @__PURE__ */ X(Yr, {
|
|
3220
3474
|
mode: "single",
|
|
3221
3475
|
selected: y,
|
|
3222
3476
|
onSelect: x,
|
|
@@ -3226,8 +3480,8 @@ function Hr({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date
|
|
|
3226
3480
|
}), /* @__PURE__ */ Z("div", {
|
|
3227
3481
|
className: "flex items-center gap-2 border-t px-3 py-2.5",
|
|
3228
3482
|
children: [
|
|
3229
|
-
/* @__PURE__ */ X(
|
|
3230
|
-
/* @__PURE__ */ X(
|
|
3483
|
+
/* @__PURE__ */ X(k, { className: "size-4 shrink-0 text-muted-foreground" }),
|
|
3484
|
+
/* @__PURE__ */ X(ii, {
|
|
3231
3485
|
value: f,
|
|
3232
3486
|
max: 23,
|
|
3233
3487
|
onChange: (e) => S("h", e)
|
|
@@ -3236,7 +3490,7 @@ function Hr({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date
|
|
|
3236
3490
|
className: "text-sm font-medium text-muted-foreground",
|
|
3237
3491
|
children: ":"
|
|
3238
3492
|
}),
|
|
3239
|
-
/* @__PURE__ */ X(
|
|
3493
|
+
/* @__PURE__ */ X(ii, {
|
|
3240
3494
|
value: m,
|
|
3241
3495
|
max: 59,
|
|
3242
3496
|
onChange: (e) => S("m", e)
|
|
@@ -3245,7 +3499,7 @@ function Hr({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date
|
|
|
3245
3499
|
className: "text-sm font-medium text-muted-foreground",
|
|
3246
3500
|
children: ":"
|
|
3247
3501
|
}),
|
|
3248
|
-
/* @__PURE__ */ X(
|
|
3502
|
+
/* @__PURE__ */ X(ii, {
|
|
3249
3503
|
value: _,
|
|
3250
3504
|
max: 59,
|
|
3251
3505
|
onChange: (e) => S("s", e)
|
|
@@ -3256,12 +3510,12 @@ function Hr({ isoValue: e, onChange: t, label: r, placeholder: i = "Select date
|
|
|
3256
3510
|
})]
|
|
3257
3511
|
});
|
|
3258
3512
|
}
|
|
3259
|
-
var
|
|
3260
|
-
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);
|
|
3261
3515
|
n.useEffect(() => {
|
|
3262
3516
|
f(e.from), m(e.to);
|
|
3263
3517
|
}, [e]);
|
|
3264
|
-
let
|
|
3518
|
+
let h = (e) => {
|
|
3265
3519
|
if (f(e), o && e) {
|
|
3266
3520
|
let t = new Date(new Date(e).getTime() + o * 864e5);
|
|
3267
3521
|
new Date(p) > t && m(t.toISOString());
|
|
@@ -3269,28 +3523,28 @@ var Ur = n.forwardRef(function({ value: e, onChange: t, className: r, timezone:
|
|
|
3269
3523
|
}, _ = (e) => {
|
|
3270
3524
|
t({
|
|
3271
3525
|
preset: e,
|
|
3272
|
-
...
|
|
3526
|
+
...ti(e)
|
|
3273
3527
|
}), u(!1);
|
|
3274
3528
|
};
|
|
3275
|
-
return /* @__PURE__ */ Z(
|
|
3529
|
+
return /* @__PURE__ */ Z(pn, {
|
|
3276
3530
|
open: l,
|
|
3277
3531
|
onOpenChange: u,
|
|
3278
|
-
children: [/* @__PURE__ */ X(
|
|
3532
|
+
children: [/* @__PURE__ */ X(mn, {
|
|
3279
3533
|
asChild: !0,
|
|
3280
3534
|
children: /* @__PURE__ */ Z("button", {
|
|
3281
3535
|
ref: s,
|
|
3282
3536
|
type: "button",
|
|
3283
3537
|
className: Q("flex h-9 items-center justify-between gap-1.5 rounded-md border border-input bg-transparent px-3 py-1 text-sm transition-colors outline-none dark:bg-input/30", "hover:bg-accent/50 focus-visible:border-ring focus-visible:ring-3 focus-visible:ring-ring/50", l && "border-ring ring-3 ring-ring/50", r),
|
|
3284
3538
|
children: [
|
|
3285
|
-
/* @__PURE__ */ X(
|
|
3539
|
+
/* @__PURE__ */ X(g, { className: "size-3.5 shrink-0 opacity-60" }),
|
|
3286
3540
|
/* @__PURE__ */ X("span", {
|
|
3287
3541
|
className: "truncate",
|
|
3288
|
-
children:
|
|
3542
|
+
children: ri(e, i)
|
|
3289
3543
|
}),
|
|
3290
|
-
/* @__PURE__ */ X(
|
|
3544
|
+
/* @__PURE__ */ X(y, { className: Q("size-3.5 shrink-0 opacity-60 transition-transform", l && "rotate-180") })
|
|
3291
3545
|
]
|
|
3292
3546
|
})
|
|
3293
|
-
}), /* @__PURE__ */ X(
|
|
3547
|
+
}), /* @__PURE__ */ X(hn, {
|
|
3294
3548
|
align: "end",
|
|
3295
3549
|
sideOffset: 4,
|
|
3296
3550
|
className: "w-auto p-0",
|
|
@@ -3318,15 +3572,15 @@ var Ur = n.forwardRef(function({ value: e, onChange: t, className: r, timezone:
|
|
|
3318
3572
|
className: "px-0.5 text-sm text-muted-foreground",
|
|
3319
3573
|
children: "Custom range"
|
|
3320
3574
|
}),
|
|
3321
|
-
/* @__PURE__ */ X(
|
|
3575
|
+
/* @__PURE__ */ X(ai, {
|
|
3322
3576
|
isoValue: d,
|
|
3323
|
-
onChange:
|
|
3577
|
+
onChange: h,
|
|
3324
3578
|
label: "From",
|
|
3325
3579
|
placeholder: "Start date & time",
|
|
3326
3580
|
timezone: i,
|
|
3327
3581
|
maxDate: (/* @__PURE__ */ new Date()).toISOString()
|
|
3328
3582
|
}),
|
|
3329
|
-
/* @__PURE__ */ X(
|
|
3583
|
+
/* @__PURE__ */ X(ai, {
|
|
3330
3584
|
isoValue: p,
|
|
3331
3585
|
onChange: m,
|
|
3332
3586
|
label: "To",
|
|
@@ -3361,36 +3615,36 @@ var Ur = n.forwardRef(function({ value: e, onChange: t, className: r, timezone:
|
|
|
3361
3615
|
})
|
|
3362
3616
|
})]
|
|
3363
3617
|
});
|
|
3364
|
-
}),
|
|
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", {
|
|
3365
3619
|
variants: { variant: {
|
|
3366
3620
|
default: "bg-card text-card-foreground",
|
|
3367
3621
|
destructive: "bg-card text-destructive *:data-[slot=alert-description]:text-destructive/90 *:[svg]:text-current"
|
|
3368
3622
|
} },
|
|
3369
3623
|
defaultVariants: { variant: "default" }
|
|
3370
3624
|
});
|
|
3371
|
-
function
|
|
3625
|
+
function ci({ className: e, variant: t, ...n }) {
|
|
3372
3626
|
return /* @__PURE__ */ X("div", {
|
|
3373
3627
|
"data-slot": "alert",
|
|
3374
3628
|
role: "alert",
|
|
3375
|
-
className: Q(
|
|
3629
|
+
className: Q(si({ variant: t }), e),
|
|
3376
3630
|
...n
|
|
3377
3631
|
});
|
|
3378
3632
|
}
|
|
3379
|
-
function
|
|
3633
|
+
function li({ className: e, ...t }) {
|
|
3380
3634
|
return /* @__PURE__ */ X("div", {
|
|
3381
3635
|
"data-slot": "alert-title",
|
|
3382
3636
|
className: Q("font-medium group-has-[>svg]/alert:col-start-2 [&_a]:underline [&_a]:underline-offset-3 [&_a]:hover:text-foreground", e),
|
|
3383
3637
|
...t
|
|
3384
3638
|
});
|
|
3385
3639
|
}
|
|
3386
|
-
function
|
|
3640
|
+
function ui({ className: e, ...t }) {
|
|
3387
3641
|
return /* @__PURE__ */ X("div", {
|
|
3388
3642
|
"data-slot": "alert-description",
|
|
3389
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),
|
|
3390
3644
|
...t
|
|
3391
3645
|
});
|
|
3392
3646
|
}
|
|
3393
|
-
function
|
|
3647
|
+
function di({ className: e, ...t }) {
|
|
3394
3648
|
return /* @__PURE__ */ X("div", {
|
|
3395
3649
|
"data-slot": "alert-action",
|
|
3396
3650
|
className: Q("absolute top-2 right-2", e),
|
|
@@ -3399,30 +3653,30 @@ function Jr({ className: e, ...t }) {
|
|
|
3399
3653
|
}
|
|
3400
3654
|
//#endregion
|
|
3401
3655
|
//#region src/components/ui/button-group.tsx
|
|
3402
|
-
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", {
|
|
3403
3657
|
variants: { orientation: {
|
|
3404
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!",
|
|
3405
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!"
|
|
3406
3660
|
} },
|
|
3407
3661
|
defaultVariants: { orientation: "horizontal" }
|
|
3408
3662
|
});
|
|
3409
|
-
function
|
|
3663
|
+
function pi({ className: e, orientation: t, ...n }) {
|
|
3410
3664
|
return /* @__PURE__ */ X("div", {
|
|
3411
3665
|
role: "group",
|
|
3412
3666
|
"data-slot": "button-group",
|
|
3413
3667
|
"data-orientation": t,
|
|
3414
|
-
className: Q(
|
|
3668
|
+
className: Q(fi({ orientation: t }), e),
|
|
3415
3669
|
...n
|
|
3416
3670
|
});
|
|
3417
3671
|
}
|
|
3418
|
-
function
|
|
3419
|
-
return /* @__PURE__ */ X(t ?
|
|
3672
|
+
function mi({ className: e, asChild: t = !1, ...n }) {
|
|
3673
|
+
return /* @__PURE__ */ X(t ? Oe.Root : "div", {
|
|
3420
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),
|
|
3421
3675
|
...n
|
|
3422
3676
|
});
|
|
3423
3677
|
}
|
|
3424
|
-
function
|
|
3425
|
-
return /* @__PURE__ */ X(
|
|
3678
|
+
function hi({ className: e, orientation: t = "vertical", ...n }) {
|
|
3679
|
+
return /* @__PURE__ */ X(mt, {
|
|
3426
3680
|
"data-slot": "button-group-separator",
|
|
3427
3681
|
orientation: t,
|
|
3428
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),
|
|
@@ -3431,40 +3685,40 @@ function Qr({ className: e, orientation: t = "vertical", ...n }) {
|
|
|
3431
3685
|
}
|
|
3432
3686
|
//#endregion
|
|
3433
3687
|
//#region src/components/ui/chart.tsx
|
|
3434
|
-
var
|
|
3688
|
+
var gi = {
|
|
3435
3689
|
light: "",
|
|
3436
3690
|
dark: ".dark"
|
|
3437
|
-
},
|
|
3691
|
+
}, _i = {
|
|
3438
3692
|
width: 320,
|
|
3439
3693
|
height: 200
|
|
3440
|
-
},
|
|
3441
|
-
function
|
|
3442
|
-
let e = n.useContext(
|
|
3694
|
+
}, vi = n.createContext(null);
|
|
3695
|
+
function yi() {
|
|
3696
|
+
let e = n.useContext(vi);
|
|
3443
3697
|
if (!e) throw Error("useChart must be used within a <ChartContainer />");
|
|
3444
3698
|
return e;
|
|
3445
3699
|
}
|
|
3446
|
-
function
|
|
3700
|
+
function bi({ id: e, className: t, children: r, config: i, initialDimension: a = _i, ...o }) {
|
|
3447
3701
|
let s = n.useId(), c = `chart-${e ?? s.replace(/:/g, "")}`;
|
|
3448
|
-
return /* @__PURE__ */ X(
|
|
3702
|
+
return /* @__PURE__ */ X(vi.Provider, {
|
|
3449
3703
|
value: { config: i },
|
|
3450
3704
|
children: /* @__PURE__ */ Z("div", {
|
|
3451
3705
|
"data-slot": "chart",
|
|
3452
3706
|
"data-chart": c,
|
|
3453
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),
|
|
3454
3708
|
...o,
|
|
3455
|
-
children: [/* @__PURE__ */ X(
|
|
3709
|
+
children: [/* @__PURE__ */ X(xi, {
|
|
3456
3710
|
id: c,
|
|
3457
3711
|
config: i
|
|
3458
|
-
}), /* @__PURE__ */ X(
|
|
3712
|
+
}), /* @__PURE__ */ X(Fe.ResponsiveContainer, {
|
|
3459
3713
|
initialDimension: a,
|
|
3460
3714
|
children: r
|
|
3461
3715
|
})]
|
|
3462
3716
|
})
|
|
3463
3717
|
});
|
|
3464
3718
|
}
|
|
3465
|
-
var
|
|
3719
|
+
var xi = ({ id: e, config: t }) => {
|
|
3466
3720
|
let n = Object.entries(t).filter(([, e]) => e.theme ?? e.color);
|
|
3467
|
-
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]) => `
|
|
3468
3722
|
${r} [data-chart=${e}] {
|
|
3469
3723
|
${n.map(([e, n]) => {
|
|
3470
3724
|
let r = n.theme?.[t] ?? n.color;
|
|
@@ -3472,11 +3726,11 @@ ${n.map(([e, n]) => {
|
|
|
3472
3726
|
}).join("\n")}
|
|
3473
3727
|
}
|
|
3474
3728
|
`).join("\n") } }) : null;
|
|
3475
|
-
},
|
|
3476
|
-
function
|
|
3477
|
-
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(() => {
|
|
3478
3732
|
if (a || !t?.length) return null;
|
|
3479
|
-
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;
|
|
3480
3734
|
return c ? /* @__PURE__ */ X("div", {
|
|
3481
3735
|
className: Q("font-medium", l),
|
|
3482
3736
|
children: c(r, t)
|
|
@@ -3500,7 +3754,7 @@ function oi({ active: e, payload: t, className: r, indicator: i = "dot", hideLab
|
|
|
3500
3754
|
children: [g ? null : h, /* @__PURE__ */ X("div", {
|
|
3501
3755
|
className: "grid gap-1.5",
|
|
3502
3756
|
children: t.filter((e) => e.type !== "none").map((e, t) => {
|
|
3503
|
-
let n =
|
|
3757
|
+
let n = Ei(m, e, `${f ?? e.name ?? e.dataKey ?? "value"}`), r = d ?? e.payload?.fill ?? e.color;
|
|
3504
3758
|
return /* @__PURE__ */ X("div", {
|
|
3505
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"),
|
|
3506
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", {
|
|
@@ -3532,13 +3786,13 @@ function oi({ active: e, payload: t, className: r, indicator: i = "dot", hideLab
|
|
|
3532
3786
|
})]
|
|
3533
3787
|
});
|
|
3534
3788
|
}
|
|
3535
|
-
var
|
|
3536
|
-
function
|
|
3537
|
-
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();
|
|
3538
3792
|
return n?.length ? /* @__PURE__ */ X("div", {
|
|
3539
3793
|
className: Q("flex items-center justify-center gap-4", r === "top" ? "pb-3" : "pt-3", e),
|
|
3540
3794
|
children: n.filter((e) => e.type !== "none").map((e, n) => {
|
|
3541
|
-
let r =
|
|
3795
|
+
let r = Ei(a, e, `${i ?? e.dataKey ?? "value"}`);
|
|
3542
3796
|
return /* @__PURE__ */ Z("div", {
|
|
3543
3797
|
className: Q("flex items-center gap-1.5 [&>svg]:h-3 [&>svg]:w-3 [&>svg]:text-muted-foreground"),
|
|
3544
3798
|
children: [r?.icon && !t ? /* @__PURE__ */ X(r.icon, {}) : /* @__PURE__ */ X("div", {
|
|
@@ -3549,29 +3803,29 @@ function ci({ className: e, hideIcon: t = !1, payload: n, verticalAlign: r = "bo
|
|
|
3549
3803
|
})
|
|
3550
3804
|
}) : null;
|
|
3551
3805
|
}
|
|
3552
|
-
function
|
|
3806
|
+
function Ei(e, t, n) {
|
|
3553
3807
|
if (typeof t != "object" || !t) return;
|
|
3554
3808
|
let r = "payload" in t && typeof t.payload == "object" && t.payload !== null ? t.payload : void 0, i = n;
|
|
3555
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];
|
|
3556
3810
|
}
|
|
3557
3811
|
//#endregion
|
|
3558
3812
|
//#region src/components/ui/hover-card.tsx
|
|
3559
|
-
function
|
|
3560
|
-
return /* @__PURE__ */ X(
|
|
3813
|
+
function Di({ ...e }) {
|
|
3814
|
+
return /* @__PURE__ */ X(xe.Root, {
|
|
3561
3815
|
"data-slot": "hover-card",
|
|
3562
3816
|
...e
|
|
3563
3817
|
});
|
|
3564
3818
|
}
|
|
3565
|
-
function
|
|
3566
|
-
return /* @__PURE__ */ X(
|
|
3819
|
+
function Oi({ ...e }) {
|
|
3820
|
+
return /* @__PURE__ */ X(xe.Trigger, {
|
|
3567
3821
|
"data-slot": "hover-card-trigger",
|
|
3568
3822
|
...e
|
|
3569
3823
|
});
|
|
3570
3824
|
}
|
|
3571
|
-
function
|
|
3572
|
-
return /* @__PURE__ */ X(
|
|
3825
|
+
function ki({ className: e, align: t = "center", sideOffset: n = 4, ...r }) {
|
|
3826
|
+
return /* @__PURE__ */ X(xe.Portal, {
|
|
3573
3827
|
"data-slot": "hover-card-portal",
|
|
3574
|
-
children: /* @__PURE__ */ X(
|
|
3828
|
+
children: /* @__PURE__ */ X(xe.Content, {
|
|
3575
3829
|
"data-slot": "hover-card-content",
|
|
3576
3830
|
align: t,
|
|
3577
3831
|
sideOffset: n,
|
|
@@ -3582,7 +3836,7 @@ function fi({ className: e, align: t = "center", sideOffset: n = 4, ...r }) {
|
|
|
3582
3836
|
}
|
|
3583
3837
|
//#endregion
|
|
3584
3838
|
//#region src/components/ui/item.tsx
|
|
3585
|
-
function
|
|
3839
|
+
function Ai({ className: e, ...t }) {
|
|
3586
3840
|
return /* @__PURE__ */ X("div", {
|
|
3587
3841
|
role: "list",
|
|
3588
3842
|
"data-slot": "item-group",
|
|
@@ -3590,15 +3844,15 @@ function pi({ className: e, ...t }) {
|
|
|
3590
3844
|
...t
|
|
3591
3845
|
});
|
|
3592
3846
|
}
|
|
3593
|
-
function
|
|
3594
|
-
return /* @__PURE__ */ X(
|
|
3847
|
+
function ji({ className: e, ...t }) {
|
|
3848
|
+
return /* @__PURE__ */ X(mt, {
|
|
3595
3849
|
"data-slot": "item-separator",
|
|
3596
3850
|
orientation: "horizontal",
|
|
3597
3851
|
className: Q("my-2", e),
|
|
3598
3852
|
...t
|
|
3599
3853
|
});
|
|
3600
3854
|
}
|
|
3601
|
-
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", {
|
|
3602
3856
|
variants: {
|
|
3603
3857
|
variant: {
|
|
3604
3858
|
default: "border-transparent",
|
|
@@ -3616,12 +3870,12 @@ var hi = U("group/item flex w-full flex-wrap items-center rounded-lg border text
|
|
|
3616
3870
|
size: "default"
|
|
3617
3871
|
}
|
|
3618
3872
|
});
|
|
3619
|
-
function
|
|
3620
|
-
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", {
|
|
3621
3875
|
"data-slot": "item",
|
|
3622
3876
|
"data-variant": t,
|
|
3623
3877
|
"data-size": n,
|
|
3624
|
-
className: Q(
|
|
3878
|
+
className: Q(Mi({
|
|
3625
3879
|
variant: t,
|
|
3626
3880
|
size: n,
|
|
3627
3881
|
className: e
|
|
@@ -3629,7 +3883,7 @@ function gi({ className: e, variant: t = "default", size: n = "default", asChild
|
|
|
3629
3883
|
...i
|
|
3630
3884
|
});
|
|
3631
3885
|
}
|
|
3632
|
-
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", {
|
|
3633
3887
|
variants: { variant: {
|
|
3634
3888
|
default: "bg-transparent",
|
|
3635
3889
|
icon: "[&_svg:not([class*='size-'])]:size-4",
|
|
@@ -3637,53 +3891,53 @@ var _i = U("flex shrink-0 items-center justify-center gap-2 group-has-data-[slot
|
|
|
3637
3891
|
} },
|
|
3638
3892
|
defaultVariants: { variant: "default" }
|
|
3639
3893
|
});
|
|
3640
|
-
function
|
|
3894
|
+
function Fi({ className: e, variant: t = "default", ...n }) {
|
|
3641
3895
|
return /* @__PURE__ */ X("div", {
|
|
3642
3896
|
"data-slot": "item-media",
|
|
3643
3897
|
"data-variant": t,
|
|
3644
|
-
className: Q(
|
|
3898
|
+
className: Q(Pi({
|
|
3645
3899
|
variant: t,
|
|
3646
3900
|
className: e
|
|
3647
3901
|
})),
|
|
3648
3902
|
...n
|
|
3649
3903
|
});
|
|
3650
3904
|
}
|
|
3651
|
-
function
|
|
3905
|
+
function Ii({ className: e, ...t }) {
|
|
3652
3906
|
return /* @__PURE__ */ X("div", {
|
|
3653
3907
|
"data-slot": "item-content",
|
|
3654
3908
|
className: Q("flex flex-1 flex-col gap-1 group-data-[size=xs]/item:gap-0 [&+[data-slot=item-content]]:flex-none", e),
|
|
3655
3909
|
...t
|
|
3656
3910
|
});
|
|
3657
3911
|
}
|
|
3658
|
-
function
|
|
3912
|
+
function Li({ className: e, ...t }) {
|
|
3659
3913
|
return /* @__PURE__ */ X("div", {
|
|
3660
3914
|
"data-slot": "item-title",
|
|
3661
3915
|
className: Q("line-clamp-1 flex w-fit items-center gap-2 text-sm leading-snug font-medium underline-offset-4", e),
|
|
3662
3916
|
...t
|
|
3663
3917
|
});
|
|
3664
3918
|
}
|
|
3665
|
-
function
|
|
3919
|
+
function Ri({ className: e, ...t }) {
|
|
3666
3920
|
return /* @__PURE__ */ X("p", {
|
|
3667
3921
|
"data-slot": "item-description",
|
|
3668
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),
|
|
3669
3923
|
...t
|
|
3670
3924
|
});
|
|
3671
3925
|
}
|
|
3672
|
-
function
|
|
3926
|
+
function zi({ className: e, ...t }) {
|
|
3673
3927
|
return /* @__PURE__ */ X("div", {
|
|
3674
3928
|
"data-slot": "item-actions",
|
|
3675
3929
|
className: Q("flex items-center gap-2", e),
|
|
3676
3930
|
...t
|
|
3677
3931
|
});
|
|
3678
3932
|
}
|
|
3679
|
-
function
|
|
3933
|
+
function Bi({ className: e, ...t }) {
|
|
3680
3934
|
return /* @__PURE__ */ X("div", {
|
|
3681
3935
|
"data-slot": "item-header",
|
|
3682
3936
|
className: Q("flex basis-full items-center justify-between gap-2", e),
|
|
3683
3937
|
...t
|
|
3684
3938
|
});
|
|
3685
3939
|
}
|
|
3686
|
-
function
|
|
3940
|
+
function Vi({ className: e, ...t }) {
|
|
3687
3941
|
return /* @__PURE__ */ X("div", {
|
|
3688
3942
|
"data-slot": "item-footer",
|
|
3689
3943
|
className: Q("flex basis-full items-center justify-between gap-2", e),
|
|
@@ -3692,10 +3946,10 @@ function wi({ className: e, ...t }) {
|
|
|
3692
3946
|
}
|
|
3693
3947
|
//#endregion
|
|
3694
3948
|
//#region src/components/ui/map.tsx
|
|
3695
|
-
var
|
|
3949
|
+
var Hi = {
|
|
3696
3950
|
dark: "https://basemaps.cartocdn.com/gl/dark-matter-gl-style/style.json",
|
|
3697
3951
|
light: "https://basemaps.cartocdn.com/gl/positron-gl-style/style.json"
|
|
3698
|
-
},
|
|
3952
|
+
}, Ui = [
|
|
3699
3953
|
{
|
|
3700
3954
|
label: "Light",
|
|
3701
3955
|
url: "https://basemaps.cartocdn.com/gl/positron-gl-style/style.json"
|
|
@@ -3708,13 +3962,13 @@ var Ti = {
|
|
|
3708
3962
|
label: "Dark",
|
|
3709
3963
|
url: "https://basemaps.cartocdn.com/gl/dark-matter-gl-style/style.json"
|
|
3710
3964
|
}
|
|
3711
|
-
],
|
|
3712
|
-
function
|
|
3713
|
-
let e = o(
|
|
3965
|
+
], Wi = r(null);
|
|
3966
|
+
function Gi() {
|
|
3967
|
+
let e = o(Wi);
|
|
3714
3968
|
if (!e) throw Error("useMap must be used within a Map component");
|
|
3715
3969
|
return e;
|
|
3716
3970
|
}
|
|
3717
|
-
function
|
|
3971
|
+
function Ki() {
|
|
3718
3972
|
return /* @__PURE__ */ X("div", {
|
|
3719
3973
|
className: "bg-background/50 absolute inset-0 z-10 flex items-center justify-center backdrop-blur-xs",
|
|
3720
3974
|
children: /* @__PURE__ */ Z("div", {
|
|
@@ -3727,7 +3981,7 @@ function ki() {
|
|
|
3727
3981
|
})
|
|
3728
3982
|
});
|
|
3729
3983
|
}
|
|
3730
|
-
function
|
|
3984
|
+
function qi(e) {
|
|
3731
3985
|
let t = e.getCenter();
|
|
3732
3986
|
return {
|
|
3733
3987
|
center: [t.lng, t.lat],
|
|
@@ -3736,22 +3990,22 @@ function Ai(e) {
|
|
|
3736
3990
|
pitch: e.getPitch()
|
|
3737
3991
|
};
|
|
3738
3992
|
}
|
|
3739
|
-
var
|
|
3740
|
-
let v = h === !1 ? [] : h, y = d(null), [b, x] = f(null), [S, C] = f(!1), [w, T] = f(!1), [E, D] = f(0),
|
|
3741
|
-
|
|
3742
|
-
let
|
|
3743
|
-
dark: r?.dark ??
|
|
3744
|
-
light: r?.light ??
|
|
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);
|
|
3995
|
+
j.current = c;
|
|
3996
|
+
let M = u(() => ({
|
|
3997
|
+
dark: r?.dark ?? Hi.dark,
|
|
3998
|
+
light: r?.light ?? Hi.light
|
|
3745
3999
|
}), [r]);
|
|
3746
4000
|
l(_, () => b, [b]);
|
|
3747
|
-
let
|
|
3748
|
-
|
|
4001
|
+
let N = a(() => {
|
|
4002
|
+
k.current &&= (clearTimeout(k.current), null);
|
|
3749
4003
|
}, []);
|
|
3750
4004
|
s(() => {
|
|
3751
4005
|
if (!y.current) return;
|
|
3752
|
-
let e = v[0]?.url ??
|
|
3753
|
-
|
|
3754
|
-
let t = new
|
|
4006
|
+
let e = v[0]?.url ?? M.light;
|
|
4007
|
+
O.current = e;
|
|
4008
|
+
let t = new Ve.Map({
|
|
3755
4009
|
container: y.current,
|
|
3756
4010
|
style: e,
|
|
3757
4011
|
renderWorldCopies: !1,
|
|
@@ -3759,40 +4013,40 @@ var ji = i(function({ children: e, className: t, theme: n, styles: r, projection
|
|
|
3759
4013
|
...g,
|
|
3760
4014
|
...o
|
|
3761
4015
|
}), n = () => {
|
|
3762
|
-
|
|
4016
|
+
N(), k.current = setTimeout(() => {
|
|
3763
4017
|
T(!0), i && t.setProjection(i);
|
|
3764
4018
|
}, 100);
|
|
3765
4019
|
}, r = () => C(!0), a = () => {
|
|
3766
|
-
|
|
4020
|
+
A.current || j.current?.(qi(t));
|
|
3767
4021
|
};
|
|
3768
4022
|
return t.on("load", r), t.on("styledata", n), t.on("move", a), x(t), () => {
|
|
3769
|
-
|
|
4023
|
+
N(), t.off("load", r), t.off("styledata", n), t.off("move", a), t.remove(), C(!1), T(!1), x(null);
|
|
3770
4024
|
};
|
|
3771
4025
|
}, []), s(() => {
|
|
3772
|
-
if (!b || !
|
|
3773
|
-
let e =
|
|
4026
|
+
if (!b || !ee || !o || b.isMoving()) return;
|
|
4027
|
+
let e = qi(b), t = {
|
|
3774
4028
|
center: o.center ?? e.center,
|
|
3775
4029
|
zoom: o.zoom ?? e.zoom,
|
|
3776
4030
|
bearing: o.bearing ?? e.bearing,
|
|
3777
4031
|
pitch: o.pitch ?? e.pitch
|
|
3778
4032
|
};
|
|
3779
|
-
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);
|
|
3780
4034
|
}, [
|
|
3781
4035
|
b,
|
|
3782
|
-
|
|
4036
|
+
ee,
|
|
3783
4037
|
o
|
|
3784
4038
|
]), s(() => {
|
|
3785
4039
|
if (!b) return;
|
|
3786
|
-
let e = v[E]?.url ?? (n === "dark" ?
|
|
3787
|
-
|
|
4040
|
+
let e = v[E]?.url ?? (n === "dark" ? M.dark : M.light);
|
|
4041
|
+
O.current !== e && (N(), O.current = e, T(!1), b.setStyle(e, { diff: !0 }));
|
|
3788
4042
|
}, [
|
|
3789
4043
|
b,
|
|
3790
4044
|
E,
|
|
3791
4045
|
n,
|
|
3792
|
-
|
|
3793
|
-
|
|
4046
|
+
M,
|
|
4047
|
+
N
|
|
3794
4048
|
]);
|
|
3795
|
-
let
|
|
4049
|
+
let P = u(() => ({
|
|
3796
4050
|
map: b,
|
|
3797
4051
|
isLoaded: S && w
|
|
3798
4052
|
}), [
|
|
@@ -3800,12 +4054,12 @@ var ji = i(function({ children: e, className: t, theme: n, styles: r, projection
|
|
|
3800
4054
|
S,
|
|
3801
4055
|
w
|
|
3802
4056
|
]);
|
|
3803
|
-
return /* @__PURE__ */ X(
|
|
3804
|
-
value:
|
|
4057
|
+
return /* @__PURE__ */ X(Wi.Provider, {
|
|
4058
|
+
value: P,
|
|
3805
4059
|
children: /* @__PURE__ */ Z("div", {
|
|
3806
4060
|
ref: y,
|
|
3807
4061
|
className: Q("relative h-full w-full", t),
|
|
3808
|
-
children: [(!S || p) && /* @__PURE__ */ X(
|
|
4062
|
+
children: [(!S || p) && /* @__PURE__ */ X(Ki, {}), b && /* @__PURE__ */ Z(Y, { children: [m && /* @__PURE__ */ X(ca, {
|
|
3809
4063
|
position: "top-right",
|
|
3810
4064
|
tiles: v,
|
|
3811
4065
|
tileIndex: E,
|
|
@@ -3813,14 +4067,14 @@ var ji = i(function({ children: e, className: t, theme: n, styles: r, projection
|
|
|
3813
4067
|
}), e] })]
|
|
3814
4068
|
})
|
|
3815
4069
|
});
|
|
3816
|
-
}),
|
|
3817
|
-
function
|
|
3818
|
-
let e = o(
|
|
4070
|
+
}), Yi = r(null);
|
|
4071
|
+
function Xi() {
|
|
4072
|
+
let e = o(Yi);
|
|
3819
4073
|
if (!e) throw Error("Marker components must be used within MapMarker");
|
|
3820
4074
|
return e;
|
|
3821
4075
|
}
|
|
3822
|
-
function
|
|
3823
|
-
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({
|
|
3824
4078
|
onClick: r,
|
|
3825
4079
|
onMouseEnter: i,
|
|
3826
4080
|
onMouseLeave: a,
|
|
@@ -3837,7 +4091,7 @@ function Pi({ longitude: e, latitude: t, children: n, onClick: r, onMouseEnter:
|
|
|
3837
4091
|
onDragEnd: l
|
|
3838
4092
|
};
|
|
3839
4093
|
let g = u(() => {
|
|
3840
|
-
let n = new
|
|
4094
|
+
let n = new Ve.Marker({
|
|
3841
4095
|
...p,
|
|
3842
4096
|
element: document.createElement("div"),
|
|
3843
4097
|
draggable: f
|
|
@@ -3868,7 +4122,7 @@ function Pi({ longitude: e, latitude: t, children: n, onClick: r, onMouseEnter:
|
|
|
3868
4122
|
};
|
|
3869
4123
|
}, [m]), (g.getLngLat().lng !== e || g.getLngLat().lat !== t) && g.setLngLat([e, t]), g.isDraggable() !== f && g.setDraggable(f);
|
|
3870
4124
|
let _ = g.getOffset(), v = p.offset ?? [0, 0], [y, b] = Array.isArray(v) ? v : [v.x, v.y];
|
|
3871
|
-
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, {
|
|
3872
4126
|
value: {
|
|
3873
4127
|
marker: g,
|
|
3874
4128
|
map: m
|
|
@@ -3876,27 +4130,27 @@ function Pi({ longitude: e, latitude: t, children: n, onClick: r, onMouseEnter:
|
|
|
3876
4130
|
children: n
|
|
3877
4131
|
});
|
|
3878
4132
|
}
|
|
3879
|
-
function
|
|
3880
|
-
let { marker: n } =
|
|
3881
|
-
return
|
|
4133
|
+
function Qi({ children: e, className: t }) {
|
|
4134
|
+
let { marker: n } = Xi();
|
|
4135
|
+
return He(/* @__PURE__ */ X("div", {
|
|
3882
4136
|
className: Q("relative cursor-pointer", t),
|
|
3883
|
-
children: e || /* @__PURE__ */ X(
|
|
4137
|
+
children: e || /* @__PURE__ */ X($i, {})
|
|
3884
4138
|
}), n.getElement());
|
|
3885
4139
|
}
|
|
3886
|
-
function
|
|
4140
|
+
function $i() {
|
|
3887
4141
|
return /* @__PURE__ */ X("div", { className: "relative h-4 w-4 rounded-full border-2 border-white bg-blue-500 shadow-lg" });
|
|
3888
4142
|
}
|
|
3889
|
-
function
|
|
4143
|
+
function ea({ onClick: e }) {
|
|
3890
4144
|
return /* @__PURE__ */ X("button", {
|
|
3891
4145
|
type: "button",
|
|
3892
4146
|
onClick: e,
|
|
3893
4147
|
"aria-label": "Close popup",
|
|
3894
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",
|
|
3895
|
-
children: /* @__PURE__ */ X(
|
|
4149
|
+
children: /* @__PURE__ */ X(ye, { className: "size-3.5" })
|
|
3896
4150
|
});
|
|
3897
4151
|
}
|
|
3898
|
-
function
|
|
3899
|
-
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({
|
|
3900
4154
|
offset: 16,
|
|
3901
4155
|
...r,
|
|
3902
4156
|
closeButton: !1
|
|
@@ -3909,13 +4163,13 @@ function Ri({ children: e, className: t, closeButton: n = !1, ...r }) {
|
|
|
3909
4163
|
let e = c.current;
|
|
3910
4164
|
e.offset !== r.offset && l.setOffset(r.offset ?? 16), e.maxWidth !== r.maxWidth && r.maxWidth && l.setMaxWidth(r.maxWidth ?? "none"), c.current = r;
|
|
3911
4165
|
}
|
|
3912
|
-
return
|
|
4166
|
+
return He(/* @__PURE__ */ Z("div", {
|
|
3913
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),
|
|
3914
|
-
children: [n && /* @__PURE__ */ X(
|
|
4168
|
+
children: [n && /* @__PURE__ */ X(ea, { onClick: () => l.remove() }), e]
|
|
3915
4169
|
}), o);
|
|
3916
4170
|
}
|
|
3917
|
-
function
|
|
3918
|
-
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({
|
|
3919
4173
|
offset: 16,
|
|
3920
4174
|
...n,
|
|
3921
4175
|
closeOnClick: !0,
|
|
@@ -3934,12 +4188,12 @@ function zi({ children: e, className: t, ...n }) {
|
|
|
3934
4188
|
let e = o.current;
|
|
3935
4189
|
e.offset !== n.offset && c.setOffset(n.offset ?? 16), e.maxWidth !== n.maxWidth && n.maxWidth && c.setMaxWidth(n.maxWidth ?? "none"), o.current = n;
|
|
3936
4190
|
}
|
|
3937
|
-
return
|
|
4191
|
+
return He(/* @__PURE__ */ X("div", {
|
|
3938
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),
|
|
3939
4193
|
children: e
|
|
3940
4194
|
}), a);
|
|
3941
4195
|
}
|
|
3942
|
-
function
|
|
4196
|
+
function ra({ children: e, className: t, position: n = "top" }) {
|
|
3943
4197
|
return /* @__PURE__ */ X("div", {
|
|
3944
4198
|
className: Q("absolute left-1/2 -translate-x-1/2 whitespace-nowrap", "text-foreground text-[10px] font-medium", {
|
|
3945
4199
|
top: "bottom-full mb-1",
|
|
@@ -3948,19 +4202,19 @@ function Bi({ children: e, className: t, position: n = "top" }) {
|
|
|
3948
4202
|
children: e
|
|
3949
4203
|
});
|
|
3950
4204
|
}
|
|
3951
|
-
var
|
|
4205
|
+
var ia = {
|
|
3952
4206
|
"top-left": "top-2 left-2",
|
|
3953
4207
|
"top-right": "top-2 right-2",
|
|
3954
4208
|
"bottom-left": "bottom-2 left-2",
|
|
3955
4209
|
"bottom-right": "bottom-10 right-2"
|
|
3956
4210
|
};
|
|
3957
|
-
function
|
|
4211
|
+
function aa({ children: e }) {
|
|
3958
4212
|
return /* @__PURE__ */ X("div", {
|
|
3959
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",
|
|
3960
4214
|
children: e
|
|
3961
4215
|
});
|
|
3962
4216
|
}
|
|
3963
|
-
function
|
|
4217
|
+
function oa({ onClick: e, label: t, children: n, disabled: r = !1 }) {
|
|
3964
4218
|
return /* @__PURE__ */ X("button", {
|
|
3965
4219
|
onClick: e,
|
|
3966
4220
|
"aria-label": t,
|
|
@@ -3970,7 +4224,7 @@ function Ui({ onClick: e, label: t, children: n, disabled: r = !1 }) {
|
|
|
3970
4224
|
children: n
|
|
3971
4225
|
});
|
|
3972
4226
|
}
|
|
3973
|
-
function
|
|
4227
|
+
function sa({ tiles: e, tileIndex: t, onTileChange: n, openLeft: r }) {
|
|
3974
4228
|
let [i, a] = f(!1), o = d(null);
|
|
3975
4229
|
return s(() => {
|
|
3976
4230
|
if (!i) return;
|
|
@@ -3985,10 +4239,10 @@ function Wi({ tiles: e, tileIndex: t, onTileChange: n, openLeft: r }) {
|
|
|
3985
4239
|
}, [i]), /* @__PURE__ */ Z("div", {
|
|
3986
4240
|
ref: o,
|
|
3987
4241
|
className: "relative",
|
|
3988
|
-
children: [/* @__PURE__ */ X(
|
|
4242
|
+
children: [/* @__PURE__ */ X(aa, { children: /* @__PURE__ */ X(oa, {
|
|
3989
4243
|
onClick: () => a((e) => !e),
|
|
3990
4244
|
label: `Basemap: ${e[t]?.label ?? ""}`,
|
|
3991
|
-
children: /* @__PURE__ */ X(
|
|
4245
|
+
children: /* @__PURE__ */ X(z, { className: "size-4" })
|
|
3992
4246
|
}) }), i && /* @__PURE__ */ X("div", {
|
|
3993
4247
|
role: "listbox",
|
|
3994
4248
|
"aria-label": "Basemap",
|
|
@@ -4001,13 +4255,13 @@ function Wi({ tiles: e, tileIndex: t, onTileChange: n, openLeft: r }) {
|
|
|
4001
4255
|
n?.(r), a(!1);
|
|
4002
4256
|
},
|
|
4003
4257
|
className: Q("flex w-full items-center justify-between gap-3 rounded-sm px-2 py-1.5 text-left text-xs font-medium transition-colors", r === t ? "bg-accent text-accent-foreground" : "hover:bg-accent/50"),
|
|
4004
|
-
children: [e.label, r === t && /* @__PURE__ */ X(
|
|
4258
|
+
children: [e.label, r === t && /* @__PURE__ */ X(_, { className: "size-3.5 shrink-0" })]
|
|
4005
4259
|
}, e.label))
|
|
4006
4260
|
})]
|
|
4007
4261
|
});
|
|
4008
4262
|
}
|
|
4009
|
-
function
|
|
4010
|
-
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(() => {
|
|
4011
4265
|
d?.zoomTo(d.getZoom() + 1, { duration: 300 });
|
|
4012
4266
|
}, [d]), g = a(() => {
|
|
4013
4267
|
d?.zoomTo(d.getZoom() - 1, { duration: 300 });
|
|
@@ -4032,40 +4286,40 @@ function Gi({ position: e = "bottom-right", showZoom: t = !0, showCompass: n = !
|
|
|
4032
4286
|
e && (document.fullscreenElement ? document.exitFullscreen() : e.requestFullscreen());
|
|
4033
4287
|
}, [d]);
|
|
4034
4288
|
return /* @__PURE__ */ Z("div", {
|
|
4035
|
-
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),
|
|
4036
4290
|
children: [
|
|
4037
|
-
t && /* @__PURE__ */ Z(
|
|
4291
|
+
t && /* @__PURE__ */ Z(aa, { children: [/* @__PURE__ */ X(oa, {
|
|
4038
4292
|
onClick: h,
|
|
4039
4293
|
label: "Zoom in",
|
|
4040
|
-
children: /* @__PURE__ */ X(
|
|
4041
|
-
}), /* @__PURE__ */ X(
|
|
4294
|
+
children: /* @__PURE__ */ X(ce, { className: "size-4" })
|
|
4295
|
+
}), /* @__PURE__ */ X(oa, {
|
|
4042
4296
|
onClick: g,
|
|
4043
4297
|
label: "Zoom out",
|
|
4044
|
-
children: /* @__PURE__ */ X(
|
|
4298
|
+
children: /* @__PURE__ */ X(oe, { className: "size-4" })
|
|
4045
4299
|
})] }),
|
|
4046
|
-
c.length > 1 && /* @__PURE__ */ X(
|
|
4300
|
+
c.length > 1 && /* @__PURE__ */ X(sa, {
|
|
4047
4301
|
tiles: c,
|
|
4048
4302
|
tileIndex: l,
|
|
4049
4303
|
onTileChange: u,
|
|
4050
4304
|
openLeft: e.endsWith("right")
|
|
4051
4305
|
}),
|
|
4052
|
-
n && /* @__PURE__ */ X(
|
|
4053
|
-
r && /* @__PURE__ */ X(
|
|
4306
|
+
n && /* @__PURE__ */ X(aa, { children: /* @__PURE__ */ X(la, { onClick: _ }) }),
|
|
4307
|
+
r && /* @__PURE__ */ X(aa, { children: /* @__PURE__ */ X(oa, {
|
|
4054
4308
|
onClick: v,
|
|
4055
4309
|
label: "Find my location",
|
|
4056
4310
|
disabled: p,
|
|
4057
|
-
children: p ? /* @__PURE__ */ X(
|
|
4311
|
+
children: p ? /* @__PURE__ */ X(re, { className: "size-4 animate-spin" }) : /* @__PURE__ */ X(ae, { className: "size-4" })
|
|
4058
4312
|
}) }),
|
|
4059
|
-
i && /* @__PURE__ */ X(
|
|
4313
|
+
i && /* @__PURE__ */ X(aa, { children: /* @__PURE__ */ X(oa, {
|
|
4060
4314
|
onClick: y,
|
|
4061
4315
|
label: "Toggle fullscreen",
|
|
4062
|
-
children: /* @__PURE__ */ X(
|
|
4316
|
+
children: /* @__PURE__ */ X(V, { className: "size-4" })
|
|
4063
4317
|
}) })
|
|
4064
4318
|
]
|
|
4065
4319
|
});
|
|
4066
4320
|
}
|
|
4067
|
-
function
|
|
4068
|
-
let { map: t } =
|
|
4321
|
+
function la({ onClick: e }) {
|
|
4322
|
+
let { map: t } = Gi(), n = d(null);
|
|
4069
4323
|
return s(() => {
|
|
4070
4324
|
if (!t || !n.current) return;
|
|
4071
4325
|
let e = n.current, r = () => {
|
|
@@ -4075,7 +4329,7 @@ function Ki({ onClick: e }) {
|
|
|
4075
4329
|
return t.on("rotate", r), t.on("pitch", r), r(), () => {
|
|
4076
4330
|
t.off("rotate", r), t.off("pitch", r);
|
|
4077
4331
|
};
|
|
4078
|
-
}, [t]), /* @__PURE__ */ X(
|
|
4332
|
+
}, [t]), /* @__PURE__ */ X(oa, {
|
|
4079
4333
|
onClick: e,
|
|
4080
4334
|
label: "Reset bearing to north",
|
|
4081
4335
|
children: /* @__PURE__ */ Z("svg", {
|
|
@@ -4104,10 +4358,10 @@ function Ki({ onClick: e }) {
|
|
|
4104
4358
|
})
|
|
4105
4359
|
});
|
|
4106
4360
|
}
|
|
4107
|
-
function
|
|
4108
|
-
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);
|
|
4109
4363
|
f.current = n;
|
|
4110
|
-
let p = u(() => document.createElement("div"), []), m = u(() => new
|
|
4364
|
+
let p = u(() => document.createElement("div"), []), m = u(() => new Ve.Popup({
|
|
4111
4365
|
offset: 16,
|
|
4112
4366
|
...o,
|
|
4113
4367
|
closeButton: !1
|
|
@@ -4122,15 +4376,15 @@ function qi({ longitude: e, latitude: t, onClose: n, children: r, className: i,
|
|
|
4122
4376
|
let n = l.current;
|
|
4123
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;
|
|
4124
4378
|
}
|
|
4125
|
-
return
|
|
4379
|
+
return He(/* @__PURE__ */ Z("div", {
|
|
4126
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),
|
|
4127
|
-
children: [a && /* @__PURE__ */ X(
|
|
4381
|
+
children: [a && /* @__PURE__ */ X(ea, { onClick: () => {
|
|
4128
4382
|
m.remove();
|
|
4129
4383
|
} }), r]
|
|
4130
4384
|
}), p);
|
|
4131
4385
|
}
|
|
4132
|
-
function
|
|
4133
|
-
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}`;
|
|
4134
4388
|
return s(() => {
|
|
4135
4389
|
if (!(!p || !f)) return f.addSource(g, {
|
|
4136
4390
|
type: "geojson",
|
|
@@ -4209,15 +4463,15 @@ function Ji({ id: e, coordinates: t, color: n = "#4285F4", width: r = 3, opacity
|
|
|
4209
4463
|
d
|
|
4210
4464
|
]), null;
|
|
4211
4465
|
}
|
|
4212
|
-
var
|
|
4466
|
+
var fa = .2, pa = 64, ma = 12, ha = 6, ga = {
|
|
4213
4467
|
"line-color": "#4285F4",
|
|
4214
4468
|
"line-width": 2,
|
|
4215
4469
|
"line-opacity": .85
|
|
4216
|
-
},
|
|
4470
|
+
}, _a = {
|
|
4217
4471
|
"line-join": "round",
|
|
4218
4472
|
"line-cap": "round"
|
|
4219
4473
|
};
|
|
4220
|
-
function
|
|
4474
|
+
function va(e, t) {
|
|
4221
4475
|
if (!t) return e;
|
|
4222
4476
|
let n = { ...e };
|
|
4223
4477
|
for (let [e, r] of Object.entries(t)) {
|
|
@@ -4236,7 +4490,7 @@ function ta(e, t) {
|
|
|
4236
4490
|
}
|
|
4237
4491
|
return n;
|
|
4238
4492
|
}
|
|
4239
|
-
function
|
|
4493
|
+
function ya(e, t, n, r) {
|
|
4240
4494
|
let [i, a] = e, [o, s] = t, c = o - i, l = s - a, u = Math.hypot(c, l);
|
|
4241
4495
|
if (u === 0 || n === 0) return [e, t];
|
|
4242
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));
|
|
@@ -4246,16 +4500,16 @@ function na(e, t, n, r) {
|
|
|
4246
4500
|
}
|
|
4247
4501
|
return v;
|
|
4248
4502
|
}
|
|
4249
|
-
function
|
|
4250
|
-
let { map: h, isLoaded: g } =
|
|
4251
|
-
|
|
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,
|
|
4252
4506
|
...i
|
|
4253
4507
|
}, o), [i, o]), C = u(() => ({
|
|
4254
|
-
...
|
|
4508
|
+
..._a,
|
|
4255
4509
|
...a
|
|
4256
4510
|
}), [a]), w = u(() => {
|
|
4257
|
-
let e = i?.["line-width"] ??
|
|
4258
|
-
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);
|
|
4259
4513
|
}, [i]), T = u(() => ({
|
|
4260
4514
|
type: "FeatureCollection",
|
|
4261
4515
|
features: e.map((e) => {
|
|
@@ -4265,7 +4519,7 @@ function ra({ data: e, id: t, curvature: n = Yi, samples: r = Xi, paint: i, layo
|
|
|
4265
4519
|
properties: a,
|
|
4266
4520
|
geometry: {
|
|
4267
4521
|
type: "LineString",
|
|
4268
|
-
coordinates:
|
|
4522
|
+
coordinates: ya(t, i, n, r)
|
|
4269
4523
|
}
|
|
4270
4524
|
};
|
|
4271
4525
|
})
|
|
@@ -4291,7 +4545,7 @@ function ra({ data: e, id: t, curvature: n = Yi, samples: r = Xi, paint: i, layo
|
|
|
4291
4545
|
id: x,
|
|
4292
4546
|
type: "line",
|
|
4293
4547
|
source: y,
|
|
4294
|
-
layout:
|
|
4548
|
+
layout: _a,
|
|
4295
4549
|
paint: {
|
|
4296
4550
|
"line-color": "rgba(0, 0, 0, 0)",
|
|
4297
4551
|
"line-width": w,
|
|
@@ -4374,12 +4628,12 @@ function ra({ data: e, id: t, curvature: n = Yi, samples: r = Xi, paint: i, layo
|
|
|
4374
4628
|
p
|
|
4375
4629
|
]), null;
|
|
4376
4630
|
}
|
|
4377
|
-
function
|
|
4631
|
+
function xa({ data: e, clusterMaxZoom: t = 14, clusterRadius: n = 50, clusterColors: r = [
|
|
4378
4632
|
"#22c55e",
|
|
4379
4633
|
"#eab308",
|
|
4380
4634
|
"#ef4444"
|
|
4381
4635
|
], clusterThresholds: i = [100, 750], pointColor: a = "#3b82f6", onPointClick: o, onClusterClick: l }) {
|
|
4382
|
-
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({
|
|
4383
4637
|
clusterColors: r,
|
|
4384
4638
|
clusterThresholds: i,
|
|
4385
4639
|
pointColor: a
|
|
@@ -4534,12 +4788,12 @@ function ia({ data: e, clusterMaxZoom: t = 14, clusterRadius: n = 50, clusterCol
|
|
|
4534
4788
|
}
|
|
4535
4789
|
//#endregion
|
|
4536
4790
|
//#region src/components/ui/progress.tsx
|
|
4537
|
-
function
|
|
4538
|
-
return /* @__PURE__ */ X(
|
|
4791
|
+
function Sa({ className: e, value: t, ...n }) {
|
|
4792
|
+
return /* @__PURE__ */ X(we.Root, {
|
|
4539
4793
|
"data-slot": "progress",
|
|
4540
4794
|
className: Q("relative flex h-1 w-full items-center overflow-x-hidden rounded-full bg-muted", e),
|
|
4541
4795
|
...n,
|
|
4542
|
-
children: /* @__PURE__ */ X(
|
|
4796
|
+
children: /* @__PURE__ */ X(we.Indicator, {
|
|
4543
4797
|
"data-slot": "progress-indicator",
|
|
4544
4798
|
className: "size-full flex-1 bg-primary transition-all",
|
|
4545
4799
|
style: { transform: `translateX(-${100 - (t || 0)}%)` }
|
|
@@ -4548,26 +4802,26 @@ function aa({ className: e, value: t, ...n }) {
|
|
|
4548
4802
|
}
|
|
4549
4803
|
//#endregion
|
|
4550
4804
|
//#region src/components/ui/select.tsx
|
|
4551
|
-
function
|
|
4805
|
+
function Ca({ ...e }) {
|
|
4552
4806
|
return /* @__PURE__ */ X(J.Root, {
|
|
4553
4807
|
"data-slot": "select",
|
|
4554
4808
|
...e
|
|
4555
4809
|
});
|
|
4556
4810
|
}
|
|
4557
|
-
function
|
|
4811
|
+
function wa({ className: e, ...t }) {
|
|
4558
4812
|
return /* @__PURE__ */ X(J.Group, {
|
|
4559
4813
|
"data-slot": "select-group",
|
|
4560
4814
|
className: Q("scroll-my-1 p-1", e),
|
|
4561
4815
|
...t
|
|
4562
4816
|
});
|
|
4563
4817
|
}
|
|
4564
|
-
function
|
|
4818
|
+
function Ta({ ...e }) {
|
|
4565
4819
|
return /* @__PURE__ */ X(J.Value, {
|
|
4566
4820
|
"data-slot": "select-value",
|
|
4567
4821
|
...e
|
|
4568
4822
|
});
|
|
4569
4823
|
}
|
|
4570
|
-
function
|
|
4824
|
+
function Ea({ className: e, size: t = "default", children: n, ...r }) {
|
|
4571
4825
|
return /* @__PURE__ */ Z(J.Trigger, {
|
|
4572
4826
|
"data-slot": "select-trigger",
|
|
4573
4827
|
"data-size": t,
|
|
@@ -4575,11 +4829,11 @@ function la({ className: e, size: t = "default", children: n, ...r }) {
|
|
|
4575
4829
|
...r,
|
|
4576
4830
|
children: [n, /* @__PURE__ */ X(J.Icon, {
|
|
4577
4831
|
asChild: !0,
|
|
4578
|
-
children: /* @__PURE__ */ X(
|
|
4832
|
+
children: /* @__PURE__ */ X(b, { className: "pointer-events-none size-4 text-muted-foreground" })
|
|
4579
4833
|
})]
|
|
4580
4834
|
});
|
|
4581
4835
|
}
|
|
4582
|
-
function
|
|
4836
|
+
function Da({ className: e, children: t, position: n = "item-aligned", align: r = "center", ...i }) {
|
|
4583
4837
|
return /* @__PURE__ */ X(J.Portal, { children: /* @__PURE__ */ Z(J.Content, {
|
|
4584
4838
|
"data-slot": "select-content",
|
|
4585
4839
|
"data-align-trigger": n === "item-aligned",
|
|
@@ -4588,67 +4842,67 @@ function ua({ className: e, children: t, position: n = "item-aligned", align: r
|
|
|
4588
4842
|
align: r,
|
|
4589
4843
|
...i,
|
|
4590
4844
|
children: [
|
|
4591
|
-
/* @__PURE__ */ X(
|
|
4845
|
+
/* @__PURE__ */ X(ja, {}),
|
|
4592
4846
|
/* @__PURE__ */ X(J.Viewport, {
|
|
4593
4847
|
"data-position": n,
|
|
4594
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" && ""),
|
|
4595
4849
|
children: t
|
|
4596
4850
|
}),
|
|
4597
|
-
/* @__PURE__ */ X(
|
|
4851
|
+
/* @__PURE__ */ X(Ma, {})
|
|
4598
4852
|
]
|
|
4599
4853
|
}) });
|
|
4600
4854
|
}
|
|
4601
|
-
function
|
|
4855
|
+
function Oa({ className: e, ...t }) {
|
|
4602
4856
|
return /* @__PURE__ */ X(J.Label, {
|
|
4603
4857
|
"data-slot": "select-label",
|
|
4604
4858
|
className: Q("px-1.5 py-1 text-xs text-muted-foreground", e),
|
|
4605
4859
|
...t
|
|
4606
4860
|
});
|
|
4607
4861
|
}
|
|
4608
|
-
function
|
|
4862
|
+
function ka({ className: e, children: t, ...n }) {
|
|
4609
4863
|
return /* @__PURE__ */ Z(J.Item, {
|
|
4610
4864
|
"data-slot": "select-item",
|
|
4611
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),
|
|
4612
4866
|
...n,
|
|
4613
4867
|
children: [/* @__PURE__ */ X("span", {
|
|
4614
4868
|
className: "pointer-events-none absolute right-2 flex size-4 items-center justify-center",
|
|
4615
|
-
children: /* @__PURE__ */ X(J.ItemIndicator, { children: /* @__PURE__ */ X(
|
|
4869
|
+
children: /* @__PURE__ */ X(J.ItemIndicator, { children: /* @__PURE__ */ X(v, { className: "pointer-events-none" }) })
|
|
4616
4870
|
}), /* @__PURE__ */ X(J.ItemText, { children: t })]
|
|
4617
4871
|
});
|
|
4618
4872
|
}
|
|
4619
|
-
function
|
|
4873
|
+
function Aa({ className: e, ...t }) {
|
|
4620
4874
|
return /* @__PURE__ */ X(J.Separator, {
|
|
4621
4875
|
"data-slot": "select-separator",
|
|
4622
4876
|
className: Q("pointer-events-none -mx-1 my-1 h-px bg-border", e),
|
|
4623
4877
|
...t
|
|
4624
4878
|
});
|
|
4625
4879
|
}
|
|
4626
|
-
function
|
|
4880
|
+
function ja({ className: e, ...t }) {
|
|
4627
4881
|
return /* @__PURE__ */ X(J.ScrollUpButton, {
|
|
4628
4882
|
"data-slot": "select-scroll-up-button",
|
|
4629
4883
|
className: Q("z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4", e),
|
|
4630
4884
|
...t,
|
|
4631
|
-
children: /* @__PURE__ */ X(
|
|
4885
|
+
children: /* @__PURE__ */ X(C, {})
|
|
4632
4886
|
});
|
|
4633
4887
|
}
|
|
4634
|
-
function
|
|
4888
|
+
function Ma({ className: e, ...t }) {
|
|
4635
4889
|
return /* @__PURE__ */ X(J.ScrollDownButton, {
|
|
4636
4890
|
"data-slot": "select-scroll-down-button",
|
|
4637
4891
|
className: Q("z-10 flex cursor-default items-center justify-center bg-popover py-1 [&_svg:not([class*='size-'])]:size-4", e),
|
|
4638
4892
|
...t,
|
|
4639
|
-
children: /* @__PURE__ */ X(
|
|
4893
|
+
children: /* @__PURE__ */ X(b, {})
|
|
4640
4894
|
});
|
|
4641
4895
|
}
|
|
4642
4896
|
//#endregion
|
|
4643
4897
|
//#region src/components/ui/slider.tsx
|
|
4644
|
-
function
|
|
4898
|
+
function Na({ className: e, defaultValue: t, value: r, min: i = 0, max: a = 100, ...o }) {
|
|
4645
4899
|
let s = n.useMemo(() => Array.isArray(r) ? r : Array.isArray(t) ? t : [i, a], [
|
|
4646
4900
|
r,
|
|
4647
4901
|
t,
|
|
4648
4902
|
i,
|
|
4649
4903
|
a
|
|
4650
4904
|
]);
|
|
4651
|
-
return /* @__PURE__ */ Z(
|
|
4905
|
+
return /* @__PURE__ */ Z(De.Root, {
|
|
4652
4906
|
"data-slot": "slider",
|
|
4653
4907
|
defaultValue: t,
|
|
4654
4908
|
value: r,
|
|
@@ -4656,14 +4910,14 @@ function ga({ className: e, defaultValue: t, value: r, min: i = 0, max: a = 100,
|
|
|
4656
4910
|
max: a,
|
|
4657
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),
|
|
4658
4912
|
...o,
|
|
4659
|
-
children: [/* @__PURE__ */ X(
|
|
4913
|
+
children: [/* @__PURE__ */ X(De.Track, {
|
|
4660
4914
|
"data-slot": "slider-track",
|
|
4661
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",
|
|
4662
|
-
children: /* @__PURE__ */ X(
|
|
4916
|
+
children: /* @__PURE__ */ X(De.Range, {
|
|
4663
4917
|
"data-slot": "slider-range",
|
|
4664
4918
|
className: "absolute bg-primary select-none data-horizontal:h-full data-vertical:w-full"
|
|
4665
4919
|
})
|
|
4666
|
-
}), Array.from({ length: s.length }, (e, t) => /* @__PURE__ */ X(
|
|
4920
|
+
}), Array.from({ length: s.length }, (e, t) => /* @__PURE__ */ X(De.Thumb, {
|
|
4667
4921
|
"data-slot": "slider-thumb",
|
|
4668
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"
|
|
4669
4923
|
}, t))]
|
|
@@ -4671,17 +4925,17 @@ function ga({ className: e, defaultValue: t, value: r, min: i = 0, max: a = 100,
|
|
|
4671
4925
|
}
|
|
4672
4926
|
//#endregion
|
|
4673
4927
|
//#region src/components/ui/sonner.tsx
|
|
4674
|
-
var
|
|
4675
|
-
let { theme: t = "system" } =
|
|
4676
|
-
return /* @__PURE__ */ X(
|
|
4928
|
+
var Pa = ({ ...e }) => {
|
|
4929
|
+
let { theme: t = "system" } = Ue();
|
|
4930
|
+
return /* @__PURE__ */ X(We, {
|
|
4677
4931
|
theme: t,
|
|
4678
4932
|
className: "toaster group",
|
|
4679
4933
|
icons: {
|
|
4680
|
-
success: /* @__PURE__ */ X(
|
|
4681
|
-
info: /* @__PURE__ */ X(
|
|
4682
|
-
warning: /* @__PURE__ */ X(
|
|
4683
|
-
error: /* @__PURE__ */ X(
|
|
4684
|
-
loading: /* @__PURE__ */ X(
|
|
4934
|
+
success: /* @__PURE__ */ X(E, { className: "size-4" }),
|
|
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" })
|
|
4685
4939
|
},
|
|
4686
4940
|
style: {
|
|
4687
4941
|
"--normal-bg": "var(--popover)",
|
|
@@ -4692,20 +4946,20 @@ var _a = ({ ...e }) => {
|
|
|
4692
4946
|
toastOptions: { classNames: { toast: "cn-toast" } },
|
|
4693
4947
|
...e
|
|
4694
4948
|
});
|
|
4695
|
-
},
|
|
4696
|
-
let e = o(
|
|
4949
|
+
}, Fa = r(void 0), Ia = r(void 0), La = () => {
|
|
4950
|
+
let e = o(Fa);
|
|
4697
4951
|
if (!e) throw Error("useStepper must be used within a Stepper");
|
|
4698
4952
|
return e;
|
|
4699
|
-
},
|
|
4700
|
-
let e = o(
|
|
4953
|
+
}, Ra = () => {
|
|
4954
|
+
let e = o(Ia);
|
|
4701
4955
|
if (!e) throw Error("useStepItem must be used within a StepperItem");
|
|
4702
4956
|
return e;
|
|
4703
4957
|
};
|
|
4704
|
-
function
|
|
4958
|
+
function za({ defaultValue: e = 0, value: t, onValueChange: r, orientation: i = "horizontal", className: a, ...o }) {
|
|
4705
4959
|
let [s, c] = n.useState(e), l = n.useCallback((e) => {
|
|
4706
4960
|
t === void 0 && c(e), r?.(e);
|
|
4707
4961
|
}, [t, r]), u = t ?? s;
|
|
4708
|
-
return /* @__PURE__ */ X(
|
|
4962
|
+
return /* @__PURE__ */ X(Fa.Provider, {
|
|
4709
4963
|
value: {
|
|
4710
4964
|
activeStep: u,
|
|
4711
4965
|
orientation: i,
|
|
@@ -4719,9 +4973,9 @@ function Sa({ defaultValue: e = 0, value: t, onValueChange: r, orientation: i =
|
|
|
4719
4973
|
})
|
|
4720
4974
|
});
|
|
4721
4975
|
}
|
|
4722
|
-
function
|
|
4723
|
-
let { activeStep: s } =
|
|
4724
|
-
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, {
|
|
4725
4979
|
value: {
|
|
4726
4980
|
isDisabled: n,
|
|
4727
4981
|
isLoading: l,
|
|
@@ -4738,9 +4992,9 @@ function Ca({ step: e, completed: t = !1, disabled: n = !1, loading: r = !1, cla
|
|
|
4738
4992
|
})
|
|
4739
4993
|
});
|
|
4740
4994
|
}
|
|
4741
|
-
function
|
|
4742
|
-
let { setActiveStep: i } =
|
|
4743
|
-
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", {
|
|
4744
4998
|
className: t,
|
|
4745
4999
|
"data-slot": "stepper-trigger",
|
|
4746
5000
|
children: n
|
|
@@ -4754,8 +5008,8 @@ function wa({ asChild: e = !1, className: t, children: n, ...r }) {
|
|
|
4754
5008
|
children: n
|
|
4755
5009
|
});
|
|
4756
5010
|
}
|
|
4757
|
-
function
|
|
4758
|
-
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();
|
|
4759
5013
|
return /* @__PURE__ */ X("span", {
|
|
4760
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),
|
|
4761
5015
|
"data-slot": "stepper-indicator",
|
|
@@ -4766,14 +5020,14 @@ function Ta({ asChild: e = !1, className: t, children: n, ...r }) {
|
|
|
4766
5020
|
className: "transition-all group-data-[state=completed]/step:scale-0 group-data-loading/step:scale-0 group-data-[state=completed]/step:opacity-0 group-data-loading/step:opacity-0 group-data-loading/step:transition-none",
|
|
4767
5021
|
children: a
|
|
4768
5022
|
}),
|
|
4769
|
-
/* @__PURE__ */ X(
|
|
5023
|
+
/* @__PURE__ */ X(v, {
|
|
4770
5024
|
"aria-hidden": "true",
|
|
4771
5025
|
className: "absolute scale-0 opacity-0 transition-all group-data-[state=completed]/step:scale-100 group-data-[state=completed]/step:opacity-100",
|
|
4772
5026
|
size: 16
|
|
4773
5027
|
}),
|
|
4774
5028
|
o && /* @__PURE__ */ X("span", {
|
|
4775
5029
|
className: "absolute transition-all",
|
|
4776
|
-
children: /* @__PURE__ */ X(
|
|
5030
|
+
children: /* @__PURE__ */ X(ie, {
|
|
4777
5031
|
"aria-hidden": "true",
|
|
4778
5032
|
className: "animate-spin",
|
|
4779
5033
|
size: 14
|
|
@@ -4782,21 +5036,21 @@ function Ta({ asChild: e = !1, className: t, children: n, ...r }) {
|
|
|
4782
5036
|
] })
|
|
4783
5037
|
});
|
|
4784
5038
|
}
|
|
4785
|
-
function
|
|
5039
|
+
function Ua({ className: e, ...t }) {
|
|
4786
5040
|
return /* @__PURE__ */ X("h3", {
|
|
4787
5041
|
className: Q("font-medium text-sm", e),
|
|
4788
5042
|
"data-slot": "stepper-title",
|
|
4789
5043
|
...t
|
|
4790
5044
|
});
|
|
4791
5045
|
}
|
|
4792
|
-
function
|
|
5046
|
+
function Wa({ className: e, ...t }) {
|
|
4793
5047
|
return /* @__PURE__ */ X("p", {
|
|
4794
5048
|
className: Q("text-muted-foreground text-sm", e),
|
|
4795
5049
|
"data-slot": "stepper-description",
|
|
4796
5050
|
...t
|
|
4797
5051
|
});
|
|
4798
5052
|
}
|
|
4799
|
-
function
|
|
5053
|
+
function Ga({ className: e, ...t }) {
|
|
4800
5054
|
return /* @__PURE__ */ X("div", {
|
|
4801
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),
|
|
4802
5056
|
"data-slot": "stepper-separator",
|
|
@@ -4805,13 +5059,13 @@ function Oa({ className: e, ...t }) {
|
|
|
4805
5059
|
}
|
|
4806
5060
|
//#endregion
|
|
4807
5061
|
//#region src/components/ui/switch.tsx
|
|
4808
|
-
function
|
|
4809
|
-
return /* @__PURE__ */ X(
|
|
5062
|
+
function Ka({ className: e, size: t = "default", ...n }) {
|
|
5063
|
+
return /* @__PURE__ */ X(ke.Root, {
|
|
4810
5064
|
"data-slot": "switch",
|
|
4811
5065
|
"data-size": t,
|
|
4812
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),
|
|
4813
5067
|
...n,
|
|
4814
|
-
children: /* @__PURE__ */ X(
|
|
5068
|
+
children: /* @__PURE__ */ X(ke.Thumb, {
|
|
4815
5069
|
"data-slot": "switch-thumb",
|
|
4816
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"
|
|
4817
5071
|
})
|
|
@@ -4819,38 +5073,38 @@ function ka({ className: e, size: t = "default", ...n }) {
|
|
|
4819
5073
|
}
|
|
4820
5074
|
//#endregion
|
|
4821
5075
|
//#region src/components/ui/tabs.tsx
|
|
4822
|
-
function
|
|
4823
|
-
return /* @__PURE__ */ X(
|
|
5076
|
+
function qa({ className: e, orientation: t = "horizontal", ...n }) {
|
|
5077
|
+
return /* @__PURE__ */ X(Ae.Root, {
|
|
4824
5078
|
"data-slot": "tabs",
|
|
4825
5079
|
"data-orientation": t,
|
|
4826
5080
|
className: Q("group/tabs flex gap-2 data-horizontal:flex-col", e),
|
|
4827
5081
|
...n
|
|
4828
5082
|
});
|
|
4829
5083
|
}
|
|
4830
|
-
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", {
|
|
4831
5085
|
variants: { variant: {
|
|
4832
5086
|
default: "bg-muted",
|
|
4833
5087
|
line: "gap-1 bg-transparent"
|
|
4834
5088
|
} },
|
|
4835
5089
|
defaultVariants: { variant: "default" }
|
|
4836
5090
|
});
|
|
4837
|
-
function
|
|
4838
|
-
return /* @__PURE__ */ X(
|
|
5091
|
+
function Ya({ className: e, variant: t = "default", ...n }) {
|
|
5092
|
+
return /* @__PURE__ */ X(Ae.List, {
|
|
4839
5093
|
"data-slot": "tabs-list",
|
|
4840
5094
|
"data-variant": t,
|
|
4841
|
-
className: Q(
|
|
5095
|
+
className: Q(Ja({ variant: t }), e),
|
|
4842
5096
|
...n
|
|
4843
5097
|
});
|
|
4844
5098
|
}
|
|
4845
|
-
function
|
|
4846
|
-
return /* @__PURE__ */ X(
|
|
5099
|
+
function Xa({ className: e, ...t }) {
|
|
5100
|
+
return /* @__PURE__ */ X(Ae.Trigger, {
|
|
4847
5101
|
"data-slot": "tabs-trigger",
|
|
4848
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),
|
|
4849
5103
|
...t
|
|
4850
5104
|
});
|
|
4851
5105
|
}
|
|
4852
|
-
function
|
|
4853
|
-
return /* @__PURE__ */ X(
|
|
5106
|
+
function Za({ className: e, ...t }) {
|
|
5107
|
+
return /* @__PURE__ */ X(Ae.Content, {
|
|
4854
5108
|
"data-slot": "tabs-content",
|
|
4855
5109
|
className: Q("flex-1 text-sm outline-none", e),
|
|
4856
5110
|
...t
|
|
@@ -4858,16 +5112,16 @@ function Pa({ className: e, ...t }) {
|
|
|
4858
5112
|
}
|
|
4859
5113
|
//#endregion
|
|
4860
5114
|
//#region src/components/ui/timeline.tsx
|
|
4861
|
-
var
|
|
4862
|
-
let e = n.useContext(
|
|
5115
|
+
var Qa = n.createContext(void 0), $a = () => {
|
|
5116
|
+
let e = n.useContext(Qa);
|
|
4863
5117
|
if (!e) throw Error("useTimeline must be used within a Timeline");
|
|
4864
5118
|
return e;
|
|
4865
5119
|
};
|
|
4866
|
-
function
|
|
5120
|
+
function eo({ defaultValue: e = 1, value: t, onValueChange: r, orientation: i = "vertical", className: a, ...o }) {
|
|
4867
5121
|
let [s, c] = n.useState(e), l = n.useCallback((e) => {
|
|
4868
5122
|
t === void 0 && c(e), r?.(e);
|
|
4869
5123
|
}, [t, r]), u = t ?? s;
|
|
4870
|
-
return /* @__PURE__ */ X(
|
|
5124
|
+
return /* @__PURE__ */ X(Qa.Provider, {
|
|
4871
5125
|
value: {
|
|
4872
5126
|
activeStep: u,
|
|
4873
5127
|
setActiveStep: l
|
|
@@ -4880,28 +5134,28 @@ function La({ defaultValue: e = 1, value: t, onValueChange: r, orientation: i =
|
|
|
4880
5134
|
})
|
|
4881
5135
|
});
|
|
4882
5136
|
}
|
|
4883
|
-
function
|
|
5137
|
+
function to({ className: e, ...t }) {
|
|
4884
5138
|
return /* @__PURE__ */ X("div", {
|
|
4885
5139
|
className: Q("text-muted-foreground text-sm", e),
|
|
4886
5140
|
"data-slot": "timeline-content",
|
|
4887
5141
|
...t
|
|
4888
5142
|
});
|
|
4889
5143
|
}
|
|
4890
|
-
function
|
|
4891
|
-
return /* @__PURE__ */ X(e ?
|
|
5144
|
+
function no({ asChild: e = !1, className: t, ...n }) {
|
|
5145
|
+
return /* @__PURE__ */ X(e ? Oe.Root : "time", {
|
|
4892
5146
|
className: Q("mb-1 block font-medium text-muted-foreground text-xs group-data-[orientation=vertical]/timeline:max-sm:h-4", t),
|
|
4893
5147
|
"data-slot": "timeline-date",
|
|
4894
5148
|
...n
|
|
4895
5149
|
});
|
|
4896
5150
|
}
|
|
4897
|
-
function
|
|
5151
|
+
function ro({ className: e, ...t }) {
|
|
4898
5152
|
return /* @__PURE__ */ X("div", {
|
|
4899
5153
|
className: Q(e),
|
|
4900
5154
|
"data-slot": "timeline-header",
|
|
4901
5155
|
...t
|
|
4902
5156
|
});
|
|
4903
5157
|
}
|
|
4904
|
-
function
|
|
5158
|
+
function io({ className: e, children: t, ...n }) {
|
|
4905
5159
|
return /* @__PURE__ */ X("div", {
|
|
4906
5160
|
"aria-hidden": "true",
|
|
4907
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),
|
|
@@ -4910,8 +5164,8 @@ function Va({ className: e, children: t, ...n }) {
|
|
|
4910
5164
|
children: t
|
|
4911
5165
|
});
|
|
4912
5166
|
}
|
|
4913
|
-
function
|
|
4914
|
-
let { activeStep: r } =
|
|
5167
|
+
function ao({ step: e, className: t, ...n }) {
|
|
5168
|
+
let { activeStep: r } = $a();
|
|
4915
5169
|
return /* @__PURE__ */ X("div", {
|
|
4916
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),
|
|
4917
5171
|
"data-completed": e <= r || void 0,
|
|
@@ -4919,7 +5173,7 @@ function Ha({ step: e, className: t, ...n }) {
|
|
|
4919
5173
|
...n
|
|
4920
5174
|
});
|
|
4921
5175
|
}
|
|
4922
|
-
function
|
|
5176
|
+
function oo({ className: e, ...t }) {
|
|
4923
5177
|
return /* @__PURE__ */ X("div", {
|
|
4924
5178
|
"aria-hidden": "true",
|
|
4925
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),
|
|
@@ -4927,7 +5181,7 @@ function Ua({ className: e, ...t }) {
|
|
|
4927
5181
|
...t
|
|
4928
5182
|
});
|
|
4929
5183
|
}
|
|
4930
|
-
function
|
|
5184
|
+
function so({ className: e, ...t }) {
|
|
4931
5185
|
return /* @__PURE__ */ X("h3", {
|
|
4932
5186
|
className: Q("font-medium text-sm", e),
|
|
4933
5187
|
"data-slot": "timeline-title",
|
|
@@ -4936,7 +5190,7 @@ function Wa({ className: e, ...t }) {
|
|
|
4936
5190
|
}
|
|
4937
5191
|
//#endregion
|
|
4938
5192
|
//#region src/components/ui/toggle.tsx
|
|
4939
|
-
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", {
|
|
4940
5194
|
variants: {
|
|
4941
5195
|
variant: {
|
|
4942
5196
|
default: "bg-transparent",
|
|
@@ -4953,10 +5207,10 @@ var Ga = U("group/toggle inline-flex items-center justify-center gap-1 rounded-l
|
|
|
4953
5207
|
size: "default"
|
|
4954
5208
|
}
|
|
4955
5209
|
});
|
|
4956
|
-
function
|
|
4957
|
-
return /* @__PURE__ */ X(
|
|
5210
|
+
function lo({ className: e, variant: t = "default", size: n = "default", ...r }) {
|
|
5211
|
+
return /* @__PURE__ */ X(je.Root, {
|
|
4958
5212
|
"data-slot": "toggle",
|
|
4959
|
-
className: Q(
|
|
5213
|
+
className: Q(co({
|
|
4960
5214
|
variant: t,
|
|
4961
5215
|
size: n,
|
|
4962
5216
|
className: e
|
|
@@ -4966,14 +5220,14 @@ function Ka({ className: e, variant: t = "default", size: n = "default", ...r })
|
|
|
4966
5220
|
}
|
|
4967
5221
|
//#endregion
|
|
4968
5222
|
//#region src/components/ui/toggle-group.tsx
|
|
4969
|
-
var
|
|
5223
|
+
var uo = n.createContext({
|
|
4970
5224
|
size: "default",
|
|
4971
5225
|
variant: "default",
|
|
4972
5226
|
spacing: 2,
|
|
4973
5227
|
orientation: "horizontal"
|
|
4974
5228
|
});
|
|
4975
|
-
function
|
|
4976
|
-
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, {
|
|
4977
5231
|
"data-slot": "toggle-group",
|
|
4978
5232
|
"data-variant": t,
|
|
4979
5233
|
"data-size": n,
|
|
@@ -4982,7 +5236,7 @@ function Ja({ className: e, variant: t, size: n, spacing: r = 2, orientation: i
|
|
|
4982
5236
|
style: { "--gap": r },
|
|
4983
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),
|
|
4984
5238
|
...o,
|
|
4985
|
-
children: /* @__PURE__ */ X(
|
|
5239
|
+
children: /* @__PURE__ */ X(uo.Provider, {
|
|
4986
5240
|
value: {
|
|
4987
5241
|
variant: t,
|
|
4988
5242
|
size: n,
|
|
@@ -4993,14 +5247,14 @@ function Ja({ className: e, variant: t, size: n, spacing: r = 2, orientation: i
|
|
|
4993
5247
|
})
|
|
4994
5248
|
});
|
|
4995
5249
|
}
|
|
4996
|
-
function
|
|
4997
|
-
let o = n.useContext(
|
|
4998
|
-
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, {
|
|
4999
5253
|
"data-slot": "toggle-group-item",
|
|
5000
5254
|
"data-variant": o.variant || r,
|
|
5001
5255
|
"data-size": o.size || i,
|
|
5002
5256
|
"data-spacing": o.spacing,
|
|
5003
|
-
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({
|
|
5004
5258
|
variant: o.variant || r,
|
|
5005
5259
|
size: o.size || i
|
|
5006
5260
|
}), e),
|
|
@@ -5010,35 +5264,35 @@ function Ya({ className: e, children: t, variant: r = "default", size: i = "defa
|
|
|
5010
5264
|
}
|
|
5011
5265
|
//#endregion
|
|
5012
5266
|
//#region src/components/ui/tooltip.tsx
|
|
5013
|
-
function
|
|
5014
|
-
return /* @__PURE__ */ X(
|
|
5267
|
+
function mo({ delayDuration: e = 0, ...t }) {
|
|
5268
|
+
return /* @__PURE__ */ X(Ne.Provider, {
|
|
5015
5269
|
"data-slot": "tooltip-provider",
|
|
5016
5270
|
delayDuration: e,
|
|
5017
5271
|
...t
|
|
5018
5272
|
});
|
|
5019
5273
|
}
|
|
5020
|
-
function
|
|
5021
|
-
return /* @__PURE__ */ X(
|
|
5274
|
+
function ho({ ...e }) {
|
|
5275
|
+
return /* @__PURE__ */ X(Ne.Root, {
|
|
5022
5276
|
"data-slot": "tooltip",
|
|
5023
5277
|
...e
|
|
5024
5278
|
});
|
|
5025
5279
|
}
|
|
5026
|
-
function
|
|
5027
|
-
return /* @__PURE__ */ X(
|
|
5280
|
+
function go({ ...e }) {
|
|
5281
|
+
return /* @__PURE__ */ X(Ne.Trigger, {
|
|
5028
5282
|
"data-slot": "tooltip-trigger",
|
|
5029
5283
|
...e
|
|
5030
5284
|
});
|
|
5031
5285
|
}
|
|
5032
|
-
function
|
|
5033
|
-
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, {
|
|
5034
5288
|
"data-slot": "tooltip-content",
|
|
5035
5289
|
sideOffset: t,
|
|
5036
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),
|
|
5037
5291
|
...r,
|
|
5038
|
-
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" })]
|
|
5039
5293
|
}) });
|
|
5040
5294
|
}
|
|
5041
5295
|
//#endregion
|
|
5042
|
-
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 };
|
|
5043
5297
|
|
|
5044
5298
|
//# sourceMappingURL=index.js.map
|