@ws-ui/http-handlers-editor 1.11.12-rc14 → 1.11.12-rc15
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 +11 -11
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +631 -635
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -3,17 +3,17 @@ import { useSensors as Bs, useSensor as kn, PointerSensor as js, KeyboardSensor
|
|
|
3
3
|
import { useSortable as Gs, sortableKeyboardCoordinates as qs, SortableContext as Us, verticalListSortingStrategy as Ys, arrayMove as Xs } from "@dnd-kit/sortable";
|
|
4
4
|
import { FdWarningDanger as hr, FdRegex as Js, FdUnRegex as Zs, FdDuplicate as zi, FdPen as Qs, FdTrash as el, FdCloseNaked as tl, FdInfoCircle as Ci, FdCheckCircle as rl, FdClose as ol, FdDragHandle as nl, FdCode as il, FdPlus as In, FdEmpty as al } from "@ws-ui/icons";
|
|
5
5
|
import * as Se from "react";
|
|
6
|
-
import vt, { createContext as Ue, useContext as rt, useMemo as Ne, useReducer as Rr, useEffect as se, useCallback as q, forwardRef as
|
|
7
|
-
import { ToolbarIcon as hl, parseCatalog as gl, ModalType as kr, ModalCloseReason as vl, ModalColor as Ri, useHotkeys as fl, Modal as
|
|
6
|
+
import vt, { createContext as Ue, useContext as rt, useMemo as Ne, useReducer as Rr, useEffect as se, useCallback as q, forwardRef as me, useState as Ee, useRef as fe, memo as sl, PureComponent as ll, useImperativeHandle as cl, Fragment as dl, useLayoutEffect as Mi, cloneElement as ul, Component as pl } from "react";
|
|
7
|
+
import { ToolbarIcon as hl, parseCatalog as gl, ModalType as kr, ModalCloseReason as vl, ModalColor as Ri, useHotkeys as fl, Modal as bl, TipsProvider as ml, useDidMountEffect as wl } from "@ws-ui/shared";
|
|
8
8
|
import { CSS as xl } from "@dnd-kit/utilities";
|
|
9
9
|
import En from "classnames";
|
|
10
|
-
import { omit as fo, entries as yl, isEqual as
|
|
10
|
+
import { omit as fo, entries as yl, isEqual as bo } from "lodash";
|
|
11
11
|
import { useAppDispatch as kl, useAppSelector as _n, selectTabByPath as Il, selectCatalog as El, setContent as _l, switchEditor as Sl, openModal as Nl } from "@ws-ui/store";
|
|
12
12
|
import { z as Ke } from "zod";
|
|
13
13
|
import { generate as St } from "short-uuid";
|
|
14
14
|
import { Subject as Ti } from "rxjs";
|
|
15
15
|
import Sn from "randexp";
|
|
16
|
-
import { flushSync as Ol, createPortal as
|
|
16
|
+
import { flushSync as Ol, createPortal as Hi } from "react-dom";
|
|
17
17
|
import { HTTP_HANDLERS_EDITOR_SCOPE_CLASS as Dl } from "./common.es.js";
|
|
18
18
|
const zl = "array", Cl = { $ref: "#/definitions/HTTPHandler" }, Ml = { HTTPHandler: { type: "object", properties: { id: { type: "string" }, class: { type: "string" }, method: { type: "string" }, pattern: { type: "string" }, regexPattern: { type: "string" }, verbs: { oneOf: [{ type: "string" }, { type: "array", items: { type: "string" } }] } } } }, Vh = {
|
|
19
19
|
type: zl,
|
|
@@ -31,26 +31,26 @@ const zl = "array", Cl = { $ref: "#/definitions/HTTPHandler" }, Ml = { HTTPHandl
|
|
|
31
31
|
as: "button",
|
|
32
32
|
onClick: r
|
|
33
33
|
}
|
|
34
|
-
),
|
|
34
|
+
), Pi = Ue(
|
|
35
35
|
null
|
|
36
|
-
), Tl = ({ children: e, adapter: t }) => /* @__PURE__ */ p(
|
|
36
|
+
), Tl = ({ children: e, adapter: t }) => /* @__PURE__ */ p(Pi.Provider, { value: t, children: e });
|
|
37
37
|
function Tr() {
|
|
38
|
-
const e = rt(
|
|
38
|
+
const e = rt(Pi);
|
|
39
39
|
if (!e)
|
|
40
40
|
throw new Error(
|
|
41
41
|
"useEditorStateAdapter must be used within an EditorStateAdapterProvider"
|
|
42
42
|
);
|
|
43
43
|
return e;
|
|
44
44
|
}
|
|
45
|
-
const
|
|
45
|
+
const Hl = Ke.object({
|
|
46
46
|
class: Ke.string().optional(),
|
|
47
47
|
method: Ke.string().optional(),
|
|
48
48
|
verbs: Ke.union([Ke.string(), Ke.array(Ke.string())]).optional(),
|
|
49
49
|
id: Ke.string().optional(),
|
|
50
50
|
pattern: Ke.string().optional(),
|
|
51
51
|
regexPattern: Ke.string().optional()
|
|
52
|
-
}),
|
|
53
|
-
function
|
|
52
|
+
}), Pl = Ke.array(Hl), Nn = "Invalid JSON";
|
|
53
|
+
function mo(e) {
|
|
54
54
|
let t = e ?? [];
|
|
55
55
|
if (typeof e == "string")
|
|
56
56
|
try {
|
|
@@ -58,7 +58,7 @@ function bo(e) {
|
|
|
58
58
|
} catch {
|
|
59
59
|
throw new Error(Nn);
|
|
60
60
|
}
|
|
61
|
-
const r =
|
|
61
|
+
const r = Pl.safeParse(t);
|
|
62
62
|
if (!r.success)
|
|
63
63
|
throw new Error(Nn);
|
|
64
64
|
return r.data.map((o) => {
|
|
@@ -579,7 +579,7 @@ const yo = Ue(null), ji = (e) => ({
|
|
|
579
579
|
catalog: r = null
|
|
580
580
|
}) => {
|
|
581
581
|
const o = Ne(
|
|
582
|
-
() =>
|
|
582
|
+
() => mo(t),
|
|
583
583
|
[t]
|
|
584
584
|
), [n, i] = Rr(
|
|
585
585
|
Bi,
|
|
@@ -688,8 +688,8 @@ function Jl() {
|
|
|
688
688
|
};
|
|
689
689
|
}
|
|
690
690
|
function Lh(e) {
|
|
691
|
-
const t = kl(), r = _n(Il(e),
|
|
692
|
-
() =>
|
|
691
|
+
const t = kl(), r = _n(Il(e), bo), o = _n(El), n = Ne(
|
|
692
|
+
() => mo(r == null ? void 0 : r.content),
|
|
693
693
|
[r == null ? void 0 : r.content]
|
|
694
694
|
), [i, a] = Rr(
|
|
695
695
|
Bi,
|
|
@@ -811,7 +811,7 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
811
811
|
d: "M10.84 2.714c0-.394.346-.714.773-.714h.774c.427 0 .773.32.773.714V9.5h5.025c.427 0 .773.32.773.714v3.572H5.042v-3.572c0-.394.346-.714.773-.714h5.025V2.714ZM5.042 14.5h13.916l1.034 6.685c.067.43-.295.815-.765.815h-2.1l-.681-5.929L15.764 22h-3.236l-.721-2.143L11.086 22h-2.85l-.682-3.929L6.872 22H4.773c-.47 0-.832-.385-.765-.815L5.042 14.5Z",
|
|
812
812
|
fill: "currentColor"
|
|
813
813
|
}
|
|
814
|
-
) }),
|
|
814
|
+
) }), Hr = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBox: "0 0 24 24", ...e, children: /* @__PURE__ */ p(
|
|
815
815
|
"path",
|
|
816
816
|
{
|
|
817
817
|
d: "M4.497 5.361a.5.5 0 0 0 0 .707L10.429 12l-5.932 5.932a.5.5 0 0 0 0 .707l.864.864a.5.5 0 0 0 .707 0L12 13.571l5.932 5.932a.5.5 0 0 0 .707 0l.864-.864a.5.5 0 0 0 0-.707L13.571 12l5.932-5.932a.5.5 0 0 0 0-.707l-.864-.864a.5.5 0 0 0-.707 0L12 10.429 6.068 4.497a.5.5 0 0 0-.707 0l-.864.864Z",
|
|
@@ -966,7 +966,7 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
966
966
|
baseClassName: r,
|
|
967
967
|
maybePostfixModifierPosition: o,
|
|
968
968
|
isExternal: n
|
|
969
|
-
}),
|
|
969
|
+
}), bc = (e) => {
|
|
970
970
|
const {
|
|
971
971
|
prefix: t,
|
|
972
972
|
experimentalParseClassName: r
|
|
@@ -976,18 +976,18 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
976
976
|
let a = 0, s = 0, l = 0, c;
|
|
977
977
|
const u = n.length;
|
|
978
978
|
for (let y = 0; y < u; y++) {
|
|
979
|
-
const
|
|
979
|
+
const m = n[y];
|
|
980
980
|
if (a === 0 && s === 0) {
|
|
981
|
-
if (
|
|
981
|
+
if (m === Rn) {
|
|
982
982
|
i.push(n.slice(l, y)), l = y + 1;
|
|
983
983
|
continue;
|
|
984
984
|
}
|
|
985
|
-
if (
|
|
985
|
+
if (m === "/") {
|
|
986
986
|
c = y;
|
|
987
987
|
continue;
|
|
988
988
|
}
|
|
989
989
|
}
|
|
990
|
-
|
|
990
|
+
m === "[" ? a++ : m === "]" ? a-- : m === "(" ? s++ : m === ")" && s--;
|
|
991
991
|
}
|
|
992
992
|
const d = i.length === 0 ? n : n.slice(l);
|
|
993
993
|
let x = d, k = !1;
|
|
@@ -1013,7 +1013,7 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
1013
1013
|
});
|
|
1014
1014
|
}
|
|
1015
1015
|
return o;
|
|
1016
|
-
},
|
|
1016
|
+
}, mc = (e) => {
|
|
1017
1017
|
const t = /* @__PURE__ */ new Map();
|
|
1018
1018
|
return e.orderSensitiveModifiers.forEach((r, o) => {
|
|
1019
1019
|
t.set(r, 1e6 + o);
|
|
@@ -1028,8 +1028,8 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
1028
1028
|
};
|
|
1029
1029
|
}, wc = (e) => ({
|
|
1030
1030
|
cache: vc(e.cacheSize),
|
|
1031
|
-
parseClassName:
|
|
1032
|
-
sortModifiers:
|
|
1031
|
+
parseClassName: bc(e),
|
|
1032
|
+
sortModifiers: mc(e),
|
|
1033
1033
|
...ac(e)
|
|
1034
1034
|
}), xc = /\s+/, yc = (e, t) => {
|
|
1035
1035
|
const {
|
|
@@ -1051,9 +1051,9 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
1051
1051
|
l = u + (l.length > 0 ? " " + l : l);
|
|
1052
1052
|
continue;
|
|
1053
1053
|
}
|
|
1054
|
-
let
|
|
1054
|
+
let m = !!y, D = o(m ? O.substring(0, y) : O);
|
|
1055
1055
|
if (!D) {
|
|
1056
|
-
if (!
|
|
1056
|
+
if (!m) {
|
|
1057
1057
|
l = u + (l.length > 0 ? " " + l : l);
|
|
1058
1058
|
continue;
|
|
1059
1059
|
}
|
|
@@ -1061,13 +1061,13 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
1061
1061
|
l = u + (l.length > 0 ? " " + l : l);
|
|
1062
1062
|
continue;
|
|
1063
1063
|
}
|
|
1064
|
-
|
|
1064
|
+
m = !1;
|
|
1065
1065
|
}
|
|
1066
|
-
const h = x.length === 0 ? "" : x.length === 1 ? x[0] : i(x).join(":"), g = k ? h + lo : h,
|
|
1067
|
-
if (a.indexOf(
|
|
1066
|
+
const h = x.length === 0 ? "" : x.length === 1 ? x[0] : i(x).join(":"), g = k ? h + lo : h, b = g + D;
|
|
1067
|
+
if (a.indexOf(b) > -1)
|
|
1068
1068
|
continue;
|
|
1069
|
-
a.push(
|
|
1070
|
-
const w = n(D,
|
|
1069
|
+
a.push(b);
|
|
1070
|
+
const w = n(D, m);
|
|
1071
1071
|
for (let N = 0; N < w.length; ++N) {
|
|
1072
1072
|
const F = w[N];
|
|
1073
1073
|
a.push(g + F);
|
|
@@ -1087,7 +1087,7 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
1087
1087
|
for (let o = 0; o < e.length; o++)
|
|
1088
1088
|
e[o] && (t = Ki(e[o])) && (r && (r += " "), r += t);
|
|
1089
1089
|
return r;
|
|
1090
|
-
},
|
|
1090
|
+
}, Hn = (e, ...t) => {
|
|
1091
1091
|
let r, o, n, i;
|
|
1092
1092
|
const a = (l) => {
|
|
1093
1093
|
const c = t.reduce((u, d) => d(u), e());
|
|
@@ -1108,14 +1108,14 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
1108
1108
|
// For example, `hsl(0 0% 0%)` would be classified as a length without this check.
|
|
1109
1109
|
// I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
|
|
1110
1110
|
Sc.test(e) && !Nc.test(e)
|
|
1111
|
-
), Ui = () => !1, Mc = (e) => Oc.test(e), Rc = (e) => Dc.test(e), Tc = (e) => !X(e) && !J(e),
|
|
1111
|
+
), Ui = () => !1, Mc = (e) => Oc.test(e), Rc = (e) => Dc.test(e), Tc = (e) => !X(e) && !J(e), Hc = (e) => zt(e, Ji, Ui), X = (e) => Gi.test(e), ut = (e) => zt(e, Zi, Cc), Gr = (e) => zt(e, Bc, ie), Pn = (e) => zt(e, Yi, Ui), Pc = (e) => zt(e, Xi, Rc), er = (e) => zt(e, Qi, Mc), J = (e) => qi.test(e), Ht = (e) => Ct(e, Zi), Ac = (e) => Ct(e, jc), An = (e) => Ct(e, Yi), Vc = (e) => Ct(e, Ji), Lc = (e) => Ct(e, Xi), tr = (e) => Ct(e, Qi, !0), zt = (e, t, r) => {
|
|
1112
1112
|
const o = Gi.exec(e);
|
|
1113
1113
|
return o ? o[1] ? t(o[1]) : r(o[2]) : !1;
|
|
1114
1114
|
}, Ct = (e, t, r = !1) => {
|
|
1115
1115
|
const o = qi.exec(e);
|
|
1116
1116
|
return o ? o[1] ? t(o[1]) : r : !1;
|
|
1117
1117
|
}, Yi = (e) => e === "position" || e === "percentage", Xi = (e) => e === "image" || e === "url", Ji = (e) => e === "length" || e === "size" || e === "bg-size", Zi = (e) => e === "length", Bc = (e) => e === "number", jc = (e) => e === "family-name", Qi = (e) => e === "shadow", Vn = () => {
|
|
1118
|
-
const e = Ie("color"), t = Ie("font"), r = Ie("text"), o = Ie("font-weight"), n = Ie("tracking"), i = Ie("leading"), a = Ie("breakpoint"), s = Ie("container"), l = Ie("spacing"), c = Ie("radius"), u = Ie("shadow"), d = Ie("inset-shadow"), x = Ie("text-shadow"), k = Ie("drop-shadow"), O = Ie("blur"), y = Ie("perspective"),
|
|
1118
|
+
const e = Ie("color"), t = Ie("font"), r = Ie("text"), o = Ie("font-weight"), n = Ie("tracking"), i = Ie("leading"), a = Ie("breakpoint"), s = Ie("container"), l = Ie("spacing"), c = Ie("radius"), u = Ie("shadow"), d = Ie("inset-shadow"), x = Ie("text-shadow"), k = Ie("drop-shadow"), O = Ie("blur"), y = Ie("perspective"), m = Ie("aspect"), D = Ie("ease"), h = Ie("animate"), g = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], b = () => [
|
|
1119
1119
|
"center",
|
|
1120
1120
|
"top",
|
|
1121
1121
|
"bottom",
|
|
@@ -1133,15 +1133,15 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
1133
1133
|
"bottom-left",
|
|
1134
1134
|
// Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
|
|
1135
1135
|
"left-bottom"
|
|
1136
|
-
], w = () => [...
|
|
1136
|
+
], w = () => [...b(), J, X], N = () => ["auto", "hidden", "clip", "visible", "scroll"], F = () => ["auto", "contain", "none"], f = () => [J, X, l], z = () => [wt, "full", "auto", ...f()], A = () => [it, "none", "subgrid", J, X], G = () => ["auto", {
|
|
1137
1137
|
span: ["full", it, J, X]
|
|
1138
|
-
}, it, J, X], S = () => [it, "auto", J, X],
|
|
1138
|
+
}, it, J, X], S = () => [it, "auto", J, X], P = () => ["auto", "min", "max", "fr", J, X], W = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], Q = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], ee = () => ["auto", ...f()], re = () => [wt, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...f()], V = () => [e, J, X], ae = () => [...b(), An, Pn, {
|
|
1139
1139
|
position: [J, X]
|
|
1140
1140
|
}], v = () => ["no-repeat", {
|
|
1141
1141
|
repeat: ["", "x", "y", "space", "round"]
|
|
1142
|
-
}], C = () => ["auto", "cover", "contain", Vc,
|
|
1142
|
+
}], C = () => ["auto", "cover", "contain", Vc, Hc, {
|
|
1143
1143
|
size: [J, X]
|
|
1144
|
-
}],
|
|
1144
|
+
}], H = () => [Kr, Ht, ut], j = () => [
|
|
1145
1145
|
// Deprecated since Tailwind CSS v4.0.0
|
|
1146
1146
|
"",
|
|
1147
1147
|
"none",
|
|
@@ -1149,7 +1149,7 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
1149
1149
|
c,
|
|
1150
1150
|
J,
|
|
1151
1151
|
X
|
|
1152
|
-
], _ = () => ["", ie,
|
|
1152
|
+
], _ = () => ["", ie, Ht, ut], L = () => ["solid", "dashed", "dotted", "double"], I = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], E = () => [ie, Kr, An, Pn], K = () => [
|
|
1153
1153
|
// Deprecated since Tailwind CSS v4.0.0
|
|
1154
1154
|
"",
|
|
1155
1155
|
"none",
|
|
@@ -1189,7 +1189,7 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
1189
1189
|
* @see https://tailwindcss.com/docs/aspect-ratio
|
|
1190
1190
|
*/
|
|
1191
1191
|
aspect: [{
|
|
1192
|
-
aspect: ["auto", "square", wt, X, J,
|
|
1192
|
+
aspect: ["auto", "square", wt, X, J, m]
|
|
1193
1193
|
}],
|
|
1194
1194
|
/**
|
|
1195
1195
|
* Container
|
|
@@ -1524,14 +1524,14 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
1524
1524
|
* @see https://tailwindcss.com/docs/grid-auto-columns
|
|
1525
1525
|
*/
|
|
1526
1526
|
"auto-cols": [{
|
|
1527
|
-
"auto-cols":
|
|
1527
|
+
"auto-cols": P()
|
|
1528
1528
|
}],
|
|
1529
1529
|
/**
|
|
1530
1530
|
* Grid Auto Rows
|
|
1531
1531
|
* @see https://tailwindcss.com/docs/grid-auto-rows
|
|
1532
1532
|
*/
|
|
1533
1533
|
"auto-rows": [{
|
|
1534
|
-
"auto-rows":
|
|
1534
|
+
"auto-rows": P()
|
|
1535
1535
|
}],
|
|
1536
1536
|
/**
|
|
1537
1537
|
* Gap
|
|
@@ -1849,7 +1849,7 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
1849
1849
|
* @see https://tailwindcss.com/docs/font-size
|
|
1850
1850
|
*/
|
|
1851
1851
|
"font-size": [{
|
|
1852
|
-
text: ["base", r,
|
|
1852
|
+
text: ["base", r, Ht, ut]
|
|
1853
1853
|
}],
|
|
1854
1854
|
/**
|
|
1855
1855
|
* Font Smoothing
|
|
@@ -2135,7 +2135,7 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
2135
2135
|
}, it, J, X],
|
|
2136
2136
|
radial: ["", J, X],
|
|
2137
2137
|
conic: [it, J, X]
|
|
2138
|
-
}, Lc,
|
|
2138
|
+
}, Lc, Pc]
|
|
2139
2139
|
}],
|
|
2140
2140
|
/**
|
|
2141
2141
|
* Background Color
|
|
@@ -2149,21 +2149,21 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
2149
2149
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
2150
2150
|
*/
|
|
2151
2151
|
"gradient-from-pos": [{
|
|
2152
|
-
from:
|
|
2152
|
+
from: H()
|
|
2153
2153
|
}],
|
|
2154
2154
|
/**
|
|
2155
2155
|
* Gradient Color Stops Via Position
|
|
2156
2156
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
2157
2157
|
*/
|
|
2158
2158
|
"gradient-via-pos": [{
|
|
2159
|
-
via:
|
|
2159
|
+
via: H()
|
|
2160
2160
|
}],
|
|
2161
2161
|
/**
|
|
2162
2162
|
* Gradient Color Stops To Position
|
|
2163
2163
|
* @see https://tailwindcss.com/docs/gradient-color-stops
|
|
2164
2164
|
*/
|
|
2165
2165
|
"gradient-to-pos": [{
|
|
2166
|
-
to:
|
|
2166
|
+
to: H()
|
|
2167
2167
|
}],
|
|
2168
2168
|
/**
|
|
2169
2169
|
* Gradient Color Stops From
|
|
@@ -2484,7 +2484,7 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
2484
2484
|
* @see https://tailwindcss.com/docs/outline-width
|
|
2485
2485
|
*/
|
|
2486
2486
|
"outline-w": [{
|
|
2487
|
-
outline: ["", ie,
|
|
2487
|
+
outline: ["", ie, Ht, ut]
|
|
2488
2488
|
}],
|
|
2489
2489
|
/**
|
|
2490
2490
|
* Outline Color
|
|
@@ -2749,7 +2749,7 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
2749
2749
|
}]
|
|
2750
2750
|
}],
|
|
2751
2751
|
"mask-image-radial-pos": [{
|
|
2752
|
-
"mask-radial-at":
|
|
2752
|
+
"mask-radial-at": b()
|
|
2753
2753
|
}],
|
|
2754
2754
|
"mask-image-conic-pos": [{
|
|
2755
2755
|
"mask-conic": [ie]
|
|
@@ -3509,7 +3509,7 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
3509
3509
|
* @see https://tailwindcss.com/docs/stroke-width
|
|
3510
3510
|
*/
|
|
3511
3511
|
"stroke-w": [{
|
|
3512
|
-
stroke: [ie,
|
|
3512
|
+
stroke: [ie, Ht, ut, Gr]
|
|
3513
3513
|
}],
|
|
3514
3514
|
/**
|
|
3515
3515
|
* Stroke
|
|
@@ -3603,7 +3603,7 @@ const Ql = (e) => /* @__PURE__ */ p("svg", { width: "1em", height: "1em", viewBo
|
|
|
3603
3603
|
}, ea = (e, t, r) => {
|
|
3604
3604
|
const o = t[r];
|
|
3605
3605
|
o !== void 0 && (e[r] = e[r] ? e[r].concat(o) : o);
|
|
3606
|
-
}, Wc = (e, ...t) => typeof e == "function" ?
|
|
3606
|
+
}, Wc = (e, ...t) => typeof e == "function" ? Hn(Vn, e, ...t) : Hn(() => Fc(Vn(), e), ...t);
|
|
3607
3607
|
function ta(e) {
|
|
3608
3608
|
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
|
|
3609
3609
|
}
|
|
@@ -3801,7 +3801,7 @@ const Gt = {
|
|
|
3801
3801
|
}
|
|
3802
3802
|
)
|
|
3803
3803
|
}
|
|
3804
|
-
), td =
|
|
3804
|
+
), td = me(
|
|
3805
3805
|
({
|
|
3806
3806
|
label: e,
|
|
3807
3807
|
isDisabled: t = !1,
|
|
@@ -3818,12 +3818,12 @@ const Gt = {
|
|
|
3818
3818
|
id: x,
|
|
3819
3819
|
...k
|
|
3820
3820
|
}, O) => {
|
|
3821
|
-
const [y,
|
|
3821
|
+
const [y, m] = Ee(u), D = c === !0 || y === !0, h = c === null, g = D || h, b = {
|
|
3822
3822
|
isChecked: D,
|
|
3823
3823
|
isIndeterminate: h,
|
|
3824
3824
|
isDisabled: t,
|
|
3825
3825
|
isInvalid: r
|
|
3826
|
-
}, w = Yc(n, i,
|
|
3826
|
+
}, w = Yc(n, i, b), N = Xc(n, i, b), F = Jc(n), f = Zc(n, i, r), z = Qc(n);
|
|
3827
3827
|
return /* @__PURE__ */ te("label", { "data-qui": "Checkbox", className: F, children: [
|
|
3828
3828
|
/* @__PURE__ */ te("div", { className: w, children: [
|
|
3829
3829
|
/* @__PURE__ */ p(
|
|
@@ -3836,7 +3836,7 @@ const Gt = {
|
|
|
3836
3836
|
disabled: t,
|
|
3837
3837
|
required: o,
|
|
3838
3838
|
onChange: (A) => {
|
|
3839
|
-
c === void 0 &&
|
|
3839
|
+
c === void 0 && m(A.target.checked), a == null || a(A);
|
|
3840
3840
|
},
|
|
3841
3841
|
onFocus: s,
|
|
3842
3842
|
onBlur: l,
|
|
@@ -3961,7 +3961,7 @@ const qt = {
|
|
|
3961
3961
|
if (!e)
|
|
3962
3962
|
throw new Error("Radio.Item must be used within Radio.Group");
|
|
3963
3963
|
return e;
|
|
3964
|
-
}, dd =
|
|
3964
|
+
}, dd = me(
|
|
3965
3965
|
({
|
|
3966
3966
|
value: e,
|
|
3967
3967
|
label: t,
|
|
@@ -3973,11 +3973,11 @@ const qt = {
|
|
|
3973
3973
|
className: s,
|
|
3974
3974
|
...l
|
|
3975
3975
|
}, c) => {
|
|
3976
|
-
const u = cd(), d = r ?? u.size, x = o ?? u.color, k = n ?? u.isDisabled, O = i ?? u.isInvalid, y = a ?? u.isRequired,
|
|
3977
|
-
checked:
|
|
3976
|
+
const u = cd(), d = r ?? u.size, x = o ?? u.color, k = n ?? u.isDisabled, O = i ?? u.isInvalid, y = a ?? u.isRequired, m = u.value === e, D = {
|
|
3977
|
+
checked: m,
|
|
3978
3978
|
isDisabled: k,
|
|
3979
3979
|
isInvalid: O
|
|
3980
|
-
}, h = od(d, x, D), g = nd(d, x, D),
|
|
3980
|
+
}, h = od(d, x, D), g = nd(d, x, D), b = id(d, x, O), w = ad(d), N = sd(d, x, D, s), F = () => {
|
|
3981
3981
|
k || u.onChange(e);
|
|
3982
3982
|
};
|
|
3983
3983
|
return /* @__PURE__ */ te("label", { "data-qui": "RadioItem", className: N, children: [
|
|
@@ -3988,7 +3988,7 @@ const qt = {
|
|
|
3988
3988
|
ref: c,
|
|
3989
3989
|
type: "radio",
|
|
3990
3990
|
value: e,
|
|
3991
|
-
checked:
|
|
3991
|
+
checked: m,
|
|
3992
3992
|
disabled: k,
|
|
3993
3993
|
required: y,
|
|
3994
3994
|
"aria-invalid": O,
|
|
@@ -4001,7 +4001,7 @@ const qt = {
|
|
|
4001
4001
|
),
|
|
4002
4002
|
/* @__PURE__ */ te("div", { className: h, children: [
|
|
4003
4003
|
/* @__PURE__ */ p("div", { className: g }),
|
|
4004
|
-
!
|
|
4004
|
+
!m && !k && /* @__PURE__ */ p("div", { className: b })
|
|
4005
4005
|
] })
|
|
4006
4006
|
] }),
|
|
4007
4007
|
t && /* @__PURE__ */ te("span", { className: w, children: [
|
|
@@ -4162,7 +4162,7 @@ const ra = {
|
|
|
4162
4162
|
}, hd = (e) => R(
|
|
4163
4163
|
"flex items-center justify-center gap-1",
|
|
4164
4164
|
ra[e].text
|
|
4165
|
-
), Xe =
|
|
4165
|
+
), Xe = me(
|
|
4166
4166
|
({
|
|
4167
4167
|
size: e = "md",
|
|
4168
4168
|
variant: t = "solid",
|
|
@@ -4299,7 +4299,7 @@ const oa = Ue(null), Ut = () => {
|
|
|
4299
4299
|
"focus:outline-hidden",
|
|
4300
4300
|
Mt[e].input,
|
|
4301
4301
|
et[t].placeholder
|
|
4302
|
-
),
|
|
4302
|
+
), bd = ({
|
|
4303
4303
|
size: e,
|
|
4304
4304
|
color: t,
|
|
4305
4305
|
isDisabled: r,
|
|
@@ -4314,7 +4314,7 @@ const oa = Ue(null), Ut = () => {
|
|
|
4314
4314
|
[et[t].actionHover]: o && !r,
|
|
4315
4315
|
"pointer-events-none": !o
|
|
4316
4316
|
}
|
|
4317
|
-
),
|
|
4317
|
+
), md = ({
|
|
4318
4318
|
size: e,
|
|
4319
4319
|
color: t,
|
|
4320
4320
|
isDisabled: r
|
|
@@ -4346,16 +4346,16 @@ var Ed = /^\s+/;
|
|
|
4346
4346
|
function _d(e) {
|
|
4347
4347
|
return e && e.slice(0, Id(e) + 1).replace(Ed, "");
|
|
4348
4348
|
}
|
|
4349
|
-
var _r = na.Symbol, ia = Object.prototype, Sd = ia.hasOwnProperty, Nd = ia.toString,
|
|
4349
|
+
var _r = na.Symbol, ia = Object.prototype, Sd = ia.hasOwnProperty, Nd = ia.toString, Pt = _r ? _r.toStringTag : void 0;
|
|
4350
4350
|
function Od(e) {
|
|
4351
|
-
var t = Sd.call(e,
|
|
4351
|
+
var t = Sd.call(e, Pt), r = e[Pt];
|
|
4352
4352
|
try {
|
|
4353
|
-
e[
|
|
4353
|
+
e[Pt] = void 0;
|
|
4354
4354
|
var o = !0;
|
|
4355
4355
|
} catch {
|
|
4356
4356
|
}
|
|
4357
4357
|
var n = Nd.call(e);
|
|
4358
|
-
return o && (t ? e[
|
|
4358
|
+
return o && (t ? e[Pt] = r : delete e[Pt]), n;
|
|
4359
4359
|
}
|
|
4360
4360
|
var Dd = Object.prototype, zd = Dd.toString;
|
|
4361
4361
|
function Cd(e) {
|
|
@@ -4365,12 +4365,12 @@ var Md = "[object Null]", Rd = "[object Undefined]", Fn = _r ? _r.toStringTag :
|
|
|
4365
4365
|
function Td(e) {
|
|
4366
4366
|
return e == null ? e === void 0 ? Rd : Md : Fn && Fn in Object(e) ? Od(e) : Cd(e);
|
|
4367
4367
|
}
|
|
4368
|
-
function
|
|
4368
|
+
function Hd(e) {
|
|
4369
4369
|
return e != null && typeof e == "object";
|
|
4370
4370
|
}
|
|
4371
|
-
var
|
|
4371
|
+
var Pd = "[object Symbol]";
|
|
4372
4372
|
function Ad(e) {
|
|
4373
|
-
return typeof e == "symbol" ||
|
|
4373
|
+
return typeof e == "symbol" || Hd(e) && Td(e) == Pd;
|
|
4374
4374
|
}
|
|
4375
4375
|
var Wn = NaN, Vd = /^[-+]0x[0-9a-f]+$/i, Ld = /^0b[01]+$/i, Bd = /^0o[0-7]+$/i, jd = parseInt;
|
|
4376
4376
|
function $n(e) {
|
|
@@ -4405,13 +4405,13 @@ function gr(e, t, r) {
|
|
|
4405
4405
|
var F = N - l, f = N - c, z = t - F;
|
|
4406
4406
|
return d ? $d(z, i - f) : z;
|
|
4407
4407
|
}
|
|
4408
|
-
function
|
|
4408
|
+
function m(N) {
|
|
4409
4409
|
var F = N - l, f = N - c;
|
|
4410
4410
|
return l === void 0 || F >= t || F < 0 || d && f >= i;
|
|
4411
4411
|
}
|
|
4412
4412
|
function D() {
|
|
4413
4413
|
var N = qr();
|
|
4414
|
-
if (
|
|
4414
|
+
if (m(N))
|
|
4415
4415
|
return h(N);
|
|
4416
4416
|
s = setTimeout(D, y(N));
|
|
4417
4417
|
}
|
|
@@ -4421,11 +4421,11 @@ function gr(e, t, r) {
|
|
|
4421
4421
|
function g() {
|
|
4422
4422
|
s !== void 0 && clearTimeout(s), c = 0, o = l = n = s = void 0;
|
|
4423
4423
|
}
|
|
4424
|
-
function
|
|
4424
|
+
function b() {
|
|
4425
4425
|
return s === void 0 ? a : h(qr());
|
|
4426
4426
|
}
|
|
4427
4427
|
function w() {
|
|
4428
|
-
var N = qr(), F =
|
|
4428
|
+
var N = qr(), F = m(N);
|
|
4429
4429
|
if (o = arguments, n = this, l = N, F) {
|
|
4430
4430
|
if (s === void 0)
|
|
4431
4431
|
return O(l);
|
|
@@ -4434,7 +4434,7 @@ function gr(e, t, r) {
|
|
|
4434
4434
|
}
|
|
4435
4435
|
return s === void 0 && (s = setTimeout(D, t)), a;
|
|
4436
4436
|
}
|
|
4437
|
-
return w.cancel = g, w.flush =
|
|
4437
|
+
return w.cancel = g, w.flush = b, w;
|
|
4438
4438
|
}
|
|
4439
4439
|
var Kd = "Expected a function";
|
|
4440
4440
|
function Gd(e, t, r) {
|
|
@@ -4560,11 +4560,11 @@ var at = aa, Ur = sa, Ud = la, st = ca, lt = da, Te = ua, At = (
|
|
|
4560
4560
|
}, this.drag = function(n) {
|
|
4561
4561
|
var i, a, s, l, c, u, d, x, k, O, y;
|
|
4562
4562
|
if (!(!o.draggedAxis || !o.contentWrapperEl)) {
|
|
4563
|
-
var
|
|
4564
|
-
n.preventDefault(), n.stopPropagation(), o.draggedAxis === "y" ?
|
|
4565
|
-
var N =
|
|
4563
|
+
var m, D = o.axis[o.draggedAxis].track, h = (a = (i = D.rect) === null || i === void 0 ? void 0 : i[o.axis[o.draggedAxis].sizeAttr]) !== null && a !== void 0 ? a : 0, g = o.axis[o.draggedAxis].scrollbar, b = (l = (s = o.contentWrapperEl) === null || s === void 0 ? void 0 : s[o.axis[o.draggedAxis].scrollSizeAttr]) !== null && l !== void 0 ? l : 0, w = parseInt((u = (c = o.elStyles) === null || c === void 0 ? void 0 : c[o.axis[o.draggedAxis].sizeAttr]) !== null && u !== void 0 ? u : "0px", 10);
|
|
4564
|
+
n.preventDefault(), n.stopPropagation(), o.draggedAxis === "y" ? m = n.pageY : m = n.pageX;
|
|
4565
|
+
var N = m - ((x = (d = D.rect) === null || d === void 0 ? void 0 : d[o.axis[o.draggedAxis].offsetAttr]) !== null && x !== void 0 ? x : 0) - o.axis[o.draggedAxis].dragOffset;
|
|
4566
4566
|
N = o.draggedAxis === "x" && o.isRtl ? ((O = (k = D.rect) === null || k === void 0 ? void 0 : k[o.axis[o.draggedAxis].sizeAttr]) !== null && O !== void 0 ? O : 0) - g.size - N : N;
|
|
4567
|
-
var F = N / (h - g.size), f = F * (
|
|
4567
|
+
var F = N / (h - g.size), f = F * (b - w);
|
|
4568
4568
|
o.draggedAxis === "x" && o.isRtl && (f = !((y = e.getRtlHelpers()) === null || y === void 0) && y.isScrollingToNegative ? -f : f), o.contentWrapperEl[o.axis[o.draggedAxis].scrollOffsetAttr] = f;
|
|
4569
4569
|
}
|
|
4570
4570
|
}, this.onEndDrag = function(n) {
|
|
@@ -4722,8 +4722,8 @@ var at = aa, Ur = sa, Ud = la, st = ca, lt = da, Te = ua, At = (
|
|
|
4722
4722
|
t.preventDefault();
|
|
4723
4723
|
var c = at(this.el);
|
|
4724
4724
|
this.axis[r].scrollbar.rect = l.scrollbar.el.getBoundingClientRect();
|
|
4725
|
-
var u = this.axis[r].scrollbar, d = (i = (n = u.rect) === null || n === void 0 ? void 0 : n[this.axis[r].offsetAttr]) !== null && i !== void 0 ? i : 0, x = parseInt((s = (a = this.elStyles) === null || a === void 0 ? void 0 : a[this.axis[r].sizeAttr]) !== null && s !== void 0 ? s : "0px", 10), k = this.contentWrapperEl[this.axis[r].scrollOffsetAttr], O = r === "y" ? this.mouseY - d : this.mouseX - d, y = O < 0 ? -1 : 1,
|
|
4726
|
-
o.contentWrapperEl && (y === -1 ? k >
|
|
4725
|
+
var u = this.axis[r].scrollbar, d = (i = (n = u.rect) === null || n === void 0 ? void 0 : n[this.axis[r].offsetAttr]) !== null && i !== void 0 ? i : 0, x = parseInt((s = (a = this.elStyles) === null || a === void 0 ? void 0 : a[this.axis[r].sizeAttr]) !== null && s !== void 0 ? s : "0px", 10), k = this.contentWrapperEl[this.axis[r].scrollOffsetAttr], O = r === "y" ? this.mouseY - d : this.mouseX - d, y = O < 0 ? -1 : 1, m = y === -1 ? k - x : k + x, D = 40, h = function() {
|
|
4726
|
+
o.contentWrapperEl && (y === -1 ? k > m && (k -= D, o.contentWrapperEl[o.axis[r].scrollOffsetAttr] = k, c.requestAnimationFrame(h)) : k < m && (k += D, o.contentWrapperEl[o.axis[r].scrollOffsetAttr] = k, c.requestAnimationFrame(h)));
|
|
4727
4727
|
};
|
|
4728
4728
|
h();
|
|
4729
4729
|
}
|
|
@@ -4850,7 +4850,7 @@ var Eo = Se.forwardRef(function(e, t) {
|
|
|
4850
4850
|
);
|
|
4851
4851
|
});
|
|
4852
4852
|
Eo.displayName = "SimpleBar";
|
|
4853
|
-
const pa =
|
|
4853
|
+
const pa = me(
|
|
4854
4854
|
({
|
|
4855
4855
|
size: e = "md",
|
|
4856
4856
|
color: t = "primary",
|
|
@@ -4874,7 +4874,7 @@ const pa = be(
|
|
|
4874
4874
|
};
|
|
4875
4875
|
return /* @__PURE__ */ p(oa.Provider, { value: k, children: /* @__PURE__ */ p("div", { ref: l, "data-qui": "Input", className: R(gd(), i), ...s, children: a }) });
|
|
4876
4876
|
}
|
|
4877
|
-
), ha =
|
|
4877
|
+
), ha = me(
|
|
4878
4878
|
({ className: e, children: t, ...r }, o) => {
|
|
4879
4879
|
const { size: n, color: i, isDisabled: a, isReadOnly: s, hasMessage: l, hasArea: c, isInvalid: u } = Ut();
|
|
4880
4880
|
return /* @__PURE__ */ p(
|
|
@@ -4899,7 +4899,7 @@ const pa = be(
|
|
|
4899
4899
|
}
|
|
4900
4900
|
);
|
|
4901
4901
|
}
|
|
4902
|
-
), ga =
|
|
4902
|
+
), ga = me(
|
|
4903
4903
|
({ className: e, ...t }, r) => {
|
|
4904
4904
|
const { size: o, color: n, isInvalid: i, isDisabled: a, isReadOnly: s } = Ut(), { isDisabled: l, isReadOnly: c, ...u } = t;
|
|
4905
4905
|
return /* @__PURE__ */ p(
|
|
@@ -4914,7 +4914,7 @@ const pa = be(
|
|
|
4914
4914
|
}
|
|
4915
4915
|
);
|
|
4916
4916
|
}
|
|
4917
|
-
), Xd =
|
|
4917
|
+
), Xd = me(
|
|
4918
4918
|
({ className: e, autoHeight: t, ...r }, o) => {
|
|
4919
4919
|
const { size: n, color: i, isInvalid: a, isDisabled: s, setHasArea: l } = Ut(), c = fe(null), u = o || c, d = fe(null);
|
|
4920
4920
|
se(() => (l(!0), () => {
|
|
@@ -4938,14 +4938,14 @@ const pa = be(
|
|
|
4938
4938
|
h.preventDefault();
|
|
4939
4939
|
const g = d.current;
|
|
4940
4940
|
if (!g) return;
|
|
4941
|
-
const
|
|
4942
|
-
const z = w + (f.clientY -
|
|
4941
|
+
const b = h.clientY, w = g.offsetHeight, N = (f) => {
|
|
4942
|
+
const z = w + (f.clientY - b);
|
|
4943
4943
|
z > 30 && (g.style.height = z + "px");
|
|
4944
4944
|
}, F = () => {
|
|
4945
4945
|
document.removeEventListener("mousemove", N), document.removeEventListener("mouseup", F);
|
|
4946
4946
|
};
|
|
4947
4947
|
document.addEventListener("mousemove", N), document.addEventListener("mouseup", F);
|
|
4948
|
-
}, { isDisabled: y, isReadOnly:
|
|
4948
|
+
}, { isDisabled: y, isReadOnly: m, ...D } = r;
|
|
4949
4949
|
return /* @__PURE__ */ te(
|
|
4950
4950
|
"div",
|
|
4951
4951
|
{
|
|
@@ -4960,7 +4960,7 @@ const pa = be(
|
|
|
4960
4960
|
className: R(jn({ size: n, color: i }), e),
|
|
4961
4961
|
disabled: s || y,
|
|
4962
4962
|
onInput: k,
|
|
4963
|
-
readOnly:
|
|
4963
|
+
readOnly: m || !1,
|
|
4964
4964
|
"aria-invalid": a,
|
|
4965
4965
|
style: { overflow: "hidden" },
|
|
4966
4966
|
...D
|
|
@@ -4973,7 +4973,7 @@ const pa = be(
|
|
|
4973
4973
|
className: R(jn({ size: n, color: i }), e),
|
|
4974
4974
|
disabled: s || y,
|
|
4975
4975
|
onInput: k,
|
|
4976
|
-
readOnly:
|
|
4976
|
+
readOnly: m || !1,
|
|
4977
4977
|
"aria-invalid": a,
|
|
4978
4978
|
style: { height: "auto", overflow: "hidden", width: "100%" },
|
|
4979
4979
|
...D
|
|
@@ -4991,7 +4991,7 @@ const pa = be(
|
|
|
4991
4991
|
}
|
|
4992
4992
|
);
|
|
4993
4993
|
}
|
|
4994
|
-
), va =
|
|
4994
|
+
), va = me(
|
|
4995
4995
|
({
|
|
4996
4996
|
isAction: e = !1,
|
|
4997
4997
|
className: t,
|
|
@@ -5000,7 +5000,7 @@ const pa = be(
|
|
|
5000
5000
|
children: n,
|
|
5001
5001
|
...i
|
|
5002
5002
|
}, a) => {
|
|
5003
|
-
const { size: s, color: l, isDisabled: c } = Ut(), u = r || c, d =
|
|
5003
|
+
const { size: s, color: l, isDisabled: c } = Ut(), u = r || c, d = bd({
|
|
5004
5004
|
size: s,
|
|
5005
5005
|
color: l,
|
|
5006
5006
|
isDisabled: u,
|
|
@@ -5021,7 +5021,7 @@ const pa = be(
|
|
|
5021
5021
|
}
|
|
5022
5022
|
);
|
|
5023
5023
|
}
|
|
5024
|
-
), fa =
|
|
5024
|
+
), fa = me(
|
|
5025
5025
|
({ icon: e, className: t, children: r, ...o }, n) => {
|
|
5026
5026
|
const { size: i, color: a, setHasMessage: s, isDisabled: l } = Ut();
|
|
5027
5027
|
return se(() => (s(!0), () => {
|
|
@@ -5032,7 +5032,7 @@ const pa = be(
|
|
|
5032
5032
|
ref: n,
|
|
5033
5033
|
"data-qui": "InputMessage",
|
|
5034
5034
|
role: "alert",
|
|
5035
|
-
className: R(
|
|
5035
|
+
className: R(md({ size: i, color: a, isDisabled: l }), t),
|
|
5036
5036
|
...o,
|
|
5037
5037
|
children: [
|
|
5038
5038
|
e !== void 0 && /* @__PURE__ */ p("div", { className: R(wd({ size: i }), t), children: e }),
|
|
@@ -5090,7 +5090,7 @@ const Vt = {
|
|
|
5090
5090
|
"p-0.5 rounded cursor-pointer",
|
|
5091
5091
|
Wt[e].button,
|
|
5092
5092
|
Wt[e].icon
|
|
5093
|
-
),
|
|
5093
|
+
), He = ({
|
|
5094
5094
|
label: e,
|
|
5095
5095
|
color: t = "primary",
|
|
5096
5096
|
position: r = "up",
|
|
@@ -5103,16 +5103,16 @@ const Vt = {
|
|
|
5103
5103
|
container: c,
|
|
5104
5104
|
isHidden: u = !1
|
|
5105
5105
|
}) => {
|
|
5106
|
-
const [d, x] = Ee(!1), [k, O] = Ee(!1), [y,
|
|
5106
|
+
const [d, x] = Ee(!1), [k, O] = Ee(!1), [y, m] = Ee({
|
|
5107
5107
|
position: r,
|
|
5108
5108
|
transform: ""
|
|
5109
5109
|
}), D = fe(null), h = fe(null), g = fe(null);
|
|
5110
5110
|
se(() => {
|
|
5111
5111
|
u && d && (x(!1), g.current && clearTimeout(g.current));
|
|
5112
5112
|
}, [u, d]);
|
|
5113
|
-
const
|
|
5113
|
+
const b = q(() => {
|
|
5114
5114
|
if (!D.current || !h.current) return;
|
|
5115
|
-
const S = D.current.getBoundingClientRect(),
|
|
5115
|
+
const S = D.current.getBoundingClientRect(), P = h.current.getBoundingClientRect(), W = window.innerWidth, Q = window.innerHeight, ee = window.scrollX, re = window.scrollY, V = Math.max(
|
|
5116
5116
|
document.documentElement.scrollWidth,
|
|
5117
5117
|
document.body.scrollWidth,
|
|
5118
5118
|
W
|
|
@@ -5121,7 +5121,7 @@ const Vt = {
|
|
|
5121
5121
|
document.body.scrollHeight,
|
|
5122
5122
|
Q
|
|
5123
5123
|
), v = 4;
|
|
5124
|
-
let C = r,
|
|
5124
|
+
let C = r, H = {
|
|
5125
5125
|
position: C,
|
|
5126
5126
|
transform: ""
|
|
5127
5127
|
};
|
|
@@ -5130,20 +5130,20 @@ const Vt = {
|
|
|
5130
5130
|
switch (E) {
|
|
5131
5131
|
case "up":
|
|
5132
5132
|
return {
|
|
5133
|
-
top: `${M -
|
|
5133
|
+
top: `${M - P.height - v}px`,
|
|
5134
5134
|
left: `${ne + $ / 2}px`,
|
|
5135
5135
|
transform: "translateX(-50%)"
|
|
5136
5136
|
};
|
|
5137
5137
|
case "up-start":
|
|
5138
5138
|
return {
|
|
5139
|
-
top: `${M -
|
|
5139
|
+
top: `${M - P.height - v}px`,
|
|
5140
5140
|
left: `${ne}px`,
|
|
5141
5141
|
transform: "translateX(0)"
|
|
5142
5142
|
};
|
|
5143
5143
|
case "up-end":
|
|
5144
5144
|
return {
|
|
5145
|
-
top: `${M -
|
|
5146
|
-
left: `${ne + $ -
|
|
5145
|
+
top: `${M - P.height - v}px`,
|
|
5146
|
+
left: `${ne + $ - P.width}px`,
|
|
5147
5147
|
transform: "translateX(0)"
|
|
5148
5148
|
};
|
|
5149
5149
|
case "down":
|
|
@@ -5161,25 +5161,25 @@ const Vt = {
|
|
|
5161
5161
|
case "down-end":
|
|
5162
5162
|
return {
|
|
5163
5163
|
top: `${M + Z + v}px`,
|
|
5164
|
-
left: `${ne + $ -
|
|
5164
|
+
left: `${ne + $ - P.width}px`,
|
|
5165
5165
|
transform: "translateX(0)"
|
|
5166
5166
|
};
|
|
5167
5167
|
case "left":
|
|
5168
5168
|
return {
|
|
5169
5169
|
top: `${M + Z / 2}px`,
|
|
5170
|
-
left: `${ne -
|
|
5170
|
+
left: `${ne - P.width - v}px`,
|
|
5171
5171
|
transform: "translateY(-50%)"
|
|
5172
5172
|
};
|
|
5173
5173
|
case "left-start":
|
|
5174
5174
|
return {
|
|
5175
5175
|
top: `${M}px`,
|
|
5176
|
-
left: `${ne -
|
|
5176
|
+
left: `${ne - P.width - v}px`,
|
|
5177
5177
|
transform: "translateY(0)"
|
|
5178
5178
|
};
|
|
5179
5179
|
case "left-end":
|
|
5180
5180
|
return {
|
|
5181
|
-
top: `${M + Z -
|
|
5182
|
-
left: `${ne -
|
|
5181
|
+
top: `${M + Z - P.height}px`,
|
|
5182
|
+
left: `${ne - P.width - v}px`,
|
|
5183
5183
|
transform: "translateY(0)"
|
|
5184
5184
|
};
|
|
5185
5185
|
case "right":
|
|
@@ -5196,7 +5196,7 @@ const Vt = {
|
|
|
5196
5196
|
};
|
|
5197
5197
|
case "right-end":
|
|
5198
5198
|
return {
|
|
5199
|
-
top: `${M + Z -
|
|
5199
|
+
top: `${M + Z - P.height}px`,
|
|
5200
5200
|
left: `${ne + $ + v}px`,
|
|
5201
5201
|
transform: "translateY(0)"
|
|
5202
5202
|
};
|
|
@@ -5205,45 +5205,45 @@ const Vt = {
|
|
|
5205
5205
|
}
|
|
5206
5206
|
}, _ = {
|
|
5207
5207
|
up: {
|
|
5208
|
-
fits: S.top -
|
|
5208
|
+
fits: S.top - P.height - v >= 0
|
|
5209
5209
|
},
|
|
5210
5210
|
"up-start": {
|
|
5211
|
-
fits: S.top -
|
|
5211
|
+
fits: S.top - P.height - v >= 0 && S.left + P.width <= W
|
|
5212
5212
|
},
|
|
5213
5213
|
"up-end": {
|
|
5214
|
-
fits: S.top -
|
|
5214
|
+
fits: S.top - P.height - v >= 0 && S.right - P.width >= 0
|
|
5215
5215
|
},
|
|
5216
5216
|
down: {
|
|
5217
|
-
fits: S.bottom +
|
|
5217
|
+
fits: S.bottom + P.height + v <= Q && S.bottom + P.height + v <= ae
|
|
5218
5218
|
},
|
|
5219
5219
|
"down-start": {
|
|
5220
|
-
fits: S.bottom +
|
|
5220
|
+
fits: S.bottom + P.height + v <= Q && S.bottom + P.height + v <= ae && S.left + P.width <= W
|
|
5221
5221
|
},
|
|
5222
5222
|
"down-end": {
|
|
5223
|
-
fits: S.bottom +
|
|
5223
|
+
fits: S.bottom + P.height + v <= Q && S.bottom + P.height + v <= ae && S.right - P.width >= 0
|
|
5224
5224
|
},
|
|
5225
5225
|
left: {
|
|
5226
|
-
fits: S.left -
|
|
5226
|
+
fits: S.left - P.width - v >= 0
|
|
5227
5227
|
},
|
|
5228
5228
|
"left-start": {
|
|
5229
|
-
fits: S.left -
|
|
5229
|
+
fits: S.left - P.width - v >= 0 && S.top + P.height <= Q
|
|
5230
5230
|
},
|
|
5231
5231
|
"left-end": {
|
|
5232
|
-
fits: S.left -
|
|
5232
|
+
fits: S.left - P.width - v >= 0 && S.bottom - P.height >= 0
|
|
5233
5233
|
},
|
|
5234
5234
|
right: {
|
|
5235
|
-
fits: S.right +
|
|
5235
|
+
fits: S.right + P.width + v <= W && S.right + P.width + v <= V
|
|
5236
5236
|
},
|
|
5237
5237
|
"right-start": {
|
|
5238
|
-
fits: S.right +
|
|
5238
|
+
fits: S.right + P.width + v <= W && S.right + P.width + v <= V && S.top + P.height <= Q
|
|
5239
5239
|
},
|
|
5240
5240
|
"right-end": {
|
|
5241
|
-
fits: S.right +
|
|
5241
|
+
fits: S.right + P.width + v <= W && S.right + P.width + v <= V && S.bottom - P.height >= 0
|
|
5242
5242
|
}
|
|
5243
|
-
}, L = S.left + S.width / 2 -
|
|
5243
|
+
}, L = S.left + S.width / 2 - P.width / 2, I = S.left + S.width / 2 + P.width / 2;
|
|
5244
5244
|
if ((r === "up" || r === "down") && (L < 0 || I > W) && (_[r].fits = !1), _[r].fits) {
|
|
5245
5245
|
const E = j(r);
|
|
5246
|
-
|
|
5246
|
+
H = {
|
|
5247
5247
|
position: r,
|
|
5248
5248
|
...E,
|
|
5249
5249
|
transform: E.transform || ""
|
|
@@ -5266,7 +5266,7 @@ const Vt = {
|
|
|
5266
5266
|
if (E) {
|
|
5267
5267
|
C = E;
|
|
5268
5268
|
const K = j(E);
|
|
5269
|
-
|
|
5269
|
+
H = {
|
|
5270
5270
|
position: C,
|
|
5271
5271
|
...K,
|
|
5272
5272
|
transform: K.transform || ""
|
|
@@ -5309,14 +5309,14 @@ const Vt = {
|
|
|
5309
5309
|
).position;
|
|
5310
5310
|
C = Y;
|
|
5311
5311
|
const $ = j(Y);
|
|
5312
|
-
|
|
5312
|
+
H = {
|
|
5313
5313
|
position: C,
|
|
5314
5314
|
...$,
|
|
5315
5315
|
transform: $.transform || ""
|
|
5316
5316
|
};
|
|
5317
5317
|
}
|
|
5318
5318
|
}
|
|
5319
|
-
|
|
5319
|
+
m(H);
|
|
5320
5320
|
}, [r]), w = () => {
|
|
5321
5321
|
s !== "click" || u || (x(!0), g.current && clearTimeout(g.current), g.current = setTimeout(() => {
|
|
5322
5322
|
k || x(!1);
|
|
@@ -5339,25 +5339,25 @@ const Vt = {
|
|
|
5339
5339
|
se(() => {
|
|
5340
5340
|
if (d) {
|
|
5341
5341
|
const S = requestAnimationFrame(() => {
|
|
5342
|
-
|
|
5342
|
+
b();
|
|
5343
5343
|
});
|
|
5344
5344
|
return () => cancelAnimationFrame(S);
|
|
5345
5345
|
}
|
|
5346
|
-
}, [d, e,
|
|
5346
|
+
}, [d, e, b]), se(() => {
|
|
5347
5347
|
if (d) {
|
|
5348
|
-
const S = setTimeout(() =>
|
|
5348
|
+
const S = setTimeout(() => b(), 0);
|
|
5349
5349
|
return () => clearTimeout(S);
|
|
5350
5350
|
}
|
|
5351
|
-
}, [d,
|
|
5351
|
+
}, [d, b]), se(() => {
|
|
5352
5352
|
const S = () => {
|
|
5353
|
-
d &&
|
|
5354
|
-
},
|
|
5355
|
-
d &&
|
|
5353
|
+
d && b();
|
|
5354
|
+
}, P = () => {
|
|
5355
|
+
d && b();
|
|
5356
5356
|
};
|
|
5357
|
-
return window.addEventListener("resize", S), window.addEventListener("scroll",
|
|
5358
|
-
window.removeEventListener("resize", S), window.removeEventListener("scroll",
|
|
5357
|
+
return window.addEventListener("resize", S), window.addEventListener("scroll", P, !0), () => {
|
|
5358
|
+
window.removeEventListener("resize", S), window.removeEventListener("scroll", P, !0), g.current && clearTimeout(g.current);
|
|
5359
5359
|
};
|
|
5360
|
-
}, [d,
|
|
5360
|
+
}, [d, b]);
|
|
5361
5361
|
const G = c || (typeof document < "u" ? document.body : null);
|
|
5362
5362
|
return G ? /* @__PURE__ */ te(Dt, { children: [
|
|
5363
5363
|
/* @__PURE__ */ p(
|
|
@@ -5372,7 +5372,7 @@ const Vt = {
|
|
|
5372
5372
|
children: i
|
|
5373
5373
|
}
|
|
5374
5374
|
),
|
|
5375
|
-
d && !!e &&
|
|
5375
|
+
d && !!e && Hi(
|
|
5376
5376
|
/* @__PURE__ */ te(
|
|
5377
5377
|
"div",
|
|
5378
5378
|
{
|
|
@@ -5401,7 +5401,7 @@ const Vt = {
|
|
|
5401
5401
|
onClick: N,
|
|
5402
5402
|
className: Qd({ color: t }),
|
|
5403
5403
|
role: "button",
|
|
5404
|
-
children: /* @__PURE__ */ p(
|
|
5404
|
+
children: /* @__PURE__ */ p(Hr, {})
|
|
5405
5405
|
}
|
|
5406
5406
|
)
|
|
5407
5407
|
]
|
|
@@ -5462,7 +5462,7 @@ var Zn;
|
|
|
5462
5462
|
e[e.Uninitialized = 0] = "Uninitialized", e[e.Initializing = 1] = "Initializing", e[e.Initialized = 2] = "Initialized";
|
|
5463
5463
|
})(Zn || (Zn = {}));
|
|
5464
5464
|
We.Down, We.Right, We.Up, We.Left;
|
|
5465
|
-
const
|
|
5465
|
+
const ba = {
|
|
5466
5466
|
sm: {
|
|
5467
5467
|
padding: "px-4 py-0.5",
|
|
5468
5468
|
text: "text-xxs",
|
|
@@ -5550,7 +5550,7 @@ const ma = {
|
|
|
5550
5550
|
}
|
|
5551
5551
|
}
|
|
5552
5552
|
}, ru = (e, t, r, o) => {
|
|
5553
|
-
const n = tu[e], i =
|
|
5553
|
+
const n = tu[e], i = ba[t], a = "relative inline-flex items-center font-medium cursor-pointer transition-all duration-200";
|
|
5554
5554
|
return o ? R(
|
|
5555
5555
|
a,
|
|
5556
5556
|
i.padding,
|
|
@@ -5579,11 +5579,11 @@ const ma = {
|
|
|
5579
5579
|
);
|
|
5580
5580
|
}, ou = (e, t) => R(
|
|
5581
5581
|
"flex items-center justify-center",
|
|
5582
|
-
|
|
5582
|
+
ba[e].icon,
|
|
5583
5583
|
{
|
|
5584
5584
|
"opacity-50": t
|
|
5585
5585
|
}
|
|
5586
|
-
), nu = () => R("whitespace-nowrap"),
|
|
5586
|
+
), nu = () => R("whitespace-nowrap"), ma = (e, t) => {
|
|
5587
5587
|
const r = R(
|
|
5588
5588
|
"group flex items-center justify-between space-x-4",
|
|
5589
5589
|
"rounded-t px-2 text-xs",
|
|
@@ -5605,15 +5605,15 @@ const ma = {
|
|
|
5605
5605
|
({ value: e, label: t, icon: r, disabled: o, children: n, className: i, onClick: a, active: s, content: l, ...c }, u) => {
|
|
5606
5606
|
const d = rt(iu);
|
|
5607
5607
|
if (!d) return null;
|
|
5608
|
-
const { activeTab: x, onTabChange: k, variant: O, color: y, size:
|
|
5609
|
-
|
|
5608
|
+
const { activeTab: x, onTabChange: k, variant: O, color: y, size: m, showIcons: D, disabled: h } = d, g = s !== void 0 ? s : x === e, b = o || h, w = (N) => {
|
|
5609
|
+
b || (k(e), a == null || a(N));
|
|
5610
5610
|
};
|
|
5611
5611
|
return O === "file" ? /* @__PURE__ */ p(
|
|
5612
5612
|
"div",
|
|
5613
5613
|
{
|
|
5614
5614
|
"data-qui": "FileTabItem",
|
|
5615
|
-
className: R(
|
|
5616
|
-
onClick: (N) => !
|
|
5615
|
+
className: R(ma(g, !1), "cursor-pointer", i),
|
|
5616
|
+
onClick: (N) => !b && w(N),
|
|
5617
5617
|
children: n || /* @__PURE__ */ p(Dt, { children: /* @__PURE__ */ te("span", { className: "flex items-center gap-2", children: [
|
|
5618
5618
|
r,
|
|
5619
5619
|
/* @__PURE__ */ p("span", { children: t })
|
|
@@ -5627,13 +5627,13 @@ const ma = {
|
|
|
5627
5627
|
type: "button",
|
|
5628
5628
|
role: "tab",
|
|
5629
5629
|
"aria-selected": g,
|
|
5630
|
-
"aria-disabled":
|
|
5631
|
-
className: R(ru(y,
|
|
5630
|
+
"aria-disabled": b,
|
|
5631
|
+
className: R(ru(y, m, g, b || !1), i),
|
|
5632
5632
|
onClick: w,
|
|
5633
|
-
disabled:
|
|
5633
|
+
disabled: b,
|
|
5634
5634
|
...c,
|
|
5635
5635
|
children: [
|
|
5636
|
-
D && r && /* @__PURE__ */ p("span", { className: ou(
|
|
5636
|
+
D && r && /* @__PURE__ */ p("span", { className: ou(m, b || !1), children: r }),
|
|
5637
5637
|
/* @__PURE__ */ p("span", { className: nu(), children: n || t })
|
|
5638
5638
|
]
|
|
5639
5639
|
}
|
|
@@ -5641,7 +5641,7 @@ const ma = {
|
|
|
5641
5641
|
}
|
|
5642
5642
|
);
|
|
5643
5643
|
au.displayName = "TabItem";
|
|
5644
|
-
const su = vt.forwardRef(({ isActive: e = !1, isDesactive: t = !1, children: r, ...o }, n) => /* @__PURE__ */ p("div", { "data-qui": "TabNavContainer", className:
|
|
5644
|
+
const su = vt.forwardRef(({ isActive: e = !1, isDesactive: t = !1, children: r, ...o }, n) => /* @__PURE__ */ p("div", { "data-qui": "TabNavContainer", className: ma(e, t), ref: n, ...o, children: r }));
|
|
5645
5645
|
su.displayName = "TabNavContainer";
|
|
5646
5646
|
var ke = function() {
|
|
5647
5647
|
return ke = Object.assign || function(e) {
|
|
@@ -5928,13 +5928,13 @@ var ke = function() {
|
|
|
5928
5928
|
} else this.props.bounds === "window" ? this.window && (l = a ? this.resizableRight : this.window.innerWidth - this.resizableLeft, c = s ? this.resizableBottom : this.window.innerHeight - this.resizableTop) : this.props.bounds && (l = a ? this.resizableRight - this.targetLeft : this.props.bounds.offsetWidth + (this.targetLeft - this.resizableLeft), c = s ? this.resizableBottom - this.targetTop : this.props.bounds.offsetHeight + (this.targetTop - this.resizableTop));
|
|
5929
5929
|
return l && Number.isFinite(l) && (r = r && r < l ? r : l), c && Number.isFinite(c) && (o = o && o < c ? o : c), { maxWidth: r, maxHeight: o };
|
|
5930
5930
|
}, t.prototype.calculateNewSizeFromDirection = function(r, o) {
|
|
5931
|
-
var n = this.props.scale || 1, i = gu(this.props.resizeRatio || 1), a = i[0], s = i[1], l = this.state, c = l.direction, u = l.original, d = this.props, x = d.lockAspectRatio, k = d.lockAspectRatioExtraHeight, O = d.lockAspectRatioExtraWidth, y = u.width,
|
|
5932
|
-
return xt("right", c) && (y = u.width + (r - u.x) * a / n, x && (
|
|
5931
|
+
var n = this.props.scale || 1, i = gu(this.props.resizeRatio || 1), a = i[0], s = i[1], l = this.state, c = l.direction, u = l.original, d = this.props, x = d.lockAspectRatio, k = d.lockAspectRatioExtraHeight, O = d.lockAspectRatioExtraWidth, y = u.width, m = u.height, D = k || 0, h = O || 0;
|
|
5932
|
+
return xt("right", c) && (y = u.width + (r - u.x) * a / n, x && (m = (y - h) / this.ratio + D)), xt("left", c) && (y = u.width - (r - u.x) * a / n, x && (m = (y - h) / this.ratio + D)), xt("bottom", c) && (m = u.height + (o - u.y) * s / n, x && (y = (m - D) * this.ratio + h)), xt("top", c) && (m = u.height - (o - u.y) * s / n, x && (y = (m - D) * this.ratio + h)), { newWidth: y, newHeight: m };
|
|
5933
5933
|
}, t.prototype.calculateNewSizeFromAspectRatio = function(r, o, n, i) {
|
|
5934
5934
|
var a = this.props, s = a.lockAspectRatio, l = a.lockAspectRatioExtraHeight, c = a.lockAspectRatioExtraWidth, u = typeof i.width > "u" ? 10 : i.width, d = typeof n.width > "u" || n.width < 0 ? r : n.width, x = typeof i.height > "u" ? 10 : i.height, k = typeof n.height > "u" || n.height < 0 ? o : n.height, O = l || 0, y = c || 0;
|
|
5935
5935
|
if (s) {
|
|
5936
|
-
var
|
|
5937
|
-
r = ir(r,
|
|
5936
|
+
var m = (x - O) * this.ratio + y, D = (k - O) * this.ratio + y, h = (u - y) / this.ratio + O, g = (d - y) / this.ratio + O, b = Math.max(u, m), w = Math.min(d, D), N = Math.max(x, h), F = Math.min(k, g);
|
|
5937
|
+
r = ir(r, b, w), o = ir(o, N, F);
|
|
5938
5938
|
} else
|
|
5939
5939
|
r = ir(r, u, d), o = ir(o, x, k);
|
|
5940
5940
|
return { newWidth: r, newHeight: o };
|
|
@@ -5995,35 +5995,35 @@ var ke = function() {
|
|
|
5995
5995
|
r.preventDefault(), r.stopPropagation();
|
|
5996
5996
|
} catch {
|
|
5997
5997
|
}
|
|
5998
|
-
var n = this.props, i = n.maxWidth, a = n.maxHeight, s = n.minWidth, l = n.minHeight, c = ar(r) ? r.touches[0].clientX : r.clientX, u = ar(r) ? r.touches[0].clientY : r.clientY, d = this.state, x = d.direction, k = d.original, O = d.width, y = d.height,
|
|
5998
|
+
var n = this.props, i = n.maxWidth, a = n.maxHeight, s = n.minWidth, l = n.minHeight, c = ar(r) ? r.touches[0].clientX : r.clientX, u = ar(r) ? r.touches[0].clientY : r.clientY, d = this.state, x = d.direction, k = d.original, O = d.width, y = d.height, m = this.getParentSize(), D = hu(m, this.window.innerWidth, this.window.innerHeight, i, a, s, l);
|
|
5999
5999
|
i = D.maxWidth, a = D.maxHeight, s = D.minWidth, l = D.minHeight;
|
|
6000
|
-
var h = this.calculateNewSizeFromDirection(c, u), g = h.newHeight,
|
|
6001
|
-
this.props.snap && this.props.snap.x && (
|
|
6002
|
-
var N = this.calculateNewSizeFromAspectRatio(
|
|
6003
|
-
if (
|
|
6004
|
-
var F = ti(
|
|
6005
|
-
|
|
6000
|
+
var h = this.calculateNewSizeFromDirection(c, u), g = h.newHeight, b = h.newWidth, w = this.calculateNewMaxFromBoundary(i, a);
|
|
6001
|
+
this.props.snap && this.props.snap.x && (b = ri(b, this.props.snap.x, this.props.snapGap)), this.props.snap && this.props.snap.y && (g = ri(g, this.props.snap.y, this.props.snapGap));
|
|
6002
|
+
var N = this.calculateNewSizeFromAspectRatio(b, g, { width: w.maxWidth, height: w.maxHeight }, { width: s, height: l });
|
|
6003
|
+
if (b = N.newWidth, g = N.newHeight, this.props.grid) {
|
|
6004
|
+
var F = ti(b, this.props.grid[0], this.props.gridGap ? this.props.gridGap[0] : 0), f = ti(g, this.props.grid[1], this.props.gridGap ? this.props.gridGap[1] : 0), z = this.props.snapGap || 0, A = z === 0 || Math.abs(F - b) <= z ? F : b, G = z === 0 || Math.abs(f - g) <= z ? f : g;
|
|
6005
|
+
b = A, g = G;
|
|
6006
6006
|
}
|
|
6007
6007
|
var S = {
|
|
6008
|
-
width:
|
|
6008
|
+
width: b - k.width,
|
|
6009
6009
|
height: g - k.height
|
|
6010
6010
|
};
|
|
6011
6011
|
if (this.delta = S, O && typeof O == "string") {
|
|
6012
6012
|
if (O.endsWith("%")) {
|
|
6013
|
-
var
|
|
6014
|
-
|
|
6013
|
+
var P = b / m.width * 100;
|
|
6014
|
+
b = "".concat(P, "%");
|
|
6015
6015
|
} else if (O.endsWith("vw")) {
|
|
6016
|
-
var W =
|
|
6017
|
-
|
|
6016
|
+
var W = b / this.window.innerWidth * 100;
|
|
6017
|
+
b = "".concat(W, "vw");
|
|
6018
6018
|
} else if (O.endsWith("vh")) {
|
|
6019
|
-
var Q =
|
|
6020
|
-
|
|
6019
|
+
var Q = b / this.window.innerHeight * 100;
|
|
6020
|
+
b = "".concat(Q, "vh");
|
|
6021
6021
|
}
|
|
6022
6022
|
}
|
|
6023
6023
|
if (y && typeof y == "string") {
|
|
6024
6024
|
if (y.endsWith("%")) {
|
|
6025
|
-
var
|
|
6026
|
-
g = "".concat(
|
|
6025
|
+
var P = g / m.height * 100;
|
|
6026
|
+
g = "".concat(P, "%");
|
|
6027
6027
|
} else if (y.endsWith("vw")) {
|
|
6028
6028
|
var W = g / this.window.innerWidth * 100;
|
|
6029
6029
|
g = "".concat(W, "vw");
|
|
@@ -6033,7 +6033,7 @@ var ke = function() {
|
|
|
6033
6033
|
}
|
|
6034
6034
|
}
|
|
6035
6035
|
var ee = {
|
|
6036
|
-
width: this.createSizeForCssProperty(
|
|
6036
|
+
width: this.createSizeForCssProperty(b, "width"),
|
|
6037
6037
|
height: this.createSizeForCssProperty(g, "height")
|
|
6038
6038
|
};
|
|
6039
6039
|
this.flexDir === "row" ? ee.flexBasis = ee.width : this.flexDir === "column" && (ee.flexBasis = ee.height);
|
|
@@ -6103,14 +6103,14 @@ var ke = function() {
|
|
|
6103
6103
|
}, t;
|
|
6104
6104
|
})(ll)
|
|
6105
6105
|
);
|
|
6106
|
-
const
|
|
6106
|
+
const bu = {
|
|
6107
6107
|
0: "bg-panel-0",
|
|
6108
6108
|
1: "bg-panel-1",
|
|
6109
6109
|
2: "bg-panel-2",
|
|
6110
6110
|
3: "bg-panel-3",
|
|
6111
6111
|
4: "bg-panel-4",
|
|
6112
6112
|
5: "bg-panel-5"
|
|
6113
|
-
},
|
|
6113
|
+
}, mu = {
|
|
6114
6114
|
tabs: "border-tab-border",
|
|
6115
6115
|
primary: "border-primary",
|
|
6116
6116
|
negative: "border-input-error-border",
|
|
@@ -6128,8 +6128,8 @@ const mu = {
|
|
|
6128
6128
|
"text-body": !o,
|
|
6129
6129
|
"text-inactive-text": o
|
|
6130
6130
|
},
|
|
6131
|
-
r ?
|
|
6132
|
-
|
|
6131
|
+
r ? mu[r] : "border-panel-border",
|
|
6132
|
+
bu[e],
|
|
6133
6133
|
t
|
|
6134
6134
|
), wu = (e) => {
|
|
6135
6135
|
if (!e) return {};
|
|
@@ -6141,7 +6141,7 @@ const mu = {
|
|
|
6141
6141
|
n && (t.minHeight = parseInt(n[1], 10));
|
|
6142
6142
|
const i = e.match(/max-h-\[(\d+)px\]/);
|
|
6143
6143
|
return i && (t.maxHeight = parseInt(i[1], 10)), t;
|
|
6144
|
-
}, xu =
|
|
6144
|
+
}, xu = me(
|
|
6145
6145
|
({
|
|
6146
6146
|
children: e,
|
|
6147
6147
|
width: t,
|
|
@@ -6159,11 +6159,11 @@ const mu = {
|
|
|
6159
6159
|
lockAspectRatio: k = !1,
|
|
6160
6160
|
enable: O,
|
|
6161
6161
|
handleStyles: y = {},
|
|
6162
|
-
handleClasses:
|
|
6162
|
+
handleClasses: m = {},
|
|
6163
6163
|
handleComponent: D = {},
|
|
6164
6164
|
style: h = {},
|
|
6165
6165
|
className: g,
|
|
6166
|
-
onResizeStart:
|
|
6166
|
+
onResizeStart: b,
|
|
6167
6167
|
onResize: w,
|
|
6168
6168
|
onResizeStop: N,
|
|
6169
6169
|
scale: F = 1,
|
|
@@ -6172,7 +6172,7 @@ const mu = {
|
|
|
6172
6172
|
as: A = "div",
|
|
6173
6173
|
depth: G,
|
|
6174
6174
|
disabled: S
|
|
6175
|
-
},
|
|
6175
|
+
}, P) => {
|
|
6176
6176
|
const W = wa({
|
|
6177
6177
|
depth: G,
|
|
6178
6178
|
className: g,
|
|
@@ -6188,7 +6188,7 @@ const mu = {
|
|
|
6188
6188
|
height: l ?? "auto"
|
|
6189
6189
|
}
|
|
6190
6190
|
} : {}, V = fe(null);
|
|
6191
|
-
return cl(
|
|
6191
|
+
return cl(P, () => {
|
|
6192
6192
|
var ae;
|
|
6193
6193
|
return (ae = V.current) == null ? void 0 : ae.resizable;
|
|
6194
6194
|
}), /* @__PURE__ */ p(
|
|
@@ -6207,11 +6207,11 @@ const mu = {
|
|
|
6207
6207
|
lockAspectRatio: k,
|
|
6208
6208
|
enable: O,
|
|
6209
6209
|
handleStyles: y,
|
|
6210
|
-
handleClasses:
|
|
6210
|
+
handleClasses: m,
|
|
6211
6211
|
handleComponent: D,
|
|
6212
6212
|
style: h,
|
|
6213
6213
|
className: R("relative box-border", W),
|
|
6214
|
-
onResizeStart:
|
|
6214
|
+
onResizeStart: b,
|
|
6215
6215
|
onResize: w,
|
|
6216
6216
|
onResizeStop: N,
|
|
6217
6217
|
scale: F,
|
|
@@ -6318,7 +6318,7 @@ const yt = {
|
|
|
6318
6318
|
"cursor-pointer": !o,
|
|
6319
6319
|
"cursor-not-allowed text-muted": o
|
|
6320
6320
|
})
|
|
6321
|
-
}), xa =
|
|
6321
|
+
}), xa = me(({
|
|
6322
6322
|
label: e,
|
|
6323
6323
|
checked: t,
|
|
6324
6324
|
defaultChecked: r = !1,
|
|
@@ -6332,13 +6332,13 @@ const yt = {
|
|
|
6332
6332
|
name: u,
|
|
6333
6333
|
...d
|
|
6334
6334
|
}, x) => {
|
|
6335
|
-
const [k, O] = Ee(r), y = t !== void 0,
|
|
6336
|
-
const g = !
|
|
6335
|
+
const [k, O] = Ee(r), y = t !== void 0, m = y ? t : k, D = () => {
|
|
6336
|
+
const g = !m;
|
|
6337
6337
|
y || O(g), s == null || s(g);
|
|
6338
6338
|
}, h = yu(
|
|
6339
6339
|
n,
|
|
6340
6340
|
i,
|
|
6341
|
-
|
|
6341
|
+
m,
|
|
6342
6342
|
o,
|
|
6343
6343
|
!!a,
|
|
6344
6344
|
l
|
|
@@ -6352,7 +6352,7 @@ const yt = {
|
|
|
6352
6352
|
...d,
|
|
6353
6353
|
type: "button",
|
|
6354
6354
|
role: "switch",
|
|
6355
|
-
"aria-checked":
|
|
6355
|
+
"aria-checked": m,
|
|
6356
6356
|
"aria-label": e,
|
|
6357
6357
|
disabled: o,
|
|
6358
6358
|
onClick: D,
|
|
@@ -6462,12 +6462,12 @@ const $t = {
|
|
|
6462
6462
|
{
|
|
6463
6463
|
"pointer-events-none": r
|
|
6464
6464
|
}
|
|
6465
|
-
), ka = Ue(null),
|
|
6465
|
+
), ka = Ue(null), Pr = () => {
|
|
6466
6466
|
const e = rt(ka);
|
|
6467
6467
|
if (!e)
|
|
6468
6468
|
throw new Error("Pill components must be used within a Pill.Root");
|
|
6469
6469
|
return e;
|
|
6470
|
-
}, _o =
|
|
6470
|
+
}, _o = me(
|
|
6471
6471
|
({
|
|
6472
6472
|
size: e = "md",
|
|
6473
6473
|
color: t = "primary",
|
|
@@ -6499,9 +6499,9 @@ const $t = {
|
|
|
6499
6499
|
}
|
|
6500
6500
|
);
|
|
6501
6501
|
_o.displayName = "Pill.Root";
|
|
6502
|
-
const So =
|
|
6502
|
+
const So = me(
|
|
6503
6503
|
({ className: e, children: t, ...r }, o) => {
|
|
6504
|
-
const { size: n } =
|
|
6504
|
+
const { size: n } = Pr();
|
|
6505
6505
|
return /* @__PURE__ */ p(
|
|
6506
6506
|
"span",
|
|
6507
6507
|
{
|
|
@@ -6514,9 +6514,9 @@ const So = be(
|
|
|
6514
6514
|
}
|
|
6515
6515
|
);
|
|
6516
6516
|
So.displayName = "Pill.Text";
|
|
6517
|
-
const No =
|
|
6517
|
+
const No = me(
|
|
6518
6518
|
({ className: e, children: t, label: r, position: o, ...n }, i) => {
|
|
6519
|
-
const { size: a, color: s, disabled: l } =
|
|
6519
|
+
const { size: a, color: s, disabled: l } = Pr(), c = !!r, u = /* @__PURE__ */ p(
|
|
6520
6520
|
"span",
|
|
6521
6521
|
{
|
|
6522
6522
|
ref: i,
|
|
@@ -6529,13 +6529,13 @@ const No = be(
|
|
|
6529
6529
|
children: t
|
|
6530
6530
|
}
|
|
6531
6531
|
);
|
|
6532
|
-
return c && !l ? /* @__PURE__ */ p(
|
|
6532
|
+
return c && !l ? /* @__PURE__ */ p(He, { label: r || "", position: o || "up", children: u }) : u;
|
|
6533
6533
|
}
|
|
6534
6534
|
);
|
|
6535
6535
|
No.displayName = "Pill.Icon";
|
|
6536
|
-
const Ia =
|
|
6536
|
+
const Ia = me(
|
|
6537
6537
|
({ className: e, children: t, ...r }, o) => {
|
|
6538
|
-
const { size: n, color: i, disabled: a } =
|
|
6538
|
+
const { size: n, color: i, disabled: a } = Pr();
|
|
6539
6539
|
return /* @__PURE__ */ p(
|
|
6540
6540
|
"button",
|
|
6541
6541
|
{
|
|
@@ -6553,7 +6553,7 @@ const Ia = be(
|
|
|
6553
6553
|
}
|
|
6554
6554
|
);
|
|
6555
6555
|
Ia.displayName = "Pill.Button";
|
|
6556
|
-
const Oo =
|
|
6556
|
+
const Oo = me(
|
|
6557
6557
|
({
|
|
6558
6558
|
className: e,
|
|
6559
6559
|
onClose: t,
|
|
@@ -6561,7 +6561,7 @@ const Oo = be(
|
|
|
6561
6561
|
children: o,
|
|
6562
6562
|
...n
|
|
6563
6563
|
}, i) => {
|
|
6564
|
-
const { size: a, color: s, disabled: l } =
|
|
6564
|
+
const { size: a, color: s, disabled: l } = Pr();
|
|
6565
6565
|
return /* @__PURE__ */ p(
|
|
6566
6566
|
"button",
|
|
6567
6567
|
{
|
|
@@ -6575,13 +6575,13 @@ const Oo = be(
|
|
|
6575
6575
|
onClick: t,
|
|
6576
6576
|
"aria-label": r,
|
|
6577
6577
|
...n,
|
|
6578
|
-
children: o || /* @__PURE__ */ p(
|
|
6578
|
+
children: o || /* @__PURE__ */ p(Hr, {})
|
|
6579
6579
|
}
|
|
6580
6580
|
);
|
|
6581
6581
|
}
|
|
6582
6582
|
);
|
|
6583
6583
|
Oo.displayName = "Pill.Close";
|
|
6584
|
-
const Ea =
|
|
6584
|
+
const Ea = me(
|
|
6585
6585
|
({
|
|
6586
6586
|
size: e = "md",
|
|
6587
6587
|
color: t = "primary",
|
|
@@ -6983,7 +6983,7 @@ const _a = Ue(null), ze = () => {
|
|
|
6983
6983
|
xe[t].dropdownIndicator,
|
|
6984
6984
|
xe[t].dropdownIndicatorHover
|
|
6985
6985
|
]
|
|
6986
|
-
),
|
|
6986
|
+
), Hu = ({
|
|
6987
6987
|
size: e,
|
|
6988
6988
|
placement: t,
|
|
6989
6989
|
hasMessage: r,
|
|
@@ -7003,7 +7003,7 @@ const _a = Ue(null), ze = () => {
|
|
|
7003
7003
|
n[t || "auto"],
|
|
7004
7004
|
Oe[e].menu
|
|
7005
7005
|
);
|
|
7006
|
-
},
|
|
7006
|
+
}, Pu = ({ size: e }) => R(
|
|
7007
7007
|
"overflow-y-auto",
|
|
7008
7008
|
Oe[e].menuList,
|
|
7009
7009
|
xe.primary.menuList
|
|
@@ -7094,7 +7094,7 @@ var ni;
|
|
|
7094
7094
|
function Gu() {
|
|
7095
7095
|
if (ni) return de;
|
|
7096
7096
|
ni = 1;
|
|
7097
|
-
var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, r = e ? Symbol.for("react.portal") : 60106, o = e ? Symbol.for("react.fragment") : 60107, n = e ? Symbol.for("react.strict_mode") : 60108, i = e ? Symbol.for("react.profiler") : 60114, a = e ? Symbol.for("react.provider") : 60109, s = e ? Symbol.for("react.context") : 60110, l = e ? Symbol.for("react.async_mode") : 60111, c = e ? Symbol.for("react.concurrent_mode") : 60111, u = e ? Symbol.for("react.forward_ref") : 60112, d = e ? Symbol.for("react.suspense") : 60113, x = e ? Symbol.for("react.suspense_list") : 60120, k = e ? Symbol.for("react.memo") : 60115, O = e ? Symbol.for("react.lazy") : 60116, y = e ? Symbol.for("react.block") : 60121,
|
|
7097
|
+
var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, r = e ? Symbol.for("react.portal") : 60106, o = e ? Symbol.for("react.fragment") : 60107, n = e ? Symbol.for("react.strict_mode") : 60108, i = e ? Symbol.for("react.profiler") : 60114, a = e ? Symbol.for("react.provider") : 60109, s = e ? Symbol.for("react.context") : 60110, l = e ? Symbol.for("react.async_mode") : 60111, c = e ? Symbol.for("react.concurrent_mode") : 60111, u = e ? Symbol.for("react.forward_ref") : 60112, d = e ? Symbol.for("react.suspense") : 60113, x = e ? Symbol.for("react.suspense_list") : 60120, k = e ? Symbol.for("react.memo") : 60115, O = e ? Symbol.for("react.lazy") : 60116, y = e ? Symbol.for("react.block") : 60121, m = e ? Symbol.for("react.fundamental") : 60117, D = e ? Symbol.for("react.responder") : 60118, h = e ? Symbol.for("react.scope") : 60119;
|
|
7098
7098
|
function g(w) {
|
|
7099
7099
|
if (typeof w == "object" && w !== null) {
|
|
7100
7100
|
var N = w.$$typeof;
|
|
@@ -7125,12 +7125,12 @@ function Gu() {
|
|
|
7125
7125
|
}
|
|
7126
7126
|
}
|
|
7127
7127
|
}
|
|
7128
|
-
function
|
|
7128
|
+
function b(w) {
|
|
7129
7129
|
return g(w) === c;
|
|
7130
7130
|
}
|
|
7131
7131
|
return de.AsyncMode = l, de.ConcurrentMode = c, de.ContextConsumer = s, de.ContextProvider = a, de.Element = t, de.ForwardRef = u, de.Fragment = o, de.Lazy = O, de.Memo = k, de.Portal = r, de.Profiler = i, de.StrictMode = n, de.Suspense = d, de.isAsyncMode = function(w) {
|
|
7132
|
-
return
|
|
7133
|
-
}, de.isConcurrentMode =
|
|
7132
|
+
return b(w) || g(w) === l;
|
|
7133
|
+
}, de.isConcurrentMode = b, de.isContextConsumer = function(w) {
|
|
7134
7134
|
return g(w) === s;
|
|
7135
7135
|
}, de.isContextProvider = function(w) {
|
|
7136
7136
|
return g(w) === a;
|
|
@@ -7153,7 +7153,7 @@ function Gu() {
|
|
|
7153
7153
|
}, de.isSuspense = function(w) {
|
|
7154
7154
|
return g(w) === d;
|
|
7155
7155
|
}, de.isValidElementType = function(w) {
|
|
7156
|
-
return typeof w == "string" || typeof w == "function" || w === o || w === c || w === i || w === n || w === d || w === x || typeof w == "object" && w !== null && (w.$$typeof === O || w.$$typeof === k || w.$$typeof === a || w.$$typeof === s || w.$$typeof === u || w.$$typeof ===
|
|
7156
|
+
return typeof w == "string" || typeof w == "function" || w === o || w === c || w === i || w === n || w === d || w === x || typeof w == "object" && w !== null && (w.$$typeof === O || w.$$typeof === k || w.$$typeof === a || w.$$typeof === s || w.$$typeof === u || w.$$typeof === m || w.$$typeof === D || w.$$typeof === h || w.$$typeof === y);
|
|
7157
7157
|
}, de.typeOf = g, de;
|
|
7158
7158
|
}
|
|
7159
7159
|
var he = {};
|
|
@@ -7168,12 +7168,12 @@ var he = {};
|
|
|
7168
7168
|
var ii;
|
|
7169
7169
|
function qu() {
|
|
7170
7170
|
return ii || (ii = 1, T.NODE_ENV !== "production" && (function() {
|
|
7171
|
-
var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, r = e ? Symbol.for("react.portal") : 60106, o = e ? Symbol.for("react.fragment") : 60107, n = e ? Symbol.for("react.strict_mode") : 60108, i = e ? Symbol.for("react.profiler") : 60114, a = e ? Symbol.for("react.provider") : 60109, s = e ? Symbol.for("react.context") : 60110, l = e ? Symbol.for("react.async_mode") : 60111, c = e ? Symbol.for("react.concurrent_mode") : 60111, u = e ? Symbol.for("react.forward_ref") : 60112, d = e ? Symbol.for("react.suspense") : 60113, x = e ? Symbol.for("react.suspense_list") : 60120, k = e ? Symbol.for("react.memo") : 60115, O = e ? Symbol.for("react.lazy") : 60116, y = e ? Symbol.for("react.block") : 60121,
|
|
7171
|
+
var e = typeof Symbol == "function" && Symbol.for, t = e ? Symbol.for("react.element") : 60103, r = e ? Symbol.for("react.portal") : 60106, o = e ? Symbol.for("react.fragment") : 60107, n = e ? Symbol.for("react.strict_mode") : 60108, i = e ? Symbol.for("react.profiler") : 60114, a = e ? Symbol.for("react.provider") : 60109, s = e ? Symbol.for("react.context") : 60110, l = e ? Symbol.for("react.async_mode") : 60111, c = e ? Symbol.for("react.concurrent_mode") : 60111, u = e ? Symbol.for("react.forward_ref") : 60112, d = e ? Symbol.for("react.suspense") : 60113, x = e ? Symbol.for("react.suspense_list") : 60120, k = e ? Symbol.for("react.memo") : 60115, O = e ? Symbol.for("react.lazy") : 60116, y = e ? Symbol.for("react.block") : 60121, m = e ? Symbol.for("react.fundamental") : 60117, D = e ? Symbol.for("react.responder") : 60118, h = e ? Symbol.for("react.scope") : 60119;
|
|
7172
7172
|
function g(M) {
|
|
7173
7173
|
return typeof M == "string" || typeof M == "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
|
|
7174
|
-
M === o || M === c || M === i || M === n || M === d || M === x || typeof M == "object" && M !== null && (M.$$typeof === O || M.$$typeof === k || M.$$typeof === a || M.$$typeof === s || M.$$typeof === u || M.$$typeof ===
|
|
7174
|
+
M === o || M === c || M === i || M === n || M === d || M === x || typeof M == "object" && M !== null && (M.$$typeof === O || M.$$typeof === k || M.$$typeof === a || M.$$typeof === s || M.$$typeof === u || M.$$typeof === m || M.$$typeof === D || M.$$typeof === h || M.$$typeof === y);
|
|
7175
7175
|
}
|
|
7176
|
-
function
|
|
7176
|
+
function b(M) {
|
|
7177
7177
|
if (typeof M == "object" && M !== null) {
|
|
7178
7178
|
var ne = M.$$typeof;
|
|
7179
7179
|
switch (ne) {
|
|
@@ -7205,47 +7205,47 @@ function qu() {
|
|
|
7205
7205
|
}
|
|
7206
7206
|
}
|
|
7207
7207
|
}
|
|
7208
|
-
var w = l, N = c, F = s, f = a, z = t, A = u, G = o, S = O,
|
|
7208
|
+
var w = l, N = c, F = s, f = a, z = t, A = u, G = o, S = O, P = k, W = r, Q = i, ee = n, re = d, V = !1;
|
|
7209
7209
|
function ae(M) {
|
|
7210
|
-
return V || (V = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")), v(M) ||
|
|
7210
|
+
return V || (V = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")), v(M) || b(M) === l;
|
|
7211
7211
|
}
|
|
7212
7212
|
function v(M) {
|
|
7213
|
-
return
|
|
7213
|
+
return b(M) === c;
|
|
7214
7214
|
}
|
|
7215
7215
|
function C(M) {
|
|
7216
|
-
return
|
|
7216
|
+
return b(M) === s;
|
|
7217
7217
|
}
|
|
7218
|
-
function
|
|
7219
|
-
return
|
|
7218
|
+
function H(M) {
|
|
7219
|
+
return b(M) === a;
|
|
7220
7220
|
}
|
|
7221
7221
|
function j(M) {
|
|
7222
7222
|
return typeof M == "object" && M !== null && M.$$typeof === t;
|
|
7223
7223
|
}
|
|
7224
7224
|
function _(M) {
|
|
7225
|
-
return
|
|
7225
|
+
return b(M) === u;
|
|
7226
7226
|
}
|
|
7227
7227
|
function L(M) {
|
|
7228
|
-
return
|
|
7228
|
+
return b(M) === o;
|
|
7229
7229
|
}
|
|
7230
7230
|
function I(M) {
|
|
7231
|
-
return
|
|
7231
|
+
return b(M) === O;
|
|
7232
7232
|
}
|
|
7233
7233
|
function E(M) {
|
|
7234
|
-
return
|
|
7234
|
+
return b(M) === k;
|
|
7235
7235
|
}
|
|
7236
7236
|
function K(M) {
|
|
7237
|
-
return
|
|
7237
|
+
return b(M) === r;
|
|
7238
7238
|
}
|
|
7239
7239
|
function Y(M) {
|
|
7240
|
-
return
|
|
7240
|
+
return b(M) === i;
|
|
7241
7241
|
}
|
|
7242
7242
|
function $(M) {
|
|
7243
|
-
return
|
|
7243
|
+
return b(M) === n;
|
|
7244
7244
|
}
|
|
7245
7245
|
function Z(M) {
|
|
7246
|
-
return
|
|
7246
|
+
return b(M) === d;
|
|
7247
7247
|
}
|
|
7248
|
-
he.AsyncMode = w, he.ConcurrentMode = N, he.ContextConsumer = F, he.ContextProvider = f, he.Element = z, he.ForwardRef = A, he.Fragment = G, he.Lazy = S, he.Memo =
|
|
7248
|
+
he.AsyncMode = w, he.ConcurrentMode = N, he.ContextConsumer = F, he.ContextProvider = f, he.Element = z, he.ForwardRef = A, he.Fragment = G, he.Lazy = S, he.Memo = P, he.Portal = W, he.Profiler = Q, he.StrictMode = ee, he.Suspense = re, he.isAsyncMode = ae, he.isConcurrentMode = v, he.isContextConsumer = C, he.isContextProvider = H, he.isElement = j, he.isForwardRef = _, he.isFragment = L, he.isLazy = I, he.isMemo = E, he.isPortal = K, he.isProfiler = Y, he.isStrictMode = $, he.isSuspense = Z, he.isValidElementType = g, he.typeOf = b;
|
|
7249
7249
|
})()), he;
|
|
7250
7250
|
}
|
|
7251
7251
|
var ai;
|
|
@@ -7398,7 +7398,7 @@ function Xu() {
|
|
|
7398
7398
|
symbol: D("symbol"),
|
|
7399
7399
|
any: h(),
|
|
7400
7400
|
arrayOf: g,
|
|
7401
|
-
element:
|
|
7401
|
+
element: b(),
|
|
7402
7402
|
elementType: w(),
|
|
7403
7403
|
instanceOf: N,
|
|
7404
7404
|
node: A(),
|
|
@@ -7406,7 +7406,7 @@ function Xu() {
|
|
|
7406
7406
|
oneOf: F,
|
|
7407
7407
|
oneOfType: z,
|
|
7408
7408
|
shape: S,
|
|
7409
|
-
exact:
|
|
7409
|
+
exact: P
|
|
7410
7410
|
};
|
|
7411
7411
|
function O(v, C) {
|
|
7412
7412
|
return v === C ? v !== 0 || 1 / v === 1 / C : v !== v && C !== C;
|
|
@@ -7415,9 +7415,9 @@ function Xu() {
|
|
|
7415
7415
|
this.message = v, this.data = C && typeof C == "object" ? C : {}, this.stack = "";
|
|
7416
7416
|
}
|
|
7417
7417
|
y.prototype = Error.prototype;
|
|
7418
|
-
function
|
|
7418
|
+
function m(v) {
|
|
7419
7419
|
if (T.NODE_ENV !== "production")
|
|
7420
|
-
var C = {},
|
|
7420
|
+
var C = {}, H = 0;
|
|
7421
7421
|
function j(L, I, E, K, Y, $, Z) {
|
|
7422
7422
|
if (K = K || x, $ = $ || E, Z !== r) {
|
|
7423
7423
|
if (l) {
|
|
@@ -7428,9 +7428,9 @@ function Xu() {
|
|
|
7428
7428
|
} else if (T.NODE_ENV !== "production" && typeof console < "u") {
|
|
7429
7429
|
var ne = K + ":" + E;
|
|
7430
7430
|
!C[ne] && // Avoid spamming the console because they are often not actionable except for lib authors
|
|
7431
|
-
|
|
7431
|
+
H < 3 && (i(
|
|
7432
7432
|
"You are manually calling a React.PropTypes validation function for the `" + $ + "` prop on `" + K + "`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."
|
|
7433
|
-
), C[ne] = !0,
|
|
7433
|
+
), C[ne] = !0, H++);
|
|
7434
7434
|
}
|
|
7435
7435
|
}
|
|
7436
7436
|
return I[E] == null ? L ? I[E] === null ? new y("The " + Y + " `" + $ + "` is marked as required " + ("in `" + K + "`, but its value is `null`.")) : new y("The " + Y + " `" + $ + "` is marked as required in " + ("`" + K + "`, but its value is `undefined`.")) : null : v(I, E, K, Y, $);
|
|
@@ -7439,8 +7439,8 @@ function Xu() {
|
|
|
7439
7439
|
return _.isRequired = j.bind(null, !0), _;
|
|
7440
7440
|
}
|
|
7441
7441
|
function D(v) {
|
|
7442
|
-
function C(
|
|
7443
|
-
var K =
|
|
7442
|
+
function C(H, j, _, L, I, E) {
|
|
7443
|
+
var K = H[j], Y = ee(K);
|
|
7444
7444
|
if (Y !== v) {
|
|
7445
7445
|
var $ = re(K);
|
|
7446
7446
|
return new y(
|
|
@@ -7450,16 +7450,16 @@ function Xu() {
|
|
|
7450
7450
|
}
|
|
7451
7451
|
return null;
|
|
7452
7452
|
}
|
|
7453
|
-
return
|
|
7453
|
+
return m(C);
|
|
7454
7454
|
}
|
|
7455
7455
|
function h() {
|
|
7456
|
-
return
|
|
7456
|
+
return m(a);
|
|
7457
7457
|
}
|
|
7458
7458
|
function g(v) {
|
|
7459
|
-
function C(
|
|
7459
|
+
function C(H, j, _, L, I) {
|
|
7460
7460
|
if (typeof v != "function")
|
|
7461
7461
|
return new y("Property `" + I + "` of component `" + _ + "` has invalid PropType notation inside arrayOf.");
|
|
7462
|
-
var E =
|
|
7462
|
+
var E = H[j];
|
|
7463
7463
|
if (!Array.isArray(E)) {
|
|
7464
7464
|
var K = ee(E);
|
|
7465
7465
|
return new y("Invalid " + L + " `" + I + "` of type " + ("`" + K + "` supplied to `" + _ + "`, expected an array."));
|
|
@@ -7471,47 +7471,47 @@ function Xu() {
|
|
|
7471
7471
|
}
|
|
7472
7472
|
return null;
|
|
7473
7473
|
}
|
|
7474
|
-
return
|
|
7474
|
+
return m(C);
|
|
7475
7475
|
}
|
|
7476
|
-
function
|
|
7477
|
-
function v(C,
|
|
7478
|
-
var I = C[
|
|
7476
|
+
function b() {
|
|
7477
|
+
function v(C, H, j, _, L) {
|
|
7478
|
+
var I = C[H];
|
|
7479
7479
|
if (!s(I)) {
|
|
7480
7480
|
var E = ee(I);
|
|
7481
7481
|
return new y("Invalid " + _ + " `" + L + "` of type " + ("`" + E + "` supplied to `" + j + "`, expected a single ReactElement."));
|
|
7482
7482
|
}
|
|
7483
7483
|
return null;
|
|
7484
7484
|
}
|
|
7485
|
-
return
|
|
7485
|
+
return m(v);
|
|
7486
7486
|
}
|
|
7487
7487
|
function w() {
|
|
7488
|
-
function v(C,
|
|
7489
|
-
var I = C[
|
|
7488
|
+
function v(C, H, j, _, L) {
|
|
7489
|
+
var I = C[H];
|
|
7490
7490
|
if (!e.isValidElementType(I)) {
|
|
7491
7491
|
var E = ee(I);
|
|
7492
7492
|
return new y("Invalid " + _ + " `" + L + "` of type " + ("`" + E + "` supplied to `" + j + "`, expected a single ReactElement type."));
|
|
7493
7493
|
}
|
|
7494
7494
|
return null;
|
|
7495
7495
|
}
|
|
7496
|
-
return
|
|
7496
|
+
return m(v);
|
|
7497
7497
|
}
|
|
7498
7498
|
function N(v) {
|
|
7499
|
-
function C(
|
|
7500
|
-
if (!(
|
|
7501
|
-
var E = v.name || x, K = ae(
|
|
7499
|
+
function C(H, j, _, L, I) {
|
|
7500
|
+
if (!(H[j] instanceof v)) {
|
|
7501
|
+
var E = v.name || x, K = ae(H[j]);
|
|
7502
7502
|
return new y("Invalid " + L + " `" + I + "` of type " + ("`" + K + "` supplied to `" + _ + "`, expected ") + ("instance of `" + E + "`."));
|
|
7503
7503
|
}
|
|
7504
7504
|
return null;
|
|
7505
7505
|
}
|
|
7506
|
-
return
|
|
7506
|
+
return m(C);
|
|
7507
7507
|
}
|
|
7508
7508
|
function F(v) {
|
|
7509
7509
|
if (!Array.isArray(v))
|
|
7510
7510
|
return T.NODE_ENV !== "production" && (arguments.length > 1 ? i(
|
|
7511
7511
|
"Invalid arguments supplied to oneOf, expected an array, got " + arguments.length + " arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."
|
|
7512
7512
|
) : i("Invalid argument supplied to oneOf, expected an array.")), a;
|
|
7513
|
-
function C(
|
|
7514
|
-
for (var E =
|
|
7513
|
+
function C(H, j, _, L, I) {
|
|
7514
|
+
for (var E = H[j], K = 0; K < v.length; K++)
|
|
7515
7515
|
if (O(E, v[K]))
|
|
7516
7516
|
return null;
|
|
7517
7517
|
var Y = JSON.stringify(v, function($, Z) {
|
|
@@ -7520,13 +7520,13 @@ function Xu() {
|
|
|
7520
7520
|
});
|
|
7521
7521
|
return new y("Invalid " + L + " `" + I + "` of value `" + String(E) + "` " + ("supplied to `" + _ + "`, expected one of " + Y + "."));
|
|
7522
7522
|
}
|
|
7523
|
-
return
|
|
7523
|
+
return m(C);
|
|
7524
7524
|
}
|
|
7525
7525
|
function f(v) {
|
|
7526
|
-
function C(
|
|
7526
|
+
function C(H, j, _, L, I) {
|
|
7527
7527
|
if (typeof v != "function")
|
|
7528
7528
|
return new y("Property `" + I + "` of component `" + _ + "` has invalid PropType notation inside objectOf.");
|
|
7529
|
-
var E =
|
|
7529
|
+
var E = H[j], K = ee(E);
|
|
7530
7530
|
if (K !== "object")
|
|
7531
7531
|
return new y("Invalid " + L + " `" + I + "` of type " + ("`" + K + "` supplied to `" + _ + "`, expected an object."));
|
|
7532
7532
|
for (var Y in E)
|
|
@@ -7537,16 +7537,16 @@ function Xu() {
|
|
|
7537
7537
|
}
|
|
7538
7538
|
return null;
|
|
7539
7539
|
}
|
|
7540
|
-
return
|
|
7540
|
+
return m(C);
|
|
7541
7541
|
}
|
|
7542
7542
|
function z(v) {
|
|
7543
7543
|
if (!Array.isArray(v))
|
|
7544
7544
|
return T.NODE_ENV !== "production" && i("Invalid argument supplied to oneOfType, expected an instance of array."), a;
|
|
7545
7545
|
for (var C = 0; C < v.length; C++) {
|
|
7546
|
-
var
|
|
7547
|
-
if (typeof
|
|
7546
|
+
var H = v[C];
|
|
7547
|
+
if (typeof H != "function")
|
|
7548
7548
|
return i(
|
|
7549
|
-
"Invalid argument supplied to oneOfType. Expected an array of check functions, but received " + V(
|
|
7549
|
+
"Invalid argument supplied to oneOfType. Expected an array of check functions, but received " + V(H) + " at index " + C + "."
|
|
7550
7550
|
), a;
|
|
7551
7551
|
}
|
|
7552
7552
|
function j(_, L, I, E, K) {
|
|
@@ -7559,22 +7559,22 @@ function Xu() {
|
|
|
7559
7559
|
var ne = Y.length > 0 ? ", expected one of type [" + Y.join(", ") + "]" : "";
|
|
7560
7560
|
return new y("Invalid " + E + " `" + K + "` supplied to " + ("`" + I + "`" + ne + "."));
|
|
7561
7561
|
}
|
|
7562
|
-
return
|
|
7562
|
+
return m(j);
|
|
7563
7563
|
}
|
|
7564
7564
|
function A() {
|
|
7565
|
-
function v(C,
|
|
7566
|
-
return W(C[
|
|
7565
|
+
function v(C, H, j, _, L) {
|
|
7566
|
+
return W(C[H]) ? null : new y("Invalid " + _ + " `" + L + "` supplied to " + ("`" + j + "`, expected a ReactNode."));
|
|
7567
7567
|
}
|
|
7568
|
-
return
|
|
7568
|
+
return m(v);
|
|
7569
7569
|
}
|
|
7570
|
-
function G(v, C,
|
|
7570
|
+
function G(v, C, H, j, _) {
|
|
7571
7571
|
return new y(
|
|
7572
|
-
(v || "React class") + ": " + C + " type `" +
|
|
7572
|
+
(v || "React class") + ": " + C + " type `" + H + "." + j + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + _ + "`."
|
|
7573
7573
|
);
|
|
7574
7574
|
}
|
|
7575
7575
|
function S(v) {
|
|
7576
|
-
function C(
|
|
7577
|
-
var E =
|
|
7576
|
+
function C(H, j, _, L, I) {
|
|
7577
|
+
var E = H[j], K = ee(E);
|
|
7578
7578
|
if (K !== "object")
|
|
7579
7579
|
return new y("Invalid " + L + " `" + I + "` of type `" + K + "` " + ("supplied to `" + _ + "`, expected `object`."));
|
|
7580
7580
|
for (var Y in v) {
|
|
@@ -7587,21 +7587,21 @@ function Xu() {
|
|
|
7587
7587
|
}
|
|
7588
7588
|
return null;
|
|
7589
7589
|
}
|
|
7590
|
-
return
|
|
7590
|
+
return m(C);
|
|
7591
7591
|
}
|
|
7592
|
-
function
|
|
7593
|
-
function C(
|
|
7594
|
-
var E =
|
|
7592
|
+
function P(v) {
|
|
7593
|
+
function C(H, j, _, L, I) {
|
|
7594
|
+
var E = H[j], K = ee(E);
|
|
7595
7595
|
if (K !== "object")
|
|
7596
7596
|
return new y("Invalid " + L + " `" + I + "` of type `" + K + "` " + ("supplied to `" + _ + "`, expected `object`."));
|
|
7597
|
-
var Y = t({},
|
|
7597
|
+
var Y = t({}, H[j], v);
|
|
7598
7598
|
for (var $ in Y) {
|
|
7599
7599
|
var Z = v[$];
|
|
7600
7600
|
if (o(v, $) && typeof Z != "function")
|
|
7601
7601
|
return G(_, L, I, $, re(Z));
|
|
7602
7602
|
if (!Z)
|
|
7603
7603
|
return new y(
|
|
7604
|
-
"Invalid " + L + " `" + I + "` key `" + $ + "` supplied to `" + _ + "`.\nBad object: " + JSON.stringify(
|
|
7604
|
+
"Invalid " + L + " `" + I + "` key `" + $ + "` supplied to `" + _ + "`.\nBad object: " + JSON.stringify(H[j], null, " ") + `
|
|
7605
7605
|
Valid keys: ` + JSON.stringify(Object.keys(v), null, " ")
|
|
7606
7606
|
);
|
|
7607
7607
|
var M = Z(E, $, _, L, I + "." + $, r);
|
|
@@ -7610,7 +7610,7 @@ Valid keys: ` + JSON.stringify(Object.keys(v), null, " ")
|
|
|
7610
7610
|
}
|
|
7611
7611
|
return null;
|
|
7612
7612
|
}
|
|
7613
|
-
return
|
|
7613
|
+
return m(C);
|
|
7614
7614
|
}
|
|
7615
7615
|
function W(v) {
|
|
7616
7616
|
switch (typeof v) {
|
|
@@ -7627,13 +7627,13 @@ Valid keys: ` + JSON.stringify(Object.keys(v), null, " ")
|
|
|
7627
7627
|
return !0;
|
|
7628
7628
|
var C = d(v);
|
|
7629
7629
|
if (C) {
|
|
7630
|
-
var
|
|
7630
|
+
var H = C.call(v), j;
|
|
7631
7631
|
if (C !== v.entries) {
|
|
7632
|
-
for (; !(j =
|
|
7632
|
+
for (; !(j = H.next()).done; )
|
|
7633
7633
|
if (!W(j.value))
|
|
7634
7634
|
return !1;
|
|
7635
7635
|
} else
|
|
7636
|
-
for (; !(j =
|
|
7636
|
+
for (; !(j = H.next()).done; ) {
|
|
7637
7637
|
var _ = j.value;
|
|
7638
7638
|
if (_ && !W(_[1]))
|
|
7639
7639
|
return !1;
|
|
@@ -7760,27 +7760,27 @@ function ep() {
|
|
|
7760
7760
|
vi = 1;
|
|
7761
7761
|
var e = Symbol.for("react.element"), t = Symbol.for("react.portal"), r = Symbol.for("react.fragment"), o = Symbol.for("react.strict_mode"), n = Symbol.for("react.profiler"), i = Symbol.for("react.provider"), a = Symbol.for("react.context"), s = Symbol.for("react.server_context"), l = Symbol.for("react.forward_ref"), c = Symbol.for("react.suspense"), u = Symbol.for("react.suspense_list"), d = Symbol.for("react.memo"), x = Symbol.for("react.lazy"), k = Symbol.for("react.offscreen"), O;
|
|
7762
7762
|
O = Symbol.for("react.module.reference");
|
|
7763
|
-
function y(
|
|
7764
|
-
if (typeof
|
|
7765
|
-
var D =
|
|
7763
|
+
function y(m) {
|
|
7764
|
+
if (typeof m == "object" && m !== null) {
|
|
7765
|
+
var D = m.$$typeof;
|
|
7766
7766
|
switch (D) {
|
|
7767
7767
|
case e:
|
|
7768
|
-
switch (
|
|
7768
|
+
switch (m = m.type, m) {
|
|
7769
7769
|
case r:
|
|
7770
7770
|
case n:
|
|
7771
7771
|
case o:
|
|
7772
7772
|
case c:
|
|
7773
7773
|
case u:
|
|
7774
|
-
return
|
|
7774
|
+
return m;
|
|
7775
7775
|
default:
|
|
7776
|
-
switch (
|
|
7776
|
+
switch (m = m && m.$$typeof, m) {
|
|
7777
7777
|
case s:
|
|
7778
7778
|
case a:
|
|
7779
7779
|
case l:
|
|
7780
7780
|
case x:
|
|
7781
7781
|
case d:
|
|
7782
7782
|
case i:
|
|
7783
|
-
return
|
|
7783
|
+
return m;
|
|
7784
7784
|
default:
|
|
7785
7785
|
return D;
|
|
7786
7786
|
}
|
|
@@ -7794,32 +7794,32 @@ function ep() {
|
|
|
7794
7794
|
return !1;
|
|
7795
7795
|
}, ue.isConcurrentMode = function() {
|
|
7796
7796
|
return !1;
|
|
7797
|
-
}, ue.isContextConsumer = function(
|
|
7798
|
-
return y(
|
|
7799
|
-
}, ue.isContextProvider = function(
|
|
7800
|
-
return y(
|
|
7801
|
-
}, ue.isElement = function(
|
|
7802
|
-
return typeof
|
|
7803
|
-
}, ue.isForwardRef = function(
|
|
7804
|
-
return y(
|
|
7805
|
-
}, ue.isFragment = function(
|
|
7806
|
-
return y(
|
|
7807
|
-
}, ue.isLazy = function(
|
|
7808
|
-
return y(
|
|
7809
|
-
}, ue.isMemo = function(
|
|
7810
|
-
return y(
|
|
7811
|
-
}, ue.isPortal = function(
|
|
7812
|
-
return y(
|
|
7813
|
-
}, ue.isProfiler = function(
|
|
7814
|
-
return y(
|
|
7815
|
-
}, ue.isStrictMode = function(
|
|
7816
|
-
return y(
|
|
7817
|
-
}, ue.isSuspense = function(
|
|
7818
|
-
return y(
|
|
7819
|
-
}, ue.isSuspenseList = function(
|
|
7820
|
-
return y(
|
|
7821
|
-
}, ue.isValidElementType = function(
|
|
7822
|
-
return typeof
|
|
7797
|
+
}, ue.isContextConsumer = function(m) {
|
|
7798
|
+
return y(m) === a;
|
|
7799
|
+
}, ue.isContextProvider = function(m) {
|
|
7800
|
+
return y(m) === i;
|
|
7801
|
+
}, ue.isElement = function(m) {
|
|
7802
|
+
return typeof m == "object" && m !== null && m.$$typeof === e;
|
|
7803
|
+
}, ue.isForwardRef = function(m) {
|
|
7804
|
+
return y(m) === l;
|
|
7805
|
+
}, ue.isFragment = function(m) {
|
|
7806
|
+
return y(m) === r;
|
|
7807
|
+
}, ue.isLazy = function(m) {
|
|
7808
|
+
return y(m) === x;
|
|
7809
|
+
}, ue.isMemo = function(m) {
|
|
7810
|
+
return y(m) === d;
|
|
7811
|
+
}, ue.isPortal = function(m) {
|
|
7812
|
+
return y(m) === t;
|
|
7813
|
+
}, ue.isProfiler = function(m) {
|
|
7814
|
+
return y(m) === n;
|
|
7815
|
+
}, ue.isStrictMode = function(m) {
|
|
7816
|
+
return y(m) === o;
|
|
7817
|
+
}, ue.isSuspense = function(m) {
|
|
7818
|
+
return y(m) === c;
|
|
7819
|
+
}, ue.isSuspenseList = function(m) {
|
|
7820
|
+
return y(m) === u;
|
|
7821
|
+
}, ue.isValidElementType = function(m) {
|
|
7822
|
+
return typeof m == "string" || typeof m == "function" || m === r || m === n || m === o || m === c || m === u || m === k || typeof m == "object" && m !== null && (m.$$typeof === x || m.$$typeof === d || m.$$typeof === i || m.$$typeof === a || m.$$typeof === l || m.$$typeof === O || m.getModuleId !== void 0);
|
|
7823
7823
|
}, ue.typeOf = y, ue;
|
|
7824
7824
|
}
|
|
7825
7825
|
var ge = {};
|
|
@@ -7835,10 +7835,10 @@ var ge = {};
|
|
|
7835
7835
|
var fi;
|
|
7836
7836
|
function tp() {
|
|
7837
7837
|
return fi || (fi = 1, T.NODE_ENV !== "production" && (function() {
|
|
7838
|
-
var e = Symbol.for("react.element"), t = Symbol.for("react.portal"), r = Symbol.for("react.fragment"), o = Symbol.for("react.strict_mode"), n = Symbol.for("react.profiler"), i = Symbol.for("react.provider"), a = Symbol.for("react.context"), s = Symbol.for("react.server_context"), l = Symbol.for("react.forward_ref"), c = Symbol.for("react.suspense"), u = Symbol.for("react.suspense_list"), d = Symbol.for("react.memo"), x = Symbol.for("react.lazy"), k = Symbol.for("react.offscreen"), O = !1, y = !1,
|
|
7838
|
+
var e = Symbol.for("react.element"), t = Symbol.for("react.portal"), r = Symbol.for("react.fragment"), o = Symbol.for("react.strict_mode"), n = Symbol.for("react.profiler"), i = Symbol.for("react.provider"), a = Symbol.for("react.context"), s = Symbol.for("react.server_context"), l = Symbol.for("react.forward_ref"), c = Symbol.for("react.suspense"), u = Symbol.for("react.suspense_list"), d = Symbol.for("react.memo"), x = Symbol.for("react.lazy"), k = Symbol.for("react.offscreen"), O = !1, y = !1, m = !1, D = !1, h = !1, g;
|
|
7839
7839
|
g = Symbol.for("react.module.reference");
|
|
7840
|
-
function
|
|
7841
|
-
return !!(typeof U == "string" || typeof U == "function" || U === r || U === n || h || U === o || U === c || U === u || D || U === k || O || y ||
|
|
7840
|
+
function b(U) {
|
|
7841
|
+
return !!(typeof U == "string" || typeof U == "function" || U === r || U === n || h || U === o || U === c || U === u || D || U === k || O || y || m || typeof U == "object" && U !== null && (U.$$typeof === x || U.$$typeof === d || U.$$typeof === i || U.$$typeof === a || U.$$typeof === l || // This needs to include all possible module reference object
|
|
7842
7842
|
// types supported by any Flight configuration anywhere since
|
|
7843
7843
|
// we don't know which Flight build this will end up being used
|
|
7844
7844
|
// with.
|
|
@@ -7876,14 +7876,14 @@ function tp() {
|
|
|
7876
7876
|
}
|
|
7877
7877
|
}
|
|
7878
7878
|
}
|
|
7879
|
-
var N = a, F = i, f = e, z = l, A = r, G = x, S = d,
|
|
7879
|
+
var N = a, F = i, f = e, z = l, A = r, G = x, S = d, P = t, W = n, Q = o, ee = c, re = u, V = !1, ae = !1;
|
|
7880
7880
|
function v(U) {
|
|
7881
7881
|
return V || (V = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 18+.")), !1;
|
|
7882
7882
|
}
|
|
7883
7883
|
function C(U) {
|
|
7884
7884
|
return ae || (ae = !0, console.warn("The ReactIs.isConcurrentMode() alias has been deprecated, and will be removed in React 18+.")), !1;
|
|
7885
7885
|
}
|
|
7886
|
-
function
|
|
7886
|
+
function H(U) {
|
|
7887
7887
|
return w(U) === a;
|
|
7888
7888
|
}
|
|
7889
7889
|
function j(U) {
|
|
@@ -7919,14 +7919,14 @@ function tp() {
|
|
|
7919
7919
|
function ne(U) {
|
|
7920
7920
|
return w(U) === u;
|
|
7921
7921
|
}
|
|
7922
|
-
ge.ContextConsumer = N, ge.ContextProvider = F, ge.Element = f, ge.ForwardRef = z, ge.Fragment = A, ge.Lazy = G, ge.Memo = S, ge.Portal =
|
|
7922
|
+
ge.ContextConsumer = N, ge.ContextProvider = F, ge.Element = f, ge.ForwardRef = z, ge.Fragment = A, ge.Lazy = G, ge.Memo = S, ge.Portal = P, ge.Profiler = W, ge.StrictMode = Q, ge.Suspense = ee, ge.SuspenseList = re, ge.isAsyncMode = v, ge.isConcurrentMode = C, ge.isContextConsumer = H, ge.isContextProvider = j, ge.isElement = _, ge.isForwardRef = L, ge.isFragment = I, ge.isLazy = E, ge.isMemo = K, ge.isPortal = Y, ge.isProfiler = $, ge.isStrictMode = Z, ge.isSuspense = M, ge.isSuspenseList = ne, ge.isValidElementType = b, ge.typeOf = w;
|
|
7923
7923
|
})()), ge;
|
|
7924
7924
|
}
|
|
7925
|
-
var
|
|
7925
|
+
var bi;
|
|
7926
7926
|
function rp() {
|
|
7927
|
-
return
|
|
7927
|
+
return bi || (bi = 1, T.NODE_ENV === "production" ? ro.exports = ep() : ro.exports = tp()), ro.exports;
|
|
7928
7928
|
}
|
|
7929
|
-
var
|
|
7929
|
+
var mi = rp();
|
|
7930
7930
|
const wi = (e) => typeof e == "object" && e != null && e.nodeType === 1, xi = (e, t) => (!t || e !== "hidden") && e !== "visible" && e !== "clip", dr = (e, t) => {
|
|
7931
7931
|
if (e.clientHeight < e.scrollHeight || e.clientWidth < e.scrollWidth) {
|
|
7932
7932
|
const r = getComputedStyle(e, null);
|
|
@@ -7946,7 +7946,7 @@ const wi = (e) => typeof e == "object" && e != null && e.nodeType === 1, xi = (e
|
|
|
7946
7946
|
}, ur = (e, t, r, o, n, i, a, s) => i < e && a > t || i > e && a < t ? 0 : i <= e && s <= r || a >= t && s >= r ? i - e - o : a > t && s < r || i < e && s > r ? a - t + n : 0, op = (e) => e.parentElement ?? (e.getRootNode().host || null), np = (e, t) => {
|
|
7947
7947
|
var r, o, n, i;
|
|
7948
7948
|
if (typeof document > "u") return [];
|
|
7949
|
-
const { inline: a, boundary: s, skipOverflowHiddenElements: l } = t, c = typeof s == "function" ? s : (
|
|
7949
|
+
const { inline: a, boundary: s, skipOverflowHiddenElements: l } = t, c = typeof s == "function" ? s : (P) => P !== s;
|
|
7950
7950
|
if (!wi(e)) throw new TypeError("Invalid target");
|
|
7951
7951
|
const u = document.scrollingElement || document.documentElement, d = [];
|
|
7952
7952
|
let x = e;
|
|
@@ -7957,21 +7957,21 @@ const wi = (e) => typeof e == "object" && e != null && e.nodeType === 1, xi = (e
|
|
|
7957
7957
|
}
|
|
7958
7958
|
x != null && x === document.body && dr(x) && !dr(document.documentElement) || x != null && dr(x, l) && d.push(x);
|
|
7959
7959
|
}
|
|
7960
|
-
const k = (o = (r = window.visualViewport) == null ? void 0 : r.width) != null ? o : innerWidth, O = (i = (n = window.visualViewport) == null ? void 0 : n.height) != null ? i : innerHeight, { scrollX: y, scrollY:
|
|
7961
|
-
const W = window.getComputedStyle(
|
|
7960
|
+
const k = (o = (r = window.visualViewport) == null ? void 0 : r.width) != null ? o : innerWidth, O = (i = (n = window.visualViewport) == null ? void 0 : n.height) != null ? i : innerHeight, { scrollX: y, scrollY: m } = window, { height: D, width: h, top: g, right: b, bottom: w, left: N } = e.getBoundingClientRect(), { top: F, right: f, left: z } = ((P) => {
|
|
7961
|
+
const W = window.getComputedStyle(P);
|
|
7962
7962
|
return { top: parseFloat(W.scrollMarginTop) || 0, right: parseFloat(W.scrollMarginRight) || 0, bottom: parseFloat(W.scrollMarginBottom) || 0, left: parseFloat(W.scrollMarginLeft) || 0 };
|
|
7963
7963
|
})(e);
|
|
7964
|
-
let A = g - F, G = a === "center" ? N + h / 2 - z + f : a === "end" ?
|
|
7964
|
+
let A = g - F, G = a === "center" ? N + h / 2 - z + f : a === "end" ? b + f : N - z;
|
|
7965
7965
|
const S = [];
|
|
7966
|
-
for (let
|
|
7967
|
-
const W = d[
|
|
7968
|
-
if (g >= 0 && N >= 0 && w <= O &&
|
|
7969
|
-
const C = getComputedStyle(W),
|
|
7966
|
+
for (let P = 0; P < d.length; P++) {
|
|
7967
|
+
const W = d[P], { height: Q, width: ee, top: re, right: V, bottom: ae, left: v } = W.getBoundingClientRect();
|
|
7968
|
+
if (g >= 0 && N >= 0 && w <= O && b <= k && (W === u && !dr(W) || g >= re && w <= ae && N >= v && b <= V)) return S;
|
|
7969
|
+
const C = getComputedStyle(W), H = parseInt(C.borderLeftWidth, 10), j = parseInt(C.borderTopWidth, 10), _ = parseInt(C.borderRightWidth, 10), L = parseInt(C.borderBottomWidth, 10);
|
|
7970
7970
|
let I = 0, E = 0;
|
|
7971
|
-
const K = "offsetWidth" in W ? W.offsetWidth - W.clientWidth -
|
|
7972
|
-
if (u === W) I = ur(
|
|
7971
|
+
const K = "offsetWidth" in W ? W.offsetWidth - W.clientWidth - H - _ : 0, Y = "offsetHeight" in W ? W.offsetHeight - W.clientHeight - j - L : 0, $ = "offsetWidth" in W ? W.offsetWidth === 0 ? 0 : ee / W.offsetWidth : 0, Z = "offsetHeight" in W ? W.offsetHeight === 0 ? 0 : Q / W.offsetHeight : 0;
|
|
7972
|
+
if (u === W) I = ur(m, m + O, O, j, L, m + A, m + A + D, D), E = a === "start" ? G : a === "center" ? G - k / 2 : a === "end" ? G - k : ur(y, y + k, k, H, _, y + G, y + G + h, h), I = Math.max(0, I + m), E = Math.max(0, E + y);
|
|
7973
7973
|
else {
|
|
7974
|
-
I = ur(re, ae, Q, j, L + Y, A, A + D, D), E = a === "start" ? G - v -
|
|
7974
|
+
I = ur(re, ae, Q, j, L + Y, A, A + D, D), E = a === "start" ? G - v - H : a === "center" ? G - (v + ee / 2) + K / 2 : a === "end" ? G - V + _ + K : ur(v, V, ee, H, _ + K, G, G + h, h);
|
|
7975
7975
|
const { scrollLeft: M, scrollTop: ne } = W;
|
|
7976
7976
|
I = Z === 0 ? 0 : Math.max(0, Math.min(ne + I / Z, W.scrollHeight - Q / Z + Y)), E = $ === 0 ? 0 : Math.max(0, Math.min(M + E / $, W.scrollWidth - ee / $ + K)), A += ne - I, G += M - E;
|
|
7977
7977
|
}
|
|
@@ -8140,7 +8140,7 @@ function Ta(e) {
|
|
|
8140
8140
|
width: "1px"
|
|
8141
8141
|
}), e.body.appendChild(t), t);
|
|
8142
8142
|
}
|
|
8143
|
-
function
|
|
8143
|
+
function Ha(e, t) {
|
|
8144
8144
|
if (!(!e || !t)) {
|
|
8145
8145
|
var r = Ta(t);
|
|
8146
8146
|
r.textContent = e, dp(t);
|
|
@@ -8150,7 +8150,7 @@ function up(e) {
|
|
|
8150
8150
|
var t = e == null ? void 0 : e.getElementById("a11y-status-message");
|
|
8151
8151
|
t && t.remove();
|
|
8152
8152
|
}
|
|
8153
|
-
var
|
|
8153
|
+
var Pa = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NODE_ENV !== "production" ? "__autocomplete_mouseup__" : 1, Va = T.NODE_ENV !== "production" ? "__autocomplete_item_mouseenter__" : 2, br = T.NODE_ENV !== "production" ? "__autocomplete_keydown_arrow_up__" : 3, mr = T.NODE_ENV !== "production" ? "__autocomplete_keydown_arrow_down__" : 4, La = T.NODE_ENV !== "production" ? "__autocomplete_keydown_escape__" : 5, Ba = T.NODE_ENV !== "production" ? "__autocomplete_keydown_enter__" : 6, ja = T.NODE_ENV !== "production" ? "__autocomplete_keydown_home__" : 7, Fa = T.NODE_ENV !== "production" ? "__autocomplete_keydown_end__" : 8, Wa = T.NODE_ENV !== "production" ? "__autocomplete_click_item__" : 9, $a = T.NODE_ENV !== "production" ? "__autocomplete_blur_input__" : 10, Ka = T.NODE_ENV !== "production" ? "__autocomplete_change_input__" : 11, Ga = T.NODE_ENV !== "production" ? "__autocomplete_keydown_space_button__" : 12, ho = T.NODE_ENV !== "production" ? "__autocomplete_click_button__" : 13, qa = T.NODE_ENV !== "production" ? "__autocomplete_blur_button__" : 14, Ua = T.NODE_ENV !== "production" ? "__autocomplete_controlled_prop_updated_selected_item__" : 15, Ya = T.NODE_ENV !== "production" ? "__autocomplete_touchend__" : 16, pp = /* @__PURE__ */ Object.freeze({
|
|
8154
8154
|
__proto__: null,
|
|
8155
8155
|
blurButton: qa,
|
|
8156
8156
|
blurInput: $a,
|
|
@@ -8159,8 +8159,8 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8159
8159
|
clickItem: Wa,
|
|
8160
8160
|
controlledPropUpdatedSelectedItem: Ua,
|
|
8161
8161
|
itemMouseEnter: Va,
|
|
8162
|
-
keyDownArrowDown:
|
|
8163
|
-
keyDownArrowUp:
|
|
8162
|
+
keyDownArrowDown: mr,
|
|
8163
|
+
keyDownArrowUp: br,
|
|
8164
8164
|
keyDownEnd: Fa,
|
|
8165
8165
|
keyDownEnter: Ba,
|
|
8166
8166
|
keyDownEscape: La,
|
|
@@ -8168,27 +8168,27 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8168
8168
|
keyDownSpaceButton: Ga,
|
|
8169
8169
|
mouseUp: Aa,
|
|
8170
8170
|
touchEnd: Ya,
|
|
8171
|
-
unknown:
|
|
8172
|
-
}), hp = ["refKey", "ref"], gp = ["onClick", "onPress", "onKeyDown", "onKeyUp", "onBlur"], vp = ["onKeyDown", "onBlur", "onChange", "onInput", "onChangeText"], fp = ["refKey", "ref"],
|
|
8171
|
+
unknown: Pa
|
|
8172
|
+
}), hp = ["refKey", "ref"], gp = ["onClick", "onPress", "onKeyDown", "onKeyUp", "onBlur"], vp = ["onKeyDown", "onBlur", "onChange", "onInput", "onChangeText"], fp = ["refKey", "ref"], bp = ["onMouseMove", "onMouseDown", "onClick", "onPress", "index", "item"], mp = /* @__PURE__ */ (function() {
|
|
8173
8173
|
var e = /* @__PURE__ */ (function(t) {
|
|
8174
8174
|
function r(n) {
|
|
8175
8175
|
var i;
|
|
8176
8176
|
i = t.call(this, n) || this, i.id = i.props.id || "downshift-" + Ca(), i.menuId = i.props.menuId || i.id + "-menu", i.labelId = i.props.labelId || i.id + "-label", i.inputId = i.props.inputId || i.id + "-input", i.getItemId = i.props.getItemId || function(h) {
|
|
8177
8177
|
return i.id + "-item-" + h;
|
|
8178
8178
|
}, i.items = [], i.itemCount = null, i.previousResultCount = 0, i.timeoutIds = [], i.internalSetTimeout = function(h, g) {
|
|
8179
|
-
var
|
|
8179
|
+
var b = setTimeout(function() {
|
|
8180
8180
|
i.timeoutIds = i.timeoutIds.filter(function(w) {
|
|
8181
|
-
return w !==
|
|
8181
|
+
return w !== b;
|
|
8182
8182
|
}), h();
|
|
8183
8183
|
}, g);
|
|
8184
|
-
i.timeoutIds.push(
|
|
8184
|
+
i.timeoutIds.push(b);
|
|
8185
8185
|
}, i.setItemCount = function(h) {
|
|
8186
8186
|
i.itemCount = h;
|
|
8187
8187
|
}, i.unsetItemCount = function() {
|
|
8188
8188
|
i.itemCount = null;
|
|
8189
8189
|
}, i.isItemDisabled = function(h, g) {
|
|
8190
|
-
var
|
|
8191
|
-
return
|
|
8190
|
+
var b = i.getItemNodeFromIndex(g);
|
|
8191
|
+
return b && b.hasAttribute("disabled");
|
|
8192
8192
|
}, i.setHighlightedIndex = function(h, g) {
|
|
8193
8193
|
h === void 0 && (h = i.props.defaultHighlightedIndex), g === void 0 && (g = {}), g = pr(g), i.internalSetState(oe({
|
|
8194
8194
|
highlightedIndex: h
|
|
@@ -8200,53 +8200,53 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8200
8200
|
highlightedIndex: i.props.defaultHighlightedIndex,
|
|
8201
8201
|
isOpen: i.props.defaultIsOpen
|
|
8202
8202
|
}, h);
|
|
8203
|
-
}, i.selectItem = function(h, g,
|
|
8203
|
+
}, i.selectItem = function(h, g, b) {
|
|
8204
8204
|
g = pr(g), i.internalSetState(oe({
|
|
8205
8205
|
isOpen: i.props.defaultIsOpen,
|
|
8206
8206
|
highlightedIndex: i.props.defaultHighlightedIndex,
|
|
8207
8207
|
selectedItem: h,
|
|
8208
8208
|
inputValue: i.props.itemToString(h)
|
|
8209
|
-
}, g),
|
|
8210
|
-
}, i.selectItemAtIndex = function(h, g,
|
|
8209
|
+
}, g), b);
|
|
8210
|
+
}, i.selectItemAtIndex = function(h, g, b) {
|
|
8211
8211
|
var w = i.items[h];
|
|
8212
|
-
w != null && i.selectItem(w, g,
|
|
8212
|
+
w != null && i.selectItem(w, g, b);
|
|
8213
8213
|
}, i.selectHighlightedItem = function(h, g) {
|
|
8214
8214
|
return i.selectItemAtIndex(i.getState().highlightedIndex, h, g);
|
|
8215
8215
|
}, i.internalSetState = function(h, g) {
|
|
8216
|
-
var
|
|
8216
|
+
var b, w, N = {}, F = typeof h == "function";
|
|
8217
8217
|
return !F && h.hasOwnProperty("inputValue") && i.props.onInputValueChange(h.inputValue, oe({}, i.getStateAndHelpers(), h)), i.setState(function(f) {
|
|
8218
8218
|
var z;
|
|
8219
8219
|
f = i.getState(f);
|
|
8220
8220
|
var A = F ? h(f) : h;
|
|
8221
|
-
A = i.props.stateReducer(f, A),
|
|
8221
|
+
A = i.props.stateReducer(f, A), b = A.hasOwnProperty("selectedItem");
|
|
8222
8222
|
var G = {};
|
|
8223
|
-
return
|
|
8223
|
+
return b && A.selectedItem !== f.selectedItem && (w = A.selectedItem), (z = A).type || (z.type = Pa), Object.keys(A).forEach(function(S) {
|
|
8224
8224
|
f[S] !== A[S] && (N[S] = A[S]), S !== "type" && (A[S], Sr(i.props, S) || (G[S] = A[S]));
|
|
8225
8225
|
}), F && A.hasOwnProperty("inputValue") && i.props.onInputValueChange(A.inputValue, oe({}, i.getStateAndHelpers(), A)), G;
|
|
8226
8226
|
}, function() {
|
|
8227
8227
|
yi(g)();
|
|
8228
8228
|
var f = Object.keys(N).length > 1;
|
|
8229
|
-
f && i.props.onStateChange(N, i.getStateAndHelpers()),
|
|
8229
|
+
f && i.props.onStateChange(N, i.getStateAndHelpers()), b && i.props.onSelect(h.selectedItem, i.getStateAndHelpers()), w !== void 0 && i.props.onChange(w, i.getStateAndHelpers()), i.props.onUserAction(N, i.getStateAndHelpers());
|
|
8230
8230
|
});
|
|
8231
8231
|
}, i.rootRef = function(h) {
|
|
8232
8232
|
return i._rootNode = h;
|
|
8233
8233
|
}, i.getRootProps = function(h, g) {
|
|
8234
|
-
var
|
|
8234
|
+
var b, w = h === void 0 ? {} : h, N = w.refKey, F = N === void 0 ? "ref" : N, f = w.ref, z = Me(w, hp), A = g === void 0 ? {} : g, G = A.suppressRefError, S = G === void 0 ? !1 : G;
|
|
8235
8235
|
i.getRootProps.called = !0, i.getRootProps.refKey = F, i.getRootProps.suppressRefError = S;
|
|
8236
|
-
var
|
|
8237
|
-
return oe((
|
|
8236
|
+
var P = i.getState(), W = P.isOpen;
|
|
8237
|
+
return oe((b = {}, b[F] = Ge(f, i.rootRef), b.role = "combobox", b["aria-expanded"] = W, b["aria-haspopup"] = "listbox", b["aria-owns"] = W ? i.menuId : void 0, b["aria-labelledby"] = i.labelId, b), z);
|
|
8238
8238
|
}, i.keyDownHandlers = {
|
|
8239
8239
|
ArrowDown: function(h) {
|
|
8240
8240
|
var g = this;
|
|
8241
8241
|
if (h.preventDefault(), this.getState().isOpen) {
|
|
8242
|
-
var
|
|
8243
|
-
this.moveHighlightedIndex(
|
|
8244
|
-
type:
|
|
8242
|
+
var b = h.shiftKey ? 5 : 1;
|
|
8243
|
+
this.moveHighlightedIndex(b, {
|
|
8244
|
+
type: mr
|
|
8245
8245
|
});
|
|
8246
8246
|
} else
|
|
8247
8247
|
this.internalSetState({
|
|
8248
8248
|
isOpen: !0,
|
|
8249
|
-
type:
|
|
8249
|
+
type: mr
|
|
8250
8250
|
}, function() {
|
|
8251
8251
|
var w = g.getItemCount();
|
|
8252
8252
|
if (w > 0) {
|
|
@@ -8254,7 +8254,7 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8254
8254
|
length: w
|
|
8255
8255
|
}, g.isItemDisabled, !0);
|
|
8256
8256
|
g.setHighlightedIndex(f, {
|
|
8257
|
-
type:
|
|
8257
|
+
type: mr
|
|
8258
8258
|
});
|
|
8259
8259
|
}
|
|
8260
8260
|
});
|
|
@@ -8262,14 +8262,14 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8262
8262
|
ArrowUp: function(h) {
|
|
8263
8263
|
var g = this;
|
|
8264
8264
|
if (h.preventDefault(), this.getState().isOpen) {
|
|
8265
|
-
var
|
|
8266
|
-
this.moveHighlightedIndex(
|
|
8267
|
-
type:
|
|
8265
|
+
var b = h.shiftKey ? -5 : -1;
|
|
8266
|
+
this.moveHighlightedIndex(b, {
|
|
8267
|
+
type: br
|
|
8268
8268
|
});
|
|
8269
8269
|
} else
|
|
8270
8270
|
this.internalSetState({
|
|
8271
8271
|
isOpen: !0,
|
|
8272
|
-
type:
|
|
8272
|
+
type: br
|
|
8273
8273
|
}, function() {
|
|
8274
8274
|
var w = g.getItemCount();
|
|
8275
8275
|
if (w > 0) {
|
|
@@ -8277,15 +8277,15 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8277
8277
|
length: w
|
|
8278
8278
|
}, g.isItemDisabled, !0);
|
|
8279
8279
|
g.setHighlightedIndex(f, {
|
|
8280
|
-
type:
|
|
8280
|
+
type: br
|
|
8281
8281
|
});
|
|
8282
8282
|
}
|
|
8283
8283
|
});
|
|
8284
8284
|
},
|
|
8285
8285
|
Enter: function(h) {
|
|
8286
8286
|
if (h.which !== 229) {
|
|
8287
|
-
var g = this.getState(),
|
|
8288
|
-
if (
|
|
8287
|
+
var g = this.getState(), b = g.isOpen, w = g.highlightedIndex;
|
|
8288
|
+
if (b && w != null) {
|
|
8289
8289
|
h.preventDefault();
|
|
8290
8290
|
var N = this.items[w], F = this.getItemNodeFromIndex(w);
|
|
8291
8291
|
if (N == null || F && F.hasAttribute("disabled"))
|
|
@@ -8312,11 +8312,11 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8312
8312
|
}
|
|
8313
8313
|
}), i.inputKeyDownHandlers = oe({}, i.keyDownHandlers, {
|
|
8314
8314
|
Home: function(h) {
|
|
8315
|
-
var g = this.getState(),
|
|
8316
|
-
if (
|
|
8315
|
+
var g = this.getState(), b = g.isOpen;
|
|
8316
|
+
if (b) {
|
|
8317
8317
|
h.preventDefault();
|
|
8318
8318
|
var w = this.getItemCount();
|
|
8319
|
-
if (!(w <= 0 || !
|
|
8319
|
+
if (!(w <= 0 || !b)) {
|
|
8320
8320
|
var N = ct(0, !1, {
|
|
8321
8321
|
length: w
|
|
8322
8322
|
}, this.isItemDisabled);
|
|
@@ -8327,11 +8327,11 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8327
8327
|
}
|
|
8328
8328
|
},
|
|
8329
8329
|
End: function(h) {
|
|
8330
|
-
var g = this.getState(),
|
|
8331
|
-
if (
|
|
8330
|
+
var g = this.getState(), b = g.isOpen;
|
|
8331
|
+
if (b) {
|
|
8332
8332
|
h.preventDefault();
|
|
8333
8333
|
var w = this.getItemCount();
|
|
8334
|
-
if (!(w <= 0 || !
|
|
8334
|
+
if (!(w <= 0 || !b)) {
|
|
8335
8335
|
var N = ct(w - 1, !0, {
|
|
8336
8336
|
length: w
|
|
8337
8337
|
}, this.isItemDisabled);
|
|
@@ -8342,10 +8342,10 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8342
8342
|
}
|
|
8343
8343
|
}
|
|
8344
8344
|
}), i.getToggleButtonProps = function(h) {
|
|
8345
|
-
var g = h === void 0 ? {} : h,
|
|
8345
|
+
var g = h === void 0 ? {} : h, b = g.onClick;
|
|
8346
8346
|
g.onPress;
|
|
8347
8347
|
var w = g.onKeyDown, N = g.onKeyUp, F = g.onBlur, f = Me(g, gp), z = i.getState(), A = z.isOpen, G = {
|
|
8348
|
-
onClick: ce(
|
|
8348
|
+
onClick: ce(b, i.buttonHandleClick),
|
|
8349
8349
|
onKeyDown: ce(w, i.buttonHandleKeyDown),
|
|
8350
8350
|
onKeyUp: ce(N, i.buttonHandleKeyUp),
|
|
8351
8351
|
onBlur: ce(F, i.buttonHandleBlur)
|
|
@@ -8364,8 +8364,8 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8364
8364
|
i.buttonKeyDownHandlers[g] && i.buttonKeyDownHandlers[g].call(i, h);
|
|
8365
8365
|
}, i.buttonHandleClick = function(h) {
|
|
8366
8366
|
if (h.preventDefault(), i.props.environment) {
|
|
8367
|
-
var g = i.props.environment.document,
|
|
8368
|
-
|
|
8367
|
+
var g = i.props.environment.document, b = g.body, w = g.activeElement;
|
|
8368
|
+
b && b === w && h.target.focus();
|
|
8369
8369
|
}
|
|
8370
8370
|
T.NODE_ENV === "test" ? i.toggleMenu({
|
|
8371
8371
|
type: ho
|
|
@@ -8378,8 +8378,8 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8378
8378
|
var g = h.target;
|
|
8379
8379
|
i.internalSetTimeout(function() {
|
|
8380
8380
|
if (!(i.isMouseDown || !i.props.environment)) {
|
|
8381
|
-
var
|
|
8382
|
-
(
|
|
8381
|
+
var b = i.props.environment.document.activeElement;
|
|
8382
|
+
(b == null || b.id !== i.inputId) && b !== g && i.reset({
|
|
8383
8383
|
type: qa
|
|
8384
8384
|
});
|
|
8385
8385
|
}
|
|
@@ -8390,19 +8390,19 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8390
8390
|
id: i.labelId
|
|
8391
8391
|
}, h);
|
|
8392
8392
|
}, i.getInputProps = function(h) {
|
|
8393
|
-
var g = h === void 0 ? {} : h,
|
|
8393
|
+
var g = h === void 0 ? {} : h, b = g.onKeyDown, w = g.onBlur, N = g.onChange, F = g.onInput;
|
|
8394
8394
|
g.onChangeText;
|
|
8395
8395
|
var f = Me(g, vp), z, A = {};
|
|
8396
8396
|
z = "onChange";
|
|
8397
|
-
var G = i.getState(), S = G.inputValue,
|
|
8397
|
+
var G = i.getState(), S = G.inputValue, P = G.isOpen, W = G.highlightedIndex;
|
|
8398
8398
|
if (!f.disabled) {
|
|
8399
8399
|
var Q;
|
|
8400
|
-
A = (Q = {}, Q[z] = ce(N, F, i.inputHandleChange), Q.onKeyDown = ce(
|
|
8400
|
+
A = (Q = {}, Q[z] = ce(N, F, i.inputHandleChange), Q.onKeyDown = ce(b, i.inputHandleKeyDown), Q.onBlur = ce(w, i.inputHandleBlur), Q);
|
|
8401
8401
|
}
|
|
8402
8402
|
return oe({
|
|
8403
8403
|
"aria-autocomplete": "list",
|
|
8404
|
-
"aria-activedescendant":
|
|
8405
|
-
"aria-controls":
|
|
8404
|
+
"aria-activedescendant": P && typeof W == "number" && W >= 0 ? i.getItemId(W) : void 0,
|
|
8405
|
+
"aria-controls": P ? i.menuId : void 0,
|
|
8406
8406
|
"aria-labelledby": f && f["aria-label"] ? void 0 : i.labelId,
|
|
8407
8407
|
// https://developer.mozilla.org/en-US/docs/Web/Security/Securing_your_site/Turning_off_form_autocompletion
|
|
8408
8408
|
// revert back since autocomplete="nope" is ignored on latest Chrome and Opera
|
|
@@ -8424,8 +8424,8 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8424
8424
|
i.internalSetTimeout(function() {
|
|
8425
8425
|
var h;
|
|
8426
8426
|
if (!(i.isMouseDown || !i.props.environment)) {
|
|
8427
|
-
var g = i.props.environment.document.activeElement,
|
|
8428
|
-
|
|
8427
|
+
var g = i.props.environment.document.activeElement, b = (g == null || (h = g.dataset) == null ? void 0 : h.toggle) && i._rootNode && i._rootNode.contains(g);
|
|
8428
|
+
b || i.reset({
|
|
8429
8429
|
type: $a
|
|
8430
8430
|
});
|
|
8431
8431
|
}
|
|
@@ -8433,17 +8433,17 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8433
8433
|
}, i.menuRef = function(h) {
|
|
8434
8434
|
i._menuNode = h;
|
|
8435
8435
|
}, i.getMenuProps = function(h, g) {
|
|
8436
|
-
var
|
|
8437
|
-
return i.getMenuProps.called = !0, i.getMenuProps.refKey = F, i.getMenuProps.suppressRefError = S, oe((
|
|
8436
|
+
var b, w = h === void 0 ? {} : h, N = w.refKey, F = N === void 0 ? "ref" : N, f = w.ref, z = Me(w, fp), A = g === void 0 ? {} : g, G = A.suppressRefError, S = G === void 0 ? !1 : G;
|
|
8437
|
+
return i.getMenuProps.called = !0, i.getMenuProps.refKey = F, i.getMenuProps.suppressRefError = S, oe((b = {}, b[F] = Ge(f, i.menuRef), b.role = "listbox", b["aria-labelledby"] = z && z["aria-label"] ? void 0 : i.labelId, b.id = i.menuId, b), z);
|
|
8438
8438
|
}, i.getItemProps = function(h) {
|
|
8439
|
-
var g,
|
|
8440
|
-
|
|
8441
|
-
var f =
|
|
8439
|
+
var g, b = h === void 0 ? {} : h, w = b.onMouseMove, N = b.onMouseDown, F = b.onClick;
|
|
8440
|
+
b.onPress;
|
|
8441
|
+
var f = b.index, z = b.item, A = z === void 0 ? T.NODE_ENV === "production" ? (
|
|
8442
8442
|
/* istanbul ignore next */
|
|
8443
8443
|
void 0
|
|
8444
|
-
) : sp("getItemProps", "item") : z, G = Me(
|
|
8444
|
+
) : sp("getItemProps", "item") : z, G = Me(b, bp);
|
|
8445
8445
|
f === void 0 ? (i.items.push(A), f = i.items.indexOf(A)) : i.items[f] = A;
|
|
8446
|
-
var S = "onClick",
|
|
8446
|
+
var S = "onClick", P = F, W = (g = {
|
|
8447
8447
|
// onMouseMove is used over onMouseEnter here. onMouseMove
|
|
8448
8448
|
// is only triggered on actual mouse movement while onMouseEnter
|
|
8449
8449
|
// can fire on DOM changes, interrupting keyboard navigation
|
|
@@ -8457,7 +8457,7 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8457
8457
|
onMouseDown: ce(N, function(ee) {
|
|
8458
8458
|
ee.preventDefault();
|
|
8459
8459
|
})
|
|
8460
|
-
}, g[S] = ce(
|
|
8460
|
+
}, g[S] = ce(P, function() {
|
|
8461
8461
|
i.selectItemAtIndex(f, {
|
|
8462
8462
|
type: Wa
|
|
8463
8463
|
});
|
|
@@ -8472,8 +8472,8 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8472
8472
|
}, i.clearItems = function() {
|
|
8473
8473
|
i.items = [];
|
|
8474
8474
|
}, i.reset = function(h, g) {
|
|
8475
|
-
h === void 0 && (h = {}), h = pr(h), i.internalSetState(function(
|
|
8476
|
-
var w =
|
|
8475
|
+
h === void 0 && (h = {}), h = pr(h), i.internalSetState(function(b) {
|
|
8476
|
+
var w = b.selectedItem;
|
|
8477
8477
|
return oe({
|
|
8478
8478
|
isOpen: i.props.defaultIsOpen,
|
|
8479
8479
|
highlightedIndex: i.props.defaultHighlightedIndex,
|
|
@@ -8481,15 +8481,15 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8481
8481
|
}, h);
|
|
8482
8482
|
}, g);
|
|
8483
8483
|
}, i.toggleMenu = function(h, g) {
|
|
8484
|
-
h === void 0 && (h = {}), h = pr(h), i.internalSetState(function(
|
|
8485
|
-
var w =
|
|
8484
|
+
h === void 0 && (h = {}), h = pr(h), i.internalSetState(function(b) {
|
|
8485
|
+
var w = b.isOpen;
|
|
8486
8486
|
return oe({
|
|
8487
8487
|
isOpen: !w
|
|
8488
8488
|
}, w && {
|
|
8489
8489
|
highlightedIndex: i.props.defaultHighlightedIndex
|
|
8490
8490
|
}, h);
|
|
8491
8491
|
}, function() {
|
|
8492
|
-
var
|
|
8492
|
+
var b = i.getState(), w = b.isOpen, N = b.highlightedIndex;
|
|
8493
8493
|
w && i.getItemCount() > 0 && typeof N == "number" && i.setHighlightedIndex(N, h), yi(g)();
|
|
8494
8494
|
});
|
|
8495
8495
|
}, i.openMenu = function(h) {
|
|
@@ -8503,20 +8503,20 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8503
8503
|
}, i.updateStatus = Ar(function() {
|
|
8504
8504
|
var h;
|
|
8505
8505
|
if ((h = i.props) != null && (h = h.environment) != null && h.document) {
|
|
8506
|
-
var g = i.getState(),
|
|
8506
|
+
var g = i.getState(), b = i.items[g.highlightedIndex], w = i.getItemCount(), N = i.props.getA11yStatusMessage(oe({
|
|
8507
8507
|
itemToString: i.props.itemToString,
|
|
8508
8508
|
previousResultCount: i.previousResultCount,
|
|
8509
8509
|
resultCount: w,
|
|
8510
|
-
highlightedItem:
|
|
8510
|
+
highlightedItem: b
|
|
8511
8511
|
}, g));
|
|
8512
|
-
i.previousResultCount = w,
|
|
8512
|
+
i.previousResultCount = w, Ha(N, i.props.environment.document);
|
|
8513
8513
|
}
|
|
8514
8514
|
}, 200);
|
|
8515
|
-
var a = i.props, s = a.defaultHighlightedIndex, l = a.initialHighlightedIndex, c = l === void 0 ? s : l, u = a.defaultIsOpen, d = a.initialIsOpen, x = d === void 0 ? u : d, k = a.initialInputValue, O = k === void 0 ? "" : k, y = a.initialSelectedItem,
|
|
8515
|
+
var a = i.props, s = a.defaultHighlightedIndex, l = a.initialHighlightedIndex, c = l === void 0 ? s : l, u = a.defaultIsOpen, d = a.initialIsOpen, x = d === void 0 ? u : d, k = a.initialInputValue, O = k === void 0 ? "" : k, y = a.initialSelectedItem, m = y === void 0 ? null : y, D = i.getState({
|
|
8516
8516
|
highlightedIndex: c,
|
|
8517
8517
|
isOpen: x,
|
|
8518
8518
|
inputValue: O,
|
|
8519
|
-
selectedItem:
|
|
8519
|
+
selectedItem: m
|
|
8520
8520
|
});
|
|
8521
8521
|
return D.selectedItem != null && i.props.initialInputValue === void 0 && (D.inputValue = i.props.itemToString(D.selectedItem)), i.state = D, i;
|
|
8522
8522
|
}
|
|
@@ -8547,7 +8547,7 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8547
8547
|
this.setHighlightedIndex(c, i);
|
|
8548
8548
|
}
|
|
8549
8549
|
}, o.getStateAndHelpers = function() {
|
|
8550
|
-
var n = this.getState(), i = n.highlightedIndex, a = n.inputValue, s = n.selectedItem, l = n.isOpen, c = this.props.itemToString, u = this.id, d = this.getRootProps, x = this.getToggleButtonProps, k = this.getLabelProps, O = this.getMenuProps, y = this.getInputProps,
|
|
8550
|
+
var n = this.getState(), i = n.highlightedIndex, a = n.inputValue, s = n.selectedItem, l = n.isOpen, c = this.props.itemToString, u = this.id, d = this.getRootProps, x = this.getToggleButtonProps, k = this.getLabelProps, O = this.getMenuProps, y = this.getInputProps, m = this.getItemProps, D = this.openMenu, h = this.closeMenu, g = this.toggleMenu, b = this.selectItem, w = this.selectItemAtIndex, N = this.selectHighlightedItem, F = this.setHighlightedIndex, f = this.clearSelection, z = this.clearItems, A = this.reset, G = this.setItemCount, S = this.unsetItemCount, P = this.internalSetState;
|
|
8551
8551
|
return {
|
|
8552
8552
|
// prop getters
|
|
8553
8553
|
getRootProps: d,
|
|
@@ -8555,13 +8555,13 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8555
8555
|
getLabelProps: k,
|
|
8556
8556
|
getMenuProps: O,
|
|
8557
8557
|
getInputProps: y,
|
|
8558
|
-
getItemProps:
|
|
8558
|
+
getItemProps: m,
|
|
8559
8559
|
// actions
|
|
8560
8560
|
reset: A,
|
|
8561
8561
|
openMenu: D,
|
|
8562
8562
|
closeMenu: h,
|
|
8563
8563
|
toggleMenu: g,
|
|
8564
|
-
selectItem:
|
|
8564
|
+
selectItem: b,
|
|
8565
8565
|
selectItemAtIndex: w,
|
|
8566
8566
|
selectHighlightedItem: N,
|
|
8567
8567
|
setHighlightedIndex: F,
|
|
@@ -8569,7 +8569,7 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8569
8569
|
clearItems: z,
|
|
8570
8570
|
setItemCount: G,
|
|
8571
8571
|
unsetItemCount: S,
|
|
8572
|
-
setState:
|
|
8572
|
+
setState: P,
|
|
8573
8573
|
// props
|
|
8574
8574
|
itemToString: c,
|
|
8575
8575
|
// derived
|
|
@@ -8664,7 +8664,7 @@ var Ha = T.NODE_ENV !== "production" ? "__autocomplete_unknown__" : 0, Aa = T.NO
|
|
|
8664
8664
|
scrollIntoView: za
|
|
8665
8665
|
}, e.stateChangeTypes = pp, e;
|
|
8666
8666
|
})();
|
|
8667
|
-
T.NODE_ENV !== "production" && (
|
|
8667
|
+
T.NODE_ENV !== "production" && (mp.propTypes = {
|
|
8668
8668
|
children: B.func,
|
|
8669
8669
|
defaultHighlightedIndex: B.number,
|
|
8670
8670
|
defaultIsOpen: B.bool,
|
|
@@ -8716,7 +8716,7 @@ function Ei(e, t) {
|
|
|
8716
8716
|
}
|
|
8717
8717
|
function wp(e, t) {
|
|
8718
8718
|
var r = t.refKey, o = r !== "ref", n = !Ma(e);
|
|
8719
|
-
n && !o && !
|
|
8719
|
+
n && !o && !mi.isForwardRef(e) ? console.error("downshift: You returned a non-DOM element. You must specify a refKey in getRootProps") : !n && o && console.error('downshift: You returned a DOM element. You should not specify a refKey in getRootProps. You specified "' + r + '"'), !mi.isForwardRef(e) && !Ra(e)[r] && console.error('downshift: You must apply the ref prop "' + r + '" from getRootProps onto your root element.');
|
|
8720
8720
|
}
|
|
8721
8721
|
var Xa = {
|
|
8722
8722
|
highlightedIndex: -1,
|
|
@@ -8742,7 +8742,7 @@ function kp(e, t) {
|
|
|
8742
8742
|
return t.changes;
|
|
8743
8743
|
}
|
|
8744
8744
|
var _i = Ar(function(e, t) {
|
|
8745
|
-
|
|
8745
|
+
Ha(e, t);
|
|
8746
8746
|
}, 200), Ip = typeof window < "u" && typeof window.document < "u" && typeof window.document.createElement < "u" ? Mi : se, Ja = "useId" in vt ? function(e) {
|
|
8747
8747
|
var t = e.id, r = e.labelId, o = e.menuId, n = e.getItemId, i = e.toggleButtonId, a = e.inputId, s = "downshift-" + vt.useId();
|
|
8748
8748
|
t || (t = s);
|
|
@@ -8795,10 +8795,10 @@ function Vr(e) {
|
|
|
8795
8795
|
function Za(e, t, r, o) {
|
|
8796
8796
|
var n = fe(), i = fe(), a = q(function(k, O) {
|
|
8797
8797
|
i.current = O, k = Kt(k, O.props);
|
|
8798
|
-
var y = e(k, O),
|
|
8798
|
+
var y = e(k, O), m = O.props.stateReducer(k, oe({}, O, {
|
|
8799
8799
|
changes: y
|
|
8800
8800
|
}));
|
|
8801
|
-
return
|
|
8801
|
+
return m;
|
|
8802
8802
|
}, [e]), s = Rr(a, t, r), l = s[0], c = s[1], u = Vr(t), d = q(function(k) {
|
|
8803
8803
|
return c(oe({
|
|
8804
8804
|
props: u.current
|
|
@@ -9085,7 +9085,7 @@ var Np = Nt(Nt({}, ns), { items: B.array.isRequired, isItemDisabled: B.func }),
|
|
|
9085
9085
|
T.NODE_ENV !== "production" && (as = function(e, t) {
|
|
9086
9086
|
B.checkPropTypes(Np, e, "prop", t.name);
|
|
9087
9087
|
});
|
|
9088
|
-
var xr = T.NODE_ENV !== "production" ? "__togglebutton_click__" : 0, To = T.NODE_ENV !== "production" ? "__togglebutton_keydown_arrow_down__" : 1,
|
|
9088
|
+
var xr = T.NODE_ENV !== "production" ? "__togglebutton_click__" : 0, To = T.NODE_ENV !== "production" ? "__togglebutton_keydown_arrow_down__" : 1, Ho = T.NODE_ENV !== "production" ? "__togglebutton_keydown_arrow_up__" : 2, zr = T.NODE_ENV !== "production" ? "__togglebutton_keydown_character__" : 3, Po = T.NODE_ENV !== "production" ? "__togglebutton_keydown_escape__" : 4, Ao = T.NODE_ENV !== "production" ? "__togglebutton_keydown_home__" : 5, Vo = T.NODE_ENV !== "production" ? "__togglebutton_keydown_end__" : 6, Lo = T.NODE_ENV !== "production" ? "__togglebutton_keydown_enter__" : 7, Bo = T.NODE_ENV !== "production" ? "__togglebutton_keydown_space_button__" : 8, jo = T.NODE_ENV !== "production" ? "__togglebutton_keydown_page_up__" : 9, Fo = T.NODE_ENV !== "production" ? "__togglebutton_keydown_page_down__" : 10, Cr = T.NODE_ENV !== "production" ? "__togglebutton_blur__" : 11, ss = T.NODE_ENV !== "production" ? "__menu_mouse_leave__" : 12, ls = T.NODE_ENV !== "production" ? "__item_mouse_move__" : 13, Wo = T.NODE_ENV !== "production" ? "__item_click__" : 14, cs = T.NODE_ENV !== "production" ? "__function_toggle_menu__" : 15, ds = T.NODE_ENV !== "production" ? "__function_open_menu__" : 16, us = T.NODE_ENV !== "production" ? "__function_close_menu__" : 17, ps = T.NODE_ENV !== "production" ? "__function_set_highlighted_index__" : 18, $o = T.NODE_ENV !== "production" ? "__function_select_item__" : 19, go = T.NODE_ENV !== "production" ? "__function_set_input_value__" : 20, hs = T.NODE_ENV !== "production" ? "__function_reset__" : 21, gs = /* @__PURE__ */ Object.freeze({
|
|
9089
9089
|
__proto__: null,
|
|
9090
9090
|
FunctionCloseMenu: us,
|
|
9091
9091
|
FunctionOpenMenu: ds,
|
|
@@ -9100,11 +9100,11 @@ var xr = T.NODE_ENV !== "production" ? "__togglebutton_click__" : 0, To = T.NODE
|
|
|
9100
9100
|
ToggleButtonBlur: Cr,
|
|
9101
9101
|
ToggleButtonClick: xr,
|
|
9102
9102
|
ToggleButtonKeyDownArrowDown: To,
|
|
9103
|
-
ToggleButtonKeyDownArrowUp:
|
|
9103
|
+
ToggleButtonKeyDownArrowUp: Ho,
|
|
9104
9104
|
ToggleButtonKeyDownCharacter: zr,
|
|
9105
9105
|
ToggleButtonKeyDownEnd: Vo,
|
|
9106
9106
|
ToggleButtonKeyDownEnter: Lo,
|
|
9107
|
-
ToggleButtonKeyDownEscape:
|
|
9107
|
+
ToggleButtonKeyDownEscape: Po,
|
|
9108
9108
|
ToggleButtonKeyDownHome: Ao,
|
|
9109
9109
|
ToggleButtonKeyDownPageDown: Fo,
|
|
9110
9110
|
ToggleButtonKeyDownPageUp: jo,
|
|
@@ -9147,7 +9147,7 @@ function Dp(e, t) {
|
|
|
9147
9147
|
};
|
|
9148
9148
|
}
|
|
9149
9149
|
break;
|
|
9150
|
-
case
|
|
9150
|
+
case Ho:
|
|
9151
9151
|
if (e.isOpen && i)
|
|
9152
9152
|
a = Or(n, e.highlightedIndex, !1);
|
|
9153
9153
|
else {
|
|
@@ -9185,7 +9185,7 @@ function Dp(e, t) {
|
|
|
9185
9185
|
highlightedIndex: qe(e.highlightedIndex, 10, n.items, n.isItemDisabled)
|
|
9186
9186
|
};
|
|
9187
9187
|
break;
|
|
9188
|
-
case
|
|
9188
|
+
case Po:
|
|
9189
9189
|
a = {
|
|
9190
9190
|
isOpen: !1,
|
|
9191
9191
|
highlightedIndex: -1
|
|
@@ -9213,12 +9213,12 @@ var zp = ["onClick"], Cp = ["onMouseLeave", "refKey", "ref"], Mp = ["onBlur", "o
|
|
|
9213
9213
|
_t.stateChangeTypes = gs;
|
|
9214
9214
|
function _t(e) {
|
|
9215
9215
|
e === void 0 && (e = {}), as(e, _t);
|
|
9216
|
-
var t = oe({}, Op, e), r = t.scrollIntoView, o = t.environment, n = t.getA11yStatusMessage, i = Qa(Dp, t, es, os), a = i[0], s = i[1], l = a.isOpen, c = a.highlightedIndex, u = a.selectedItem, d = a.inputValue, x = fe(null), k = fe(null), O = fe({}), y = fe(null),
|
|
9216
|
+
var t = oe({}, Op, e), r = t.scrollIntoView, o = t.environment, n = t.getA11yStatusMessage, i = Qa(Dp, t, es, os), a = i[0], s = i[1], l = a.isOpen, c = a.highlightedIndex, u = a.selectedItem, d = a.inputValue, x = fe(null), k = fe(null), O = fe({}), y = fe(null), m = Ja(t), D = Vr({
|
|
9217
9217
|
state: a,
|
|
9218
9218
|
props: t
|
|
9219
9219
|
}), h = q(function(v) {
|
|
9220
|
-
return O.current[
|
|
9221
|
-
}, [
|
|
9220
|
+
return O.current[m.getItemId(v)];
|
|
9221
|
+
}, [m]);
|
|
9222
9222
|
Ro(n, a, [l, c, u, d], o);
|
|
9223
9223
|
var g = rs({
|
|
9224
9224
|
menuElement: k.current,
|
|
@@ -9246,13 +9246,13 @@ function _t(e) {
|
|
|
9246
9246
|
var v = ht(t, "isOpen");
|
|
9247
9247
|
v && x.current && x.current.focus();
|
|
9248
9248
|
}, []);
|
|
9249
|
-
var
|
|
9249
|
+
var b = q(function() {
|
|
9250
9250
|
D.current.state.isOpen && s({
|
|
9251
9251
|
type: Cr
|
|
9252
9252
|
});
|
|
9253
9253
|
}, [s, D]), w = Ne(function() {
|
|
9254
9254
|
return [k, x];
|
|
9255
|
-
}, []), N = ts(o,
|
|
9255
|
+
}, []), N = ts(o, b, w), F = Lr("getMenuProps", "getToggleButtonProps");
|
|
9256
9256
|
se(function() {
|
|
9257
9257
|
l || (O.current = {});
|
|
9258
9258
|
}, [l]);
|
|
@@ -9266,7 +9266,7 @@ function _t(e) {
|
|
|
9266
9266
|
},
|
|
9267
9267
|
ArrowUp: function(v) {
|
|
9268
9268
|
v.preventDefault(), s({
|
|
9269
|
-
type:
|
|
9269
|
+
type: Ho,
|
|
9270
9270
|
altKey: v.altKey
|
|
9271
9271
|
});
|
|
9272
9272
|
},
|
|
@@ -9282,7 +9282,7 @@ function _t(e) {
|
|
|
9282
9282
|
},
|
|
9283
9283
|
Escape: function() {
|
|
9284
9284
|
D.current.state.isOpen && s({
|
|
9285
|
-
type:
|
|
9285
|
+
type: Po
|
|
9286
9286
|
});
|
|
9287
9287
|
},
|
|
9288
9288
|
Enter: function(v) {
|
|
@@ -9334,7 +9334,7 @@ function _t(e) {
|
|
|
9334
9334
|
type: ps,
|
|
9335
9335
|
highlightedIndex: v
|
|
9336
9336
|
});
|
|
9337
|
-
}, [s]),
|
|
9337
|
+
}, [s]), P = q(function(v) {
|
|
9338
9338
|
s({
|
|
9339
9339
|
type: $o,
|
|
9340
9340
|
selectedItem: v
|
|
@@ -9349,26 +9349,26 @@ function _t(e) {
|
|
|
9349
9349
|
inputValue: v
|
|
9350
9350
|
});
|
|
9351
9351
|
}, [s]), ee = q(function(v) {
|
|
9352
|
-
var C = v === void 0 ? {} : v,
|
|
9352
|
+
var C = v === void 0 ? {} : v, H = C.onClick, j = Me(C, zp), _ = function() {
|
|
9353
9353
|
var L;
|
|
9354
9354
|
(L = x.current) == null || L.focus();
|
|
9355
9355
|
};
|
|
9356
9356
|
return oe({
|
|
9357
|
-
id:
|
|
9358
|
-
htmlFor:
|
|
9359
|
-
onClick: ce(
|
|
9357
|
+
id: m.labelId,
|
|
9358
|
+
htmlFor: m.toggleButtonId,
|
|
9359
|
+
onClick: ce(H, _)
|
|
9360
9360
|
}, j);
|
|
9361
|
-
}, [
|
|
9362
|
-
var
|
|
9361
|
+
}, [m]), re = q(function(v, C) {
|
|
9362
|
+
var H, j = v === void 0 ? {} : v, _ = j.onMouseLeave, L = j.refKey, I = L === void 0 ? "ref" : L, E = j.ref, K = Me(j, Cp), Y = C === void 0 ? {} : C, $ = Y.suppressRefError, Z = $ === void 0 ? !1 : $, M = function() {
|
|
9363
9363
|
s({
|
|
9364
9364
|
type: ss
|
|
9365
9365
|
});
|
|
9366
9366
|
};
|
|
9367
|
-
return F("getMenuProps", Z, I, k), oe((
|
|
9367
|
+
return F("getMenuProps", Z, I, k), oe((H = {}, H[I] = Ge(E, function(ne) {
|
|
9368
9368
|
k.current = ne;
|
|
9369
|
-
}),
|
|
9370
|
-
}, [s, F,
|
|
9371
|
-
var
|
|
9369
|
+
}), H.id = m.menuId, H.role = "listbox", H["aria-labelledby"] = K && K["aria-label"] ? void 0 : "" + m.labelId, H.onMouseLeave = ce(_, M), H), K);
|
|
9370
|
+
}, [s, F, m]), V = q(function(v, C) {
|
|
9371
|
+
var H, j = v === void 0 ? {} : v, _ = j.onBlur, L = j.onClick;
|
|
9372
9372
|
j.onPress;
|
|
9373
9373
|
var I = j.onKeyDown, E = j.refKey, K = E === void 0 ? "ref" : E, Y = j.ref, $ = Me(j, Mp), Z = C === void 0 ? {} : C, M = Z.suppressRefError, ne = M === void 0 ? !1 : M, U = D.current.state, we = function() {
|
|
9374
9374
|
s({
|
|
@@ -9378,26 +9378,26 @@ function _t(e) {
|
|
|
9378
9378
|
U.isOpen && !N.isMouseDown && s({
|
|
9379
9379
|
type: Cr
|
|
9380
9380
|
});
|
|
9381
|
-
}, Ae = function(
|
|
9382
|
-
var ye = Ot(
|
|
9383
|
-
ye && f[ye] ? f[ye](
|
|
9381
|
+
}, Ae = function(be) {
|
|
9382
|
+
var ye = Ot(be);
|
|
9383
|
+
ye && f[ye] ? f[ye](be) : Ep(ye) && s({
|
|
9384
9384
|
type: zr,
|
|
9385
9385
|
key: ye
|
|
9386
9386
|
});
|
|
9387
|
-
}, _e = oe((
|
|
9388
|
-
x.current =
|
|
9389
|
-
}),
|
|
9387
|
+
}, _e = oe((H = {}, H[K] = Ge(Y, function(be) {
|
|
9388
|
+
x.current = be;
|
|
9389
|
+
}), H["aria-activedescendant"] = U.isOpen && U.highlightedIndex > -1 ? m.getItemId(U.highlightedIndex) : "", H["aria-controls"] = m.menuId, H["aria-expanded"] = D.current.state.isOpen, H["aria-haspopup"] = "listbox", H["aria-labelledby"] = $ && $["aria-label"] ? void 0 : "" + m.labelId, H.id = m.toggleButtonId, H.role = "combobox", H.tabIndex = 0, H.onBlur = ce(_, ve), H), $);
|
|
9390
9390
|
return $.disabled || (_e.onClick = ce(L, we), _e.onKeyDown = ce(I, Ae)), F("getToggleButtonProps", ne, K, x), _e;
|
|
9391
|
-
}, [s,
|
|
9392
|
-
var C,
|
|
9393
|
-
|
|
9394
|
-
var K =
|
|
9391
|
+
}, [s, m, D, N, F, f]), ae = q(function(v) {
|
|
9392
|
+
var C, H = v === void 0 ? {} : v, j = H.item, _ = H.index, L = H.onMouseMove, I = H.onClick, E = H.onMouseDown;
|
|
9393
|
+
H.onPress;
|
|
9394
|
+
var K = H.refKey, Y = K === void 0 ? "ref" : K, $ = H.disabled, Z = H.ref, M = Me(H, Rp);
|
|
9395
9395
|
$ !== void 0 && console.warn('Passing "disabled" as an argument to getItemProps is not supported anymore. Please use the isItemDisabled prop from useSelect.');
|
|
9396
|
-
var ne = D.current, U = ne.state, we = ne.props, ve = Co(j, _, we.items, "Pass either item or index to getItemProps!"), Ae = ve[0], _e = ve[1],
|
|
9396
|
+
var ne = D.current, U = ne.state, we = ne.props, ve = Co(j, _, we.items, "Pass either item or index to getItemProps!"), Ae = ve[0], _e = ve[1], be = we.isItemDisabled(Ae, _e), ye = function() {
|
|
9397
9397
|
N.isTouchEnd || _e === U.highlightedIndex || (g.current = !1, s({
|
|
9398
9398
|
type: ls,
|
|
9399
9399
|
index: _e,
|
|
9400
|
-
disabled:
|
|
9400
|
+
disabled: be
|
|
9401
9401
|
}));
|
|
9402
9402
|
}, ot = function() {
|
|
9403
9403
|
s({
|
|
@@ -9407,10 +9407,10 @@ function _t(e) {
|
|
|
9407
9407
|
}, nt = function(je) {
|
|
9408
9408
|
return je.preventDefault();
|
|
9409
9409
|
}, De = oe((C = {}, C[Y] = Ge(Z, function(je) {
|
|
9410
|
-
je && (O.current[
|
|
9411
|
-
}), C["aria-disabled"] =
|
|
9412
|
-
return
|
|
9413
|
-
}, [D,
|
|
9410
|
+
je && (O.current[m.getItemId(_e)] = je);
|
|
9411
|
+
}), C["aria-disabled"] = be, C["aria-selected"] = Ae === U.selectedItem, C.id = m.getItemId(_e), C.role = "option", C), M);
|
|
9412
|
+
return be || (De.onClick = ce(I, ot)), De.onMouseMove = ce(L, ye), De.onMouseDown = ce(E, nt), De;
|
|
9413
|
+
}, [D, m, N, g, s]);
|
|
9414
9414
|
return {
|
|
9415
9415
|
// prop getters.
|
|
9416
9416
|
getToggleButtonProps: V,
|
|
@@ -9422,7 +9422,7 @@ function _t(e) {
|
|
|
9422
9422
|
openMenu: G,
|
|
9423
9423
|
closeMenu: A,
|
|
9424
9424
|
setHighlightedIndex: S,
|
|
9425
|
-
selectItem:
|
|
9425
|
+
selectItem: P,
|
|
9426
9426
|
reset: W,
|
|
9427
9427
|
setInputValue: Q,
|
|
9428
9428
|
// state.
|
|
@@ -9432,7 +9432,7 @@ function _t(e) {
|
|
|
9432
9432
|
inputValue: d
|
|
9433
9433
|
};
|
|
9434
9434
|
}
|
|
9435
|
-
var Ko = T.NODE_ENV !== "production" ? "__input_keydown_arrow_down__" : 0, Go = T.NODE_ENV !== "production" ? "__input_keydown_arrow_up__" : 1, qo = T.NODE_ENV !== "production" ? "__input_keydown_escape__" : 2, Uo = T.NODE_ENV !== "production" ? "__input_keydown_home__" : 3, Yo = T.NODE_ENV !== "production" ? "__input_keydown_end__" : 4, Xo = T.NODE_ENV !== "production" ? "__input_keydown_page_up__" : 5, Jo = T.NODE_ENV !== "production" ? "__input_keydown_page_down__" : 6, Zo = T.NODE_ENV !== "production" ? "__input_keydown_enter__" : 7, Qo = T.NODE_ENV !== "production" ? "__input_change__" : 8, Mr = T.NODE_ENV !== "production" ? "__input_blur__" : 9, en = T.NODE_ENV !== "production" ? "__input_click__" : 10, vs = T.NODE_ENV !== "production" ? "__menu_mouse_leave__" : 11, fs = T.NODE_ENV !== "production" ? "__item_mouse_move__" : 12, tn = T.NODE_ENV !== "production" ? "__item_click__" : 13,
|
|
9435
|
+
var Ko = T.NODE_ENV !== "production" ? "__input_keydown_arrow_down__" : 0, Go = T.NODE_ENV !== "production" ? "__input_keydown_arrow_up__" : 1, qo = T.NODE_ENV !== "production" ? "__input_keydown_escape__" : 2, Uo = T.NODE_ENV !== "production" ? "__input_keydown_home__" : 3, Yo = T.NODE_ENV !== "production" ? "__input_keydown_end__" : 4, Xo = T.NODE_ENV !== "production" ? "__input_keydown_page_up__" : 5, Jo = T.NODE_ENV !== "production" ? "__input_keydown_page_down__" : 6, Zo = T.NODE_ENV !== "production" ? "__input_keydown_enter__" : 7, Qo = T.NODE_ENV !== "production" ? "__input_change__" : 8, Mr = T.NODE_ENV !== "production" ? "__input_blur__" : 9, en = T.NODE_ENV !== "production" ? "__input_click__" : 10, vs = T.NODE_ENV !== "production" ? "__menu_mouse_leave__" : 11, fs = T.NODE_ENV !== "production" ? "__item_mouse_move__" : 12, tn = T.NODE_ENV !== "production" ? "__item_click__" : 13, bs = T.NODE_ENV !== "production" ? "__togglebutton_click__" : 14, ms = T.NODE_ENV !== "production" ? "__function_toggle_menu__" : 15, ws = T.NODE_ENV !== "production" ? "__function_open_menu__" : 16, xs = T.NODE_ENV !== "production" ? "__function_close_menu__" : 17, ys = T.NODE_ENV !== "production" ? "__function_set_highlighted_index__" : 18, rn = T.NODE_ENV !== "production" ? "__function_select_item__" : 19, ks = T.NODE_ENV !== "production" ? "__function_set_input_value__" : 20, Is = T.NODE_ENV !== "production" ? "__function_reset__" : 21, on = T.NODE_ENV !== "production" ? "__controlled_prop_updated_selected_item__" : 22, Es = /* @__PURE__ */ Object.freeze({
|
|
9436
9436
|
__proto__: null,
|
|
9437
9437
|
ControlledPropUpdatedSelectedItem: on,
|
|
9438
9438
|
FunctionCloseMenu: xs,
|
|
@@ -9441,7 +9441,7 @@ var Ko = T.NODE_ENV !== "production" ? "__input_keydown_arrow_down__" : 0, Go =
|
|
|
9441
9441
|
FunctionSelectItem: rn,
|
|
9442
9442
|
FunctionSetHighlightedIndex: ys,
|
|
9443
9443
|
FunctionSetInputValue: ks,
|
|
9444
|
-
FunctionToggleMenu:
|
|
9444
|
+
FunctionToggleMenu: ms,
|
|
9445
9445
|
InputBlur: Mr,
|
|
9446
9446
|
InputChange: Qo,
|
|
9447
9447
|
InputClick: en,
|
|
@@ -9456,7 +9456,7 @@ var Ko = T.NODE_ENV !== "production" ? "__input_keydown_arrow_down__" : 0, Go =
|
|
|
9456
9456
|
ItemClick: tn,
|
|
9457
9457
|
ItemMouseMove: fs,
|
|
9458
9458
|
MenuMouseLeave: vs,
|
|
9459
|
-
ToggleButtonClick:
|
|
9459
|
+
ToggleButtonClick: bs
|
|
9460
9460
|
});
|
|
9461
9461
|
function Tp(e) {
|
|
9462
9462
|
var t = es(e), r = t.selectedItem, o = t.inputValue;
|
|
@@ -9464,7 +9464,7 @@ function Tp(e) {
|
|
|
9464
9464
|
inputValue: o
|
|
9465
9465
|
});
|
|
9466
9466
|
}
|
|
9467
|
-
var
|
|
9467
|
+
var Hp = oe({}, ns, {
|
|
9468
9468
|
items: B.array.isRequired,
|
|
9469
9469
|
isItemDisabled: B.func,
|
|
9470
9470
|
inputValue: B.string,
|
|
@@ -9473,7 +9473,7 @@ var Pp = oe({}, ns, {
|
|
|
9473
9473
|
inputId: B.string,
|
|
9474
9474
|
onInputValueChange: B.func
|
|
9475
9475
|
});
|
|
9476
|
-
function
|
|
9476
|
+
function Pp(e, t, r, o) {
|
|
9477
9477
|
var n = fe(), i = Za(e, t, r, o), a = i[0], s = i[1], l = Yt();
|
|
9478
9478
|
return se(function() {
|
|
9479
9479
|
if (Sr(t, "selectedItem")) {
|
|
@@ -9490,7 +9490,7 @@ function Hp(e, t, r, o) {
|
|
|
9490
9490
|
}
|
|
9491
9491
|
var _s = Ce;
|
|
9492
9492
|
T.NODE_ENV !== "production" && (_s = function(e, t) {
|
|
9493
|
-
B.checkPropTypes(
|
|
9493
|
+
B.checkPropTypes(Hp, e, "prop", t.name);
|
|
9494
9494
|
});
|
|
9495
9495
|
var Ap = oe({}, Bt, {
|
|
9496
9496
|
isItemDisabled: function() {
|
|
@@ -9598,7 +9598,7 @@ var Lp = ["onMouseLeave", "refKey", "ref"], Bp = ["item", "index", "refKey", "re
|
|
|
9598
9598
|
Qe.stateChangeTypes = Es;
|
|
9599
9599
|
function Qe(e) {
|
|
9600
9600
|
e === void 0 && (e = {}), _s(e, Qe);
|
|
9601
|
-
var t = oe({}, Ap, e), r = t.items, o = t.scrollIntoView, n = t.environment, i = t.getA11yStatusMessage, a =
|
|
9601
|
+
var t = oe({}, Ap, e), r = t.items, o = t.scrollIntoView, n = t.environment, i = t.getA11yStatusMessage, a = Pp(Vp, t, Tp, os), s = a[0], l = a[1], c = s.isOpen, u = s.highlightedIndex, d = s.selectedItem, x = s.inputValue, k = fe(null), O = fe({}), y = fe(null), m = fe(null), D = Yt(), h = Ja(t), g = fe(), b = Vr({
|
|
9602
9602
|
state: s,
|
|
9603
9603
|
props: t
|
|
9604
9604
|
}), w = q(function(_) {
|
|
@@ -9623,11 +9623,11 @@ function Qe(e) {
|
|
|
9623
9623
|
D || (g.current = r.length);
|
|
9624
9624
|
});
|
|
9625
9625
|
var F = q(function() {
|
|
9626
|
-
|
|
9626
|
+
b.current.state.isOpen && l({
|
|
9627
9627
|
type: Mr
|
|
9628
9628
|
});
|
|
9629
|
-
}, [l,
|
|
9630
|
-
return [k,
|
|
9629
|
+
}, [l, b]), f = Ne(function() {
|
|
9630
|
+
return [k, m, y];
|
|
9631
9631
|
}, []), z = ts(n, F, f), A = Lr("getInputProps", "getMenuProps");
|
|
9632
9632
|
se(function() {
|
|
9633
9633
|
c || (O.current = {});
|
|
@@ -9650,44 +9650,44 @@ function Qe(e) {
|
|
|
9650
9650
|
});
|
|
9651
9651
|
},
|
|
9652
9652
|
Home: function(_) {
|
|
9653
|
-
|
|
9653
|
+
b.current.state.isOpen && (_.preventDefault(), l({
|
|
9654
9654
|
type: Uo
|
|
9655
9655
|
}));
|
|
9656
9656
|
},
|
|
9657
9657
|
End: function(_) {
|
|
9658
|
-
|
|
9658
|
+
b.current.state.isOpen && (_.preventDefault(), l({
|
|
9659
9659
|
type: Yo
|
|
9660
9660
|
}));
|
|
9661
9661
|
},
|
|
9662
9662
|
Escape: function(_) {
|
|
9663
|
-
var L =
|
|
9663
|
+
var L = b.current.state;
|
|
9664
9664
|
(L.isOpen || L.inputValue || L.selectedItem || L.highlightedIndex > -1) && (_.preventDefault(), l({
|
|
9665
9665
|
type: qo
|
|
9666
9666
|
}));
|
|
9667
9667
|
},
|
|
9668
9668
|
Enter: function(_) {
|
|
9669
|
-
var L =
|
|
9669
|
+
var L = b.current.state;
|
|
9670
9670
|
!L.isOpen || _.which === 229 || (_.preventDefault(), l({
|
|
9671
9671
|
type: Zo
|
|
9672
9672
|
}));
|
|
9673
9673
|
},
|
|
9674
9674
|
PageUp: function(_) {
|
|
9675
|
-
|
|
9675
|
+
b.current.state.isOpen && (_.preventDefault(), l({
|
|
9676
9676
|
type: Xo
|
|
9677
9677
|
}));
|
|
9678
9678
|
},
|
|
9679
9679
|
PageDown: function(_) {
|
|
9680
|
-
|
|
9680
|
+
b.current.state.isOpen && (_.preventDefault(), l({
|
|
9681
9681
|
type: Jo
|
|
9682
9682
|
}));
|
|
9683
9683
|
}
|
|
9684
9684
|
};
|
|
9685
|
-
}, [l,
|
|
9685
|
+
}, [l, b]), S = q(function(_) {
|
|
9686
9686
|
return oe({
|
|
9687
9687
|
id: h.labelId,
|
|
9688
9688
|
htmlFor: h.inputId
|
|
9689
9689
|
}, _);
|
|
9690
|
-
}, [h]),
|
|
9690
|
+
}, [h]), P = q(function(_, L) {
|
|
9691
9691
|
var I, E = _ === void 0 ? {} : _, K = E.onMouseLeave, Y = E.refKey, $ = Y === void 0 ? "ref" : Y, Z = E.ref, M = Me(E, Lp), ne = L === void 0 ? {} : L, U = ne.suppressRefError, we = U === void 0 ? !1 : U;
|
|
9692
9692
|
return A("getMenuProps", we, $, k), oe((I = {}, I[$] = Ge(Z, function(ve) {
|
|
9693
9693
|
k.current = ve;
|
|
@@ -9701,7 +9701,7 @@ function Qe(e) {
|
|
|
9701
9701
|
E.onPress;
|
|
9702
9702
|
var ve = E.disabled, Ae = Me(E, Bp);
|
|
9703
9703
|
ve !== void 0 && console.warn('Passing "disabled" as an argument to getItemProps is not supported anymore. Please use the isItemDisabled prop from useCombobox.');
|
|
9704
|
-
var _e =
|
|
9704
|
+
var _e = b.current, be = _e.props, ye = _e.state, ot = Co(K, Y, be.items, "Pass either item or index to getItemProps!"), nt = ot[0], De = ot[1], je = be.isItemDisabled(nt, De), ft = "onClick", dt = we, $e = function() {
|
|
9705
9705
|
z.isTouchEnd || De === ye.highlightedIndex || (N.current = !1, l({
|
|
9706
9706
|
type: fs,
|
|
9707
9707
|
index: De,
|
|
@@ -9712,34 +9712,34 @@ function Qe(e) {
|
|
|
9712
9712
|
type: tn,
|
|
9713
9713
|
index: De
|
|
9714
9714
|
});
|
|
9715
|
-
}, Le = function(
|
|
9716
|
-
return
|
|
9715
|
+
}, Le = function(bt) {
|
|
9716
|
+
return bt.preventDefault();
|
|
9717
9717
|
};
|
|
9718
|
-
return oe((L = {}, L[Z] = Ge(M, function(
|
|
9719
|
-
|
|
9718
|
+
return oe((L = {}, L[Z] = Ge(M, function(bt) {
|
|
9719
|
+
bt && (O.current[h.getItemId(De)] = bt);
|
|
9720
9720
|
}), L["aria-disabled"] = je, L["aria-selected"] = De === ye.highlightedIndex, L.id = h.getItemId(De), L.role = "option", L), !je && (I = {}, I[ft] = ce(dt, Ve), I), {
|
|
9721
9721
|
onMouseMove: ce(ne, $e),
|
|
9722
9722
|
onMouseDown: ce(U, Le)
|
|
9723
9723
|
}, Ae);
|
|
9724
|
-
}, [l, h,
|
|
9724
|
+
}, [l, h, b, z, N]), Q = q(function(_) {
|
|
9725
9725
|
var L, I = _ === void 0 ? {} : _, E = I.onClick;
|
|
9726
9726
|
I.onPress;
|
|
9727
|
-
var K = I.refKey, Y = K === void 0 ? "ref" : K, $ = I.ref, Z = Me(I, jp), M =
|
|
9727
|
+
var K = I.refKey, Y = K === void 0 ? "ref" : K, $ = I.ref, Z = Me(I, jp), M = b.current.state, ne = function() {
|
|
9728
9728
|
l({
|
|
9729
|
-
type:
|
|
9729
|
+
type: bs
|
|
9730
9730
|
});
|
|
9731
9731
|
};
|
|
9732
9732
|
return oe((L = {}, L[Y] = Ge($, function(U) {
|
|
9733
|
-
|
|
9733
|
+
m.current = U;
|
|
9734
9734
|
}), L["aria-controls"] = h.menuId, L["aria-expanded"] = M.isOpen, L.id = h.toggleButtonId, L.tabIndex = -1, L), !Z.disabled && oe({}, {
|
|
9735
9735
|
onClick: ce(E, ne)
|
|
9736
9736
|
}), Z);
|
|
9737
|
-
}, [l,
|
|
9737
|
+
}, [l, b, h]), ee = q(function(_, L) {
|
|
9738
9738
|
var I, E = _ === void 0 ? {} : _, K = E.onKeyDown, Y = E.onChange, $ = E.onInput, Z = E.onBlur;
|
|
9739
9739
|
E.onChangeText;
|
|
9740
|
-
var M = E.onClick, ne = E.refKey, U = ne === void 0 ? "ref" : ne, we = E.ref, ve = Me(E, Fp), Ae = L === void 0 ? {} : L, _e = Ae.suppressRefError,
|
|
9741
|
-
A("getInputProps",
|
|
9742
|
-
var ye =
|
|
9740
|
+
var M = E.onClick, ne = E.refKey, U = ne === void 0 ? "ref" : ne, we = E.ref, ve = Me(E, Fp), Ae = L === void 0 ? {} : L, _e = Ae.suppressRefError, be = _e === void 0 ? !1 : _e;
|
|
9741
|
+
A("getInputProps", be, U, y);
|
|
9742
|
+
var ye = b.current.state, ot = function(Ve) {
|
|
9743
9743
|
var Le = Ot(Ve);
|
|
9744
9744
|
Le && G[Le] && G[Le](Ve);
|
|
9745
9745
|
}, nt = function(Ve) {
|
|
@@ -9767,9 +9767,9 @@ function Qe(e) {
|
|
|
9767
9767
|
return oe((I = {}, I[U] = Ge(we, function(Ve) {
|
|
9768
9768
|
y.current = Ve;
|
|
9769
9769
|
}), I["aria-activedescendant"] = ye.isOpen && ye.highlightedIndex > -1 ? h.getItemId(ye.highlightedIndex) : "", I["aria-autocomplete"] = "list", I["aria-controls"] = h.menuId, I["aria-expanded"] = ye.isOpen, I["aria-labelledby"] = ve && ve["aria-label"] ? void 0 : h.labelId, I.autoComplete = "off", I.id = h.inputId, I.role = "combobox", I.value = ye.inputValue, I), dt, ve);
|
|
9770
|
-
}, [l, h, n, G,
|
|
9770
|
+
}, [l, h, n, G, b, z, A]), re = q(function() {
|
|
9771
9771
|
l({
|
|
9772
|
-
type:
|
|
9772
|
+
type: ms
|
|
9773
9773
|
});
|
|
9774
9774
|
}, [l]), V = q(function() {
|
|
9775
9775
|
l({
|
|
@@ -9789,7 +9789,7 @@ function Qe(e) {
|
|
|
9789
9789
|
type: rn,
|
|
9790
9790
|
selectedItem: _
|
|
9791
9791
|
});
|
|
9792
|
-
}, [l]),
|
|
9792
|
+
}, [l]), H = q(function(_) {
|
|
9793
9793
|
l({
|
|
9794
9794
|
type: ks,
|
|
9795
9795
|
inputValue: _
|
|
@@ -9803,7 +9803,7 @@ function Qe(e) {
|
|
|
9803
9803
|
// prop getters.
|
|
9804
9804
|
getItemProps: W,
|
|
9805
9805
|
getLabelProps: S,
|
|
9806
|
-
getMenuProps:
|
|
9806
|
+
getMenuProps: P,
|
|
9807
9807
|
getInputProps: ee,
|
|
9808
9808
|
getToggleButtonProps: Q,
|
|
9809
9809
|
// actions.
|
|
@@ -9811,7 +9811,7 @@ function Qe(e) {
|
|
|
9811
9811
|
openMenu: ae,
|
|
9812
9812
|
closeMenu: V,
|
|
9813
9813
|
setHighlightedIndex: v,
|
|
9814
|
-
setInputValue:
|
|
9814
|
+
setInputValue: H,
|
|
9815
9815
|
selectItem: C,
|
|
9816
9816
|
reset: j,
|
|
9817
9817
|
// state.
|
|
@@ -9875,14 +9875,14 @@ var Kp = {
|
|
|
9875
9875
|
T.NODE_ENV !== "production" && (Ns = function(e, t) {
|
|
9876
9876
|
B.checkPropTypes(Kp, e, "prop", t.name);
|
|
9877
9877
|
});
|
|
9878
|
-
var nn = T.NODE_ENV !== "production" ? "__selected_item_click__" : 0, an = T.NODE_ENV !== "production" ? "__selected_item_keydown_delete__" : 1, sn = T.NODE_ENV !== "production" ? "__selected_item_keydown_backspace__" : 2, ln = T.NODE_ENV !== "production" ? "__selected_item_keydown_navigation_next__" : 3, cn = T.NODE_ENV !== "production" ? "__selected_item_keydown_navigation_previous__" : 4, dn = T.NODE_ENV !== "production" ? "__dropdown_keydown_navigation_previous__" : 5, un = T.NODE_ENV !== "production" ? "__dropdown_keydown_backspace__" : 6, pn = T.NODE_ENV !== "production" ? "__dropdown_click__" : 7, hn = T.NODE_ENV !== "production" ? "__function_add_selected_item__" : 8, gn = T.NODE_ENV !== "production" ? "__function_remove_selected_item__" : 9, vn = T.NODE_ENV !== "production" ? "__function_set_selected_items__" : 10, fn = T.NODE_ENV !== "production" ? "__function_set_active_index__" : 11,
|
|
9878
|
+
var nn = T.NODE_ENV !== "production" ? "__selected_item_click__" : 0, an = T.NODE_ENV !== "production" ? "__selected_item_keydown_delete__" : 1, sn = T.NODE_ENV !== "production" ? "__selected_item_keydown_backspace__" : 2, ln = T.NODE_ENV !== "production" ? "__selected_item_keydown_navigation_next__" : 3, cn = T.NODE_ENV !== "production" ? "__selected_item_keydown_navigation_previous__" : 4, dn = T.NODE_ENV !== "production" ? "__dropdown_keydown_navigation_previous__" : 5, un = T.NODE_ENV !== "production" ? "__dropdown_keydown_backspace__" : 6, pn = T.NODE_ENV !== "production" ? "__dropdown_click__" : 7, hn = T.NODE_ENV !== "production" ? "__function_add_selected_item__" : 8, gn = T.NODE_ENV !== "production" ? "__function_remove_selected_item__" : 9, vn = T.NODE_ENV !== "production" ? "__function_set_selected_items__" : 10, fn = T.NODE_ENV !== "production" ? "__function_set_active_index__" : 11, bn = T.NODE_ENV !== "production" ? "__function_reset__" : 12, qp = /* @__PURE__ */ Object.freeze({
|
|
9879
9879
|
__proto__: null,
|
|
9880
9880
|
DropdownClick: pn,
|
|
9881
9881
|
DropdownKeyDownBackspace: un,
|
|
9882
9882
|
DropdownKeyDownNavigationPrevious: dn,
|
|
9883
9883
|
FunctionAddSelectedItem: hn,
|
|
9884
9884
|
FunctionRemoveSelectedItem: gn,
|
|
9885
|
-
FunctionReset:
|
|
9885
|
+
FunctionReset: bn,
|
|
9886
9886
|
FunctionSetActiveIndex: fn,
|
|
9887
9887
|
FunctionSetSelectedItems: vn,
|
|
9888
9888
|
SelectedItemClick: nn,
|
|
@@ -9967,7 +9967,7 @@ function Up(e, t) {
|
|
|
9967
9967
|
};
|
|
9968
9968
|
break;
|
|
9969
9969
|
}
|
|
9970
|
-
case
|
|
9970
|
+
case bn:
|
|
9971
9971
|
l = {
|
|
9972
9972
|
activeIndex: Ni(n, "activeIndex"),
|
|
9973
9973
|
selectedItems: Ni(n, "selectedItems")
|
|
@@ -9979,9 +9979,9 @@ function Up(e, t) {
|
|
|
9979
9979
|
return oe({}, e, l);
|
|
9980
9980
|
}
|
|
9981
9981
|
var Yp = ["refKey", "ref", "onClick", "onKeyDown", "selectedItem", "index"], Xp = ["refKey", "ref", "onKeyDown", "onClick", "preventKeyAction"];
|
|
9982
|
-
|
|
9983
|
-
function
|
|
9984
|
-
e === void 0 && (e = {}), Ns(e,
|
|
9982
|
+
mn.stateChangeTypes = qp;
|
|
9983
|
+
function mn(e) {
|
|
9984
|
+
e === void 0 && (e = {}), Ns(e, mn);
|
|
9985
9985
|
var t = oe({}, Gp, e), r = t.getA11yStatusMessage, o = t.environment, n = t.keyNavigationNext, i = t.keyNavigationPrevious, a = Qa(Up, t, Wp, $p), s = a[0], l = a[1], c = s.activeIndex, u = s.selectedItems, d = Yt(), x = fe(null), k = fe();
|
|
9986
9986
|
k.current = [];
|
|
9987
9987
|
var O = Vr({
|
|
@@ -9994,7 +9994,7 @@ function bn(e) {
|
|
|
9994
9994
|
props: t,
|
|
9995
9995
|
state: s
|
|
9996
9996
|
});
|
|
9997
|
-
var y = Lr("getDropdownProps"),
|
|
9997
|
+
var y = Lr("getDropdownProps"), m = Ne(function() {
|
|
9998
9998
|
var z;
|
|
9999
9999
|
return z = {}, z[i] = function() {
|
|
10000
10000
|
l({
|
|
@@ -10025,20 +10025,20 @@ function bn(e) {
|
|
|
10025
10025
|
});
|
|
10026
10026
|
}, z;
|
|
10027
10027
|
}, [l, i]), h = q(function(z) {
|
|
10028
|
-
var A, G = z === void 0 ? {} : z, S = G.refKey,
|
|
10028
|
+
var A, G = z === void 0 ? {} : z, S = G.refKey, P = S === void 0 ? "ref" : S, W = G.ref, Q = G.onClick, ee = G.onKeyDown, re = G.selectedItem, V = G.index, ae = Me(G, Yp), v = O.current.state, C = Co(re, V, v.selectedItems, "Pass either item or index to getSelectedItemProps!"), H = C[1], j = H > -1 && H === v.activeIndex, _ = function() {
|
|
10029
10029
|
l({
|
|
10030
10030
|
type: nn,
|
|
10031
|
-
index:
|
|
10031
|
+
index: H
|
|
10032
10032
|
});
|
|
10033
10033
|
}, L = function(I) {
|
|
10034
10034
|
var E = Ot(I);
|
|
10035
|
-
E &&
|
|
10035
|
+
E && m[E] && m[E](I);
|
|
10036
10036
|
};
|
|
10037
|
-
return oe((A = {}, A[
|
|
10037
|
+
return oe((A = {}, A[P] = Ge(W, function(I) {
|
|
10038
10038
|
I && k.current.push(I);
|
|
10039
10039
|
}), A.tabIndex = j ? 0 : -1, A.onClick = ce(Q, _), A.onKeyDown = ce(ee, L), A), ae);
|
|
10040
|
-
}, [l, O,
|
|
10041
|
-
var G, S = z === void 0 ? {} : z,
|
|
10040
|
+
}, [l, O, m]), g = q(function(z, A) {
|
|
10041
|
+
var G, S = z === void 0 ? {} : z, P = S.refKey, W = P === void 0 ? "ref" : P, Q = S.ref, ee = S.onKeyDown, re = S.onClick, V = S.preventKeyAction, ae = V === void 0 ? !1 : V, v = Me(S, Xp), C = A === void 0 ? {} : A, H = C.suppressRefError, j = H === void 0 ? !1 : H;
|
|
10042
10042
|
y("getDropdownProps", j, W, x);
|
|
10043
10043
|
var _ = function(I) {
|
|
10044
10044
|
var E = Ot(I);
|
|
@@ -10054,7 +10054,7 @@ function bn(e) {
|
|
|
10054
10054
|
onKeyDown: ce(ee, _),
|
|
10055
10055
|
onClick: ce(re, L)
|
|
10056
10056
|
}, v);
|
|
10057
|
-
}, [l, D, y]),
|
|
10057
|
+
}, [l, D, y]), b = q(function(z) {
|
|
10058
10058
|
l({
|
|
10059
10059
|
type: hn,
|
|
10060
10060
|
selectedItem: z
|
|
@@ -10076,13 +10076,13 @@ function bn(e) {
|
|
|
10076
10076
|
});
|
|
10077
10077
|
}, [l]), f = q(function() {
|
|
10078
10078
|
l({
|
|
10079
|
-
type:
|
|
10079
|
+
type: bn
|
|
10080
10080
|
});
|
|
10081
10081
|
}, [l]);
|
|
10082
10082
|
return {
|
|
10083
10083
|
getSelectedItemProps: h,
|
|
10084
10084
|
getDropdownProps: g,
|
|
10085
|
-
addSelectedItem:
|
|
10085
|
+
addSelectedItem: b,
|
|
10086
10086
|
removeSelectedItem: w,
|
|
10087
10087
|
setSelectedItems: N,
|
|
10088
10088
|
setActiveIndex: F,
|
|
@@ -10108,7 +10108,7 @@ const Jp = (e) => {
|
|
|
10108
10108
|
customOptionGenerator: k,
|
|
10109
10109
|
disableInternalFiltering: O = !1,
|
|
10110
10110
|
stateReducer: y,
|
|
10111
|
-
isDisabled:
|
|
10111
|
+
isDisabled: m = !1
|
|
10112
10112
|
} = e, D = q((I) => {
|
|
10113
10113
|
const E = c(I);
|
|
10114
10114
|
if (typeof E == "string") return E;
|
|
@@ -10119,9 +10119,9 @@ const Jp = (e) => {
|
|
|
10119
10119
|
if (typeof K.name == "string") return K.name;
|
|
10120
10120
|
}
|
|
10121
10121
|
return String(u(I));
|
|
10122
|
-
}, [c, u]), h = (I) => I ? Array.isArray(I) ? I : [I] : [], g = i !== void 0 ? i : n !== void 0 ? n : null, [
|
|
10122
|
+
}, [c, u]), h = (I) => I ? Array.isArray(I) ? I : [I] : [], g = i !== void 0 ? i : n !== void 0 ? n : null, [b, w] = Ee(
|
|
10123
10123
|
() => h(g)
|
|
10124
|
-
), [N, F] = Ee(a || ""), [f, z] = Ee(() => d !== void 0 ? d : !1), A = n !== void 0 ? h(n) :
|
|
10124
|
+
), [N, F] = Ee(a || ""), [f, z] = Ee(() => d !== void 0 ? d : !1), A = n !== void 0 ? h(n) : b, G = a !== void 0 ? a : N, S = d !== void 0 ? d : f, P = q(
|
|
10125
10125
|
(I) => {
|
|
10126
10126
|
d === void 0 && z(I), x == null || x(I);
|
|
10127
10127
|
},
|
|
@@ -10147,7 +10147,7 @@ const Jp = (e) => {
|
|
|
10147
10147
|
O,
|
|
10148
10148
|
o,
|
|
10149
10149
|
D
|
|
10150
|
-
]), re =
|
|
10150
|
+
]), re = mn({
|
|
10151
10151
|
selectedItems: A,
|
|
10152
10152
|
onSelectedItemsChange: (I) => {
|
|
10153
10153
|
const E = I.selectedItems || [];
|
|
@@ -10158,7 +10158,7 @@ const Jp = (e) => {
|
|
|
10158
10158
|
itemToString: (I) => I ? D(I) : "",
|
|
10159
10159
|
isOpen: S,
|
|
10160
10160
|
onIsOpenChange: ({ isOpen: I }) => {
|
|
10161
|
-
I !== void 0 &&
|
|
10161
|
+
I !== void 0 && P(I);
|
|
10162
10162
|
},
|
|
10163
10163
|
selectedItem: r ? null : A[0] || null,
|
|
10164
10164
|
onSelectedItemChange: (I) => {
|
|
@@ -10204,12 +10204,12 @@ const Jp = (e) => {
|
|
|
10204
10204
|
initialIsOpen: d !== void 0 ? d : !1,
|
|
10205
10205
|
defaultIsOpen: !1
|
|
10206
10206
|
}), C = () => {
|
|
10207
|
-
|
|
10208
|
-
},
|
|
10209
|
-
|
|
10210
|
-
}, [
|
|
10211
|
-
|
|
10212
|
-
}, [
|
|
10207
|
+
m || (P(!S), "toggleMenu" in v && v.toggleMenu());
|
|
10208
|
+
}, H = q(() => {
|
|
10209
|
+
m || (P(!0), "openMenu" in v && v.openMenu());
|
|
10210
|
+
}, [P, v, m]), j = q(() => {
|
|
10211
|
+
P(!1), "closeMenu" in v && v.closeMenu();
|
|
10212
|
+
}, [P, v]), _ = q(() => {
|
|
10213
10213
|
W([]), Q(""), r && re.reset();
|
|
10214
10214
|
}, [W, Q, r, re]), L = q(
|
|
10215
10215
|
(I) => {
|
|
@@ -10229,9 +10229,9 @@ const Jp = (e) => {
|
|
|
10229
10229
|
selectedItems: A,
|
|
10230
10230
|
filteredItems: ee,
|
|
10231
10231
|
setInputValue: Q,
|
|
10232
|
-
setIsOpen:
|
|
10232
|
+
setIsOpen: P,
|
|
10233
10233
|
toggleMenu: C,
|
|
10234
|
-
openMenu:
|
|
10234
|
+
openMenu: H,
|
|
10235
10235
|
closeMenu: j,
|
|
10236
10236
|
clearSelection: _,
|
|
10237
10237
|
removeItem: L,
|
|
@@ -10258,12 +10258,12 @@ const Jp = (e) => {
|
|
|
10258
10258
|
isOpen: O,
|
|
10259
10259
|
onOpenChange: y,
|
|
10260
10260
|
// items removed
|
|
10261
|
-
customOptionGenerator:
|
|
10261
|
+
customOptionGenerator: m,
|
|
10262
10262
|
disableInternalFiltering: D,
|
|
10263
10263
|
// Default handlers:
|
|
10264
10264
|
getOptionLabel: h = (f) => typeof f == "string" || typeof f == "number" ? String(f) : (f == null ? void 0 : f.label) || (f == null ? void 0 : f.name) || String(f),
|
|
10265
10265
|
getOptionValue: g = (f) => typeof f == "string" || typeof f == "number" ? String(f) : (f == null ? void 0 : f.value) || (f == null ? void 0 : f.id) || (f == null ? void 0 : f.name) || String(f),
|
|
10266
|
-
isOptionDisabled:
|
|
10266
|
+
isOptionDisabled: b = (f) => (f == null ? void 0 : f.isDisabled) || !1,
|
|
10267
10267
|
formatOptionLabel: w,
|
|
10268
10268
|
stateReducer: N,
|
|
10269
10269
|
...F
|
|
@@ -10281,7 +10281,7 @@ const Jp = (e) => {
|
|
|
10281
10281
|
onOpenChange: y,
|
|
10282
10282
|
getOptionLabel: h,
|
|
10283
10283
|
getOptionValue: g,
|
|
10284
|
-
customOptionGenerator:
|
|
10284
|
+
customOptionGenerator: m,
|
|
10285
10285
|
disableInternalFiltering: D,
|
|
10286
10286
|
stateReducer: N,
|
|
10287
10287
|
isDisabled: o
|
|
@@ -10296,7 +10296,7 @@ const Jp = (e) => {
|
|
|
10296
10296
|
options: a,
|
|
10297
10297
|
getOptionLabel: h,
|
|
10298
10298
|
getOptionValue: g,
|
|
10299
|
-
isOptionDisabled:
|
|
10299
|
+
isOptionDisabled: b,
|
|
10300
10300
|
formatOptionLabel: w
|
|
10301
10301
|
};
|
|
10302
10302
|
return /* @__PURE__ */ p(
|
|
@@ -10314,7 +10314,7 @@ const Jp = (e) => {
|
|
|
10314
10314
|
)
|
|
10315
10315
|
}
|
|
10316
10316
|
);
|
|
10317
|
-
}, Zp =
|
|
10317
|
+
}, Zp = me(
|
|
10318
10318
|
({
|
|
10319
10319
|
className: e,
|
|
10320
10320
|
children: t,
|
|
@@ -10358,7 +10358,7 @@ const Jp = (e) => {
|
|
|
10358
10358
|
className: e,
|
|
10359
10359
|
children: t,
|
|
10360
10360
|
isMulti: r
|
|
10361
|
-
}) => /* @__PURE__ */ p("div", { className: R(Nu({ isMulti: r }), e), children: t }), yr =
|
|
10361
|
+
}) => /* @__PURE__ */ p("div", { className: R(Nu({ isMulti: r }), e), children: t }), yr = me(
|
|
10362
10362
|
({ isHidden: e, inputClassName: t, ...r }, o) => {
|
|
10363
10363
|
const { size: n, color: i } = ze();
|
|
10364
10364
|
return e ? /* @__PURE__ */ p(
|
|
@@ -10437,7 +10437,7 @@ const Jp = (e) => {
|
|
|
10437
10437
|
isDisabled: !1
|
|
10438
10438
|
}),
|
|
10439
10439
|
onClick: d,
|
|
10440
|
-
children: /* @__PURE__ */ p(
|
|
10440
|
+
children: /* @__PURE__ */ p(Hr, { className: "w-3 h-3" })
|
|
10441
10441
|
}
|
|
10442
10442
|
)
|
|
10443
10443
|
]
|
|
@@ -10509,7 +10509,7 @@ const Jp = (e) => {
|
|
|
10509
10509
|
tabIndex: 0,
|
|
10510
10510
|
"aria-label": "Clear selection",
|
|
10511
10511
|
...n,
|
|
10512
|
-
children: t || /* @__PURE__ */ p(
|
|
10512
|
+
children: t || /* @__PURE__ */ p(Hr, {})
|
|
10513
10513
|
}
|
|
10514
10514
|
);
|
|
10515
10515
|
}, Cs = ({
|
|
@@ -10560,7 +10560,7 @@ const Jp = (e) => {
|
|
|
10560
10560
|
)
|
|
10561
10561
|
}
|
|
10562
10562
|
);
|
|
10563
|
-
}, oh =
|
|
10563
|
+
}, oh = me(
|
|
10564
10564
|
({ className: e, children: t, placement: r, ...o }, n) => {
|
|
10565
10565
|
const { size: i, hasMessage: a, color: s } = ze();
|
|
10566
10566
|
return /* @__PURE__ */ p(
|
|
@@ -10569,7 +10569,7 @@ const Jp = (e) => {
|
|
|
10569
10569
|
"data-qui": "SelectMenu",
|
|
10570
10570
|
ref: n,
|
|
10571
10571
|
className: R(
|
|
10572
|
-
|
|
10572
|
+
Hu({ size: i, placement: r, hasMessage: a, color: s }),
|
|
10573
10573
|
e
|
|
10574
10574
|
),
|
|
10575
10575
|
...o,
|
|
@@ -10577,14 +10577,14 @@ const Jp = (e) => {
|
|
|
10577
10577
|
}
|
|
10578
10578
|
);
|
|
10579
10579
|
}
|
|
10580
|
-
), nh =
|
|
10580
|
+
), nh = me(
|
|
10581
10581
|
({ className: e, children: t, maxHeight: r = 300, ...o }, n) => {
|
|
10582
10582
|
const { size: i } = ze();
|
|
10583
10583
|
return /* @__PURE__ */ p(
|
|
10584
10584
|
Eo,
|
|
10585
10585
|
{
|
|
10586
10586
|
scrollableNodeProps: { ref: n },
|
|
10587
|
-
className: R(
|
|
10587
|
+
className: R(Pu({ size: i }), e),
|
|
10588
10588
|
style: { maxHeight: r },
|
|
10589
10589
|
...o,
|
|
10590
10590
|
children: t
|
|
@@ -10681,7 +10681,7 @@ const Jp = (e) => {
|
|
|
10681
10681
|
window.removeEventListener("resize", a), window.removeEventListener("scroll", a, !0);
|
|
10682
10682
|
};
|
|
10683
10683
|
}
|
|
10684
|
-
}, [e, t, r]), e ? t && n ?
|
|
10684
|
+
}, [e, t, r]), e ? t && n ? Hi(
|
|
10685
10685
|
/* @__PURE__ */ p(
|
|
10686
10686
|
"div",
|
|
10687
10687
|
{
|
|
@@ -10702,7 +10702,7 @@ const Jp = (e) => {
|
|
|
10702
10702
|
e.forEach((r) => {
|
|
10703
10703
|
typeof r == "function" ? r(t) : r != null && "current" in r && (r.current = t);
|
|
10704
10704
|
});
|
|
10705
|
-
}, Rs =
|
|
10705
|
+
}, Rs = me(({
|
|
10706
10706
|
placeholder: e,
|
|
10707
10707
|
noOptionsMessage: t = "",
|
|
10708
10708
|
hideNoOptions: r = !1,
|
|
@@ -10719,11 +10719,11 @@ const Jp = (e) => {
|
|
|
10719
10719
|
onBlur: k,
|
|
10720
10720
|
renderMenuHeader: O,
|
|
10721
10721
|
formatOptionLabel: y,
|
|
10722
|
-
displayFormattedOption:
|
|
10722
|
+
displayFormattedOption: m = !1,
|
|
10723
10723
|
renderMultiValue: D,
|
|
10724
10724
|
renderOption: h,
|
|
10725
10725
|
inputRef: g,
|
|
10726
|
-
controlShouldRenderValue:
|
|
10726
|
+
controlShouldRenderValue: b = !0,
|
|
10727
10727
|
name: w,
|
|
10728
10728
|
id: N,
|
|
10729
10729
|
onSelectionComplete: F,
|
|
@@ -10732,7 +10732,7 @@ const Jp = (e) => {
|
|
|
10732
10732
|
"aria-describedby": A,
|
|
10733
10733
|
children: G,
|
|
10734
10734
|
usePortal: S = !1,
|
|
10735
|
-
...
|
|
10735
|
+
...P
|
|
10736
10736
|
}, W) => {
|
|
10737
10737
|
const {
|
|
10738
10738
|
size: Q,
|
|
@@ -10742,7 +10742,7 @@ const Jp = (e) => {
|
|
|
10742
10742
|
options: ae = [],
|
|
10743
10743
|
getOptionLabel: v,
|
|
10744
10744
|
getOptionValue: C,
|
|
10745
|
-
isOptionDisabled:
|
|
10745
|
+
isOptionDisabled: H
|
|
10746
10746
|
} = ze(), j = fe(null), _ = g || j, L = fe(null), {
|
|
10747
10747
|
isOpen: I,
|
|
10748
10748
|
openMenu: E,
|
|
@@ -10756,13 +10756,13 @@ const Jp = (e) => {
|
|
|
10756
10756
|
isMulti: we,
|
|
10757
10757
|
isSearchable: ve,
|
|
10758
10758
|
multipleSelection: Ae
|
|
10759
|
-
} = V, { getDropdownProps: _e } = Ae,
|
|
10760
|
-
Object.entries(
|
|
10759
|
+
} = V, { getDropdownProps: _e } = Ae, be = we ? V.selectedItems ?? [] : K ? [K] : [], ye = be.length > 0, ot = i && !re && !l, nt = n && ye && !re && !l, De = !c && !l, je = !ye && (!ve || !Y) || !b, ft = {}, dt = {};
|
|
10760
|
+
Object.entries(P).forEach(([le, pe]) => {
|
|
10761
10761
|
le.startsWith("data-") || le.startsWith("aria-") || le === "role" ? ft[le] = pe : dt[le] = pe;
|
|
10762
10762
|
});
|
|
10763
10763
|
const $e = Ne(() => no([L, W]), [W]), Ve = M({}, { suppressRefError: !0 }), Le = _e({
|
|
10764
10764
|
preventKeyAction: I
|
|
10765
|
-
}),
|
|
10765
|
+
}), bt = (ne == null ? void 0 : ne({
|
|
10766
10766
|
ref: _,
|
|
10767
10767
|
disabled: re,
|
|
10768
10768
|
required: s,
|
|
@@ -10776,10 +10776,10 @@ const Jp = (e) => {
|
|
|
10776
10776
|
onBlur: k,
|
|
10777
10777
|
...dt,
|
|
10778
10778
|
...Le
|
|
10779
|
-
})) ?? {}, { ref: wn, ...jr } =
|
|
10779
|
+
})) ?? {}, { ref: wn, ...jr } = bt, Fr = Ne(
|
|
10780
10780
|
() => no([wn, Le.ref]),
|
|
10781
10781
|
[wn, Le.ref]
|
|
10782
|
-
), As = (le) =>
|
|
10782
|
+
), As = (le) => be.some((pe) => C(pe) === C(le)), xn = (le) => d ? le.filter((pe) => !As(pe)) : le, Vs = (le) => d ? le.map((pe) => ({
|
|
10783
10783
|
...pe,
|
|
10784
10784
|
options: xn(pe.options)
|
|
10785
10785
|
})).filter((pe) => pe.options.length > 0) : le, yn = (le) => {
|
|
@@ -10802,7 +10802,7 @@ const Jp = (e) => {
|
|
|
10802
10802
|
},
|
|
10803
10803
|
children: [
|
|
10804
10804
|
G || /* @__PURE__ */ te(Qp, { isMulti: we, children: [
|
|
10805
|
-
we &&
|
|
10805
|
+
we && b && be.map(
|
|
10806
10806
|
(le, pe) => D ? D({
|
|
10807
10807
|
data: le,
|
|
10808
10808
|
index: pe,
|
|
@@ -10818,12 +10818,12 @@ const Jp = (e) => {
|
|
|
10818
10818
|
C(le)
|
|
10819
10819
|
)
|
|
10820
10820
|
),
|
|
10821
|
-
!we && ye &&
|
|
10821
|
+
!we && ye && b && !ve && /* @__PURE__ */ p("div", { className: "flex items-center gap-2", children: /* @__PURE__ */ p(
|
|
10822
10822
|
th,
|
|
10823
10823
|
{
|
|
10824
|
-
data:
|
|
10824
|
+
data: be[0],
|
|
10825
10825
|
isDisabled: re,
|
|
10826
|
-
children: y &&
|
|
10826
|
+
children: y && m ? y(be[0]) : v(be[0])
|
|
10827
10827
|
}
|
|
10828
10828
|
) }),
|
|
10829
10829
|
ve && u === "trigger" ? /* @__PURE__ */ p(
|
|
@@ -10840,7 +10840,7 @@ const Jp = (e) => {
|
|
|
10840
10840
|
ref: Fr,
|
|
10841
10841
|
...jr,
|
|
10842
10842
|
isHidden: !0,
|
|
10843
|
-
value:
|
|
10843
|
+
value: be.map((le) => C(le)).join(",")
|
|
10844
10844
|
}
|
|
10845
10845
|
),
|
|
10846
10846
|
je && /* @__PURE__ */ p(eh, { children: e })
|
|
@@ -10906,11 +10906,11 @@ const Jp = (e) => {
|
|
|
10906
10906
|
label: pe.label,
|
|
10907
10907
|
options: pe.options,
|
|
10908
10908
|
children: pe.options.map((Re) => {
|
|
10909
|
-
const
|
|
10910
|
-
(Wr) => C(Wr) ===
|
|
10909
|
+
const mt = C(Re), Xt = be.some(
|
|
10910
|
+
(Wr) => C(Wr) === mt
|
|
10911
10911
|
), Rt = V.filteredItems.findIndex(
|
|
10912
|
-
(Wr) => C(Wr) ===
|
|
10913
|
-
), Jt = $ === Rt, Zt =
|
|
10912
|
+
(Wr) => C(Wr) === mt
|
|
10913
|
+
), Jt = $ === Rt, Zt = H(Re), Tt = U({
|
|
10914
10914
|
item: Re,
|
|
10915
10915
|
index: Rt,
|
|
10916
10916
|
onClick: () => yn(Re)
|
|
@@ -10925,7 +10925,7 @@ const Jp = (e) => {
|
|
|
10925
10925
|
isSelected: Xt,
|
|
10926
10926
|
children: y ? y(Re) : v(Re)
|
|
10927
10927
|
},
|
|
10928
|
-
|
|
10928
|
+
mt
|
|
10929
10929
|
);
|
|
10930
10930
|
})
|
|
10931
10931
|
},
|
|
@@ -10936,11 +10936,11 @@ const Jp = (e) => {
|
|
|
10936
10936
|
V.filteredItems
|
|
10937
10937
|
);
|
|
10938
10938
|
return le.length === 0 ? /* @__PURE__ */ p(oo, { inputValue: Y, children: typeof t == "function" ? t(Y) : t }) : le.map((pe) => {
|
|
10939
|
-
const Re = C(pe),
|
|
10939
|
+
const Re = C(pe), mt = be.some(
|
|
10940
10940
|
(Tt) => C(Tt) === Re
|
|
10941
10941
|
), Xt = V.filteredItems.findIndex(
|
|
10942
10942
|
(Tt) => C(Tt) === Re
|
|
10943
|
-
), Rt = $ === Xt, Jt =
|
|
10943
|
+
), Rt = $ === Xt, Jt = H(pe), Zt = U({
|
|
10944
10944
|
item: pe,
|
|
10945
10945
|
index: Xt,
|
|
10946
10946
|
onClick: () => yn(pe)
|
|
@@ -10950,7 +10950,7 @@ const Jp = (e) => {
|
|
|
10950
10950
|
data: pe,
|
|
10951
10951
|
isDisabled: Jt,
|
|
10952
10952
|
isFocused: Rt,
|
|
10953
|
-
isSelected:
|
|
10953
|
+
isSelected: mt
|
|
10954
10954
|
}) }, Re) : /* @__PURE__ */ p(
|
|
10955
10955
|
vo,
|
|
10956
10956
|
{
|
|
@@ -10958,7 +10958,7 @@ const Jp = (e) => {
|
|
|
10958
10958
|
data: pe,
|
|
10959
10959
|
isDisabled: Jt,
|
|
10960
10960
|
isFocused: Rt,
|
|
10961
|
-
isSelected:
|
|
10961
|
+
isSelected: mt,
|
|
10962
10962
|
children: y ? y(pe) : v(pe)
|
|
10963
10963
|
},
|
|
10964
10964
|
Re
|
|
@@ -11013,7 +11013,7 @@ const ch = ({
|
|
|
11013
11013
|
"hover:bg-primary-hover hover:text-tab-active-fg": !t && !e
|
|
11014
11014
|
},
|
|
11015
11015
|
n
|
|
11016
|
-
), dh =
|
|
11016
|
+
), dh = me(
|
|
11017
11017
|
({
|
|
11018
11018
|
active: e,
|
|
11019
11019
|
disabled: t,
|
|
@@ -11049,7 +11049,7 @@ const ch = ({
|
|
|
11049
11049
|
}
|
|
11050
11050
|
);
|
|
11051
11051
|
dh.displayName = "ListItem";
|
|
11052
|
-
const
|
|
11052
|
+
const Pe = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET", "POST", "PUT", "DELETE"], ph = ({ initialSelectedItems: e, onChange: t, touched: r, onBlur: o }) => {
|
|
11053
11053
|
const [n, i] = Ee(e), [a, s] = Ee(!1);
|
|
11054
11054
|
se(() => {
|
|
11055
11055
|
i(e);
|
|
@@ -11061,14 +11061,12 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11061
11061
|
tt.Root,
|
|
11062
11062
|
{
|
|
11063
11063
|
isInvalid: r && n.length === 0,
|
|
11064
|
-
|
|
11065
|
-
|
|
11066
|
-
|
|
11067
|
-
|
|
11068
|
-
|
|
11069
|
-
|
|
11070
|
-
onOpenChange: s
|
|
11071
|
-
},
|
|
11064
|
+
isMulti: !0,
|
|
11065
|
+
isSearchable: !0,
|
|
11066
|
+
options: uh,
|
|
11067
|
+
value: n,
|
|
11068
|
+
onChange: (c) => l(c || []),
|
|
11069
|
+
onOpenChange: s,
|
|
11072
11070
|
className: "w-full",
|
|
11073
11071
|
children: /* @__PURE__ */ te("div", { className: "relative flex-1", children: [
|
|
11074
11072
|
/* @__PURE__ */ p(
|
|
@@ -11099,13 +11097,13 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11099
11097
|
{
|
|
11100
11098
|
className: "w-full",
|
|
11101
11099
|
isInvalid: !!(l || r),
|
|
11102
|
-
|
|
11103
|
-
|
|
11104
|
-
|
|
11105
|
-
|
|
11106
|
-
|
|
11107
|
-
|
|
11108
|
-
|
|
11100
|
+
isSearchable: !0,
|
|
11101
|
+
options: t,
|
|
11102
|
+
value: u,
|
|
11103
|
+
onChange: c,
|
|
11104
|
+
onOpenChange: s,
|
|
11105
|
+
getOptionLabel: (d) => d.name,
|
|
11106
|
+
getOptionValue: (d) => d.name,
|
|
11109
11107
|
children: [
|
|
11110
11108
|
/* @__PURE__ */ p(
|
|
11111
11109
|
tt.Field,
|
|
@@ -11136,19 +11134,13 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11136
11134
|
{
|
|
11137
11135
|
className: "w-full",
|
|
11138
11136
|
isInvalid: !!o,
|
|
11139
|
-
|
|
11140
|
-
|
|
11141
|
-
|
|
11142
|
-
|
|
11143
|
-
|
|
11144
|
-
|
|
11145
|
-
|
|
11146
|
-
onOpenChange: s,
|
|
11147
|
-
formatOptionLabel: (d) => /* @__PURE__ */ te("div", { className: "flex items-center gap-2 truncate", children: [
|
|
11148
|
-
d.exposed && /* @__PURE__ */ p(hr, { className: "text-warning shrink-0" }),
|
|
11149
|
-
/* @__PURE__ */ p("span", { className: "truncate", title: d.name, children: d.name })
|
|
11150
|
-
] })
|
|
11151
|
-
},
|
|
11137
|
+
isSearchable: !0,
|
|
11138
|
+
options: t,
|
|
11139
|
+
value: u,
|
|
11140
|
+
onChange: c,
|
|
11141
|
+
getOptionLabel: (d) => d.name,
|
|
11142
|
+
getOptionValue: (d) => d.name,
|
|
11143
|
+
onOpenChange: s,
|
|
11152
11144
|
children: [
|
|
11153
11145
|
/* @__PURE__ */ p(
|
|
11154
11146
|
tt.Field,
|
|
@@ -11156,14 +11148,18 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11156
11148
|
placeholder: "Select method...",
|
|
11157
11149
|
onBlur: n,
|
|
11158
11150
|
isClearable: !!e,
|
|
11159
|
-
noOptionsMessage: "Nothing found."
|
|
11151
|
+
noOptionsMessage: "Nothing found.",
|
|
11152
|
+
formatOptionLabel: (d) => /* @__PURE__ */ te("div", { className: "flex items-center gap-2 truncate", children: [
|
|
11153
|
+
d.exposed && /* @__PURE__ */ p(hr, { className: "text-warning shrink-0" }),
|
|
11154
|
+
/* @__PURE__ */ p("span", { className: "truncate", title: d.name, children: d.name })
|
|
11155
|
+
] })
|
|
11160
11156
|
}
|
|
11161
11157
|
),
|
|
11162
11158
|
o && !a && /* @__PURE__ */ p(tt.Message, { children: o })
|
|
11163
11159
|
]
|
|
11164
11160
|
}
|
|
11165
11161
|
) });
|
|
11166
|
-
}, Ts = ({ listeners: e, attributes: t }) => /* @__PURE__ */ p("button", { "data-cy": "handler-row-drag-handle", ...t, ...e, children: /* @__PURE__ */ p(nl, {}) }),
|
|
11162
|
+
}, Ts = ({ listeners: e, attributes: t }) => /* @__PURE__ */ p("button", { "data-cy": "handler-row-drag-handle", ...t, ...e, children: /* @__PURE__ */ p(nl, {}) }), Hs = (e) => {
|
|
11167
11163
|
var r;
|
|
11168
11164
|
if (!e) return "";
|
|
11169
11165
|
let t;
|
|
@@ -11194,17 +11190,17 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11194
11190
|
asRegex: a,
|
|
11195
11191
|
regexPattern: i
|
|
11196
11192
|
}), d = Tr(), x = d.getCatalog(), k = Object.values((x == null ? void 0 : x.singletons) || {}), O = (F = k.find((f) => f.name === c.className)) == null ? void 0 : F.methods.map(({ name: f, exposed: z }) => ({ name: f, exposed: z })), y = d.getNewlyCreatedHandlerId();
|
|
11197
|
-
function
|
|
11198
|
-
const { className: f, method: z, asRegex: A, regexPattern: G, pattern: S, verbs:
|
|
11199
|
-
return !!(f && z && (A ? G : !S.endsWith("/")) &&
|
|
11193
|
+
function m() {
|
|
11194
|
+
const { className: f, method: z, asRegex: A, regexPattern: G, pattern: S, verbs: P } = c;
|
|
11195
|
+
return !!(f && z && (A ? G : !S.endsWith("/")) && P.length);
|
|
11200
11196
|
}
|
|
11201
11197
|
function D() {
|
|
11202
|
-
if (
|
|
11203
|
-
const { className: f, method: z, asRegex: A, regexPattern: G, pattern: S, verbs:
|
|
11198
|
+
if (m()) {
|
|
11199
|
+
const { className: f, method: z, asRegex: A, regexPattern: G, pattern: S, verbs: P } = c, W = A ? { regexPattern: G } : { pattern: S };
|
|
11204
11200
|
d.actions.updateHandler(e, {
|
|
11205
11201
|
class: f,
|
|
11206
11202
|
method: z,
|
|
11207
|
-
verbs:
|
|
11203
|
+
verbs: P,
|
|
11208
11204
|
asRegex: A,
|
|
11209
11205
|
...W
|
|
11210
11206
|
}), d.actions.setEditingHandler(null);
|
|
@@ -11218,11 +11214,11 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11218
11214
|
regexPattern: i,
|
|
11219
11215
|
verbs: n
|
|
11220
11216
|
}, z = fo(c, ["id", "isExpanded"]);
|
|
11221
|
-
if (!
|
|
11217
|
+
if (!m()) {
|
|
11222
11218
|
y && d.actions.deleteHandler(y), d.actions.setEditingHandler(null);
|
|
11223
11219
|
return;
|
|
11224
11220
|
}
|
|
11225
|
-
if (!
|
|
11221
|
+
if (!bo(f, z)) {
|
|
11226
11222
|
const { confirmed: A } = await d.actions.openModal({
|
|
11227
11223
|
title: "Cancel Changes",
|
|
11228
11224
|
type: kr.CONFIRM,
|
|
@@ -11249,7 +11245,7 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11249
11245
|
f === e && D();
|
|
11250
11246
|
});
|
|
11251
11247
|
}, [c, e]);
|
|
11252
|
-
const [g,
|
|
11248
|
+
const [g, b] = Ee({ className: !1, method: !1, pattern: !1, verbs: !1 }), w = () => {
|
|
11253
11249
|
if (g.method && !c.method)
|
|
11254
11250
|
return "Method is required";
|
|
11255
11251
|
if (O) {
|
|
@@ -11287,7 +11283,7 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11287
11283
|
onChange: (f) => {
|
|
11288
11284
|
u((z) => ({ ...z, className: f }));
|
|
11289
11285
|
},
|
|
11290
|
-
onBlur: () =>
|
|
11286
|
+
onBlur: () => b((f) => ({ ...f, className: !0 })),
|
|
11291
11287
|
options: k,
|
|
11292
11288
|
errorMessage: g.className && !c.className ? "Class name is required" : c.className !== "" && !k.find((f) => f.name === c.className) ? `The singleton "${c.className}" doesn't exist.` : void 0
|
|
11293
11289
|
},
|
|
@@ -11304,16 +11300,16 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11304
11300
|
},
|
|
11305
11301
|
options: O || [],
|
|
11306
11302
|
errorMessage: w(),
|
|
11307
|
-
onBlur: () =>
|
|
11303
|
+
onBlur: () => b((f) => ({ ...f, method: !0 }))
|
|
11308
11304
|
}
|
|
11309
11305
|
) }),
|
|
11310
11306
|
/* @__PURE__ */ te("div", { className: "relative w-60 flex-shrink-0 flex items-center gap-1 overflow-visible", children: [
|
|
11311
11307
|
/* @__PURE__ */ p(
|
|
11312
|
-
|
|
11308
|
+
He,
|
|
11313
11309
|
{
|
|
11314
|
-
label: c.asRegex ?
|
|
11310
|
+
label: c.asRegex ? Hs(c.regexPattern) : c.pattern && !c.pattern.endsWith("/") ? `Requests starting with /${c.pattern}/ will be handled` : "",
|
|
11315
11311
|
className: "w-full",
|
|
11316
|
-
container:
|
|
11312
|
+
container: Pe(),
|
|
11317
11313
|
children: /* @__PURE__ */ te(
|
|
11318
11314
|
Vt.Root,
|
|
11319
11315
|
{
|
|
@@ -11333,7 +11329,7 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11333
11329
|
[c.asRegex ? "regexPattern" : "pattern"]: f.target.value
|
|
11334
11330
|
}));
|
|
11335
11331
|
},
|
|
11336
|
-
onBlur: () =>
|
|
11332
|
+
onBlur: () => b((f) => ({ ...f, pattern: !0 })),
|
|
11337
11333
|
placeholder: c.asRegex ? "Required" : ""
|
|
11338
11334
|
}
|
|
11339
11335
|
)
|
|
@@ -11359,12 +11355,12 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11359
11355
|
}
|
|
11360
11356
|
),
|
|
11361
11357
|
/* @__PURE__ */ p(
|
|
11362
|
-
|
|
11358
|
+
He,
|
|
11363
11359
|
{
|
|
11364
11360
|
label: c.asRegex ? "Requests matching this regex will be handled. Check the match with the __[Match regex command](https://developer.4d.com/docs/commands/match-regex)__" : `Prefixes are considered as regular expressions already containing starting and ending /
|
|
11365
11361
|
|
|
11366
11362
|
__[documentation](https://developer.4d.com/qodly/4DQodlyPro/httpHandlers)__`,
|
|
11367
|
-
container:
|
|
11363
|
+
container: Pe(),
|
|
11368
11364
|
children: /* @__PURE__ */ p("span", { className: "rounded hover:bg-primary-hover text-body w-6 h-6 flex items-center content-center justify-center", children: /* @__PURE__ */ p(Ci, { className: "inline h-4 w-4" }) })
|
|
11369
11365
|
}
|
|
11370
11366
|
)
|
|
@@ -11389,22 +11385,22 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11389
11385
|
u((z) => ({ ...z, verbs: f }));
|
|
11390
11386
|
},
|
|
11391
11387
|
touched: g.verbs,
|
|
11392
|
-
onBlur: () =>
|
|
11388
|
+
onBlur: () => b((f) => ({ ...f, verbs: !0 }))
|
|
11393
11389
|
}
|
|
11394
11390
|
),
|
|
11395
11391
|
/* @__PURE__ */ te("div", { className: "flex items-center gap-0.5 px-2", children: [
|
|
11396
|
-
/* @__PURE__ */ p(
|
|
11397
|
-
/* @__PURE__ */ p(
|
|
11392
|
+
/* @__PURE__ */ p(He, { label: "Duplicate Handler", container: Pe(), children: /* @__PURE__ */ p(Xe, { variant: "ghost", color: "white", children: /* @__PURE__ */ p(zi, {}) }) }),
|
|
11393
|
+
/* @__PURE__ */ p(He, { label: "Confirm Changes", container: Pe(), children: /* @__PURE__ */ p(
|
|
11398
11394
|
Xe,
|
|
11399
11395
|
{
|
|
11400
11396
|
variant: "ghost",
|
|
11401
11397
|
color: "white",
|
|
11402
|
-
disabled: !
|
|
11398
|
+
disabled: !m(),
|
|
11403
11399
|
onClick: D,
|
|
11404
11400
|
children: /* @__PURE__ */ p(rl, {})
|
|
11405
11401
|
}
|
|
11406
11402
|
) }),
|
|
11407
|
-
/* @__PURE__ */ p(
|
|
11403
|
+
/* @__PURE__ */ p(He, { label: "Cancel Changes", container: Pe(), children: /* @__PURE__ */ p(Xe, { variant: "ghost", color: "white", onClick: h, children: /* @__PURE__ */ p(ol, {}) }) })
|
|
11408
11404
|
] })
|
|
11409
11405
|
] })
|
|
11410
11406
|
] });
|
|
@@ -11422,7 +11418,7 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11422
11418
|
const { attributes: l, listeners: c, setNodeRef: u, transform: d, transition: x } = Gs({ id: e }), k = {
|
|
11423
11419
|
transform: xl.Transform.toString(d),
|
|
11424
11420
|
transition: x
|
|
11425
|
-
}, O = Tr(), y = O.getEditingHandlerId(),
|
|
11421
|
+
}, O = Tr(), y = O.getEditingHandlerId(), m = s ? a : o, D = O.getCatalog(), h = Object.values((D == null ? void 0 : D.singletons) || {}), g = (F = h == null ? void 0 : h.find((f) => f.name === t)) == null ? void 0 : F.methods.map(({ name: f, exposed: z }) => ({ name: f, exposed: z })), b = h == null ? void 0 : h.find(
|
|
11426
11422
|
(f) => f.name === t
|
|
11427
11423
|
), w = g == null ? void 0 : g.find((f) => f.name === r), N = w && w.exposed;
|
|
11428
11424
|
return /* @__PURE__ */ p("div", { className: "odd:bg-white/5", "data-cy": `handler-row-${y === e ? "editing" : "viewing"}`, ref: u, style: k, children: y === e ? /* @__PURE__ */ p(
|
|
@@ -11457,12 +11453,12 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11457
11453
|
"grab-handle"
|
|
11458
11454
|
),
|
|
11459
11455
|
/* @__PURE__ */ p("div", { className: "text-s w-full", children: t ? /* @__PURE__ */ te("div", { className: En("flex items-center gap-2"), children: [
|
|
11460
|
-
!
|
|
11461
|
-
|
|
11456
|
+
!b && /* @__PURE__ */ p(
|
|
11457
|
+
He,
|
|
11462
11458
|
{
|
|
11463
11459
|
label: `The singleton "${t}" doesn't exist.`,
|
|
11464
11460
|
color: "negative",
|
|
11465
|
-
container:
|
|
11461
|
+
container: Pe(),
|
|
11466
11462
|
children: /* @__PURE__ */ p("span", { className: "rounded p-0.5 pt-0.5 h-5 w-5 flex justify-center content-center", children: /* @__PURE__ */ p(hr, { className: "h-4 w-4" }) })
|
|
11467
11463
|
}
|
|
11468
11464
|
),
|
|
@@ -11472,40 +11468,40 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11472
11468
|
] }),
|
|
11473
11469
|
/* @__PURE__ */ p("div", { className: "w-60 flex-shrink-0 ", children: /* @__PURE__ */ p("div", { className: "text-s w-full", children: r ? /* @__PURE__ */ te("div", { className: En("flex items-center gap-2"), children: [
|
|
11474
11470
|
!w && /* @__PURE__ */ p(
|
|
11475
|
-
|
|
11471
|
+
He,
|
|
11476
11472
|
{
|
|
11477
11473
|
label: `The method "${r}" doesn't exist.`,
|
|
11478
11474
|
color: "negative",
|
|
11479
|
-
container:
|
|
11475
|
+
container: Pe(),
|
|
11480
11476
|
children: /* @__PURE__ */ p("span", { className: "rounded p-0.5 pt-0.5 h-5 w-5 flex justify-center content-center", children: /* @__PURE__ */ p(hr, { className: "inline h-4 w-4" }) })
|
|
11481
11477
|
}
|
|
11482
11478
|
),
|
|
11483
11479
|
" ",
|
|
11484
11480
|
N && /* @__PURE__ */ p(
|
|
11485
|
-
|
|
11481
|
+
He,
|
|
11486
11482
|
{
|
|
11487
11483
|
label: `Method "${r}" is already exposed`,
|
|
11488
11484
|
color: "warning",
|
|
11489
|
-
container:
|
|
11485
|
+
container: Pe(),
|
|
11490
11486
|
children: /* @__PURE__ */ p("span", { className: "rounded p-0.5 pt-0.5 h-5 w-5 flex justify-center content-center", children: /* @__PURE__ */ p(hr, { className: "inline h-4 w-4" }) })
|
|
11491
11487
|
}
|
|
11492
11488
|
),
|
|
11493
11489
|
" ",
|
|
11494
11490
|
r
|
|
11495
11491
|
] }) : /* @__PURE__ */ p("span", { className: "text-inactive-text italic", children: "undefined" }) }) }),
|
|
11496
|
-
/* @__PURE__ */ p("div", { className: "text-s relative w-60 flex-shrink-0", children:
|
|
11497
|
-
|
|
11492
|
+
/* @__PURE__ */ p("div", { className: "text-s relative w-60 flex-shrink-0", children: m ? /* @__PURE__ */ p(
|
|
11493
|
+
He,
|
|
11498
11494
|
{
|
|
11499
|
-
label: s ?
|
|
11500
|
-
container:
|
|
11501
|
-
children: /* @__PURE__ */ p("span", { children:
|
|
11495
|
+
label: s ? Hs(m) : `Requests starting with /${m}/ will be handled`,
|
|
11496
|
+
container: Pe(),
|
|
11497
|
+
children: /* @__PURE__ */ p("span", { children: m })
|
|
11502
11498
|
}
|
|
11503
11499
|
) : /* @__PURE__ */ p("span", { className: "text-inactive-text italic", children: "/" }) }),
|
|
11504
11500
|
/* @__PURE__ */ p("div", { className: "px-5 w-20 flex justify-center text-inactive-text", children: s ? /* @__PURE__ */ p(Js, {}) : /* @__PURE__ */ p(Zs, {}) }),
|
|
11505
11501
|
/* @__PURE__ */ te("div", { className: "flex flex-1 items-center", children: [
|
|
11506
11502
|
/* @__PURE__ */ p("div", { className: "text-s w-full", children: n.length ? n.join(",") : /* @__PURE__ */ p("span", { className: "text-inactive-text italic", children: "undefined" }) }),
|
|
11507
11503
|
/* @__PURE__ */ te("div", { className: "flex items-center gap-0.5 px-2", children: [
|
|
11508
|
-
/* @__PURE__ */ p(
|
|
11504
|
+
/* @__PURE__ */ p(He, { label: "Duplicate Handler", container: Pe(), children: /* @__PURE__ */ p(
|
|
11509
11505
|
Xe,
|
|
11510
11506
|
{
|
|
11511
11507
|
variant: "ghost",
|
|
@@ -11514,7 +11510,7 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11514
11510
|
children: /* @__PURE__ */ p(zi, {})
|
|
11515
11511
|
}
|
|
11516
11512
|
) }),
|
|
11517
|
-
/* @__PURE__ */ p(
|
|
11513
|
+
/* @__PURE__ */ p(He, { label: "Edit Handler", container: Pe(), children: /* @__PURE__ */ p(
|
|
11518
11514
|
Xe,
|
|
11519
11515
|
{
|
|
11520
11516
|
variant: "ghost",
|
|
@@ -11525,7 +11521,7 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11525
11521
|
children: /* @__PURE__ */ p(Qs, {})
|
|
11526
11522
|
}
|
|
11527
11523
|
) }),
|
|
11528
|
-
/* @__PURE__ */ p(
|
|
11524
|
+
/* @__PURE__ */ p(He, { label: "Delete Handler", position: "up-end", container: Pe(), children: /* @__PURE__ */ p(
|
|
11529
11525
|
Xe,
|
|
11530
11526
|
{
|
|
11531
11527
|
variant: "ghost",
|
|
@@ -11594,7 +11590,7 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11594
11590
|
/* @__PURE__ */ p("div", { className: "w-20 px-2 text-center text-xs", children: "As Regex" }),
|
|
11595
11591
|
/* @__PURE__ */ te("div", { className: "flex flex-1 items-center justify-between text-xs", children: [
|
|
11596
11592
|
/* @__PURE__ */ p("span", { children: "Verbs" }),
|
|
11597
|
-
/* @__PURE__ */ p("div", { className: "flex items-center gap-2 text-2xl", children: /* @__PURE__ */ p(
|
|
11593
|
+
/* @__PURE__ */ p("div", { className: "flex items-center gap-2 text-2xl", children: /* @__PURE__ */ p(He, { label: "Add a new HTTP Handler", container: Pe(), children: /* @__PURE__ */ p(
|
|
11598
11594
|
Xe,
|
|
11599
11595
|
{
|
|
11600
11596
|
"data-cy": "handlers-editor-add-handler-button",
|
|
@@ -11677,7 +11673,7 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11677
11673
|
) })
|
|
11678
11674
|
] }) })
|
|
11679
11675
|
] });
|
|
11680
|
-
},
|
|
11676
|
+
}, bh = () => /* @__PURE__ */ p(fh, {}), Ps = Ue(void 0), mh = (e, t) => {
|
|
11681
11677
|
switch (t.type) {
|
|
11682
11678
|
case "UPDATE_HANDLERS":
|
|
11683
11679
|
return {
|
|
@@ -11774,28 +11770,28 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11774
11770
|
content: t,
|
|
11775
11771
|
editing: null,
|
|
11776
11772
|
newlyCreatedHandlerID: null
|
|
11777
|
-
}, [o, n] = Rr(
|
|
11773
|
+
}, [o, n] = Rr(mh, r);
|
|
11778
11774
|
return se(() => {
|
|
11779
11775
|
n({
|
|
11780
11776
|
type: "SYNC_DATA",
|
|
11781
11777
|
payload: t
|
|
11782
11778
|
});
|
|
11783
|
-
}, [t]), /* @__PURE__ */ p(
|
|
11779
|
+
}, [t]), /* @__PURE__ */ p(Ps.Provider, { value: { state: o, dispatch: n }, children: e });
|
|
11784
11780
|
}, jh = () => {
|
|
11785
|
-
const e = rt(
|
|
11781
|
+
const e = rt(Ps);
|
|
11786
11782
|
if (!e)
|
|
11787
11783
|
throw new Error("useHTTPHandlers must be used within a HandlerProvider");
|
|
11788
11784
|
return e;
|
|
11789
11785
|
}, wh = () => {
|
|
11790
11786
|
const { modals: e, closeModal: t, editModal: r } = Zl();
|
|
11791
11787
|
return /* @__PURE__ */ p(Dt, { children: e.map((o, n) => /* @__PURE__ */ p(
|
|
11792
|
-
|
|
11788
|
+
bl,
|
|
11793
11789
|
{
|
|
11794
11790
|
hasOverlay: n === 0,
|
|
11795
11791
|
...o,
|
|
11796
11792
|
onClose: t,
|
|
11797
11793
|
onEdit: r,
|
|
11798
|
-
container:
|
|
11794
|
+
container: Pe()
|
|
11799
11795
|
},
|
|
11800
11796
|
o.id
|
|
11801
11797
|
)) });
|
|
@@ -11807,8 +11803,8 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11807
11803
|
return se(() => {
|
|
11808
11804
|
if (n.current !== e && (n.current = e, e !== void 0))
|
|
11809
11805
|
try {
|
|
11810
|
-
const a =
|
|
11811
|
-
|
|
11806
|
+
const a = mo(e);
|
|
11807
|
+
bo(r.getHandlers(), a) || r.actions.updateHandlers(a);
|
|
11812
11808
|
} catch (a) {
|
|
11813
11809
|
console.error(
|
|
11814
11810
|
"[HTTP Handlers Editor Standalone] Error while parsing the initial value:",
|
|
@@ -11823,12 +11819,12 @@ const He = () => document.querySelector(`.${Dl}`) || document.body, uh = ["GET",
|
|
|
11823
11819
|
console.error("[HTTP Handlers Editor Standalone] Error on value stringify:", a);
|
|
11824
11820
|
}
|
|
11825
11821
|
}, [t, i]), /* @__PURE__ */ te(Dt, { children: [
|
|
11826
|
-
/* @__PURE__ */ p("div", { className: "h-screen bg-grey-900", children: /* @__PURE__ */ p(
|
|
11822
|
+
/* @__PURE__ */ p("div", { className: "h-screen bg-grey-900", children: /* @__PURE__ */ p(bh, {}) }),
|
|
11827
11823
|
/* @__PURE__ */ p(wh, {})
|
|
11828
11824
|
] });
|
|
11829
11825
|
}, yh = (e) => {
|
|
11830
11826
|
const t = Jl();
|
|
11831
|
-
return /* @__PURE__ */ p(Tl, { adapter: t, children: /* @__PURE__ */ p(
|
|
11827
|
+
return /* @__PURE__ */ p(Tl, { adapter: t, children: /* @__PURE__ */ p(ml, { children: /* @__PURE__ */ p(xh, { ...e }) }) });
|
|
11832
11828
|
}, Fh = ({
|
|
11833
11829
|
initialValue: e = [],
|
|
11834
11830
|
catalog: t,
|
|
@@ -11838,7 +11834,7 @@ export {
|
|
|
11838
11834
|
jt as $handlerSubject,
|
|
11839
11835
|
Tl as EditorStateAdapterProvider,
|
|
11840
11836
|
yo as EditorStateContext,
|
|
11841
|
-
|
|
11837
|
+
bh as HTTPHandlersEditor,
|
|
11842
11838
|
Dl as HTTP_HANDLERS_EDITOR_SCOPE_CLASS,
|
|
11843
11839
|
Bh as HandlerProvider,
|
|
11844
11840
|
Xl as ReducerAdapterProvider,
|
|
@@ -11846,7 +11842,7 @@ export {
|
|
|
11846
11842
|
ji as getDefaultInitialState,
|
|
11847
11843
|
Bi as handlerReducer,
|
|
11848
11844
|
Vh as jsonSchema,
|
|
11849
|
-
|
|
11845
|
+
mo as normalizeHandlers,
|
|
11850
11846
|
Ai as serializeHandlers,
|
|
11851
11847
|
Tr as useEditorStateAdapter,
|
|
11852
11848
|
jh as useHTTPHandlers,
|