@boxcustodia/library 2.0.0-alpha.16 → 2.0.0-alpha.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +40 -14
- package/dist/index.es.js +310 -282
- package/package.json +1 -1
- package/src/__doc__/V2.mdx +37 -1
- package/src/components/accordion/accordion.test.tsx +117 -0
- package/src/components/alert-dialog/alert-dialog.test.tsx +208 -22
- package/src/components/alert-dialog/alert-dialog.tsx +4 -4
- package/src/components/avatar/avatar.test.tsx +166 -29
- package/src/components/combobox/combobox.tsx +1 -1
- package/src/components/dialog/dialog.tsx +1 -1
- package/src/components/input/input.stories.tsx +2 -3
- package/src/components/input/input.test.tsx +109 -0
- package/src/components/label/label.tsx +1 -1
- package/src/components/number-input/number-input.test.tsx +155 -48
- package/src/components/toast/toast.tsx +1 -1
- package/src/hooks/index.ts +4 -3
- package/src/hooks/use-clipboard/index.ts +1 -0
- package/src/hooks/use-clipboard/use-clipboard.stories.tsx +168 -0
- package/src/hooks/use-clipboard/use-clipboard.test.tsx +83 -0
- package/src/hooks/use-clipboard/use-clipboard.tsx +64 -0
- package/src/hooks/use-document-title/index.ts +1 -0
- package/src/hooks/use-document-title/use-document-title.stories.tsx +72 -0
- package/src/hooks/use-document-title/use-document-title.test.tsx +75 -0
- package/src/hooks/use-document-title/use-document-title.tsx +32 -0
- package/src/hooks/use-hover/index.ts +1 -0
- package/src/hooks/use-hover/use-hover.stories.tsx +90 -0
- package/src/hooks/use-hover/use-hover.test.tsx +93 -0
- package/src/hooks/use-hover/use-hover.tsx +45 -0
- package/src/hooks/use-on-mount/index.ts +1 -0
- package/src/hooks/use-on-mount/use-on-mount.stories.tsx +85 -0
- package/src/hooks/use-on-mount/use-on-mount.test.tsx +44 -0
- package/src/hooks/use-on-mount/use-on-mount.tsx +13 -0
- package/src/utils/form.tsx +0 -2
- package/src/hooks/useClipboard/__doc__/useClipboard.stories.tsx +0 -43
- package/src/hooks/useClipboard/__test__/useClipboard.test.tsx +0 -19
- package/src/hooks/useClipboard/index.ts +0 -1
- package/src/hooks/useClipboard/useClipboard.tsx +0 -28
- package/src/hooks/useDocumentTitle/__doc__/useDocumentTitle.stories.tsx +0 -26
- package/src/hooks/useDocumentTitle/index.ts +0 -1
- package/src/hooks/useDocumentTitle/useDocumentTitle.tsx +0 -11
- package/src/hooks/useHover/__doc__/useHover.stories.tsx +0 -41
- package/src/hooks/useHover/__test__/useHover.test.tsx +0 -45
- package/src/hooks/useHover/index.ts +0 -1
- package/src/hooks/useHover/useHover.tsx +0 -40
package/dist/index.es.js
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
1
|
import { findIndex as xt, isFunction as $e, isObject as it, range as Ne } from "lodash";
|
|
2
2
|
import * as K from "react";
|
|
3
|
-
import st, { isValidElement as lt, createContext as j, useId as Be, useContext as O, useState as
|
|
3
|
+
import st, { isValidElement as lt, createContext as j, useId as Be, useContext as O, useState as C, useRef as E, useEffect as A, useCallback as T, useMemo as re } from "react";
|
|
4
4
|
import { useControllableState as W } from "@radix-ui/react-use-controllable-state";
|
|
5
|
-
import { useControllableState as
|
|
5
|
+
import { useControllableState as vc } from "@radix-ui/react-use-controllable-state";
|
|
6
6
|
import { createPortal as tr } from "react-dom";
|
|
7
7
|
import { jsx as a, jsxs as f, Fragment as ne } from "react/jsx-runtime";
|
|
8
8
|
import { Accordion as me } from "@base-ui/react/accordion";
|
|
9
|
-
import { Accordion as
|
|
9
|
+
import { Accordion as yc } from "@base-ui/react/accordion";
|
|
10
10
|
import { ChevronDownIcon as He, ChevronUpIcon as Xe, LoaderCircle as yt, ChevronsUpDownIcon as oe, XIcon as Ke, ChevronLeftIcon as rr, ChevronRightIcon as Ue, Info as wt, CalendarIcon as Nt, X as We, UploadCloud as ar, Inbox as nr, CheckIcon as Ct, MinusIcon as or, PlusIcon as ir, ChevronsLeft as sr, ChevronLeft as lr, ChevronRight as cr, ChevronsRight as dr, MoreHorizontal as ur, Eye as pr, EyeOff as mr, TriangleAlert as fr, CircleX as gr, CircleCheck as hr } from "lucide-react";
|
|
11
11
|
import { clsx as br } from "clsx";
|
|
12
12
|
import { extendTailwindMerge as vr } from "tailwind-merge";
|
|
13
13
|
import { AlertDialog as U } from "@base-ui/react/alert-dialog";
|
|
14
|
-
import { AlertDialog as
|
|
14
|
+
import { AlertDialog as Nc } from "@base-ui/react/alert-dialog";
|
|
15
15
|
import { cva as ee } from "class-variance-authority";
|
|
16
16
|
import { Button as xr } from "@base-ui/react/button";
|
|
17
17
|
import { Autocomplete as S } from "@base-ui/react/autocomplete";
|
|
18
|
-
import { Autocomplete as
|
|
18
|
+
import { Autocomplete as zc } from "@base-ui/react/autocomplete";
|
|
19
19
|
import { Input as zt } from "@base-ui/react/input";
|
|
20
|
-
import { Input as
|
|
20
|
+
import { Input as Tc } from "@base-ui/react/input";
|
|
21
21
|
import { ScrollArea as pe } from "@base-ui/react/scroll-area";
|
|
22
|
-
import { ScrollArea as
|
|
22
|
+
import { ScrollArea as Pc } from "@base-ui/react/scroll-area";
|
|
23
23
|
import { Avatar as Ye } from "@base-ui/react/avatar";
|
|
24
|
-
import { Avatar as
|
|
24
|
+
import { Avatar as _c } from "@base-ui/react/avatar";
|
|
25
25
|
import { es as yr } from "date-fns/locale";
|
|
26
26
|
import { DayPicker as wr } from "react-day-picker";
|
|
27
27
|
import { mergeProps as k } from "@base-ui/react/merge-props";
|
|
28
28
|
import { Select as _ } from "@base-ui/react/select";
|
|
29
|
-
import { Select as
|
|
30
|
-
import { useRender as
|
|
29
|
+
import { Select as Ac } from "@base-ui/react/select";
|
|
30
|
+
import { useRender as z } from "@base-ui/react/use-render";
|
|
31
31
|
import { Checkbox as kt } from "@base-ui/react/checkbox";
|
|
32
|
-
import { Checkbox as
|
|
32
|
+
import { Checkbox as Ec } from "@base-ui/react/checkbox";
|
|
33
33
|
import { CheckboxGroup as qe } from "@base-ui/react/checkbox-group";
|
|
34
34
|
import { Field as H } from "@base-ui/react/field";
|
|
35
|
-
import { Field as
|
|
35
|
+
import { Field as Fc } from "@base-ui/react/field";
|
|
36
36
|
import { Fieldset as ke } from "@base-ui/react/fieldset";
|
|
37
|
-
import { Fieldset as
|
|
37
|
+
import { Fieldset as Vc } from "@base-ui/react/fieldset";
|
|
38
38
|
import { Tooltip as Z } from "@base-ui/react/tooltip";
|
|
39
|
-
import { Tooltip as
|
|
39
|
+
import { Tooltip as Oc } from "@base-ui/react/tooltip";
|
|
40
40
|
import { Combobox as w } from "@base-ui/react/combobox";
|
|
41
|
-
import { Combobox as
|
|
41
|
+
import { Combobox as $c } from "@base-ui/react/combobox";
|
|
42
42
|
import { isDate as ae, format as fe } from "date-fns";
|
|
43
43
|
import { Popover as $ } from "@base-ui/react/popover";
|
|
44
|
-
import { Popover as
|
|
44
|
+
import { Popover as Hc } from "@base-ui/react/popover";
|
|
45
45
|
import { Dialog as B } from "@base-ui/react/dialog";
|
|
46
|
-
import { Dialog as
|
|
46
|
+
import { Dialog as Kc } from "@base-ui/react/dialog";
|
|
47
47
|
import { Separator as Nr } from "@base-ui/react/separator";
|
|
48
|
-
import { Separator as
|
|
48
|
+
import { Separator as Wc } from "@base-ui/react/separator";
|
|
49
49
|
import { cn as Cr } from "tailwind-variants";
|
|
50
50
|
import { useDropzone as zr } from "react-dropzone";
|
|
51
51
|
import { Form as kr } from "@base-ui/react/form";
|
|
52
|
-
import { Form as
|
|
52
|
+
import { Form as qc } from "@base-ui/react/form";
|
|
53
53
|
import { Menu as D } from "@base-ui/react/menu";
|
|
54
54
|
import { NumberField as te } from "@base-ui/react/number-field";
|
|
55
|
-
import { NumberField as
|
|
55
|
+
import { NumberField as Zc } from "@base-ui/react/number-field";
|
|
56
56
|
import { Progress as be } from "@base-ui/react/progress";
|
|
57
57
|
import { Switch as Tt } from "@base-ui/react/switch";
|
|
58
58
|
import { Tabs as ge } from "@base-ui/react/tabs";
|
|
59
|
-
import { Tabs as
|
|
59
|
+
import { Tabs as ed } from "@base-ui/react/tabs";
|
|
60
60
|
import { Toast as V } from "@base-ui/react/toast";
|
|
61
|
-
import { Toast as
|
|
61
|
+
import { Toast as rd } from "@base-ui/react/toast";
|
|
62
62
|
import { zodResolver as Tr } from "@hookform/resolvers/zod";
|
|
63
63
|
import { useForm as Sr, FormProvider as Pr, useFormContext as Ir, Controller as _r } from "react-hook-form";
|
|
64
64
|
import { z as Dr } from "zod";
|
|
@@ -66,7 +66,7 @@ const Ar = vr({});
|
|
|
66
66
|
function l(...e) {
|
|
67
67
|
return Ar(br(e));
|
|
68
68
|
}
|
|
69
|
-
function
|
|
69
|
+
function Rr({
|
|
70
70
|
className: e,
|
|
71
71
|
...t
|
|
72
72
|
}) {
|
|
@@ -92,7 +92,7 @@ function Er({
|
|
|
92
92
|
}
|
|
93
93
|
);
|
|
94
94
|
}
|
|
95
|
-
function
|
|
95
|
+
function Lr({
|
|
96
96
|
className: e,
|
|
97
97
|
children: t,
|
|
98
98
|
...r
|
|
@@ -156,14 +156,14 @@ function ls({
|
|
|
156
156
|
classNames: r,
|
|
157
157
|
...o
|
|
158
158
|
}) {
|
|
159
|
-
return /* @__PURE__ */ a(
|
|
159
|
+
return /* @__PURE__ */ a(Rr, { className: t, ...o, children: e.map(({ value: n, trigger: i, content: s, disabled: c }) => /* @__PURE__ */ f(
|
|
160
160
|
Er,
|
|
161
161
|
{
|
|
162
162
|
value: n,
|
|
163
163
|
disabled: c,
|
|
164
164
|
className: r?.item,
|
|
165
165
|
children: [
|
|
166
|
-
/* @__PURE__ */ a(
|
|
166
|
+
/* @__PURE__ */ a(Lr, { className: r?.trigger, children: i }),
|
|
167
167
|
/* @__PURE__ */ a(Fr, { className: r?.content, children: s })
|
|
168
168
|
]
|
|
169
169
|
},
|
|
@@ -409,8 +409,8 @@ function cs({
|
|
|
409
409
|
onClose: n,
|
|
410
410
|
onAction: i,
|
|
411
411
|
variant: s = "default",
|
|
412
|
-
closeText: c = "
|
|
413
|
-
actionText: d = "
|
|
412
|
+
closeText: c = "Cancelar",
|
|
413
|
+
actionText: d = "Confirmar",
|
|
414
414
|
className: u,
|
|
415
415
|
classNames: p,
|
|
416
416
|
...h
|
|
@@ -893,7 +893,6 @@ function vs(e, t) {
|
|
|
893
893
|
function xs(e, t) {
|
|
894
894
|
return Sr({
|
|
895
895
|
...t,
|
|
896
|
-
// @ts-expect-error zodResolver returns Resolver<any, any, any>; incompatible with Resolver<T, any, T>.
|
|
897
896
|
resolver: Tr(e)
|
|
898
897
|
});
|
|
899
898
|
}
|
|
@@ -1148,7 +1147,7 @@ function Is({
|
|
|
1148
1147
|
"data-slot": "select-button",
|
|
1149
1148
|
type: n
|
|
1150
1149
|
};
|
|
1151
|
-
return
|
|
1150
|
+
return z({
|
|
1152
1151
|
defaultTagName: "button",
|
|
1153
1152
|
props: k(i, o),
|
|
1154
1153
|
render: t
|
|
@@ -1295,7 +1294,7 @@ function As(e) {
|
|
|
1295
1294
|
}
|
|
1296
1295
|
);
|
|
1297
1296
|
}
|
|
1298
|
-
function
|
|
1297
|
+
function Rs({
|
|
1299
1298
|
className: e,
|
|
1300
1299
|
...t
|
|
1301
1300
|
}) {
|
|
@@ -1350,7 +1349,7 @@ function ba(e) {
|
|
|
1350
1349
|
className: h,
|
|
1351
1350
|
classNames: m,
|
|
1352
1351
|
...y
|
|
1353
|
-
} = e, b = r ?? fa, g = o ?? ga, x = n ?? ha, v = p ? d?.map(g) : d != null ? g(d) : void 0,
|
|
1352
|
+
} = e, b = r ?? fa, g = o ?? ga, x = n ?? ha, v = p ? d?.map(g) : d != null ? g(d) : void 0, R = p ? u?.map(g) : u != null ? g(u) : void 0;
|
|
1354
1353
|
return /* @__PURE__ */ f(
|
|
1355
1354
|
ca,
|
|
1356
1355
|
{
|
|
@@ -1360,7 +1359,7 @@ function ba(e) {
|
|
|
1360
1359
|
},
|
|
1361
1360
|
multiple: p,
|
|
1362
1361
|
value: v,
|
|
1363
|
-
defaultValue:
|
|
1362
|
+
defaultValue: R,
|
|
1364
1363
|
onValueChange: (I) => {
|
|
1365
1364
|
if (p) {
|
|
1366
1365
|
const G = (I ?? []).map((le) => t.find((we) => g(we) === le) ?? null).filter(Boolean);
|
|
@@ -1648,7 +1647,7 @@ function Es({
|
|
|
1648
1647
|
o && /* @__PURE__ */ a(Sa, { className: c?.footer, children: o })
|
|
1649
1648
|
] });
|
|
1650
1649
|
}
|
|
1651
|
-
const
|
|
1650
|
+
const Ls = ({
|
|
1652
1651
|
as: e = "div",
|
|
1653
1652
|
inline: t = !1,
|
|
1654
1653
|
className: r,
|
|
@@ -1707,7 +1706,7 @@ function Aa({ className: e, ...t }) {
|
|
|
1707
1706
|
}
|
|
1708
1707
|
);
|
|
1709
1708
|
}
|
|
1710
|
-
function
|
|
1709
|
+
function Ra({ className: e, ...t }) {
|
|
1711
1710
|
return /* @__PURE__ */ a(
|
|
1712
1711
|
Z.Arrow,
|
|
1713
1712
|
{
|
|
@@ -1764,7 +1763,7 @@ function Ea({
|
|
|
1764
1763
|
sideOffset: c,
|
|
1765
1764
|
className: "z-float",
|
|
1766
1765
|
children: /* @__PURE__ */ f(Aa, { className: p, children: [
|
|
1767
|
-
/* @__PURE__ */ a(
|
|
1766
|
+
/* @__PURE__ */ a(Ra, { className: h?.arrow }),
|
|
1768
1767
|
e
|
|
1769
1768
|
] })
|
|
1770
1769
|
}
|
|
@@ -1789,7 +1788,7 @@ function Se({
|
|
|
1789
1788
|
"button",
|
|
1790
1789
|
{
|
|
1791
1790
|
type: "button",
|
|
1792
|
-
"aria-label": "
|
|
1791
|
+
"aria-label": "Más información",
|
|
1793
1792
|
className: l(
|
|
1794
1793
|
"inline-flex cursor-default items-center text-muted-foreground hover:text-foreground transition-all ml-1",
|
|
1795
1794
|
n?.tooltip
|
|
@@ -1806,7 +1805,7 @@ function Se({
|
|
|
1806
1805
|
"data-slot": "label",
|
|
1807
1806
|
children: c
|
|
1808
1807
|
};
|
|
1809
|
-
return
|
|
1808
|
+
return z({
|
|
1810
1809
|
defaultTagName: "label",
|
|
1811
1810
|
props: k(d, s),
|
|
1812
1811
|
render: t
|
|
@@ -1836,7 +1835,7 @@ function At({
|
|
|
1836
1835
|
}
|
|
1837
1836
|
);
|
|
1838
1837
|
}
|
|
1839
|
-
function
|
|
1838
|
+
function Rt({
|
|
1840
1839
|
className: e,
|
|
1841
1840
|
...t
|
|
1842
1841
|
}) {
|
|
@@ -1890,7 +1889,7 @@ const Je = j({
|
|
|
1890
1889
|
controlFirst: !0,
|
|
1891
1890
|
invalid: !1
|
|
1892
1891
|
});
|
|
1893
|
-
function
|
|
1892
|
+
function La({
|
|
1894
1893
|
className: e,
|
|
1895
1894
|
classNames: t,
|
|
1896
1895
|
label: r,
|
|
@@ -1908,7 +1907,7 @@ function Ra({
|
|
|
1908
1907
|
className: e,
|
|
1909
1908
|
required: s,
|
|
1910
1909
|
...d,
|
|
1911
|
-
children: /* @__PURE__ */ a(
|
|
1910
|
+
children: /* @__PURE__ */ a(Rt, { className: t?.indicator })
|
|
1912
1911
|
}
|
|
1913
1912
|
);
|
|
1914
1913
|
return h !== void 0 ? /* @__PURE__ */ f(
|
|
@@ -1952,7 +1951,7 @@ function Fa({
|
|
|
1952
1951
|
t?.wrapper
|
|
1953
1952
|
),
|
|
1954
1953
|
children: [
|
|
1955
|
-
/* @__PURE__ */ a(At, { id: d, className: e, ...n, children: /* @__PURE__ */ a(
|
|
1954
|
+
/* @__PURE__ */ a(At, { id: d, className: e, ...n, children: /* @__PURE__ */ a(Rt, { className: t?.indicator }) }),
|
|
1956
1955
|
/* @__PURE__ */ a(Se, { htmlFor: d, className: t?.label, children: r })
|
|
1957
1956
|
]
|
|
1958
1957
|
}
|
|
@@ -2019,13 +2018,13 @@ function Ma({
|
|
|
2019
2018
|
}
|
|
2020
2019
|
) });
|
|
2021
2020
|
}
|
|
2022
|
-
const Va = Object.assign(
|
|
2021
|
+
const Va = Object.assign(La, {
|
|
2023
2022
|
Item: Fa,
|
|
2024
2023
|
Group: Ma,
|
|
2025
2024
|
Legend: Et
|
|
2026
|
-
}),
|
|
2025
|
+
}), Lt = j(void 0);
|
|
2027
2026
|
function Fs() {
|
|
2028
|
-
return O(
|
|
2027
|
+
return O(Lt);
|
|
2029
2028
|
}
|
|
2030
2029
|
const Ft = j(!1);
|
|
2031
2030
|
function Mt() {
|
|
@@ -2037,7 +2036,7 @@ function ja({
|
|
|
2037
2036
|
name: r,
|
|
2038
2037
|
...o
|
|
2039
2038
|
}) {
|
|
2040
|
-
return /* @__PURE__ */ a(Ft.Provider, { value: !0, children: /* @__PURE__ */ a(
|
|
2039
|
+
return /* @__PURE__ */ a(Ft.Provider, { value: !0, children: /* @__PURE__ */ a(Lt.Provider, { value: r, children: /* @__PURE__ */ a(
|
|
2041
2040
|
H.Root,
|
|
2042
2041
|
{
|
|
2043
2042
|
name: r,
|
|
@@ -2679,7 +2678,7 @@ function nn(e) {
|
|
|
2679
2678
|
return /* @__PURE__ */ a(
|
|
2680
2679
|
w.ChipRemove,
|
|
2681
2680
|
{
|
|
2682
|
-
"aria-label": "
|
|
2681
|
+
"aria-label": "Quitar",
|
|
2683
2682
|
className: "h-full shrink-0 cursor-pointer px-1 opacity-80 hover:opacity-100 [&_svg:not([class*='size-'])]:size-4 sm:[&_svg:not([class*='size-'])]:size-3.5",
|
|
2684
2683
|
"data-slot": "combobox-chip-remove",
|
|
2685
2684
|
...e,
|
|
@@ -2897,8 +2896,8 @@ const Ys = w.useFilter, he = "dd/MM/yyyy", mt = (e, t) => !e || !ae(e) ? t : fe(
|
|
|
2897
2896
|
}, hn = (e, t) => {
|
|
2898
2897
|
const r = (t.lastKey === "Backspace" || t.lastKey === "Delete") && e.length < t.previousValue.length, o = e.includes("/"), n = e.trim().endsWith("/");
|
|
2899
2898
|
if ((e.match(/\//g) ?? []).length >= 2) {
|
|
2900
|
-
const x = e.split("/"), v = (x[0] ?? "").replace(/\D/g, "").slice(0, 2),
|
|
2901
|
-
return !v && !
|
|
2899
|
+
const x = e.split("/"), v = (x[0] ?? "").replace(/\D/g, "").slice(0, 2), R = (x[1] ?? "").replace(/\D/g, "").slice(0, 2), M = (x[2] ?? "").replace(/\D/g, "").slice(0, 4);
|
|
2900
|
+
return !v && !R && !M ? "" : `${v}/${R}/${M}`;
|
|
2902
2901
|
}
|
|
2903
2902
|
const s = e.replace(/\D/g, "").slice(0, 8);
|
|
2904
2903
|
if (!s)
|
|
@@ -2940,8 +2939,8 @@ const Ys = w.useFilter, he = "dd/MM/yyyy", mt = (e, t) => !e || !ae(e) ? t : fe(
|
|
|
2940
2939
|
const y = `${u}/${m}`, b = !h && m.length === 2 && !r;
|
|
2941
2940
|
return h ? `${y}/${h}` : b ? `${y}/` : y;
|
|
2942
2941
|
}, bn = (e) => {
|
|
2943
|
-
const { date: t, onDateChange: r, disabledDate: o } = e, [n, i] =
|
|
2944
|
-
|
|
2942
|
+
const { date: t, onDateChange: r, disabledDate: o } = e, [n, i] = C(""), s = E(null), c = E("");
|
|
2943
|
+
A(() => {
|
|
2945
2944
|
const b = ce(t ?? null);
|
|
2946
2945
|
i(b), c.current = b;
|
|
2947
2946
|
}, [t]);
|
|
@@ -2998,7 +2997,7 @@ const Ys = w.useFilter, he = "dd/MM/yyyy", mt = (e, t) => !e || !ae(e) ? t : fe(
|
|
|
2998
2997
|
}
|
|
2999
2998
|
};
|
|
3000
2999
|
}, vn = (e = {}) => {
|
|
3001
|
-
const { disabled: t } = e, [r, o] =
|
|
3000
|
+
const { disabled: t } = e, [r, o] = C(!1), n = E(null), i = T(
|
|
3002
3001
|
(s) => {
|
|
3003
3002
|
if (!t) {
|
|
3004
3003
|
if (s.key === " " || s.key === "Spacebar") {
|
|
@@ -3040,7 +3039,7 @@ const Ys = w.useFilter, he = "dd/MM/yyyy", mt = (e, t) => !e || !ae(e) ? t : fe(
|
|
|
3040
3039
|
handleChange: g,
|
|
3041
3040
|
handleBlur: x,
|
|
3042
3041
|
handleKeyDown: v,
|
|
3043
|
-
clear:
|
|
3042
|
+
clear: R,
|
|
3044
3043
|
setFromExternalDate: M
|
|
3045
3044
|
} = bn({
|
|
3046
3045
|
date: m ?? null,
|
|
@@ -3056,7 +3055,7 @@ const Ys = w.useFilter, he = "dd/MM/yyyy", mt = (e, t) => !e || !ae(e) ? t : fe(
|
|
|
3056
3055
|
}, q = d?.({
|
|
3057
3056
|
value: m ?? null,
|
|
3058
3057
|
clear: () => {
|
|
3059
|
-
M(null),
|
|
3058
|
+
M(null), R();
|
|
3060
3059
|
},
|
|
3061
3060
|
selectToday: () => {
|
|
3062
3061
|
const N = /* @__PURE__ */ new Date();
|
|
@@ -3172,7 +3171,7 @@ const Qe = ({
|
|
|
3172
3171
|
formValue: p,
|
|
3173
3172
|
required: h
|
|
3174
3173
|
}) => {
|
|
3175
|
-
const m =
|
|
3174
|
+
const m = E(null);
|
|
3176
3175
|
return /* @__PURE__ */ f(rt, { "data-slot": u, open: e, onOpenChange: t, children: [
|
|
3177
3176
|
/* @__PURE__ */ f(
|
|
3178
3177
|
at,
|
|
@@ -3251,7 +3250,7 @@ const Qe = ({
|
|
|
3251
3250
|
classNames: d,
|
|
3252
3251
|
required: u
|
|
3253
3252
|
}) => {
|
|
3254
|
-
const [p, h] =
|
|
3253
|
+
const [p, h] = C(!1), [m, y] = W({
|
|
3255
3254
|
prop: e,
|
|
3256
3255
|
onChange: (g) => r?.(g ?? null),
|
|
3257
3256
|
defaultProp: t ?? null
|
|
@@ -3305,7 +3304,7 @@ const Qe = ({
|
|
|
3305
3304
|
classNames: d,
|
|
3306
3305
|
required: u
|
|
3307
3306
|
}) => {
|
|
3308
|
-
const [p, h] =
|
|
3307
|
+
const [p, h] = C(!1), [m, y] = W({
|
|
3309
3308
|
prop: e,
|
|
3310
3309
|
onChange: (x) => r?.(x ?? Ce),
|
|
3311
3310
|
defaultProp: t ?? Ce
|
|
@@ -3364,7 +3363,7 @@ const Qe = ({
|
|
|
3364
3363
|
classNames: d,
|
|
3365
3364
|
required: u
|
|
3366
3365
|
}) => {
|
|
3367
|
-
const [p, h] =
|
|
3366
|
+
const [p, h] = C(!1), [m, y] = W({
|
|
3368
3367
|
prop: e,
|
|
3369
3368
|
onChange: (g) => r?.(g ?? []),
|
|
3370
3369
|
defaultProp: t ?? []
|
|
@@ -3481,7 +3480,7 @@ function Tn({
|
|
|
3481
3480
|
!o && /* @__PURE__ */ a(
|
|
3482
3481
|
B.Close,
|
|
3483
3482
|
{
|
|
3484
|
-
"aria-label": "
|
|
3483
|
+
"aria-label": "Cerrar",
|
|
3485
3484
|
className: l("absolute right-2 top-2", t?.closeButton),
|
|
3486
3485
|
render: /* @__PURE__ */ a(Q, { size: "icon", variant: "ghost" }),
|
|
3487
3486
|
children: /* @__PURE__ */ a(We, { className: "size-4" })
|
|
@@ -3639,7 +3638,7 @@ function An(e) {
|
|
|
3639
3638
|
}
|
|
3640
3639
|
return [t, r];
|
|
3641
3640
|
}
|
|
3642
|
-
function
|
|
3641
|
+
function Rn(e) {
|
|
3643
3642
|
const r = (e.split("/")[1] ?? e).split("+")[0], o = r.split(".");
|
|
3644
3643
|
return o[o.length - 1] ?? r;
|
|
3645
3644
|
}
|
|
@@ -3663,22 +3662,22 @@ function En({
|
|
|
3663
3662
|
className: p,
|
|
3664
3663
|
...h
|
|
3665
3664
|
}) {
|
|
3666
|
-
const m = o !== void 0, [y, b] =
|
|
3667
|
-
m || b(
|
|
3668
|
-
}, M = i.length > 0 ? Object.fromEntries(i.map((
|
|
3669
|
-
onDrop(
|
|
3665
|
+
const m = o !== void 0, [y, b] = C([]), [g, x] = C([]), v = m ? o : y, R = (L) => {
|
|
3666
|
+
m || b(L), r?.(L);
|
|
3667
|
+
}, M = i.length > 0 ? Object.fromEntries(i.map((L) => [L, []])) : void 0, { getRootProps: ye, getInputProps: I, isDragActive: X, open: G } = zr({
|
|
3668
|
+
onDrop(L, q) {
|
|
3670
3669
|
const [N, J] = An(q);
|
|
3671
|
-
|
|
3670
|
+
R([...v, ...L]), x((er) => [...er, ...N]), e?.(L), J.length > 0 && d?.(J);
|
|
3672
3671
|
},
|
|
3673
3672
|
accept: M,
|
|
3674
3673
|
maxFiles: n,
|
|
3675
3674
|
maxSize: s,
|
|
3676
3675
|
multiple: c ?? n > 1,
|
|
3677
3676
|
noClick: !0
|
|
3678
|
-
}), le = (
|
|
3679
|
-
|
|
3680
|
-
}, we = (
|
|
3681
|
-
x((q) => q.filter((N, J) => J !==
|
|
3677
|
+
}), le = (L) => {
|
|
3678
|
+
R(v.filter((q, N) => N !== L)), t?.(L, "accepted");
|
|
3679
|
+
}, we = (L) => {
|
|
3680
|
+
x((q) => q.filter((N, J) => J !== L)), t?.(L, "rejected");
|
|
3682
3681
|
};
|
|
3683
3682
|
return /* @__PURE__ */ a(
|
|
3684
3683
|
Ot.Provider,
|
|
@@ -3697,14 +3696,14 @@ function En({
|
|
|
3697
3696
|
}
|
|
3698
3697
|
);
|
|
3699
3698
|
}
|
|
3700
|
-
function
|
|
3699
|
+
function Ln({
|
|
3701
3700
|
render: e,
|
|
3702
3701
|
className: t,
|
|
3703
3702
|
onClick: r,
|
|
3704
3703
|
children: o,
|
|
3705
3704
|
...n
|
|
3706
3705
|
}) {
|
|
3707
|
-
const { getRootProps: i, getInputProps: s, isDragActive: c, open: d } = et(), u =
|
|
3706
|
+
const { getRootProps: i, getInputProps: s, isDragActive: c, open: d } = et(), u = z({
|
|
3708
3707
|
defaultTagName: "div",
|
|
3709
3708
|
render: e,
|
|
3710
3709
|
props: {
|
|
@@ -3837,7 +3836,7 @@ function tl({
|
|
|
3837
3836
|
label: x = "Arrastra y suelta archivos aquí o haz clic para seleccionar",
|
|
3838
3837
|
...v
|
|
3839
3838
|
}) {
|
|
3840
|
-
const
|
|
3839
|
+
const R = i.map(Rn).join(", ");
|
|
3841
3840
|
return /* @__PURE__ */ f(
|
|
3842
3841
|
En,
|
|
3843
3842
|
{
|
|
@@ -3854,7 +3853,7 @@ function tl({
|
|
|
3854
3853
|
...v,
|
|
3855
3854
|
children: [
|
|
3856
3855
|
/* @__PURE__ */ a(
|
|
3857
|
-
|
|
3856
|
+
Ln,
|
|
3858
3857
|
{
|
|
3859
3858
|
render: /* @__PURE__ */ f(
|
|
3860
3859
|
"div",
|
|
@@ -3884,7 +3883,7 @@ function tl({
|
|
|
3884
3883
|
/* @__PURE__ */ a("p", { children: x }),
|
|
3885
3884
|
i.length > 0 && /* @__PURE__ */ f("p", { className: "text-sm", children: [
|
|
3886
3885
|
"Tipos permitidos: ",
|
|
3887
|
-
|
|
3886
|
+
R
|
|
3888
3887
|
] }),
|
|
3889
3888
|
/* @__PURE__ */ f("p", { className: "text-sm", children: [
|
|
3890
3889
|
"Tamaño máximo: ",
|
|
@@ -4357,7 +4356,7 @@ function no({ className: e, ...t }) {
|
|
|
4357
4356
|
}
|
|
4358
4357
|
);
|
|
4359
4358
|
}
|
|
4360
|
-
function
|
|
4359
|
+
function Re({ className: e, ...t }) {
|
|
4361
4360
|
return /* @__PURE__ */ a(
|
|
4362
4361
|
"span",
|
|
4363
4362
|
{
|
|
@@ -4376,21 +4375,21 @@ function ze(e, t) {
|
|
|
4376
4375
|
const { type: r, label: o, shortcut: n, ...i } = e;
|
|
4377
4376
|
return /* @__PURE__ */ f(Jn, { ...i, children: [
|
|
4378
4377
|
o,
|
|
4379
|
-
n && /* @__PURE__ */ a(
|
|
4378
|
+
n && /* @__PURE__ */ a(Re, { children: n })
|
|
4380
4379
|
] }, t);
|
|
4381
4380
|
}
|
|
4382
4381
|
case "checkbox": {
|
|
4383
4382
|
const { type: r, label: o, shortcut: n, ...i } = e;
|
|
4384
4383
|
return /* @__PURE__ */ f(to, { ...i, children: [
|
|
4385
4384
|
o,
|
|
4386
|
-
n && /* @__PURE__ */ a(
|
|
4385
|
+
n && /* @__PURE__ */ a(Re, { children: n })
|
|
4387
4386
|
] }, t);
|
|
4388
4387
|
}
|
|
4389
4388
|
case "radio": {
|
|
4390
4389
|
const { type: r, label: o, shortcut: n, ...i } = e;
|
|
4391
4390
|
return /* @__PURE__ */ f(ao, { ...i, children: [
|
|
4392
4391
|
o,
|
|
4393
|
-
n && /* @__PURE__ */ a(
|
|
4392
|
+
n && /* @__PURE__ */ a(Re, { children: n })
|
|
4394
4393
|
] }, t);
|
|
4395
4394
|
}
|
|
4396
4395
|
case "radio-group": {
|
|
@@ -4647,7 +4646,7 @@ function pl({
|
|
|
4647
4646
|
) });
|
|
4648
4647
|
}
|
|
4649
4648
|
function ml(e) {
|
|
4650
|
-
const [t = [], r] =
|
|
4649
|
+
const [t = [], r] = C(e);
|
|
4651
4650
|
return [
|
|
4652
4651
|
t,
|
|
4653
4652
|
{
|
|
@@ -4695,7 +4694,7 @@ function fl({
|
|
|
4695
4694
|
onSuccess: o,
|
|
4696
4695
|
onFinish: n
|
|
4697
4696
|
}) {
|
|
4698
|
-
const [i, s] =
|
|
4697
|
+
const [i, s] = C(!0), [c, d] = C(null), [u, p] = C(null), h = T(() => {
|
|
4699
4698
|
s(!0), d(null), p(null), e().then((m) => {
|
|
4700
4699
|
o?.(m), p(m);
|
|
4701
4700
|
}).catch((m) => {
|
|
@@ -4704,35 +4703,46 @@ function fl({
|
|
|
4704
4703
|
n?.(), s(!1);
|
|
4705
4704
|
});
|
|
4706
4705
|
}, t);
|
|
4707
|
-
return
|
|
4706
|
+
return A(() => {
|
|
4708
4707
|
h();
|
|
4709
4708
|
}, [h]), { loading: i, error: c, data: u, refetch: h };
|
|
4710
4709
|
}
|
|
4711
4710
|
const gl = (e, t = !0) => {
|
|
4712
|
-
const r =
|
|
4711
|
+
const r = E(null), o = (n) => {
|
|
4713
4712
|
r.current && !r.current.contains(n.target) && e();
|
|
4714
4713
|
};
|
|
4715
|
-
return
|
|
4714
|
+
return A(() => {
|
|
4716
4715
|
if (t)
|
|
4717
4716
|
return document.addEventListener("mousedown", o), () => {
|
|
4718
4717
|
document.removeEventListener("mousedown", o);
|
|
4719
4718
|
};
|
|
4720
4719
|
}, [t]), r;
|
|
4721
4720
|
};
|
|
4722
|
-
function hl() {
|
|
4723
|
-
const
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4721
|
+
function hl(e = {}) {
|
|
4722
|
+
const t = e.timeout ?? 2e3, [r, o] = C(null), [n, i] = C(!1), s = E(null);
|
|
4723
|
+
A(
|
|
4724
|
+
() => () => {
|
|
4725
|
+
s.current && window.clearTimeout(s.current);
|
|
4726
|
+
},
|
|
4727
|
+
[]
|
|
4728
|
+
);
|
|
4729
|
+
const c = (p) => {
|
|
4730
|
+
s.current && window.clearTimeout(s.current), s.current = window.setTimeout(() => i(!1), t), i(p);
|
|
4731
|
+
};
|
|
4732
|
+
return { copy: (p) => {
|
|
4733
|
+
if (!navigator.clipboard?.writeText) {
|
|
4734
|
+
o(new Error("useClipboard: navigator.clipboard is not supported"));
|
|
4735
|
+
return;
|
|
4730
4736
|
}
|
|
4731
|
-
|
|
4732
|
-
|
|
4737
|
+
navigator.clipboard.writeText(p).then(() => {
|
|
4738
|
+
o(null), c(!0);
|
|
4739
|
+
}).catch((h) => o(h));
|
|
4740
|
+
}, reset: () => {
|
|
4741
|
+
i(!1), o(null), s.current && window.clearTimeout(s.current);
|
|
4742
|
+
}, error: r, copied: n };
|
|
4733
4743
|
}
|
|
4734
4744
|
function bl(e, t) {
|
|
4735
|
-
const r =
|
|
4745
|
+
const r = E(null);
|
|
4736
4746
|
return T(
|
|
4737
4747
|
(...o) => {
|
|
4738
4748
|
r.current && clearTimeout(r.current), r.current = setTimeout(() => {
|
|
@@ -4743,8 +4753,8 @@ function bl(e, t) {
|
|
|
4743
4753
|
);
|
|
4744
4754
|
}
|
|
4745
4755
|
function vl(e, t) {
|
|
4746
|
-
const [r, o] =
|
|
4747
|
-
return
|
|
4756
|
+
const [r, o] = C(e);
|
|
4757
|
+
return A(() => {
|
|
4748
4758
|
const n = setTimeout(() => {
|
|
4749
4759
|
o(e);
|
|
4750
4760
|
}, t);
|
|
@@ -4752,7 +4762,7 @@ function vl(e, t) {
|
|
|
4752
4762
|
}, [e, t]), r;
|
|
4753
4763
|
}
|
|
4754
4764
|
function xl(e = !1, t) {
|
|
4755
|
-
const { onOpen: r, onClose: o } = t || {}, [n, i] =
|
|
4765
|
+
const { onOpen: r, onClose: o } = t || {}, [n, i] = C(e), s = T(() => {
|
|
4756
4766
|
i((u) => u || (r?.(), !0));
|
|
4757
4767
|
}, [r]), c = T(() => {
|
|
4758
4768
|
i((u) => u && (o?.(), !1));
|
|
@@ -4761,14 +4771,22 @@ function xl(e = !1, t) {
|
|
|
4761
4771
|
}, [c, s, n]);
|
|
4762
4772
|
return [n, { open: s, close: c, toggle: d }];
|
|
4763
4773
|
}
|
|
4764
|
-
function yl(e) {
|
|
4765
|
-
|
|
4766
|
-
|
|
4774
|
+
function yl(e, t = {}) {
|
|
4775
|
+
const { restoreOnUnmount: r = !1 } = t, o = E(r);
|
|
4776
|
+
o.current = r, A(() => {
|
|
4777
|
+
const n = document.title;
|
|
4778
|
+
return () => {
|
|
4779
|
+
o.current && (document.title = n);
|
|
4780
|
+
};
|
|
4781
|
+
}, []), A(() => {
|
|
4782
|
+
if (typeof e != "string") return;
|
|
4783
|
+
const n = e.trim();
|
|
4784
|
+
n.length !== 0 && (document.title = n);
|
|
4767
4785
|
}, [e]);
|
|
4768
4786
|
}
|
|
4769
4787
|
function uo(e, t, r) {
|
|
4770
|
-
const o =
|
|
4771
|
-
return
|
|
4788
|
+
const o = E(null);
|
|
4789
|
+
return A(() => {
|
|
4772
4790
|
const n = o.current ?? document;
|
|
4773
4791
|
return n.addEventListener(e, t, r), () => {
|
|
4774
4792
|
n.removeEventListener(e, t, r);
|
|
@@ -4825,7 +4843,7 @@ function ho(e, t) {
|
|
|
4825
4843
|
d && d.focus();
|
|
4826
4844
|
}
|
|
4827
4845
|
function wl(e = !0) {
|
|
4828
|
-
const t =
|
|
4846
|
+
const t = E(null), r = (n) => {
|
|
4829
4847
|
let i = n.querySelector("[data-autofocus]");
|
|
4830
4848
|
if (!i) {
|
|
4831
4849
|
const s = Array.from(
|
|
@@ -4842,7 +4860,7 @@ function wl(e = !0) {
|
|
|
4842
4860
|
},
|
|
4843
4861
|
[e]
|
|
4844
4862
|
);
|
|
4845
|
-
return
|
|
4863
|
+
return A(() => {
|
|
4846
4864
|
if (!e)
|
|
4847
4865
|
return;
|
|
4848
4866
|
t.current && setTimeout(() => r(t.current));
|
|
@@ -4881,19 +4899,21 @@ function Nl(e, t, r = {}) {
|
|
|
4881
4899
|
);
|
|
4882
4900
|
return uo(o, c);
|
|
4883
4901
|
}
|
|
4884
|
-
function Cl(e) {
|
|
4885
|
-
const [t, r] =
|
|
4886
|
-
|
|
4887
|
-
|
|
4888
|
-
|
|
4889
|
-
|
|
4890
|
-
r(!
|
|
4891
|
-
},
|
|
4892
|
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4895
|
-
|
|
4896
|
-
|
|
4902
|
+
function Cl(e = {}) {
|
|
4903
|
+
const [t, r] = C(!1), o = E(e);
|
|
4904
|
+
o.current = e;
|
|
4905
|
+
const n = T((i) => {
|
|
4906
|
+
if (!i) return;
|
|
4907
|
+
const s = (d) => {
|
|
4908
|
+
r(!0), o.current.onHoverStart?.(d);
|
|
4909
|
+
}, c = (d) => {
|
|
4910
|
+
r(!1), o.current.onHoverEnd?.(d);
|
|
4911
|
+
};
|
|
4912
|
+
return i.addEventListener("mouseenter", s), i.addEventListener("mouseleave", c), () => {
|
|
4913
|
+
i.removeEventListener("mouseenter", s), i.removeEventListener("mouseleave", c), r(!1);
|
|
4914
|
+
};
|
|
4915
|
+
}, []);
|
|
4916
|
+
return { hovered: t, ref: n };
|
|
4897
4917
|
}
|
|
4898
4918
|
function zl({
|
|
4899
4919
|
onVisible: e,
|
|
@@ -4901,14 +4921,14 @@ function zl({
|
|
|
4901
4921
|
rootMargin: r = "0px",
|
|
4902
4922
|
threshold: o = 0
|
|
4903
4923
|
} = {}) {
|
|
4904
|
-
const [n, i] =
|
|
4924
|
+
const [n, i] = C(!1), s = E(null), c = T(
|
|
4905
4925
|
([d]) => {
|
|
4906
4926
|
const u = d.isIntersecting;
|
|
4907
4927
|
i(u);
|
|
4908
4928
|
},
|
|
4909
4929
|
[e]
|
|
4910
4930
|
);
|
|
4911
|
-
return
|
|
4931
|
+
return A(() => {
|
|
4912
4932
|
if (s.current == null) return;
|
|
4913
4933
|
const d = new IntersectionObserver(c, {
|
|
4914
4934
|
root: t,
|
|
@@ -4918,7 +4938,7 @@ function zl({
|
|
|
4918
4938
|
return d.observe(s.current), () => {
|
|
4919
4939
|
s.current != null && d.unobserve(s.current);
|
|
4920
4940
|
};
|
|
4921
|
-
}, [s, t, r, o, c]),
|
|
4941
|
+
}, [s, t, r, o, c]), A(() => {
|
|
4922
4942
|
n && e?.();
|
|
4923
4943
|
}, [n]), { ref: s, isVisible: n };
|
|
4924
4944
|
}
|
|
@@ -4930,8 +4950,8 @@ function kl(e, t) {
|
|
|
4930
4950
|
} catch (c) {
|
|
4931
4951
|
return console.error(`Error parsing localStorage key "${e}":`, c), t !== void 0 ? t : void 0;
|
|
4932
4952
|
}
|
|
4933
|
-
}, [o, n] =
|
|
4934
|
-
return
|
|
4953
|
+
}, [o, n] = C(r);
|
|
4954
|
+
return A(() => {
|
|
4935
4955
|
try {
|
|
4936
4956
|
o !== void 0 ? localStorage.setItem(e, JSON.stringify(o)) : localStorage.removeItem(e);
|
|
4937
4957
|
} catch (c) {
|
|
@@ -4948,8 +4968,8 @@ function kl(e, t) {
|
|
|
4948
4968
|
}];
|
|
4949
4969
|
}
|
|
4950
4970
|
const Tl = (e) => {
|
|
4951
|
-
const [t, r] =
|
|
4952
|
-
return
|
|
4971
|
+
const [t, r] = C(!1);
|
|
4972
|
+
return A(() => {
|
|
4953
4973
|
const o = window.matchMedia(e), n = () => r(o.matches);
|
|
4954
4974
|
return n(), o.addEventListener("change", n), () => {
|
|
4955
4975
|
o.removeEventListener("change", n);
|
|
@@ -4960,15 +4980,15 @@ function Sl(e) {
|
|
|
4960
4980
|
$e(e) || console.error(
|
|
4961
4981
|
`useMemoizedFn expected parameter is a function, got ${typeof e}`
|
|
4962
4982
|
);
|
|
4963
|
-
const t =
|
|
4983
|
+
const t = E(e);
|
|
4964
4984
|
t.current = re(() => e, [e]);
|
|
4965
|
-
const r =
|
|
4985
|
+
const r = E(null);
|
|
4966
4986
|
return r.current || (r.current = function(...o) {
|
|
4967
4987
|
return t.current.apply(this, o);
|
|
4968
4988
|
}), r.current;
|
|
4969
4989
|
}
|
|
4970
4990
|
const Pl = (e) => {
|
|
4971
|
-
const [t, r] =
|
|
4991
|
+
const [t, r] = C(!1), [o, n] = C(null), [i, s] = C(null);
|
|
4972
4992
|
return {
|
|
4973
4993
|
mutate: T(
|
|
4974
4994
|
async (...d) => {
|
|
@@ -4991,7 +5011,7 @@ const Pl = (e) => {
|
|
|
4991
5011
|
};
|
|
4992
5012
|
};
|
|
4993
5013
|
function Il(e) {
|
|
4994
|
-
const [t, r] =
|
|
5014
|
+
const [t, r] = C(e), o = T(() => r(e), [e]), n = T(
|
|
4995
5015
|
(i) => {
|
|
4996
5016
|
r((s) => {
|
|
4997
5017
|
if ($e(i)) {
|
|
@@ -5012,6 +5032,13 @@ function Il(e) {
|
|
|
5012
5032
|
);
|
|
5013
5033
|
return [t, n, o];
|
|
5014
5034
|
}
|
|
5035
|
+
function _l(e) {
|
|
5036
|
+
const t = E(!1);
|
|
5037
|
+
A(() => {
|
|
5038
|
+
if (!t.current)
|
|
5039
|
+
return t.current = !0, e();
|
|
5040
|
+
}, []);
|
|
5041
|
+
}
|
|
5015
5042
|
function No({
|
|
5016
5043
|
totalItems: e,
|
|
5017
5044
|
pageSize: t,
|
|
@@ -5036,8 +5063,8 @@ function No({
|
|
|
5036
5063
|
h || d(Math.max(c - 1, 1));
|
|
5037
5064
|
},
|
|
5038
5065
|
goTo: (v) => {
|
|
5039
|
-
const
|
|
5040
|
-
|
|
5066
|
+
const R = Math.min(Math.max(1, v), u);
|
|
5067
|
+
R !== c && d(R);
|
|
5041
5068
|
},
|
|
5042
5069
|
currentPage: c,
|
|
5043
5070
|
maxPage: u,
|
|
@@ -5046,7 +5073,7 @@ function No({
|
|
|
5046
5073
|
range: { start: m, end: y }
|
|
5047
5074
|
};
|
|
5048
5075
|
}
|
|
5049
|
-
function
|
|
5076
|
+
function Dl(e) {
|
|
5050
5077
|
const t = () => document.getElementById(e), r = () => {
|
|
5051
5078
|
const n = document.createElement("div");
|
|
5052
5079
|
return n.id = e, n;
|
|
@@ -5054,14 +5081,14 @@ function _l(e) {
|
|
|
5054
5081
|
const n = t();
|
|
5055
5082
|
return n || r();
|
|
5056
5083
|
}, [e]);
|
|
5057
|
-
return
|
|
5084
|
+
return A(() => (document.getElementById(e) || document.body.appendChild(o), () => {
|
|
5058
5085
|
const n = document.getElementById(e);
|
|
5059
5086
|
n && document.body.removeChild(n);
|
|
5060
5087
|
}), [e, o]), {
|
|
5061
5088
|
render: (n) => tr(n, o)
|
|
5062
5089
|
};
|
|
5063
5090
|
}
|
|
5064
|
-
function
|
|
5091
|
+
function Al({
|
|
5065
5092
|
shouldPrevent: e,
|
|
5066
5093
|
message: t = "Es posible que no se guarden los cambios hayas hecho."
|
|
5067
5094
|
}) {
|
|
@@ -5069,7 +5096,7 @@ function Dl({
|
|
|
5069
5096
|
if (e)
|
|
5070
5097
|
return o.preventDefault(), o.returnValue = t, t;
|
|
5071
5098
|
};
|
|
5072
|
-
|
|
5099
|
+
A(() => (window.addEventListener("beforeunload", r), () => window.removeEventListener("beforeunload", r)), [t, e]);
|
|
5073
5100
|
}
|
|
5074
5101
|
const ue = "...", Co = ({
|
|
5075
5102
|
siblingCount: e = 1,
|
|
@@ -5101,8 +5128,8 @@ const ue = "...", Co = ({
|
|
|
5101
5128
|
paginationRange: d ?? []
|
|
5102
5129
|
};
|
|
5103
5130
|
};
|
|
5104
|
-
function
|
|
5105
|
-
const [t, r] =
|
|
5131
|
+
function Rl(e) {
|
|
5132
|
+
const [t, r] = C(/* @__PURE__ */ new Set()), o = T((p) => t.has(p), [t]), n = T((p) => {
|
|
5106
5133
|
r((h) => /* @__PURE__ */ new Set([...h, p]));
|
|
5107
5134
|
}, []), i = T((p) => {
|
|
5108
5135
|
r((h) => {
|
|
@@ -5135,8 +5162,8 @@ function Al(e) {
|
|
|
5135
5162
|
clear: u
|
|
5136
5163
|
};
|
|
5137
5164
|
}
|
|
5138
|
-
function
|
|
5139
|
-
const [r, o] =
|
|
5165
|
+
function El(e, t) {
|
|
5166
|
+
const [r, o] = C(0), n = t ?? e.length, i = () => {
|
|
5140
5167
|
o((u) => u >= n - 1 ? u : u + 1);
|
|
5141
5168
|
}, s = () => {
|
|
5142
5169
|
o((u) => u <= 0 ? u : u - 1);
|
|
@@ -5159,7 +5186,7 @@ function Ll(e, t) {
|
|
|
5159
5186
|
};
|
|
5160
5187
|
}
|
|
5161
5188
|
function zo(e = !1) {
|
|
5162
|
-
const [t, r] =
|
|
5189
|
+
const [t, r] = C(e);
|
|
5163
5190
|
return [t, (n) => {
|
|
5164
5191
|
r(n === void 0 ? !t : n);
|
|
5165
5192
|
}];
|
|
@@ -5213,7 +5240,7 @@ function To({
|
|
|
5213
5240
|
}), v = re(
|
|
5214
5241
|
() => ({ ...ko, ...p }),
|
|
5215
5242
|
[p]
|
|
5216
|
-
),
|
|
5243
|
+
), R = re(
|
|
5217
5244
|
() => ({
|
|
5218
5245
|
...x,
|
|
5219
5246
|
pageSize: b,
|
|
@@ -5233,7 +5260,7 @@ function To({
|
|
|
5233
5260
|
v
|
|
5234
5261
|
]
|
|
5235
5262
|
);
|
|
5236
|
-
return /* @__PURE__ */ a(Kt.Provider, { value:
|
|
5263
|
+
return /* @__PURE__ */ a(Kt.Provider, { value: R, children: /* @__PURE__ */ a(
|
|
5237
5264
|
"nav",
|
|
5238
5265
|
{
|
|
5239
5266
|
role: "navigation",
|
|
@@ -5308,7 +5335,7 @@ function So({
|
|
|
5308
5335
|
}
|
|
5309
5336
|
);
|
|
5310
5337
|
}
|
|
5311
|
-
function
|
|
5338
|
+
function Ll({
|
|
5312
5339
|
className: e,
|
|
5313
5340
|
buttonProps: t,
|
|
5314
5341
|
children: r
|
|
@@ -5365,7 +5392,7 @@ function Io({
|
|
|
5365
5392
|
}
|
|
5366
5393
|
);
|
|
5367
5394
|
}
|
|
5368
|
-
function
|
|
5395
|
+
function Fl({
|
|
5369
5396
|
className: e,
|
|
5370
5397
|
buttonProps: t,
|
|
5371
5398
|
children: r
|
|
@@ -5407,7 +5434,7 @@ function _o({
|
|
|
5407
5434
|
}
|
|
5408
5435
|
);
|
|
5409
5436
|
}
|
|
5410
|
-
function
|
|
5437
|
+
function Ml({
|
|
5411
5438
|
className: e,
|
|
5412
5439
|
linkClassName: t,
|
|
5413
5440
|
ellipsisClassName: r
|
|
@@ -5438,7 +5465,7 @@ function Fl({
|
|
|
5438
5465
|
}
|
|
5439
5466
|
);
|
|
5440
5467
|
}
|
|
5441
|
-
function
|
|
5468
|
+
function Vl({
|
|
5442
5469
|
children: e,
|
|
5443
5470
|
className: t,
|
|
5444
5471
|
...r
|
|
@@ -5454,7 +5481,7 @@ function Ml({
|
|
|
5454
5481
|
}
|
|
5455
5482
|
);
|
|
5456
5483
|
}
|
|
5457
|
-
function
|
|
5484
|
+
function jl({
|
|
5458
5485
|
children: e,
|
|
5459
5486
|
className: t,
|
|
5460
5487
|
...r
|
|
@@ -5511,7 +5538,7 @@ function Ao({
|
|
|
5511
5538
|
}
|
|
5512
5539
|
);
|
|
5513
5540
|
}
|
|
5514
|
-
function
|
|
5541
|
+
function Ol({
|
|
5515
5542
|
sizes: e = tt,
|
|
5516
5543
|
selectClassName: t,
|
|
5517
5544
|
rangeClassName: r,
|
|
@@ -5533,7 +5560,7 @@ function jl({
|
|
|
5533
5560
|
/* @__PURE__ */ a(Io, { className: n })
|
|
5534
5561
|
] });
|
|
5535
5562
|
}
|
|
5536
|
-
function
|
|
5563
|
+
function Gl({
|
|
5537
5564
|
className: e,
|
|
5538
5565
|
showIcon: t = /* @__PURE__ */ a(pr, { className: "h-4 w-4" }),
|
|
5539
5566
|
hideIcon: r = /* @__PURE__ */ a(mr, { className: "h-4 w-4" }),
|
|
@@ -5596,7 +5623,7 @@ function Ol({
|
|
|
5596
5623
|
}
|
|
5597
5624
|
);
|
|
5598
5625
|
}
|
|
5599
|
-
const
|
|
5626
|
+
const $l = $.createHandle, rt = $.Root;
|
|
5600
5627
|
function at({
|
|
5601
5628
|
className: e,
|
|
5602
5629
|
children: t,
|
|
@@ -5665,12 +5692,12 @@ function nt({
|
|
|
5665
5692
|
}
|
|
5666
5693
|
) });
|
|
5667
5694
|
}
|
|
5668
|
-
function
|
|
5695
|
+
function Bl({
|
|
5669
5696
|
...e
|
|
5670
5697
|
}) {
|
|
5671
5698
|
return /* @__PURE__ */ a($.Close, { "data-slot": "popover-close", ...e });
|
|
5672
5699
|
}
|
|
5673
|
-
function
|
|
5700
|
+
function Ro({
|
|
5674
5701
|
className: e,
|
|
5675
5702
|
...t
|
|
5676
5703
|
}) {
|
|
@@ -5696,7 +5723,7 @@ function Eo({
|
|
|
5696
5723
|
}
|
|
5697
5724
|
);
|
|
5698
5725
|
}
|
|
5699
|
-
function
|
|
5726
|
+
function Hl({
|
|
5700
5727
|
trigger: e,
|
|
5701
5728
|
children: t,
|
|
5702
5729
|
title: r,
|
|
@@ -5728,7 +5755,7 @@ function Bl({
|
|
|
5728
5755
|
viewportClassName: m?.viewport,
|
|
5729
5756
|
children: [
|
|
5730
5757
|
(r ?? o) && /* @__PURE__ */ f("div", { className: "mb-2", children: [
|
|
5731
|
-
r && /* @__PURE__ */ a(
|
|
5758
|
+
r && /* @__PURE__ */ a(Ro, { children: r }),
|
|
5732
5759
|
o && /* @__PURE__ */ a(Eo, { children: o })
|
|
5733
5760
|
] }),
|
|
5734
5761
|
t
|
|
@@ -5737,7 +5764,7 @@ function Bl({
|
|
|
5737
5764
|
)
|
|
5738
5765
|
] });
|
|
5739
5766
|
}
|
|
5740
|
-
const
|
|
5767
|
+
const Lo = ee(
|
|
5741
5768
|
"block w-full overflow-hidden rounded-full bg-input",
|
|
5742
5769
|
{
|
|
5743
5770
|
variants: {
|
|
@@ -5774,7 +5801,7 @@ function Mo({
|
|
|
5774
5801
|
}
|
|
5775
5802
|
);
|
|
5776
5803
|
}
|
|
5777
|
-
function
|
|
5804
|
+
function Xl({
|
|
5778
5805
|
className: e,
|
|
5779
5806
|
...t
|
|
5780
5807
|
}) {
|
|
@@ -5795,7 +5822,7 @@ function Vo({
|
|
|
5795
5822
|
return /* @__PURE__ */ a(
|
|
5796
5823
|
be.Track,
|
|
5797
5824
|
{
|
|
5798
|
-
className: l(
|
|
5825
|
+
className: l(Lo({ size: t }), e),
|
|
5799
5826
|
"data-slot": "progress-track",
|
|
5800
5827
|
...r
|
|
5801
5828
|
}
|
|
@@ -5815,7 +5842,7 @@ function jo({
|
|
|
5815
5842
|
}
|
|
5816
5843
|
);
|
|
5817
5844
|
}
|
|
5818
|
-
function
|
|
5845
|
+
function Kl({
|
|
5819
5846
|
className: e,
|
|
5820
5847
|
...t
|
|
5821
5848
|
}) {
|
|
@@ -5828,7 +5855,7 @@ function Xl({
|
|
|
5828
5855
|
}
|
|
5829
5856
|
);
|
|
5830
5857
|
}
|
|
5831
|
-
function
|
|
5858
|
+
function Ul({
|
|
5832
5859
|
size: e,
|
|
5833
5860
|
variant: t,
|
|
5834
5861
|
className: r,
|
|
@@ -5838,7 +5865,7 @@ function Kl({
|
|
|
5838
5865
|
}) {
|
|
5839
5866
|
return /* @__PURE__ */ a(Mo, { className: r, ...i, children: /* @__PURE__ */ a(Vo, { size: e, ...o, children: /* @__PURE__ */ a(jo, { variant: t, ...n }) }) });
|
|
5840
5867
|
}
|
|
5841
|
-
function
|
|
5868
|
+
function Wl({ className: e, ...t }) {
|
|
5842
5869
|
return /* @__PURE__ */ a(
|
|
5843
5870
|
"div",
|
|
5844
5871
|
{
|
|
@@ -5851,7 +5878,7 @@ function Ul({ className: e, ...t }) {
|
|
|
5851
5878
|
}
|
|
5852
5879
|
);
|
|
5853
5880
|
}
|
|
5854
|
-
const
|
|
5881
|
+
const Yl = ({
|
|
5855
5882
|
as: e = "div",
|
|
5856
5883
|
inline: t = !1,
|
|
5857
5884
|
direction: r = "horizontal",
|
|
@@ -5943,7 +5970,7 @@ function Go({
|
|
|
5943
5970
|
indicators: n,
|
|
5944
5971
|
triggerMode: i
|
|
5945
5972
|
},
|
|
5946
|
-
children:
|
|
5973
|
+
children: z({
|
|
5947
5974
|
defaultTagName: "div",
|
|
5948
5975
|
render: c,
|
|
5949
5976
|
props: k(m, u)
|
|
@@ -5968,7 +5995,7 @@ function $o({
|
|
|
5968
5995
|
),
|
|
5969
5996
|
children: r
|
|
5970
5997
|
};
|
|
5971
|
-
return
|
|
5998
|
+
return z({
|
|
5972
5999
|
defaultTagName: "nav",
|
|
5973
6000
|
render: t,
|
|
5974
6001
|
props: k(i, o)
|
|
@@ -5998,7 +6025,7 @@ function Bo({
|
|
|
5998
6025
|
Wt.Provider,
|
|
5999
6026
|
{
|
|
6000
6027
|
value: { step: e, state: d, isDisabled: t, isLoading: u },
|
|
6001
|
-
children:
|
|
6028
|
+
children: z({
|
|
6002
6029
|
defaultTagName: "div",
|
|
6003
6030
|
render: n,
|
|
6004
6031
|
props: k(p, s)
|
|
@@ -6060,7 +6087,7 @@ function Ho({
|
|
|
6060
6087
|
onKeyDown: y,
|
|
6061
6088
|
children: r
|
|
6062
6089
|
};
|
|
6063
|
-
return
|
|
6090
|
+
return z({
|
|
6064
6091
|
defaultTagName: "button",
|
|
6065
6092
|
render: t,
|
|
6066
6093
|
props: k(b, o)
|
|
@@ -6084,7 +6111,7 @@ function Xo({
|
|
|
6084
6111
|
),
|
|
6085
6112
|
children: /* @__PURE__ */ a("div", { className: "absolute", children: c || r })
|
|
6086
6113
|
};
|
|
6087
|
-
return
|
|
6114
|
+
return z({
|
|
6088
6115
|
defaultTagName: "div",
|
|
6089
6116
|
render: t,
|
|
6090
6117
|
props: k(d, o)
|
|
@@ -6108,7 +6135,7 @@ function Ko({
|
|
|
6108
6135
|
),
|
|
6109
6136
|
children: r
|
|
6110
6137
|
};
|
|
6111
|
-
return
|
|
6138
|
+
return z({
|
|
6112
6139
|
defaultTagName: "div",
|
|
6113
6140
|
render: t,
|
|
6114
6141
|
props: k(i, o)
|
|
@@ -6126,7 +6153,7 @@ function Uo({
|
|
|
6126
6153
|
className: l("font-medium text-sm leading-none", e),
|
|
6127
6154
|
children: r
|
|
6128
6155
|
};
|
|
6129
|
-
return
|
|
6156
|
+
return z({
|
|
6130
6157
|
defaultTagName: "h3",
|
|
6131
6158
|
render: t,
|
|
6132
6159
|
props: k(i, o)
|
|
@@ -6144,7 +6171,7 @@ function Wo({
|
|
|
6144
6171
|
className: l("text-muted-foreground text-sm", e),
|
|
6145
6172
|
children: r
|
|
6146
6173
|
};
|
|
6147
|
-
return
|
|
6174
|
+
return z({
|
|
6148
6175
|
defaultTagName: "p",
|
|
6149
6176
|
render: t,
|
|
6150
6177
|
props: k(i, o)
|
|
@@ -6162,7 +6189,7 @@ function Yo({
|
|
|
6162
6189
|
className: l("w-full", e),
|
|
6163
6190
|
children: r
|
|
6164
6191
|
};
|
|
6165
|
-
return
|
|
6192
|
+
return z({
|
|
6166
6193
|
defaultTagName: "div",
|
|
6167
6194
|
render: t,
|
|
6168
6195
|
props: k(i, o)
|
|
@@ -6188,13 +6215,13 @@ function qo({
|
|
|
6188
6215
|
className: l("w-full", r, !c && "hidden"),
|
|
6189
6216
|
children: n
|
|
6190
6217
|
};
|
|
6191
|
-
return
|
|
6218
|
+
return z({
|
|
6192
6219
|
defaultTagName: "div",
|
|
6193
6220
|
render: o,
|
|
6194
6221
|
props: k(d, i)
|
|
6195
6222
|
});
|
|
6196
6223
|
}
|
|
6197
|
-
function
|
|
6224
|
+
function ql({ items: e, classNames: t, ...r }) {
|
|
6198
6225
|
const o = e.some((n) => n.content != null);
|
|
6199
6226
|
return /* @__PURE__ */ f(Go, { ...r, children: [
|
|
6200
6227
|
/* @__PURE__ */ a($o, { className: t?.nav, children: e.map((n, i) => {
|
|
@@ -6273,7 +6300,7 @@ function Zo({
|
|
|
6273
6300
|
}
|
|
6274
6301
|
);
|
|
6275
6302
|
}
|
|
6276
|
-
function
|
|
6303
|
+
function Jl({
|
|
6277
6304
|
children: e,
|
|
6278
6305
|
label: t,
|
|
6279
6306
|
className: r,
|
|
@@ -6353,7 +6380,7 @@ function ti({
|
|
|
6353
6380
|
}
|
|
6354
6381
|
);
|
|
6355
6382
|
}
|
|
6356
|
-
function
|
|
6383
|
+
function Zl({
|
|
6357
6384
|
className: e,
|
|
6358
6385
|
...t
|
|
6359
6386
|
}) {
|
|
@@ -6408,7 +6435,7 @@ function ai({ className: e, ...t }) {
|
|
|
6408
6435
|
}
|
|
6409
6436
|
);
|
|
6410
6437
|
}
|
|
6411
|
-
function
|
|
6438
|
+
function Ql({
|
|
6412
6439
|
className: e,
|
|
6413
6440
|
...t
|
|
6414
6441
|
}) {
|
|
@@ -6421,7 +6448,7 @@ function Zl({
|
|
|
6421
6448
|
}
|
|
6422
6449
|
);
|
|
6423
6450
|
}
|
|
6424
|
-
function
|
|
6451
|
+
function ec({
|
|
6425
6452
|
data: e = [],
|
|
6426
6453
|
columns: t = [],
|
|
6427
6454
|
getRowKey: r,
|
|
@@ -6461,7 +6488,7 @@ function Ql({
|
|
|
6461
6488
|
}
|
|
6462
6489
|
);
|
|
6463
6490
|
}
|
|
6464
|
-
function
|
|
6491
|
+
function tc({
|
|
6465
6492
|
className: e,
|
|
6466
6493
|
...t
|
|
6467
6494
|
}) {
|
|
@@ -6477,7 +6504,7 @@ function ec({
|
|
|
6477
6504
|
}
|
|
6478
6505
|
);
|
|
6479
6506
|
}
|
|
6480
|
-
function
|
|
6507
|
+
function rc({
|
|
6481
6508
|
variant: e = "underline",
|
|
6482
6509
|
centered: t = !1,
|
|
6483
6510
|
className: r,
|
|
@@ -6513,7 +6540,7 @@ function tc({
|
|
|
6513
6540
|
}
|
|
6514
6541
|
);
|
|
6515
6542
|
}
|
|
6516
|
-
function
|
|
6543
|
+
function ac({
|
|
6517
6544
|
className: e,
|
|
6518
6545
|
...t
|
|
6519
6546
|
}) {
|
|
@@ -6529,7 +6556,7 @@ function rc({
|
|
|
6529
6556
|
}
|
|
6530
6557
|
);
|
|
6531
6558
|
}
|
|
6532
|
-
function
|
|
6559
|
+
function nc({
|
|
6533
6560
|
className: e,
|
|
6534
6561
|
...t
|
|
6535
6562
|
}) {
|
|
@@ -6562,13 +6589,13 @@ const ni = ee(
|
|
|
6562
6589
|
}
|
|
6563
6590
|
}
|
|
6564
6591
|
);
|
|
6565
|
-
function
|
|
6592
|
+
function oc({
|
|
6566
6593
|
className: e,
|
|
6567
6594
|
variant: t = "default",
|
|
6568
6595
|
render: r,
|
|
6569
6596
|
...o
|
|
6570
6597
|
}) {
|
|
6571
|
-
return
|
|
6598
|
+
return z({
|
|
6572
6599
|
defaultTagName: "span",
|
|
6573
6600
|
props: k(
|
|
6574
6601
|
{
|
|
@@ -6583,7 +6610,7 @@ function nc({
|
|
|
6583
6610
|
}
|
|
6584
6611
|
});
|
|
6585
6612
|
}
|
|
6586
|
-
function
|
|
6613
|
+
function ic({
|
|
6587
6614
|
className: e,
|
|
6588
6615
|
onValueChange: t,
|
|
6589
6616
|
...r
|
|
@@ -6639,7 +6666,7 @@ function ii({
|
|
|
6639
6666
|
"data-slot": "timeline",
|
|
6640
6667
|
children: s
|
|
6641
6668
|
};
|
|
6642
|
-
return /* @__PURE__ */ a(Yt.Provider, { value: { activeStep: d, setActiveStep: u }, children:
|
|
6669
|
+
return /* @__PURE__ */ a(Yt.Provider, { value: { activeStep: d, setActiveStep: u }, children: z({
|
|
6643
6670
|
defaultTagName: "div",
|
|
6644
6671
|
render: i,
|
|
6645
6672
|
props: k(p, c)
|
|
@@ -6661,13 +6688,13 @@ function Ee({
|
|
|
6661
6688
|
"data-slot": "timeline-item",
|
|
6662
6689
|
children: o
|
|
6663
6690
|
};
|
|
6664
|
-
return
|
|
6691
|
+
return z({
|
|
6665
6692
|
defaultTagName: "div",
|
|
6666
6693
|
render: r,
|
|
6667
6694
|
props: k(s, n)
|
|
6668
6695
|
});
|
|
6669
6696
|
}
|
|
6670
|
-
function
|
|
6697
|
+
function Le({
|
|
6671
6698
|
className: e,
|
|
6672
6699
|
render: t,
|
|
6673
6700
|
children: r,
|
|
@@ -6678,7 +6705,7 @@ function Re({
|
|
|
6678
6705
|
"data-slot": "timeline-header",
|
|
6679
6706
|
children: r
|
|
6680
6707
|
};
|
|
6681
|
-
return
|
|
6708
|
+
return z({
|
|
6682
6709
|
defaultTagName: "div",
|
|
6683
6710
|
render: t,
|
|
6684
6711
|
props: k(n, o)
|
|
@@ -6695,7 +6722,7 @@ function Fe({
|
|
|
6695
6722
|
"data-slot": "timeline-title",
|
|
6696
6723
|
children: r
|
|
6697
6724
|
};
|
|
6698
|
-
return
|
|
6725
|
+
return z({
|
|
6699
6726
|
defaultTagName: "h3",
|
|
6700
6727
|
render: t,
|
|
6701
6728
|
props: k(n, o)
|
|
@@ -6715,7 +6742,7 @@ function Me({
|
|
|
6715
6742
|
"data-slot": "timeline-date",
|
|
6716
6743
|
children: r
|
|
6717
6744
|
};
|
|
6718
|
-
return
|
|
6745
|
+
return z({
|
|
6719
6746
|
defaultTagName: "time",
|
|
6720
6747
|
render: t,
|
|
6721
6748
|
props: k(n, o)
|
|
@@ -6732,7 +6759,7 @@ function Ve({
|
|
|
6732
6759
|
"data-slot": "timeline-content",
|
|
6733
6760
|
children: r
|
|
6734
6761
|
};
|
|
6735
|
-
return
|
|
6762
|
+
return z({
|
|
6736
6763
|
defaultTagName: "div",
|
|
6737
6764
|
render: t,
|
|
6738
6765
|
props: k(n, o)
|
|
@@ -6753,7 +6780,7 @@ function je({
|
|
|
6753
6780
|
"data-slot": "timeline-indicator",
|
|
6754
6781
|
children: r
|
|
6755
6782
|
};
|
|
6756
|
-
return
|
|
6783
|
+
return z({
|
|
6757
6784
|
defaultTagName: "div",
|
|
6758
6785
|
render: t,
|
|
6759
6786
|
props: k(n, o)
|
|
@@ -6774,13 +6801,13 @@ function Oe({
|
|
|
6774
6801
|
"data-slot": "timeline-separator",
|
|
6775
6802
|
children: r
|
|
6776
6803
|
};
|
|
6777
|
-
return
|
|
6804
|
+
return z({
|
|
6778
6805
|
defaultTagName: "div",
|
|
6779
6806
|
render: t,
|
|
6780
6807
|
props: k(n, o)
|
|
6781
6808
|
});
|
|
6782
6809
|
}
|
|
6783
|
-
function
|
|
6810
|
+
function sc({
|
|
6784
6811
|
items: e,
|
|
6785
6812
|
variant: t = "default",
|
|
6786
6813
|
classNames: r,
|
|
@@ -6798,7 +6825,7 @@ function ic({
|
|
|
6798
6825
|
r?.item
|
|
6799
6826
|
),
|
|
6800
6827
|
children: [
|
|
6801
|
-
/* @__PURE__ */ f(
|
|
6828
|
+
/* @__PURE__ */ f(Le, { className: r?.header, children: [
|
|
6802
6829
|
/* @__PURE__ */ a(Oe, { className: r?.separator }),
|
|
6803
6830
|
n.date ? /* @__PURE__ */ a(Me, { className: r?.date, children: n.date }) : null,
|
|
6804
6831
|
n.title ? /* @__PURE__ */ a(Fe, { className: r?.title, children: n.title }) : null,
|
|
@@ -6817,7 +6844,7 @@ function ic({
|
|
|
6817
6844
|
r?.item
|
|
6818
6845
|
),
|
|
6819
6846
|
children: [
|
|
6820
|
-
/* @__PURE__ */ f(
|
|
6847
|
+
/* @__PURE__ */ f(Le, { className: r?.header, children: [
|
|
6821
6848
|
/* @__PURE__ */ a(Oe, { className: r?.separator }),
|
|
6822
6849
|
n.date ? /* @__PURE__ */ a(
|
|
6823
6850
|
Me,
|
|
@@ -6843,7 +6870,7 @@ function ic({
|
|
|
6843
6870
|
},
|
|
6844
6871
|
i
|
|
6845
6872
|
) : /* @__PURE__ */ f(Ee, { step: i + 1, className: r?.item, children: [
|
|
6846
|
-
/* @__PURE__ */ f(
|
|
6873
|
+
/* @__PURE__ */ f(Le, { className: r?.header, children: [
|
|
6847
6874
|
n.date ? /* @__PURE__ */ a(Me, { className: r?.date, children: n.date }) : null,
|
|
6848
6875
|
n.title ? /* @__PURE__ */ a(Fe, { className: r?.title, children: n.title }) : null
|
|
6849
6876
|
] }),
|
|
@@ -6939,14 +6966,14 @@ function li() {
|
|
|
6939
6966
|
toasts: e.toasts
|
|
6940
6967
|
};
|
|
6941
6968
|
}
|
|
6942
|
-
function
|
|
6969
|
+
function lc() {
|
|
6943
6970
|
return ot(V.createToastManager());
|
|
6944
6971
|
}
|
|
6945
6972
|
let Y = null;
|
|
6946
6973
|
function de(e) {
|
|
6947
6974
|
return typeof e == "string" ? { title: e } : e;
|
|
6948
6975
|
}
|
|
6949
|
-
const
|
|
6976
|
+
const cc = Object.assign(
|
|
6950
6977
|
(e) => Y?.add({ ...de(e) }),
|
|
6951
6978
|
{
|
|
6952
6979
|
success: (e) => Y?.add({ variant: "success", ...de(e) }),
|
|
@@ -6958,7 +6985,7 @@ const lc = Object.assign(
|
|
|
6958
6985
|
);
|
|
6959
6986
|
function ci() {
|
|
6960
6987
|
const e = V.useToastManager();
|
|
6961
|
-
return Y = re(() => ot(e), [e]),
|
|
6988
|
+
return Y = re(() => ot(e), [e]), A(
|
|
6962
6989
|
() => () => {
|
|
6963
6990
|
Y = null;
|
|
6964
6991
|
},
|
|
@@ -7027,7 +7054,7 @@ function ui() {
|
|
|
7027
7054
|
V.Close,
|
|
7028
7055
|
{
|
|
7029
7056
|
className: "absolute top-2 right-2 flex h-4 w-4 items-center justify-center rounded border-none bg-transparent text-current/50 hover:bg-foreground/10 hover:text-current",
|
|
7030
|
-
"aria-label": "
|
|
7057
|
+
"aria-label": "Cerrar",
|
|
7031
7058
|
children: /* @__PURE__ */ a(We, { className: "h-3 w-3" })
|
|
7032
7059
|
}
|
|
7033
7060
|
)
|
|
@@ -7082,7 +7109,7 @@ function hi() {
|
|
|
7082
7109
|
throw new Error("TreeItemLabel must be used within a TreeItem");
|
|
7083
7110
|
return e;
|
|
7084
7111
|
}
|
|
7085
|
-
function
|
|
7112
|
+
function dc({
|
|
7086
7113
|
tree: e,
|
|
7087
7114
|
indent: t = 20,
|
|
7088
7115
|
className: r,
|
|
@@ -7100,13 +7127,13 @@ function cc({
|
|
|
7100
7127
|
"--tree-indent": `${t}px`
|
|
7101
7128
|
}
|
|
7102
7129
|
};
|
|
7103
|
-
return /* @__PURE__ */ a(qt.Provider, { value: { tree: e }, children:
|
|
7130
|
+
return /* @__PURE__ */ a(qt.Provider, { value: { tree: e }, children: z({
|
|
7104
7131
|
defaultTagName: "div",
|
|
7105
7132
|
render: o,
|
|
7106
7133
|
props: k(d, i)
|
|
7107
7134
|
}) });
|
|
7108
7135
|
}
|
|
7109
|
-
function
|
|
7136
|
+
function uc({
|
|
7110
7137
|
item: e,
|
|
7111
7138
|
leafIcon: t,
|
|
7112
7139
|
parentIcon: r = fi,
|
|
@@ -7141,7 +7168,7 @@ function dc({
|
|
|
7141
7168
|
),
|
|
7142
7169
|
children: i ?? b
|
|
7143
7170
|
};
|
|
7144
|
-
return /* @__PURE__ */ a(Jt.Provider, { value: { item: e }, children:
|
|
7171
|
+
return /* @__PURE__ */ a(Jt.Provider, { value: { item: e }, children: z({
|
|
7145
7172
|
defaultTagName: "button",
|
|
7146
7173
|
render: n,
|
|
7147
7174
|
props: k(g, c)
|
|
@@ -7167,13 +7194,13 @@ function bi({
|
|
|
7167
7194
|
),
|
|
7168
7195
|
children: r ?? n.getItemName()
|
|
7169
7196
|
};
|
|
7170
|
-
return
|
|
7197
|
+
return z({
|
|
7171
7198
|
defaultTagName: "span",
|
|
7172
7199
|
render: t,
|
|
7173
7200
|
props: k(i, o)
|
|
7174
7201
|
});
|
|
7175
7202
|
}
|
|
7176
|
-
function
|
|
7203
|
+
function pc({
|
|
7177
7204
|
className: e,
|
|
7178
7205
|
render: t,
|
|
7179
7206
|
style: r,
|
|
@@ -7191,23 +7218,23 @@ function uc({
|
|
|
7191
7218
|
e
|
|
7192
7219
|
)
|
|
7193
7220
|
};
|
|
7194
|
-
return
|
|
7221
|
+
return z({
|
|
7195
7222
|
defaultTagName: "div",
|
|
7196
7223
|
render: t,
|
|
7197
7224
|
props: k(s, o)
|
|
7198
7225
|
});
|
|
7199
7226
|
}
|
|
7200
|
-
function
|
|
7227
|
+
function mc({
|
|
7201
7228
|
children: e,
|
|
7202
7229
|
tooltipDelay: t,
|
|
7203
7230
|
...r
|
|
7204
7231
|
}) {
|
|
7205
7232
|
return /* @__PURE__ */ a(Ia, { delay: t, children: /* @__PURE__ */ a(di, { ...r, children: e }) });
|
|
7206
7233
|
}
|
|
7207
|
-
const Zt = {}, Qt = j({ theme: Zt }), vi = () => O(Qt),
|
|
7234
|
+
const Zt = {}, Qt = j({ theme: Zt }), vi = () => O(Qt), fc = ({
|
|
7208
7235
|
children: e,
|
|
7209
7236
|
theme: t = Zt
|
|
7210
|
-
}) => /* @__PURE__ */ a(Qt.Provider, { value: { theme: t }, children: e }),
|
|
7237
|
+
}) => /* @__PURE__ */ a(Qt.Provider, { value: { theme: t }, children: e }), gc = (e, t, r = {}) => {
|
|
7211
7238
|
const { theme: o } = vi(), n = o[e] || {};
|
|
7212
7239
|
return {
|
|
7213
7240
|
...r,
|
|
@@ -7219,9 +7246,9 @@ export {
|
|
|
7219
7246
|
ls as Accordion,
|
|
7220
7247
|
Fr as AccordionContent,
|
|
7221
7248
|
Er as AccordionItem,
|
|
7222
|
-
|
|
7223
|
-
|
|
7224
|
-
|
|
7249
|
+
yc as AccordionPrimitive,
|
|
7250
|
+
Rr as AccordionRoot,
|
|
7251
|
+
Lr as AccordionTrigger,
|
|
7225
7252
|
cs as AlertDialog,
|
|
7226
7253
|
Gr as AlertDialogBackdrop,
|
|
7227
7254
|
ct as AlertDialogClose,
|
|
@@ -7229,7 +7256,7 @@ export {
|
|
|
7229
7256
|
Ur as AlertDialogFooter,
|
|
7230
7257
|
Kr as AlertDialogHeader,
|
|
7231
7258
|
Br as AlertDialogPopup,
|
|
7232
|
-
|
|
7259
|
+
Nc as AlertDialogPrimitive,
|
|
7233
7260
|
jr as AlertDialogRoot,
|
|
7234
7261
|
Hr as AlertDialogTitle,
|
|
7235
7262
|
Or as AlertDialogTrigger,
|
|
@@ -7244,7 +7271,7 @@ export {
|
|
|
7244
7271
|
Qr as AutocompleteItem,
|
|
7245
7272
|
Zr as AutocompleteList,
|
|
7246
7273
|
Jr as AutocompletePopup,
|
|
7247
|
-
|
|
7274
|
+
zc as AutocompletePrimitive,
|
|
7248
7275
|
Yr as AutocompleteRoot,
|
|
7249
7276
|
ms as AutocompleteRow,
|
|
7250
7277
|
ds as AutocompleteSeparator,
|
|
@@ -7257,7 +7284,7 @@ export {
|
|
|
7257
7284
|
Ts as AvatarGroup,
|
|
7258
7285
|
Ss as AvatarGroupCount,
|
|
7259
7286
|
ia as AvatarImage,
|
|
7260
|
-
|
|
7287
|
+
_c as AvatarPrimitive,
|
|
7261
7288
|
oa as AvatarRoot,
|
|
7262
7289
|
Mr as BaseButton,
|
|
7263
7290
|
Q as Button,
|
|
@@ -7270,13 +7297,13 @@ export {
|
|
|
7270
7297
|
Na as CardHeader,
|
|
7271
7298
|
wa as CardRoot,
|
|
7272
7299
|
Ca as CardTitle,
|
|
7273
|
-
|
|
7300
|
+
Ls as Center,
|
|
7274
7301
|
Va as Checkbox,
|
|
7275
7302
|
js as CheckboxGroup,
|
|
7276
7303
|
Je as CheckboxGroupContext,
|
|
7277
7304
|
Vs as CheckboxGroupRoot,
|
|
7278
|
-
|
|
7279
|
-
|
|
7305
|
+
Rt as CheckboxIndicator,
|
|
7306
|
+
Ec as CheckboxPrimitive,
|
|
7280
7307
|
At as CheckboxRoot,
|
|
7281
7308
|
Ws as Combobox,
|
|
7282
7309
|
an as ComboboxChip,
|
|
@@ -7293,7 +7320,7 @@ export {
|
|
|
7293
7320
|
Ja as ComboboxItem,
|
|
7294
7321
|
en as ComboboxList,
|
|
7295
7322
|
qa as ComboboxPopup,
|
|
7296
|
-
|
|
7323
|
+
$c as ComboboxPrimitive,
|
|
7297
7324
|
Ka as ComboboxRoot,
|
|
7298
7325
|
Xs as ComboboxRow,
|
|
7299
7326
|
Gs as ComboboxSearchInput,
|
|
@@ -7312,7 +7339,7 @@ export {
|
|
|
7312
7339
|
_n as DialogFooter,
|
|
7313
7340
|
In as DialogHeader,
|
|
7314
7341
|
Tn as DialogPopup,
|
|
7315
|
-
|
|
7342
|
+
Kc as DialogPrimitive,
|
|
7316
7343
|
Nn as DialogRoot,
|
|
7317
7344
|
Sn as DialogTitle,
|
|
7318
7345
|
Cn as DialogTrigger,
|
|
@@ -7324,7 +7351,7 @@ export {
|
|
|
7324
7351
|
Mn as DropzoneItem,
|
|
7325
7352
|
jn as DropzoneRejectedFiles,
|
|
7326
7353
|
En as DropzoneRoot,
|
|
7327
|
-
|
|
7354
|
+
Ln as DropzoneTrigger,
|
|
7328
7355
|
al as Empty,
|
|
7329
7356
|
Kn as EmptyContent,
|
|
7330
7357
|
Xn as EmptyDescription,
|
|
@@ -7339,23 +7366,23 @@ export {
|
|
|
7339
7366
|
Ms as FieldItem,
|
|
7340
7367
|
Oa as FieldLabel,
|
|
7341
7368
|
Ba as FieldLegend,
|
|
7342
|
-
|
|
7369
|
+
Fc as FieldPrimitive,
|
|
7343
7370
|
ja as FieldRoot,
|
|
7344
7371
|
$a as FieldSet,
|
|
7345
7372
|
jt as FieldValidity,
|
|
7346
|
-
|
|
7373
|
+
Vc as FieldsetPrimitive,
|
|
7347
7374
|
P as FileType,
|
|
7348
7375
|
rl as FileTypeGroups,
|
|
7349
7376
|
Un as Form,
|
|
7350
|
-
|
|
7377
|
+
qc as FormPrimitive,
|
|
7351
7378
|
ws as HookField,
|
|
7352
7379
|
ys as HookForm,
|
|
7353
7380
|
Wr as Input,
|
|
7354
|
-
|
|
7381
|
+
Tc as InputPrimitive,
|
|
7355
7382
|
nl as Kbd,
|
|
7356
7383
|
ol as KbdGroup,
|
|
7357
7384
|
Se as Label,
|
|
7358
|
-
|
|
7385
|
+
mc as LibraryProvider,
|
|
7359
7386
|
il as Loader,
|
|
7360
7387
|
ll as Menu,
|
|
7361
7388
|
to as MenuCheckboxItem,
|
|
@@ -7368,7 +7395,7 @@ export {
|
|
|
7368
7395
|
ao as MenuRadioItem,
|
|
7369
7396
|
Yn as MenuRoot,
|
|
7370
7397
|
no as MenuSeparator,
|
|
7371
|
-
|
|
7398
|
+
Re as MenuShortcut,
|
|
7372
7399
|
Zn as MenuSub,
|
|
7373
7400
|
eo as MenuSubContent,
|
|
7374
7401
|
Qn as MenuSubTrigger,
|
|
@@ -7379,44 +7406,44 @@ export {
|
|
|
7379
7406
|
io as NumberInputGroup,
|
|
7380
7407
|
co as NumberInputIncrement,
|
|
7381
7408
|
so as NumberInputInput,
|
|
7382
|
-
|
|
7409
|
+
Zc as NumberInputPrimitive,
|
|
7383
7410
|
oo as NumberInputRoot,
|
|
7384
7411
|
cl as NumberInputScrubArea,
|
|
7385
7412
|
dl as NumberInputScrubAreaCursor,
|
|
7386
7413
|
tt as PAGINATION_SIZES,
|
|
7387
|
-
|
|
7414
|
+
Ol as Pagination,
|
|
7388
7415
|
_o as PaginationEllipsis,
|
|
7389
|
-
|
|
7390
|
-
|
|
7416
|
+
Ll as PaginationFirst,
|
|
7417
|
+
Fl as PaginationLast,
|
|
7391
7418
|
So as PaginationLink,
|
|
7392
7419
|
Io as PaginationNext,
|
|
7393
|
-
|
|
7394
|
-
|
|
7420
|
+
jl as PaginationPageInfo,
|
|
7421
|
+
Ml as PaginationPages,
|
|
7395
7422
|
Po as PaginationPrevious,
|
|
7396
7423
|
Do as PaginationRange,
|
|
7397
7424
|
To as PaginationRoot,
|
|
7398
7425
|
Ao as PaginationSizeSelect,
|
|
7399
|
-
|
|
7400
|
-
|
|
7401
|
-
|
|
7402
|
-
|
|
7403
|
-
|
|
7426
|
+
Vl as PaginationTotal,
|
|
7427
|
+
Gl as Password,
|
|
7428
|
+
Gl as PasswordRoot,
|
|
7429
|
+
Hl as Popover,
|
|
7430
|
+
Bl as PopoverClose,
|
|
7404
7431
|
nt as PopoverContent,
|
|
7405
|
-
|
|
7432
|
+
$l as PopoverCreateHandle,
|
|
7406
7433
|
Eo as PopoverDescription,
|
|
7407
7434
|
nt as PopoverPopup,
|
|
7408
|
-
|
|
7435
|
+
Hc as PopoverPrimitive,
|
|
7409
7436
|
rt as PopoverRoot,
|
|
7410
|
-
|
|
7437
|
+
Ro as PopoverTitle,
|
|
7411
7438
|
at as PopoverTrigger,
|
|
7412
|
-
|
|
7439
|
+
Ul as Progress,
|
|
7413
7440
|
jo as ProgressIndicator,
|
|
7414
|
-
|
|
7441
|
+
Xl as ProgressLabel,
|
|
7415
7442
|
Mo as ProgressRoot,
|
|
7416
7443
|
Vo as ProgressTrack,
|
|
7417
|
-
|
|
7444
|
+
Kl as ProgressValue,
|
|
7418
7445
|
St as ScrollArea,
|
|
7419
|
-
|
|
7446
|
+
Pc as ScrollAreaPrimitive,
|
|
7420
7447
|
dt as ScrollBar,
|
|
7421
7448
|
ba as Select,
|
|
7422
7449
|
Is as SelectButton,
|
|
@@ -7424,17 +7451,17 @@ export {
|
|
|
7424
7451
|
Ds as SelectGroup,
|
|
7425
7452
|
As as SelectGroupLabel,
|
|
7426
7453
|
ma as SelectItem,
|
|
7427
|
-
|
|
7454
|
+
Rs as SelectLabel,
|
|
7428
7455
|
pa as SelectPopup,
|
|
7429
|
-
|
|
7456
|
+
Ac as SelectPrimitive,
|
|
7430
7457
|
ca as SelectRoot,
|
|
7431
7458
|
_s as SelectSeparator,
|
|
7432
7459
|
da as SelectTrigger,
|
|
7433
7460
|
ua as SelectValue,
|
|
7434
|
-
|
|
7435
|
-
|
|
7436
|
-
|
|
7437
|
-
|
|
7461
|
+
Wc as SeparatorPrimitive,
|
|
7462
|
+
Wl as Skeleton,
|
|
7463
|
+
Yl as Stack,
|
|
7464
|
+
ql as Stepper,
|
|
7438
7465
|
qo as StepperContent,
|
|
7439
7466
|
Wo as StepperDescription,
|
|
7440
7467
|
Xo as StepperIndicator,
|
|
@@ -7445,55 +7472,55 @@ export {
|
|
|
7445
7472
|
Ko as StepperSeparator,
|
|
7446
7473
|
Uo as StepperTitle,
|
|
7447
7474
|
Ho as StepperTrigger,
|
|
7448
|
-
|
|
7475
|
+
Jl as Switch,
|
|
7449
7476
|
Jo as SwitchRoot,
|
|
7450
7477
|
Zo as SwitchThumb,
|
|
7451
|
-
|
|
7452
|
-
|
|
7478
|
+
rc as TabList,
|
|
7479
|
+
ec as Table,
|
|
7453
7480
|
ti as TableBody,
|
|
7454
|
-
|
|
7481
|
+
Ql as TableCaption,
|
|
7455
7482
|
ai as TableCell,
|
|
7456
|
-
|
|
7483
|
+
Zl as TableFooter,
|
|
7457
7484
|
ri as TableHead,
|
|
7458
7485
|
ei as TableHeader,
|
|
7459
7486
|
Qo as TableRoot,
|
|
7460
7487
|
vt as TableRow,
|
|
7461
|
-
|
|
7462
|
-
|
|
7463
|
-
|
|
7464
|
-
|
|
7465
|
-
|
|
7466
|
-
|
|
7467
|
-
|
|
7468
|
-
|
|
7469
|
-
|
|
7470
|
-
|
|
7471
|
-
|
|
7488
|
+
tc as Tabs,
|
|
7489
|
+
nc as TabsContent,
|
|
7490
|
+
rc as TabsList,
|
|
7491
|
+
nc as TabsPanel,
|
|
7492
|
+
ed as TabsPrimitive,
|
|
7493
|
+
ac as TabsTab,
|
|
7494
|
+
ac as TabsTrigger,
|
|
7495
|
+
oc as Tag,
|
|
7496
|
+
ic as Textarea,
|
|
7497
|
+
fc as ThemeProvider,
|
|
7498
|
+
sc as Timeline,
|
|
7472
7499
|
Ve as TimelineContent,
|
|
7473
7500
|
Me as TimelineDate,
|
|
7474
|
-
|
|
7501
|
+
Le as TimelineHeader,
|
|
7475
7502
|
je as TimelineIndicator,
|
|
7476
7503
|
Ee as TimelineItem,
|
|
7477
7504
|
ii as TimelineRoot,
|
|
7478
7505
|
Oe as TimelineSeparator,
|
|
7479
7506
|
Fe as TimelineTitle,
|
|
7480
|
-
|
|
7507
|
+
rd as ToastPrimitive,
|
|
7481
7508
|
di as ToastProvider,
|
|
7482
7509
|
Ea as Tooltip,
|
|
7483
|
-
|
|
7510
|
+
Ra as TooltipArrow,
|
|
7484
7511
|
Aa as TooltipPopup,
|
|
7485
|
-
|
|
7512
|
+
Oc as TooltipPrimitive,
|
|
7486
7513
|
Ia as TooltipProvider,
|
|
7487
7514
|
_a as TooltipRoot,
|
|
7488
7515
|
Da as TooltipTrigger,
|
|
7489
|
-
|
|
7490
|
-
|
|
7516
|
+
pc as TreeDragLine,
|
|
7517
|
+
uc as TreeItem,
|
|
7491
7518
|
bi as TreeItemLabel,
|
|
7492
|
-
|
|
7519
|
+
dc as TreeRoot,
|
|
7493
7520
|
Vr as buttonVariants,
|
|
7494
7521
|
l as cn,
|
|
7495
7522
|
Ns as createSafeContext,
|
|
7496
|
-
|
|
7523
|
+
lc as createToastManager,
|
|
7497
7524
|
Cs as ensureReactElement,
|
|
7498
7525
|
na as extractInitials,
|
|
7499
7526
|
zs as getFormData,
|
|
@@ -7504,7 +7531,7 @@ export {
|
|
|
7504
7531
|
It as selectTriggerClasses,
|
|
7505
7532
|
_t as selectTriggerIconClassName,
|
|
7506
7533
|
ni as tagVariants,
|
|
7507
|
-
|
|
7534
|
+
cc as toast,
|
|
7508
7535
|
si as toastVariants,
|
|
7509
7536
|
Ar as twMerge,
|
|
7510
7537
|
ml as useArray,
|
|
@@ -7513,7 +7540,7 @@ export {
|
|
|
7513
7540
|
gl as useClickOutside,
|
|
7514
7541
|
hl as useClipboard,
|
|
7515
7542
|
Ys as useComboboxFilter,
|
|
7516
|
-
|
|
7543
|
+
vc as useControllableState,
|
|
7517
7544
|
bl as useDebouncedCallback,
|
|
7518
7545
|
vl as useDebouncedValue,
|
|
7519
7546
|
xl as useDisclosure,
|
|
@@ -7531,16 +7558,17 @@ export {
|
|
|
7531
7558
|
Sl as useMemoizedFn,
|
|
7532
7559
|
Pl as useMutation,
|
|
7533
7560
|
Il as useObject,
|
|
7561
|
+
_l as useOnMount,
|
|
7534
7562
|
No as usePagination,
|
|
7535
|
-
|
|
7536
|
-
|
|
7563
|
+
Dl as usePortal,
|
|
7564
|
+
Al as usePreventCloseWindow,
|
|
7537
7565
|
Co as useRangePagination,
|
|
7538
|
-
|
|
7539
|
-
|
|
7566
|
+
Rl as useSelection,
|
|
7567
|
+
El as useStep,
|
|
7540
7568
|
xe as useStepItem,
|
|
7541
7569
|
se as useStepper,
|
|
7542
7570
|
vi as useTheme,
|
|
7543
|
-
|
|
7571
|
+
gc as useThemeProps,
|
|
7544
7572
|
li as useToastManager,
|
|
7545
7573
|
zo as useToggle
|
|
7546
7574
|
};
|