@keeper-security/keeper-js-ui 0.22.0 → 0.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/dist/index.cjs +4 -4
- package/dist/index.js +507 -516
- package/dist/style.css +1 -1
- package/dist/types/components/ui/button.d.ts +10 -5
- package/dist/types/components/ui/button.d.ts.map +1 -1
- package/dist/types/components/ui/icon-button.d.ts +1 -1
- package/dist/types/components/ui/icon-button.d.ts.map +1 -1
- package/dist/types/components/ui/tooltip.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { jsx as n, Fragment as T, jsxs as
|
|
1
|
+
import { jsx as n, Fragment as T, jsxs as j } from "react/jsx-runtime";
|
|
2
2
|
import * as a from "react";
|
|
3
3
|
import y1, { useState as za, useLayoutEffect as La } from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as je from "react-dom";
|
|
5
5
|
import Ra from "react-dom";
|
|
6
6
|
function Mo(e, t) {
|
|
7
7
|
if (typeof e == "function")
|
|
@@ -103,7 +103,7 @@ var Da = [
|
|
|
103
103
|
return r.displayName = `Primitive.${t}`, { ...e, [t]: r };
|
|
104
104
|
}, {});
|
|
105
105
|
function L2(e, t) {
|
|
106
|
-
e &&
|
|
106
|
+
e && je.flushSync(() => e.dispatchEvent(t));
|
|
107
107
|
}
|
|
108
108
|
var vn = Object.freeze({
|
|
109
109
|
// See: https://github.com/twbs/bootstrap/blob/main/scss/mixins/_visually-hidden.scss
|
|
@@ -130,7 +130,7 @@ var vn = Object.freeze({
|
|
|
130
130
|
kt.displayName = $a;
|
|
131
131
|
var R2 = kt, _a = "AccessibleIcon", mn = ({ children: e, label: t }) => {
|
|
132
132
|
const o = a.Children.only(e);
|
|
133
|
-
return /* @__PURE__ */
|
|
133
|
+
return /* @__PURE__ */ j(T, { children: [
|
|
134
134
|
a.cloneElement(o, {
|
|
135
135
|
// accessibility
|
|
136
136
|
"aria-hidden": "true",
|
|
@@ -246,7 +246,7 @@ function bt(e) {
|
|
|
246
246
|
r
|
|
247
247
|
];
|
|
248
248
|
}
|
|
249
|
-
function
|
|
249
|
+
function V(e, t, { checkForDefaultPrevented: o = !0 } = {}) {
|
|
250
250
|
return function(s) {
|
|
251
251
|
if (e?.(s), o === !1 || !s.defaultPrevented)
|
|
252
252
|
return t?.(s);
|
|
@@ -376,7 +376,7 @@ var gn = a.createContext(void 0), Ja = (e) => {
|
|
|
376
376
|
const { dir: t, children: o } = e;
|
|
377
377
|
return /* @__PURE__ */ n(gn.Provider, { value: t, children: o });
|
|
378
378
|
};
|
|
379
|
-
function
|
|
379
|
+
function Ve(e) {
|
|
380
380
|
const t = a.useContext(gn);
|
|
381
381
|
return e || t || "ltr";
|
|
382
382
|
}
|
|
@@ -410,8 +410,8 @@ var ti = "DismissableLayer", u2 = "dismissableLayer.update", oi = "dismissableLa
|
|
|
410
410
|
onDismiss: l,
|
|
411
411
|
...u
|
|
412
412
|
} = e, h = a.useContext(Cn), [f, p] = a.useState(null), v = f?.ownerDocument ?? globalThis?.document, [, g] = a.useState({}), k = K(t, (S) => p(S)), m = Array.from(h.layers), [C] = [...h.layersWithOutsidePointerEventsDisabled].slice(-1), b = m.indexOf(C), w = f ? m.indexOf(f) : -1, M = h.layersWithOutsidePointerEventsDisabled.size > 0, y = w >= b, x = si((S) => {
|
|
413
|
-
const I = S.target,
|
|
414
|
-
!y ||
|
|
413
|
+
const I = S.target, A = [...h.branches].some((O) => O.contains(I));
|
|
414
|
+
!y || A || (s?.(S), i?.(S), S.defaultPrevented || l?.());
|
|
415
415
|
}, v), H = ci((S) => {
|
|
416
416
|
const I = S.target;
|
|
417
417
|
[...h.branches].some((O) => O.contains(I)) || (c?.(S), i?.(S), S.defaultPrevented || l?.());
|
|
@@ -437,9 +437,9 @@ var ti = "DismissableLayer", u2 = "dismissableLayer.update", oi = "dismissableLa
|
|
|
437
437
|
pointerEvents: M ? y ? "auto" : "none" : void 0,
|
|
438
438
|
...e.style
|
|
439
439
|
},
|
|
440
|
-
onFocusCapture:
|
|
441
|
-
onBlurCapture:
|
|
442
|
-
onPointerDownCapture:
|
|
440
|
+
onFocusCapture: V(e.onFocusCapture, H.onFocusCapture),
|
|
441
|
+
onBlurCapture: V(e.onBlurCapture, H.onBlurCapture),
|
|
442
|
+
onPointerDownCapture: V(
|
|
443
443
|
e.onPointerDownCapture,
|
|
444
444
|
x.onPointerDownCapture
|
|
445
445
|
)
|
|
@@ -511,7 +511,7 @@ function bn(e, t, o, { discrete: r }) {
|
|
|
511
511
|
const s = o.originalEvent.target, c = new CustomEvent(e, { bubbles: !1, cancelable: !0, detail: o });
|
|
512
512
|
t && s.addEventListener(e, t, { once: !0 }), r ? L2(s, c) : s.dispatchEvent(c);
|
|
513
513
|
}
|
|
514
|
-
var ai = ne, ii = kn, Gt = "focusScope.autoFocusOnMount", Kt = "focusScope.autoFocusOnUnmount", xo = { bubbles: !1, cancelable: !0 }, li = "FocusScope",
|
|
514
|
+
var ai = ne, ii = kn, Gt = "focusScope.autoFocusOnMount", Kt = "focusScope.autoFocusOnUnmount", xo = { bubbles: !1, cancelable: !0 }, li = "FocusScope", Ae = a.forwardRef((e, t) => {
|
|
515
515
|
const {
|
|
516
516
|
loop: o = !1,
|
|
517
517
|
trapped: r = !1,
|
|
@@ -577,7 +577,7 @@ var ai = ne, ii = kn, Gt = "focusScope.autoFocusOnMount", Kt = "focusScope.autoF
|
|
|
577
577
|
);
|
|
578
578
|
return /* @__PURE__ */ n(B.div, { tabIndex: -1, ...i, ref: v, onKeyDown: k });
|
|
579
579
|
});
|
|
580
|
-
|
|
580
|
+
Ae.displayName = li;
|
|
581
581
|
function di(e, { select: t = !1 } = {}) {
|
|
582
582
|
const o = document.activeElement;
|
|
583
583
|
for (const r of e)
|
|
@@ -625,14 +625,14 @@ function pi() {
|
|
|
625
625
|
return {
|
|
626
626
|
add(t) {
|
|
627
627
|
const o = e[0];
|
|
628
|
-
t !== o && o?.pause(), e =
|
|
628
|
+
t !== o && o?.pause(), e = jo(e, t), e.unshift(t);
|
|
629
629
|
},
|
|
630
630
|
remove(t) {
|
|
631
|
-
e =
|
|
631
|
+
e = jo(e, t), e[0]?.resume();
|
|
632
632
|
}
|
|
633
633
|
};
|
|
634
634
|
}
|
|
635
|
-
function
|
|
635
|
+
function jo(e, t) {
|
|
636
636
|
const o = [...e], r = o.indexOf(t);
|
|
637
637
|
return r !== -1 && o.splice(r, 1), o;
|
|
638
638
|
}
|
|
@@ -650,23 +650,23 @@ var Xt = 0;
|
|
|
650
650
|
function wt() {
|
|
651
651
|
a.useEffect(() => {
|
|
652
652
|
const e = document.querySelectorAll("[data-radix-focus-guard]");
|
|
653
|
-
return document.body.insertAdjacentElement("afterbegin", e[0] ??
|
|
653
|
+
return document.body.insertAdjacentElement("afterbegin", e[0] ?? Vo()), document.body.insertAdjacentElement("beforeend", e[1] ?? Vo()), Xt++, () => {
|
|
654
654
|
Xt === 1 && document.querySelectorAll("[data-radix-focus-guard]").forEach((t) => t.remove()), Xt--;
|
|
655
655
|
};
|
|
656
656
|
}, []);
|
|
657
657
|
}
|
|
658
|
-
function
|
|
658
|
+
function Vo() {
|
|
659
659
|
const e = document.createElement("span");
|
|
660
660
|
return e.setAttribute("data-radix-focus-guard", ""), e.tabIndex = 0, e.style.outline = "none", e.style.opacity = "0", e.style.position = "fixed", e.style.pointerEvents = "none", e;
|
|
661
661
|
}
|
|
662
|
-
var
|
|
663
|
-
return
|
|
662
|
+
var j1 = function() {
|
|
663
|
+
return j1 = Object.assign || function(t) {
|
|
664
664
|
for (var o, r = 1, s = arguments.length; r < s; r++) {
|
|
665
665
|
o = arguments[r];
|
|
666
666
|
for (var c in o) Object.prototype.hasOwnProperty.call(o, c) && (t[c] = o[c]);
|
|
667
667
|
}
|
|
668
668
|
return t;
|
|
669
|
-
},
|
|
669
|
+
}, j1.apply(this, arguments);
|
|
670
670
|
};
|
|
671
671
|
function Mn(e, t) {
|
|
672
672
|
var o = {};
|
|
@@ -706,7 +706,7 @@ function bi(e, t) {
|
|
|
706
706
|
})[0];
|
|
707
707
|
return o.callback = t, o.facade;
|
|
708
708
|
}
|
|
709
|
-
var wi = typeof window < "u" ? a.useLayoutEffect : a.useEffect,
|
|
709
|
+
var wi = typeof window < "u" ? a.useLayoutEffect : a.useEffect, Ao = /* @__PURE__ */ new WeakMap();
|
|
710
710
|
function Mi(e, t) {
|
|
711
711
|
var o = bi(null, function(r) {
|
|
712
712
|
return e.forEach(function(s) {
|
|
@@ -714,7 +714,7 @@ function Mi(e, t) {
|
|
|
714
714
|
});
|
|
715
715
|
});
|
|
716
716
|
return wi(function() {
|
|
717
|
-
var r =
|
|
717
|
+
var r = Ao.get(o);
|
|
718
718
|
if (r) {
|
|
719
719
|
var s = new Set(r), c = new Set(e), i = o.current;
|
|
720
720
|
s.forEach(function(l) {
|
|
@@ -723,7 +723,7 @@ function Mi(e, t) {
|
|
|
723
723
|
s.has(l) || Yt(l, i);
|
|
724
724
|
});
|
|
725
725
|
}
|
|
726
|
-
|
|
726
|
+
Ao.set(o, e);
|
|
727
727
|
}, [e]), o;
|
|
728
728
|
}
|
|
729
729
|
function yi(e) {
|
|
@@ -787,7 +787,7 @@ function Ii(e, t) {
|
|
|
787
787
|
function xi(e) {
|
|
788
788
|
e === void 0 && (e = {});
|
|
789
789
|
var t = Ii(null);
|
|
790
|
-
return t.options =
|
|
790
|
+
return t.options = j1({ async: !0, ssr: !1 }, e), t;
|
|
791
791
|
}
|
|
792
792
|
var yn = function(e) {
|
|
793
793
|
var t = e.sideCar, o = Mn(e, ["sideCar"]);
|
|
@@ -796,7 +796,7 @@ var yn = function(e) {
|
|
|
796
796
|
var r = t.read();
|
|
797
797
|
if (!r)
|
|
798
798
|
throw new Error("Sidecar medium not found");
|
|
799
|
-
return a.createElement(r,
|
|
799
|
+
return a.createElement(r, j1({}, o));
|
|
800
800
|
};
|
|
801
801
|
yn.isSideCarExport = !0;
|
|
802
802
|
function Si(e, t) {
|
|
@@ -808,12 +808,12 @@ var In = xi(), Qt = function() {
|
|
|
808
808
|
onScrollCapture: Qt,
|
|
809
809
|
onWheelCapture: Qt,
|
|
810
810
|
onTouchMoveCapture: Qt
|
|
811
|
-
}), s = r[0], c = r[1], i = e.forwardProps, l = e.children, u = e.className, h = e.removeScrollBar, f = e.enabled, p = e.shards, v = e.sideCar, g = e.noRelative, k = e.noIsolation, m = e.inert, C = e.allowPinchZoom, b = e.as, w = b === void 0 ? "div" : b, M = e.gapMode, y = Mn(e, ["forwardProps", "children", "className", "removeScrollBar", "enabled", "shards", "sideCar", "noRelative", "noIsolation", "inert", "allowPinchZoom", "as", "gapMode"]), x = v, H = Mi([o, t]), S =
|
|
811
|
+
}), s = r[0], c = r[1], i = e.forwardProps, l = e.children, u = e.className, h = e.removeScrollBar, f = e.enabled, p = e.shards, v = e.sideCar, g = e.noRelative, k = e.noIsolation, m = e.inert, C = e.allowPinchZoom, b = e.as, w = b === void 0 ? "div" : b, M = e.gapMode, y = Mn(e, ["forwardProps", "children", "className", "removeScrollBar", "enabled", "shards", "sideCar", "noRelative", "noIsolation", "inert", "allowPinchZoom", "as", "gapMode"]), x = v, H = Mi([o, t]), S = j1(j1({}, y), s);
|
|
812
812
|
return a.createElement(
|
|
813
813
|
a.Fragment,
|
|
814
814
|
null,
|
|
815
815
|
f && a.createElement(x, { sideCar: In, removeScrollBar: h, shards: p, noRelative: g, noIsolation: k, inert: m, setCallbacks: c, allowPinchZoom: !!C, lockRef: o, gapMode: M }),
|
|
816
|
-
i ? a.cloneElement(a.Children.only(l),
|
|
816
|
+
i ? a.cloneElement(a.Children.only(l), j1(j1({}, S), { ref: H })) : a.createElement(w, j1({}, S, { className: u, ref: H }), l)
|
|
817
817
|
);
|
|
818
818
|
});
|
|
819
819
|
Mt.defaultProps = {
|
|
@@ -829,7 +829,7 @@ var Hi = function() {
|
|
|
829
829
|
if (typeof __webpack_nonce__ < "u")
|
|
830
830
|
return __webpack_nonce__;
|
|
831
831
|
};
|
|
832
|
-
function
|
|
832
|
+
function ji() {
|
|
833
833
|
if (!document)
|
|
834
834
|
return null;
|
|
835
835
|
var e = document.createElement("style");
|
|
@@ -837,10 +837,10 @@ function Vi() {
|
|
|
837
837
|
var t = Hi();
|
|
838
838
|
return t && e.setAttribute("nonce", t), e;
|
|
839
839
|
}
|
|
840
|
-
function
|
|
840
|
+
function Vi(e, t) {
|
|
841
841
|
e.styleSheet ? e.styleSheet.cssText = t : e.appendChild(document.createTextNode(t));
|
|
842
842
|
}
|
|
843
|
-
function
|
|
843
|
+
function Ai(e) {
|
|
844
844
|
var t = document.head || document.getElementsByTagName("head")[0];
|
|
845
845
|
t.appendChild(e);
|
|
846
846
|
}
|
|
@@ -848,7 +848,7 @@ var zi = function() {
|
|
|
848
848
|
var e = 0, t = null;
|
|
849
849
|
return {
|
|
850
850
|
add: function(o) {
|
|
851
|
-
e == 0 && (t =
|
|
851
|
+
e == 0 && (t = ji()) && (Vi(t, o), Ai(t)), e++;
|
|
852
852
|
},
|
|
853
853
|
remove: function() {
|
|
854
854
|
e--, !e && t && (t.parentNode && t.parentNode.removeChild(t), t = null);
|
|
@@ -983,7 +983,7 @@ var ce = h2 ? { passive: !1 } : !1, $i = function(e) {
|
|
|
983
983
|
typeof ShadowRoot < "u" && r instanceof ShadowRoot && (r = r.host);
|
|
984
984
|
var s = Hn(e, r);
|
|
985
985
|
if (s) {
|
|
986
|
-
var c =
|
|
986
|
+
var c = jn(e, r), i = c[1], l = c[2];
|
|
987
987
|
if (i > l)
|
|
988
988
|
return !0;
|
|
989
989
|
}
|
|
@@ -1006,7 +1006,7 @@ var ce = h2 ? { passive: !1 } : !1, $i = function(e) {
|
|
|
1006
1006
|
];
|
|
1007
1007
|
}, Hn = function(e, t) {
|
|
1008
1008
|
return e === "v" ? _i(t) : Zi(t);
|
|
1009
|
-
},
|
|
1009
|
+
}, jn = function(e, t) {
|
|
1010
1010
|
return e === "v" ? Fi(t) : Bi(t);
|
|
1011
1011
|
}, qi = function(e, t) {
|
|
1012
1012
|
return e === "h" && t === "rtl" ? -1 : 1;
|
|
@@ -1015,7 +1015,7 @@ var ce = h2 ? { passive: !1 } : !1, $i = function(e) {
|
|
|
1015
1015
|
do {
|
|
1016
1016
|
if (!l)
|
|
1017
1017
|
break;
|
|
1018
|
-
var g =
|
|
1018
|
+
var g = jn(e, l), k = g[0], m = g[1], C = g[2], b = m - C - c * k;
|
|
1019
1019
|
(k || b) && Hn(e, l) && (p += b, v += k);
|
|
1020
1020
|
var w = l.parentNode;
|
|
1021
1021
|
l = w && w.nodeType === Node.DOCUMENT_FRAGMENT_NODE ? w.host : w;
|
|
@@ -1062,7 +1062,7 @@ function Xi(e) {
|
|
|
1062
1062
|
var b = Fe(m), w = o.current, M = "deltaX" in m ? m.deltaX : w[0] - b[0], y = "deltaY" in m ? m.deltaY : w[1] - b[1], x, H = m.target, S = Math.abs(M) > Math.abs(y) ? "h" : "v";
|
|
1063
1063
|
if ("touches" in m && S === "h" && H.type === "range")
|
|
1064
1064
|
return !1;
|
|
1065
|
-
var I = window.getSelection(),
|
|
1065
|
+
var I = window.getSelection(), A = I && I.anchorNode, O = A ? A === H || A.contains(H) : !1;
|
|
1066
1066
|
if (O)
|
|
1067
1067
|
return !1;
|
|
1068
1068
|
var F = Lo(S, H);
|
|
@@ -1131,7 +1131,7 @@ function Yi(e) {
|
|
|
1131
1131
|
}
|
|
1132
1132
|
const Qi = Si(In, Xi);
|
|
1133
1133
|
var ze = a.forwardRef(function(e, t) {
|
|
1134
|
-
return a.createElement(Mt,
|
|
1134
|
+
return a.createElement(Mt, j1({}, e, { ref: t, sideCar: Qi }));
|
|
1135
1135
|
});
|
|
1136
1136
|
ze.classNames = Mt.classNames;
|
|
1137
1137
|
var Ji = function(e) {
|
|
@@ -1139,13 +1139,13 @@ var Ji = function(e) {
|
|
|
1139
1139
|
return null;
|
|
1140
1140
|
var t = Array.isArray(e) ? e[0] : e;
|
|
1141
1141
|
return t.ownerDocument.body;
|
|
1142
|
-
}, ie = /* @__PURE__ */ new WeakMap(), Be = /* @__PURE__ */ new WeakMap(), qe = {}, e2 = 0,
|
|
1143
|
-
return e && (e.host ||
|
|
1142
|
+
}, ie = /* @__PURE__ */ new WeakMap(), Be = /* @__PURE__ */ new WeakMap(), qe = {}, e2 = 0, Vn = function(e) {
|
|
1143
|
+
return e && (e.host || Vn(e.parentNode));
|
|
1144
1144
|
}, e3 = function(e, t) {
|
|
1145
1145
|
return t.map(function(o) {
|
|
1146
1146
|
if (e.contains(o))
|
|
1147
1147
|
return o;
|
|
1148
|
-
var r =
|
|
1148
|
+
var r = Vn(o);
|
|
1149
1149
|
return r && e.contains(r) ? r : (console.error("aria-hidden", o, "in not contained inside", e, ". Doing nothing"), null);
|
|
1150
1150
|
}).filter(function(o) {
|
|
1151
1151
|
return !!o;
|
|
@@ -1182,7 +1182,7 @@ var Ji = function(e) {
|
|
|
1182
1182
|
return s ? (r.push.apply(r, Array.from(s.querySelectorAll("[aria-live], script"))), t3(r, s, o, "aria-hidden")) : function() {
|
|
1183
1183
|
return null;
|
|
1184
1184
|
};
|
|
1185
|
-
}, It = "Dialog", [
|
|
1185
|
+
}, It = "Dialog", [An] = v1(It), [o3, H1] = An(It), zn = (e) => {
|
|
1186
1186
|
const {
|
|
1187
1187
|
__scopeDialog: t,
|
|
1188
1188
|
children: o,
|
|
@@ -1227,13 +1227,13 @@ var Ln = "DialogTrigger", Rn = a.forwardRef(
|
|
|
1227
1227
|
"data-state": P2(s.open),
|
|
1228
1228
|
...r,
|
|
1229
1229
|
ref: c,
|
|
1230
|
-
onClick:
|
|
1230
|
+
onClick: V(e.onClick, s.onOpenToggle)
|
|
1231
1231
|
}
|
|
1232
1232
|
);
|
|
1233
1233
|
}
|
|
1234
1234
|
);
|
|
1235
1235
|
Rn.displayName = Ln;
|
|
1236
|
-
var E2 = "DialogPortal", [n3, En] =
|
|
1236
|
+
var E2 = "DialogPortal", [n3, En] = An(E2, {
|
|
1237
1237
|
forceMount: void 0
|
|
1238
1238
|
}), Tn = (e) => {
|
|
1239
1239
|
const { __scopeDialog: t, forceMount: o, children: r, container: s } = e, c = H1(E2, t);
|
|
@@ -1284,14 +1284,14 @@ var c3 = a.forwardRef(
|
|
|
1284
1284
|
ref: s,
|
|
1285
1285
|
trapFocus: o.open,
|
|
1286
1286
|
disableOutsidePointerEvents: !0,
|
|
1287
|
-
onCloseAutoFocus:
|
|
1287
|
+
onCloseAutoFocus: V(e.onCloseAutoFocus, (c) => {
|
|
1288
1288
|
c.preventDefault(), o.triggerRef.current?.focus();
|
|
1289
1289
|
}),
|
|
1290
|
-
onPointerDownOutside:
|
|
1290
|
+
onPointerDownOutside: V(e.onPointerDownOutside, (c) => {
|
|
1291
1291
|
const i = c.detail.originalEvent, l = i.button === 0 && i.ctrlKey === !0;
|
|
1292
1292
|
(i.button === 2 || l) && c.preventDefault();
|
|
1293
1293
|
}),
|
|
1294
|
-
onFocusOutside:
|
|
1294
|
+
onFocusOutside: V(
|
|
1295
1295
|
e.onFocusOutside,
|
|
1296
1296
|
(c) => c.preventDefault()
|
|
1297
1297
|
)
|
|
@@ -1322,9 +1322,9 @@ var c3 = a.forwardRef(
|
|
|
1322
1322
|
), On = a.forwardRef(
|
|
1323
1323
|
(e, t) => {
|
|
1324
1324
|
const { __scopeDialog: o, trapFocus: r, onOpenAutoFocus: s, onCloseAutoFocus: c, ...i } = e, l = H1(J1, o), u = a.useRef(null), h = K(t, u);
|
|
1325
|
-
return wt(), /* @__PURE__ */
|
|
1325
|
+
return wt(), /* @__PURE__ */ j(T, { children: [
|
|
1326
1326
|
/* @__PURE__ */ n(
|
|
1327
|
-
|
|
1327
|
+
Ae,
|
|
1328
1328
|
{
|
|
1329
1329
|
asChild: !0,
|
|
1330
1330
|
loop: !0,
|
|
@@ -1346,7 +1346,7 @@ var c3 = a.forwardRef(
|
|
|
1346
1346
|
)
|
|
1347
1347
|
}
|
|
1348
1348
|
),
|
|
1349
|
-
/* @__PURE__ */
|
|
1349
|
+
/* @__PURE__ */ j(T, { children: [
|
|
1350
1350
|
/* @__PURE__ */ n(i3, { titleId: l.titleId }),
|
|
1351
1351
|
/* @__PURE__ */ n(d3, { contentRef: u, descriptionId: l.descriptionId })
|
|
1352
1352
|
] })
|
|
@@ -1375,7 +1375,7 @@ var Zn = "DialogClose", Fn = a.forwardRef(
|
|
|
1375
1375
|
type: "button",
|
|
1376
1376
|
...r,
|
|
1377
1377
|
ref: t,
|
|
1378
|
-
onClick:
|
|
1378
|
+
onClick: V(e.onClick, () => s.onOpenChange(!1))
|
|
1379
1379
|
}
|
|
1380
1380
|
);
|
|
1381
1381
|
}
|
|
@@ -1682,10 +1682,10 @@ var lr = "CheckboxTrigger", dr = a.forwardRef(
|
|
|
1682
1682
|
value: i,
|
|
1683
1683
|
...r,
|
|
1684
1684
|
ref: m,
|
|
1685
|
-
onKeyDown:
|
|
1685
|
+
onKeyDown: V(t, (b) => {
|
|
1686
1686
|
b.key === "Enter" && b.preventDefault();
|
|
1687
1687
|
}),
|
|
1688
|
-
onClick:
|
|
1688
|
+
onClick: V(o, (b) => {
|
|
1689
1689
|
p((w) => _1(w) ? !0 : !w), k && g && (v.current = b.isPropagationStopped(), v.current || b.stopPropagation());
|
|
1690
1690
|
})
|
|
1691
1691
|
}
|
|
@@ -1719,7 +1719,7 @@ var _2 = a.forwardRef(
|
|
|
1719
1719
|
name: r,
|
|
1720
1720
|
form: f,
|
|
1721
1721
|
value: u,
|
|
1722
|
-
internal_do_not_use_render: ({ isFormControl: v }) => /* @__PURE__ */
|
|
1722
|
+
internal_do_not_use_render: ({ isFormControl: v }) => /* @__PURE__ */ j(T, { children: [
|
|
1723
1723
|
/* @__PURE__ */ n(
|
|
1724
1724
|
dr,
|
|
1725
1725
|
{
|
|
@@ -1830,7 +1830,7 @@ function _1(e) {
|
|
|
1830
1830
|
function vr(e) {
|
|
1831
1831
|
return _1(e) ? "indeterminate" : e ? "checked" : "unchecked";
|
|
1832
1832
|
}
|
|
1833
|
-
const I3 = ["top", "right", "bottom", "left"], F1 = Math.min, m1 = Math.max, ct = Math.round, We = Math.floor,
|
|
1833
|
+
const I3 = ["top", "right", "bottom", "left"], F1 = Math.min, m1 = Math.max, ct = Math.round, We = Math.floor, A1 = (e) => ({
|
|
1834
1834
|
x: e,
|
|
1835
1835
|
y: e
|
|
1836
1836
|
}), x3 = {
|
|
@@ -1857,12 +1857,12 @@ function Z2(e) {
|
|
|
1857
1857
|
function F2(e) {
|
|
1858
1858
|
return e === "y" ? "height" : "width";
|
|
1859
1859
|
}
|
|
1860
|
-
function
|
|
1860
|
+
function V1(e) {
|
|
1861
1861
|
const t = e[0];
|
|
1862
1862
|
return t === "t" || t === "b" ? "y" : "x";
|
|
1863
1863
|
}
|
|
1864
1864
|
function B2(e) {
|
|
1865
|
-
return Z2(
|
|
1865
|
+
return Z2(V1(e));
|
|
1866
1866
|
}
|
|
1867
1867
|
function S3(e, t, o) {
|
|
1868
1868
|
o === void 0 && (o = !1);
|
|
@@ -1877,22 +1877,22 @@ function H3(e) {
|
|
|
1877
1877
|
function p2(e) {
|
|
1878
1878
|
return e.includes("start") ? e.replace("start", "end") : e.replace("end", "start");
|
|
1879
1879
|
}
|
|
1880
|
-
const Do = ["left", "right"], $o = ["right", "left"],
|
|
1881
|
-
function
|
|
1880
|
+
const Do = ["left", "right"], $o = ["right", "left"], j3 = ["top", "bottom"], V3 = ["bottom", "top"];
|
|
1881
|
+
function A3(e, t, o) {
|
|
1882
1882
|
switch (e) {
|
|
1883
1883
|
case "top":
|
|
1884
1884
|
case "bottom":
|
|
1885
1885
|
return o ? t ? $o : Do : t ? Do : $o;
|
|
1886
1886
|
case "left":
|
|
1887
1887
|
case "right":
|
|
1888
|
-
return t ?
|
|
1888
|
+
return t ? j3 : V3;
|
|
1889
1889
|
default:
|
|
1890
1890
|
return [];
|
|
1891
1891
|
}
|
|
1892
1892
|
}
|
|
1893
1893
|
function z3(e, t, o, r) {
|
|
1894
1894
|
const s = me(e);
|
|
1895
|
-
let c =
|
|
1895
|
+
let c = A3(T1(e), o === "start", r);
|
|
1896
1896
|
return s && (c = c.map((i) => i + "-" + s), t && (c = c.concat(c.map(p2)))), c;
|
|
1897
1897
|
}
|
|
1898
1898
|
function at(e) {
|
|
@@ -1939,7 +1939,7 @@ function _o(e, t, o) {
|
|
|
1939
1939
|
reference: r,
|
|
1940
1940
|
floating: s
|
|
1941
1941
|
} = e;
|
|
1942
|
-
const c =
|
|
1942
|
+
const c = V1(t), i = B2(t), l = F2(i), u = T1(t), h = c === "y", f = r.x + r.width / 2 - s.width / 2, p = r.y + r.height / 2 - s.height / 2, v = r[l] / 2 - s[l] / 2;
|
|
1943
1943
|
let g;
|
|
1944
1944
|
switch (u) {
|
|
1945
1945
|
case "top":
|
|
@@ -2115,7 +2115,7 @@ const E3 = 50, T3 = async (e, t, o) => {
|
|
|
2115
2115
|
}, g = B2(s), k = F2(g), m = await i.getDimensions(h), C = g === "y", b = C ? "top" : "left", w = C ? "bottom" : "right", M = C ? "clientHeight" : "clientWidth", y = c.reference[k] + c.reference[g] - v[g] - c.floating[k], x = v[g] - c.reference[g], H = await (i.getOffsetParent == null ? void 0 : i.getOffsetParent(h));
|
|
2116
2116
|
let S = H ? H[M] : 0;
|
|
2117
2117
|
(!S || !await (i.isElement == null ? void 0 : i.isElement(H))) && (S = l.floating[M] || c.floating[k]);
|
|
2118
|
-
const I = y / 2 - x / 2,
|
|
2118
|
+
const I = y / 2 - x / 2, A = S / 2 - m[k] / 2 - 1, O = F1(p[b], A), F = F1(p[w], A), U = O, G = S - m[k] - F, L = S / 2 - m[k] / 2 + I, W = f2(U, L, G), z = !u.arrow && me(s) != null && L !== W && c.reference[k] / 2 - (L < U ? O : F) - m[k] / 2 < 0, q = z ? L < U ? L - U : L - G : 0;
|
|
2119
2119
|
return {
|
|
2120
2120
|
[g]: v[g] + q,
|
|
2121
2121
|
data: {
|
|
@@ -2152,23 +2152,23 @@ const E3 = 50, T3 = async (e, t, o) => {
|
|
|
2152
2152
|
} = E1(e, t);
|
|
2153
2153
|
if ((o = c.arrow) != null && o.alignmentOffset)
|
|
2154
2154
|
return {};
|
|
2155
|
-
const b = T1(s), w =
|
|
2155
|
+
const b = T1(s), w = V1(l), M = T1(l) === l, y = await (u.isRTL == null ? void 0 : u.isRTL(h.floating)), x = v || (M || !m ? [at(l)] : H3(l)), H = k !== "none";
|
|
2156
2156
|
!v && H && x.push(...z3(l, m, k, y));
|
|
2157
|
-
const S = [l, ...x], I = await u.detectOverflow(t, C),
|
|
2157
|
+
const S = [l, ...x], I = await u.detectOverflow(t, C), A = [];
|
|
2158
2158
|
let O = ((r = c.flip) == null ? void 0 : r.overflows) || [];
|
|
2159
|
-
if (f &&
|
|
2159
|
+
if (f && A.push(I[b]), p) {
|
|
2160
2160
|
const L = S3(s, i, y);
|
|
2161
|
-
|
|
2161
|
+
A.push(I[L[0]], I[L[1]]);
|
|
2162
2162
|
}
|
|
2163
2163
|
if (O = [...O, {
|
|
2164
2164
|
placement: s,
|
|
2165
|
-
overflows:
|
|
2166
|
-
}], !
|
|
2165
|
+
overflows: A
|
|
2166
|
+
}], !A.every((L) => L <= 0)) {
|
|
2167
2167
|
var F, U;
|
|
2168
2168
|
const L = (((F = c.flip) == null ? void 0 : F.index) || 0) + 1, W = S[L];
|
|
2169
|
-
if (W && (!(p === "alignment" ? w !==
|
|
2169
|
+
if (W && (!(p === "alignment" ? w !== V1(W) : !1) || // We leave the current main axis only if every placement on that axis
|
|
2170
2170
|
// overflows the main axis.
|
|
2171
|
-
O.every(($) =>
|
|
2171
|
+
O.every(($) => V1($.placement) === w ? $.overflows[0] > 0 : !0)))
|
|
2172
2172
|
return {
|
|
2173
2173
|
data: {
|
|
2174
2174
|
index: L,
|
|
@@ -2185,7 +2185,7 @@ const E3 = 50, T3 = async (e, t, o) => {
|
|
|
2185
2185
|
var G;
|
|
2186
2186
|
const q = (G = O.filter(($) => {
|
|
2187
2187
|
if (H) {
|
|
2188
|
-
const R =
|
|
2188
|
+
const R = V1($.placement);
|
|
2189
2189
|
return R === w || // Create a bias to the `y` side axis due to horizontal
|
|
2190
2190
|
// reading directions favoring greater width.
|
|
2191
2191
|
R === "y";
|
|
@@ -2269,7 +2269,7 @@ async function D3(e, t) {
|
|
|
2269
2269
|
placement: o,
|
|
2270
2270
|
platform: r,
|
|
2271
2271
|
elements: s
|
|
2272
|
-
} = e, c = await (r.isRTL == null ? void 0 : r.isRTL(s.floating)), i = T1(o), l = me(o), u =
|
|
2272
|
+
} = e, c = await (r.isRTL == null ? void 0 : r.isRTL(s.floating)), i = T1(o), l = me(o), u = V1(o) === "y", h = gr.has(i) ? -1 : 1, f = c && u ? -1 : 1, p = E1(t, e);
|
|
2273
2273
|
let {
|
|
2274
2274
|
mainAxis: v,
|
|
2275
2275
|
crossAxis: g,
|
|
@@ -2342,7 +2342,7 @@ const $3 = function(e) {
|
|
|
2342
2342
|
} = E1(e, t), f = {
|
|
2343
2343
|
x: o,
|
|
2344
2344
|
y: r
|
|
2345
|
-
}, p = await c.detectOverflow(t, h), v =
|
|
2345
|
+
}, p = await c.detectOverflow(t, h), v = V1(T1(s)), g = Z2(v);
|
|
2346
2346
|
let k = f[g], m = f[v];
|
|
2347
2347
|
if (i) {
|
|
2348
2348
|
const b = g === "y" ? "top" : "left", w = g === "y" ? "bottom" : "right", M = k + p[b], y = k - p[w];
|
|
@@ -2387,7 +2387,7 @@ const $3 = function(e) {
|
|
|
2387
2387
|
} = E1(e, t), f = {
|
|
2388
2388
|
x: o,
|
|
2389
2389
|
y: r
|
|
2390
|
-
}, p =
|
|
2390
|
+
}, p = V1(s), v = Z2(p);
|
|
2391
2391
|
let g = f[v], k = f[p];
|
|
2392
2392
|
const m = E1(l, t), C = typeof m == "number" ? {
|
|
2393
2393
|
mainAxis: m,
|
|
@@ -2427,7 +2427,7 @@ const $3 = function(e) {
|
|
|
2427
2427
|
apply: u = () => {
|
|
2428
2428
|
},
|
|
2429
2429
|
...h
|
|
2430
|
-
} = E1(e, t), f = await i.detectOverflow(t, h), p = T1(s), v = me(s), g =
|
|
2430
|
+
} = E1(e, t), f = await i.detectOverflow(t, h), p = T1(s), v = me(s), g = V1(s) === "y", {
|
|
2431
2431
|
width: k,
|
|
2432
2432
|
height: m
|
|
2433
2433
|
} = c.floating;
|
|
@@ -2444,8 +2444,8 @@ const $3 = function(e) {
|
|
|
2444
2444
|
availableWidth: I,
|
|
2445
2445
|
availableHeight: S
|
|
2446
2446
|
});
|
|
2447
|
-
const
|
|
2448
|
-
return k !==
|
|
2447
|
+
const A = await i.getDimensions(l.floating);
|
|
2448
|
+
return k !== A.width || m !== A.height ? {
|
|
2449
2449
|
reset: {
|
|
2450
2450
|
rects: !0
|
|
2451
2451
|
}
|
|
@@ -2529,7 +2529,7 @@ function ue(e) {
|
|
|
2529
2529
|
function S1(e) {
|
|
2530
2530
|
return C1(e).getComputedStyle(e);
|
|
2531
2531
|
}
|
|
2532
|
-
function
|
|
2532
|
+
function jt(e) {
|
|
2533
2533
|
return x1(e) ? {
|
|
2534
2534
|
scrollLeft: e.scrollLeft,
|
|
2535
2535
|
scrollTop: e.scrollTop
|
|
@@ -2583,7 +2583,7 @@ function W2(e) {
|
|
|
2583
2583
|
function de(e) {
|
|
2584
2584
|
const t = W2(e);
|
|
2585
2585
|
if (!P1(t))
|
|
2586
|
-
return
|
|
2586
|
+
return A1(1);
|
|
2587
2587
|
const o = t.getBoundingClientRect(), {
|
|
2588
2588
|
width: r,
|
|
2589
2589
|
height: s,
|
|
@@ -2595,7 +2595,7 @@ function de(e) {
|
|
|
2595
2595
|
y: l
|
|
2596
2596
|
};
|
|
2597
2597
|
}
|
|
2598
|
-
const G3 = /* @__PURE__ */
|
|
2598
|
+
const G3 = /* @__PURE__ */ A1(0);
|
|
2599
2599
|
function wr(e) {
|
|
2600
2600
|
const t = C1(e);
|
|
2601
2601
|
return !U2() || !t.visualViewport ? G3 : {
|
|
@@ -2609,9 +2609,9 @@ function K3(e, t, o) {
|
|
|
2609
2609
|
function ee(e, t, o, r) {
|
|
2610
2610
|
t === void 0 && (t = !1), o === void 0 && (o = !1);
|
|
2611
2611
|
const s = e.getBoundingClientRect(), c = W2(e);
|
|
2612
|
-
let i =
|
|
2612
|
+
let i = A1(1);
|
|
2613
2613
|
t && (r ? x1(r) && (i = de(r)) : i = de(e));
|
|
2614
|
-
const l = K3(c, o, r) ? wr(c) :
|
|
2614
|
+
const l = K3(c, o, r) ? wr(c) : A1(0);
|
|
2615
2615
|
let u = (s.left + l.x) / i.x, h = (s.top + l.y) / i.y, f = s.width / i.x, p = s.height / i.y;
|
|
2616
2616
|
if (c) {
|
|
2617
2617
|
const v = C1(c), g = r && x1(r) ? C1(r) : r;
|
|
@@ -2628,12 +2628,12 @@ function ee(e, t, o, r) {
|
|
|
2628
2628
|
y: h
|
|
2629
2629
|
});
|
|
2630
2630
|
}
|
|
2631
|
-
function
|
|
2632
|
-
const o =
|
|
2631
|
+
function Vt(e, t) {
|
|
2632
|
+
const o = jt(e).scrollLeft;
|
|
2633
2633
|
return t ? t.left + o : ee(z1(e)).left + o;
|
|
2634
2634
|
}
|
|
2635
2635
|
function Mr(e, t) {
|
|
2636
|
-
const o = e.getBoundingClientRect(), r = o.left + t.scrollLeft -
|
|
2636
|
+
const o = e.getBoundingClientRect(), r = o.left + t.scrollLeft - Vt(e, o), s = o.top + t.scrollTop;
|
|
2637
2637
|
return {
|
|
2638
2638
|
x: r,
|
|
2639
2639
|
y: s
|
|
@@ -2652,13 +2652,13 @@ function X3(e) {
|
|
|
2652
2652
|
let u = {
|
|
2653
2653
|
scrollLeft: 0,
|
|
2654
2654
|
scrollTop: 0
|
|
2655
|
-
}, h =
|
|
2656
|
-
const f =
|
|
2657
|
-
if ((p || !p && !c) && ((ge(r) !== "body" || Le(i)) && (u =
|
|
2655
|
+
}, h = A1(1);
|
|
2656
|
+
const f = A1(0), p = P1(r);
|
|
2657
|
+
if ((p || !p && !c) && ((ge(r) !== "body" || Le(i)) && (u = jt(r)), p)) {
|
|
2658
2658
|
const g = ee(r);
|
|
2659
2659
|
h = de(r), f.x = g.x + r.clientLeft, f.y = g.y + r.clientTop;
|
|
2660
2660
|
}
|
|
2661
|
-
const v = i && !p && !c ? Mr(i, u) :
|
|
2661
|
+
const v = i && !p && !c ? Mr(i, u) : A1(0);
|
|
2662
2662
|
return {
|
|
2663
2663
|
width: o.width * h.x,
|
|
2664
2664
|
height: o.height * h.y,
|
|
@@ -2670,8 +2670,8 @@ function Y3(e) {
|
|
|
2670
2670
|
return Array.from(e.getClientRects());
|
|
2671
2671
|
}
|
|
2672
2672
|
function Q3(e) {
|
|
2673
|
-
const t = z1(e), o =
|
|
2674
|
-
let i = -o.scrollLeft +
|
|
2673
|
+
const t = z1(e), o = jt(e), r = e.ownerDocument.body, s = m1(t.scrollWidth, t.clientWidth, r.scrollWidth, r.clientWidth), c = m1(t.scrollHeight, t.clientHeight, r.scrollHeight, r.clientHeight);
|
|
2674
|
+
let i = -o.scrollLeft + Vt(e);
|
|
2675
2675
|
const l = -o.scrollTop;
|
|
2676
2676
|
return S1(r).direction === "rtl" && (i += m1(t.clientWidth, r.clientWidth) - s), {
|
|
2677
2677
|
width: s,
|
|
@@ -2689,7 +2689,7 @@ function J3(e, t) {
|
|
|
2689
2689
|
const f = U2();
|
|
2690
2690
|
(!f || f && t === "fixed") && (l = s.offsetLeft, u = s.offsetTop);
|
|
2691
2691
|
}
|
|
2692
|
-
const h =
|
|
2692
|
+
const h = Vt(r);
|
|
2693
2693
|
if (h <= 0) {
|
|
2694
2694
|
const f = r.ownerDocument, p = f.body, v = getComputedStyle(p), g = f.compatMode === "CSS1Compat" && parseFloat(v.marginLeft) + parseFloat(v.marginRight) || 0, k = Math.abs(r.clientWidth - p.clientWidth - g);
|
|
2695
2695
|
k <= qo && (c -= k);
|
|
@@ -2702,7 +2702,7 @@ function J3(e, t) {
|
|
|
2702
2702
|
};
|
|
2703
2703
|
}
|
|
2704
2704
|
function el(e, t) {
|
|
2705
|
-
const o = ee(e, !0, t === "fixed"), r = o.top + e.clientTop, s = o.left + e.clientLeft, c = P1(e) ? de(e) :
|
|
2705
|
+
const o = ee(e, !0, t === "fixed"), r = o.top + e.clientTop, s = o.left + e.clientLeft, c = P1(e) ? de(e) : A1(1), i = e.clientWidth * c.x, l = e.clientHeight * c.y, u = s * c.x, h = r * c.y;
|
|
2706
2706
|
return {
|
|
2707
2707
|
width: i,
|
|
2708
2708
|
height: l,
|
|
@@ -2782,17 +2782,17 @@ function rl(e, t, o) {
|
|
|
2782
2782
|
scrollLeft: 0,
|
|
2783
2783
|
scrollTop: 0
|
|
2784
2784
|
};
|
|
2785
|
-
const u =
|
|
2785
|
+
const u = A1(0);
|
|
2786
2786
|
function h() {
|
|
2787
|
-
u.x =
|
|
2787
|
+
u.x = Vt(s);
|
|
2788
2788
|
}
|
|
2789
2789
|
if (r || !r && !c)
|
|
2790
|
-
if ((ge(t) !== "body" || Le(s)) && (l =
|
|
2790
|
+
if ((ge(t) !== "body" || Le(s)) && (l = jt(t)), r) {
|
|
2791
2791
|
const g = ee(t, !0, c, t);
|
|
2792
2792
|
u.x = g.x + t.clientLeft, u.y = g.y + t.clientTop;
|
|
2793
2793
|
} else s && h();
|
|
2794
2794
|
c && !r && s && h();
|
|
2795
|
-
const f = s && !r && !c ? Mr(s, l) :
|
|
2795
|
+
const f = s && !r && !c ? Mr(s, l) : A1(0), p = i.left + l.scrollLeft - u.x - f.x, v = i.top + l.scrollTop - u.y - f.y;
|
|
2796
2796
|
return {
|
|
2797
2797
|
x: p,
|
|
2798
2798
|
y: v,
|
|
@@ -3026,7 +3026,7 @@ function kl(e) {
|
|
|
3026
3026
|
$ !== H.current && (H.current = $, m($));
|
|
3027
3027
|
}, []), M = a.useCallback(($) => {
|
|
3028
3028
|
$ !== S.current && (S.current = $, b($));
|
|
3029
|
-
}, []), y = c || k, x = i || C, H = a.useRef(null), S = a.useRef(null), I = a.useRef(f),
|
|
3029
|
+
}, []), y = c || k, x = i || C, H = a.useRef(null), S = a.useRef(null), I = a.useRef(f), A = u != null, O = s2(u), F = s2(s), U = s2(h), G = a.useCallback(() => {
|
|
3030
3030
|
if (!H.current || !S.current)
|
|
3031
3031
|
return;
|
|
3032
3032
|
const $ = {
|
|
@@ -3043,7 +3043,7 @@ function kl(e) {
|
|
|
3043
3043
|
// setting it to `true` when `open === false` (must be specified).
|
|
3044
3044
|
isPositioned: U.current !== !1
|
|
3045
3045
|
};
|
|
3046
|
-
L.current && !lt(I.current, E) && (I.current = E,
|
|
3046
|
+
L.current && !lt(I.current, E) && (I.current = E, je.flushSync(() => {
|
|
3047
3047
|
p(E);
|
|
3048
3048
|
}));
|
|
3049
3049
|
});
|
|
@@ -3063,7 +3063,7 @@ function kl(e) {
|
|
|
3063
3063
|
return O.current(y, x, G);
|
|
3064
3064
|
G();
|
|
3065
3065
|
}
|
|
3066
|
-
}, [y, x, G, O,
|
|
3066
|
+
}, [y, x, G, O, A]);
|
|
3067
3067
|
const W = a.useMemo(() => ({
|
|
3068
3068
|
reference: H,
|
|
3069
3069
|
floating: S,
|
|
@@ -3168,7 +3168,7 @@ const bl = (e) => {
|
|
|
3168
3168
|
options: [e, t]
|
|
3169
3169
|
};
|
|
3170
3170
|
};
|
|
3171
|
-
var
|
|
3171
|
+
var jl = "Arrow", Hr = a.forwardRef((e, t) => {
|
|
3172
3172
|
const { children: o, width: r = 10, height: s = 5, ...c } = e;
|
|
3173
3173
|
return /* @__PURE__ */ n(
|
|
3174
3174
|
B.svg,
|
|
@@ -3183,15 +3183,15 @@ var Vl = "Arrow", Hr = a.forwardRef((e, t) => {
|
|
|
3183
3183
|
}
|
|
3184
3184
|
);
|
|
3185
3185
|
});
|
|
3186
|
-
Hr.displayName =
|
|
3187
|
-
var
|
|
3186
|
+
Hr.displayName = jl;
|
|
3187
|
+
var Vl = Hr, G2 = "Popper", [jr, q1] = v1(G2), [Al, Vr] = jr(G2), Ar = (e) => {
|
|
3188
3188
|
const { __scopePopper: t, children: o } = e, [r, s] = a.useState(null);
|
|
3189
|
-
return /* @__PURE__ */ n(
|
|
3189
|
+
return /* @__PURE__ */ n(Al, { scope: t, anchor: r, onAnchorChange: s, children: o });
|
|
3190
3190
|
};
|
|
3191
|
-
|
|
3191
|
+
Ar.displayName = G2;
|
|
3192
3192
|
var zr = "PopperAnchor", Lr = a.forwardRef(
|
|
3193
3193
|
(e, t) => {
|
|
3194
|
-
const { __scopePopper: o, virtualRef: r, ...s } = e, c =
|
|
3194
|
+
const { __scopePopper: o, virtualRef: r, ...s } = e, c = Vr(zr, o), i = a.useRef(null), l = K(t, i), u = a.useRef(null);
|
|
3195
3195
|
return a.useEffect(() => {
|
|
3196
3196
|
const h = u.current;
|
|
3197
3197
|
u.current = r?.current || i.current, h !== u.current && c.onAnchorChange(u.current);
|
|
@@ -3199,7 +3199,7 @@ var zr = "PopperAnchor", Lr = a.forwardRef(
|
|
|
3199
3199
|
}
|
|
3200
3200
|
);
|
|
3201
3201
|
Lr.displayName = zr;
|
|
3202
|
-
var K2 = "PopperContent", [zl, Ll] =
|
|
3202
|
+
var K2 = "PopperContent", [zl, Ll] = jr(K2), Rr = a.forwardRef(
|
|
3203
3203
|
(e, t) => {
|
|
3204
3204
|
const {
|
|
3205
3205
|
__scopePopper: o,
|
|
@@ -3216,7 +3216,7 @@ var K2 = "PopperContent", [zl, Ll] = Vr(K2), Rr = a.forwardRef(
|
|
|
3216
3216
|
updatePositionStrategy: g = "optimized",
|
|
3217
3217
|
onPlaced: k,
|
|
3218
3218
|
...m
|
|
3219
|
-
} = e, C =
|
|
3219
|
+
} = e, C = Vr(K2, o), [b, w] = a.useState(null), M = K(t, (N) => w(N)), [y, x] = a.useState(null), H = D2(y), S = H?.width ?? 0, I = H?.height ?? 0, A = r + (c !== "center" ? "-" + c : ""), O = typeof f == "number" ? f : { top: 0, right: 0, bottom: 0, left: 0, ...f }, F = Array.isArray(h) ? h : [h], U = F.length > 0, G = {
|
|
3220
3220
|
padding: O,
|
|
3221
3221
|
boundary: F.filter(El),
|
|
3222
3222
|
// with `strategy: 'fixed'`, this is the only way to get it to respect boundaries
|
|
@@ -3224,7 +3224,7 @@ var K2 = "PopperContent", [zl, Ll] = Vr(K2), Rr = a.forwardRef(
|
|
|
3224
3224
|
}, { refs: L, floatingStyles: W, placement: z, isPositioned: q, middlewareData: $ } = kl({
|
|
3225
3225
|
// default to `fixed` strategy so users don't have to pick and we also avoid focus scroll issues
|
|
3226
3226
|
strategy: "fixed",
|
|
3227
|
-
placement:
|
|
3227
|
+
placement: A,
|
|
3228
3228
|
whileElementsMounted: (...N) => ll(...N, {
|
|
3229
3229
|
animationFrame: g === "always"
|
|
3230
3230
|
}),
|
|
@@ -3348,7 +3348,7 @@ var Er = "PopperArrow", Rl = {
|
|
|
3348
3348
|
visibility: c.shouldHideArrow ? "hidden" : void 0
|
|
3349
3349
|
},
|
|
3350
3350
|
children: /* @__PURE__ */ n(
|
|
3351
|
-
|
|
3351
|
+
Vl,
|
|
3352
3352
|
{
|
|
3353
3353
|
...s,
|
|
3354
3354
|
ref: o,
|
|
@@ -3380,7 +3380,7 @@ function Pr(e) {
|
|
|
3380
3380
|
const [t, o = "center"] = e.split("-");
|
|
3381
3381
|
return [t, o];
|
|
3382
3382
|
}
|
|
3383
|
-
var Re =
|
|
3383
|
+
var Re = Ar, Ee = Lr, At = Rr, zt = Tr, c2 = "rovingFocusGroup.onEntryFocus", Pl = { bubbles: !1, cancelable: !0 }, Te = "RovingFocusGroup", [m2, Nr, Nl] = bt(Te), [Ol, Or] = v1(
|
|
3384
3384
|
Te,
|
|
3385
3385
|
[Nl]
|
|
3386
3386
|
), [Dl, $l] = Ol(Te), Dr = a.forwardRef(
|
|
@@ -3399,7 +3399,7 @@ var _l = a.forwardRef((e, t) => {
|
|
|
3399
3399
|
onEntryFocus: h,
|
|
3400
3400
|
preventScrollOnEntryFocus: f = !1,
|
|
3401
3401
|
...p
|
|
3402
|
-
} = e, v = a.useRef(null), g = K(t, v), k =
|
|
3402
|
+
} = e, v = a.useRef(null), g = K(t, v), k = Ve(c), [m, C] = I1({
|
|
3403
3403
|
prop: i,
|
|
3404
3404
|
defaultProp: l ?? null,
|
|
3405
3405
|
onChange: u,
|
|
@@ -3438,12 +3438,12 @@ var _l = a.forwardRef((e, t) => {
|
|
|
3438
3438
|
...p,
|
|
3439
3439
|
ref: g,
|
|
3440
3440
|
style: { outline: "none", ...e.style },
|
|
3441
|
-
onMouseDown:
|
|
3441
|
+
onMouseDown: V(e.onMouseDown, () => {
|
|
3442
3442
|
x.current = !0;
|
|
3443
3443
|
}),
|
|
3444
|
-
onFocus:
|
|
3445
|
-
const
|
|
3446
|
-
if (I.target === I.currentTarget &&
|
|
3444
|
+
onFocus: V(e.onFocus, (I) => {
|
|
3445
|
+
const A = !x.current;
|
|
3446
|
+
if (I.target === I.currentTarget && A && !b) {
|
|
3447
3447
|
const O = new CustomEvent(c2, Pl);
|
|
3448
3448
|
if (I.currentTarget.dispatchEvent(O), !O.defaultPrevented) {
|
|
3449
3449
|
const F = y().filter((z) => z.focusable), U = F.find((z) => z.active), G = F.find((z) => z.id === m), W = [U, G, ...F].filter(
|
|
@@ -3454,7 +3454,7 @@ var _l = a.forwardRef((e, t) => {
|
|
|
3454
3454
|
}
|
|
3455
3455
|
x.current = !1;
|
|
3456
3456
|
}),
|
|
3457
|
-
onBlur:
|
|
3457
|
+
onBlur: V(e.onBlur, () => w(!1))
|
|
3458
3458
|
}
|
|
3459
3459
|
)
|
|
3460
3460
|
}
|
|
@@ -3486,11 +3486,11 @@ var _l = a.forwardRef((e, t) => {
|
|
|
3486
3486
|
"data-orientation": f.orientation,
|
|
3487
3487
|
...l,
|
|
3488
3488
|
ref: t,
|
|
3489
|
-
onMouseDown:
|
|
3489
|
+
onMouseDown: V(e.onMouseDown, (C) => {
|
|
3490
3490
|
r ? f.onItemFocus(h) : C.preventDefault();
|
|
3491
3491
|
}),
|
|
3492
|
-
onFocus:
|
|
3493
|
-
onKeyDown:
|
|
3492
|
+
onFocus: V(e.onFocus, () => f.onItemFocus(h)),
|
|
3493
|
+
onKeyDown: V(e.onKeyDown, (C) => {
|
|
3494
3494
|
if (C.key === "Tab" && C.shiftKey) {
|
|
3495
3495
|
f.onItemShiftTab();
|
|
3496
3496
|
return;
|
|
@@ -3555,7 +3555,7 @@ var Ul = Dr, Wl = _r, g2 = ["Enter", " "], Gl = ["ArrowDown", "PageUp", "Home"],
|
|
|
3555
3555
|
q1,
|
|
3556
3556
|
Or
|
|
3557
3557
|
]), Ne = q1(), qr = Or(), [Ur, U1] = re(Pe), [e4, Oe] = re(Pe), Wr = (e) => {
|
|
3558
|
-
const { __scopeMenu: t, open: o = !1, children: r, dir: s, onOpenChange: c, modal: i = !0 } = e, l = Ne(t), [u, h] = a.useState(null), f = a.useRef(!1), p = s1(c), v =
|
|
3558
|
+
const { __scopeMenu: t, open: o = !1, children: r, dir: s, onOpenChange: c, modal: i = !0 } = e, l = Ne(t), [u, h] = a.useState(null), f = a.useRef(!1), p = s1(c), v = Ve(s);
|
|
3559
3559
|
return a.useEffect(() => {
|
|
3560
3560
|
const g = () => {
|
|
3561
3561
|
f.current = !0, document.addEventListener("pointerdown", k, { capture: !0, once: !0 }), document.addEventListener("pointermove", k, { capture: !0, once: !0 });
|
|
@@ -3619,7 +3619,7 @@ var b1 = "MenuContent", [n4, Q2] = re(b1), Xr = a.forwardRef(
|
|
|
3619
3619
|
trapFocus: o.open,
|
|
3620
3620
|
disableOutsidePointerEvents: o.open,
|
|
3621
3621
|
disableOutsideScroll: !0,
|
|
3622
|
-
onFocusOutside:
|
|
3622
|
+
onFocusOutside: V(
|
|
3623
3623
|
e.onFocusOutside,
|
|
3624
3624
|
(c) => c.preventDefault(),
|
|
3625
3625
|
{ checkForDefaultPrevented: !1 }
|
|
@@ -3658,13 +3658,13 @@ var b1 = "MenuContent", [n4, Q2] = re(b1), Xr = a.forwardRef(
|
|
|
3658
3658
|
onDismiss: g,
|
|
3659
3659
|
disableOutsideScroll: k,
|
|
3660
3660
|
...m
|
|
3661
|
-
} = e, C = U1(b1, o), b = Oe(b1, o), w = Ne(o), M = qr(o), y = Ql(o), [x, H] = a.useState(null), S = a.useRef(null), I = K(t, S, C.onContentChange),
|
|
3661
|
+
} = e, C = U1(b1, o), b = Oe(b1, o), w = Ne(o), M = qr(o), y = Ql(o), [x, H] = a.useState(null), S = a.useRef(null), I = K(t, S, C.onContentChange), A = a.useRef(0), O = a.useRef(""), F = a.useRef(0), U = a.useRef(null), G = a.useRef("right"), L = a.useRef(0), W = k ? ze : a.Fragment, z = k ? { as: c4, allowPinchZoom: !0 } : void 0, q = (R) => {
|
|
3662
3662
|
const E = O.current + R, a1 = y().filter((N) => !N.disabled), l1 = document.activeElement, D = a1.find((N) => N.ref.current === l1)?.textValue, Y = a1.map((N) => N.textValue), e1 = C4(Y, E, D), Q = a1.find((N) => N.textValue === e1)?.ref.current;
|
|
3663
3663
|
(function N(o1) {
|
|
3664
|
-
O.current = o1, window.clearTimeout(
|
|
3664
|
+
O.current = o1, window.clearTimeout(A.current), o1 !== "" && (A.current = window.setTimeout(() => N(""), 1e3));
|
|
3665
3665
|
})(E), Q && setTimeout(() => Q.focus());
|
|
3666
3666
|
};
|
|
3667
|
-
a.useEffect(() => () => window.clearTimeout(
|
|
3667
|
+
a.useEffect(() => () => window.clearTimeout(A.current), []), wt();
|
|
3668
3668
|
const $ = a.useCallback((R) => G.current === U.current?.side && b4(R, U.current?.area), []);
|
|
3669
3669
|
return /* @__PURE__ */ n(
|
|
3670
3670
|
n4,
|
|
@@ -3694,11 +3694,11 @@ var b1 = "MenuContent", [n4, Q2] = re(b1), Xr = a.forwardRef(
|
|
|
3694
3694
|
U.current = R;
|
|
3695
3695
|
}, []),
|
|
3696
3696
|
children: /* @__PURE__ */ n(W, { ...z, children: /* @__PURE__ */ n(
|
|
3697
|
-
|
|
3697
|
+
Ae,
|
|
3698
3698
|
{
|
|
3699
3699
|
asChild: !0,
|
|
3700
3700
|
trapped: s,
|
|
3701
|
-
onMountAutoFocus:
|
|
3701
|
+
onMountAutoFocus: V(c, (R) => {
|
|
3702
3702
|
R.preventDefault(), S.current?.focus({ preventScroll: !0 });
|
|
3703
3703
|
}),
|
|
3704
3704
|
onUnmountAutoFocus: i,
|
|
@@ -3722,12 +3722,12 @@ var b1 = "MenuContent", [n4, Q2] = re(b1), Xr = a.forwardRef(
|
|
|
3722
3722
|
loop: r,
|
|
3723
3723
|
currentTabStopId: x,
|
|
3724
3724
|
onCurrentTabStopIdChange: H,
|
|
3725
|
-
onEntryFocus:
|
|
3725
|
+
onEntryFocus: V(u, (R) => {
|
|
3726
3726
|
b.isUsingKeyboardRef.current || R.preventDefault();
|
|
3727
3727
|
}),
|
|
3728
3728
|
preventScrollOnEntryFocus: !0,
|
|
3729
3729
|
children: /* @__PURE__ */ n(
|
|
3730
|
-
|
|
3730
|
+
At,
|
|
3731
3731
|
{
|
|
3732
3732
|
role: "menu",
|
|
3733
3733
|
"aria-orientation": "vertical",
|
|
@@ -3738,7 +3738,7 @@ var b1 = "MenuContent", [n4, Q2] = re(b1), Xr = a.forwardRef(
|
|
|
3738
3738
|
...m,
|
|
3739
3739
|
ref: I,
|
|
3740
3740
|
style: { outline: "none", ...m.style },
|
|
3741
|
-
onKeyDown:
|
|
3741
|
+
onKeyDown: V(m.onKeyDown, (R) => {
|
|
3742
3742
|
const a1 = R.target.closest("[data-radix-menu-content]") === R.currentTarget, l1 = R.ctrlKey || R.altKey || R.metaKey, D = R.key.length === 1;
|
|
3743
3743
|
a1 && (R.key === "Tab" && R.preventDefault(), !l1 && D && q(R.key));
|
|
3744
3744
|
const Y = S.current;
|
|
@@ -3747,10 +3747,10 @@ var b1 = "MenuContent", [n4, Q2] = re(b1), Xr = a.forwardRef(
|
|
|
3747
3747
|
const Q = y().filter((N) => !N.disabled).map((N) => N.ref.current);
|
|
3748
3748
|
Fr.includes(R.key) && Q.reverse(), m4(Q);
|
|
3749
3749
|
}),
|
|
3750
|
-
onBlur:
|
|
3751
|
-
R.currentTarget.contains(R.target) || (window.clearTimeout(
|
|
3750
|
+
onBlur: V(e.onBlur, (R) => {
|
|
3751
|
+
R.currentTarget.contains(R.target) || (window.clearTimeout(A.current), O.current = "");
|
|
3752
3752
|
}),
|
|
3753
|
-
onPointerMove:
|
|
3753
|
+
onPointerMove: V(
|
|
3754
3754
|
e.onPointerMove,
|
|
3755
3755
|
Se((R) => {
|
|
3756
3756
|
const E = R.target, a1 = L.current !== R.clientX;
|
|
@@ -3802,14 +3802,14 @@ var dt = "MenuItem", Xo = "menu.itemSelect", Lt = a.forwardRef(
|
|
|
3802
3802
|
...s,
|
|
3803
3803
|
ref: u,
|
|
3804
3804
|
disabled: o,
|
|
3805
|
-
onClick:
|
|
3805
|
+
onClick: V(e.onClick, f),
|
|
3806
3806
|
onPointerDown: (p) => {
|
|
3807
3807
|
e.onPointerDown?.(p), h.current = !0;
|
|
3808
3808
|
},
|
|
3809
|
-
onPointerUp:
|
|
3809
|
+
onPointerUp: V(e.onPointerUp, (p) => {
|
|
3810
3810
|
h.current || p.currentTarget?.click();
|
|
3811
3811
|
}),
|
|
3812
|
-
onKeyDown:
|
|
3812
|
+
onKeyDown: V(e.onKeyDown, (p) => {
|
|
3813
3813
|
const v = l.searchRef.current !== "";
|
|
3814
3814
|
o || v && p.key === " " || g2.includes(p.key) && (p.currentTarget.click(), p.preventDefault());
|
|
3815
3815
|
})
|
|
@@ -3839,18 +3839,18 @@ var Qr = a.forwardRef(
|
|
|
3839
3839
|
"data-disabled": r ? "" : void 0,
|
|
3840
3840
|
...c,
|
|
3841
3841
|
ref: h,
|
|
3842
|
-
onPointerMove:
|
|
3842
|
+
onPointerMove: V(
|
|
3843
3843
|
e.onPointerMove,
|
|
3844
3844
|
Se((k) => {
|
|
3845
3845
|
r ? i.onItemLeave(k) : (i.onItemEnter(k), k.defaultPrevented || k.currentTarget.focus({ preventScroll: !0 }));
|
|
3846
3846
|
})
|
|
3847
3847
|
),
|
|
3848
|
-
onPointerLeave:
|
|
3848
|
+
onPointerLeave: V(
|
|
3849
3849
|
e.onPointerLeave,
|
|
3850
3850
|
Se((k) => i.onItemLeave(k))
|
|
3851
3851
|
),
|
|
3852
|
-
onFocus:
|
|
3853
|
-
onBlur:
|
|
3852
|
+
onFocus: V(e.onFocus, () => p(!0)),
|
|
3853
|
+
onBlur: V(e.onBlur, () => p(!1))
|
|
3854
3854
|
}
|
|
3855
3855
|
) })
|
|
3856
3856
|
}
|
|
@@ -3867,7 +3867,7 @@ var Qr = a.forwardRef(
|
|
|
3867
3867
|
...s,
|
|
3868
3868
|
ref: t,
|
|
3869
3869
|
"data-state": no(o),
|
|
3870
|
-
onSelect:
|
|
3870
|
+
onSelect: V(
|
|
3871
3871
|
s.onSelect,
|
|
3872
3872
|
() => r?.(ut(o) ? !0 : !o),
|
|
3873
3873
|
{ checkForDefaultPrevented: !1 }
|
|
@@ -3899,7 +3899,7 @@ var os = "MenuRadioItem", ns = a.forwardRef(
|
|
|
3899
3899
|
...r,
|
|
3900
3900
|
ref: t,
|
|
3901
3901
|
"data-state": no(c),
|
|
3902
|
-
onSelect:
|
|
3902
|
+
onSelect: V(
|
|
3903
3903
|
r.onSelect,
|
|
3904
3904
|
() => s.onValueChange?.(o),
|
|
3905
3905
|
{ checkForDefaultPrevented: !1 }
|
|
@@ -4002,7 +4002,7 @@ var be = "MenuSubTrigger", ds = a.forwardRef(
|
|
|
4002
4002
|
onClick: (p) => {
|
|
4003
4003
|
e.onClick?.(p), !(e.disabled || p.defaultPrevented) && (p.currentTarget.focus(), o.open || o.onOpenChange(!0));
|
|
4004
4004
|
},
|
|
4005
|
-
onPointerMove:
|
|
4005
|
+
onPointerMove: V(
|
|
4006
4006
|
e.onPointerMove,
|
|
4007
4007
|
Se((p) => {
|
|
4008
4008
|
c.onItemEnter(p), !p.defaultPrevented && !e.disabled && !o.open && !i.current && (c.onPointerGraceIntentChange(null), i.current = window.setTimeout(() => {
|
|
@@ -4010,7 +4010,7 @@ var be = "MenuSubTrigger", ds = a.forwardRef(
|
|
|
4010
4010
|
}, 100));
|
|
4011
4011
|
})
|
|
4012
4012
|
),
|
|
4013
|
-
onPointerLeave:
|
|
4013
|
+
onPointerLeave: V(
|
|
4014
4014
|
e.onPointerLeave,
|
|
4015
4015
|
Se((p) => {
|
|
4016
4016
|
f();
|
|
@@ -4038,7 +4038,7 @@ var be = "MenuSubTrigger", ds = a.forwardRef(
|
|
|
4038
4038
|
}
|
|
4039
4039
|
})
|
|
4040
4040
|
),
|
|
4041
|
-
onKeyDown:
|
|
4041
|
+
onKeyDown: V(e.onKeyDown, (p) => {
|
|
4042
4042
|
const v = c.searchRef.current !== "";
|
|
4043
4043
|
e.disabled || v && p.key === " " || Xl[r.dir].includes(p.key) && (o.onOpenChange(!0), o.content?.focus(), p.preventDefault());
|
|
4044
4044
|
})
|
|
@@ -4066,13 +4066,13 @@ var us = "MenuSubContent", hs = a.forwardRef(
|
|
|
4066
4066
|
i.isUsingKeyboardRef.current && u.current?.focus(), f.preventDefault();
|
|
4067
4067
|
},
|
|
4068
4068
|
onCloseAutoFocus: (f) => f.preventDefault(),
|
|
4069
|
-
onFocusOutside:
|
|
4069
|
+
onFocusOutside: V(e.onFocusOutside, (f) => {
|
|
4070
4070
|
f.target !== l.trigger && c.onOpenChange(!1);
|
|
4071
4071
|
}),
|
|
4072
|
-
onEscapeKeyDown:
|
|
4072
|
+
onEscapeKeyDown: V(e.onEscapeKeyDown, (f) => {
|
|
4073
4073
|
i.onClose(), f.preventDefault();
|
|
4074
4074
|
}),
|
|
4075
|
-
onKeyDown:
|
|
4075
|
+
onKeyDown: V(e.onKeyDown, (f) => {
|
|
4076
4076
|
const p = f.currentTarget.contains(f.target), v = Yl[i.dir].includes(f.key);
|
|
4077
4077
|
p && v && (c.onOpenChange(!1), l.trigger?.focus(), f.preventDefault());
|
|
4078
4078
|
})
|
|
@@ -4124,7 +4124,7 @@ function b4(e, t) {
|
|
|
4124
4124
|
function Se(e) {
|
|
4125
4125
|
return (t) => t.pointerType === "mouse" ? e(t) : void 0;
|
|
4126
4126
|
}
|
|
4127
|
-
var w4 = Wr, M4 = X2, y4 = Kr, I4 = Xr, x4 = eo, S4 = Yr, H4 = Lt,
|
|
4127
|
+
var w4 = Wr, M4 = X2, y4 = Kr, I4 = Xr, x4 = eo, S4 = Yr, H4 = Lt, j4 = Jr, V4 = ts, A4 = ns, z4 = ss, L4 = cs, R4 = as, E4 = ls, T4 = ds, P4 = hs, Rt = "DropdownMenu", [N4] = v1(
|
|
4128
4128
|
Rt,
|
|
4129
4129
|
[Br]
|
|
4130
4130
|
), p1 = Br(), [O4, ps] = N4(Rt), vs = (e) => {
|
|
@@ -4174,10 +4174,10 @@ var ms = "DropdownMenuTrigger", gs = a.forwardRef(
|
|
|
4174
4174
|
disabled: r,
|
|
4175
4175
|
...s,
|
|
4176
4176
|
ref: gt(t, c.triggerRef),
|
|
4177
|
-
onPointerDown:
|
|
4177
|
+
onPointerDown: V(e.onPointerDown, (l) => {
|
|
4178
4178
|
!r && l.button === 0 && l.ctrlKey === !1 && (c.onOpenToggle(), c.open || l.preventDefault());
|
|
4179
4179
|
}),
|
|
4180
|
-
onKeyDown:
|
|
4180
|
+
onKeyDown: V(e.onKeyDown, (l) => {
|
|
4181
4181
|
r || (["Enter", " "].includes(l.key) && c.onOpenToggle(), l.key === "ArrowDown" && c.onOpenChange(!0), ["Enter", " ", "ArrowDown"].includes(l.key) && l.preventDefault());
|
|
4182
4182
|
})
|
|
4183
4183
|
}
|
|
@@ -4201,10 +4201,10 @@ var ks = "DropdownMenuContent", bs = a.forwardRef(
|
|
|
4201
4201
|
...c,
|
|
4202
4202
|
...r,
|
|
4203
4203
|
ref: t,
|
|
4204
|
-
onCloseAutoFocus:
|
|
4204
|
+
onCloseAutoFocus: V(e.onCloseAutoFocus, (l) => {
|
|
4205
4205
|
i.current || s.triggerRef.current?.focus(), i.current = !1, l.preventDefault();
|
|
4206
4206
|
}),
|
|
4207
|
-
onInteractOutside:
|
|
4207
|
+
onInteractOutside: V(e.onInteractOutside, (l) => {
|
|
4208
4208
|
const u = l.detail.originalEvent, h = u.button === 0 && u.ctrlKey === !0, f = u.button === 2 || h;
|
|
4209
4209
|
(!s.modal || f) && (i.current = !0);
|
|
4210
4210
|
}),
|
|
@@ -4244,17 +4244,17 @@ var Z4 = "DropdownMenuItem", ys = a.forwardRef(
|
|
|
4244
4244
|
ys.displayName = Z4;
|
|
4245
4245
|
var F4 = "DropdownMenuCheckboxItem", Is = a.forwardRef((e, t) => {
|
|
4246
4246
|
const { __scopeDropdownMenu: o, ...r } = e, s = p1(o);
|
|
4247
|
-
return /* @__PURE__ */ n(
|
|
4247
|
+
return /* @__PURE__ */ n(j4, { ...s, ...r, ref: t });
|
|
4248
4248
|
});
|
|
4249
4249
|
Is.displayName = F4;
|
|
4250
4250
|
var B4 = "DropdownMenuRadioGroup", xs = a.forwardRef((e, t) => {
|
|
4251
4251
|
const { __scopeDropdownMenu: o, ...r } = e, s = p1(o);
|
|
4252
|
-
return /* @__PURE__ */ n(
|
|
4252
|
+
return /* @__PURE__ */ n(V4, { ...s, ...r, ref: t });
|
|
4253
4253
|
});
|
|
4254
4254
|
xs.displayName = B4;
|
|
4255
4255
|
var q4 = "DropdownMenuRadioItem", Ss = a.forwardRef((e, t) => {
|
|
4256
4256
|
const { __scopeDropdownMenu: o, ...r } = e, s = p1(o);
|
|
4257
|
-
return /* @__PURE__ */ n(
|
|
4257
|
+
return /* @__PURE__ */ n(A4, { ...s, ...r, ref: t });
|
|
4258
4258
|
});
|
|
4259
4259
|
Ss.displayName = q4;
|
|
4260
4260
|
var U4 = "DropdownMenuItemIndicator", Hs = a.forwardRef((e, t) => {
|
|
@@ -4262,11 +4262,11 @@ var U4 = "DropdownMenuItemIndicator", Hs = a.forwardRef((e, t) => {
|
|
|
4262
4262
|
return /* @__PURE__ */ n(z4, { ...s, ...r, ref: t });
|
|
4263
4263
|
});
|
|
4264
4264
|
Hs.displayName = U4;
|
|
4265
|
-
var W4 = "DropdownMenuSeparator",
|
|
4265
|
+
var W4 = "DropdownMenuSeparator", js = a.forwardRef((e, t) => {
|
|
4266
4266
|
const { __scopeDropdownMenu: o, ...r } = e, s = p1(o);
|
|
4267
4267
|
return /* @__PURE__ */ n(L4, { ...s, ...r, ref: t });
|
|
4268
4268
|
});
|
|
4269
|
-
|
|
4269
|
+
js.displayName = W4;
|
|
4270
4270
|
var G4 = "DropdownMenuArrow", K4 = a.forwardRef(
|
|
4271
4271
|
(e, t) => {
|
|
4272
4272
|
const { __scopeDropdownMenu: o, ...r } = e, s = p1(o);
|
|
@@ -4282,12 +4282,12 @@ var X4 = (e) => {
|
|
|
4282
4282
|
caller: "DropdownMenuSub"
|
|
4283
4283
|
});
|
|
4284
4284
|
return /* @__PURE__ */ n(E4, { ...i, open: l, onOpenChange: u, children: o });
|
|
4285
|
-
}, Y4 = "DropdownMenuSubTrigger",
|
|
4285
|
+
}, Y4 = "DropdownMenuSubTrigger", Vs = a.forwardRef((e, t) => {
|
|
4286
4286
|
const { __scopeDropdownMenu: o, ...r } = e, s = p1(o);
|
|
4287
4287
|
return /* @__PURE__ */ n(T4, { ...s, ...r, ref: t });
|
|
4288
4288
|
});
|
|
4289
|
-
|
|
4290
|
-
var Q4 = "DropdownMenuSubContent",
|
|
4289
|
+
Vs.displayName = Y4;
|
|
4290
|
+
var Q4 = "DropdownMenuSubContent", As = a.forwardRef((e, t) => {
|
|
4291
4291
|
const { __scopeDropdownMenu: o, ...r } = e, s = p1(o);
|
|
4292
4292
|
return /* @__PURE__ */ n(
|
|
4293
4293
|
P4,
|
|
@@ -4306,8 +4306,8 @@ var Q4 = "DropdownMenuSubContent", js = a.forwardRef((e, t) => {
|
|
|
4306
4306
|
}
|
|
4307
4307
|
);
|
|
4308
4308
|
});
|
|
4309
|
-
|
|
4310
|
-
var zs = vs, C2 = gs, Ls = Cs, Rs = bs, Es = ws, Ts = Ms, Ps = ys, Ns = Is, Os = xs, Ds = Ss, $s = Hs, _s =
|
|
4309
|
+
As.displayName = Q4;
|
|
4310
|
+
var zs = vs, C2 = gs, Ls = Cs, Rs = bs, Es = ws, Ts = Ms, Ps = ys, Ns = Is, Os = xs, Ds = Ss, $s = Hs, _s = js, Zs = X4, Fs = Vs, Bs = As, J4 = "Label", qs = a.forwardRef((e, t) => /* @__PURE__ */ n(
|
|
4311
4311
|
B.label,
|
|
4312
4312
|
{
|
|
4313
4313
|
...e,
|
|
@@ -4375,7 +4375,7 @@ var Ys = "PopoverTrigger", Qs = a.forwardRef(
|
|
|
4375
4375
|
"data-state": n0(s.open),
|
|
4376
4376
|
...r,
|
|
4377
4377
|
ref: i,
|
|
4378
|
-
onClick:
|
|
4378
|
+
onClick: V(e.onClick, s.onOpenToggle)
|
|
4379
4379
|
}
|
|
4380
4380
|
);
|
|
4381
4381
|
return s.hasCustomAnchor ? l : /* @__PURE__ */ n(Ee, { asChild: !0, ...c, children: l });
|
|
@@ -4409,10 +4409,10 @@ var n5 = /* @__PURE__ */ Z1("PopoverContent.RemoveScroll"), r5 = a.forwardRef(
|
|
|
4409
4409
|
ref: s,
|
|
4410
4410
|
trapFocus: o.open,
|
|
4411
4411
|
disableOutsidePointerEvents: !0,
|
|
4412
|
-
onCloseAutoFocus:
|
|
4412
|
+
onCloseAutoFocus: V(e.onCloseAutoFocus, (i) => {
|
|
4413
4413
|
i.preventDefault(), c.current || o.triggerRef.current?.focus();
|
|
4414
4414
|
}),
|
|
4415
|
-
onPointerDownOutside:
|
|
4415
|
+
onPointerDownOutside: V(
|
|
4416
4416
|
e.onPointerDownOutside,
|
|
4417
4417
|
(i) => {
|
|
4418
4418
|
const l = i.detail.originalEvent, u = l.button === 0 && l.ctrlKey === !0, h = l.button === 2 || u;
|
|
@@ -4420,7 +4420,7 @@ var n5 = /* @__PURE__ */ Z1("PopoverContent.RemoveScroll"), r5 = a.forwardRef(
|
|
|
4420
4420
|
},
|
|
4421
4421
|
{ checkForDefaultPrevented: !1 }
|
|
4422
4422
|
),
|
|
4423
|
-
onFocusOutside:
|
|
4423
|
+
onFocusOutside: V(
|
|
4424
4424
|
e.onFocusOutside,
|
|
4425
4425
|
(i) => i.preventDefault(),
|
|
4426
4426
|
{ checkForDefaultPrevented: !1 }
|
|
@@ -4464,7 +4464,7 @@ var n5 = /* @__PURE__ */ Z1("PopoverContent.RemoveScroll"), r5 = a.forwardRef(
|
|
|
4464
4464
|
...p
|
|
4465
4465
|
} = e, v = W1(he, o), g = De(o);
|
|
4466
4466
|
return wt(), /* @__PURE__ */ n(
|
|
4467
|
-
|
|
4467
|
+
Ae,
|
|
4468
4468
|
{
|
|
4469
4469
|
asChild: !0,
|
|
4470
4470
|
loop: !0,
|
|
@@ -4482,7 +4482,7 @@ var n5 = /* @__PURE__ */ Z1("PopoverContent.RemoveScroll"), r5 = a.forwardRef(
|
|
|
4482
4482
|
onFocusOutside: h,
|
|
4483
4483
|
onDismiss: () => v.onOpenChange(!1),
|
|
4484
4484
|
children: /* @__PURE__ */ n(
|
|
4485
|
-
|
|
4485
|
+
At,
|
|
4486
4486
|
{
|
|
4487
4487
|
"data-state": n0(v.open),
|
|
4488
4488
|
role: "dialog",
|
|
@@ -4514,7 +4514,7 @@ var n5 = /* @__PURE__ */ Z1("PopoverContent.RemoveScroll"), r5 = a.forwardRef(
|
|
|
4514
4514
|
type: "button",
|
|
4515
4515
|
...r,
|
|
4516
4516
|
ref: t,
|
|
4517
|
-
onClick:
|
|
4517
|
+
onClick: V(e.onClick, () => s.onOpenChange(!1))
|
|
4518
4518
|
}
|
|
4519
4519
|
);
|
|
4520
4520
|
}
|
|
@@ -4542,7 +4542,7 @@ var so = "ScrollArea", [i0] = v1(so), [u5, w1] = i0(so), l0 = a.forwardRef(
|
|
|
4542
4542
|
dir: s,
|
|
4543
4543
|
scrollHideDelay: c = 600,
|
|
4544
4544
|
...i
|
|
4545
|
-
} = e, [l, u] = a.useState(null), [h, f] = a.useState(null), [p, v] = a.useState(null), [g, k] = a.useState(null), [m, C] = a.useState(null), [b, w] = a.useState(0), [M, y] = a.useState(0), [x, H] = a.useState(!1), [S, I] = a.useState(!1),
|
|
4545
|
+
} = e, [l, u] = a.useState(null), [h, f] = a.useState(null), [p, v] = a.useState(null), [g, k] = a.useState(null), [m, C] = a.useState(null), [b, w] = a.useState(0), [M, y] = a.useState(0), [x, H] = a.useState(!1), [S, I] = a.useState(!1), A = K(t, (F) => u(F)), O = Ve(s);
|
|
4546
4546
|
return /* @__PURE__ */ n(
|
|
4547
4547
|
u5,
|
|
4548
4548
|
{
|
|
@@ -4570,7 +4570,7 @@ var so = "ScrollArea", [i0] = v1(so), [u5, w1] = i0(so), l0 = a.forwardRef(
|
|
|
4570
4570
|
{
|
|
4571
4571
|
dir: O,
|
|
4572
4572
|
...i,
|
|
4573
|
-
ref:
|
|
4573
|
+
ref: A,
|
|
4574
4574
|
style: {
|
|
4575
4575
|
position: "relative",
|
|
4576
4576
|
// Pass corner sizes as CSS vars to reduce re-renders of context consumers
|
|
@@ -4588,7 +4588,7 @@ l0.displayName = so;
|
|
|
4588
4588
|
var d0 = "ScrollAreaViewport", u0 = a.forwardRef(
|
|
4589
4589
|
(e, t) => {
|
|
4590
4590
|
const { __scopeScrollArea: o, children: r, nonce: s, ...c } = e, i = w1(d0, o), l = a.useRef(null), u = K(t, l, i.onViewportChange);
|
|
4591
|
-
return /* @__PURE__ */
|
|
4591
|
+
return /* @__PURE__ */ j(T, { children: [
|
|
4592
4592
|
/* @__PURE__ */ n(
|
|
4593
4593
|
"style",
|
|
4594
4594
|
{
|
|
@@ -4699,8 +4699,8 @@ var h5 = a.forwardRef((e, t) => {
|
|
|
4699
4699
|
"data-state": l === "hidden" ? "hidden" : "visible",
|
|
4700
4700
|
...r,
|
|
4701
4701
|
ref: t,
|
|
4702
|
-
onPointerEnter:
|
|
4703
|
-
onPointerLeave:
|
|
4702
|
+
onPointerEnter: V(e.onPointerEnter, () => u("POINTER_ENTER")),
|
|
4703
|
+
onPointerLeave: V(e.onPointerLeave, () => u("POINTER_LEAVE"))
|
|
4704
4704
|
}
|
|
4705
4705
|
) });
|
|
4706
4706
|
}), h0 = a.forwardRef((e, t) => {
|
|
@@ -4864,19 +4864,19 @@ var h5 = a.forwardRef((e, t) => {
|
|
|
4864
4864
|
onWheelScroll: f,
|
|
4865
4865
|
onResize: p,
|
|
4866
4866
|
...v
|
|
4867
|
-
} = e, g = w1(L1, o), [k, m] = a.useState(null), C = K(t, (
|
|
4868
|
-
function I(
|
|
4867
|
+
} = e, g = w1(L1, o), [k, m] = a.useState(null), C = K(t, (A) => m(A)), b = a.useRef(null), w = a.useRef(""), M = g.viewport, y = r.content - r.viewport, x = s1(f), H = s1(u), S = Pt(p, 10);
|
|
4868
|
+
function I(A) {
|
|
4869
4869
|
if (b.current) {
|
|
4870
|
-
const O =
|
|
4870
|
+
const O = A.clientX - b.current.left, F = A.clientY - b.current.top;
|
|
4871
4871
|
h({ x: O, y: F });
|
|
4872
4872
|
}
|
|
4873
4873
|
}
|
|
4874
4874
|
return a.useEffect(() => {
|
|
4875
|
-
const
|
|
4875
|
+
const A = (O) => {
|
|
4876
4876
|
const F = O.target;
|
|
4877
4877
|
k?.contains(F) && x(O, y);
|
|
4878
4878
|
};
|
|
4879
|
-
return document.addEventListener("wheel",
|
|
4879
|
+
return document.addEventListener("wheel", A, { passive: !1 }), () => document.removeEventListener("wheel", A, { passive: !1 });
|
|
4880
4880
|
}, [M, k, y, x]), a.useEffect(H, [r, H]), fe(k, S), fe(g.content, S), /* @__PURE__ */ n(
|
|
4881
4881
|
m5,
|
|
4882
4882
|
{
|
|
@@ -4893,13 +4893,13 @@ var h5 = a.forwardRef((e, t) => {
|
|
|
4893
4893
|
...v,
|
|
4894
4894
|
ref: C,
|
|
4895
4895
|
style: { position: "absolute", ...v.style },
|
|
4896
|
-
onPointerDown:
|
|
4897
|
-
|
|
4896
|
+
onPointerDown: V(e.onPointerDown, (A) => {
|
|
4897
|
+
A.button === 0 && (A.target.setPointerCapture(A.pointerId), b.current = k.getBoundingClientRect(), w.current = document.body.style.webkitUserSelect, document.body.style.webkitUserSelect = "none", g.viewport && (g.viewport.style.scrollBehavior = "auto"), I(A));
|
|
4898
4898
|
}),
|
|
4899
|
-
onPointerMove:
|
|
4900
|
-
onPointerUp:
|
|
4901
|
-
const O =
|
|
4902
|
-
O.hasPointerCapture(
|
|
4899
|
+
onPointerMove: V(e.onPointerMove, I),
|
|
4900
|
+
onPointerUp: V(e.onPointerUp, (A) => {
|
|
4901
|
+
const O = A.target;
|
|
4902
|
+
O.hasPointerCapture(A.pointerId) && O.releasePointerCapture(A.pointerId), document.body.style.webkitUserSelect = w.current, g.viewport && (g.viewport.style.scrollBehavior = ""), b.current = null;
|
|
4903
4903
|
})
|
|
4904
4904
|
}
|
|
4905
4905
|
)
|
|
@@ -4940,11 +4940,11 @@ var h5 = a.forwardRef((e, t) => {
|
|
|
4940
4940
|
height: "var(--radix-scroll-area-thumb-height)",
|
|
4941
4941
|
...r
|
|
4942
4942
|
},
|
|
4943
|
-
onPointerDownCapture:
|
|
4943
|
+
onPointerDownCapture: V(e.onPointerDownCapture, (p) => {
|
|
4944
4944
|
const g = p.target.getBoundingClientRect(), k = p.clientX - g.left, m = p.clientY - g.top;
|
|
4945
4945
|
i.onThumbPointerDown({ x: k, y: m });
|
|
4946
4946
|
}),
|
|
4947
|
-
onPointerUp:
|
|
4947
|
+
onPointerUp: V(e.onPointerUp, i.onThumbPointerUp)
|
|
4948
4948
|
}
|
|
4949
4949
|
);
|
|
4950
4950
|
}
|
|
@@ -5058,18 +5058,18 @@ var b0 = l0, w0 = u0, w5 = m0, M5 = [" ", "Enter", "ArrowUp", "ArrowDown"], y5 =
|
|
|
5058
5058
|
disabled: v,
|
|
5059
5059
|
required: g,
|
|
5060
5060
|
form: k
|
|
5061
|
-
} = e, m = Dt(t), [C, b] = a.useState(null), [w, M] = a.useState(null), [y, x] = a.useState(!1), H =
|
|
5061
|
+
} = e, m = Dt(t), [C, b] = a.useState(null), [w, M] = a.useState(null), [y, x] = a.useState(!1), H = Ve(h), [S, I] = I1({
|
|
5062
5062
|
prop: r,
|
|
5063
5063
|
defaultProp: s ?? !1,
|
|
5064
5064
|
onChange: c,
|
|
5065
5065
|
caller: te
|
|
5066
|
-
}), [
|
|
5066
|
+
}), [A, O] = I1({
|
|
5067
5067
|
prop: i,
|
|
5068
5068
|
defaultProp: l,
|
|
5069
5069
|
onChange: u,
|
|
5070
5070
|
caller: te
|
|
5071
5071
|
}), F = a.useRef(null), U = C ? k || !!C.closest("form") : !0, [G, L] = a.useState(/* @__PURE__ */ new Set()), W = Array.from(G).map((z) => z.props.value).join(";");
|
|
5072
|
-
return /* @__PURE__ */ n(Re, { ...m, children: /* @__PURE__ */
|
|
5072
|
+
return /* @__PURE__ */ n(Re, { ...m, children: /* @__PURE__ */ j(
|
|
5073
5073
|
x5,
|
|
5074
5074
|
{
|
|
5075
5075
|
required: g,
|
|
@@ -5081,7 +5081,7 @@ var b0 = l0, w0 = u0, w5 = m0, M5 = [" ", "Enter", "ArrowUp", "ArrowDown"], y5 =
|
|
|
5081
5081
|
valueNodeHasChildren: y,
|
|
5082
5082
|
onValueNodeHasChildrenChange: x,
|
|
5083
5083
|
contentId: g1(),
|
|
5084
|
-
value:
|
|
5084
|
+
value: A,
|
|
5085
5085
|
onValueChange: O,
|
|
5086
5086
|
open: S,
|
|
5087
5087
|
onOpenChange: I,
|
|
@@ -5105,7 +5105,7 @@ var b0 = l0, w0 = u0, w5 = m0, M5 = [" ", "Enter", "ArrowUp", "ArrowDown"], y5 =
|
|
|
5105
5105
|
children: o
|
|
5106
5106
|
}
|
|
5107
5107
|
) }),
|
|
5108
|
-
U ? /* @__PURE__ */
|
|
5108
|
+
U ? /* @__PURE__ */ j(
|
|
5109
5109
|
q0,
|
|
5110
5110
|
{
|
|
5111
5111
|
"aria-hidden": !0,
|
|
@@ -5113,12 +5113,12 @@ var b0 = l0, w0 = u0, w5 = m0, M5 = [" ", "Enter", "ArrowUp", "ArrowDown"], y5 =
|
|
|
5113
5113
|
tabIndex: -1,
|
|
5114
5114
|
name: f,
|
|
5115
5115
|
autoComplete: p,
|
|
5116
|
-
value:
|
|
5116
|
+
value: A,
|
|
5117
5117
|
onChange: (z) => O(z.target.value),
|
|
5118
5118
|
disabled: v,
|
|
5119
5119
|
form: k,
|
|
5120
5120
|
children: [
|
|
5121
|
-
|
|
5121
|
+
A === void 0 ? /* @__PURE__ */ n("option", { value: "" }) : null,
|
|
5122
5122
|
Array.from(G)
|
|
5123
5123
|
]
|
|
5124
5124
|
},
|
|
@@ -5156,15 +5156,15 @@ var y0 = "SelectTrigger", I0 = a.forwardRef(
|
|
|
5156
5156
|
"data-placeholder": U0(i.value) ? "" : void 0,
|
|
5157
5157
|
...s,
|
|
5158
5158
|
ref: u,
|
|
5159
|
-
onClick:
|
|
5159
|
+
onClick: V(s.onClick, (m) => {
|
|
5160
5160
|
m.currentTarget.focus(), f.current !== "mouse" && k(m);
|
|
5161
5161
|
}),
|
|
5162
|
-
onPointerDown:
|
|
5162
|
+
onPointerDown: V(s.onPointerDown, (m) => {
|
|
5163
5163
|
f.current = m.pointerType;
|
|
5164
5164
|
const C = m.target;
|
|
5165
5165
|
C.hasPointerCapture(m.pointerId) && C.releasePointerCapture(m.pointerId), m.button === 0 && m.ctrlKey === !1 && m.pointerType === "mouse" && (k(m), m.preventDefault());
|
|
5166
5166
|
}),
|
|
5167
|
-
onKeyDown:
|
|
5167
|
+
onKeyDown: V(s.onKeyDown, (m) => {
|
|
5168
5168
|
const C = p.current !== "";
|
|
5169
5169
|
!(m.ctrlKey || m.altKey || m.metaKey) && m.key.length === 1 && v(m.key), !(C && m.key === " ") && M5.includes(m.key) && (k(), m.preventDefault());
|
|
5170
5170
|
})
|
|
@@ -5190,32 +5190,32 @@ var x0 = "SelectValue", S0 = a.forwardRef(
|
|
|
5190
5190
|
}
|
|
5191
5191
|
);
|
|
5192
5192
|
S0.displayName = x0;
|
|
5193
|
-
var
|
|
5193
|
+
var j5 = "SelectIcon", H0 = a.forwardRef(
|
|
5194
5194
|
(e, t) => {
|
|
5195
5195
|
const { __scopeSelect: o, children: r, ...s } = e;
|
|
5196
5196
|
return /* @__PURE__ */ n(B.span, { "aria-hidden": !0, ...s, ref: t, children: r || "▼" });
|
|
5197
5197
|
}
|
|
5198
5198
|
);
|
|
5199
|
-
H0.displayName =
|
|
5200
|
-
var
|
|
5201
|
-
|
|
5202
|
-
var oe = "SelectContent",
|
|
5199
|
+
H0.displayName = j5;
|
|
5200
|
+
var V5 = "SelectPortal", j0 = (e) => /* @__PURE__ */ n(ve, { asChild: !0, ...e });
|
|
5201
|
+
j0.displayName = V5;
|
|
5202
|
+
var oe = "SelectContent", V0 = a.forwardRef(
|
|
5203
5203
|
(e, t) => {
|
|
5204
5204
|
const o = G1(oe, e.__scopeSelect), [r, s] = a.useState();
|
|
5205
5205
|
if (i1(() => {
|
|
5206
5206
|
s(new DocumentFragment());
|
|
5207
5207
|
}, []), !o.open) {
|
|
5208
5208
|
const c = r;
|
|
5209
|
-
return c ?
|
|
5210
|
-
/* @__PURE__ */ n(
|
|
5209
|
+
return c ? je.createPortal(
|
|
5210
|
+
/* @__PURE__ */ n(A0, { scope: e.__scopeSelect, children: /* @__PURE__ */ n(Nt.Slot, { scope: e.__scopeSelect, children: /* @__PURE__ */ n("div", { children: e.children }) }) }),
|
|
5211
5211
|
c
|
|
5212
5212
|
) : null;
|
|
5213
5213
|
}
|
|
5214
5214
|
return /* @__PURE__ */ n(z0, { ...e, ref: t });
|
|
5215
5215
|
}
|
|
5216
5216
|
);
|
|
5217
|
-
|
|
5218
|
-
var M1 = 10, [
|
|
5217
|
+
V0.displayName = oe;
|
|
5218
|
+
var M1 = 10, [A0, K1] = Ce(oe), A5 = "SelectContentImpl", z5 = /* @__PURE__ */ Z1("SelectContent.RemoveScroll"), z0 = a.forwardRef(
|
|
5219
5219
|
(e, t) => {
|
|
5220
5220
|
const {
|
|
5221
5221
|
__scopeSelect: o,
|
|
@@ -5237,7 +5237,7 @@ var M1 = 10, [j0, K1] = Ce(oe), j5 = "SelectContentImpl", z5 = /* @__PURE__ */ Z
|
|
|
5237
5237
|
avoidCollisions: C,
|
|
5238
5238
|
//
|
|
5239
5239
|
...b
|
|
5240
|
-
} = e, w = G1(oe, o), [M, y] = a.useState(null), [x, H] = a.useState(null), S = K(t, (N) => y(N)), [I,
|
|
5240
|
+
} = e, w = G1(oe, o), [M, y] = a.useState(null), [x, H] = a.useState(null), S = K(t, (N) => y(N)), [I, A] = a.useState(null), [O, F] = a.useState(
|
|
5241
5241
|
null
|
|
5242
5242
|
), U = Ot(o), [G, L] = a.useState(!1), W = a.useRef(!1);
|
|
5243
5243
|
a.useEffect(() => {
|
|
@@ -5285,7 +5285,7 @@ var M1 = 10, [j0, K1] = Ce(oe), j5 = "SelectContentImpl", z5 = /* @__PURE__ */ Z
|
|
|
5285
5285
|
}), l1 = a.useCallback(
|
|
5286
5286
|
(N, o1, J) => {
|
|
5287
5287
|
const n1 = !W.current && !J;
|
|
5288
|
-
(w.value !== void 0 && w.value === o1 || n1) && (
|
|
5288
|
+
(w.value !== void 0 && w.value === o1 || n1) && (A(N), n1 && (W.current = !0));
|
|
5289
5289
|
},
|
|
5290
5290
|
[w.value]
|
|
5291
5291
|
), D = a.useCallback(() => M?.focus(), [M]), Y = a.useCallback(
|
|
@@ -5307,7 +5307,7 @@ var M1 = 10, [j0, K1] = Ce(oe), j5 = "SelectContentImpl", z5 = /* @__PURE__ */ Z
|
|
|
5307
5307
|
avoidCollisions: C
|
|
5308
5308
|
} : {};
|
|
5309
5309
|
return /* @__PURE__ */ n(
|
|
5310
|
-
|
|
5310
|
+
A0,
|
|
5311
5311
|
{
|
|
5312
5312
|
scope: o,
|
|
5313
5313
|
content: M,
|
|
@@ -5323,14 +5323,14 @@ var M1 = 10, [j0, K1] = Ce(oe), j5 = "SelectContentImpl", z5 = /* @__PURE__ */ Z
|
|
|
5323
5323
|
isPositioned: G,
|
|
5324
5324
|
searchRef: E,
|
|
5325
5325
|
children: /* @__PURE__ */ n(ze, { as: z5, allowPinchZoom: !0, children: /* @__PURE__ */ n(
|
|
5326
|
-
|
|
5326
|
+
Ae,
|
|
5327
5327
|
{
|
|
5328
5328
|
asChild: !0,
|
|
5329
5329
|
trapped: w.open,
|
|
5330
5330
|
onMountAutoFocus: (N) => {
|
|
5331
5331
|
N.preventDefault();
|
|
5332
5332
|
},
|
|
5333
|
-
onUnmountAutoFocus:
|
|
5333
|
+
onUnmountAutoFocus: V(s, (N) => {
|
|
5334
5334
|
w.trigger?.focus({ preventScroll: !0 }), N.preventDefault();
|
|
5335
5335
|
}),
|
|
5336
5336
|
children: /* @__PURE__ */ n(
|
|
@@ -5362,7 +5362,7 @@ var M1 = 10, [j0, K1] = Ce(oe), j5 = "SelectContentImpl", z5 = /* @__PURE__ */ Z
|
|
|
5362
5362
|
outline: "none",
|
|
5363
5363
|
...b.style
|
|
5364
5364
|
},
|
|
5365
|
-
onKeyDown:
|
|
5365
|
+
onKeyDown: V(b.onKeyDown, (N) => {
|
|
5366
5366
|
const o1 = N.ctrlKey || N.altKey || N.metaKey;
|
|
5367
5367
|
if (N.key === "Tab" && N.preventDefault(), !o1 && N.key.length === 1 && a1(N.key), ["ArrowUp", "ArrowDown", "Home", "End"].includes(N.key)) {
|
|
5368
5368
|
let n1 = U().filter((t1) => !t1.disabled).map((t1) => t1.ref.current);
|
|
@@ -5383,13 +5383,13 @@ var M1 = 10, [j0, K1] = Ce(oe), j5 = "SelectContentImpl", z5 = /* @__PURE__ */ Z
|
|
|
5383
5383
|
);
|
|
5384
5384
|
}
|
|
5385
5385
|
);
|
|
5386
|
-
z0.displayName =
|
|
5386
|
+
z0.displayName = A5;
|
|
5387
5387
|
var L5 = "SelectItemAlignedPosition", L0 = a.forwardRef((e, t) => {
|
|
5388
5388
|
const { __scopeSelect: o, onPlaced: r, ...s } = e, c = G1(oe, o), i = K1(oe, o), [l, u] = a.useState(null), [h, f] = a.useState(null), p = K(t, (S) => f(S)), v = Ot(o), g = a.useRef(!1), k = a.useRef(!0), { viewport: m, selectedItem: C, selectedItemText: b, focusSelectedItem: w } = i, M = a.useCallback(() => {
|
|
5389
5389
|
if (c.trigger && c.valueNode && l && h && m && C && b) {
|
|
5390
|
-
const S = c.trigger.getBoundingClientRect(), I = h.getBoundingClientRect(),
|
|
5390
|
+
const S = c.trigger.getBoundingClientRect(), I = h.getBoundingClientRect(), A = c.valueNode.getBoundingClientRect(), O = b.getBoundingClientRect();
|
|
5391
5391
|
if (c.dir !== "rtl") {
|
|
5392
|
-
const t1 = O.left - I.left, r1 =
|
|
5392
|
+
const t1 = O.left - I.left, r1 = A.left - t1, f1 = S.left - r1, k1 = S.width + f1, qt = Math.max(k1, I.width), Ut = window.innerWidth - M1, Wt = k2(r1, [
|
|
5393
5393
|
M1,
|
|
5394
5394
|
// Prevents the content from going off the starting edge of the
|
|
5395
5395
|
// viewport. It may still go off the ending edge, but this can be
|
|
@@ -5400,7 +5400,7 @@ var L5 = "SelectItemAlignedPosition", L0 = a.forwardRef((e, t) => {
|
|
|
5400
5400
|
]);
|
|
5401
5401
|
l.style.minWidth = k1 + "px", l.style.left = Wt + "px";
|
|
5402
5402
|
} else {
|
|
5403
|
-
const t1 = I.right - O.right, r1 = window.innerWidth -
|
|
5403
|
+
const t1 = I.right - O.right, r1 = window.innerWidth - A.right - t1, f1 = window.innerWidth - S.right - r1, k1 = S.width + f1, qt = Math.max(k1, I.width), Ut = window.innerWidth - M1, Wt = k2(r1, [
|
|
5404
5404
|
M1,
|
|
5405
5405
|
Math.max(M1, Ut - qt)
|
|
5406
5406
|
]);
|
|
@@ -5497,7 +5497,7 @@ var R5 = "SelectPopperPosition", b2 = a.forwardRef((e, t) => {
|
|
|
5497
5497
|
...c
|
|
5498
5498
|
} = e, i = Dt(o);
|
|
5499
5499
|
return /* @__PURE__ */ n(
|
|
5500
|
-
|
|
5500
|
+
At,
|
|
5501
5501
|
{
|
|
5502
5502
|
...i,
|
|
5503
5503
|
...c,
|
|
@@ -5521,7 +5521,7 @@ b2.displayName = R5;
|
|
|
5521
5521
|
var [E5, lo] = Ce(oe, {}), w2 = "SelectViewport", R0 = a.forwardRef(
|
|
5522
5522
|
(e, t) => {
|
|
5523
5523
|
const { __scopeSelect: o, nonce: r, ...s } = e, c = K1(w2, o), i = lo(w2, o), l = K(t, c.onViewportChange), u = a.useRef(0);
|
|
5524
|
-
return /* @__PURE__ */
|
|
5524
|
+
return /* @__PURE__ */ j(T, { children: [
|
|
5525
5525
|
/* @__PURE__ */ n(
|
|
5526
5526
|
"style",
|
|
5527
5527
|
{
|
|
@@ -5551,7 +5551,7 @@ var [E5, lo] = Ce(oe, {}), w2 = "SelectViewport", R0 = a.forwardRef(
|
|
|
5551
5551
|
overflow: "hidden auto",
|
|
5552
5552
|
...s.style
|
|
5553
5553
|
},
|
|
5554
|
-
onScroll:
|
|
5554
|
+
onScroll: V(s.onScroll, (h) => {
|
|
5555
5555
|
const f = h.currentTarget, { contentWrapper: p, shouldExpandOnScrollRef: v } = i;
|
|
5556
5556
|
if (v?.current && p) {
|
|
5557
5557
|
const g = Math.abs(u.current - f.scrollTop);
|
|
@@ -5634,24 +5634,24 @@ var pt = "SelectItem", [N5, O0] = Ce(pt), D0 = a.forwardRef(
|
|
|
5634
5634
|
tabIndex: s ? void 0 : -1,
|
|
5635
5635
|
...i,
|
|
5636
5636
|
ref: k,
|
|
5637
|
-
onFocus:
|
|
5638
|
-
onBlur:
|
|
5639
|
-
onClick:
|
|
5637
|
+
onFocus: V(i.onFocus, () => g(!0)),
|
|
5638
|
+
onBlur: V(i.onBlur, () => g(!1)),
|
|
5639
|
+
onClick: V(i.onClick, () => {
|
|
5640
5640
|
C.current !== "mouse" && b();
|
|
5641
5641
|
}),
|
|
5642
|
-
onPointerUp:
|
|
5642
|
+
onPointerUp: V(i.onPointerUp, () => {
|
|
5643
5643
|
C.current === "mouse" && b();
|
|
5644
5644
|
}),
|
|
5645
|
-
onPointerDown:
|
|
5645
|
+
onPointerDown: V(i.onPointerDown, (w) => {
|
|
5646
5646
|
C.current = w.pointerType;
|
|
5647
5647
|
}),
|
|
5648
|
-
onPointerMove:
|
|
5648
|
+
onPointerMove: V(i.onPointerMove, (w) => {
|
|
5649
5649
|
C.current = w.pointerType, s ? u.onItemLeave?.() : C.current === "mouse" && w.currentTarget.focus({ preventScroll: !0 });
|
|
5650
5650
|
}),
|
|
5651
|
-
onPointerLeave:
|
|
5651
|
+
onPointerLeave: V(i.onPointerLeave, (w) => {
|
|
5652
5652
|
w.currentTarget === document.activeElement && u.onItemLeave?.();
|
|
5653
5653
|
}),
|
|
5654
|
-
onKeyDown:
|
|
5654
|
+
onKeyDown: V(i.onKeyDown, (w) => {
|
|
5655
5655
|
u.searchRef?.current !== "" && w.key === " " || (y5.includes(w.key) && b(), w.key === " " && w.preventDefault());
|
|
5656
5656
|
})
|
|
5657
5657
|
}
|
|
@@ -5674,9 +5674,9 @@ var we = "SelectItemText", $0 = a.forwardRef(
|
|
|
5674
5674
|
() => /* @__PURE__ */ n("option", { value: u.value, disabled: u.disabled, children: g }, u.value),
|
|
5675
5675
|
[u.disabled, u.value, g]
|
|
5676
5676
|
), { onNativeOptionAdd: m, onNativeOptionRemove: C } = h;
|
|
5677
|
-
return i1(() => (m(k), () => C(k)), [m, C, k]), /* @__PURE__ */
|
|
5677
|
+
return i1(() => (m(k), () => C(k)), [m, C, k]), /* @__PURE__ */ j(T, { children: [
|
|
5678
5678
|
/* @__PURE__ */ n(B.span, { id: u.textId, ...c, ref: v }),
|
|
5679
|
-
u.isSelected && i.valueNode && !i.valueNodeHasChildren ?
|
|
5679
|
+
u.isSelected && i.valueNode && !i.valueNodeHasChildren ? je.createPortal(c.children, i.valueNode) : null
|
|
5680
5680
|
] });
|
|
5681
5681
|
}
|
|
5682
5682
|
);
|
|
@@ -5749,13 +5749,13 @@ var F0 = a.forwardRef((e, t) => {
|
|
|
5749
5749
|
...s,
|
|
5750
5750
|
ref: t,
|
|
5751
5751
|
style: { flexShrink: 0, ...s.style },
|
|
5752
|
-
onPointerDown:
|
|
5752
|
+
onPointerDown: V(s.onPointerDown, () => {
|
|
5753
5753
|
i.current === null && (i.current = window.setInterval(r, 50));
|
|
5754
5754
|
}),
|
|
5755
|
-
onPointerMove:
|
|
5755
|
+
onPointerMove: V(s.onPointerMove, () => {
|
|
5756
5756
|
c.onItemLeave?.(), i.current === null && (i.current = window.setInterval(r, 50));
|
|
5757
5757
|
}),
|
|
5758
|
-
onPointerLeave:
|
|
5758
|
+
onPointerLeave: V(s.onPointerLeave, () => {
|
|
5759
5759
|
u();
|
|
5760
5760
|
})
|
|
5761
5761
|
}
|
|
@@ -5829,7 +5829,7 @@ function G0(e, t, o) {
|
|
|
5829
5829
|
function F5(e, t) {
|
|
5830
5830
|
return e.map((o, r) => e[(t + r) % e.length]);
|
|
5831
5831
|
}
|
|
5832
|
-
var K0 = M0, X0 = I0, Y0 = S0, B5 = H0, q5 =
|
|
5832
|
+
var K0 = M0, X0 = I0, Y0 = S0, B5 = H0, q5 = j0, Q0 = V0, U5 = R0, J0 = T0, ec = N0, tc = D0, W5 = $0, G5 = Z0, oc = B0, K5 = "Separator", Qo = "horizontal", X5 = ["horizontal", "vertical"], uo = a.forwardRef((e, t) => {
|
|
5833
5833
|
const { decorative: o, orientation: r = Qo, ...s } = e, c = Y5(r) ? r : Qo, l = o ? { role: "none" } : { "aria-orientation": c === "vertical" ? c : void 0, role: "separator" };
|
|
5834
5834
|
return /* @__PURE__ */ n(
|
|
5835
5835
|
B.div,
|
|
@@ -5864,7 +5864,7 @@ var $t = "Switch", [Q5] = v1($t), [J5, e6] = Q5($t), nc = a.forwardRef(
|
|
|
5864
5864
|
onChange: h,
|
|
5865
5865
|
caller: $t
|
|
5866
5866
|
});
|
|
5867
|
-
return /* @__PURE__ */
|
|
5867
|
+
return /* @__PURE__ */ j(J5, { scope: o, checked: b, disabled: l, children: [
|
|
5868
5868
|
/* @__PURE__ */ n(
|
|
5869
5869
|
B.button,
|
|
5870
5870
|
{
|
|
@@ -5878,7 +5878,7 @@ var $t = "Switch", [Q5] = v1($t), [J5, e6] = Q5($t), nc = a.forwardRef(
|
|
|
5878
5878
|
value: u,
|
|
5879
5879
|
...p,
|
|
5880
5880
|
ref: k,
|
|
5881
|
-
onClick:
|
|
5881
|
+
onClick: V(e.onClick, (M) => {
|
|
5882
5882
|
w((y) => !y), C && (m.current = M.isPropagationStopped(), m.current || M.stopPropagation());
|
|
5883
5883
|
})
|
|
5884
5884
|
}
|
|
@@ -6049,13 +6049,13 @@ var uc = "ToastViewport", c6 = ["F8"], x2 = "toast.viewportPause", S2 = "toast.v
|
|
|
6049
6049
|
h.current?.focus();
|
|
6050
6050
|
return;
|
|
6051
6051
|
}
|
|
6052
|
-
const
|
|
6053
|
-
a2(
|
|
6052
|
+
const A = m({ tabbingDirection: H ? "backwards" : "forwards" }), O = A.findIndex((F) => F === x);
|
|
6053
|
+
a2(A.slice(O + 1)) ? w.preventDefault() : H ? h.current?.focus() : f.current?.focus();
|
|
6054
6054
|
}
|
|
6055
6055
|
};
|
|
6056
6056
|
return C.addEventListener("keydown", b), () => C.removeEventListener("keydown", b);
|
|
6057
6057
|
}
|
|
6058
|
-
}, [l, m]), /* @__PURE__ */
|
|
6058
|
+
}, [l, m]), /* @__PURE__ */ j(
|
|
6059
6059
|
ii,
|
|
6060
6060
|
{
|
|
6061
6061
|
ref: u,
|
|
@@ -6131,17 +6131,17 @@ var $e = "Toast", a6 = "toast.swipeStart", i6 = "toast.swipeMove", l6 = "toast.s
|
|
|
6131
6131
|
onClose: () => u(!1),
|
|
6132
6132
|
onPause: s1(e.onPause),
|
|
6133
6133
|
onResume: s1(e.onResume),
|
|
6134
|
-
onSwipeStart:
|
|
6134
|
+
onSwipeStart: V(e.onSwipeStart, (h) => {
|
|
6135
6135
|
h.currentTarget.setAttribute("data-swipe", "start");
|
|
6136
6136
|
}),
|
|
6137
|
-
onSwipeMove:
|
|
6137
|
+
onSwipeMove: V(e.onSwipeMove, (h) => {
|
|
6138
6138
|
const { x: f, y: p } = h.detail.delta;
|
|
6139
6139
|
h.currentTarget.setAttribute("data-swipe", "move"), h.currentTarget.style.setProperty("--radix-toast-swipe-move-x", `${f}px`), h.currentTarget.style.setProperty("--radix-toast-swipe-move-y", `${p}px`);
|
|
6140
6140
|
}),
|
|
6141
|
-
onSwipeCancel:
|
|
6141
|
+
onSwipeCancel: V(e.onSwipeCancel, (h) => {
|
|
6142
6142
|
h.currentTarget.setAttribute("data-swipe", "cancel"), h.currentTarget.style.removeProperty("--radix-toast-swipe-move-x"), h.currentTarget.style.removeProperty("--radix-toast-swipe-move-y"), h.currentTarget.style.removeProperty("--radix-toast-swipe-end-x"), h.currentTarget.style.removeProperty("--radix-toast-swipe-end-y");
|
|
6143
6143
|
}),
|
|
6144
|
-
onSwipeEnd:
|
|
6144
|
+
onSwipeEnd: V(e.onSwipeEnd, (h) => {
|
|
6145
6145
|
const { x: f, y: p } = h.detail.delta;
|
|
6146
6146
|
h.currentTarget.setAttribute("data-swipe", "end"), h.currentTarget.style.removeProperty("--radix-toast-swipe-move-x"), h.currentTarget.style.removeProperty("--radix-toast-swipe-move-y"), h.currentTarget.style.setProperty("--radix-toast-swipe-end-x", `${f}px`), h.currentTarget.style.setProperty("--radix-toast-swipe-end-y", `${p}px`), u(!1);
|
|
6147
6147
|
})
|
|
@@ -6169,7 +6169,7 @@ var [u6, h6] = lc($e, {
|
|
|
6169
6169
|
onSwipeCancel: v,
|
|
6170
6170
|
onSwipeEnd: g,
|
|
6171
6171
|
...k
|
|
6172
|
-
} = e, m = _t($e, o), [C, b] = a.useState(null), w = K(t, (L) => b(L)), M = a.useRef(null), y = a.useRef(null), x = s || m.duration, H = a.useRef(0), S = a.useRef(x), I = a.useRef(0), { onToastAdd:
|
|
6172
|
+
} = e, m = _t($e, o), [C, b] = a.useState(null), w = K(t, (L) => b(L)), M = a.useRef(null), y = a.useRef(null), x = s || m.duration, H = a.useRef(0), S = a.useRef(x), I = a.useRef(0), { onToastAdd: A, onToastRemove: O } = m, F = s1(() => {
|
|
6173
6173
|
C?.contains(document.activeElement) && m.viewport?.focus(), i();
|
|
6174
6174
|
}), U = a.useCallback(
|
|
6175
6175
|
(L) => {
|
|
@@ -6192,9 +6192,9 @@ var [u6, h6] = lc($e, {
|
|
|
6192
6192
|
}
|
|
6193
6193
|
}, [m.viewport, x, u, h, U]), a.useEffect(() => {
|
|
6194
6194
|
c && !m.isClosePausedRef.current && U(x);
|
|
6195
|
-
}, [c, x, m.isClosePausedRef, U]), a.useEffect(() => (
|
|
6195
|
+
}, [c, x, m.isClosePausedRef, U]), a.useEffect(() => (A(), () => O()), [A, O]);
|
|
6196
6196
|
const G = a.useMemo(() => C ? bc(C) : null, [C]);
|
|
6197
|
-
return m.viewport ? /* @__PURE__ */
|
|
6197
|
+
return m.viewport ? /* @__PURE__ */ j(T, { children: [
|
|
6198
6198
|
G && /* @__PURE__ */ n(
|
|
6199
6199
|
p6,
|
|
6200
6200
|
{
|
|
@@ -6204,12 +6204,12 @@ var [u6, h6] = lc($e, {
|
|
|
6204
6204
|
children: G
|
|
6205
6205
|
}
|
|
6206
6206
|
),
|
|
6207
|
-
/* @__PURE__ */ n(u6, { scope: o, onClose: F, children:
|
|
6207
|
+
/* @__PURE__ */ n(u6, { scope: o, onClose: F, children: je.createPortal(
|
|
6208
6208
|
/* @__PURE__ */ n(fo.ItemSlot, { scope: o, children: /* @__PURE__ */ n(
|
|
6209
6209
|
ai,
|
|
6210
6210
|
{
|
|
6211
6211
|
asChild: !0,
|
|
6212
|
-
onEscapeKeyDown:
|
|
6212
|
+
onEscapeKeyDown: V(l, () => {
|
|
6213
6213
|
m.isFocusedToastEscapeKeyDownRef.current || F(), m.isFocusedToastEscapeKeyDownRef.current = !1;
|
|
6214
6214
|
}),
|
|
6215
6215
|
children: /* @__PURE__ */ n(
|
|
@@ -6221,13 +6221,13 @@ var [u6, h6] = lc($e, {
|
|
|
6221
6221
|
...k,
|
|
6222
6222
|
ref: w,
|
|
6223
6223
|
style: { userSelect: "none", touchAction: "none", ...e.style },
|
|
6224
|
-
onKeyDown:
|
|
6224
|
+
onKeyDown: V(e.onKeyDown, (L) => {
|
|
6225
6225
|
L.key === "Escape" && (l?.(L.nativeEvent), L.nativeEvent.defaultPrevented || (m.isFocusedToastEscapeKeyDownRef.current = !0, F()));
|
|
6226
6226
|
}),
|
|
6227
|
-
onPointerDown:
|
|
6227
|
+
onPointerDown: V(e.onPointerDown, (L) => {
|
|
6228
6228
|
L.button === 0 && (M.current = { x: L.clientX, y: L.clientY });
|
|
6229
6229
|
}),
|
|
6230
|
-
onPointerMove:
|
|
6230
|
+
onPointerMove: V(e.onPointerMove, (L) => {
|
|
6231
6231
|
if (!M.current) return;
|
|
6232
6232
|
const W = L.clientX - M.current.x, z = L.clientY - M.current.y, q = !!y.current, $ = ["left", "right"].includes(m.swipeDirection), R = ["left", "up"].includes(m.swipeDirection) ? Math.min : Math.max, E = $ ? R(0, W) : 0, a1 = $ ? 0 : R(0, z), l1 = L.pointerType === "touch" ? 10 : 2, D = { x: E, y: a1 }, Y = { originalEvent: L, delta: D };
|
|
6233
6233
|
q ? (y.current = D, Ge(i6, p, Y, {
|
|
@@ -6236,7 +6236,7 @@ var [u6, h6] = lc($e, {
|
|
|
6236
6236
|
discrete: !1
|
|
6237
6237
|
}), L.target.setPointerCapture(L.pointerId)) : (Math.abs(W) > l1 || Math.abs(z) > l1) && (M.current = null);
|
|
6238
6238
|
}),
|
|
6239
|
-
onPointerUp:
|
|
6239
|
+
onPointerUp: V(e.onPointerUp, (L) => {
|
|
6240
6240
|
const W = y.current, z = L.target;
|
|
6241
6241
|
if (z.hasPointerCapture(L.pointerId) && z.releasePointerCapture(L.pointerId), y.current = null, M.current = null, W) {
|
|
6242
6242
|
const q = L.currentTarget, $ = { originalEvent: L, delta: W };
|
|
@@ -6267,7 +6267,7 @@ var [u6, h6] = lc($e, {
|
|
|
6267
6267
|
return C6(() => i(!0)), a.useEffect(() => {
|
|
6268
6268
|
const h = window.setTimeout(() => u(!0), 1e3);
|
|
6269
6269
|
return () => window.clearTimeout(h);
|
|
6270
|
-
}, []), l ? null : /* @__PURE__ */ n(ve, { asChild: !0, children: /* @__PURE__ */ n(kt, { ...r, children: c && /* @__PURE__ */
|
|
6270
|
+
}, []), l ? null : /* @__PURE__ */ n(ve, { asChild: !0, children: /* @__PURE__ */ n(kt, { ...r, children: c && /* @__PURE__ */ j(T, { children: [
|
|
6271
6271
|
s.label,
|
|
6272
6272
|
" ",
|
|
6273
6273
|
o
|
|
@@ -6304,7 +6304,7 @@ var Cc = "ToastClose", po = a.forwardRef(
|
|
|
6304
6304
|
type: "button",
|
|
6305
6305
|
...r,
|
|
6306
6306
|
ref: t,
|
|
6307
|
-
onClick:
|
|
6307
|
+
onClick: V(e.onClick, s.onClose)
|
|
6308
6308
|
}
|
|
6309
6309
|
) });
|
|
6310
6310
|
}
|
|
@@ -6373,7 +6373,7 @@ function a2(e) {
|
|
|
6373
6373
|
}
|
|
6374
6374
|
var wc = dc, Mc = hc, yc = pc, Ic = vc, xc = gc, Sc = po, [Zt] = v1("Tooltip", [
|
|
6375
6375
|
q1
|
|
6376
|
-
]), Ft = q1(), Hc = "TooltipProvider", w6 = 700,
|
|
6376
|
+
]), Ft = q1(), Hc = "TooltipProvider", w6 = 700, j2 = "tooltip.open", [M6, vo] = Zt(Hc), jc = (e) => {
|
|
6377
6377
|
const {
|
|
6378
6378
|
__scopeTooltip: t,
|
|
6379
6379
|
delayDuration: o = w6,
|
|
@@ -6408,8 +6408,8 @@ var wc = dc, Mc = hc, yc = pc, Ic = vc, xc = gc, Sc = po, [Zt] = v1("Tooltip", [
|
|
|
6408
6408
|
}
|
|
6409
6409
|
);
|
|
6410
6410
|
};
|
|
6411
|
-
|
|
6412
|
-
var He = "Tooltip", [y6, Bt] = Zt(He),
|
|
6411
|
+
jc.displayName = Hc;
|
|
6412
|
+
var He = "Tooltip", [y6, Bt] = Zt(He), Vc = (e) => {
|
|
6413
6413
|
const {
|
|
6414
6414
|
__scopeTooltip: t,
|
|
6415
6415
|
children: o,
|
|
@@ -6422,7 +6422,7 @@ var He = "Tooltip", [y6, Bt] = Zt(He), Ac = (e) => {
|
|
|
6422
6422
|
prop: r,
|
|
6423
6423
|
defaultProp: s ?? !1,
|
|
6424
6424
|
onChange: (S) => {
|
|
6425
|
-
S ? (u.onOpen(), document.dispatchEvent(new CustomEvent(
|
|
6425
|
+
S ? (u.onOpen(), document.dispatchEvent(new CustomEvent(j2))) : u.onClose(), c?.(S);
|
|
6426
6426
|
},
|
|
6427
6427
|
caller: He
|
|
6428
6428
|
}), M = a.useMemo(() => b ? C.current ? "delayed-open" : "instant-open" : "closed", [b]), y = a.useCallback(() => {
|
|
@@ -6458,10 +6458,10 @@ var He = "Tooltip", [y6, Bt] = Zt(He), Ac = (e) => {
|
|
|
6458
6458
|
}
|
|
6459
6459
|
) });
|
|
6460
6460
|
};
|
|
6461
|
-
|
|
6462
|
-
var
|
|
6461
|
+
Vc.displayName = He;
|
|
6462
|
+
var V2 = "TooltipTrigger", Ac = a.forwardRef(
|
|
6463
6463
|
(e, t) => {
|
|
6464
|
-
const { __scopeTooltip: o, ...r } = e, s = Bt(
|
|
6464
|
+
const { __scopeTooltip: o, ...r } = e, s = Bt(V2, o), c = vo(V2, o), i = Ft(o), l = a.useRef(null), u = K(t, l, s.onTriggerChange), h = a.useRef(!1), f = a.useRef(!1), p = a.useCallback(() => h.current = !1, []);
|
|
6465
6465
|
return a.useEffect(() => () => document.removeEventListener("pointerup", p), [p]), /* @__PURE__ */ n(Ee, { asChild: !0, ...i, children: /* @__PURE__ */ n(
|
|
6466
6466
|
B.button,
|
|
6467
6467
|
{
|
|
@@ -6469,25 +6469,25 @@ var A2 = "TooltipTrigger", jc = a.forwardRef(
|
|
|
6469
6469
|
"data-state": s.stateAttribute,
|
|
6470
6470
|
...r,
|
|
6471
6471
|
ref: u,
|
|
6472
|
-
onPointerMove:
|
|
6472
|
+
onPointerMove: V(e.onPointerMove, (v) => {
|
|
6473
6473
|
v.pointerType !== "touch" && !f.current && !c.isPointerInTransitRef.current && (s.onTriggerEnter(), f.current = !0);
|
|
6474
6474
|
}),
|
|
6475
|
-
onPointerLeave:
|
|
6475
|
+
onPointerLeave: V(e.onPointerLeave, () => {
|
|
6476
6476
|
s.onTriggerLeave(), f.current = !1;
|
|
6477
6477
|
}),
|
|
6478
|
-
onPointerDown:
|
|
6478
|
+
onPointerDown: V(e.onPointerDown, () => {
|
|
6479
6479
|
s.open && s.onClose(), h.current = !0, document.addEventListener("pointerup", p, { once: !0 });
|
|
6480
6480
|
}),
|
|
6481
|
-
onFocus:
|
|
6481
|
+
onFocus: V(e.onFocus, () => {
|
|
6482
6482
|
h.current || s.onOpen();
|
|
6483
6483
|
}),
|
|
6484
|
-
onBlur:
|
|
6485
|
-
onClick:
|
|
6484
|
+
onBlur: V(e.onBlur, s.onClose),
|
|
6485
|
+
onClick: V(e.onClick, s.onClose)
|
|
6486
6486
|
}
|
|
6487
6487
|
) });
|
|
6488
6488
|
}
|
|
6489
6489
|
);
|
|
6490
|
-
|
|
6490
|
+
Ac.displayName = V2;
|
|
6491
6491
|
var I6 = "TooltipPortal", [IC, x6] = Zt(I6, {
|
|
6492
6492
|
forceMount: void 0
|
|
6493
6493
|
}), pe = "TooltipContent", zc = a.forwardRef(
|
|
@@ -6500,7 +6500,7 @@ var I6 = "TooltipPortal", [IC, x6] = Zt(I6, {
|
|
|
6500
6500
|
l(null), p(!1);
|
|
6501
6501
|
}, [p]), g = a.useCallback(
|
|
6502
6502
|
(k, m) => {
|
|
6503
|
-
const C = k.currentTarget, b = { x: k.clientX, y: k.clientY }, w =
|
|
6503
|
+
const C = k.currentTarget, b = { x: k.clientX, y: k.clientY }, w = A6(b, C.getBoundingClientRect()), M = z6(b, w), y = L6(m.getBoundingClientRect()), x = E6([...M, ...y]);
|
|
6504
6504
|
l(x), p(!0);
|
|
6505
6505
|
},
|
|
6506
6506
|
[p]
|
|
@@ -6521,7 +6521,7 @@ var I6 = "TooltipPortal", [IC, x6] = Zt(I6, {
|
|
|
6521
6521
|
return document.addEventListener("pointermove", k), () => document.removeEventListener("pointermove", k);
|
|
6522
6522
|
}
|
|
6523
6523
|
}, [u, f, i, h, v]), /* @__PURE__ */ n(Lc, { ...e, ref: c });
|
|
6524
|
-
}), [H6,
|
|
6524
|
+
}), [H6, j6] = Zt(He, { isInside: !1 }), V6 = /* @__PURE__ */ pn("TooltipContent"), Lc = a.forwardRef(
|
|
6525
6525
|
(e, t) => {
|
|
6526
6526
|
const {
|
|
6527
6527
|
__scopeTooltip: o,
|
|
@@ -6531,7 +6531,7 @@ var I6 = "TooltipPortal", [IC, x6] = Zt(I6, {
|
|
|
6531
6531
|
onPointerDownOutside: i,
|
|
6532
6532
|
...l
|
|
6533
6533
|
} = e, u = Bt(pe, o), h = Ft(o), { onClose: f } = u;
|
|
6534
|
-
return a.useEffect(() => (document.addEventListener(
|
|
6534
|
+
return a.useEffect(() => (document.addEventListener(j2, f), () => document.removeEventListener(j2, f)), [f]), a.useEffect(() => {
|
|
6535
6535
|
if (u.trigger) {
|
|
6536
6536
|
const p = (v) => {
|
|
6537
6537
|
v.target?.contains(u.trigger) && f();
|
|
@@ -6547,8 +6547,8 @@ var I6 = "TooltipPortal", [IC, x6] = Zt(I6, {
|
|
|
6547
6547
|
onPointerDownOutside: i,
|
|
6548
6548
|
onFocusOutside: (p) => p.preventDefault(),
|
|
6549
6549
|
onDismiss: f,
|
|
6550
|
-
children: /* @__PURE__ */
|
|
6551
|
-
|
|
6550
|
+
children: /* @__PURE__ */ j(
|
|
6551
|
+
At,
|
|
6552
6552
|
{
|
|
6553
6553
|
"data-state": u.stateAttribute,
|
|
6554
6554
|
...h,
|
|
@@ -6563,7 +6563,7 @@ var I6 = "TooltipPortal", [IC, x6] = Zt(I6, {
|
|
|
6563
6563
|
"--radix-tooltip-trigger-height": "var(--radix-popper-anchor-height)"
|
|
6564
6564
|
},
|
|
6565
6565
|
children: [
|
|
6566
|
-
/* @__PURE__ */ n(
|
|
6566
|
+
/* @__PURE__ */ n(V6, { children: r }),
|
|
6567
6567
|
/* @__PURE__ */ n(H6, { scope: o, isInside: !0, children: /* @__PURE__ */ n(R2, { id: u.contentId, role: "tooltip", children: s || r }) })
|
|
6568
6568
|
]
|
|
6569
6569
|
}
|
|
@@ -6576,14 +6576,14 @@ zc.displayName = pe;
|
|
|
6576
6576
|
var Rc = "TooltipArrow", Ec = a.forwardRef(
|
|
6577
6577
|
(e, t) => {
|
|
6578
6578
|
const { __scopeTooltip: o, ...r } = e, s = Ft(o);
|
|
6579
|
-
return
|
|
6579
|
+
return j6(
|
|
6580
6580
|
Rc,
|
|
6581
6581
|
o
|
|
6582
6582
|
).isInside ? null : /* @__PURE__ */ n(zt, { ...s, ...r, ref: t });
|
|
6583
6583
|
}
|
|
6584
6584
|
);
|
|
6585
6585
|
Ec.displayName = Rc;
|
|
6586
|
-
function
|
|
6586
|
+
function A6(e, t) {
|
|
6587
6587
|
const o = Math.abs(t.top - e.y), r = Math.abs(t.bottom - e.y), s = Math.abs(t.right - e.x), c = Math.abs(t.left - e.x);
|
|
6588
6588
|
switch (Math.min(o, r, s, c)) {
|
|
6589
6589
|
case c:
|
|
@@ -6675,7 +6675,7 @@ function T6(e) {
|
|
|
6675
6675
|
}
|
|
6676
6676
|
return o.pop(), t.length === 1 && o.length === 1 && t[0].x === o[0].x && t[0].y === o[0].y ? t : t.concat(o);
|
|
6677
6677
|
}
|
|
6678
|
-
var Tc =
|
|
6678
|
+
var Tc = jc, Pc = Vc, Nc = Ac, Oc = zc, P6 = Ec;
|
|
6679
6679
|
function Dc(e) {
|
|
6680
6680
|
var t, o, r = "";
|
|
6681
6681
|
if (typeof e == "string" || typeof e == "number") r += e;
|
|
@@ -6866,7 +6866,7 @@ const en = (e) => typeof e == "boolean" ? `${e}` : e === 0 ? "0" : e, tn = $c, c
|
|
|
6866
6866
|
c in o ? o[c] = i : s(c, i);
|
|
6867
6867
|
}
|
|
6868
6868
|
};
|
|
6869
|
-
},
|
|
6869
|
+
}, A2 = "!", nn = ":", X6 = [], rn = (e, t, o, r, s) => ({
|
|
6870
6870
|
modifiers: e,
|
|
6871
6871
|
hasImportantModifier: t,
|
|
6872
6872
|
baseClassName: o,
|
|
@@ -6897,12 +6897,12 @@ const en = (e) => typeof e == "boolean" ? `${e}` : e === 0 ? "0" : e, tn = $c, c
|
|
|
6897
6897
|
}
|
|
6898
6898
|
const p = c.length === 0 ? s : s.slice(u);
|
|
6899
6899
|
let v = p, g = !1;
|
|
6900
|
-
p.endsWith(
|
|
6900
|
+
p.endsWith(A2) ? (v = p.slice(0, -1), g = !0) : (
|
|
6901
6901
|
/**
|
|
6902
6902
|
* In Tailwind CSS v3 the important modifier was at the start of the base class name. This is still supported for legacy reasons.
|
|
6903
6903
|
* @see https://github.com/dcastil/tailwind-merge/issues/513#issuecomment-2614029864
|
|
6904
6904
|
*/
|
|
6905
|
-
p.startsWith(
|
|
6905
|
+
p.startsWith(A2) && (v = p.slice(1), g = !0)
|
|
6906
6906
|
);
|
|
6907
6907
|
const k = h && h > u ? h - u : void 0;
|
|
6908
6908
|
return rn(c, g, v, k);
|
|
@@ -6969,7 +6969,7 @@ const en = (e) => typeof e == "boolean" ? `${e}` : e === 0 ? "0" : e, tn = $c, c
|
|
|
6969
6969
|
}
|
|
6970
6970
|
C = !1;
|
|
6971
6971
|
}
|
|
6972
|
-
const w = v.length === 0 ? "" : v.length === 1 ? v[0] : c(v).join(":"), M = g ? w +
|
|
6972
|
+
const w = v.length === 0 ? "" : v.length === 1 ? v[0] : c(v).join(":"), M = g ? w + A2 : w, y = M + b;
|
|
6973
6973
|
if (i.indexOf(y) > -1)
|
|
6974
6974
|
continue;
|
|
6975
6975
|
i.push(y);
|
|
@@ -7039,7 +7039,7 @@ const en = (e) => typeof e == "boolean" ? `${e}` : e === 0 ? "0" : e, tn = $c, c
|
|
|
7039
7039
|
"bottom-left",
|
|
7040
7040
|
// Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
|
|
7041
7041
|
"left-bottom"
|
|
7042
|
-
], x = () => [...y(), Z, _], H = () => ["auto", "hidden", "clip", "visible", "scroll"], S = () => ["auto", "contain", "none"], I = () => [Z, _, u],
|
|
7042
|
+
], x = () => [...y(), Z, _], H = () => ["auto", "hidden", "clip", "visible", "scroll"], S = () => ["auto", "contain", "none"], I = () => [Z, _, u], A = () => [N1, "full", "auto", ...I()], O = () => [O1, "none", "subgrid", Z, _], F = () => ["auto", {
|
|
7043
7043
|
span: ["full", O1, Z, _]
|
|
7044
7044
|
}, O1, Z, _], U = () => [O1, "auto", Z, _], G = () => ["auto", "min", "max", "fr", Z, _], L = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], W = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], z = () => ["auto", ...I()], q = () => [N1, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...I()], $ = () => [N1, "screen", "full", "dvw", "lvw", "svw", "min", "max", "fit", ...I()], R = () => [N1, "screen", "full", "lh", "dvh", "lvh", "svh", "min", "max", "fit", ...I()], E = () => [e, Z, _], a1 = () => [...y(), ln, an, {
|
|
7045
7045
|
position: [Z, _]
|
|
@@ -7240,21 +7240,21 @@ const en = (e) => typeof e == "boolean" ? `${e}` : e === 0 ? "0" : e, tn = $c, c
|
|
|
7240
7240
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
7241
7241
|
*/
|
|
7242
7242
|
inset: [{
|
|
7243
|
-
inset:
|
|
7243
|
+
inset: A()
|
|
7244
7244
|
}],
|
|
7245
7245
|
/**
|
|
7246
7246
|
* Inset Inline
|
|
7247
7247
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
7248
7248
|
*/
|
|
7249
7249
|
"inset-x": [{
|
|
7250
|
-
"inset-x":
|
|
7250
|
+
"inset-x": A()
|
|
7251
7251
|
}],
|
|
7252
7252
|
/**
|
|
7253
7253
|
* Inset Block
|
|
7254
7254
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
7255
7255
|
*/
|
|
7256
7256
|
"inset-y": [{
|
|
7257
|
-
"inset-y":
|
|
7257
|
+
"inset-y": A()
|
|
7258
7258
|
}],
|
|
7259
7259
|
/**
|
|
7260
7260
|
* Inset Inline Start
|
|
@@ -7262,12 +7262,12 @@ const en = (e) => typeof e == "boolean" ? `${e}` : e === 0 ? "0" : e, tn = $c, c
|
|
|
7262
7262
|
* @todo class group will be renamed to `inset-s` in next major release
|
|
7263
7263
|
*/
|
|
7264
7264
|
start: [{
|
|
7265
|
-
"inset-s":
|
|
7265
|
+
"inset-s": A(),
|
|
7266
7266
|
/**
|
|
7267
7267
|
* @deprecated since Tailwind CSS v4.2.0 in favor of `inset-s-*` utilities.
|
|
7268
7268
|
* @see https://github.com/tailwindlabs/tailwindcss/pull/19613
|
|
7269
7269
|
*/
|
|
7270
|
-
start:
|
|
7270
|
+
start: A()
|
|
7271
7271
|
}],
|
|
7272
7272
|
/**
|
|
7273
7273
|
* Inset Inline End
|
|
@@ -7275,54 +7275,54 @@ const en = (e) => typeof e == "boolean" ? `${e}` : e === 0 ? "0" : e, tn = $c, c
|
|
|
7275
7275
|
* @todo class group will be renamed to `inset-e` in next major release
|
|
7276
7276
|
*/
|
|
7277
7277
|
end: [{
|
|
7278
|
-
"inset-e":
|
|
7278
|
+
"inset-e": A(),
|
|
7279
7279
|
/**
|
|
7280
7280
|
* @deprecated since Tailwind CSS v4.2.0 in favor of `inset-e-*` utilities.
|
|
7281
7281
|
* @see https://github.com/tailwindlabs/tailwindcss/pull/19613
|
|
7282
7282
|
*/
|
|
7283
|
-
end:
|
|
7283
|
+
end: A()
|
|
7284
7284
|
}],
|
|
7285
7285
|
/**
|
|
7286
7286
|
* Inset Block Start
|
|
7287
7287
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
7288
7288
|
*/
|
|
7289
7289
|
"inset-bs": [{
|
|
7290
|
-
"inset-bs":
|
|
7290
|
+
"inset-bs": A()
|
|
7291
7291
|
}],
|
|
7292
7292
|
/**
|
|
7293
7293
|
* Inset Block End
|
|
7294
7294
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
7295
7295
|
*/
|
|
7296
7296
|
"inset-be": [{
|
|
7297
|
-
"inset-be":
|
|
7297
|
+
"inset-be": A()
|
|
7298
7298
|
}],
|
|
7299
7299
|
/**
|
|
7300
7300
|
* Top
|
|
7301
7301
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
7302
7302
|
*/
|
|
7303
7303
|
top: [{
|
|
7304
|
-
top:
|
|
7304
|
+
top: A()
|
|
7305
7305
|
}],
|
|
7306
7306
|
/**
|
|
7307
7307
|
* Right
|
|
7308
7308
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
7309
7309
|
*/
|
|
7310
7310
|
right: [{
|
|
7311
|
-
right:
|
|
7311
|
+
right: A()
|
|
7312
7312
|
}],
|
|
7313
7313
|
/**
|
|
7314
7314
|
* Bottom
|
|
7315
7315
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
7316
7316
|
*/
|
|
7317
7317
|
bottom: [{
|
|
7318
|
-
bottom:
|
|
7318
|
+
bottom: A()
|
|
7319
7319
|
}],
|
|
7320
7320
|
/**
|
|
7321
7321
|
* Left
|
|
7322
7322
|
* @see https://tailwindcss.com/docs/top-right-bottom-left
|
|
7323
7323
|
*/
|
|
7324
7324
|
left: [{
|
|
7325
|
-
left:
|
|
7325
|
+
left: A()
|
|
7326
7326
|
}],
|
|
7327
7327
|
/**
|
|
7328
7328
|
* Visibility
|
|
@@ -9736,17 +9736,17 @@ function d(e, t) {
|
|
|
9736
9736
|
const o = a.forwardRef(
|
|
9737
9737
|
(r, s) => a.createElement(S8, {
|
|
9738
9738
|
ref: s,
|
|
9739
|
-
"data-slot": `${
|
|
9739
|
+
"data-slot": `${j8(e)}`,
|
|
9740
9740
|
children: t,
|
|
9741
9741
|
...r
|
|
9742
9742
|
})
|
|
9743
9743
|
);
|
|
9744
9744
|
return o.displayName = e, o;
|
|
9745
9745
|
}
|
|
9746
|
-
function
|
|
9746
|
+
function j8(e) {
|
|
9747
9747
|
return e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").replace(/[_\s]+/g, "-").toLowerCase();
|
|
9748
9748
|
}
|
|
9749
|
-
function
|
|
9749
|
+
function V8({ columnGap: e, gap: t, rowGap: o }) {
|
|
9750
9750
|
return {
|
|
9751
9751
|
...t && { gap: u1(t) },
|
|
9752
9752
|
...e && {
|
|
@@ -9808,7 +9808,7 @@ function ra({ p: e, pb: t, pe: o, ps: r, pt: s, px: c, py: i }) {
|
|
|
9808
9808
|
function u1(e) {
|
|
9809
9809
|
return e === "px" ? 1 : typeof e == "string" && /^\d+%$/.test(e) ? e : typeof e == "number" ? `calc(${e} * var(--ksjsui-spacing))` : e === "auto" ? "auto" : e;
|
|
9810
9810
|
}
|
|
9811
|
-
const
|
|
9811
|
+
const A8 = c1(
|
|
9812
9812
|
[
|
|
9813
9813
|
"ksjsui:relative ksjsui:flex ksjsui:shrink-0 ksjsui:rounded-full",
|
|
9814
9814
|
"ksjsui:forced-colors:outline-1"
|
|
@@ -9830,7 +9830,7 @@ const j8 = c1(
|
|
|
9830
9830
|
{
|
|
9831
9831
|
ref: r,
|
|
9832
9832
|
"data-slot": "ksjsui-avatar",
|
|
9833
|
-
className: P(
|
|
9833
|
+
className: P(A8({ size: t, className: e })),
|
|
9834
9834
|
...o
|
|
9835
9835
|
}
|
|
9836
9836
|
));
|
|
@@ -9971,7 +9971,7 @@ const aa = a.forwardRef((e, t) => /* @__PURE__ */ n(
|
|
|
9971
9971
|
aa.displayName = s0.displayName;
|
|
9972
9972
|
const Co = a.forwardRef(({ className: e, children: t, axis: o = "both", ...r }, s) => {
|
|
9973
9973
|
const c = o === "x" || o === "both", i = o === "y" || o === "both";
|
|
9974
|
-
return /* @__PURE__ */
|
|
9974
|
+
return /* @__PURE__ */ j(
|
|
9975
9975
|
b0,
|
|
9976
9976
|
{
|
|
9977
9977
|
ref: s,
|
|
@@ -10057,7 +10057,7 @@ function xC({
|
|
|
10057
10057
|
h || v(D), s?.(D);
|
|
10058
10058
|
},
|
|
10059
10059
|
[h, s]
|
|
10060
|
-
), [C, b] = a.useState(k), [w, M] = a.useState(k), [y, x] = a.useState(!1), [H, S] = a.useState(-1), I = a.useRef(!1),
|
|
10060
|
+
), [C, b] = a.useState(k), [w, M] = a.useState(k), [y, x] = a.useState(!1), [H, S] = a.useState(-1), I = a.useRef(!1), A = a.useRef(null), O = o ?? f, F = O, U = `ksjsui-autocomplete-listbox-${O}`, G = a.useMemo(() => c.map((D) => ({
|
|
10061
10061
|
original: D,
|
|
10062
10062
|
lowerCased: D.toLocaleLowerCase()
|
|
10063
10063
|
})), [c]), L = a.useCallback(
|
|
@@ -10098,7 +10098,7 @@ function xC({
|
|
|
10098
10098
|
},
|
|
10099
10099
|
[z, m]
|
|
10100
10100
|
);
|
|
10101
|
-
return /* @__PURE__ */ n("div", { className: e, children: /* @__PURE__ */
|
|
10101
|
+
return /* @__PURE__ */ n("div", { className: e, children: /* @__PURE__ */ j(
|
|
10102
10102
|
sa,
|
|
10103
10103
|
{
|
|
10104
10104
|
onOpenChange: (D) => D ? q() : $(!0),
|
|
@@ -10157,7 +10157,7 @@ function xC({
|
|
|
10157
10157
|
}
|
|
10158
10158
|
},
|
|
10159
10159
|
placeholder: i,
|
|
10160
|
-
ref:
|
|
10160
|
+
ref: A,
|
|
10161
10161
|
role: "combobox",
|
|
10162
10162
|
spellCheck: !1,
|
|
10163
10163
|
value: w,
|
|
@@ -10175,10 +10175,10 @@ function xC({
|
|
|
10175
10175
|
"data-slot": "ksjsui-autocomplete-listbox",
|
|
10176
10176
|
onCloseAutoFocus: (D) => D.preventDefault(),
|
|
10177
10177
|
onFocusOutside: (D) => {
|
|
10178
|
-
|
|
10178
|
+
A.current?.contains(D.target) && D.preventDefault();
|
|
10179
10179
|
},
|
|
10180
10180
|
onInteractOutside: (D) => {
|
|
10181
|
-
|
|
10181
|
+
A.current?.contains(D.target) && D.preventDefault();
|
|
10182
10182
|
},
|
|
10183
10183
|
onOpenAutoFocus: (D) => D.preventDefault(),
|
|
10184
10184
|
role: "presentation",
|
|
@@ -10338,7 +10338,7 @@ const F8 = c1(
|
|
|
10338
10338
|
da.displayName = "Loader";
|
|
10339
10339
|
const B8 = c1(
|
|
10340
10340
|
[
|
|
10341
|
-
"ksjsui:relative ksjsui:inline-flex ksjsui:items-center ksjsui:justify-center ksjsui:border ksjsui:border-transparent ksjsui:text-
|
|
10341
|
+
"ksjsui:relative ksjsui:inline-flex ksjsui:items-center ksjsui:justify-center ksjsui:border ksjsui:border-transparent ksjsui:text-default ksjsui:whitespace-nowrap ksjsui:text-current ksjsui:transition-colors",
|
|
10342
10342
|
"ksjsui:outline-offset-2 ksjsui:focus-visible:outline-2 ksjsui:focus-visible:outline-ring",
|
|
10343
10343
|
"ksjsui:disabled:cursor-not-allowed ksjsui:disabled:bg-disabled ksjsui:disabled:text-disabled-foreground",
|
|
10344
10344
|
"ksjsui:[&_svg]:pointer-events-none ksjsui:[&_svg]:shrink-0"
|
|
@@ -10346,6 +10346,7 @@ const B8 = c1(
|
|
|
10346
10346
|
{
|
|
10347
10347
|
variants: {
|
|
10348
10348
|
variant: {
|
|
10349
|
+
ghost: "",
|
|
10349
10350
|
glass: [
|
|
10350
10351
|
"ksjsui:border ksjsui:border-white/65 ksjsui:bg-white/85 ksjsui:shadow-md ksjsui:backdrop-blur-lg",
|
|
10351
10352
|
"ksjsui:dark:text-background"
|
|
@@ -10369,17 +10370,12 @@ const B8 = c1(
|
|
|
10369
10370
|
destructive: "ksjsui:bg-destructive ksjsui:text-destructive-foreground ksjsui:not-disabled:hover:bg-destructive-hover"
|
|
10370
10371
|
},
|
|
10371
10372
|
contentAlign: {
|
|
10372
|
-
start: "",
|
|
10373
|
-
|
|
10374
|
-
end: ""
|
|
10373
|
+
start: "ksjsui:**:data-[slot=ksjsui-button-content]:grow ksjsui:**:data-[slot=ksjsui-button-content]:text-start",
|
|
10374
|
+
end: "ksjsui:**:data-[slot=ksjsui-button-content]:grow ksjsui:**:data-[slot=ksjsui-button-content]:text-end"
|
|
10375
10375
|
},
|
|
10376
10376
|
fullWidth: {
|
|
10377
10377
|
true: "ksjsui:w-full"
|
|
10378
10378
|
},
|
|
10379
|
-
loading: {
|
|
10380
|
-
false: "",
|
|
10381
|
-
true: ""
|
|
10382
|
-
},
|
|
10383
10379
|
radius: {
|
|
10384
10380
|
full: "ksjsui:rounded-full",
|
|
10385
10381
|
lg: "ksjsui:rounded-lg",
|
|
@@ -10404,28 +10400,37 @@ const B8 = c1(
|
|
|
10404
10400
|
},
|
|
10405
10401
|
compoundVariants: [
|
|
10406
10402
|
{
|
|
10407
|
-
variant: ["glass", "outline", "solid"],
|
|
10403
|
+
variant: ["ghost", "glass", "outline", "solid"],
|
|
10408
10404
|
size: ["2xs"],
|
|
10409
10405
|
className: "ksjsui:p-0.5"
|
|
10410
10406
|
},
|
|
10411
10407
|
{
|
|
10412
|
-
variant: ["glass", "outline", "solid"],
|
|
10408
|
+
variant: ["ghost", "glass", "outline", "solid"],
|
|
10413
10409
|
size: ["xs"],
|
|
10414
10410
|
className: "ksjsui:p-1"
|
|
10415
10411
|
},
|
|
10416
10412
|
{
|
|
10417
|
-
variant: ["glass", "outline", "solid"],
|
|
10413
|
+
variant: ["ghost", "glass", "outline", "solid"],
|
|
10418
10414
|
size: ["sm", "md", "lg"],
|
|
10419
10415
|
className: "ksjsui:p-2"
|
|
10420
10416
|
},
|
|
10421
10417
|
{
|
|
10422
|
-
variant: ["plain", "link"],
|
|
10418
|
+
variant: ["plain", "link", "ghost"],
|
|
10423
10419
|
className: "ksjsui:disabled:bg-transparent"
|
|
10424
10420
|
},
|
|
10425
10421
|
{
|
|
10426
10422
|
variant: ["outline", "plain", "link"],
|
|
10427
10423
|
className: "ksjsui:bg-transparent ksjsui:not-disabled:hover:bg-transparent"
|
|
10428
10424
|
},
|
|
10425
|
+
{
|
|
10426
|
+
variant: "ghost",
|
|
10427
|
+
className: "ksjsui:bg-transparent"
|
|
10428
|
+
},
|
|
10429
|
+
{
|
|
10430
|
+
variant: "ghost",
|
|
10431
|
+
color: "neutral",
|
|
10432
|
+
className: "ksjsui:not-disabled:hover:bg-(--ksjsui-color-background-gray) ksjsui:dark:not-disabled:hover:bg-(--ksjsui-color-charcoal)"
|
|
10433
|
+
},
|
|
10429
10434
|
{
|
|
10430
10435
|
variant: ["outline", "plain", "link"],
|
|
10431
10436
|
color: "primary",
|
|
@@ -10450,21 +10455,6 @@ const B8 = c1(
|
|
|
10450
10455
|
variant: "outline",
|
|
10451
10456
|
color: "secondary",
|
|
10452
10457
|
className: "ksjsui:not-disabled:hover:bg-secondary-outline-hover"
|
|
10453
|
-
},
|
|
10454
|
-
{
|
|
10455
|
-
fullWidth: !0,
|
|
10456
|
-
contentAlign: ["start", "end"],
|
|
10457
|
-
className: "ksjsui:**:data-[slot=ksjsui-button-content]:grow"
|
|
10458
|
-
},
|
|
10459
|
-
{
|
|
10460
|
-
fullWidth: !0,
|
|
10461
|
-
contentAlign: "start",
|
|
10462
|
-
className: "ksjsui:**:data-[slot=ksjsui-button-content]:text-start"
|
|
10463
|
-
},
|
|
10464
|
-
{
|
|
10465
|
-
fullWidth: !0,
|
|
10466
|
-
contentAlign: "end",
|
|
10467
|
-
className: "ksjsui:**:data-[slot=ksjsui-button-content]:text-end"
|
|
10468
10458
|
}
|
|
10469
10459
|
]
|
|
10470
10460
|
}
|
|
@@ -10487,7 +10477,7 @@ const B8 = c1(
|
|
|
10487
10477
|
...k
|
|
10488
10478
|
}, m) => {
|
|
10489
10479
|
const C = h ? Ct : "button";
|
|
10490
|
-
return /* @__PURE__ */
|
|
10480
|
+
return /* @__PURE__ */ j(
|
|
10491
10481
|
C,
|
|
10492
10482
|
{
|
|
10493
10483
|
className: P(
|
|
@@ -10496,7 +10486,6 @@ const B8 = c1(
|
|
|
10496
10486
|
color: s,
|
|
10497
10487
|
contentAlign: c,
|
|
10498
10488
|
fullWidth: i,
|
|
10499
|
-
loading: v,
|
|
10500
10489
|
radius: l,
|
|
10501
10490
|
size: u
|
|
10502
10491
|
}),
|
|
@@ -10567,13 +10556,13 @@ function Je({
|
|
|
10567
10556
|
}
|
|
10568
10557
|
) : null;
|
|
10569
10558
|
}
|
|
10570
|
-
const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-2.16l5.06-14h2.14l5.04 14zm-1.76-5.06-1.7-4.76q-.36-.98-.48-1.58-.18.72-.48 1.58l-1.72 4.76z" }),
|
|
10559
|
+
const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-2.16l5.06-14h2.14l5.04 14zm-1.76-5.06-1.7-4.76q-.36-.98-.48-1.58-.18.72-.48 1.58l-1.72 4.76z" }), jC = d("AIcon", q8), U8 = /* @__PURE__ */ n(
|
|
10571
10560
|
"path",
|
|
10572
10561
|
{
|
|
10573
10562
|
fillRule: "evenodd",
|
|
10574
10563
|
d: "m10.22 4.66 2.36-2.36 2.36 2.36zm4.69 14.71-2.33 2.33-2.33-2.33zM1.6 17.73 6.1 6.27h1.64l4.49 11.46h-1.84l-.92-2.45H4.36l-.92 2.45zm3.37-4.09 1.94-5.18 1.94 5.18zm16.88 2.5h-6.12l5.93-8.6V6.28h-8.3v1.6h5.88l-5.92 8.56v1.29h8.53z"
|
|
10575
10564
|
}
|
|
10576
|
-
),
|
|
10565
|
+
), VC = d("AZArrowsIcon", U8), W8 = /* @__PURE__ */ n("path", { d: "M1.6 17.73 6.1 6.27h1.64l4.49 11.46h-1.84l-.92-2.45H4.36l-.92 2.45zm5.31-9.27-1.94 5.18h3.88zm8.82 7.68h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26zm-1.38-5.41h-3v1.6h3z" }), AC = d("AZMinusIcon", W8), G8 = /* @__PURE__ */ n("path", { d: "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2" }), zC = d("AccessibilityIcon", G8), K8 = /* @__PURE__ */ n("path", { d: "M19 9H5V7h14zM5 13h14v-2H5zm0 4h14v-2H5z" }), LC = d("AlignJustifyIcon", K8), X8 = /* @__PURE__ */ j(T, { children: [
|
|
10577
10566
|
/* @__PURE__ */ n(
|
|
10578
10567
|
"path",
|
|
10579
10568
|
{
|
|
@@ -10611,10 +10600,10 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10611
10600
|
), PC = d("AppWindow2Icon", J8), e7 = /* @__PURE__ */ n("path", { d: "M9 12h9.8l-2.5-2.5 1.4-1.4 4.9 4.9-4.9 4.9-1.4-1.4 2.5-2.5H9zm12 5.4V20H3V6h18v2.6l2 2V4c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-4.6z" }), NC = d(
|
|
10612
10601
|
"AppWindowArrowRightIcon",
|
|
10613
10602
|
e7
|
|
10614
|
-
), t7 = /* @__PURE__ */ n("path", { d: "M5 4h14a2 2 0 0 1 2 2v12c0 1.1-.9 2-2 2h-4v-2h4V8H5v10h4v2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m3 10 4-4 4 4h-3v6h-2v-6z" }), OC = d("AppWindowArrowUpIcon", t7), o7 = /* @__PURE__ */
|
|
10603
|
+
), t7 = /* @__PURE__ */ n("path", { d: "M5 4h14a2 2 0 0 1 2 2v12c0 1.1-.9 2-2 2h-4v-2h4V8H5v10h4v2H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2m3 10 4-4 4 4h-3v6h-2v-6z" }), OC = d("AppWindowArrowUpIcon", t7), o7 = /* @__PURE__ */ j(T, { children: [
|
|
10615
10604
|
/* @__PURE__ */ n("path", { d: "M21 2H3a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m0 18H3V6h18z" }),
|
|
10616
10605
|
/* @__PURE__ */ n("path", { d: "M8.52 16.833a2.9 2.9 0 0 1-2.106-.85 2.81 2.81 0 0 1-.872-2.085q0-1.057.633-1.886a2.8 2.8 0 0 1 1.669-1.056 3.68 3.68 0 0 1 1.354-2.015 3.7 3.7 0 0 1 2.302-.774q1.587 0 2.687 1.105 1.105 1.1 1.105 2.686a2.34 2.34 0 0 1 1.549.813q.617.693.617 1.625 0 1.019-.71 1.728-.708.71-1.727.71z" })
|
|
10617
|
-
] }), DC = d("AppWindowCloudIcon", o7), n7 = /* @__PURE__ */ n("path", { d: "M9.5 8.5 11 10l-3 3 3 3-1.5 1.5L5 13zm5 9L13 16l3-3-3-3 1.5-1.5L19 13zM21 2H3a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m0 18H3V6h18z" }), $C = d("AppWindowCodeIcon", n7), r7 = /* @__PURE__ */
|
|
10606
|
+
] }), DC = d("AppWindowCloudIcon", o7), n7 = /* @__PURE__ */ n("path", { d: "M9.5 8.5 11 10l-3 3 3 3-1.5 1.5L5 13zm5 9L13 16l3-3-3-3 1.5-1.5L19 13zM21 2H3a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m0 18H3V6h18z" }), $C = d("AppWindowCodeIcon", n7), r7 = /* @__PURE__ */ j(T, { children: [
|
|
10618
10607
|
/* @__PURE__ */ n(
|
|
10619
10608
|
"path",
|
|
10620
10609
|
{
|
|
@@ -10631,7 +10620,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10631
10620
|
clipRule: "evenodd"
|
|
10632
10621
|
}
|
|
10633
10622
|
)
|
|
10634
|
-
] }), _C = d("AppWindowCogIcon", r7), s7 = /* @__PURE__ */ n("path", { d: "M18.1 12.2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1l1.1.8c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2zM18 3a2 2 0 0 1 2 2v5.68a7 7 0 0 0-2-.6V7H4v10h6c0 .7.11 1.37.29 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-1 12.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5" }), ZC = d("AppWindowCog2Icon", s7), c7 = /* @__PURE__ */
|
|
10623
|
+
] }), _C = d("AppWindowCogIcon", r7), s7 = /* @__PURE__ */ n("path", { d: "M18.1 12.2c.1 0 .2.1.2.2l.2 1.3c.3.1.6.3.9.5l1.2-.5c.1 0 .3 0 .3.1l1 1.7c.1.1 0 .2-.1.3l-1.1.8v1l1.1.8c.1 0 .1.1 0 .2l-1 1.7c-.1.1-.2.1-.3.1l-1.2-.4c-.3.2-.5.3-.8.5l-.2 1.3c0 .1-.1.2-.2.2h-2c-.1 0-.2-.1-.3-.2l-.2-1.3c-.3-.1-.6-.3-.8-.5l-1.2.5c-.1 0-.2 0-.3-.1l-1-1.7c-.1-.1 0-.2.1-.3l1.1-.8v-1l-1.1-.8c-.1-.1-.1-.2-.1-.3l1-1.7c.1-.1.2-.1.3-.1l1.2.5c.3-.2.5-.3.8-.5l.2-1.3c0-.1.1-.2.3-.2zM18 3a2 2 0 0 1 2 2v5.68a7 7 0 0 0-2-.6V7H4v10h6c0 .7.11 1.37.29 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2zm-1 12.5c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5" }), ZC = d("AppWindowCog2Icon", s7), c7 = /* @__PURE__ */ j(T, { children: [
|
|
10635
10624
|
/* @__PURE__ */ n("path", { d: "M21 2a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zM3 6v14h18V6z" }),
|
|
10636
10625
|
/* @__PURE__ */ n("path", { d: "M21 2v-.1zm1.414.586.07-.07zM1.586 21.414l-.07.07zM1 20H.9zM1 4H.9zm.586-1.414-.07-.07zM3 2v-.1zm0 4v-.1h-.1V6zm0 14h-.1v.1H3zm18 0v.1h.1V20zm0-14h.1v-.1H21zm0-4v.1c.504 0 .987.2 1.343.557l.071-.071.07-.07A2.1 2.1 0 0 0 21 1.9zm1.414.586-.07.07A1.9 1.9 0 0 1 22.9 4h.2a2.1 2.1 0 0 0-.615-1.485zM23 4h-.1v16h.2V4zm0 16h-.1c0 .504-.2.987-.557 1.343l.071.071.07.07A2.1 2.1 0 0 0 23.1 20zm-.586 1.414-.07-.07A1.9 1.9 0 0 1 21 21.9v.2a2.1 2.1 0 0 0 1.485-.615zM21 22v-.1H3v.2h18zM3 22v-.1a1.9 1.9 0 0 1-1.343-.557l-.071.071-.07.07A2.1 2.1 0 0 0 3 22.1zm-1.414-.586.07-.07A1.9 1.9 0 0 1 1.1 20H.9a2.1 2.1 0 0 0 .615 1.485zM1 20h.1V4H.9v16zM1 4h.1c0-.504.2-.987.557-1.343l-.071-.071-.07-.07A2.1 2.1 0 0 0 .9 4zm.586-1.414.07.07A1.9 1.9 0 0 1 3 2.1v-.2a2.1 2.1 0 0 0-1.485.615zM3 2v.1h18v-.2H3zm0 4h-.1v14h.2V6zm0 14v.1h18v-.2H3zm18 0h.1V6h-.2v14zm0-14v-.1H3v.2h18z" }),
|
|
10637
10626
|
/* @__PURE__ */ n("circle", { cx: "7", cy: "13", r: "1.5" }),
|
|
@@ -10640,7 +10629,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10640
10629
|
] }), FC = d(
|
|
10641
10630
|
"AppWindowEllipsisIcon",
|
|
10642
10631
|
c7
|
|
10643
|
-
), a7 = /* @__PURE__ */
|
|
10632
|
+
), a7 = /* @__PURE__ */ j(T, { children: [
|
|
10644
10633
|
/* @__PURE__ */ n(
|
|
10645
10634
|
"path",
|
|
10646
10635
|
{
|
|
@@ -10658,7 +10647,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10658
10647
|
), u7 = /* @__PURE__ */ n("path", { d: "M18.605 16.695c1.32-2.1.7-4.89-1.41-6.21a4.52 4.52 0 0 0-6.21 1.41c-1.32 2.11-.68 4.91 1.41 6.21 1.47.92 3.33.92 4.8 0l3.11 3.09 1.39-1.39zm-2-.62c-.98.98-2.56.97-3.54 0-.97-.98-.97-2.56.01-3.54.97-.97 2.55-.97 3.53 0 .96.99.95 2.57-.03 3.54zm1.7-13.27h-14a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h5.81a6.3 6.3 0 0 1-1.31-2h-4.5v-4h4.18c.16-.71.43-1.39.82-2h-5v-4h6v2.81a6.3 6.3 0 0 1 2-1.31v-1.5h6v2a6.5 6.5 0 0 1 2 2v-6a2 2 0 0 0-2-2" }), GC = d(
|
|
10659
10648
|
"AppWindowGridSearchIcon",
|
|
10660
10649
|
u7
|
|
10661
|
-
), h7 = /* @__PURE__ */
|
|
10650
|
+
), h7 = /* @__PURE__ */ j(T, { children: [
|
|
10662
10651
|
/* @__PURE__ */ n("path", { d: "M21 2H3a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m0 18H3V6h18z" }),
|
|
10663
10652
|
/* @__PURE__ */ n(
|
|
10664
10653
|
"path",
|
|
@@ -10670,8 +10659,8 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10670
10659
|
] }), KC = d(
|
|
10671
10660
|
"AppWindowLockKeyholeIcon",
|
|
10672
10661
|
h7
|
|
10673
|
-
), f7 = /* @__PURE__ */
|
|
10674
|
-
/* @__PURE__ */
|
|
10662
|
+
), f7 = /* @__PURE__ */ j(T, { children: [
|
|
10663
|
+
/* @__PURE__ */ j("g", { clipPath: "url(#clip0_1268_26388)", children: [
|
|
10675
10664
|
/* @__PURE__ */ n("rect", { x: "10", y: "8", width: "10", height: "4" }),
|
|
10676
10665
|
/* @__PURE__ */ n(
|
|
10677
10666
|
"path",
|
|
@@ -10738,16 +10727,16 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10738
10727
|
fillRule: "evenodd",
|
|
10739
10728
|
d: "M10.712 1.75a1.81 1.81 0 0 1 3.236-.002l6.072 12.15c.784 1.57-.901 3.224-2.457 2.41l-3.408-1.777v6.91a1.81 1.81 0 1 1-3.62-.001l.002-6.927-3.44 1.797c-1.554.812-3.24-.843-2.457-2.413l6.072-12.15z"
|
|
10740
10729
|
}
|
|
10741
|
-
), ak = d("ArrowUpIcon", S7), H7 = /* @__PURE__ */ n("path", { d: "M8.786 2 4.5 6.433h3.214v7.79h2.143v-7.79h3.214zm7.5 15.567v-7.79h-2.143v7.79h-3.214L15.214 22l4.286-4.433z" }), ik = d("ArrowUpArrowDownIcon", H7),
|
|
10730
|
+
), ak = d("ArrowUpIcon", S7), H7 = /* @__PURE__ */ n("path", { d: "M8.786 2 4.5 6.433h3.214v7.79h2.143v-7.79h3.214zm7.5 15.567v-7.79h-2.143v7.79h-3.214L15.214 22l4.286-4.433z" }), ik = d("ArrowUpArrowDownIcon", H7), j7 = /* @__PURE__ */ n("path", { d: "M15 10v6H9v-6H5l7-7 7 7zm4 10v-2H5v2z" }), lk = d("ArrowUpFromLineIcon", j7), V7 = /* @__PURE__ */ n("path", { d: "M19 7h3l-4-4-4 4h3v14h2M2 17h10v2H2M6 5v2H2V5m0 6h7v2H2z" }), dk = d(
|
|
10742
10731
|
"ArrowUpNarrowWideIcon",
|
|
10743
|
-
|
|
10744
|
-
),
|
|
10732
|
+
V7
|
|
10733
|
+
), A7 = /* @__PURE__ */ n(
|
|
10745
10734
|
"path",
|
|
10746
10735
|
{
|
|
10747
10736
|
className: "ksjsui-fill-foreground",
|
|
10748
10737
|
d: "M7.64 10.38c0 .25.02.45.07.62.05.12.12.28.21.46.04.04.05.1.05.15 0 .07-.04.13-.13.2l-.42.28c-.06.04-.12.06-.17.06-.07 0-.13-.04-.2-.1-.09-.1-.17-.2-.24-.31-.06-.11-.13-.24-.2-.39-.52.61-1.17.92-1.96.92-.56 0-1-.16-1.33-.48-.32-.32-.49-.75-.49-1.29 0-.55.2-1 .6-1.36.41-.34.95-.52 1.63-.52.23 0 .44.02.71.06.23.03.5.08.76.14v-.48c0-.51-.1-.84-.31-1.07-.22-.21-.57-.3-1.08-.3-.24 0-.48.03-.72.08-.25.06-.49.13-.72.23-.11.04-.2.07-.23.08-.05.02-.08.02-.11.02-.09 0-.14-.06-.14-.2v-.33c0-.1.01-.18.05-.23q.045-.075.18-.12c.24-.14.51-.24.84-.32a4 4 0 0 1 1.04-.13q1.185 0 1.74.54c.37.36.55.91.55 1.64v2.15zm-2.7 1.02c.22 0 .44-.04.68-.12s.45-.23.63-.43c.11-.13.19-.27.25-.43 0-.16.05-.35.05-.58v-.27c-.2-.07-.4-.07-.62-.12a7 7 0 0 0-.62-.04c-.45 0-.77.09-.99.27s-.32.43-.32.76c0 .32.07.56.24.71.16.17.39.25.7.25m5.34.71a.6.6 0 0 1-.28-.06c-.03-.05-.08-.14-.12-.26L8.32 6.65c-.04-.15-.06-.22-.06-.27 0-.11.05-.17.16-.17h.65c.13 0 .22.02.26.07.06.04.1.13.14.26l1.11 4.4 1.04-4.4c.03-.13.07-.22.13-.26.05-.04.14-.07.25-.07h.55c.12 0 .21.02.26.07.05.04.1.13.13.26L14 11l1.14-4.46c.04-.13.09-.22.13-.26.06-.04.14-.07.26-.07h.62c.11 0 .17.06.17.17 0 .03-.01.07-.02.12 0 0-.02.08-.04.15l-1.61 5.14c-.04.14-.08.21-.15.26-.04.04-.13.07-.24.07h-.57c-.13 0-.19-.02-.27-.07a.45.45 0 0 1-.12-.26L12.27 7.5l-1.03 4.28q-.045.195-.12.27a.5.5 0 0 1-.27.06zm8.55.18c-.33 0-.7-.04-1.03-.12s-.59-.17-.76-.26a.5.5 0 0 1-.21-.19.4.4 0 0 1-.04-.18v-.34c0-.14.05-.2.15-.2h.12c.04 0 .1.05.17.08.22.1.47.18.73.23.27.05.54.08.79.08.42 0 .75-.07.97-.22.23-.17.35-.36.35-.63 0-.19-.07-.34-.18-.47-.12-.12-.35-.24-.67-.34l-.97-.3c-.48-.16-.84-.38-1.06-.68a1.58 1.58 0 0 1-.33-.97c0-.28.06-.52.18-.73.12-.22.28-.4.46-.55.22-.15.44-.26.71-.34q.39-.12.84-.12.21 0 .45.03c.14.02.28.05.42.07.14.04.26.07.38.11s.2.08.28.12c.09.05.16.1.2.16s.06.13.06.22v.32q0 .21-.15.21c-.05 0-.14-.03-.26-.08-.37-.17-.8-.26-1.27-.26-.38 0-.66.06-.89.19-.2.12-.31.32-.31.59 0 .19.07.35.2.47.13.13.38.25.73.37l.95.3c.48.14.82.36 1.03.64q.3.405.3.93c0 .28-.06.54-.17.77-.12.22-.28.42-.5.58-.19.17-.44.29-.72.38s-.62.13-.95.13m1.25 3.24C17.89 17.14 14.71 18 12 18c-3.85 0-7.3-1.42-9.91-3.77-.21-.19-.02-.44.23-.29 2.82 1.63 6.29 2.62 9.89 2.62 2.43 0 5.1-.5 7.55-1.56.37-.15.68.26.32.53M21 14.5c-.29-.37-1.86-.18-2.57-.1-.21.03-.24-.16-.05-.3 1.25-.87 3.31-.6 3.54-.33.24.3-.06 2.36-1.23 3.34-.19.15-.36.07-.28-.11.27-.68.86-2.16.59-2.5"
|
|
10749
10738
|
}
|
|
10750
|
-
), uk = d("AwsLogoIcon",
|
|
10739
|
+
), uk = d("AwsLogoIcon", A7), z7 = /* @__PURE__ */ n("path", { d: "m23 12-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68zm-13 5-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9z" }), hk = d("BadgeCheckIcon", z7), L7 = /* @__PURE__ */ n("path", { d: "M18 19H6V17.6C6 15.6 10 14.5 12 14.5C14 14.5 18 15.6 18 17.6M12 7C12.7956 7 13.5587 7.31607 14.1213 7.87868C14.6839 8.44129 15 9.20435 15 10C15 10.7956 14.6839 11.5587 14.1213 12.1213C13.5587 12.6839 12.7956 13 12 13C11.2044 13 10.4413 12.6839 9.87868 12.1213C9.31607 11.5587 9 10.7956 9 10C9 9.20435 9.31607 8.44129 9.87868 7.87868C10.4413 7.31607 11.2044 7 12 7ZM12 3C12.2652 3 12.5196 3.10536 12.7071 3.29289C12.8946 3.48043 13 3.73478 13 4C13 4.26522 12.8946 4.51957 12.7071 4.70711C12.5196 4.89464 12.2652 5 12 5C11.7348 5 11.4804 4.89464 11.2929 4.70711C11.1054 4.51957 11 4.26522 11 4C11 3.73478 11.1054 3.48043 11.2929 3.29289C11.4804 3.10536 11.7348 3 12 3ZM19 3H14.82C14.4 1.84 13.3 1 12 1C10.7 1 9.6 1.84 9.18 3H5C4.46957 3 3.96086 3.21071 3.58579 3.58579C3.21071 3.96086 3 4.46957 3 5V19C3 19.5304 3.21071 20.0391 3.58579 20.4142C3.96086 20.7893 4.46957 21 5 21H19C19.5304 21 20.0391 20.7893 20.4142 20.4142C20.7893 20.0391 21 19.5304 21 19V5C21 4.46957 20.7893 3.96086 20.4142 3.58579C20.0391 3.21071 19.5304 3 19 3Z" }), fk = d("BadgeUserIcon", L7), R7 = /* @__PURE__ */ n("path", { d: "M15 3h-3v2h3v16H5V5h3V3H5a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m-5 4a2 2 0 1 1 0 4 2 2 0 0 1 0-4m4 8H6v-1c0-1.33 2.67-2 4-2s4 .67 4 2zm0 3H6v-1h8zm-4 2H6v-1h4zm1-15H9V1h2zm8 8V7h2v6zm0 4v-2h2v2z" }), pk = d("BadgeUserAlertIcon", R7), E7 = /* @__PURE__ */ n(
|
|
10751
10740
|
"path",
|
|
10752
10741
|
{
|
|
10753
10742
|
fillRule: "evenodd",
|
|
@@ -10765,7 +10754,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10765
10754
|
), Sk = d(
|
|
10766
10755
|
"BriefcaseBusinessIcon",
|
|
10767
10756
|
q7
|
|
10768
|
-
), U7 = /* @__PURE__ */
|
|
10757
|
+
), U7 = /* @__PURE__ */ j(T, { children: [
|
|
10769
10758
|
/* @__PURE__ */ n(
|
|
10770
10759
|
"path",
|
|
10771
10760
|
{
|
|
@@ -10778,14 +10767,14 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10778
10767
|
] }), Hk = d(
|
|
10779
10768
|
"BriefcaseBusinessShieldIcon",
|
|
10780
10769
|
U7
|
|
10781
|
-
), W7 = /* @__PURE__ */ n("path", { d: "M20 8h-2.81a6 6 0 0 0-1.815-1.96L17 4.415 15.585 3 13.41 5.175A6 6 0 0 0 12 5c-.485 0-.96.065-1.41.175L8.415 3 7 4.415 8.625 6.04A6 6 0 0 0 6.81 8H4v2h2.09c-.055.325-.09.66-.09 1v1H4v2h2v1c0 .34.035.675.09 1H4v2h2.81A5.99 5.99 0 0 0 12 21a5.99 5.99 0 0 0 5.19-3H20v-2h-2.09c.055-.325.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.035-.675-.09-1H20zm-6 8h-4v-2h4zm0-4h-4v-2h4z" }),
|
|
10770
|
+
), W7 = /* @__PURE__ */ n("path", { d: "M20 8h-2.81a6 6 0 0 0-1.815-1.96L17 4.415 15.585 3 13.41 5.175A6 6 0 0 0 12 5c-.485 0-.96.065-1.41.175L8.415 3 7 4.415 8.625 6.04A6 6 0 0 0 6.81 8H4v2h2.09c-.055.325-.09.66-.09 1v1H4v2h2v1c0 .34.035.675.09 1H4v2h2.81A5.99 5.99 0 0 0 12 21a5.99 5.99 0 0 0 5.19-3H20v-2h-2.09c.055-.325.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.035-.675-.09-1H20zm-6 8h-4v-2h4zm0-4h-4v-2h4z" }), jk = d("BugIcon", W7), G7 = /* @__PURE__ */ n(
|
|
10782
10771
|
"path",
|
|
10783
10772
|
{
|
|
10784
10773
|
fillRule: "evenodd",
|
|
10785
10774
|
d: "M12 7h10v14H2V3h10v4ZM4 19h2v-2H4v2Zm2-4H4v-2h2v2Zm-2-4h2V9H4v2Zm2-4H4V5h2v2Zm2 12h2v-2H8v2Zm2-4H8v-2h2v2Zm-2-4h2V9H8v2Zm2-4H8V5h2v2Zm10 12V9h-8v2h2v2h-2v2h2v2h-2v2h8Zm-2-8h-2v2h2v-2Zm-2 4h2v2h-2v-2Z",
|
|
10786
10775
|
clipRule: "evenodd"
|
|
10787
10776
|
}
|
|
10788
|
-
),
|
|
10777
|
+
), Vk = d("BuildingIcon", G7), K7 = /* @__PURE__ */ n("path", { d: "M5 3v18h6v-3.5h2V21h6V3zm2 2h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zM7 9h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zm-8 4h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2zm-8 4h2v2H7zm8 0h2v2h-2z" }), Ak = d("Building2Icon", K7), X7 = /* @__PURE__ */ n("path", { d: "M16.07 12a.26.26 0 0 0-.26.21l-.19 1.32c-.3.13-.59.29-.85.47l-1.24-.5c-.11 0-.24 0-.31.13l-1 1.73c-.06.11-.04.24.06.32l1.06.82a4.2 4.2 0 0 0 0 1l-1.06.82a.26.26 0 0 0-.06.32l1 1.73c.06.13.19.13.31.13l1.24-.5c.26.18.54.35.85.47l.19 1.32c.02.12.12.21.26.21h2c.11 0 .22-.09.24-.21l.19-1.32c.3-.13.57-.29.84-.47l1.23.5c.13 0 .26 0 .33-.13l1-1.73a.26.26 0 0 0-.06-.32l-1.07-.82c.02-.17.04-.33.04-.5s-.01-.33-.04-.5l1.06-.82a.26.26 0 0 0 .06-.32l-1-1.73c-.06-.13-.19-.13-.32-.13l-1.23.5c-.27-.18-.54-.35-.85-.47l-.19-1.32a.236.236 0 0 0-.23-.21zm1 3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.84 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5m-1-5.42V2h-14v18h6v-3.5h2.03c.23-3.3 2.74-5.96 5.97-6.42M6.07 18h-2v-2h2zm0-4h-2v-2h2zm0-4h-2V8h2zm0-4h-2V4h2zm6-2h2v2h-2zm0 4h2v2h-2zm-2 6h-2v-2h2zm0-4h-2V8h2zm-2-4V4h2v2z" }), zk = d("BuildingCogIcon", X7), Y7 = /* @__PURE__ */ n(
|
|
10789
10778
|
"path",
|
|
10790
10779
|
{
|
|
10791
10780
|
fillRule: "evenodd",
|
|
@@ -10798,7 +10787,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10798
10787
|
), r9 = /* @__PURE__ */ n("path", { d: "M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" }), bo = d("CheckIcon", r9), s9 = /* @__PURE__ */ n("path", { d: "M22.24 5.59 11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12zM18 7l-1.41-1.41-6.34 6.34 1.41 1.41zM6 19 .41 13.41 1.83 12l5.58 5.59z" }), Dk = d("CheckCheckIcon", s9), c9 = /* @__PURE__ */ n("path", { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2m0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m4.59-12.42L10 14.17l-2.59-2.58L6 13l4 4 8-8z" }), $k = d(
|
|
10799
10788
|
"CheckCircleOutlineIcon",
|
|
10800
10789
|
c9
|
|
10801
|
-
), a9 = /* @__PURE__ */ n("path", { d: "M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z" }), _k = d("ChevronDownIcon", a9), i9 = /* @__PURE__ */ n("path", { d: "M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z" }), ha = d("ChevronLeftIcon", i9), l9 = /* @__PURE__ */ n("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }), fa = d("ChevronRightIcon", l9), d9 = /* @__PURE__ */ n("path", { d: "M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z" }), Zk = d("ChevronUpIcon", d9), u9 = /* @__PURE__ */
|
|
10790
|
+
), a9 = /* @__PURE__ */ n("path", { d: "M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z" }), _k = d("ChevronDownIcon", a9), i9 = /* @__PURE__ */ n("path", { d: "M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z" }), ha = d("ChevronLeftIcon", i9), l9 = /* @__PURE__ */ n("path", { d: "M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z" }), fa = d("ChevronRightIcon", l9), d9 = /* @__PURE__ */ n("path", { d: "M12 8l-6 6 1.41 1.41L12 10.83l4.59 4.58L18 14z" }), Zk = d("ChevronUpIcon", d9), u9 = /* @__PURE__ */ j(T, { children: [
|
|
10802
10791
|
/* @__PURE__ */ n("path", { d: "M16.59 5 18 6.41l-6 6-6-6L7.41 5 12 9.58z" }),
|
|
10803
10792
|
/* @__PURE__ */ n("path", { d: "M16.59 11 18 12.41l-6 6-6-6L7.41 11 12 15.58z" })
|
|
10804
10793
|
] }), Fk = d("ChevronsDownIcon", u9), h9 = /* @__PURE__ */ n("path", { d: "M12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM13 17H11V15H13V17ZM13 13H11V7H13V13Z" }), Bk = d("CircleAlertIcon", h9), f9 = /* @__PURE__ */ n("path", { d: "M11 15H13V17H11V15ZM11 7H13V13H11V7ZM11.99 2C6.47 2 2 6.48 2 12C2 17.52 6.47 22 11.99 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 11.99 2ZM12 20C7.58004 20 4 16.42 4 12C4 7.57997 7.58004 4 12 4C16.42 4 20 7.57997 20 12C20 16.42 16.42 20 12 20Z" }), qk = d(
|
|
@@ -10835,8 +10824,8 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10835
10824
|
), Yk = d("CircleDnaThinIcon", k9), b9 = /* @__PURE__ */ n("path", { d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12m11.41 8v-1.91c1.74-.33 3.11-1.33 3.12-3.16 0-2.52-2.16-3.39-4.18-3.91S9.68 9.95 9.68 9.11c0-.96.9-1.64 2.4-1.64 1.58 0 2.17.76 2.22 1.87h1.96c-.06-1.53-.99-2.94-2.85-3.39V4h-2.67v1.93c-1.72.37-3.11 1.49-3.11 3.21 0 2.05 1.7 3.07 4.18 3.67 2.23.53 2.67 1.31 2.67 2.14 0 .61-.44 1.59-2.4 1.59-1.83 0-2.55-.82-2.65-1.87H7.47c.11 1.94 1.56 3.04 3.27 3.4V20z" }), Qk = d("CircleDollarSignIcon", b9), w9 = /* @__PURE__ */ n("path", { d: "M11 7h2v2h-2zm0 4h2v6h-2zm1-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" }), Jk = d(
|
|
10836
10825
|
"CircleInfoOutlineIcon",
|
|
10837
10826
|
w9
|
|
10838
|
-
), M9 = /* @__PURE__ */
|
|
10839
|
-
/* @__PURE__ */
|
|
10827
|
+
), M9 = /* @__PURE__ */ j(T, { children: [
|
|
10828
|
+
/* @__PURE__ */ j(
|
|
10840
10829
|
"mask",
|
|
10841
10830
|
{
|
|
10842
10831
|
id: "mask0_6_73",
|
|
@@ -10855,7 +10844,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10855
10844
|
}
|
|
10856
10845
|
),
|
|
10857
10846
|
/* @__PURE__ */ n("g", { mask: "url(#mask0_6_73)", children: /* @__PURE__ */ n("path", { d: "M22 2H2V22H22V2Z" }) })
|
|
10858
|
-
] }), eb = d("CircleLockIcon", M9), y9 = /* @__PURE__ */
|
|
10847
|
+
] }), eb = d("CircleLockIcon", M9), y9 = /* @__PURE__ */ j(T, { children: [
|
|
10859
10848
|
/* @__PURE__ */ n(
|
|
10860
10849
|
"path",
|
|
10861
10850
|
{
|
|
@@ -10891,19 +10880,19 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10891
10880
|
fillRule: "evenodd",
|
|
10892
10881
|
d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12m2 0c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8-8 3.59-8 8"
|
|
10893
10882
|
}
|
|
10894
|
-
), sb = d("CircleOutlineIcon", H9),
|
|
10883
|
+
), sb = d("CircleOutlineIcon", H9), j9 = /* @__PURE__ */ n(T, { children: /* @__PURE__ */ n(
|
|
10895
10884
|
"path",
|
|
10896
10885
|
{
|
|
10897
10886
|
fillRule: "evenodd",
|
|
10898
10887
|
d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2m-1 14H9V8h2zm2 0h2V8h-2z"
|
|
10899
10888
|
}
|
|
10900
|
-
) }), cb = d("CirclePauseIcon",
|
|
10889
|
+
) }), cb = d("CirclePauseIcon", j9), V9 = /* @__PURE__ */ n(
|
|
10901
10890
|
"path",
|
|
10902
10891
|
{
|
|
10903
10892
|
fillRule: "evenodd",
|
|
10904
10893
|
d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12m14 0-6-4.5v9z"
|
|
10905
10894
|
}
|
|
10906
|
-
), ab = d("CirclePlayIcon",
|
|
10895
|
+
), ab = d("CirclePlayIcon", V9), A9 = /* @__PURE__ */ n(
|
|
10907
10896
|
"path",
|
|
10908
10897
|
{
|
|
10909
10898
|
fillRule: "evenodd",
|
|
@@ -10911,7 +10900,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10911
10900
|
}
|
|
10912
10901
|
), ib = d(
|
|
10913
10902
|
"CirclePlayOutlineIcon",
|
|
10914
|
-
|
|
10903
|
+
A9
|
|
10915
10904
|
), z9 = /* @__PURE__ */ n(
|
|
10916
10905
|
"path",
|
|
10917
10906
|
{
|
|
@@ -10925,7 +10914,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10925
10914
|
), R9 = /* @__PURE__ */ n("path", { d: "M11 18H13V16H11V18ZM12 2C6.48 2 2 6.48 2 12C2 17.52 6.48 22 12 22C17.52 22 22 17.52 22 12C22 6.48 17.52 2 12 2ZM12 20C7.59 20 4 16.41 4 12C4 7.59 7.59 4 12 4C16.41 4 20 7.59 20 12C20 16.41 16.41 20 12 20ZM12 6C9.79 6 8 7.79 8 10H10C10 8.9 10.9 8 12 8C13.1 8 14 8.9 14 10C14 12 11 11.75 11 15H13C13 12.75 16 12.5 16 10C16 7.79 14.21 6 12 6Z" }), ub = d(
|
|
10926
10915
|
"CircleQuestionMarkOutlineIcon",
|
|
10927
10916
|
R9
|
|
10928
|
-
), E9 = /* @__PURE__ */
|
|
10917
|
+
), E9 = /* @__PURE__ */ j(T, { children: [
|
|
10929
10918
|
/* @__PURE__ */ n("path", { d: "M4.50619 11.9753C4.50619 16.1276 7.87236 19.4939 12.0248 19.4939C15.8372 19.4939 18.987 16.6562 19.4771 12.9777H22C21.497 18.0435 17.2229 22 12.0248 22C6.48822 22 2 17.5118 2 11.9753C2 6.77706 5.95645 2.50297 11.0223 2V4.52294C7.34384 5.01305 4.50619 8.16277 4.50619 11.9753Z" }),
|
|
10930
10919
|
/* @__PURE__ */ n("path", { d: "M22 10.9728C21.5298 6.23669 17.7634 2.47023 13.0272 2V4.52294C16.3777 4.96935 19.0306 7.62227 19.4771 10.9728H22Z" })
|
|
10931
10920
|
] }), hb = d(
|
|
@@ -10960,7 +10949,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10960
10949
|
), mb = d(
|
|
10961
10950
|
"CircleUserConciergeIcon",
|
|
10962
10951
|
O9
|
|
10963
|
-
), D9 = /* @__PURE__ */
|
|
10952
|
+
), D9 = /* @__PURE__ */ j(T, { children: [
|
|
10964
10953
|
/* @__PURE__ */ n("path", { d: "m3.44 18.033 4.356-3.51.628.78-4.356 3.509z" }),
|
|
10965
10954
|
/* @__PURE__ */ n("ellipse", { cx: "2.4", cy: "5.066", rx: "2.4", ry: "2.408" }),
|
|
10966
10955
|
/* @__PURE__ */ n("ellipse", { cx: "2.4", cy: "19.449", rx: "2.4", ry: "2.408" }),
|
|
@@ -10978,7 +10967,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
10978
10967
|
] }), gb = d(
|
|
10979
10968
|
"CircleUserNetworkIcon",
|
|
10980
10969
|
D9
|
|
10981
|
-
), $9 = /* @__PURE__ */
|
|
10970
|
+
), $9 = /* @__PURE__ */ j(T, { children: [
|
|
10982
10971
|
/* @__PURE__ */ n("path", { d: "m2.808 2.808 18.384 18.384-1.414 1.415-2.262-2.263q-.755.496-1.616.868A9.7 9.7 0 0 1 12 22a9.7 9.7 0 0 1-3.9-.788 10.1 10.1 0 0 1-3.175-2.137q-1.35-1.35-2.137-3.175A9.7 9.7 0 0 1 2 12q0-2.075.788-3.9a10.5 10.5 0 0 1 .868-1.616L1.393 4.222zM5.85 17.1q1.275-.975 2.85-1.538a9.7 9.7 0 0 1 3.473-.56L5.09 7.918Q4 9.729 4 12q0 1.474.488 2.775A7.7 7.7 0 0 0 5.85 17.1" }),
|
|
10983
10972
|
/* @__PURE__ */ n("path", { d: "M6.484 3.655 7.919 5.09Q9.729 4 11.999 4q3.326 0 5.664 2.337T20 12q0 1.474-.487 2.775-.257.682-.62 1.29l1.451 1.45q.496-.754.868-1.615A9.7 9.7 0 0 0 22 12a9.7 9.7 0 0 0-.788-3.9 10.1 10.1 0 0 0-2.137-3.175q-1.35-1.35-3.175-2.138A9.7 9.7 0 0 0 12 2a9.7 9.7 0 0 0-3.9.787q-.861.372-1.616.868" }),
|
|
10984
10973
|
/* @__PURE__ */ n("path", { d: "M14.647 11.819q.853-.965.853-2.319 0-1.475-1.012-2.488T12 6q-1.355 0-2.319.853z" })
|
|
@@ -11027,7 +11016,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11027
11016
|
fillRule: "evenodd",
|
|
11028
11017
|
d: "M19 4h-4.18c-.57-1.56-2.29-2.36-3.82-1.8-.86.3-1.5.96-1.82 1.8H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m-7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2m5 2v2H7V6H5v14h14V6zM7 12v-2h10v2zm0 2v2h8v-2z"
|
|
11029
11018
|
}
|
|
11030
|
-
) }),
|
|
11019
|
+
) }), jb = d("ClipboardTextIcon", X9), Y9 = /* @__PURE__ */ j(T, { children: [
|
|
11031
11020
|
/* @__PURE__ */ n(
|
|
11032
11021
|
"path",
|
|
11033
11022
|
{
|
|
@@ -11037,13 +11026,13 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11037
11026
|
}
|
|
11038
11027
|
),
|
|
11039
11028
|
/* @__PURE__ */ n("path", { d: "m9.525 18.389-1.414-1.414 6.364-6.364 1.414 1.414-6.364 6.364Z" })
|
|
11040
|
-
] }),
|
|
11029
|
+
] }), Vb = d("ClipboardXIcon", Y9), Q9 = /* @__PURE__ */ n("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2M12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8M11 7h1.5v5.25l4.5 2.67-.75 1.23L11 13z" }), Ab = d("ClockIcon", Q9), J9 = /* @__PURE__ */ n("path", { d: "M19.35 10.04A7.49 7.49 0 0 0 12 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 0 0 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96" }), zb = d("CloudIcon", J9), ed = /* @__PURE__ */ n("path", { d: "M12 19c0 .34.03.67.08 1H6.5c-1.5 0-2.81-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48C2.95 10.08 4 9.43 5.25 9.15c.42-1.53 1.25-2.77 2.5-3.72A6.85 6.85 0 0 1 12 4c1.95 0 3.6.68 4.96 2.04S19 9.05 19 11c1.15.13 2.1.63 2.86 1.5.06.05.1.13.14.19-.9-.44-1.92-.69-3-.69-.69 0-1.37.11-2 .29V11c0-1.38-.5-2.56-1.46-3.54C14.56 6.5 13.38 6 12 6s-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.79 1.03 2.5c.68.66 1.5 1 2.47 1h5.58c-.05.33-.08.66-.08 1m11.83 1.64-1 1.73c-.07.13-.2.13-.33.13l-1.23-.5c-.27.18-.54.34-.84.47l-.19 1.32c-.02.12-.13.21-.24.21h-2c-.14 0-.24-.09-.26-.21l-.19-1.32c-.31-.12-.59-.29-.85-.47l-1.24.5c-.12 0-.25 0-.31-.13l-1-1.73a.26.26 0 0 1 .06-.32l1.06-.82a4.2 4.2 0 0 1 0-1l-1.06-.82a.25.25 0 0 1-.06-.32l1-1.73c.07-.13.2-.13.31-.13l1.24.5c.26-.18.55-.34.85-.47l.19-1.32A.26.26 0 0 1 18 14h2c.11 0 .22.09.23.21l.19 1.32c.31.12.58.29.85.47l1.23-.5c.13 0 .26 0 .32.13l1 1.73c.06.11.03.24-.06.32l-1.06.82c.03.17.04.33.04.5s-.02.33-.04.5l1.07.82c.09.08.12.21.06.32M20.5 19c0-.83-.68-1.5-1.5-1.5s-1.5.67-1.5 1.5.66 1.5 1.5 1.5 1.5-.67 1.5-1.5" }), Lb = d("CloudCogIcon", ed), td = /* @__PURE__ */ n("path", { d: "M12 4a7.49 7.49 0 0 1 7.35 6.04c2.6.18 4.65 2.32 4.65 4.96 0 2.76-2.24 5-5 5H6c-3.31 0-6-2.69-6-6 0-3.09 2.34-5.64 5.35-5.96A7.5 7.5 0 0 1 12 4m0 14 5-5h-3V9h-4v4H7z" }), Rb = d("CloudDownloadIcon", td), od = /* @__PURE__ */ n("path", { d: "M12 4C13.735 3.99961 15.4163 4.60162 16.7568 5.70313C18.0974 6.80473 19.0137 8.33777 19.3496 10.04C21.9496 10.22 24 12.36 24 15C24 17.76 21.76 20 19 20H6C2.69 20 0 17.31 0 14C0 10.9101 2.3398 8.36022 5.34961 8.04004C5.98253 6.82282 6.93783 5.80217 8.11035 5.08984C9.28279 4.37764 10.6282 4.00077 12 4ZM11.9219 8.49902C11.8947 8.49902 11.8679 8.5091 11.8486 8.52832C11.8296 8.54743 11.8195 8.5736 11.8193 8.60059V9.28418H11.4307V9.96973H10.8613V10.2627C10.3576 10.4732 9.92684 10.828 9.62402 11.2822C9.32121 11.7364 9.15974 12.2705 9.15918 12.8164H9.03809V13.9707H8.25V14.3418H8.44531V16.3223H8.25V16.6982H15.6104V16.3213H15.415V14.3408L15.6016 14.3447V13.9697H14.8154V12.8125H14.6934C14.6928 12.2666 14.5304 11.7325 14.2275 11.2783C13.9247 10.8242 13.4948 10.4693 12.9912 10.2588V9.96777H12.4199V9.28418H12.0244V8.60059C12.0243 8.57356 12.0133 8.54744 11.9941 8.52832C11.975 8.50921 11.9489 8.49912 11.9219 8.49902ZM9.37891 14.3408V16.3213H8.86914V14.3408H9.37891ZM10.3174 14.3408V16.3213H9.80664V14.3408H10.3174ZM11.2529 14.3408V16.3213H10.7432V14.3408H11.2529ZM12.1885 14.3408V16.3213H11.6777V14.3408H12.1885ZM13.1221 14.3408V16.3213H12.6123V14.3408H13.1221ZM14.0586 14.3408L14.0557 16.3213H13.5439V14.3408H14.0586ZM14.9932 14.3408V16.3213H14.4834V14.3408H14.9932ZM9.58691 12.998V13.7783H9.31445V12.998H9.58691ZM10.1377 12.998L10.1387 13.7783H9.86523V12.998H10.1377ZM10.6885 12.998L10.6904 13.7783H10.416V12.998H10.6885ZM11.2393 12.998L11.2412 13.7783H10.9668V12.998H11.2393ZM11.79 12.998L11.791 13.7783H11.5176V12.998H11.79ZM12.3398 12.998L12.3418 13.7783H12.0693V12.998H12.3398ZM12.8916 12.998L12.8926 13.7783H12.6191V12.998H12.8916ZM13.4424 12.998L13.4443 13.7783H13.1699V12.998H13.4424ZM13.9922 12.998L13.9941 13.7783H13.7207V12.998H13.9922ZM14.5449 12.998L14.5459 13.7783H14.2715V12.998H14.5449Z" }), Eb = d("CloudGovernmentIcon", od), nd = /* @__PURE__ */ n("path", { d: "M9.41 20H6.5c-1.5 0-2.82-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48a5.25 5.25 0 0 1 3.08-1.95c.42-1.53 1.25-2.77 2.5-3.72C9 4.5 10.42 4 12 4c1.95 0 3.61.68 4.96 2.04C18.32 7.39 19 9.05 19 11c1.15.13 2.11.63 2.86 1.5.64.73 1 1.56 1.1 2.5H18a5.01 5.01 0 0 0-4-2c-2.8 0-5 2.2-5 5 0 .72.15 1.39.41 2M23 17v2h-2v2h-2v-2h-2.2c-.4 1.2-1.5 2-2.8 2-1.7 0-3-1.3-3-3s1.3-3 3-3c1.3 0 2.4.8 2.8 2zm-8 1c0-.5-.4-1-1-1s-1 .5-1 1 .4 1 1 1 1-.5 1-1" }), Tb = d("CloudKeyIcon", nd), rd = /* @__PURE__ */ n("path", { d: "M9.41 20H6.5c-1.5 0-2.82-.5-3.89-1.57C1.54 17.38 1 16.09 1 14.58q0-1.95 1.17-3.48a5.25 5.25 0 0 1 3.08-1.95c.42-1.53 1.25-2.77 2.5-3.72C9 4.5 10.42 4 12 4c1.95 0 3.61.68 4.96 2.04C18.32 7.39 19 9.05 19 11c1.15.13 2.11.63 2.86 1.5.64.73 1 1.56 1.1 2.5h-2c-.1-.5-.32-.91-.69-1.27-.48-.49-1.07-.73-1.77-.73H17v-2c0-1.38-.5-2.56-1.46-3.54C14.57 6.5 13.39 6 12 6c-1.38 0-2.56.5-3.54 1.46C7.5 8.44 7 9.62 7 11h-.5c-.97 0-1.79.34-2.47 1.03-.69.68-1.03 1.5-1.03 2.47s.34 1.8 1.03 2.5c.68.67 1.5 1 2.47 1H9c0 .72.15 1.39.41 2M23 17v2h-2v2h-2v-2h-2.2c-.4 1.2-1.5 2-2.8 2-1.7 0-3-1.3-3-3s1.3-3 3-3c1.3 0 2.4.8 2.8 2zm-8 1c0-.5-.4-1-1-1s-1 .5-1 1 .4 1 1 1 1-.5 1-1" }), Pb = d("CloudKeyOutlineIcon", rd), sd = /* @__PURE__ */ n(
|
|
11041
11030
|
"path",
|
|
11042
11031
|
{
|
|
11043
11032
|
fillRule: "evenodd",
|
|
11044
11033
|
d: "m3 4.27 2.75 2.74C2.56 7.15 0 9.77 0 13c0 3.31 2.69 6 6 6h11.73l2 2L21 19.73 4.27 3zm16.35 4.77A7.49 7.49 0 0 0 12 3c-1.48 0-2.85.43-4.01 1.17l1.46 1.46a5.497 5.497 0 0 1 8.05 4.87v.5H19c1.66 0 3 1.34 3 3 0 1.13-.64 2.11-1.56 2.62l1.45 1.45C23.16 17.16 24 15.68 24 14c0-2.64-2.05-4.78-4.65-4.96M6 17h9.73l-8-8H6c-2.21 0-4 1.79-4 4s1.79 4 4 4"
|
|
11045
11034
|
}
|
|
11046
|
-
), Nb = d("CloudOffIcon", sd), cd = /* @__PURE__ */ n("path", { d: "M12 4a7.49 7.49 0 0 1 7.35 6.04c2.6.18 4.65 2.32 4.65 4.96 0 2.76-2.24 5-5 5H6c-3.31 0-6-2.69-6-6 0-3.09 2.34-5.64 5.35-5.96A7.5 7.5 0 0 1 12 4m2 13v-4h3l-5-5-5 5h3v4z" }), Ob = d("CloudUploadIcon", cd), ad = /* @__PURE__ */ n("path", { d: "M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z" }), Db = d("CogIcon", ad), id = /* @__PURE__ */ n("path", { d: "M4 19h4V5H4zm6 0h4V5h-4zm6 0V5h4v14z" }), $b = d("Columns3Icon", id), ld = /* @__PURE__ */
|
|
11035
|
+
), Nb = d("CloudOffIcon", sd), cd = /* @__PURE__ */ n("path", { d: "M12 4a7.49 7.49 0 0 1 7.35 6.04c2.6.18 4.65 2.32 4.65 4.96 0 2.76-2.24 5-5 5H6c-3.31 0-6-2.69-6-6 0-3.09 2.34-5.64 5.35-5.96A7.5 7.5 0 0 1 12 4m2 13v-4h3l-5-5-5 5h3v4z" }), Ob = d("CloudUploadIcon", cd), ad = /* @__PURE__ */ n("path", { d: "M19.14,12.94c0.04-0.3,0.06-0.61,0.06-0.94c0-0.32-0.02-0.64-0.07-0.94l2.03-1.58c0.18-0.14,0.23-0.41,0.12-0.61 l-1.92-3.32c-0.12-0.22-0.37-0.29-0.59-0.22l-2.39,0.96c-0.5-0.38-1.03-0.7-1.62-0.94L14.4,2.81c-0.04-0.24-0.24-0.41-0.48-0.41 h-3.84c-0.24,0-0.43,0.17-0.47,0.41L9.25,5.35C8.66,5.59,8.12,5.92,7.63,6.29L5.24,5.33c-0.22-0.08-0.47,0-0.59,0.22L2.74,8.87 C2.62,9.08,2.66,9.34,2.86,9.48l2.03,1.58C4.84,11.36,4.8,11.69,4.8,12s0.02,0.64,0.07,0.94l-2.03,1.58 c-0.18,0.14-0.23,0.41-0.12,0.61l1.92,3.32c0.12,0.22,0.37,0.29,0.59,0.22l2.39-0.96c0.5,0.38,1.03,0.7,1.62,0.94l0.36,2.54 c0.05,0.24,0.24,0.41,0.48,0.41h3.84c0.24,0,0.44-0.17,0.47-0.41l0.36-2.54c0.59-0.24,1.13-0.56,1.62-0.94l2.39,0.96 c0.22,0.08,0.47,0,0.59-0.22l1.92-3.32c0.12-0.22,0.07-0.47-0.12-0.61L19.14,12.94z M12,15.6c-1.98,0-3.6-1.62-3.6-3.6 s1.62-3.6,3.6-3.6s3.6,1.62,3.6,3.6S13.98,15.6,12,15.6z" }), Db = d("CogIcon", ad), id = /* @__PURE__ */ n("path", { d: "M4 19h4V5H4zm6 0h4V5h-4zm6 0V5h4v14z" }), $b = d("Columns3Icon", id), ld = /* @__PURE__ */ j(T, { children: [
|
|
11047
11036
|
/* @__PURE__ */ n("rect", { width: "3", height: "16", x: "3", y: "4", rx: "1.5" }),
|
|
11048
11037
|
/* @__PURE__ */ n("rect", { width: "3", height: "16", x: "8", y: "4", rx: "1.5" }),
|
|
11049
11038
|
/* @__PURE__ */ n("rect", { width: "3", height: "16", x: "13", y: "4", rx: "1.5" }),
|
|
@@ -11054,7 +11043,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11054
11043
|
fillRule: "evenodd",
|
|
11055
11044
|
d: "M10.6 7.8a2.8 2.8 0 1 0-2.8 2.8h1.4v2.8H7.8a2.8 2.8 0 1 0 2.8 2.8v-1.4h2.8v1.4a2.8 2.8 0 1 0 2.8-2.8h-1.4v-2.8h1.4a2.8 2.8 0 1 0-2.8-2.8v1.4h-2.8zm5.6 9.8a1.4 1.4 0 0 1-1.4-1.4v-1.4h1.4a1.4 1.4 0 1 1 0 2.8m-2.8-7h-2.8v2.8h2.8zm-7 5.6a1.4 1.4 0 0 1 1.4-1.4h1.4v1.4a1.4 1.4 0 1 1-2.8 0m2.8-8.4a1.4 1.4 0 1 0-1.4 1.4h1.4zm8.4 0a1.4 1.4 0 0 1-1.4 1.4h-1.4V7.8a1.4 1.4 0 1 1 2.8 0"
|
|
11056
11045
|
}
|
|
11057
|
-
), Zb = d("CommandIcon", dd), ud = /* @__PURE__ */
|
|
11046
|
+
), Zb = d("CommandIcon", dd), ud = /* @__PURE__ */ j(T, { children: [
|
|
11058
11047
|
/* @__PURE__ */ n("path", { fillOpacity: ".01", d: "M0 0h24v24H0z" }),
|
|
11059
11048
|
/* @__PURE__ */ n("path", { d: "M16 3H6l-5 9 5 9h10l-3-4H9l-3-5 3-5h4zm-1 4 3-4 5 9-5 9-3-4 3-5z" })
|
|
11060
11049
|
] }), Fb = d("CommanderLogoIcon", ud), hd = /* @__PURE__ */ n(
|
|
@@ -11091,7 +11080,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11091
11080
|
), Qb = d("DatabaseMapPinIcon", bd), wd = /* @__PURE__ */ n("path", { d: "M19 12v1.5a4 4 0 0 1 4 4c0 .82-.25 1.58-.67 2.21l-1.09-1.09c.17-.34.26-.72.26-1.12A2.5 2.5 0 0 0 19 15v1.5l-2.25-2.25zm0 11v-1.5a4 4 0 0 1-4-4c0-.82.25-1.58.67-2.21l1.09 1.09c-.17.34-.26.72-.26 1.12A2.5 2.5 0 0 0 19 20v-1.5l2.25 2.25zM12 3c4.42 0 8 1.79 8 4s-3.58 4-8 4-8-1.79-8-4 3.58-4 8-4M4 9c0 2.21 3.58 4 8 4 1.11 0 2.17-.11 3.14-.32-.95.86-1.64 1.99-1.96 3.28L12 16c-4.42 0-8-1.79-8-4zm16 0v2h-.5l-.6.03c.7-.6 1.1-1.29 1.1-2.03M4 14c0 2.21 3.58 4 8 4l1-.03c.09 1.06.42 2.03.95 2.91L12 21c-4.42 0-8-1.79-8-4z" }), Jb = d(
|
|
11092
11081
|
"DatabaseRefreshCcwIcon",
|
|
11093
11082
|
wd
|
|
11094
|
-
), Md = /* @__PURE__ */ n("path", { d: "M18.68 12.32a4.49 4.49 0 0 0-6.36.01 4.49 4.49 0 0 0 0 6.36 4.51 4.51 0 0 0 5.57.63L21 22.39 22.39 21l-3.09-3.11c1.13-1.77.87-4.09-.62-5.57m-1.41 4.95c-.98.98-2.56.97-3.54 0-.97-.98-.97-2.56.01-3.54.97-.97 2.55-.97 3.53 0 .97.98.97 2.56 0 3.54M10.9 20.1a6.5 6.5 0 0 1-1.48-2.32C6.27 17.25 4 15.76 4 14v3c0 2.21 3.58 4 8 4-.4-.26-.77-.56-1.1-.9M4 9v3c0 1.68 2.07 3.12 5 3.7v-.2c0-.93.2-1.85.58-2.69C6.34 12.3 4 10.79 4 9m8-6C7.58 3 4 4.79 4 7c0 2 3 3.68 6.85 4h.05c1.2-1.26 2.86-2 4.6-2 .91 0 1.81.19 2.64.56A3.22 3.22 0 0 0 20 7c0-2.21-3.58-4-8-4" }), ew = d("DatabaseSearchIcon", Md), yd = /* @__PURE__ */
|
|
11083
|
+
), Md = /* @__PURE__ */ n("path", { d: "M18.68 12.32a4.49 4.49 0 0 0-6.36.01 4.49 4.49 0 0 0 0 6.36 4.51 4.51 0 0 0 5.57.63L21 22.39 22.39 21l-3.09-3.11c1.13-1.77.87-4.09-.62-5.57m-1.41 4.95c-.98.98-2.56.97-3.54 0-.97-.98-.97-2.56.01-3.54.97-.97 2.55-.97 3.53 0 .97.98.97 2.56 0 3.54M10.9 20.1a6.5 6.5 0 0 1-1.48-2.32C6.27 17.25 4 15.76 4 14v3c0 2.21 3.58 4 8 4-.4-.26-.77-.56-1.1-.9M4 9v3c0 1.68 2.07 3.12 5 3.7v-.2c0-.93.2-1.85.58-2.69C6.34 12.3 4 10.79 4 9m8-6C7.58 3 4 4.79 4 7c0 2 3 3.68 6.85 4h.05c1.2-1.26 2.86-2 4.6-2 .91 0 1.81.19 2.64.56A3.22 3.22 0 0 0 20 7c0-2.21-3.58-4-8-4" }), ew = d("DatabaseSearchIcon", Md), yd = /* @__PURE__ */ j(T, { children: [
|
|
11095
11084
|
/* @__PURE__ */ n(
|
|
11096
11085
|
"path",
|
|
11097
11086
|
{
|
|
@@ -11198,7 +11187,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11198
11187
|
transform: "matrix(0.866025 -0.5 2.20305e-08 1 17.9457 10.208)"
|
|
11199
11188
|
}
|
|
11200
11189
|
)
|
|
11201
|
-
] }), tw = d("DiceIcon", yd), Id = /* @__PURE__ */
|
|
11190
|
+
] }), tw = d("DiceIcon", yd), Id = /* @__PURE__ */ j(T, { children: [
|
|
11202
11191
|
/* @__PURE__ */ n("path", { d: "M10.3885 13.9489C10.3885 14.6375 9.90507 14.9166 9.30874 14.5723C8.71242 14.228 8.229 13.3907 8.229 12.7022C8.229 12.0136 8.71242 11.7345 9.30874 12.0788C9.90507 12.4231 10.3885 13.2604 10.3885 13.9489Z" }),
|
|
11203
11192
|
/* @__PURE__ */ n("path", { d: "M4.98965 17.0655C5.58598 17.4098 6.06939 17.1307 6.06939 16.4421C6.06939 15.7535 5.58598 14.9162 4.98965 14.5719C4.39333 14.2276 3.90991 14.5068 3.90991 15.1953C3.90991 15.8839 4.39333 16.7212 4.98965 17.0655Z" }),
|
|
11204
11193
|
/* @__PURE__ */ n("path", { d: "M20.105 10.2088C20.105 10.8974 19.6216 11.7347 19.0253 12.079C18.429 12.4232 17.9456 12.1441 17.9456 11.4556C17.9456 10.767 18.429 9.92969 19.0253 9.58541C19.6216 9.24112 20.105 9.52022 20.105 10.2088Z" }),
|
|
@@ -11206,7 +11195,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11206
11195
|
/* @__PURE__ */ n("path", { d: "M14.7062 19.5594C15.3025 19.2151 15.7859 18.3778 15.7859 17.6893C15.7859 17.0007 15.3025 16.7216 14.7062 17.0659C14.1099 17.4102 13.6265 18.2475 13.6265 18.936C13.6265 19.6246 14.1099 19.9037 14.7062 19.5594Z" }),
|
|
11207
11196
|
/* @__PURE__ */ n("path", { d: "M10.9851 6.82341C11.5815 7.1677 12.5483 7.1677 13.1446 6.82341C13.7409 6.47912 13.7409 5.92092 13.1446 5.57664C12.5483 5.23235 11.5815 5.23235 10.9851 5.57664C10.3888 5.92092 10.3888 6.47912 10.9851 6.82341Z" }),
|
|
11208
11197
|
/* @__PURE__ */ n("path", { d: "M10.4416 0.902943C11.406 0.346155 12.5941 0.346154 13.5585 0.902942L14.1336 1.23495C14.1423 1.23987 14.151 1.24483 14.1596 1.24983L20.6381 4.99015C20.6467 4.99514 20.6553 5.00014 20.6638 5.00517L20.6999 5.02604C21.6083 5.55046 22.1881 6.49377 22.2524 7.53211C22.2604 7.61447 22.2644 7.70039 22.2644 7.78976V15.2704C22.2644 15.3336 22.2624 15.3974 22.2584 15.4617V15.9716C22.2584 17.0852 21.6643 18.1141 20.6999 18.6709L13.5585 22.794C12.5941 23.3508 11.406 23.3508 10.4416 22.794L3.30017 18.6709C2.33579 18.1141 1.7417 17.0851 1.7417 15.9716V7.72538C1.7417 6.61181 2.33578 5.58282 3.30017 5.02604L3.35083 4.99679C3.35463 4.99457 3.35844 4.99236 3.36226 4.99016L9.84069 1.24983C9.8445 1.24763 9.84832 1.24544 9.85214 1.24325L10.4416 0.902943ZM11.467 14.0236C11.467 13.9968 11.4674 13.9698 11.4681 13.9427V13.4002C11.4681 12.7117 10.9847 11.8744 10.3884 11.5301L10.0459 11.3323C9.97537 11.2983 9.90689 11.2623 9.84069 11.224L3.7714 7.71993C3.24052 7.49195 2.83023 7.77878 2.83023 8.41315L2.83023 15.8938C2.83023 16.5824 3.31364 17.4197 3.90997 17.764L10.3884 21.5043C10.9682 21.8391 11.4413 21.5844 11.467 20.937V14.0236ZM12.5479 14.0236V20.937C12.5736 21.5844 13.0467 21.8391 13.6265 21.5043L20.105 17.764C20.7013 17.4197 21.1847 16.5824 21.1847 15.8938V8.41314C21.1847 7.74694 20.7322 7.46404 20.1627 7.75816L14.1597 11.224C14.1323 11.2398 14.1045 11.2553 14.0764 11.2704L13.6265 11.5301C13.0302 11.8744 12.5468 12.7117 12.5468 13.4002V13.9427C12.5475 13.9698 12.5479 13.9968 12.5479 14.0236ZM13.6265 10.2833L19.6146 6.82609C20.154 6.47998 20.1353 5.94664 19.5583 5.61354L13.0799 1.87322C12.4836 1.52893 11.5168 1.52893 10.9204 1.87322L4.442 5.61354C3.89262 5.93073 3.84937 6.42946 4.31224 6.77523L10.3884 10.2833C10.4546 10.3215 10.5201 10.3628 10.5848 10.4069L10.9204 10.6006C11.5168 10.9449 12.4836 10.9449 13.0799 10.6006L13.5448 10.3323C13.5719 10.3154 13.5991 10.2991 13.6265 10.2833Z" })
|
|
11209
|
-
] }), ow = d("DiceOutlineIcon", Id), xd = /* @__PURE__ */
|
|
11198
|
+
] }), ow = d("DiceOutlineIcon", Id), xd = /* @__PURE__ */ j(T, { children: [
|
|
11210
11199
|
/* @__PURE__ */ n(
|
|
11211
11200
|
"path",
|
|
11212
11201
|
{
|
|
@@ -11319,7 +11308,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11319
11308
|
fill: "#1d63ed",
|
|
11320
11309
|
d: "M22.98 10.135c-.539-.364-1.956-.519-2.986-.241-.056-1.026-.585-1.891-1.553-2.646l-.359-.24-.239.36c-.47.713-.667 1.662-.597 2.526.055.531.24 1.13.597 1.563-1.34.778-2.577.601-8.051.601H1.34c-.025 1.236.174 3.614 1.686 5.55q.25.32.549.62c1.23 1.23 3.087 2.134 5.864 2.136 4.238.004 7.868-2.286 10.077-7.824.726.012 2.644.13 3.583-1.684.023-.03.239-.481.239-.481zM6.857 9.003H4.479v2.377h2.377zm3.07 0H7.55v2.377h2.376zm3.07 0H10.62v2.377h2.377zm3.071 0h-2.376v2.377h2.376zm-12.282 0H1.41v2.377h2.376zm3.07-3.002H4.48V8.38h2.377zm3.071 0H7.55V8.38h2.376zm3.07 0H10.62V8.38h2.377zm0-3.002H10.62v2.377h2.377z"
|
|
11321
11310
|
}
|
|
11322
|
-
), rw = d("DockerLogoIcon", Sd), Hd = /* @__PURE__ */ n("circle", { cx: "12", cy: "12", r: "6" }), sw = d("DotIcon", Hd),
|
|
11311
|
+
), rw = d("DockerLogoIcon", Sd), Hd = /* @__PURE__ */ n("circle", { cx: "12", cy: "12", r: "6" }), sw = d("DotIcon", Hd), jd = /* @__PURE__ */ n("path", { d: "M12 6C15.3137 6 18 8.68629 18 12C18 15.3137 15.3137 18 12 18C8.68629 18 6 15.3137 6 12C6 8.68629 8.68629 6 12 6ZM12 8C9.79086 8 8 9.79086 8 12C8 14.2091 9.79086 16 12 16C14.2091 16 16 14.2091 16 12C16 9.79086 14.2091 8 12 8Z" }), cw = d("DotOutlineIcon", jd), Vd = /* @__PURE__ */ n("path", { d: "M18,15v3H6v-3H4v3c0,1.1,0.9,2,2,2h12c1.1,0,2-0.9,2-2v-3H18z M17,11l-1.41-1.41L13,12.17V4h-2v8.17L8.41,9.59L7,11l5,5 L17,11z" }), aw = d("DownloadIcon", Vd), Ad = /* @__PURE__ */ n("path", { d: "M4 9H20V11H4V9ZM4 13H20V15H4V13Z" }), iw = d("DragHandleIcon", Ad), zd = /* @__PURE__ */ n("path", { d: "m2.98 13.179 1.47.155.029-.08c.01-.028.016-.042.017-.056l.219-1.828c.303-2.537.606-5.074.896-7.612.036-.313.14-.384.434-.383q3.558.009 7.118.006h2.823q1.029.003 2.059-.003c.208-.002.312.049.339.282.26 2.281.53 4.561.799 6.841l.035.297c.069.586.141 1.172.215 1.768v.001l.096.775.432-.049 1.06-.117-.009-.167c-.005-.104-.008-.194-.02-.283q-.157-1.308-.316-2.617v-.007c-.312-2.569-.623-5.137-.921-7.706-.04-.336-.152-.397-.458-.396q-5.925.009-11.852.006H4.3zm11.54 3.791H9.484v-1.208h5.036zm-.223-2.463H2.633c-.598.001-.745.204-.555.764q.999 2.955 2.005 5.91c.221.65.466.819 1.163.819h13.496c.718 0 .953-.166 1.184-.843q.989-2.901 1.975-5.802c.223-.658.088-.848-.599-.848zm-7.362-3.78h10.151v-1.2H6.936zm10.16-2.505H6.923V7.04h10.172zM6.915 5.725H17.08V4.557H6.915zm10.169 7.496H6.918v-1.175h10.166z" }), lw = d("DrawerOpenIcon", zd), Ld = /* @__PURE__ */ j(T, { children: [
|
|
11323
11312
|
/* @__PURE__ */ n(
|
|
11324
11313
|
"path",
|
|
11325
11314
|
{
|
|
@@ -11383,7 +11372,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11383
11372
|
fillRule: "evenodd",
|
|
11384
11373
|
d: "M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm7 7V3.5L18.5 9zm1.5 5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v.5h-1V14h-1v3h1v-.5h1v.5a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1zm-8 4v-5h2a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1zm2-4h-1v3h1zm3-1a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1zm0 1h1v3h-1z"
|
|
11385
11374
|
}
|
|
11386
|
-
), Iw = d("FileDocIcon", Ud), Wd = /* @__PURE__ */
|
|
11375
|
+
), Iw = d("FileDocIcon", Ud), Wd = /* @__PURE__ */ j(T, { children: [
|
|
11387
11376
|
/* @__PURE__ */ n("path", { d: "M12.5 14V15H11.5V14H12.5Z" }),
|
|
11388
11377
|
/* @__PURE__ */ n(
|
|
11389
11378
|
"path",
|
|
@@ -11405,19 +11394,19 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11405
11394
|
fillRule: "evenodd",
|
|
11406
11395
|
d: "M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm7 7V3.5L18.5 9zm-2.5 4v5h2a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1zm1 1h1v3h-1zm3-1v5h1v-2H17v-1h-1.5v-1h2v-1zm-8 0v5h1v-2h1a1 1 0 0 0 1-1v-1a1 1 0 0 0-1-1zm1 1h1v1h-1z"
|
|
11407
11396
|
}
|
|
11408
|
-
),
|
|
11397
|
+
), jw = d("FilePdfIcon", Xd), Yd = /* @__PURE__ */ n(
|
|
11409
11398
|
"path",
|
|
11410
11399
|
{
|
|
11411
11400
|
fillRule: "evenodd",
|
|
11412
11401
|
d: "M6 2c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8l-6-6zm7 7V3.5L18.5 9zm1.5 5v-1h3v1h-1v4h-1v-4zm-8 4v-5h2a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1h-1v2zm2-4h-1v1h1zm2-1v5h1v-2h1a1 1 0 0 0 1-1v-1a1 1 0 0 0-1-1zm1 1h1v1h-1z"
|
|
11413
11402
|
}
|
|
11414
|
-
),
|
|
11403
|
+
), Vw = d("FilePptIcon", Yd), Qd = /* @__PURE__ */ n(
|
|
11415
11404
|
"path",
|
|
11416
11405
|
{
|
|
11417
11406
|
fillRule: "evenodd",
|
|
11418
11407
|
d: "M4 4c0-1.11.89-2 2-2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2zm14 4-4-4v4zm-6.05 2a3 3 0 0 1 3 3c0 .965-.593 1.482-1.17 1.986-.547.477-1.08.941-1.08 1.764h-1.5c0-1.368.707-1.909 1.328-2.385.487-.373.922-.706.922-1.365a1.5 1.5 0 0 0-3 0h-1.5a3 3 0 0 1 3-3m.8 8h-1.5v1.5h1.5z"
|
|
11419
11408
|
}
|
|
11420
|
-
),
|
|
11409
|
+
), Aw = d("FileQuestionMarkIcon", Qd), Jd = /* @__PURE__ */ n("path", { d: "M20 8v11.59l-3.83-3.84c.52-.79.83-1.73.83-2.75 0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.02 0 1.96-.31 2.76-.83l4.43 4.43c-.34.25-.74.4-1.19.4H5.99C4.89 22 4 21.1 4 20l.01-16c0-1.1.89-2 1.99-2h8zm-8 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3" }), zw = d("FileSearchIcon", Jd), eu = /* @__PURE__ */ n("path", { d: "M14 2H6c-1.1 0-1.99.9-1.99 2L4 20c0 1.1.89 2 1.99 2H18c1.1 0 2-.9 2-2V8zM6 4h7l5 5v8.58l-1.84-1.84a4.99 4.99 0 0 0-.64-6.28A4.96 4.96 0 0 0 12 8a5 5 0 0 0-3.53 1.46 4.98 4.98 0 0 0 0 7.05 4.98 4.98 0 0 0 6.28.63L17.6 20H6zm8.11 11.1c-.56.56-1.31.88-2.11.88s-1.55-.31-2.11-.88c-.56-.56-.88-1.31-.88-2.11s.31-1.55.88-2.11c.56-.57 1.31-.88 2.11-.88s1.55.31 2.11.88c.56.56.88 1.31.88 2.11s-.31 1.55-.88 2.11" }), Lw = d(
|
|
11421
11410
|
"FileSearchOutlineIcon",
|
|
11422
11411
|
eu
|
|
11423
11412
|
), tu = /* @__PURE__ */ n(
|
|
@@ -11445,7 +11434,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11445
11434
|
clipRule: "evenodd",
|
|
11446
11435
|
d: "M12.1667 6.83334H19.5C20.5083 6.83334 21.3333 7.65834 21.3333 8.66667V17.8333C21.3333 18.8417 20.5083 19.6667 19.5 19.6667H4.83333C3.825 19.6667 3 18.8417 3 17.8333L3.00917 6.83334C3.00917 5.825 3.825 5 4.83333 5H10.3333L12.1667 6.83334ZM16.31 15.5002C16.5483 15.284 16.86 15.1459 17.2083 15.1459C17.9463 15.1459 18.5467 15.7487 18.5467 16.4896C18.5467 17.2305 17.9463 17.8333 17.2083 17.8333C16.4704 17.8333 15.87 17.2305 15.87 16.4896C15.87 16.3884 15.8838 16.2871 15.9067 16.1905L12.6433 14.2762C12.3958 14.5063 12.0704 14.6489 11.7083 14.6489C10.9475 14.6489 10.3333 14.0323 10.3333 13.2684C10.3333 12.5045 10.9475 11.8879 11.7083 11.8879C12.0704 11.8879 12.3958 12.0305 12.6433 12.2606L15.8746 10.3693C15.8517 10.2635 15.8333 10.1576 15.8333 10.0472C15.8333 9.2833 16.4475 8.66667 17.2083 8.66667C17.9692 8.66667 18.5833 9.2833 18.5833 10.0472C18.5833 10.8111 17.9692 11.4277 17.2083 11.4277C16.8463 11.4277 16.5208 11.2851 16.2733 11.055L13.0421 12.9463C13.065 13.0521 13.0833 13.158 13.0833 13.2684C13.0833 13.3788 13.065 13.4847 13.0421 13.5905L16.31 15.5002Z"
|
|
11447
11436
|
}
|
|
11448
|
-
), Gw = d("FolderShareIcon", mu), gu = /* @__PURE__ */
|
|
11437
|
+
), Gw = d("FolderShareIcon", mu), gu = /* @__PURE__ */ j(T, { children: [
|
|
11449
11438
|
/* @__PURE__ */ n(
|
|
11450
11439
|
"mask",
|
|
11451
11440
|
{
|
|
@@ -11489,28 +11478,28 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11489
11478
|
fillRule: "evenodd",
|
|
11490
11479
|
d: "m12 6-2-2H4c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2zm2.59 7-2.13-2.12 1.42-1.42L16 11.59l2.12-2.13 1.42 1.42L17.41 13l2.13 2.12-1.42 1.42L16 14.41l-2.12 2.13-1.42-1.42z"
|
|
11491
11480
|
}
|
|
11492
|
-
), Jw = d("FolderXIcon", wu), Mu = /* @__PURE__ */ n("path", { d: "M22 4h-8l-2-2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M2 6H0v14a2 2 0 0 0 2 2h18v-2H2z" }), eM = d("FoldersIcon", Mu), yu = /* @__PURE__ */ n("path", { d: "M13.672 2.422c-2.546.625-5.141 2.07-7.185 4.065-1.996 2.044-3.44 4.639-4.065 7.185-.624 2.559-.428 5.056-.22 6.402.184 1.36.38 1.555 1.726 1.75 1.334.184 3.844.368 6.39-.256s5.141-2.069 7.186-4.064c1.995-2.045 3.44-4.64 4.064-7.186s.44-5.056.257-6.39c-.196-1.346-.392-1.542-1.75-1.726-1.347-.208-3.844-.404-6.403.22M7.356 17.75l-1.114-1.114 1.469-1.482-1.47-1.48 1.115-1.115 1.48 1.47 2.045-2.033L9.4 10.514 10.514 9.4l1.481 1.481 2.032-2.044-1.469-1.481 1.114-1.114 1.481 1.469 1.482-1.47 1.114 1.115-1.47 1.48 1.47 1.482-1.114 1.114-1.482-1.469-2.044 2.032 1.481 1.481-1.114 1.114-1.48-1.48-2.033 2.043 1.469 1.482-1.114 1.114-1.481-1.47z" }), tM = d("FootballIcon", yu), Iu = /* @__PURE__ */ n("path", { d: "M11.078 11.72c.47 1.23.42 2.51-.99 3.02-2.9 1.07-3.55-1.74-3.59-1.88zm-5.03-.81 4.32-1.07c-.19-1.05.1-2.1.1-3.34 0-1.68-1.33-4.97-3.45-4.44-2.42.6-2.77 3.29-2.68 4.59.12 1.3 1.64 4.08 1.71 4.26m12.14 8.94c-.03.15-.69 2.95-3.59 1.89-1.4-.52-1.46-1.8-.99-3.03zm2.15-6.2c.1-1.3-.24-4-2.67-4.6-2.11-.55-3.44 2.76-3.44 4.45 0 1.23.28 2.28.11 3.33l4.3 1.07c.08-.18 1.59-2.96 1.7-4.25" }), oM = d("FootprintsIcon", Iu), xu = /* @__PURE__ */ n("path", { d: "M14 9V5L21 12L14 19V14.9C9 14.9 5.5 16.5 3 20C4 15 7 10 14 9Z" }), nM = d("ForwardIcon", xu), Su = /* @__PURE__ */ n("path", { d: "M7.338 6h10a6 6 0 1 1-4.47 10h-1.06a6 6 0 1 1-4.47-10m-1 3v2h-2v2h2v2h2v-2h2v-2h-2V9zm9.5 3a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m3-3a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3" }), rM = d("GamepadIcon", Su), Hu = /* @__PURE__ */
|
|
11481
|
+
), Jw = d("FolderXIcon", wu), Mu = /* @__PURE__ */ n("path", { d: "M22 4h-8l-2-2H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M2 6H0v14a2 2 0 0 0 2 2h18v-2H2z" }), eM = d("FoldersIcon", Mu), yu = /* @__PURE__ */ n("path", { d: "M13.672 2.422c-2.546.625-5.141 2.07-7.185 4.065-1.996 2.044-3.44 4.639-4.065 7.185-.624 2.559-.428 5.056-.22 6.402.184 1.36.38 1.555 1.726 1.75 1.334.184 3.844.368 6.39-.256s5.141-2.069 7.186-4.064c1.995-2.045 3.44-4.64 4.064-7.186s.44-5.056.257-6.39c-.196-1.346-.392-1.542-1.75-1.726-1.347-.208-3.844-.404-6.403.22M7.356 17.75l-1.114-1.114 1.469-1.482-1.47-1.48 1.115-1.115 1.48 1.47 2.045-2.033L9.4 10.514 10.514 9.4l1.481 1.481 2.032-2.044-1.469-1.481 1.114-1.114 1.481 1.469 1.482-1.47 1.114 1.115-1.47 1.48 1.47 1.482-1.114 1.114-1.482-1.469-2.044 2.032 1.481 1.481-1.114 1.114-1.48-1.48-2.033 2.043 1.469 1.482-1.114 1.114-1.481-1.47z" }), tM = d("FootballIcon", yu), Iu = /* @__PURE__ */ n("path", { d: "M11.078 11.72c.47 1.23.42 2.51-.99 3.02-2.9 1.07-3.55-1.74-3.59-1.88zm-5.03-.81 4.32-1.07c-.19-1.05.1-2.1.1-3.34 0-1.68-1.33-4.97-3.45-4.44-2.42.6-2.77 3.29-2.68 4.59.12 1.3 1.64 4.08 1.71 4.26m12.14 8.94c-.03.15-.69 2.95-3.59 1.89-1.4-.52-1.46-1.8-.99-3.03zm2.15-6.2c.1-1.3-.24-4-2.67-4.6-2.11-.55-3.44 2.76-3.44 4.45 0 1.23.28 2.28.11 3.33l4.3 1.07c.08-.18 1.59-2.96 1.7-4.25" }), oM = d("FootprintsIcon", Iu), xu = /* @__PURE__ */ n("path", { d: "M14 9V5L21 12L14 19V14.9C9 14.9 5.5 16.5 3 20C4 15 7 10 14 9Z" }), nM = d("ForwardIcon", xu), Su = /* @__PURE__ */ n("path", { d: "M7.338 6h10a6 6 0 1 1-4.47 10h-1.06a6 6 0 1 1-4.47-10m-1 3v2h-2v2h2v2h2v-2h2v-2h-2V9zm9.5 3a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m3-3a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3" }), rM = d("GamepadIcon", Su), Hu = /* @__PURE__ */ j(T, { children: [
|
|
11493
11482
|
/* @__PURE__ */ n("path", { d: "m20.38 8.57-1.23 1.85a8 8 0 0 1-.22 7.58H5.07A8 8 0 0 1 15.58 6.85l1.85-1.23A10 10 0 0 0 3.35 19a2 2 0 0 0 1.72 1h13.85a2 2 0 0 0 1.74-1 10 10 0 0 0-.27-10.44z" }),
|
|
11494
11483
|
/* @__PURE__ */ n("path", { d: "M10.59 15.41a2 2 0 0 0 2.83 0l5.66-8.49-8.49 5.66a2 2 0 0 0 0 2.83" })
|
|
11495
|
-
] }), sM = d("GaugeIcon", Hu),
|
|
11484
|
+
] }), sM = d("GaugeIcon", Hu), ju = /* @__PURE__ */ n("path", { d: "M16 9h3l-5 7m-4-7h4l-2 8M5 9h3l2 7m5-12h2l2 3h-3m-5-3h2l1 3h-4M7 4h2L8 7H5m1-5L2 8l10 14L22 8l-4-6z" }), cM = d("GemIcon", ju), Vu = /* @__PURE__ */ n(
|
|
11496
11485
|
"path",
|
|
11497
11486
|
{
|
|
11498
11487
|
fillRule: "evenodd",
|
|
11499
11488
|
d: "M22 12v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a1 1 0 0 1-1-1V8a2 2 0 0 1 2-2h3.17A3 3 0 0 1 9 2c1 0 1.88.5 2.43 1.24v-.01L12 4l.57-.77v.01C13.12 2.5 14 2 15 2a3 3 0 0 1 2.83 4H21a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1M4 20h7v-8H4zm16-8v8h-7v-8zM9 4a1 1 0 1 0 0 2 1 1 0 0 0 0-2m5 1a1 1 0 1 1 2 0 1 1 0 0 1-2 0M3 8v2h8V8zm10 2V8h8v2z"
|
|
11500
11489
|
}
|
|
11501
|
-
), aM = d("GiftIcon",
|
|
11490
|
+
), aM = d("GiftIcon", Vu), Au = /* @__PURE__ */ n(
|
|
11502
11491
|
"path",
|
|
11503
11492
|
{
|
|
11504
11493
|
fillRule: "evenodd",
|
|
11505
11494
|
d: "M6.17 6c-.84-2.26 1-4.08 2.89-4.07.87.01 1.74.4 2.37 1.29L12 4l.57-.76C14.6.42 19 2.73 17.83 6H21a2 2 0 0 1 2 2v2a1 1 0 0 1-1 1h-9V8h-2v3H2a1 1 0 0 1-1-1V8a2 2 0 0 1 2-2zm3.54-.29C10.34 5.08 9.89 4 9 4a1 1 0 0 0-1 1c0 .89 1.08 1.34 1.71.71M15 4c.89 0 1.34 1.08.71 1.71S14 5.89 14 5a1 1 0 0 1 1-1M2 20v-8h9v8h2v-8h9v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2"
|
|
11506
11495
|
}
|
|
11507
|
-
), iM = d("Gift2Icon",
|
|
11496
|
+
), iM = d("Gift2Icon", Au), zu = /* @__PURE__ */ n(
|
|
11508
11497
|
"path",
|
|
11509
11498
|
{
|
|
11510
11499
|
fillRule: "evenodd",
|
|
11511
11500
|
d: "M20 6h-2.18c.11-.31.18-.65.18-1a2.996 2.996 0 0 0-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H4c-1.11 0-1.99.89-1.99 2L2 19c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V8c0-1.11-.89-2-2-2m-5-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m-5 1c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1M4 19v-2h16v2zM4 8v6h16V8h-5.08L17 10.83 15.38 12 13 8.76 12 7.4l-1 1.36L8.62 12 7 10.83 9.08 8z"
|
|
11512
11501
|
}
|
|
11513
|
-
), lM = d("GiftCardIcon", zu), Lu = /* @__PURE__ */ n("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2 0 .68.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2 0-.68.07-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .68-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2 0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" }), dM = d("GlobeIcon", Lu), Ru = /* @__PURE__ */
|
|
11502
|
+
), lM = d("GiftCardIcon", zu), Lu = /* @__PURE__ */ n("path", { d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm6.93 6h-2.95c-.32-1.25-.78-2.45-1.38-3.56 1.84.63 3.37 1.91 4.33 3.56zM12 4.04c.83 1.2 1.48 2.53 1.91 3.96h-3.82c.43-1.43 1.08-2.76 1.91-3.96zM4.26 14C4.1 13.36 4 12.69 4 12s.1-1.36.26-2h3.38c-.08.66-.14 1.32-.14 2 0 .68.06 1.34.14 2H4.26zm.82 2h2.95c.32 1.25.78 2.45 1.38 3.56-1.84-.63-3.37-1.9-4.33-3.56zm2.95-8H5.08c.96-1.66 2.49-2.93 4.33-3.56C8.81 5.55 8.35 6.75 8.03 8zM12 19.96c-.83-1.2-1.48-2.53-1.91-3.96h3.82c-.43 1.43-1.08 2.76-1.91 3.96zM14.34 14H9.66c-.09-.66-.16-1.32-.16-2 0-.68.07-1.35.16-2h4.68c.09.65.16 1.32.16 2 0 .68-.07 1.34-.16 2zm.25 5.56c.6-1.11 1.06-2.31 1.38-3.56h2.95c-.96 1.65-2.49 2.93-4.33 3.56zM16.36 14c.08-.66.14-1.32.14-2 0-.68-.06-1.34-.14-2h3.38c.16.64.26 1.31.26 2s-.1 1.36-.26 2h-3.38z" }), dM = d("GlobeIcon", Lu), Ru = /* @__PURE__ */ j(T, { children: [
|
|
11514
11503
|
/* @__PURE__ */ n(
|
|
11515
11504
|
"path",
|
|
11516
11505
|
{
|
|
@@ -11519,7 +11508,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11519
11508
|
}
|
|
11520
11509
|
),
|
|
11521
11510
|
/* @__PURE__ */ n("path", { d: "M17 18c-.56 0-1 .44-1 1s.44 1 1 1 1-.44 1-1-.44-1-1-1m6 1c-.94 2.34-3.27 4-6 4s-5.06-1.66-6-4c.94-2.34 3.27-4 6-4s5.06 1.66 6 4m-3.5 0a2.5 2.5 0 0 0-5 0 2.5 2.5 0 0 0 5 0" })
|
|
11522
|
-
] }), uM = d("GlobeEyeIcon", Ru), Eu = /* @__PURE__ */
|
|
11511
|
+
] }), uM = d("GlobeEyeIcon", Ru), Eu = /* @__PURE__ */ j(T, { children: [
|
|
11523
11512
|
/* @__PURE__ */ n(
|
|
11524
11513
|
"path",
|
|
11525
11514
|
{
|
|
@@ -11531,7 +11520,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11531
11520
|
] }), hM = d(
|
|
11532
11521
|
"GlobeQuestionMarkIcon",
|
|
11533
11522
|
Eu
|
|
11534
|
-
), Tu = /* @__PURE__ */
|
|
11523
|
+
), Tu = /* @__PURE__ */ j(T, { children: [
|
|
11535
11524
|
/* @__PURE__ */ n("circle", { cx: "12", cy: "12", r: "12", fill: "#636363" }),
|
|
11536
11525
|
/* @__PURE__ */ n(
|
|
11537
11526
|
"mask",
|
|
@@ -11546,7 +11535,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11546
11535
|
children: /* @__PURE__ */ n("circle", { cx: "12", cy: "12", r: "12", fill: "#fff" })
|
|
11547
11536
|
}
|
|
11548
11537
|
),
|
|
11549
|
-
/* @__PURE__ */
|
|
11538
|
+
/* @__PURE__ */ j("g", { mask: "url(#a)", children: [
|
|
11550
11539
|
/* @__PURE__ */ n(
|
|
11551
11540
|
"path",
|
|
11552
11541
|
{
|
|
@@ -11582,8 +11571,8 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11582
11571
|
),
|
|
11583
11572
|
/* @__PURE__ */ n("rect", { width: "12", height: "2", x: "11", y: "11", fill: "url(#d)", rx: "1" })
|
|
11584
11573
|
] }),
|
|
11585
|
-
/* @__PURE__ */
|
|
11586
|
-
/* @__PURE__ */
|
|
11574
|
+
/* @__PURE__ */ j("defs", { children: [
|
|
11575
|
+
/* @__PURE__ */ j(
|
|
11587
11576
|
"radialGradient",
|
|
11588
11577
|
{
|
|
11589
11578
|
id: "b",
|
|
@@ -11598,7 +11587,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11598
11587
|
]
|
|
11599
11588
|
}
|
|
11600
11589
|
),
|
|
11601
|
-
/* @__PURE__ */
|
|
11590
|
+
/* @__PURE__ */ j(
|
|
11602
11591
|
"radialGradient",
|
|
11603
11592
|
{
|
|
11604
11593
|
id: "c",
|
|
@@ -11613,7 +11602,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11613
11602
|
]
|
|
11614
11603
|
}
|
|
11615
11604
|
),
|
|
11616
|
-
/* @__PURE__ */
|
|
11605
|
+
/* @__PURE__ */ j(
|
|
11617
11606
|
"radialGradient",
|
|
11618
11607
|
{
|
|
11619
11608
|
id: "d",
|
|
@@ -11632,7 +11621,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11632
11621
|
] }), fM = d(
|
|
11633
11622
|
"GoogleAuthenticatorLogoIcon",
|
|
11634
11623
|
Tu
|
|
11635
|
-
), Pu = /* @__PURE__ */
|
|
11624
|
+
), Pu = /* @__PURE__ */ j(
|
|
11636
11625
|
"svg",
|
|
11637
11626
|
{
|
|
11638
11627
|
width: "24",
|
|
@@ -11642,7 +11631,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11642
11631
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11643
11632
|
children: [
|
|
11644
11633
|
/* @__PURE__ */ n("rect", { width: "24", height: "24", fill: "url(#pattern0_124_6)" }),
|
|
11645
|
-
/* @__PURE__ */
|
|
11634
|
+
/* @__PURE__ */ j("defs", { children: [
|
|
11646
11635
|
/* @__PURE__ */ n(
|
|
11647
11636
|
"pattern",
|
|
11648
11637
|
{
|
|
@@ -11698,7 +11687,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11698
11687
|
fillRule: "evenodd",
|
|
11699
11688
|
d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2zm10 14.5V20H8v-3.5l4-4zM8 4v3.5l4 4 4-4V4z"
|
|
11700
11689
|
}
|
|
11701
|
-
),
|
|
11690
|
+
), jM = d("HourglassIcon", Xu), Yu = /* @__PURE__ */ n("path", { d: "M6 2h12v6l-4 4 4 4v6H6v-6l4-4-4-4zm10 14.5-4-4-4 4V20h8zm-4-5 4-4V4H8v3.5zM10 6h4v.75l-2 2-2-2z" }), VM = d("HourglassSandIcon", Yu), Qu = /* @__PURE__ */ n("path", { d: "M10 21v-6.353h4V21h5v-8.47h3L12 3 2 12.53h3V21z" }), AM = d("HouseIcon", Qu), Ju = /* @__PURE__ */ n(
|
|
11702
11691
|
"path",
|
|
11703
11692
|
{
|
|
11704
11693
|
fillRule: "evenodd",
|
|
@@ -11729,7 +11718,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11729
11718
|
), NM = d("KeeperIcon", sh), D1 = {
|
|
11730
11719
|
foreground: "ksjsui:fill-(--ksjsui-color-keeper-gold) ksjsui:[.dark-mode_&]:fill-black",
|
|
11731
11720
|
background: "ksjsui:fill-black ksjsui:[.dark-mode_&]:fill-(--ksjsui-color-keeper-gold)"
|
|
11732
|
-
}, ch = /* @__PURE__ */
|
|
11721
|
+
}, ch = /* @__PURE__ */ j(T, { children: [
|
|
11733
11722
|
/* @__PURE__ */ n(
|
|
11734
11723
|
"path",
|
|
11735
11724
|
{
|
|
@@ -11802,7 +11791,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11802
11791
|
clipRule: "evenodd",
|
|
11803
11792
|
d: "M22 12C22 14.0826 21.3634 16.0165 20.2742 17.6177L19.3357 16.6792L19.6607 16.2731L16.094 13.4375L13.7128 11.0563H15.3989L19.6607 7.66811L18.6961 6.46306L14.8576 9.51517H12.1717L11.6667 9.0102V3.27315H10.1219V7.46536L8.61243 5.95594V5.83449L7.70525 5.04875L6.38235 3.72585C7.98355 2.63661 9.91743 2 12 2C17.5228 2 22 6.47715 22 12ZM17.411 20.411L19.3848 22.3848L20.799 20.9706L2.41421 2.58579L1 4L3.58899 6.58899C2.58348 8.14875 2 10.0062 2 12C2 17.5228 6.47715 22 12 22C13.9938 22 15.8512 21.4165 17.411 20.411ZM11.6667 14.6667V20.6664H10.1219V13.1219L11.6667 14.6667ZM8.61243 11.6124V18.2412L7.06591 19.5807V10.0659L8.61243 11.6124ZM5.58347 8.58347V16.3958L4.03862 15.0849V9.22777L5.18181 8.18181L5.58347 8.58347ZM13.1441 16.1441L16.4844 19.4844L16.4176 19.5337L14.6889 18.1168V20.2748L13.1441 20.6681V16.1441ZM14.6889 3.87651L13.1441 3.48323V8.25298L14.4073 8.2597L17.701 5.56054L16.4176 4.61769L14.6889 6.03449V3.87651ZM16.7363 11.9706L19.8969 14.5706L20.8818 13.3824L19.1649 11.9706L20.8818 10.5589L19.8969 9.37063L16.7363 11.9706Z"
|
|
11804
11793
|
}
|
|
11805
|
-
), $M = d("KeeperOffIcon", ih), lh = /* @__PURE__ */
|
|
11794
|
+
), $M = d("KeeperOffIcon", ih), lh = /* @__PURE__ */ j(T, { children: [
|
|
11806
11795
|
/* @__PURE__ */ n(
|
|
11807
11796
|
"mask",
|
|
11808
11797
|
{
|
|
@@ -11841,7 +11830,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11841
11830
|
] }), _M = d(
|
|
11842
11831
|
"KeeperSquareInputIcon",
|
|
11843
11832
|
lh
|
|
11844
|
-
), dh = /* @__PURE__ */ n("path", { d: "M7 6a5.99 5.99 0 0 1 5.65 4H23v4h-2v4h-4v-4h-4.35A5.99 5.99 0 0 1 7 18c-3.31 0-6-2.69-6-6s2.69-6 6-6m-2 6c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2" }), ZM = d("KeyIcon", dh), uh = /* @__PURE__ */ n("path", { d: "M6.888 10.9A4.016 4.016 0 0 0 10 7c0-2.2-1.8-4-4-4S2 4.8 2 7a4.016 4.016 0 0 0 3.112 3.9H5V21h5v-2H7v-2h2v-2H7v-4.1zM8 7c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2m14 6H12v5h10zm0-7H12v5h10z" }), FM = d("KeyEqualIcon", uh), hh = /* @__PURE__ */
|
|
11833
|
+
), dh = /* @__PURE__ */ n("path", { d: "M7 6a5.99 5.99 0 0 1 5.65 4H23v4h-2v4h-4v-4h-4.35A5.99 5.99 0 0 1 7 18c-3.31 0-6-2.69-6-6s2.69-6 6-6m-2 6c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2" }), ZM = d("KeyIcon", dh), uh = /* @__PURE__ */ n("path", { d: "M6.888 10.9A4.016 4.016 0 0 0 10 7c0-2.2-1.8-4-4-4S2 4.8 2 7a4.016 4.016 0 0 0 3.112 3.9H5V21h5v-2H7v-2h2v-2H7v-4.1zM8 7c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2m14 6H12v5h10zm0-7H12v5h10z" }), FM = d("KeyEqualIcon", uh), hh = /* @__PURE__ */ j(T, { children: [
|
|
11845
11834
|
/* @__PURE__ */ n("path", { d: "M16 7C16 9.21 14.21 11 12 11C9.79 11 8 9.21 8 7C8 4.79 9.79 3 12 3C14.21 3 16 4.79 16 7ZM4 17C4 14.34 9.33 13 12 13C12.5719 13 13.2659 13.0615 14.0033 13.1842C14.0599 14.7452 14.8325 16.121 16 16.9967V19H4V17Z" }),
|
|
11846
11835
|
/* @__PURE__ */ n("path", { d: "M18 15.825C16.835 15.415 16 14.305 16 13C16 11.345 17.345 10 19 10C20.655 10 22 11.345 22 13C22 14.305 21.165 15.415 20 15.825L20 19L22 19L22 21L20 21L20 22L18 22L18 15.825ZM20 13C20 12.45 19.55 12 19 12C18.45 12 18 12.45 18 13C18 13.55 18.45 14 19 14C19.55 14 20 13.55 20 13Z" })
|
|
11847
11836
|
] }), BM = d("KeyUserIcon", hh), fh = /* @__PURE__ */ n(
|
|
@@ -11856,7 +11845,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11856
11845
|
fillRule: "evenodd",
|
|
11857
11846
|
d: "M11.7 5c-.6-1.8-2.2-3-4.2-3C5 2 3 4 3 6.5S5 11 7.5 11c1.9 0 3.6-1.2 4.2-3H15v3h3V8h3V5zM6 6.5C6 5.7 6.7 5 7.5 5S9 5.7 9 6.5 8.3 8 7.5 8 6 7.3 6 6.5M16.5 22a4.5 4.5 0 1 0-4.244-6H3v3h3v3h3v-3h3.256a4.5 4.5 0 0 0 4.244 3m0-3a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3"
|
|
11858
11847
|
}
|
|
11859
|
-
), GM = d("KeysIcon", mh), gh = /* @__PURE__ */
|
|
11848
|
+
), GM = d("KeysIcon", mh), gh = /* @__PURE__ */ j(T, { children: [
|
|
11860
11849
|
/* @__PURE__ */ n("path", { fillOpacity: ".01", d: "M0 0h24v24H0z" }),
|
|
11861
11850
|
/* @__PURE__ */ n("path", { d: "m9.808 12.196-2.094.622a4.5 4.5 0 0 1 .609-2.795l1.633 1.507-.003.009c.148.132.168.36.046.522a.37.37 0 0 1-.19.129zm.956-1.707c.06.047.137.073.216.073a.374.374 0 0 0 .367-.36l.009-.006.122-2.25a4.271 4.271 0 0 0-2.51 1.238l1.79 1.308zm.635 2.36.603.3.6-.3.148-.668-.415-.536h-.669l-.418.533zm-.874.934a.37.37 0 0 0-.424-.288l-.003-.006-2.148.376c.333.944.95 1.715 1.73 2.231l.83-2.073-.005-.009a.4.4 0 0 0 .02-.231m2.123-3.593a.4.4 0 0 0 .08.22.36.36 0 0 0 .503.07l.006.003 1.778-1.299a4.26 4.26 0 0 0-2.492-1.238zm3.019-.167-1.625 1.501v.006a.37.37 0 0 0-.117.2c-.042.199.071.396.262.448l.003.01 2.105.624c.046-.47.017-.953-.09-1.437a4.6 4.6 0 0 0-.538-1.352m6.043 5.296-4.811 6.168a1.32 1.32 0 0 1-1.039.51L8.144 22c-.404 0-.788-.188-1.039-.51l-4.814-6.17q-.038-.053-.077-.11a1.37 1.37 0 0 1-.18-1.04l1.717-7.69c.09-.402.355-.742.72-.92l6.95-3.426c.16-.08.333-.123.51-.132.222-.012.444.035.646.132l6.953 3.422c.365.18.63.52.72.921l1.716 7.69c.091.404-.003.827-.256 1.152m-2.74-1.768c-.037-.009-.085-.024-.12-.03-.145-.029-.261-.02-.398-.032-.29-.032-.532-.056-.745-.126-.089-.035-.151-.14-.18-.185l-.168-.05a5.7 5.7 0 0 0-.088-2.002 5.6 5.6 0 0 0-.78-1.857c.043-.041.126-.114.149-.138.005-.076 0-.158.08-.243.164-.159.37-.29.62-.449.12-.07.227-.117.347-.208l.09-.076c.2-.165.245-.446.103-.634s-.42-.202-.62-.038c-.029.023-.068.053-.091.076-.111.1-.182.197-.276.3-.205.213-.376.392-.56.521-.08.05-.2.033-.254.03l-.16.117a5.4 5.4 0 0 0-3.453-1.721c-.003-.056-.009-.162-.009-.191-.054-.053-.12-.1-.137-.214-.017-.232.012-.478.049-.777.02-.141.051-.255.057-.408v-.123c0-.264-.185-.478-.416-.475-.23 0-.415.214-.415.475v.012c0 .035-.003.079 0 .111.006.153.037.267.057.408.034.299.065.548.045.777a.46.46 0 0 1-.136.223l-.009.182q-.375.03-.75.12a5.3 5.3 0 0 0-2.72 1.601l-.152-.111c-.074.011-.15.035-.247-.024-.185-.129-.356-.308-.56-.522-.095-.103-.163-.2-.274-.299l-.091-.076a.5.5 0 0 0-.29-.112.4.4 0 0 0-.333.153c-.142.185-.097.47.102.633l.006.006c.028.024.06.053.085.07.12.091.228.138.345.209.247.158.455.29.62.448.063.07.074.194.082.247l.134.123a5.68 5.68 0 0 0-.848 3.868l-.173.053c-.046.062-.111.158-.18.185-.213.07-.455.094-.745.126-.137.012-.253.006-.398.032-.032.006-.077.018-.111.027H5.05q-.005 0-.006.002c-.245.062-.404.294-.353.523.052.228.29.369.538.313h.006q.005-.001.008-.003l.108-.023c.143-.038.245-.097.373-.147.276-.102.504-.187.726-.22.094-.008.19.059.239.088l.182-.032a5.56 5.56 0 0 0 2.398 3.088l-.076.188c.028.073.056.17.037.243-.08.217-.22.443-.376.698-.077.118-.154.209-.222.343-.017.033-.037.083-.054.115-.108.234-.028.507.176.61.208.102.464-.006.575-.24.017-.033.037-.077.051-.11.06-.137.08-.257.12-.392.11-.285.17-.584.321-.771.043-.05.109-.07.18-.091l.093-.176a5.24 5.24 0 0 0 3.842.009c.025.05.077.14.088.164.071.023.148.035.213.132.114.2.19.437.285.721.042.135.062.255.12.393.013.032.036.076.05.111.112.238.367.347.575.244.205-.103.285-.372.177-.61-.017-.035-.037-.082-.054-.114-.069-.135-.148-.226-.222-.344-.157-.255-.288-.466-.37-.68-.034-.111.006-.182.031-.252-.017-.018-.048-.123-.068-.173 1.152-.701 2-1.819 2.398-3.112l.177.032c.062-.043.12-.096.233-.088.222.033.45.118.726.22.128.05.23.109.372.15.032.009.074.015.108.024l.009.002h.006c.247.056.486-.085.537-.313a.47.47 0 0 0-.358-.534m-5.073-.065q-.043-.01-.085-.006a.34.34 0 0 0-.14.039c-.176.088-.256.305-.176.49l-.003.002.842 2.094a4.42 4.42 0 0 0 1.736-2.246l-2.169-.379zm-1.574 1.112a.36.36 0 0 0-.165-.162.36.36 0 0 0-.17-.038.36.36 0 0 0-.31.2h-.003l-1.056 1.968a4.16 4.16 0 0 0 2.771 0l-1.058-1.971h-.009z" })
|
|
11862
11851
|
] }), KM = d("KubernetesLogoIcon", gh), Ch = /* @__PURE__ */ n("path", { d: "m2 6 10-5 10 5v2H2zm2 4h3v7H4zm6.5 7v-7h3v7zM22 22v-3H2v3zm-5-12h3v7h-3z" }), XM = d("LandmarkIcon", Ch), kh = /* @__PURE__ */ n("path", { d: "M22 16a2 2 0 0 1-2 2h4v2H0v-2h4a2 2 0 0 1-2-2V6c0-1.11.89-2 2-2h16a2 2 0 0 1 2 2zM20 6H4v10h16z" }), YM = d("LaptopIcon", kh), bh = /* @__PURE__ */ n("path", { d: "M20 18c1.1 0 1.99-.9 1.99-2L22 6a2 2 0 0 0-2-2H4c-1.11 0-2 .89-2 2v10a2 2 0 0 0 2 2H0v2h24v-2zM4 16V6h16v10.01zm5.097-6.047c0-1.027.836-1.864 1.864-1.864 1.027 0 1.864.837 1.864 1.864a1.867 1.867 0 0 1-1.864 1.864 1.867 1.867 0 0 1-1.864-1.864m7.032 4.236-2.482-2.482a3.2 3.2 0 0 0 .527-1.754A3.216 3.216 0 0 0 10.96 6.74a3.217 3.217 0 0 0-3.214 3.213 3.22 3.22 0 0 0 3.214 3.214 3.2 3.2 0 0 0 1.724-.51l2.489 2.487z" }), QM = d("LaptopSearchIcon", bh), wh = /* @__PURE__ */ n(
|
|
@@ -11877,14 +11866,14 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11877
11866
|
fillRule: "evenodd",
|
|
11878
11867
|
d: "M12 2C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9zm5-7.3.85-.6A5 5 0 0 0 17 9c0-2.76-2.24-5-5-5S7 6.24 7 9c0 1.63.8 3.16 2.15 4.1l.85.6V16h4z"
|
|
11879
11868
|
}
|
|
11880
|
-
), ry = d("LightbulbOutlineIcon", Sh), Hh = /* @__PURE__ */ n(T, { children: /* @__PURE__ */ n("path", { d: "M10.475 15.062a1.053 1.053 0 0 0 0-1.536 3.226 3.226 0 0 1 0-4.588l3.819-3.82a3.226 3.226 0 0 1 4.587 0 3.226 3.226 0 0 1 0 4.588l-.508.52c.303.844.444 1.73.433 2.618l1.612-1.612a5.414 5.414 0 0 0 0-7.65 5.414 5.414 0 0 0-7.65 0l-3.83 3.83a5.414 5.414 0 0 0 0 7.65 1.09 1.09 0 0 0 1.537 0m4.587-6.124a1.09 1.09 0 0 0-1.536 0 1.053 1.053 0 0 0 0 1.537 3.226 3.226 0 0 1 0 4.587l-3.82 3.82a3.226 3.226 0 0 1-4.587 0 3.226 3.226 0 0 1 0-4.588l.508-.509a7.6 7.6 0 0 1-.432-2.629l-1.613 1.612a5.414 5.414 0 0 0 0 7.65 5.414 5.414 0 0 0 7.65 0l3.83-3.83a5.414 5.414 0 0 0 0-7.65" }) }), sy = d("LinkIcon", Hh),
|
|
11869
|
+
), ry = d("LightbulbOutlineIcon", Sh), Hh = /* @__PURE__ */ n(T, { children: /* @__PURE__ */ n("path", { d: "M10.475 15.062a1.053 1.053 0 0 0 0-1.536 3.226 3.226 0 0 1 0-4.588l3.819-3.82a3.226 3.226 0 0 1 4.587 0 3.226 3.226 0 0 1 0 4.588l-.508.52c.303.844.444 1.73.433 2.618l1.612-1.612a5.414 5.414 0 0 0 0-7.65 5.414 5.414 0 0 0-7.65 0l-3.83 3.83a5.414 5.414 0 0 0 0 7.65 1.09 1.09 0 0 0 1.537 0m4.587-6.124a1.09 1.09 0 0 0-1.536 0 1.053 1.053 0 0 0 0 1.537 3.226 3.226 0 0 1 0 4.587l-3.82 3.82a3.226 3.226 0 0 1-4.587 0 3.226 3.226 0 0 1 0-4.588l.508-.509a7.6 7.6 0 0 1-.432-2.629l-1.613 1.612a5.414 5.414 0 0 0 0 7.65 5.414 5.414 0 0 0 7.65 0l3.83-3.83a5.414 5.414 0 0 0 0-7.65" }) }), sy = d("LinkIcon", Hh), jh = /* @__PURE__ */ n(
|
|
11881
11870
|
"path",
|
|
11882
11871
|
{
|
|
11883
11872
|
fillRule: "evenodd",
|
|
11884
11873
|
d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1ZM8 13h8v-2H8v2Zm5-6h4c2.76 0 5 2.24 5 5s-2.24 5-5 5h-4v-1.9h4c1.71 0 3.1-1.39 3.1-3.1 0-1.71-1.39-3.1-3.1-3.1h-4V7Z",
|
|
11885
11874
|
clipRule: "evenodd"
|
|
11886
11875
|
}
|
|
11887
|
-
), cy = d("Link2Icon",
|
|
11876
|
+
), cy = d("Link2Icon", jh), Vh = /* @__PURE__ */ n("path", { d: "M3 9h2V7H3zm2 4H3v-2h2zm0 4H3v-2h2zm16-4H7v-2h14zM7 17h14v-2H7zm0-8V7h14v2z" }), ay = d("ListIcon", Vh), Ah = /* @__PURE__ */ n("path", { d: "M2 6h12v2H2zm0 4h12v2H2zm0 6h8v-2H2zm21-3-1.5-1.5-5.49 5.5L13 14l-1.5 1.5 4.51 4.5z" }), iy = d("ListCheckIcon", Ah), zh = /* @__PURE__ */ n("path", { d: "M3 6v2h18V6zm7 12h4v-2h-4zm8-5H6v-2h12z" }), ly = d("ListFilterIcon", zh), Lh = /* @__PURE__ */ n(
|
|
11888
11877
|
"path",
|
|
11889
11878
|
{
|
|
11890
11879
|
fillRule: "evenodd",
|
|
@@ -11898,7 +11887,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11898
11887
|
d: "M18 8h-1V6A5 5 0 0 0 7 6v2H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9zM7 15.72l1.37-1.358 1.936 1.921L15.63 11 17 12.358 10.306 19z",
|
|
11899
11888
|
clipRule: "evenodd"
|
|
11900
11889
|
}
|
|
11901
|
-
), hy = d("LockCheckIcon", Eh), Th = /* @__PURE__ */
|
|
11890
|
+
), hy = d("LockCheckIcon", Eh), Th = /* @__PURE__ */ j(T, { children: [
|
|
11902
11891
|
/* @__PURE__ */ n(
|
|
11903
11892
|
"path",
|
|
11904
11893
|
{
|
|
@@ -11916,7 +11905,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11916
11905
|
), vy = d(
|
|
11917
11906
|
"LockKeyholeOutlineIcon",
|
|
11918
11907
|
Nh
|
|
11919
|
-
), Oh = /* @__PURE__ */ n("path", { d: "M17.555 8v.005h-3.786V8H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.151 0 2.157.63 2.692 1.563l1.593-1.04A4.999 4.999 0 0 0 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2z" }), my = d("LockOpenIcon", Oh), Dh = /* @__PURE__ */ n("path", { d: "M12 1a5 5 0 0 1 5 5v2h1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2h1V6a5 5 0 0 1 5-5m.001 12.668-2.667-2.667-1.333 1.334 2.666 2.666-2.666 2.667 1.334 1.334 2.666-2.667 2.667 2.667 1.334-1.333L13.334 15l2.668-2.667-1.333-1.333zM12 2.9c-1.71 0-3.1 1.39-3.1 3.1v2h6.2V6c0-1.71-1.39-3.1-3.1-3.1" }), gy = d("LockXIcon", Dh), $h = /* @__PURE__ */ n("path", { d: "m11.338 7-1.4 1.4 2.6 2.6h-10.2v2h10.2l-2.6 2.6 1.4 1.4 5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8z" }), Cy = d("LogInIcon", $h), _h = /* @__PURE__ */ n("path", { d: "M17.338 7L15.928 8.41L18.508 11H8.33801V13H18.508L15.928 15.58L17.338 17L22.338 12L17.338 7ZM4.33801 5H12.338V3H4.33801C3.23801 3 2.33801 3.9 2.33801 5V19C2.33801 20.1 3.23801 21 4.33801 21H12.338V19H4.33801V5Z" }), ky = d("LogOutIcon", _h), Zh = /* @__PURE__ */ n("path", { d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2l.01-12c0-1.1.89-2 1.99-2m8 9 8-5V6l-8 5-8-5v2z" }), by = d("MailIcon", Zh), Fh = /* @__PURE__ */ n("path", { d: "M15 12h1.5v4.25l2.86 1.69-.75 1.22L15 17zm8 4a7 7 0 0 1-7 7c-3 0-5.6-1.92-6.58-4.6L8 17.9l-5.34 2.07-.16.03a.5.5 0 0 1-.5-.5V4.38c0-.23.15-.41.36-.48L8 2l6 2.1L19.34 2h.16a.5.5 0 0 1 .5.5v7.75c1.81 1.25 3 3.37 3 5.75M9 16c0-3.17 2.11-5.85 5-6.71V6.11L8 4v11.89l1 .35zm7-5a5 5 0 1 0 0 10 5 5 0 0 0 0-10" }), wy = d("MapClockIcon", Fh), Bh = /* @__PURE__ */ n("path", { d: "M5 9c0-3.87 3.13-7 7-7s7 3.13 7 7c0 5.25-7 13-7 13S5 14.25 5 9m4.5 0a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0" }), My = d("MapPinIcon", Bh), qh = /* @__PURE__ */
|
|
11908
|
+
), Oh = /* @__PURE__ */ n("path", { d: "M17.555 8v.005h-3.786V8H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.151 0 2.157.63 2.692 1.563l1.593-1.04A4.999 4.999 0 0 0 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2z" }), my = d("LockOpenIcon", Oh), Dh = /* @__PURE__ */ n("path", { d: "M12 1a5 5 0 0 1 5 5v2h1a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V10a2 2 0 0 1 2-2h1V6a5 5 0 0 1 5-5m.001 12.668-2.667-2.667-1.333 1.334 2.666 2.666-2.666 2.667 1.334 1.334 2.666-2.667 2.667 2.667 1.334-1.333L13.334 15l2.668-2.667-1.333-1.333zM12 2.9c-1.71 0-3.1 1.39-3.1 3.1v2h6.2V6c0-1.71-1.39-3.1-3.1-3.1" }), gy = d("LockXIcon", Dh), $h = /* @__PURE__ */ n("path", { d: "m11.338 7-1.4 1.4 2.6 2.6h-10.2v2h10.2l-2.6 2.6 1.4 1.4 5-5zm9 12h-8v2h8c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2h-8v2h8z" }), Cy = d("LogInIcon", $h), _h = /* @__PURE__ */ n("path", { d: "M17.338 7L15.928 8.41L18.508 11H8.33801V13H18.508L15.928 15.58L17.338 17L22.338 12L17.338 7ZM4.33801 5H12.338V3H4.33801C3.23801 3 2.33801 3.9 2.33801 5V19C2.33801 20.1 3.23801 21 4.33801 21H12.338V19H4.33801V5Z" }), ky = d("LogOutIcon", _h), Zh = /* @__PURE__ */ n("path", { d: "M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2l.01-12c0-1.1.89-2 1.99-2m8 9 8-5V6l-8 5-8-5v2z" }), by = d("MailIcon", Zh), Fh = /* @__PURE__ */ n("path", { d: "M15 12h1.5v4.25l2.86 1.69-.75 1.22L15 17zm8 4a7 7 0 0 1-7 7c-3 0-5.6-1.92-6.58-4.6L8 17.9l-5.34 2.07-.16.03a.5.5 0 0 1-.5-.5V4.38c0-.23.15-.41.36-.48L8 2l6 2.1L19.34 2h.16a.5.5 0 0 1 .5.5v7.75c1.81 1.25 3 3.37 3 5.75M9 16c0-3.17 2.11-5.85 5-6.71V6.11L8 4v11.89l1 .35zm7-5a5 5 0 1 0 0 10 5 5 0 0 0 0-10" }), wy = d("MapClockIcon", Fh), Bh = /* @__PURE__ */ n("path", { d: "M5 9c0-3.87 3.13-7 7-7s7 3.13 7 7c0 5.25-7 13-7 13S5 14.25 5 9m4.5 0a2.5 2.5 0 0 0 5 0 2.5 2.5 0 0 0-5 0" }), My = d("MapPinIcon", Bh), qh = /* @__PURE__ */ j(T, { children: [
|
|
11920
11909
|
/* @__PURE__ */ n("circle", { cx: "12", cy: "9", r: "2.5" }),
|
|
11921
11910
|
/* @__PURE__ */ n("path", { d: "M5 9c0-3.87 3.13-7 7-7s7 3.13 7 7c0 5.25-7 13-7 13S5 14.25 5 9m7-5C9.24 4 7 6.24 7 9c0 2.85 2.92 7.21 5 9.88 2.12-2.69 5-7 5-9.88 0-2.76-2.24-5-5-5" })
|
|
11922
11911
|
] }), yy = d("MapPinOutlineIcon", qh), Uh = /* @__PURE__ */ n("path", { d: "m19 6.41-4.5 4.5-1.41-1.41 4.5-4.5H14V3h7v7h-2zM10 19v2H3v-7h2v3.59l4.5-4.5 1.41 1.41-4.5 4.5z" }), Iy = d("MaximizeIcon", Uh), Wh = /* @__PURE__ */ n("path", { d: "M21.002 3.478 8.338 8v7l.748.267-1.127 2.254a2 2 0 0 0 1.156 2.792l4.084 1.361a2.015 2.015 0 0 0 2.421-1.003l1.303-2.606 4.079 1.457a1 1 0 0 0 1.336-.941V4.419a1 1 0 0 0-1.336-.941m-7.171 16.299-4.083-1.361 1.235-2.471 4.042 1.444zM4.338 15h2V8h-2c-1.103 0-2 .897-2 2v3c0 1.103.897 2 2 2" }), xy = d("MegaphoneIcon", Wh), Gh = /* @__PURE__ */ n(
|
|
@@ -11925,10 +11914,10 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11925
11914
|
fillRule: "evenodd",
|
|
11926
11915
|
d: "M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2M5 13v2h9v-2zm0-2V9h15v2z"
|
|
11927
11916
|
}
|
|
11928
|
-
), Sy = d("MembershipCardIcon", Gh), Kh = /* @__PURE__ */ n("path", { d: "M3 18h18v-2H3zm0-5h18v-2H3zm0-7v2h18V6z" }), Hy = d("MenuIcon", Kh), Xh = /* @__PURE__ */ n("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2" }),
|
|
11917
|
+
), Sy = d("MembershipCardIcon", Gh), Kh = /* @__PURE__ */ n("path", { d: "M3 18h18v-2H3zm0-5h18v-2H3zm0-7v2h18V6z" }), Hy = d("MenuIcon", Kh), Xh = /* @__PURE__ */ n("path", { d: "M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2" }), jy = d("MessageSquareIcon", Xh), Yh = /* @__PURE__ */ n("path", { d: "M9 22c-.6 0-1-.4-1-1v-3H4c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2h-6.1l-3.7 3.7c-.2.2-.4.3-.7.3zm4-15V5h-2v2zm0 8V9h-2v6z" }), Vy = d(
|
|
11929
11918
|
"MessageSquareInfoIcon",
|
|
11930
11919
|
Yh
|
|
11931
|
-
), Qh = /* @__PURE__ */ n("path", { d: "M20 2H4C2.9 2 2 2.9 2 4V22L6.00002 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2ZM20 16H6.00002L4 18V4H20V16ZM6.99998 9.00003H9.00003V11H6.99998V9.00003ZM11 9.00003H13V11H11V9.00003ZM15 9.00003H17V11H15V9.00003Z" }),
|
|
11920
|
+
), Qh = /* @__PURE__ */ n("path", { d: "M20 2H4C2.9 2 2 2.9 2 4V22L6.00002 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2ZM20 16H6.00002L4 18V4H20V16ZM6.99998 9.00003H9.00003V11H6.99998V9.00003ZM11 9.00003H13V11H11V9.00003ZM15 9.00003H17V11H15V9.00003Z" }), Ay = d(
|
|
11932
11921
|
"MessageSquareMoreIcon",
|
|
11933
11922
|
Qh
|
|
11934
11923
|
), Jh = /* @__PURE__ */ n(
|
|
@@ -11967,7 +11956,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11967
11956
|
) }), Ny = d("MessagesSquareIcon", sf), cf = /* @__PURE__ */ n("path", { d: "M22 7v2h-2v2h2v2h-2v2h2v2h-2v2c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v2zM4 19h14V5H4zm2-6h5v4H6zm10-6h-4v3h4zM6 7h5v5H6zm10 4h-4v6h4z" }), Oy = d(
|
|
11968
11957
|
"MicrochipLayoutDashboardIcon",
|
|
11969
11958
|
cf
|
|
11970
|
-
), af = /* @__PURE__ */ n("path", { d: "M14.99 12c0 1.66-1.33 3-2.99 3s-3-1.34-3-3V6c0-1.66 1.34-3 3-3s3 1.34 3 3zM12 17.1c2.76 0 5.3-2.1 5.3-5.1H19c0 3.42-2.72 6.24-6 6.72V22h-2v-3.28c-3.28-.49-6-3.31-6-6.72h1.7c0 3 2.54 5.1 5.3 5.1" }), Dy = d("MicrophoneIcon", af), lf = /* @__PURE__ */
|
|
11959
|
+
), af = /* @__PURE__ */ n("path", { d: "M14.99 12c0 1.66-1.33 3-2.99 3s-3-1.34-3-3V6c0-1.66 1.34-3 3-3s3 1.34 3 3zM12 17.1c2.76 0 5.3-2.1 5.3-5.1H19c0 3.42-2.72 6.24-6 6.72V22h-2v-3.28c-3.28-.49-6-3.31-6-6.72h1.7c0 3 2.54 5.1 5.3 5.1" }), Dy = d("MicrophoneIcon", af), lf = /* @__PURE__ */ j(T, { children: [
|
|
11971
11960
|
/* @__PURE__ */ n("rect", { width: "24", height: "24", fill: "#1485d9", rx: "4" }),
|
|
11972
11961
|
/* @__PURE__ */ n(
|
|
11973
11962
|
"path",
|
|
@@ -11986,7 +11975,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
11986
11975
|
] }), $y = d(
|
|
11987
11976
|
"MicrosoftAuthenticatorLogoIcon",
|
|
11988
11977
|
lf
|
|
11989
|
-
), df = /* @__PURE__ */
|
|
11978
|
+
), df = /* @__PURE__ */ j(T, { children: [
|
|
11990
11979
|
/* @__PURE__ */ n("path", { d: "M4.583 10.107H.291l1.388 1.687h5.226zM19.488 10.107l-2.322 1.687h5.284l1.259-1.687zM15.532 12.98l.52 1.602h4.997l1.091-1.687h-6.49zM8.54 12.98l-.117-.085H1.86l1.201 1.687H8.02zM7.662 15.685H3.277l1.038 1.687h2.799zM16.958 17.372h2.895l.942-1.687H16.41z" }),
|
|
11991
11980
|
/* @__PURE__ */ n("path", { d: "m12.046 5.98-1.388 4.272H6.166L9.8 12.893l-1.388 4.272 3.633-2.64 3.635 2.64-1.388-4.272 3.634-2.64h-4.492z" }),
|
|
11992
11981
|
/* @__PURE__ */ n("path", { d: "M12.047 5.076a6.92 6.92 0 0 1 6.534 4.652h1.478c-.99-3.497-4.199-6.062-8.013-6.062S5.024 6.231 4.034 9.728h1.478a6.92 6.92 0 0 1 6.536-4.652M12.047 18.924a6.9 6.9 0 0 1-3.517-.968H6.223a8.3 8.3 0 0 0 5.823 2.378 8.3 8.3 0 0 0 5.823-2.378h-2.306a6.9 6.9 0 0 1-3.516.968" })
|
|
@@ -12002,7 +11991,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12002
11991
|
), pf = /* @__PURE__ */ n("path", { d: "M20.1522 16.3114V4.93413H3.84783V16.3114H20.1522ZM20.1522 3C21.1304 3 22 3.79641 22 4.93413V16.3114C22 17.3353 21.2391 18.2455 20.1522 18.2455H13.8478V20.0659H15.6957V22H8.30435V20.0659H10.1522V18.1317H3.84783C2.86957 18.1317 2 17.2216 2 16.1976V4.82036C2 3.79641 2.76087 3 3.84783 3H20.1522ZM5.58696 6.75449H13.7391V11.5329H5.58696V6.75449ZM14.7174 6.75449H18.3043V8.68862H14.7174V6.75449ZM18.3043 9.5988V14.3772H14.7174V9.5988H18.3043ZM5.58696 12.4431H9.17391V14.3772H5.58696V12.4431ZM10.1522 12.4431H13.7391V14.3772H10.1522V12.4431Z" }), qy = d(
|
|
12003
11992
|
"MonitorLayoutDashboardIcon",
|
|
12004
11993
|
pf
|
|
12005
|
-
), vf = /* @__PURE__ */
|
|
11994
|
+
), vf = /* @__PURE__ */ j(T, { children: [
|
|
12006
11995
|
/* @__PURE__ */ n("path", { d: "M21 16H3V4h18m0-2H3c-1.11 0-2 .89-2 2v12a2 2 0 0 0 2 2h7v2H8v2h8v-2h-2v-2h7a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2" }),
|
|
12007
11996
|
/* @__PURE__ */ n(
|
|
12008
11997
|
"path",
|
|
@@ -12039,17 +12028,17 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12039
12028
|
fillRule: "evenodd",
|
|
12040
12029
|
d: "M5 3a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9l4-4 3-3V5a2 2 0 0 0-2-2zm12 4H7v2h10zM7 11h5v2H7zm9.5 5.5L19 14h-5v5z"
|
|
12041
12030
|
}
|
|
12042
|
-
), nI = d("NoteIcon", Sf), Hf = /* @__PURE__ */
|
|
12031
|
+
), nI = d("NoteIcon", Sf), Hf = /* @__PURE__ */ j(T, { children: [
|
|
12043
12032
|
/* @__PURE__ */ n("path", { d: "M15.73 3H8.27L3 8.27V15.73L8.27 21H15.73L21 15.73V8.27L15.73 3ZM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5H14.9L19 9.1V14.9Z" }),
|
|
12044
12033
|
/* @__PURE__ */ n("path", { d: "M11 7H13V14H11V7Z" }),
|
|
12045
12034
|
/* @__PURE__ */ n("path", { d: "M12 17C12.5523 17 13 16.5523 13 16C13 15.4477 12.5523 15 12 15C11.4477 15 11 15.4477 11 16C11 16.5523 11.4477 17 12 17Z" })
|
|
12046
|
-
] }), rI = d("OctagonAlertIcon", Hf),
|
|
12035
|
+
] }), rI = d("OctagonAlertIcon", Hf), jf = /* @__PURE__ */ n("path", { d: "M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2M6 4h5v8l-2.5-1.5L6 12z" }), sI = d("PageBookmarkIcon", jf), Vf = /* @__PURE__ */ j(T, { children: [
|
|
12047
12036
|
/* @__PURE__ */ n("path", { d: "M5.56 2c-.98.09-1.81 1-1.81 2v16c0 1.05.95 2 2 2h12c1.05 0 2-.95 2-2V4a2 2 0 0 0-2-2h-6v7l-2.5-1.5L6.75 9V2H5.56m6.19 11h1a1 1 0 0 1 1 1v4h-1v-2h-1v2h-1v-4a1 1 0 0 1 1-1m0 1v1h1v-1zm3 1h3v1l-2 3h2v1h-3v-1l2-3h-2z" }),
|
|
12048
12037
|
/* @__PURE__ */ n("path", { d: "M5.56 2c-.98.09-1.81 1-1.81 2v16c0 1.05.95 2 2 2h12c1.05 0 2-.95 2-2V4a2 2 0 0 0-2-2h-6v7l-2.5-1.5L6.75 9V2H5.56m6.19 11h1a1 1 0 0 1 1 1v4h-1v-2h-1v2h-1v-4a1 1 0 0 1 1-1m0 1v1h1v-1zm3 1h3v1l-2 3h2v1h-3v-1l2-3h-2z" })
|
|
12049
|
-
] }), cI = d("PageBookmarkAzIcon",
|
|
12038
|
+
] }), cI = d("PageBookmarkAzIcon", Vf), Af = /* @__PURE__ */ j(T, { children: [
|
|
12050
12039
|
/* @__PURE__ */ n("path", { fillOpacity: ".36", d: "M0 20h24v4H0z" }),
|
|
12051
12040
|
/* @__PURE__ */ n("path", { d: "M16.56 8.94 7.62 0 6.21 1.41l2.38 2.38-5.15 5.15a1.49 1.49 0 0 0 0 2.12l5.5 5.5c.29.29.68.44 1.06.44s.77-.15 1.06-.44l5.5-5.5c.59-.58.59-1.53 0-2.12M5.21 10 10 5.21 14.79 10zM17 15c0-1.33 2-3.5 2-3.5s2 2.17 2 3.5c0 1.1-.9 2-2 2s-2-.9-2-2" })
|
|
12052
|
-
] }), aI = d("PaintBucketIcon",
|
|
12041
|
+
] }), aI = d("PaintBucketIcon", Af), zf = /* @__PURE__ */ n(
|
|
12053
12042
|
"path",
|
|
12054
12043
|
{
|
|
12055
12044
|
fillRule: "evenodd",
|
|
@@ -12084,7 +12073,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12084
12073
|
), fI = d(
|
|
12085
12074
|
"PaperclipVerticalIcon",
|
|
12086
12075
|
Pf
|
|
12087
|
-
), Nf = /* @__PURE__ */
|
|
12076
|
+
), Nf = /* @__PURE__ */ j(T, { children: [
|
|
12088
12077
|
/* @__PURE__ */ n(
|
|
12089
12078
|
"path",
|
|
12090
12079
|
{
|
|
@@ -12132,10 +12121,10 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12132
12121
|
fillRule: "evenodd",
|
|
12133
12122
|
d: "M15 3h6v6h-6zm-4 2h2v4h-2zm-8 6h2v2H3zm8 4h2v-4H9v2h2zm4-4h2v2h-2zm4 2h-2v2h-2v2h-4v4h2v-2h4v2h2v-2h2v-4h-2zm0 0v-2h2v2zm0 2h-2v4h2zm-2-8V5h2v2zM3 3h6v6H3zm2 4V5h2v2zm-2 8h6v6H3zm2 4v-2h2v2z"
|
|
12134
12123
|
}
|
|
12135
|
-
), HI = d("QrCodeIcon", Xf), Yf = /* @__PURE__ */ n("path", { d: "M4.93 4.93A9.97 9.97 0 0 0 2 12c0 2.76 1.12 5.26 2.93 7.07l1.41-1.41A7.94 7.94 0 0 1 4 12c0-2.21.89-4.22 2.34-5.66zm14.14 0-1.41 1.41A7.96 7.96 0 0 1 20 12c0 2.22-.89 4.22-2.34 5.66l1.41 1.41A9.97 9.97 0 0 0 22 12c0-2.76-1.12-5.26-2.93-7.07M6 12c0-1.65.67-3.15 1.76-4.24l1.41 1.41A4 4 0 0 0 8 12c0 1.11.45 2.11 1.17 2.83l-1.41 1.41A5.98 5.98 0 0 1 6 12m10.24-4.24-1.41 1.41A4 4 0 0 1 16 12c0 1.11-.45 2.11-1.17 2.83l1.41 1.41A5.98 5.98 0 0 0 18 12c0-1.65-.67-3.15-1.76-4.24M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0" }),
|
|
12124
|
+
), HI = d("QrCodeIcon", Xf), Yf = /* @__PURE__ */ n("path", { d: "M4.93 4.93A9.97 9.97 0 0 0 2 12c0 2.76 1.12 5.26 2.93 7.07l1.41-1.41A7.94 7.94 0 0 1 4 12c0-2.21.89-4.22 2.34-5.66zm14.14 0-1.41 1.41A7.96 7.96 0 0 1 20 12c0 2.22-.89 4.22-2.34 5.66l1.41 1.41A9.97 9.97 0 0 0 22 12c0-2.76-1.12-5.26-2.93-7.07M6 12c0-1.65.67-3.15 1.76-4.24l1.41 1.41A4 4 0 0 0 8 12c0 1.11.45 2.11 1.17 2.83l-1.41 1.41A5.98 5.98 0 0 1 6 12m10.24-4.24-1.41 1.41A4 4 0 0 1 16 12c0 1.11-.45 2.11-1.17 2.83l1.41 1.41A5.98 5.98 0 0 0 18 12c0-1.65-.67-3.15-1.76-4.24M10 12a2 2 0 1 1 4 0 2 2 0 0 1-4 0" }), jI = d("RadioIcon", Yf), Qf = /* @__PURE__ */ n("path", { d: "M12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8" }), VI = d("RadioInputIcon", Qf), Jf = /* @__PURE__ */ n("path", { d: "M12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2m0 2c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8m0 3c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5" }), ep = d(
|
|
12136
12125
|
"RadioInputSelectedIcon",
|
|
12137
12126
|
Jf
|
|
12138
|
-
), tp = /* @__PURE__ */ n("path", { d: "M2 13C2 7.48 6.48 3 12 3s10 4.48 10 10c0 3.7-2.01 6.92-5 8.65l-1-1.73c2.39-1.39 4-3.96 4-6.92 0-4.42-3.58-8-8-8s-8 3.58-8 8c0 2.96 1.61 5.53 3.99 6.92l-1 1.73C4.01 19.92 2 16.7 2 13m16 0c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19m-6-2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2" }),
|
|
12127
|
+
), tp = /* @__PURE__ */ n("path", { d: "M2 13C2 7.48 6.48 3 12 3s10 4.48 10 10c0 3.7-2.01 6.92-5 8.65l-1-1.73c2.39-1.39 4-3.96 4-6.92 0-4.42-3.58-8-8-8s-8 3.58-8 8c0 2.96 1.61 5.53 3.99 6.92l-1 1.73C4.01 19.92 2 16.7 2 13m16 0c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19m-6-2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2" }), AI = d("RadioSignalIcon", tp), op = /* @__PURE__ */ n("path", { d: "M17.014 18.6h2.25V23H3V1h16.265v4.4h-2.251V3.2H5.25v17.6h11.763zM22 12l-5.406 5.211-1.581-1.567 2.64-2.544H7.304v-2.2h10.347l-2.64-2.544 1.582-1.567z" }), zI = d(
|
|
12139
12128
|
"RectangleArrowRightIcon",
|
|
12140
12129
|
op
|
|
12141
12130
|
), np = /* @__PURE__ */ n("path", { d: "M9.273 20H3.818C2.818 20 2 19.2 2 18.222V5.778C2 4.8 2.818 4 3.818 4h16.364c1 0 1.818.8 1.818 1.778v12.444C22 19.2 21.182 20 20.182 20h-5.455v-1.769h5.455V5.76H3.818v12.471h5.455zm-.91-8L12 8.444 15.636 12H12.91v8h-1.818v-8z" }), LI = d("RectangleArrowUpIcon", np), rp = /* @__PURE__ */ n("path", { d: "M22 6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2zM10 17l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8z" }), RI = d("RectangleCheckIcon", rp), sp = /* @__PURE__ */ n(
|
|
@@ -12147,7 +12136,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12147
12136
|
), EI = d(
|
|
12148
12137
|
"RectangleEllipsisIcon",
|
|
12149
12138
|
sp
|
|
12150
|
-
), cp = /* @__PURE__ */
|
|
12139
|
+
), cp = /* @__PURE__ */ j(T, { children: [
|
|
12151
12140
|
/* @__PURE__ */ n("path", { d: "m21.53 13.333 2.692 1.212v1.819c0 1.685-1.148 3.254-2.691 3.636-1.543-.382-2.691-1.951-2.691-3.636v-1.819zm0 1.176-1.494.679V16.8c0 .933.64 1.806 1.495 2.024z" }),
|
|
12152
12141
|
/* @__PURE__ */ n("path", { d: "M2.074 4h18.667c1.14 0 2.074.925 2.074 2.055v7.174l-1.277-.562-.797.35V6.046H2.074v11.323h16.229a4.8 4.8 0 0 0 1.04 2.045H2.074C.934 19.413 0 18.488 0 17.358V6.055C0 4.925.933 4 2.074 4m5.704 7.706a2.065 2.065 0 0 1-2.074 2.056 2.065 2.065 0 0 1-2.074-2.056c0-1.134.928-2.055 2.074-2.055s2.074.92 2.074 2.055m3.63 2.056c1.145 0 2.074-.92 2.074-2.056a2.065 2.065 0 0 0-2.075-2.055c-1.145 0-2.074.92-2.074 2.055s.929 2.056 2.074 2.056m7.777-2.056a2.065 2.065 0 0 1-2.074 2.056 2.065 2.065 0 0 1-2.074-2.056c0-1.134.929-2.055 2.074-2.055 1.146 0 2.074.92 2.074 2.055" })
|
|
12153
12142
|
] }), TI = d(
|
|
@@ -12169,7 +12158,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12169
12158
|
), OI = d("RefreshCcwIcon", lp), dp = /* @__PURE__ */ n("path", { d: "M18.6 19.5H21v2h-6v-6h2v2.73c1.83-1.47 3-3.71 3-6.23 0-4.07-3.06-7.44-7-7.93V2.05c5.05.5 9 4.76 9 9.95 0 2.99-1.32 5.67-3.4 7.5M4 12c0-2.52 1.17-4.77 3-6.23V8.5h2v-6H3v2h2.4A9.97 9.97 0 0 0 2 12c0 5.19 3.95 9.45 9 9.95v-2.02c-3.94-.49-7-3.86-7-7.93m12.24-3.89-5.66 5.66-2.83-2.83-1.41 1.41 4.24 4.24 7.07-7.07z" }), DI = d("RefreshCwCheckIcon", dp), up = /* @__PURE__ */ n("path", { d: "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11" }), $I = d("ReplyIcon", up), hp = /* @__PURE__ */ n("path", { d: "M18 7a.96.96 0 0 0-.292-.708A.96.96 0 0 0 17 6a.96.96 0 0 0-.708.292A.96.96 0 0 0 16 7q0 .417.292.708Q16.583 8 17 8a.96.96 0 0 0 .708-.292A.96.96 0 0 0 18 7m2-2.686q0 2.44-.74 4.22-.739 1.78-2.484 3.535a33 33 0 0 1-1.91 1.725l-.196 3.716a.36.36 0 0 1-.157.255l-3.762 2.196a.3.3 0 0 1-.157.039.35.35 0 0 1-.226-.088l-.627-.628a.31.31 0 0 1-.078-.313l.833-2.706-2.753-2.755-2.705.833a.3.3 0 0 1-.088.01.3.3 0 0 1-.225-.088l-.627-.628q-.167-.186-.05-.382L6.244 9.49a.36.36 0 0 1 .255-.157l3.714-.196a33 33 0 0 1 1.724-1.912q1.842-1.833 3.508-2.529T19.667 4a.33.33 0 0 1 .235.093.3.3 0 0 1 .098.22" }), _I = d("RocketIcon", hp), fp = /* @__PURE__ */ n("path", { d: "M4 12a9 9 0 1 1 9 9c-2.49 0-4.73-1.01-6.36-2.64l1.42-1.42A6.94 6.94 0 0 0 13 19c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7h3l-4.04 4.03-.07-.14L1 12zm8 1V8h1.5v4.25l3.5 2.08-.72 1.21z" }), ZI = d("RotateCcwClockIcon", fp), pp = /* @__PURE__ */ n("path", { d: "M3 12a9 9 0 1 1 3.52 7.14l1.42-1.44A6.995 6.995 0 0 0 19 12c0-3.87-3.13-7-7-7s-7 3.13-7 7h3l-4 4-4-4zm9-2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2" }), FI = d("RotateCcwDotIcon", pp), vp = /* @__PURE__ */ n("path", { d: "M18.1 8.3C16.6 6.8 14.6 6 12.5 6V2.6l-5 5 5 5V8c1.5 0 3.1.6 4.2 1.7 2.3 2.4 2.3 6.2 0 8.5-1.3 1.3-3.1 1.9-4.8 1.7l-.5 2c2.4.3 4.9-.4 6.7-2.3 3.1-3.1 3.1-8.2 0-11.3M5.6 9.9C3.8 13 4.2 17 6.8 19.6q1.2 1.2 2.7 1.8l.6-2q-1.05-.45-1.8-1.2c-1.9-1.8-2.3-4.6-1.2-6.8z" }), BI = d("RotateCcwSegmentIcon", vp), mp = /* @__PURE__ */ n("path", { d: "m13 1 2 2H5v12h7v-2l4 3-4 3v-2H5a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zm9 20V10l-5-5H9a2 2 0 0 0-2 2v6h2V7h6v5h5v9H9v-2H7v2a2 2 0 0 0 2 2h11a2 2 0 0 0 2-2" }), qI = d(
|
|
12170
12159
|
"RotateCcwSquareFileIcon",
|
|
12171
12160
|
mp
|
|
12172
|
-
), gp = /* @__PURE__ */ n("path", { d: "M18.3546 5.64375C16.7223 4.0125 14.4822 3 11.9944 3C7.01876 3 3 7.0275 3 12C3 16.9725 7.01876 21 11.9944 21C16.1932 21 19.6942 18.1313 20.6961 14.25H18.3546C17.4315 16.8713 14.9325 18.75 11.9944 18.75C8.26829 18.75 5.24015 15.7238 5.24015 12C5.24015 8.27625 8.26829 5.25 11.9944 5.25C13.863 5.25 15.5291 6.02625 16.7448 7.2525L13.1201 10.875H21V3L18.3546 5.64375Z" }), UI = d("RotateCwIcon", gp), Cp = /* @__PURE__ */ n("path", { d: "M20 12a9 9 0 1 0-9 9c2.49 0 4.73-1.01 6.36-2.64l-1.42-1.42A6.94 6.94 0 0 1 11 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7h-3l4.04 4.03.07-.14L23 12zM9.5 13V8H11v4.25l3.5 2.08-.72 1.21z" }), WI = d("RotateCwClockIcon", Cp), kp = /* @__PURE__ */ n("path", { d: "M18.31 7.11c.9 1.16 1.45 2.5 1.62 3.89h-2.02c-.14-.87-.48-1.72-1.02-2.47zM11 4.07V1l4.55 4.55L11 10V6.09C8.16 6.57 6 9.03 6 12s2.16 5.43 5 5.91v2.02c-3.95-.49-7-3.85-7-7.93s3.06-7.44 7-7.93m11.7 15.42 1.07.83c.09.08.12.21.06.32l-1 1.73c-.07.11-.2.15-.31.11l-1.25-.5c-.25.2-.54.36-.84.49l-.19 1.32c-.02.12-.13.21-.25.21h-2c-.13 0-.23-.09-.25-.21l-.19-1.32c-.31-.12-.59-.29-.85-.49l-1.24.5c-.12.04-.25 0-.31-.11l-1-1.73a.26.26 0 0 1 .06-.32l1.06-.83a4 4 0 0 1 0-.98l-1.06-.83a.25.25 0 0 1-.06-.32l1-1.73c.07-.11.2-.15.31-.11l1.24.5c.26-.2.55-.36.85-.49l.19-1.32c.02-.12.13-.21.25-.21h2c.12 0 .23.09.24.21l.19 1.32c.31.12.59.29.85.49l1.24-.5c.12-.04.25 0 .31.11l1 1.73c.06.11.03.24-.06.32l-1.06.83c.03.16.04.32.04.49s-.02.33-.04.49M17.49 19c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5-1.5.67-1.5 1.5" }), GI = d("RotateCwCogIcon", kp), bp = /* @__PURE__ */ n("path", { d: "M19.93 11a7.9 7.9 0 0 0-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47zM11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zm4.46 15.87c-.75.54-1.59.89-2.46 1.03v2.02c1.39-.17 2.74-.71 3.9-1.61zm2.85.02c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z" }), KI = d("RotateCwDashedIcon", bp), wp = /* @__PURE__ */
|
|
12161
|
+
), gp = /* @__PURE__ */ n("path", { d: "M18.3546 5.64375C16.7223 4.0125 14.4822 3 11.9944 3C7.01876 3 3 7.0275 3 12C3 16.9725 7.01876 21 11.9944 21C16.1932 21 19.6942 18.1313 20.6961 14.25H18.3546C17.4315 16.8713 14.9325 18.75 11.9944 18.75C8.26829 18.75 5.24015 15.7238 5.24015 12C5.24015 8.27625 8.26829 5.25 11.9944 5.25C13.863 5.25 15.5291 6.02625 16.7448 7.2525L13.1201 10.875H21V3L18.3546 5.64375Z" }), UI = d("RotateCwIcon", gp), Cp = /* @__PURE__ */ n("path", { d: "M20 12a9 9 0 1 0-9 9c2.49 0 4.73-1.01 6.36-2.64l-1.42-1.42A6.94 6.94 0 0 1 11 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7h-3l4.04 4.03.07-.14L23 12zM9.5 13V8H11v4.25l3.5 2.08-.72 1.21z" }), WI = d("RotateCwClockIcon", Cp), kp = /* @__PURE__ */ n("path", { d: "M18.31 7.11c.9 1.16 1.45 2.5 1.62 3.89h-2.02c-.14-.87-.48-1.72-1.02-2.47zM11 4.07V1l4.55 4.55L11 10V6.09C8.16 6.57 6 9.03 6 12s2.16 5.43 5 5.91v2.02c-3.95-.49-7-3.85-7-7.93s3.06-7.44 7-7.93m11.7 15.42 1.07.83c.09.08.12.21.06.32l-1 1.73c-.07.11-.2.15-.31.11l-1.25-.5c-.25.2-.54.36-.84.49l-.19 1.32c-.02.12-.13.21-.25.21h-2c-.13 0-.23-.09-.25-.21l-.19-1.32c-.31-.12-.59-.29-.85-.49l-1.24.5c-.12.04-.25 0-.31-.11l-1-1.73a.26.26 0 0 1 .06-.32l1.06-.83a4 4 0 0 1 0-.98l-1.06-.83a.25.25 0 0 1-.06-.32l1-1.73c.07-.11.2-.15.31-.11l1.24.5c.26-.2.55-.36.85-.49l.19-1.32c.02-.12.13-.21.25-.21h2c.12 0 .23.09.24.21l.19 1.32c.31.12.59.29.85.49l1.24-.5c.12-.04.25 0 .31.11l1 1.73c.06.11.03.24-.06.32l-1.06.83c.03.16.04.32.04.49s-.02.33-.04.49M17.49 19c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5-1.5.67-1.5 1.5" }), GI = d("RotateCwCogIcon", kp), bp = /* @__PURE__ */ n("path", { d: "M19.93 11a7.9 7.9 0 0 0-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47zM11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zm4.46 15.87c-.75.54-1.59.89-2.46 1.03v2.02c1.39-.17 2.74-.71 3.9-1.61zm2.85.02c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z" }), KI = d("RotateCwDashedIcon", bp), wp = /* @__PURE__ */ j(T, { children: [
|
|
12173
12162
|
/* @__PURE__ */ n("path", { d: "M5.164 5.485a9 9 0 0 1 12.728 0l2.121-2.121v5.501l.05.149-5.707.007 2.122-2.122a6.995 6.995 0 0 0-9.9 0 6.995 6.995 0 0 0 0 9.9 6.995 6.995 0 0 0 9.9 0 6.94 6.94 0 0 0 2.036-4.95h2.008c0 2.305-.87 4.604-2.63 6.364A9 9 0 0 1 5.164 5.485" }),
|
|
12174
12163
|
/* @__PURE__ */ n(
|
|
12175
12164
|
"path",
|
|
@@ -12178,7 +12167,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12178
12167
|
d: "M10 14.6a2.6 2.6 0 1 1 2.53-3.2h4.07v3.2h-1.2v-2h-2.87a2.6 2.6 0 0 1-2.53 2m1.4-2.6a1.4 1.4 0 1 1-2.8 0 1.4 1.4 0 0 1 2.8 0"
|
|
12179
12168
|
}
|
|
12180
12169
|
)
|
|
12181
|
-
] }), XI = d("RotateCwKeyIcon", wp), Mp = /* @__PURE__ */
|
|
12170
|
+
] }), XI = d("RotateCwKeyIcon", wp), Mp = /* @__PURE__ */ j(T, { children: [
|
|
12182
12171
|
/* @__PURE__ */ n("path", { fill: "#ec1d24", d: "M0 2v11.922H16.94l1.4-2.998 1.42 3.02H24V2z" }),
|
|
12183
12172
|
/* @__PURE__ */ n(
|
|
12184
12173
|
"path",
|
|
@@ -12201,13 +12190,13 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12201
12190
|
clipRule: "evenodd",
|
|
12202
12191
|
d: "M3.85185 2C2.8291 2 2 2.84568 2 3.88889V7.66667H3.85185V3.88889H7.55556V2H3.85185ZM22 3.88889C22 2.84568 21.1709 2 20.1481 2H16.4444V3.88889H20.1481V7.66667H22V3.88889ZM3.85185 22C2.8291 22 2 21.1543 2 20.1111V16.3334H3.85185V20.1111H7.55556V22H3.85185ZM20.1481 22C21.1709 22 22 21.1543 22 20.1111V16.3334H20.1481V20.1111H16.4444V22H20.1481ZM16.6667 7.33334H14.8175L14.0942 6.54584C13.8783 6.30667 13.5633 6.16667 13.2367 6.16667H10.7633C10.4367 6.16667 10.1217 6.30667 9.9 6.54584L9.1825 7.33334H7.33333C6.69167 7.33334 6.16667 7.85834 6.16667 8.50001V15.5C6.16667 16.1417 6.69167 16.6667 7.33333 16.6667H16.6667C17.3083 16.6667 17.8333 16.1417 17.8333 15.5V8.50001C17.8333 7.85834 17.3083 7.33334 16.6667 7.33334ZM12 14.9167C10.39 14.9167 9.08333 13.61 9.08333 12C9.08333 10.39 10.39 9.08334 12 9.08334C13.61 9.08334 14.9167 10.39 14.9167 12C14.9167 13.61 13.61 14.9167 12 14.9167ZM12 13.75C12.9665 13.75 13.75 12.9665 13.75 12C13.75 11.0335 12.9665 10.25 12 10.25C11.0335 10.25 10.25 11.0335 10.25 12C10.25 12.9665 11.0335 13.75 12 13.75Z"
|
|
12203
12192
|
}
|
|
12204
|
-
), JI = d("ScanCameraIcon", Ip), xp = /* @__PURE__ */ n("path", { d: "M9 5H5v4H3V5c0-1.1.9-2 2-2h4zm3 3c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m-7 7H3v4c0 1.1.9 2 2 2h4v-2H5zM19 3h-4v2h4v4h2V5c0-1.1-.9-2-2-2m-4 16h4v-4h2v4c0 1.1-.9 2-2 2h-4z" }), ex = d("ScanDotIcon", xp), Sp = /* @__PURE__ */ n("path", { d: "M9 11.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5m6 0a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20m0 18a8 8 0 0 1-8-8 4 4 0 0 1 0-.86 10.05 10.05 0 0 0 5.26-5.37A9.99 9.99 0 0 0 17.42 10c.76 0 1.51-.09 2.25-.26 1.25 4.26-1.17 8.69-5.41 9.93-.76.22-1.5.33-2.26.33M0 2a2 2 0 0 1 2-2h4v2H2v4H0zm24 20a2 2 0 0 1-2 2h-4v-2h4v-4h2zM2 24a2 2 0 0 1-2-2v-4h2v4h4v2zM22 0a2 2 0 0 1 2 2v4h-2V2h-4V0z" }), tx = d("ScanFaceIcon", Sp), Hp = /* @__PURE__ */ n("path", { d: "M4.667 4.7v3.4H3V4.7C3 3.761 3.746 3 4.667 3H8v1.7zM19.333 3C20.253 3 21 3.761 21 4.7v3.4h-1.667V4.7H16V3zM4.667 19.3v-3.4H3v3.4c0 .939.746 1.7 1.667 1.7H8v-1.7zm14.666 0v-3.4H21v3.4c0 .939-.746 1.7-1.667 1.7H16v-1.7zM16 11.125H8v1.75h8z" }), ox = d("ScanLineIcon", Hp),
|
|
12193
|
+
), JI = d("ScanCameraIcon", Ip), xp = /* @__PURE__ */ n("path", { d: "M9 5H5v4H3V5c0-1.1.9-2 2-2h4zm3 3c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4m-7 7H3v4c0 1.1.9 2 2 2h4v-2H5zM19 3h-4v2h4v4h2V5c0-1.1-.9-2-2-2m-4 16h4v-4h2v4c0 1.1-.9 2-2 2h-4z" }), ex = d("ScanDotIcon", xp), Sp = /* @__PURE__ */ n("path", { d: "M9 11.75a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5m6 0a1.25 1.25 0 1 0 0 2.5 1.25 1.25 0 0 0 0-2.5M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20m0 18a8 8 0 0 1-8-8 4 4 0 0 1 0-.86 10.05 10.05 0 0 0 5.26-5.37A9.99 9.99 0 0 0 17.42 10c.76 0 1.51-.09 2.25-.26 1.25 4.26-1.17 8.69-5.41 9.93-.76.22-1.5.33-2.26.33M0 2a2 2 0 0 1 2-2h4v2H2v4H0zm24 20a2 2 0 0 1-2 2h-4v-2h4v-4h2zM2 24a2 2 0 0 1-2-2v-4h2v4h4v2zM22 0a2 2 0 0 1 2 2v4h-2V2h-4V0z" }), tx = d("ScanFaceIcon", Sp), Hp = /* @__PURE__ */ n("path", { d: "M4.667 4.7v3.4H3V4.7C3 3.761 3.746 3 4.667 3H8v1.7zM19.333 3C20.253 3 21 3.761 21 4.7v3.4h-1.667V4.7H16V3zM4.667 19.3v-3.4H3v3.4c0 .939.746 1.7 1.667 1.7H8v-1.7zm14.666 0v-3.4H21v3.4c0 .939-.746 1.7-1.667 1.7H16v-1.7zM16 11.125H8v1.75h8z" }), ox = d("ScanLineIcon", Hp), jp = /* @__PURE__ */ n("path", { d: "M9.5 6.5v3h-3v-3zM11 5H5v6h6zm-1.5 9.5v3h-3v-3zM11 13H5v6h6zm6.5-6.5v3h-3v-3zM19 5h-6v6h6zm-6 8h1.5v1.5H13zm1.5 1.5H16V16h-1.5zM16 13h1.5v1.5H16zm-3 3h1.5v1.5H13zm1.5 1.5H16V19h-1.5zM16 16h1.5v1.5H16zm1.5-1.5H19V16h-1.5zm0 3H19V19h-1.5zM22 7h-2V4h-3V2h5zm0 15v-5h-2v3h-3v2zM2 22h5v-2H4v-3H2zM2 2v5h2V4h3V2z" }), nx = d("ScanQrCodeIcon", jp), Vp = /* @__PURE__ */ n(
|
|
12205
12194
|
"path",
|
|
12206
12195
|
{
|
|
12207
12196
|
fillRule: "evenodd",
|
|
12208
12197
|
d: "M2 3.66667C2 2.75 2.75 2 3.66667 2H7V3.66667H3.66667V7H2V3.66667ZM17 3.66667V2H20.3333C21.25 2 22 2.75 22 3.66667V7H20.3333V3.66667H17ZM12 4.5C8.33333 4.5 5.33333 7.5 5.33333 11.1667C5.33333 13.25 6.33333 15.1667 7.83333 16.3333V19.5H9.5V17H11.1667V19.5H12.8333V17H14.5V19.5H16.1667V16.3333C17.6667 15.0833 18.6667 13.25 18.6667 11.1667C18.6667 7.5 15.6667 4.5 12 4.5ZM7 12C7 12.9167 7.75 13.6667 8.66667 13.6667C9.58333 13.6667 10.3333 12.9167 10.3333 12C10.3333 11.0833 9.58333 10.3333 8.66667 10.3333C7.75 10.3333 7 11.0833 7 12ZM10.75 15.3333L12 12.8333L13.25 15.3333H10.75ZM13.6667 12C13.6667 12.9167 14.4167 13.6667 15.3333 13.6667C16.25 13.6667 17 12.9167 17 12C17 11.0833 16.25 10.3333 15.3333 10.3333C14.4167 10.3333 13.6667 11.0833 13.6667 12ZM2 17V20.3333C2 21.25 2.75 22 3.66667 22H7V20.3333H3.66667V17H2ZM20.3333 20.3333V17H22V20.3333C22 21.25 21.25 22 20.3333 22H17V20.3333H20.3333Z"
|
|
12209
12198
|
}
|
|
12210
|
-
), rx = d("ScanSkullIcon",
|
|
12199
|
+
), rx = d("ScanSkullIcon", Vp), Ap = /* @__PURE__ */ n("path", { d: "M1.598 6.577a.655.655 0 0 1-.653.657.654.654 0 0 1-.652-.657v-3.08C.293 1.73 1.72.293 3.474.293h3.118c.36 0 .653.294.653.657a.655.655 0 0 1-.653.657H3.474a1.885 1.885 0 0 0-1.876 1.89zM20.526.293h-3.058a.655.655 0 0 0-.653.657c0 .363.293.657.653.657h3.058c1.035 0 1.877.847 1.877 1.89v3.14c0 .364.291.657.652.657.36 0 .652-.293.652-.656V3.497c0-1.767-1.427-3.204-3.181-3.204m-14.4 10.385v-1.85c0-.473.38-.857.85-.857s.852.384.852.857v1.85c0 .474-.381.857-.852.857a.854.854 0 0 1-.85-.857m11.748 0c0 .474-.38.858-.851.858a.854.854 0 0 1-.851-.857v-1.85c0-.474.38-.858.85-.858.471 0 .852.384.852.858zm-7.152 4.362h.413a1.93 1.93 0 0 0 1.918-1.933v-4.43a.655.655 0 0 0-.652-.658.655.655 0 0 0-.652.657v4.431c0 .34-.276.619-.614.619h-.413a.655.655 0 0 0-.653.657c0 .363.292.657.653.657m1.288 2.919c1.339 0 2.604-.5 3.301-1.304a.65.65 0 0 1 .921-.063.66.66 0 0 1 .062.927c-.951 1.099-2.554 1.754-4.284 1.754-1.746 0-3.355-.664-4.305-1.776a.66.66 0 0 1 .068-.927.65.65 0 0 1 .92.07c.696.813 1.967 1.319 3.317 1.319m11.045-1.253a.654.654 0 0 0-.652.657v3.14c0 1.043-.842 1.89-1.877 1.89h-3.058a.655.655 0 0 0-.652.657c0 .363.292.657.652.657h3.058c1.754 0 3.181-1.437 3.181-3.204v-3.14a.655.655 0 0 0-.652-.657m-19.58 5.687h3.117c.36 0 .653.294.653.657a.655.655 0 0 1-.653.657H3.474c-1.754 0-3.181-1.437-3.181-3.204v-3.08c0-.363.292-.657.652-.657s.653.294.653.657v3.08c0 1.042.842 1.89 1.876 1.89" }), sx = d("ScanSmileIcon", Ap), zp = /* @__PURE__ */ n("path", { d: "M21.338 10h-4V8l-4.5-1.8V4h2.5V2h-3.5v4.2L7.338 8v2h-4c-.55 0-1 .45-1 1v11h8v-5h4v5h8V11c0-.55-.45-1-1-1m-13 10h-4v-3h4zm0-5h-4v-3h4zm4-7c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1m2 7h-4v-3h4zm6 5h-4v-3h4zm0-5h-4v-3h4z" }), cx = d("SchoolIcon", zp), Lp = /* @__PURE__ */ n("path", { d: "M15 20a1 1 0 0 0 1-1V4H8a1 1 0 0 0-1 1v11H5V5a3 3 0 0 1 3-3h11a3 3 0 0 1 3 3v1h-2V5a1 1 0 0 0-2 0v14a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-1h11a2 2 0 0 0 2 2M9 6h5v2H9zm0 4h5v2H9zm0 4h5v2H9z" }), ax = d("ScrollTextIcon", Lp), Rp = /* @__PURE__ */ n("path", { d: "M9 14h5v1.7c-.1.1-.1.2-.2.3H9zm0-2h5v-2H9zm0-4h5V6H9zM7 5c0-.6.4-1 1-1h8v9.8c.6-.4 1.3-.6 2-.7V5c0-.6.4-1 1-1s1 .4 1 1v1h2V5c0-1.7-1.3-3-3-3H8C6.3 2 5 3.3 5 5v11h2zm6 14v-1H2v1c0 1.7 1.3 3 3 3h8.8c-.5-.9-.8-1.9-.8-3m4-3v6l5-3z" }), ix = d(
|
|
12211
12200
|
"ScrollTextArrowRightIcon",
|
|
12212
12201
|
Rp
|
|
12213
12202
|
), Ep = /* @__PURE__ */ n("path", { d: "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" }), lx = d("SearchIcon", Ep), Tp = /* @__PURE__ */ n("path", { d: "m1 7.556 2.2-1.112L12 10.89l2.2-1.111-8.8-4.445L12 2l11 5.556-2.2 1.11L12 4.223 9.8 5.333l8.8 4.445L12 13.11zm0 8.888 2.2 1.112V13.11l8.8 4.445 8.8-4.445v4.445l2.2-1.112V9.778l-11 5.555L1 9.778zm4.4 2.223v-2.223l6.6 3.334 6.6-3.334v2.223L12 22z" }), dx = d(
|
|
@@ -12234,8 +12223,8 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12234
12223
|
fillRule: "evenodd",
|
|
12235
12224
|
d: "M2 11a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm2 0h2v2H4zm16 0h-8v2h8zM2 18a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm2 0h2v2H4zm16 0h-8v2h8zM2 4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm2 0h2v2H4zm16 0h-8v2h8z"
|
|
12236
12225
|
}
|
|
12237
|
-
), mx = d("ServerOutlineIcon", _p), Zp = /* @__PURE__ */ n("path", { d: "M3 1h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1m0 8h16a1 1 0 0 1 1 1v.67l-2.5-1.11-6.5 2.88V15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1m0 8h8c.06 2.25 1 4.4 2.46 6H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1M8 5h1V3H8zm0 8h1v-2H8zm0 8h1v-2H8zM4 3v2h2V3zm0 8v2h2v-2zm0 8v2h2v-2zm13.5-7 4.5 2v3c0 2.78-1.92 5.37-4.5 6-2.58-.63-4.5-3.22-4.5-6v-3zm0 1.94L15 15.06v2.66c0 1.54 1.07 2.98 2.5 3.34z" }), gx = d("ServerShieldIcon", Zp), Fp = /* @__PURE__ */
|
|
12238
|
-
/* @__PURE__ */
|
|
12226
|
+
), mx = d("ServerOutlineIcon", _p), Zp = /* @__PURE__ */ n("path", { d: "M3 1h16a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1m0 8h16a1 1 0 0 1 1 1v.67l-2.5-1.11-6.5 2.88V15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1m0 8h8c.06 2.25 1 4.4 2.46 6H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1M8 5h1V3H8zm0 8h1v-2H8zm0 8h1v-2H8zM4 3v2h2V3zm0 8v2h2v-2zm0 8v2h2v-2zm13.5-7 4.5 2v3c0 2.78-1.92 5.37-4.5 6-2.58-.63-4.5-3.22-4.5-6v-3zm0 1.94L15 15.06v2.66c0 1.54 1.07 2.98 2.5 3.34z" }), gx = d("ServerShieldIcon", Zp), Fp = /* @__PURE__ */ j(T, { children: [
|
|
12227
|
+
/* @__PURE__ */ j("g", { clipPath: "url(#clip0_4444_236325)", children: [
|
|
12239
12228
|
/* @__PURE__ */ n("path", { d: "M12 2L6.5 11H17.5L12 2Z" }),
|
|
12240
12229
|
/* @__PURE__ */ n("path", { d: "M17.5 22C19.9853 22 22 19.9853 22 17.5C22 15.0147 19.9853 13 17.5 13C15.0147 13 13 15.0147 13 17.5C13 19.9853 15.0147 22 17.5 22Z" }),
|
|
12241
12230
|
/* @__PURE__ */ n("path", { d: "M3 13.5H11V21.5H3V13.5Z" })
|
|
@@ -12277,7 +12266,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12277
12266
|
fillRule: "evenodd",
|
|
12278
12267
|
d: "M12 1 3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5zm0 7c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m-4 7v1h8v-1c0-1.33-2.67-2-4-2s-4 .67-4 2"
|
|
12279
12268
|
}
|
|
12280
|
-
), Hx = d("ShieldUserIcon", Qp), Jp = /* @__PURE__ */ n("path", { d: "M2 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H8.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1.003 1.003 0 0 0 21 4H6.21l-.94-2zm6 16c-1.1 0-1.99.9-1.99 2S6.9 22 8 22s2-.9 2-2-.9-2-2-2m8.01 2c0-1.1.89-2 1.99-2s2 .9 2 2-.9 2-2 2-1.99-.9-1.99-2" }),
|
|
12269
|
+
), Hx = d("ShieldUserIcon", Qp), Jp = /* @__PURE__ */ n("path", { d: "M2 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H8.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49A1.003 1.003 0 0 0 21 4H6.21l-.94-2zm6 16c-1.1 0-1.99.9-1.99 2S6.9 22 8 22s2-.9 2-2-.9-2-2-2m8.01 2c0-1.1.89-2 1.99-2s2 .9 2 2-.9 2-2 2-1.99-.9-1.99-2" }), jx = d("ShoppingCartIcon", Jp), ev = /* @__PURE__ */ n("path", { d: "M3 3v18h18V3zm15 15H6v-1h12zm0-2H6v-1h12zm0-4H6V6h12z" }), Vx = d("SiteBlogIcon", ev), tv = /* @__PURE__ */ n("path", { d: "M6 18L14.5 12L6 6V18ZM16 6V18H18V6H16Z" }), Ax = d("SkipForwardIcon", tv), ov = /* @__PURE__ */ j(T, { children: [
|
|
12281
12270
|
/* @__PURE__ */ n("g", { clipPath: "url(#clip0_2389_1034)", children: /* @__PURE__ */ n("path", { d: "M3 17V19H9V17H3ZM3 5V7H13V5H3ZM13 21V19H21V17H13V15H11V21H13ZM7 9V11H3V13H7V15H9V9H7ZM21 13V11H11V13H21ZM15 9H17V7H21V5H17V3H15V9Z" }) }),
|
|
12282
12271
|
/* @__PURE__ */ n("defs", { children: /* @__PURE__ */ n("clipPath", { id: "clip0_2389_1034", children: /* @__PURE__ */ n("rect", { width: "24", height: "24" }) }) })
|
|
12283
12272
|
] }), zx = d(
|
|
@@ -12342,10 +12331,10 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12342
12331
|
), Ux = d(
|
|
12343
12332
|
"SquareChartColumnIcon",
|
|
12344
12333
|
gv
|
|
12345
|
-
), Cv = /* @__PURE__ */
|
|
12334
|
+
), Cv = /* @__PURE__ */ j(T, { children: [
|
|
12346
12335
|
/* @__PURE__ */ n("g", { clipPath: "url(#clip0_60_35451)", children: /* @__PURE__ */ n("path", { d: "M19 3H5C3.89 3 3 3.9 3 5V19C3 20.1 3.89 21 5 21H19C20.11 21 21 20.1 21 19V5C21 3.9 20.11 3 19 3ZM10 17L5 12L6.41 10.59L10 14.17L17.59 6.58L19 8L10 17Z" }) }),
|
|
12347
12336
|
/* @__PURE__ */ n("defs", { children: /* @__PURE__ */ n("clipPath", { id: "clip0_60_35451", children: /* @__PURE__ */ n("rect", { width: "24", height: "24" }) }) })
|
|
12348
|
-
] }), Wx = d("SquareCheckIcon", Cv), kv = /* @__PURE__ */
|
|
12337
|
+
] }), Wx = d("SquareCheckIcon", Cv), kv = /* @__PURE__ */ j(T, { children: [
|
|
12349
12338
|
/* @__PURE__ */ n("rect", { width: "24", height: "24", rx: "3", opacity: "0.133" }),
|
|
12350
12339
|
/* @__PURE__ */ n(
|
|
12351
12340
|
"path",
|
|
@@ -12386,8 +12375,8 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12386
12375
|
clipRule: "evenodd",
|
|
12387
12376
|
d: "M4 20.9805H20C21.1 20.9805 22 20.0905 22 18.9805V4.98049C22 3.88049 21.1 3.00049 20 3.00049H4C2.9 3.00049 2 3.88049 2 4.98049V8.99049H4V4.97049H20V19.0005H4V14.9905H2V18.9805C2 20.0805 2.9 20.9805 4 20.9805ZM15 12L11 8.00002V11H2V13H11V16L15 12Z"
|
|
12388
12377
|
}
|
|
12389
|
-
), eS = d("SquareInputIcon", xv), Sv = /* @__PURE__ */ n("path", { d: "M5 3h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5a2 2 0 0 1-2-2v-4h2v4h14V5H5v4H3V5a2 2 0 0 1 2-2m6.5 14-1.41-1.41L12.67 13H3v-2h9.67l-2.58-2.59L11.5 7l5 5z" }), tS = d("SquareInput2Icon", Sv), Hv = /* @__PURE__ */ n("path", { d: "M2.1 2.1.686 3.515l1.32 1.319A2 2 0 0 0 2 4.98v4.01h2V6.828L8.172 11H2v2h8.172l.828.828V16l1.086-1.086L16.172 19H4v-4.01H2v3.99c0 1.1.9 2 2 2h14.152l2.333 2.334 1.415-1.415zM5.829 3l1.97 1.97H20v12.201l1.992 1.992q.008-.09.008-.183v-14C22 3.88 21.1 3 20 3z" }), oS = d("SquareInputOffIcon", Hv),
|
|
12390
|
-
/* @__PURE__ */
|
|
12378
|
+
), eS = d("SquareInputIcon", xv), Sv = /* @__PURE__ */ n("path", { d: "M5 3h14c1.1 0 2 .9 2 2v14c0 1.1-.9 2-2 2H5a2 2 0 0 1-2-2v-4h2v4h14V5H5v4H3V5a2 2 0 0 1 2-2m6.5 14-1.41-1.41L12.67 13H3v-2h9.67l-2.58-2.59L11.5 7l5 5z" }), tS = d("SquareInput2Icon", Sv), Hv = /* @__PURE__ */ n("path", { d: "M2.1 2.1.686 3.515l1.32 1.319A2 2 0 0 0 2 4.98v4.01h2V6.828L8.172 11H2v2h8.172l.828.828V16l1.086-1.086L16.172 19H4v-4.01H2v3.99c0 1.1.9 2 2 2h14.152l2.333 2.334 1.415-1.415zM5.829 3l1.97 1.97H20v12.201l1.992 1.992q.008-.09.008-.183v-14C22 3.88 21.1 3 20 3z" }), oS = d("SquareInputOffIcon", Hv), jv = /* @__PURE__ */ j("g", { clipPath: "url(#clip0_12_2)", children: [
|
|
12379
|
+
/* @__PURE__ */ j(
|
|
12391
12380
|
"mask",
|
|
12392
12381
|
{
|
|
12393
12382
|
id: "mask0_12_2",
|
|
@@ -12429,13 +12418,13 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12429
12418
|
}
|
|
12430
12419
|
),
|
|
12431
12420
|
/* @__PURE__ */ n("g", { mask: "url(#mask0_12_2)", children: /* @__PURE__ */ n("path", { d: "M24 0H0V24H24V0Z" }) })
|
|
12432
|
-
] }), nS = d("SquareKeyUserIcon",
|
|
12421
|
+
] }), nS = d("SquareKeyUserIcon", jv), Vv = /* @__PURE__ */ n("path", { d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2m0 2v14H5V5zm-3 6H8v2h8z" }), rS = d("SquareMinusIcon", Vv), Av = /* @__PURE__ */ n(
|
|
12433
12422
|
"path",
|
|
12434
12423
|
{
|
|
12435
12424
|
fillRule: "evenodd",
|
|
12436
12425
|
d: "M5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5c0-1.11.89-2 2-2m1 14v-2.5l7.88-7.85c.19-.2.51-.2.71 0l1.76 1.76c.2.2.2.51 0 .71L8.47 17zm12 0h-7.5l2-2H18z"
|
|
12437
12426
|
}
|
|
12438
|
-
), sS = d("SquarePenLineIcon",
|
|
12427
|
+
), sS = d("SquarePenLineIcon", Av), zv = /* @__PURE__ */ n("path", { d: "M19 19H5V5h8.352V3H5c-1.11 0-2 .89-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-8h-2zm1.821-13.53a.61.61 0 0 0 0-.861l-1.43-1.43a.61.61 0 0 0-.861 0l-1.124 1.118 2.291 2.291zM10 14v-2.291l6.758-6.764 2.291 2.29L12.291 14z" }), cS = d("SquarePencilIcon", zv), Lv = /* @__PURE__ */ n(
|
|
12439
12428
|
"path",
|
|
12440
12429
|
{
|
|
12441
12430
|
fillRule: "evenodd",
|
|
@@ -12458,7 +12447,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12458
12447
|
fillRule: "evenodd",
|
|
12459
12448
|
d: "M20 0H4v2h16zm0 24v-2H4v2zM4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2m8 2.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75M7 15.5V17h10v-1.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5"
|
|
12460
12449
|
}
|
|
12461
|
-
), hS = d("SquareUserLinesIcon", Nv), Ov = /* @__PURE__ */
|
|
12450
|
+
), hS = d("SquareUserLinesIcon", Nv), Ov = /* @__PURE__ */ j(T, { children: [
|
|
12462
12451
|
/* @__PURE__ */ n("rect", { opacity: 0.133, width: "24", height: "24", rx: "3" }),
|
|
12463
12452
|
/* @__PURE__ */ n(
|
|
12464
12453
|
"path",
|
|
@@ -12467,7 +12456,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12467
12456
|
d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"
|
|
12468
12457
|
}
|
|
12469
12458
|
)
|
|
12470
|
-
] }), fS = d("SquareXIcon", Ov), Dv = /* @__PURE__ */ n("path", { d: "M12 17.27L18.18 21L16.54 13.97L22 9.24L14.81 8.63L12 2L9.19 8.63L2 9.24L7.46 13.97L5.82 21L12 17.27Z" }), pS = d("StarIcon", Dv), $v = /* @__PURE__ */
|
|
12459
|
+
] }), fS = d("SquareXIcon", Ov), Dv = /* @__PURE__ */ n("path", { d: "M12 17.27L18.18 21L16.54 13.97L22 9.24L14.81 8.63L12 2L9.19 8.63L2 9.24L7.46 13.97L5.82 21L12 17.27Z" }), pS = d("StarIcon", Dv), $v = /* @__PURE__ */ j(T, { children: [
|
|
12471
12460
|
/* @__PURE__ */ n(
|
|
12472
12461
|
"path",
|
|
12473
12462
|
{
|
|
@@ -12492,13 +12481,13 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12492
12481
|
clipRule: "evenodd",
|
|
12493
12482
|
d: "M9.21429 2H14.9286V3.90476H9.21429V2ZM11.119 14.381V8.66667H13.0238V14.381H11.119ZM18.7667 8.08571L20.119 6.73333C19.7095 6.24762 19.2619 5.79048 18.7762 5.39048L17.4238 6.74286C15.9476 5.5619 14.0905 4.85714 12.0714 4.85714C7.3381 4.85714 3.5 8.69524 3.5 13.4286C3.5 18.1619 7.32857 22 12.0714 22C16.8143 22 20.6429 18.1619 20.6429 13.4286C20.6429 11.4095 19.9381 9.55238 18.7667 8.08571ZM5.40476 13.4286C5.40476 17.1143 8.38571 20.0952 12.0714 20.0952C15.7571 20.0952 18.7381 17.1143 18.7381 13.4286C18.7381 9.74286 15.7571 6.7619 12.0714 6.7619C8.38571 6.7619 5.40476 9.74286 5.40476 13.4286Z"
|
|
12494
12483
|
}
|
|
12495
|
-
), SS = d("TimerIcon", Yv), Qv = /* @__PURE__ */
|
|
12484
|
+
), SS = d("TimerIcon", Yv), Qv = /* @__PURE__ */ j(T, { children: [
|
|
12496
12485
|
/* @__PURE__ */ n("path", { d: "M7 22C6.45 22 5.97933 21.8043 5.588 21.413C5.196 21.021 5 20.55 5 20V6H19V20C19 20.55 18.8043 21.021 18.413 21.413C18.021 21.8043 17.55 22 17 22H7ZM17 8H7V20H17V8ZM9 19H11V9H9V19ZM13 19H15V9H13V19Z" }),
|
|
12497
12486
|
/* @__PURE__ */ n("path", { d: "M20 5H4V3H9V2H15V3H20V5Z" })
|
|
12498
|
-
] }), HS = d("TrashIcon", Qv), Jv = /* @__PURE__ */ n("path", { d: "M9 4V3h6v1h5v2h-1v13a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6H4V4zm8 2H7v13h10zM9 8v9h2V8zm4 9V8h2v9z" }),
|
|
12487
|
+
] }), HS = d("TrashIcon", Qv), Jv = /* @__PURE__ */ n("path", { d: "M9 4V3h6v1h5v2h-1v13a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6H4V4zm8 2H7v13h10zM9 8v9h2V8zm4 9V8h2v9z" }), jS = d("Trash2Icon", Jv), em = /* @__PURE__ */ n("path", { d: "M15.5 4H19v2H5V4h3.5l1-1h5zM8 21c-1.1 0-2-.9-2-2V7h12v12c0 1.1-.9 2-2 2z" }), VS = d("Trash3Icon", em), tm = /* @__PURE__ */ n("path", { d: "M5 3v1H0v2h1v13a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V6h1V4h-5V3zM3 6h10v13H3zm2 11V8h2v9zm4-9v9h2V8zm15 0h-7v2h7zm-3 8h-4v2h4zm-4-4h6v2h-6z" }), AS = d("TrashWideNarrowIcon", tm), om = /* @__PURE__ */ n("path", { d: "M1 21h22L12 2z M11 9h2v6h-2z M11 17h2v2h-2z", fillRule: "evenodd" }), zS = d("TriangleAlertIcon", om), nm = /* @__PURE__ */ n("path", { d: "m12 7-3 4h6zm0 10 3-4H9z" }), LS = d(
|
|
12499
12488
|
"TriangleArrowsUpDownIcon",
|
|
12500
12489
|
nm
|
|
12501
|
-
), rm = /* @__PURE__ */
|
|
12490
|
+
), rm = /* @__PURE__ */ j(T, { children: [
|
|
12502
12491
|
/* @__PURE__ */ n("path", { d: "M18.1963 15.3223C18.0802 15.3521 17.9657 15.3885 17.8545 15.4346C17.5451 15.5627 17.2641 15.7505 17.0273 15.9873C16.7906 16.2241 16.6018 16.5051 16.4736 16.8145C16.3456 17.1237 16.2803 17.4553 16.2803 17.79C16.2803 18.0378 16.3175 18.2814 16.3867 18.5146H6.99414C7.06329 18.2814 7.09961 18.0377 7.09961 17.79C7.09961 17.338 6.97825 16.8993 6.75586 16.5146H16.5752L11.7158 8.09766C12.3827 8.09091 13.0211 7.82553 13.4932 7.35352C13.5152 7.33152 13.5336 7.30591 13.5547 7.2832L18.1963 15.3223Z" }),
|
|
12503
12492
|
/* @__PURE__ */ n("path", { d: "M9.88672 7.35352C10.3389 7.80565 10.9439 8.06628 11.5801 8.09375L6.73633 16.4834C6.62959 16.3048 6.50309 16.1369 6.35352 15.9873C6.00928 15.6431 5.57598 15.4087 5.1084 15.3037L9.77148 7.22656C9.80896 7.26944 9.8462 7.31299 9.88672 7.35352Z" }),
|
|
12504
12493
|
/* @__PURE__ */ n("path", { d: "M6.09961 17.79C6.09961 17.3791 5.93691 16.985 5.64648 16.6943C5.3558 16.4037 4.96089 16.2402 4.5498 16.2402C4.13879 16.2403 3.74474 16.4037 3.4541 16.6943C3.16349 16.985 3 17.379 3 17.79C3.00001 18.2011 3.16348 18.5951 3.4541 18.8857C3.74474 19.1764 4.13879 19.3398 4.5498 19.3398C4.96089 19.3398 5.3558 19.1764 5.64648 18.8857C5.93692 18.5951 6.0996 18.2009 6.09961 17.79ZM20.3799 17.79C20.3799 17.5866 20.3395 17.3852 20.2617 17.1973C20.1838 17.0092 20.0697 16.8383 19.9258 16.6943C19.7818 16.5504 19.6109 16.4363 19.4229 16.3584C19.2349 16.2805 19.0336 16.2402 18.8301 16.2402C18.6266 16.2402 18.4253 16.2806 18.2373 16.3584C18.0493 16.4363 17.8783 16.5504 17.7344 16.6943C17.5904 16.8383 17.4763 17.0092 17.3984 17.1973C17.3206 17.3853 17.2803 17.5866 17.2803 17.79C17.2803 18.2011 17.4437 18.5951 17.7344 18.8857C18.0251 19.1764 18.419 19.3398 18.8301 19.3398C19.2411 19.3398 19.6351 19.1764 19.9258 18.8857C20.2164 18.5951 20.3799 18.2011 20.3799 17.79ZM13.2402 5.5498C13.2402 5.34639 13.1999 5.14497 13.1221 4.95703C13.0442 4.76903 12.93 4.59801 12.7861 4.4541C12.6422 4.3102 12.4712 4.19606 12.2832 4.11816C12.0953 4.04032 11.8938 4.00006 11.6904 4C11.4869 4 11.2847 4.04027 11.0967 4.11816C10.9087 4.19606 10.7376 4.31022 10.5938 4.4541C10.4499 4.598 10.3357 4.76905 10.2578 4.95703C10.18 5.14496 10.1397 5.3464 10.1396 5.5498C10.1396 5.96089 10.3031 6.3558 10.5938 6.64648C10.8844 6.93709 11.2794 7.09961 11.6904 7.09961C12.1013 7.0995 12.4956 6.93696 12.7861 6.64648C13.0768 6.3558 13.2402 5.96089 13.2402 5.5498ZM8.09961 17.79C8.0996 18.7314 7.72606 19.6341 7.06055 20.2998C6.39479 20.9656 5.49132 21.3398 4.5498 21.3398C3.60836 21.3398 2.70575 20.9655 2.04004 20.2998C1.37434 19.6341 1.00001 18.7315 1 17.79C1 16.8485 1.37429 15.9451 2.04004 15.2793C2.70571 14.6138 3.60853 14.2403 4.5498 14.2402C5.49129 14.2402 6.3948 14.6136 7.06055 15.2793C7.7263 15.9451 8.09961 16.8485 8.09961 17.79ZM22.3799 17.79C22.3799 18.7315 22.0056 19.6341 21.3398 20.2998C20.6741 20.9655 19.7716 21.3398 18.8301 21.3398C17.8886 21.3398 16.9851 20.9656 16.3193 20.2998C15.6539 19.6341 15.2803 18.7313 15.2803 17.79C15.2803 17.324 15.3715 16.8623 15.5498 16.4316C15.7282 16.0009 15.9897 15.6089 16.3193 15.2793C16.649 14.9497 17.041 14.6882 17.4717 14.5098C17.9023 14.3315 18.364 14.2402 18.8301 14.2402C19.2962 14.2402 19.7579 14.3314 20.1885 14.5098C20.619 14.6881 21.0103 14.9499 21.3398 15.2793C21.6695 15.6089 21.931 16.0009 22.1094 16.4316C22.2878 16.8623 22.3799 17.3238 22.3799 17.79ZM15.2402 5.5498C15.2402 6.49132 14.8659 7.39479 14.2002 8.06055C13.5346 8.72609 12.6317 9.0995 11.6904 9.09961C10.749 9.09961 9.84543 8.72623 9.17969 8.06055C8.51393 7.39479 8.13965 6.49132 8.13965 5.5498C8.13967 5.08368 8.23178 4.62205 8.41016 4.19141C8.58853 3.76079 8.85013 3.36964 9.17969 3.04004C9.50922 2.71051 9.90053 2.44891 10.3311 2.27051C10.7618 2.0921 11.2242 2 11.6904 2C12.1565 2.00006 12.6183 2.09216 13.0488 2.27051C13.4794 2.44891 13.8706 2.71048 14.2002 3.04004C14.5298 3.36964 14.7913 3.76078 14.9697 4.19141C15.1481 4.62205 15.2402 5.08368 15.2402 5.5498Z" })
|
|
@@ -12508,7 +12497,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12508
12497
|
fillRule: "evenodd",
|
|
12509
12498
|
d: "M21 14.571c0-4.102-3.274-7.428-7.312-7.428h-6.38l3.477-3.532L9.187 2 3 8.286l6.188 6.285 1.586-1.611-3.465-3.531h6.379c2.812 0 5.062 2.285 5.062 5.142s-2.25 5.143-5.062 5.143H9.75V22h3.938C17.726 22 21 18.674 21 14.571M7.5 19.714H5.25V22H7.5z"
|
|
12510
12499
|
}
|
|
12511
|
-
), NS = d("UndoIcon", im), lm = /* @__PURE__ */ n("path", { d: "M21.4 7.55c.8.8.8 2.1 0 2.8l-2.8 2.8-7.8-7.8 2.8-2.8c.8-.8 2.1-.8 2.8 0l1.8 1.8 3-3 1.4 1.4-3 3zm-5.8 5.8-1.4-1.4-2.8 2.8-2.1-2.1 2.8-2.8-1.4-1.4-2.8 2.8-1.5-1.4-2.8 2.8c-.8.8-.8 2.1 0 2.8l1.8 1.8-4 4 1.4 1.4 4-4 1.8 1.8c.8.8 2.1.8 2.8 0l2.8-2.8-1.4-1.4z" }), OS = d("UnplugIcon", lm), dm = /* @__PURE__ */ n("path", { d: "M1 7a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v1h5a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-5v1a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm16 7h4v-4h-4zm-8 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6" }), DS = d("UsbKeyIcon", dm), um = /* @__PURE__ */ n("path", { d: "M12 12c2.49 0 4.5-2.01 4.5-4.5S14.49 3 12 3 7.5 5.01 7.5 7.5 9.51 12 12 12m0 2.85c-3 0-9 1.65-9 4.65V21h18v-1.5c0-3-6-4.65-9-4.65" }), $S = d("UserIcon", um), hm = /* @__PURE__ */ n("path", { d: "M10 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8m7.5 9C15 13 13 15 13 17.5s2 4.5 4.5 4.5 4.5-2 4.5-4.5-2-4.5-4.5-4.5M10 14c-4.42 0-8 1.79-8 4v2h9.5a6.5 6.5 0 0 1-.5-2.5 6.5 6.5 0 0 1 .95-3.36c-.63-.08-1.27-.14-1.95-.14m7.5.5c1.66 0 3 1.34 3 3 0 .56-.15 1.08-.42 1.5L16 14.92c.42-.27.94-.42 1.5-.42M14.92 16 19 20.08c-.42.27-.94.42-1.5.42-1.66 0-3-1.34-3-3 0-.56.15-1.08.42-1.5" }), _S = d("UserBanIcon", hm), fm = /* @__PURE__ */ n("path", { d: "M12 2a4 4 0 1 1 0 8 4 4 0 0 1 0-8m0 10c4.42 0 8 1.79 8 4v2H4v-2c0-2.21 3.58-4 8-4m-5 8h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" }), ZS = d("UserEllipsisIcon", fm), pm = /* @__PURE__ */ n("path", { d: "M10.14 3c2.232 0 4.057 1.8 4.057 4s-1.825 4-4.056 4-4.057-1.8-4.057-4 1.826-4 4.057-4m7.1 17 1.825 1.8c.507.5 1.217.1 1.217-.5V17l2.839-3.4c.507-.7 0-1.6-.811-1.6H15.21c-.811 0-1.318 1-.811 1.6l2.84 3.4zm-4.361-5.1 2.332 2.8V19H2.028v-2c0-2.2 3.65-4 8.113-4 .71 0 1.42 0 2.13.2 0 .6.202 1.2.608 1.7" }), FS = d("UserFunnelIcon", pm), vm = /* @__PURE__ */ n("path", { d: "M18.72 14.76c.35-.85.54-1.76.54-2.76 0-.72-.11-1.41-.3-2.05-.65.15-1.33.23-2.04.23A9.07 9.07 0 0 1 9.5 6.34a9.2 9.2 0 0 1-4.73 4.88c-.04.25-.04.52-.04.78A7.27 7.27 0 0 0 12 19.27c1.05 0 2.06-.23 2.97-.64.57 1.09.83 1.63.81 1.63-1.64.55-2.91.82-3.78.82-2.42 0-4.73-.95-6.43-2.66a9 9 0 0 1-2.24-3.69H2v-4.55h1.09a9.09 9.09 0 0 1 15.33-4.6 9 9 0 0 1 2.47 4.6H22v4.55h-.06L18.38 18l-5.3-.6v-1.67h4.83zm-9.45-2.99c.3 0 .59.12.8.34a1.136 1.136 0 0 1 0 1.6c-.21.21-.5.33-.8.33-.63 0-1.14-.5-1.14-1.13s.51-1.14 1.14-1.14m5.45 0c.63 0 1.13.51 1.13 1.14s-.5 1.13-1.13 1.13a1.131 1.131 0 0 1-.806-1.936 1.14 1.14 0 0 1 .806-.334" }), BS = d("UserHeadsetIcon", vm), mm = /* @__PURE__ */
|
|
12500
|
+
), NS = d("UndoIcon", im), lm = /* @__PURE__ */ n("path", { d: "M21.4 7.55c.8.8.8 2.1 0 2.8l-2.8 2.8-7.8-7.8 2.8-2.8c.8-.8 2.1-.8 2.8 0l1.8 1.8 3-3 1.4 1.4-3 3zm-5.8 5.8-1.4-1.4-2.8 2.8-2.1-2.1 2.8-2.8-1.4-1.4-2.8 2.8-1.5-1.4-2.8 2.8c-.8.8-.8 2.1 0 2.8l1.8 1.8-4 4 1.4 1.4 4-4 1.8 1.8c.8.8 2.1.8 2.8 0l2.8-2.8-1.4-1.4z" }), OS = d("UnplugIcon", lm), dm = /* @__PURE__ */ n("path", { d: "M1 7a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v1h5a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1h-5v1a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1zm16 7h4v-4h-4zm-8 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6" }), DS = d("UsbKeyIcon", dm), um = /* @__PURE__ */ n("path", { d: "M12 12c2.49 0 4.5-2.01 4.5-4.5S14.49 3 12 3 7.5 5.01 7.5 7.5 9.51 12 12 12m0 2.85c-3 0-9 1.65-9 4.65V21h18v-1.5c0-3-6-4.65-9-4.65" }), $S = d("UserIcon", um), hm = /* @__PURE__ */ n("path", { d: "M10 4a4 4 0 1 0 0 8 4 4 0 0 0 0-8m7.5 9C15 13 13 15 13 17.5s2 4.5 4.5 4.5 4.5-2 4.5-4.5-2-4.5-4.5-4.5M10 14c-4.42 0-8 1.79-8 4v2h9.5a6.5 6.5 0 0 1-.5-2.5 6.5 6.5 0 0 1 .95-3.36c-.63-.08-1.27-.14-1.95-.14m7.5.5c1.66 0 3 1.34 3 3 0 .56-.15 1.08-.42 1.5L16 14.92c.42-.27.94-.42 1.5-.42M14.92 16 19 20.08c-.42.27-.94.42-1.5.42-1.66 0-3-1.34-3-3 0-.56.15-1.08.42-1.5" }), _S = d("UserBanIcon", hm), fm = /* @__PURE__ */ n("path", { d: "M12 2a4 4 0 1 1 0 8 4 4 0 0 1 0-8m0 10c4.42 0 8 1.79 8 4v2H4v-2c0-2.21 3.58-4 8-4m-5 8h2v2H7zm4 0h2v2h-2zm4 0h2v2h-2z" }), ZS = d("UserEllipsisIcon", fm), pm = /* @__PURE__ */ n("path", { d: "M10.14 3c2.232 0 4.057 1.8 4.057 4s-1.825 4-4.056 4-4.057-1.8-4.057-4 1.826-4 4.057-4m7.1 17 1.825 1.8c.507.5 1.217.1 1.217-.5V17l2.839-3.4c.507-.7 0-1.6-.811-1.6H15.21c-.811 0-1.318 1-.811 1.6l2.84 3.4zm-4.361-5.1 2.332 2.8V19H2.028v-2c0-2.2 3.65-4 8.113-4 .71 0 1.42 0 2.13.2 0 .6.202 1.2.608 1.7" }), FS = d("UserFunnelIcon", pm), vm = /* @__PURE__ */ n("path", { d: "M18.72 14.76c.35-.85.54-1.76.54-2.76 0-.72-.11-1.41-.3-2.05-.65.15-1.33.23-2.04.23A9.07 9.07 0 0 1 9.5 6.34a9.2 9.2 0 0 1-4.73 4.88c-.04.25-.04.52-.04.78A7.27 7.27 0 0 0 12 19.27c1.05 0 2.06-.23 2.97-.64.57 1.09.83 1.63.81 1.63-1.64.55-2.91.82-3.78.82-2.42 0-4.73-.95-6.43-2.66a9 9 0 0 1-2.24-3.69H2v-4.55h1.09a9.09 9.09 0 0 1 15.33-4.6 9 9 0 0 1 2.47 4.6H22v4.55h-.06L18.38 18l-5.3-.6v-1.67h4.83zm-9.45-2.99c.3 0 .59.12.8.34a1.136 1.136 0 0 1 0 1.6c-.21.21-.5.33-.8.33-.63 0-1.14-.5-1.14-1.13s.51-1.14 1.14-1.14m5.45 0c.63 0 1.13.51 1.13 1.14s-.5 1.13-1.13 1.13a1.131 1.131 0 0 1-.806-1.936 1.14 1.14 0 0 1 .806-.334" }), BS = d("UserHeadsetIcon", vm), mm = /* @__PURE__ */ j(T, { children: [
|
|
12512
12501
|
/* @__PURE__ */ n("path", { d: "M21 12.22C21 6.73 16.74 3 12 3c-4.69 0-9 3.65-9 9.28-.6.34-1 .98-1 1.72v2c0 1.1.9 2 2 2h1v-6.1c0-3.87 3.13-7 7-7s7 3.13 7 7V19h-8v2h8c1.1 0 2-.9 2-2v-1.22c.59-.31 1-.92 1-1.64v-2.3c0-.7-.41-1.31-1-1.62" }),
|
|
12513
12502
|
/* @__PURE__ */ n("path", { d: "M9 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2M15 14a1 1 0 1 0 0-2 1 1 0 0 0 0 2" }),
|
|
12514
12503
|
/* @__PURE__ */ n("path", { d: "M18 11.03A6.04 6.04 0 0 0 12.05 6c-3.03 0-6.29 2.51-6.03 6.45a8.07 8.07 0 0 0 4.86-5.89c1.31 2.63 4 4.44 7.12 4.47" })
|
|
@@ -12519,23 +12508,23 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12519
12508
|
d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4Zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6Zm1 8c0-2.66 5.33-4 8-4s8 1.34 8 4v2H7v-2Z",
|
|
12520
12509
|
clipRule: "evenodd"
|
|
12521
12510
|
}
|
|
12522
|
-
), KS = d("UserPlusIcon", bm), wm = /* @__PURE__ */
|
|
12511
|
+
), KS = d("UserPlusIcon", bm), wm = /* @__PURE__ */ j(T, { children: [
|
|
12523
12512
|
/* @__PURE__ */ n("path", { d: "M20.032 20.838c0 2.013 2.968 2.013 2.968 0V18.73h-2.968zM17.095 3.147a3.15 3.15 0 1 1-6.298 0 3.15 3.15 0 0 1 6.298 0M7.216 13.707a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" }),
|
|
12524
12513
|
/* @__PURE__ */ n("path", { d: "M23 11.831v-.211c0-2.43-2.074-4.376-4.461-4.376h-4.096v15.152h4.766l.002-10.5h.821v6.19H23v-4.54H21.26v-1.715zm-6.385 1a1.143 1.143 0 1 1 0-2.286 1.143 1.143 0 0 1 0 2.286M13.72 7.244H7.84c-.067 0-.576.035-.643.045-.568.085-3.446.596-5.262 2.817C-.35 12.896.014 15.742.03 15.86a1.363 1.363 0 0 0 2.532.5l-.001 1.77h1.03v-3.843a3.59 3.59 0 0 1 3.588-3.447q.38.002.736.078c.04.009.076.025.116.034.2.05.396.111.581.192q.028.014.055.029.307.14.58.333l.001.001q.294.21.538.471c.57.605.94 1.4.98 2.288l.008 3.906-.898-.005.028-.018v-4.077s-1.296.475-2.762.475a8.5 8.5 0 0 1-2.713-.475v4.077s1.07.758 2.75.758a5.4 5.4 0 0 0 2.616-.693l.004 4.181h3.921V7.244" })
|
|
12525
12514
|
] }), XS = d(
|
|
12526
12515
|
"UserRacecarDriverIcon",
|
|
12527
12516
|
wm
|
|
12528
|
-
), Mm = /* @__PURE__ */ n("path", { d: "m15.1 3.84 1.35-1.34c3.25 1.57 5.59 4.74 5.95 8.5h1.5c-.51-6.16-5.66-11-11.95-11l-.66.03zM8.8 20.16 7.45 21.5C4.2 19.94 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11l.66-.03zM5.95 17c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1h-12zm6-5a3 3 0 1 0 0-6 3 3 0 0 0 0 6" }), YS = d("UserRefreshCcwIcon", Mm), ym = /* @__PURE__ */ n("path", { d: "M6 8c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4m4 6c-4.42 0-8 1.79-8 4v2h11.09c-.05-.33-.09-.66-.09-1 0-1.64.66-3.13 1.74-4.22-1.33-.49-2.96-.78-4.74-.78m13 5-3-3v2h-4v2h4v2z" }), QS = d("UserRightIcon", ym), Im = /* @__PURE__ */ n("path", { d: "M21.604 13.662H24l-4.193-4.193-4.192 4.193h2.455c0 2.994-.958 5.09-3.054 6.588 2.994-.599 5.99-2.396 6.588-6.588M5.313 7.313A4.31 4.31 0 0 1 9.625 3a4.31 4.31 0 0 1 4.313 4.313 4.31 4.31 0 0 1-4.313 4.312 4.31 4.31 0 0 1-4.312-4.312m4.312 6.468C4.86 13.781 1 15.711 1 18.094v2.156h11.957a7 7 0 0 1-.098-1.078 6.44 6.44 0 0 1 1.876-4.55c-1.433-.528-3.19-.84-5.11-.84" }), JS = d("UserShareIcon", Im), xm = /* @__PURE__ */ n("path", { d: "M16 9c0 2.21-1.79 4-4 4s-4-1.79-4-4l.11-.94L5 6.5 12 3l7 3.5v5h-1V7l-2.11 1.06zm-4 6c4.42 0 8 1.79 8 4v2H4v-2c0-2.21 3.58-4 8-4" }), eH = d("UserStudentIcon", xm), Sm = /* @__PURE__ */ n("path", { d: "M20.338 17a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H9.798c.35.61.54 1.3.54 2h10v11h-9v2m4-10v2h-6v13h-2v-6h-2v6h-2v-8h-1.5V9a2 2 0 0 1 2-2zm-7-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0" }), tH = d("UserTeacherIcon", Sm), Hm = /* @__PURE__ */ n("path", { d: "M17 17v4h2v-4h2l-3-3-3 3zM11 4C8.8 4 7 5.8 7 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 10c-4.4 0-8 1.8-8 4v2h9.5c-.3-.8-.5-1.6-.5-2.5 0-1.2.3-2.3.9-3.4-.6 0-1.2-.1-1.9-.1" }), oH = d("UserUpIcon", Hm),
|
|
12517
|
+
), Mm = /* @__PURE__ */ n("path", { d: "m15.1 3.84 1.35-1.34c3.25 1.57 5.59 4.74 5.95 8.5h1.5c-.51-6.16-5.66-11-11.95-11l-.66.03zM8.8 20.16 7.45 21.5C4.2 19.94 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11l.66-.03zM5.95 17c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1h-12zm6-5a3 3 0 1 0 0-6 3 3 0 0 0 0 6" }), YS = d("UserRefreshCcwIcon", Mm), ym = /* @__PURE__ */ n("path", { d: "M6 8c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4m4 6c-4.42 0-8 1.79-8 4v2h11.09c-.05-.33-.09-.66-.09-1 0-1.64.66-3.13 1.74-4.22-1.33-.49-2.96-.78-4.74-.78m13 5-3-3v2h-4v2h4v2z" }), QS = d("UserRightIcon", ym), Im = /* @__PURE__ */ n("path", { d: "M21.604 13.662H24l-4.193-4.193-4.192 4.193h2.455c0 2.994-.958 5.09-3.054 6.588 2.994-.599 5.99-2.396 6.588-6.588M5.313 7.313A4.31 4.31 0 0 1 9.625 3a4.31 4.31 0 0 1 4.313 4.313 4.31 4.31 0 0 1-4.313 4.312 4.31 4.31 0 0 1-4.312-4.312m4.312 6.468C4.86 13.781 1 15.711 1 18.094v2.156h11.957a7 7 0 0 1-.098-1.078 6.44 6.44 0 0 1 1.876-4.55c-1.433-.528-3.19-.84-5.11-.84" }), JS = d("UserShareIcon", Im), xm = /* @__PURE__ */ n("path", { d: "M16 9c0 2.21-1.79 4-4 4s-4-1.79-4-4l.11-.94L5 6.5 12 3l7 3.5v5h-1V7l-2.11 1.06zm-4 6c4.42 0 8 1.79 8 4v2H4v-2c0-2.21 3.58-4 8-4" }), eH = d("UserStudentIcon", xm), Sm = /* @__PURE__ */ n("path", { d: "M20.338 17a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H9.798c.35.61.54 1.3.54 2h10v11h-9v2m4-10v2h-6v13h-2v-6h-2v6h-2v-8h-1.5V9a2 2 0 0 1 2-2zm-7-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0" }), tH = d("UserTeacherIcon", Sm), Hm = /* @__PURE__ */ n("path", { d: "M17 17v4h2v-4h2l-3-3-3 3zM11 4C8.8 4 7 5.8 7 8s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4m0 10c-4.4 0-8 1.8-8 4v2h9.5c-.3-.8-.5-1.6-.5-2.5 0-1.2.3-2.3.9-3.4-.6 0-1.2-.1-1.9-.1" }), oH = d("UserUpIcon", Hm), jm = /* @__PURE__ */ n("path", { d: "M12.338 5c-1.11 0-2 .89-2 2s.89 2 2 2 2-.89 2-2-.89-2-2-2m10-4v5h-2V4h-16v2h-2V1h2v2h16V1zm-7 10.26V23h-2v-5h-2v5h-2V11.26c-2.07-1.09-3.5-3.26-3.5-5.76V5h2v.5c0 2.5 2 4.5 4.5 4.5s4.5-2 4.5-4.5V5h2v.5c0 2.5-1.43 4.67-3.5 5.76" }), nH = d("UserWeightsIcon", jm), Vm = /* @__PURE__ */ n(
|
|
12529
12518
|
"path",
|
|
12530
12519
|
{
|
|
12531
12520
|
fillRule: "evenodd",
|
|
12532
12521
|
d: "M14.572 12.428a3.714 3.714 0 1 1 0-7.428 3.714 3.714 0 0 1 0 7.428Zm0 1.857C17.052 14.285 22 15.52 22 18v1.857H7.144V18c0-2.479 4.949-3.714 7.428-3.714ZM7.255 8.213 5.287 10.19 3.318 8.213 2 9.53 3.978 11.5 2 13.468l1.318 1.318 1.969-1.977 1.968 1.977 1.319-1.318-1.978-1.969 1.978-1.968-1.319-1.318Z",
|
|
12533
12522
|
clipRule: "evenodd"
|
|
12534
12523
|
}
|
|
12535
|
-
), rH = d("UserXIcon",
|
|
12524
|
+
), rH = d("UserXIcon", Vm), Am = /* @__PURE__ */ n("path", { d: "M16 11C17.66 11 18.99 9.66 18.99 8C18.99 6.34 17.66 5 16 5C14.34 5 13 6.34 13 8C13 9.66 14.34 11 16 11ZM8 11C9.66 11 10.99 9.66 10.99 8C10.99 6.34 9.66 5 8 5C6.34 5 5 6.34 5 8C5 9.66 6.34 11 8 11ZM8 13C5.67 13 1 14.17 1 16.5V19H15V16.5C15 14.17 10.33 13 8 13ZM16 13C15.71 13 15.38 13.02 15.03 13.05C16.19 13.89 17 15.02 17 16.5V19H23V16.5C23 14.17 18.33 13 16 13Z" }), sH = d("UsersIcon", Am), zm = /* @__PURE__ */ n("path", { d: "M11.989 7.214c0 1.779-1.463 3.215-3.289 3.215S5.4 8.993 5.4 7.214 6.874 4 8.7 4s3.289 1.436 3.289 3.214m7.7 1.607c0 1.479-1.221 2.679-2.739 2.679s-2.75-1.2-2.75-2.679 1.232-2.678 2.75-2.678 2.739 1.2 2.739 2.678m-2.739 4.822c-2.013 0-6.05.986-6.05 2.946V19H23v-2.41c0-1.961-4.037-2.947-6.05-2.947M1 16.32c0-2.496 5.137-3.75 7.7-3.75.726 0 1.65.108 2.607.3C9.063 14.082 8.7 15.68 8.7 16.59V19H1z" }), cH = d("Users2Icon", zm), Lm = /* @__PURE__ */ n("path", { d: "M19 17v2H7v-2s0-4 6-4 6 4 6 4m-3-9a3 3 0 1 0-6 0 3 3 0 0 0 6 0m3.2 5.06A5.6 5.6 0 0 1 21 17v2h3v-2s0-3.45-4.8-3.94M18 5a2.9 2.9 0 0 0-.89.14 5 5 0 0 1 0 5.72c.288.093.588.14.89.14a3 3 0 0 0 0-6M7.34 8.92l1.16 1.41-4.75 4.75-2.75-3 1.16-1.16 1.59 1.58z" }), aH = d("UsersCheckIcon", Lm), Rm = /* @__PURE__ */ n("path", { d: "M18 11c1.66 0 2.99-1.34 2.99-3S19.66 5 18 5c-.32 0-.63.05-.91.14.57.81.9 1.79.9 2.86s-.34 2.04-.9 2.86c.28.09.59.14.91.14M8 10H5V7H3v3H0v2h3v3h2v-3h3zm7.99-2c0 1.66-1.33 3-2.99 3s-3-1.34-3-3 1.34-3 3-3 2.99 1.34 2.99 3m3.63 5.16c.83.73 1.38 1.66 1.38 2.84v2h3v-2c0-1.54-2.37-2.49-4.38-2.84M7 16c0-2 4-3 6-3s6 1 6 3v2H7z" }), iH = d("UsersPlusIcon", Rm), Em = /* @__PURE__ */ j(T, { children: [
|
|
12536
12525
|
/* @__PURE__ */ n("path", { d: "M12.125 14.5C13.7819 14.5 15.125 13.1569 15.125 11.5C15.125 9.84315 13.7819 8.5 12.125 8.5C10.4681 8.5 9.125 9.84315 9.125 11.5C9.125 13.1569 10.4681 14.5 12.125 14.5Z" }),
|
|
12537
12526
|
/* @__PURE__ */ n("path", { d: "M2.125 3.5C2.125 2.39543 3.02043 1.5 4.125 1.5H20.125C21.2296 1.5 22.125 2.39543 22.125 3.5V19.5C22.125 20.6046 21.2296 21.5 20.125 21.5H19.125V22C19.125 22.5523 18.6773 23 18.125 23C17.5727 23 17.125 22.5523 17.125 22V21.5H7.125V22C7.125 22.5523 6.67728 23 6.125 23C5.57272 23 5.125 22.5523 5.125 22V21.5H4.125C3.02043 21.5 2.125 20.6046 2.125 19.5V3.5ZM11.125 6V6.60002C9.16587 6.9977 7.6227 8.54087 7.22502 10.5H6.625C6.07272 10.5 5.625 10.9477 5.625 11.5C5.625 12.0523 6.07272 12.5 6.625 12.5H7.22502C7.6227 14.4591 9.16587 16.0023 11.125 16.4V17C11.125 17.5523 11.5727 18 12.125 18C12.6773 18 13.125 17.5523 13.125 17V16.4C15.0841 16.0023 16.6273 14.4591 17.025 12.5H17.625C18.1773 12.5 18.625 12.0523 18.625 11.5C18.625 10.9477 18.1773 10.5 17.625 10.5H17.025C16.6273 8.54087 15.0841 6.9977 13.125 6.60002V6C13.125 5.44772 12.6773 5 12.125 5C11.5727 5 11.125 5.44772 11.125 6Z" })
|
|
12538
|
-
] }), lH = d("VaultIcon", Em), Tm = /* @__PURE__ */ n("path", { d: "M10 11.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m-2.2 5.7-1.5-1.4 1.5-1.5c-.5-.8-.8-1.8-.8-2.8s.3-2 .8-2.7L6.3 7.3l1.5-1.5 1.4 1.5c.8-.5 1.8-.8 2.8-.8s2 .3 2.8.8l1.5-1.5 1.4 1.4-1.5 1.5c.5.8.8 1.8.8 2.8s-.3 2-.8 2.8l1.5 1.5-1.4 1.4-1.5-1.5c-.8.5-1.8.8-2.8.8s-2-.3-2.7-.8zM12 8.5c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3m8-7c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2h-1v1h-4v-1H9v1H5v-1H4c-1.1 0-2-.9-2-2v-16c0-1.1.9-2 2-2zm0 18v-16H4v16z" }), dH = d("VaultOutlineIcon", Tm), Pm = /* @__PURE__ */ n("path", { d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11z" }), uH = d("VideoIcon", Pm), Nm = /* @__PURE__ */ n("path", { d: "M2 3.27 3.27 2 21 19.73 19.73 21l-3.19-3.18c-.15.1-.33.18-.54.18H4c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h.73zm15 7.23 4-4v10.68L9.82 6H16c.55 0 1 .45 1 1z" }), hH = d("VideoOffIcon", Nm), Om = /* @__PURE__ */
|
|
12527
|
+
] }), lH = d("VaultIcon", Em), Tm = /* @__PURE__ */ n("path", { d: "M10 11.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2m-2.2 5.7-1.5-1.4 1.5-1.5c-.5-.8-.8-1.8-.8-2.8s.3-2 .8-2.7L6.3 7.3l1.5-1.5 1.4 1.5c.8-.5 1.8-.8 2.8-.8s2 .3 2.8.8l1.5-1.5 1.4 1.4-1.5 1.5c.5.8.8 1.8.8 2.8s-.3 2-.8 2.8l1.5 1.5-1.4 1.4-1.5-1.5c-.8.5-1.8.8-2.8.8s-2-.3-2.7-.8zM12 8.5c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3m8-7c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2h-1v1h-4v-1H9v1H5v-1H4c-1.1 0-2-.9-2-2v-16c0-1.1.9-2 2-2zm0 18v-16H4v16z" }), dH = d("VaultOutlineIcon", Tm), Pm = /* @__PURE__ */ n("path", { d: "M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11z" }), uH = d("VideoIcon", Pm), Nm = /* @__PURE__ */ n("path", { d: "M2 3.27 3.27 2 21 19.73 19.73 21l-3.19-3.18c-.15.1-.33.18-.54.18H4c-.55 0-1-.45-1-1V7c0-.55.45-1 1-1h.73zm15 7.23 4-4v10.68L9.82 6H16c.55 0 1 .45 1 1z" }), hH = d("VideoOffIcon", Nm), Om = /* @__PURE__ */ j(T, { children: [
|
|
12539
12528
|
/* @__PURE__ */ n("path", { fill: "#3c58bf", d: "m9.333 14.82 1.016-5.61h1.588l-.985 5.61z" }),
|
|
12540
12529
|
/* @__PURE__ */ n("path", { fill: "#293688", d: "m9.333 14.82 1.302-5.61h1.302l-.985 5.61z" }),
|
|
12541
12530
|
/* @__PURE__ */ n(
|
|
@@ -12624,7 +12613,7 @@ const q8 = /* @__PURE__ */ n("path", { d: "m15.957 19-1.12-3.22h-5.66L8.037 19h-
|
|
|
12624
12613
|
fillRule: "evenodd",
|
|
12625
12614
|
d: "m8.25 22-.748-4.626A3.5 3.5 0 0 1 6 14.5v-5c0-1.19.594-2.242 1.502-2.874L8.25 2h6.5l.757 4.632A3.5 3.5 0 0 1 17 9.5v5c0 1.187-.59 2.235-1.493 2.868L14.75 22zM7.6 9.5c0-1.05.85-1.9 1.9-1.9h4c1.05 0 1.9.85 1.9 1.9v5a1.9 1.9 0 0 1-1.9 1.9h-4a1.9 1.9 0 0 1-1.9-1.9z"
|
|
12626
12615
|
}
|
|
12627
|
-
), gH = d("Watch2Icon", Zm), Fm = /* @__PURE__ */ n("path", { d: "M7.84 1.804A1 1 0 0 1 8.82 1h6.36a1 1 0 0 1 .98.804l.782 3.904A8 8 0 0 1 19.748 10H20a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-.252a8 8 0 0 1-2.806 4.292l-.781 3.904a1 1 0 0 1-.98.804H8.82a1 1 0 0 1-.98-.804l-.782-3.904A7.99 7.99 0 0 1 4 12a7.99 7.99 0 0 1 3.058-6.292zM11.994 18h.01a6 6 0 1 0-.01 0m1.22-7.5L12 6.5l-1.215 4H7l3.09 2.205L8.915 16.5 12 14.155l3.09 2.345-1.175-3.795L17 10.5z" }), CH = d("WatchStarIcon", Fm), Bm = /* @__PURE__ */ n("path", { d: "m1 9 2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9m8 8 3 3 3-3a4.237 4.237 0 0 0-6 0m-4-4 2 2a7.074 7.074 0 0 1 10 0l2-2C15.14 9.14 8.87 9.14 5 13" }), kH = d("WifiIcon", Bm), qm = /* @__PURE__ */ n("path", { d: "m15.904 13.05-2.121 2.122 5.996 5.996 2.121-2.121zM17.5 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41C15.57 3 14 4.57 14 6.5c0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78.71-.71-1.41-1.41L12 3.49a3 3 0 0 0-4.24 0L4.22 7.03l1.41 1.41H2.81l-.71.71 3.54 3.54.71-.71V9.15l1.41 1.41.71-.71 1.78 1.78-7.41 7.41 2.12 2.12L16.34 9.79c.36.13.75.21 1.16.21" }), bH = d("WrenchHammerIcon", qm), Um = /* @__PURE__ */
|
|
12616
|
+
), gH = d("Watch2Icon", Zm), Fm = /* @__PURE__ */ n("path", { d: "M7.84 1.804A1 1 0 0 1 8.82 1h6.36a1 1 0 0 1 .98.804l.782 3.904A8 8 0 0 1 19.748 10H20a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-.252a8 8 0 0 1-2.806 4.292l-.781 3.904a1 1 0 0 1-.98.804H8.82a1 1 0 0 1-.98-.804l-.782-3.904A7.99 7.99 0 0 1 4 12a7.99 7.99 0 0 1 3.058-6.292zM11.994 18h.01a6 6 0 1 0-.01 0m1.22-7.5L12 6.5l-1.215 4H7l3.09 2.205L8.915 16.5 12 14.155l3.09 2.345-1.175-3.795L17 10.5z" }), CH = d("WatchStarIcon", Fm), Bm = /* @__PURE__ */ n("path", { d: "m1 9 2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9m8 8 3 3 3-3a4.237 4.237 0 0 0-6 0m-4-4 2 2a7.074 7.074 0 0 1 10 0l2-2C15.14 9.14 8.87 9.14 5 13" }), kH = d("WifiIcon", Bm), qm = /* @__PURE__ */ n("path", { d: "m15.904 13.05-2.121 2.122 5.996 5.996 2.121-2.121zM17.5 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41C15.57 3 14 4.57 14 6.5c0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78.71-.71-1.41-1.41L12 3.49a3 3 0 0 0-4.24 0L4.22 7.03l1.41 1.41H2.81l-.71.71 3.54 3.54.71-.71V9.15l1.41 1.41.71-.71 1.78 1.78-7.41 7.41 2.12 2.12L16.34 9.79c.36.13.75.21 1.16.21" }), bH = d("WrenchHammerIcon", qm), Um = /* @__PURE__ */ j(T, { children: [
|
|
12628
12617
|
/* @__PURE__ */ n("path", { d: "M19 6.41L17.59 5L12 10.59L6.41 5L5 6.41L10.59 12L5 17.59L6.41 19L12 13.41L17.59 19L19 17.59L13.41 12L19 6.41Z" }),
|
|
12629
12618
|
/* @__PURE__ */ n("path", { d: "M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" })
|
|
12630
12619
|
] }), Wm = d("XIcon", Um), Gm = /* @__PURE__ */ n("path", { d: "M13.903 10.655 21.348 2h-1.764l-6.465 7.515L7.955 2H2l7.808 11.364L2 22.439h1.764l6.828-7.935 5.452 7.935H22zm-2.417 2.809-.791-1.132L4.4 3.328h2.71l5.08 7.267.791 1.131 6.604 9.446h-2.71z" }), wH = d("XLogoIcon", Gm), Km = /* @__PURE__ */ n("path", { d: "M11.338 15h-5l7-14v8h5l-7 14z" }), MH = d("ZapIcon", Km), Xm = a.forwardRef(({ className: e, ...t }, o) => /* @__PURE__ */ n(
|
|
@@ -12685,7 +12674,7 @@ const va = a.forwardRef(({ className: e, ...t }, o) => /* @__PURE__ */ n(
|
|
|
12685
12674
|
}
|
|
12686
12675
|
));
|
|
12687
12676
|
va.displayName = Kn.displayName;
|
|
12688
|
-
const eg = a.forwardRef(({ className: e, children: t, ...o }, r) => /* @__PURE__ */
|
|
12677
|
+
const eg = a.forwardRef(({ className: e, children: t, ...o }, r) => /* @__PURE__ */ j(pa, { children: [
|
|
12689
12678
|
/* @__PURE__ */ n(va, {}),
|
|
12690
12679
|
/* @__PURE__ */ n(
|
|
12691
12680
|
Xn,
|
|
@@ -12846,7 +12835,7 @@ const lg = a.forwardRef((e, t) => /* @__PURE__ */ n(
|
|
|
12846
12835
|
}
|
|
12847
12836
|
));
|
|
12848
12837
|
lg.displayName = Os.displayName;
|
|
12849
|
-
const dg = a.forwardRef(({ className: e, inset: t, children: o, ...r }, s) => /* @__PURE__ */
|
|
12838
|
+
const dg = a.forwardRef(({ className: e, inset: t, children: o, ...r }, s) => /* @__PURE__ */ j(
|
|
12850
12839
|
Fs,
|
|
12851
12840
|
{
|
|
12852
12841
|
ref: s,
|
|
@@ -12869,7 +12858,7 @@ const dg = a.forwardRef(({ className: e, inset: t, children: o, ...r }, s) => /*
|
|
|
12869
12858
|
...r,
|
|
12870
12859
|
children: [
|
|
12871
12860
|
o,
|
|
12872
|
-
/* @__PURE__ */
|
|
12861
|
+
/* @__PURE__ */ j(
|
|
12873
12862
|
"span",
|
|
12874
12863
|
{
|
|
12875
12864
|
className: P([
|
|
@@ -12992,7 +12981,7 @@ const pg = c1(
|
|
|
12992
12981
|
}
|
|
12993
12982
|
));
|
|
12994
12983
|
vg.displayName = Ps.displayName;
|
|
12995
|
-
const mg = a.forwardRef(({ className: e, children: t, checked: o, ...r }, s) => /* @__PURE__ */
|
|
12984
|
+
const mg = a.forwardRef(({ className: e, children: t, checked: o, ...r }, s) => /* @__PURE__ */ j(
|
|
12996
12985
|
Ns,
|
|
12997
12986
|
{
|
|
12998
12987
|
ref: s,
|
|
@@ -13016,7 +13005,7 @@ const mg = a.forwardRef(({ className: e, children: t, checked: o, ...r }, s) =>
|
|
|
13016
13005
|
}
|
|
13017
13006
|
));
|
|
13018
13007
|
mg.displayName = Ns.displayName;
|
|
13019
|
-
const gg = a.forwardRef(({ className: e, children: t, ...o }, r) => /* @__PURE__ */
|
|
13008
|
+
const gg = a.forwardRef(({ className: e, children: t, ...o }, r) => /* @__PURE__ */ j(
|
|
13020
13009
|
Ds,
|
|
13021
13010
|
{
|
|
13022
13011
|
ref: r,
|
|
@@ -13085,7 +13074,7 @@ const bg = ({
|
|
|
13085
13074
|
}
|
|
13086
13075
|
);
|
|
13087
13076
|
bg.displayName = "DropdownMenuShortcut";
|
|
13088
|
-
const wg = a.forwardRef(({ className: e, primary: t, secondary: o, ...r }, s) => /* @__PURE__ */
|
|
13077
|
+
const wg = a.forwardRef(({ className: e, primary: t, secondary: o, ...r }, s) => /* @__PURE__ */ j(
|
|
13089
13078
|
"div",
|
|
13090
13079
|
{
|
|
13091
13080
|
ref: s,
|
|
@@ -13112,11 +13101,11 @@ wg.displayName = "DropdownMenuItemText";
|
|
|
13112
13101
|
const Mg = c1([], {
|
|
13113
13102
|
variants: {
|
|
13114
13103
|
size: {
|
|
13115
|
-
"2xs": "ksjsui:size-6",
|
|
13116
|
-
xs: "ksjsui:size-7",
|
|
13117
|
-
sm: "ksjsui:size-8",
|
|
13118
|
-
md: "ksjsui:size-9",
|
|
13119
|
-
lg: "ksjsui:size-10"
|
|
13104
|
+
"2xs": "ksjsui:size-6 ksjsui:min-w-6",
|
|
13105
|
+
xs: "ksjsui:size-7 ksjsui:min-w-7",
|
|
13106
|
+
sm: "ksjsui:size-8 ksjsui:min-w-8",
|
|
13107
|
+
md: "ksjsui:size-9 ksjsui:min-w-9",
|
|
13108
|
+
lg: "ksjsui:size-10 ksjsui:min-w-10"
|
|
13120
13109
|
}
|
|
13121
13110
|
},
|
|
13122
13111
|
defaultVariants: {
|
|
@@ -13128,6 +13117,7 @@ const Mg = c1([], {
|
|
|
13128
13117
|
className: P(Mg({ size: t }), e),
|
|
13129
13118
|
"data-slot": "ksjsui-icon-button",
|
|
13130
13119
|
ref: r,
|
|
13120
|
+
size: t,
|
|
13131
13121
|
...o
|
|
13132
13122
|
}
|
|
13133
13123
|
));
|
|
@@ -13163,8 +13153,8 @@ const Ig = c1(
|
|
|
13163
13153
|
startContent: r,
|
|
13164
13154
|
variant: s,
|
|
13165
13155
|
...c
|
|
13166
|
-
}, i) => /* @__PURE__ */
|
|
13167
|
-
/* @__PURE__ */
|
|
13156
|
+
}, i) => /* @__PURE__ */ j("span", { children: [
|
|
13157
|
+
/* @__PURE__ */ j(
|
|
13168
13158
|
"span",
|
|
13169
13159
|
{
|
|
13170
13160
|
className: P(Ig({ variant: s }), e),
|
|
@@ -13226,14 +13216,14 @@ const Ig = c1(
|
|
|
13226
13216
|
}
|
|
13227
13217
|
));
|
|
13228
13218
|
Hg.displayName = Us.displayName;
|
|
13229
|
-
const
|
|
13219
|
+
const jg = "comfortable", ka = "solid";
|
|
13230
13220
|
function wo() {
|
|
13231
13221
|
const e = a.useContext(ba);
|
|
13232
13222
|
if (e === null)
|
|
13233
13223
|
throw new Error("ListContext is missing");
|
|
13234
13224
|
return e;
|
|
13235
13225
|
}
|
|
13236
|
-
const ba = a.createContext(null),
|
|
13226
|
+
const ba = a.createContext(null), Vg = c1(
|
|
13237
13227
|
["ksjsui:flex ksjsui:w-full ksjsui:flex-col ksjsui:p-1"],
|
|
13238
13228
|
{
|
|
13239
13229
|
variants: {
|
|
@@ -13246,10 +13236,10 @@ const ba = a.createContext(null), Ag = c1(
|
|
|
13246
13236
|
variant: ka
|
|
13247
13237
|
}
|
|
13248
13238
|
}
|
|
13249
|
-
),
|
|
13239
|
+
), Ag = a.forwardRef(
|
|
13250
13240
|
({
|
|
13251
13241
|
className: e,
|
|
13252
|
-
density: t =
|
|
13242
|
+
density: t = jg,
|
|
13253
13243
|
variant: o = ka,
|
|
13254
13244
|
...r
|
|
13255
13245
|
}, s) => {
|
|
@@ -13262,13 +13252,13 @@ const ba = a.createContext(null), Ag = c1(
|
|
|
13262
13252
|
{
|
|
13263
13253
|
ref: s,
|
|
13264
13254
|
"data-slot": "ksjsui-list",
|
|
13265
|
-
className: P(
|
|
13255
|
+
className: P(Vg({ variant: o }), e),
|
|
13266
13256
|
...r
|
|
13267
13257
|
}
|
|
13268
13258
|
) });
|
|
13269
13259
|
}
|
|
13270
13260
|
);
|
|
13271
|
-
|
|
13261
|
+
Ag.displayName = "List";
|
|
13272
13262
|
const wa = a.createContext(null);
|
|
13273
13263
|
function Ma() {
|
|
13274
13264
|
const e = a.useContext(wa);
|
|
@@ -13342,7 +13332,7 @@ const zg = c1(
|
|
|
13342
13332
|
Lg.displayName = "ListItem";
|
|
13343
13333
|
const Rg = ({ className: e, ...t }) => {
|
|
13344
13334
|
const o = "ksjsui:py-1 ksjsui:pointer-events-none ksjsui:hidden ksjsui:shrink-0 ksjsui:text-foreground";
|
|
13345
|
-
return /* @__PURE__ */
|
|
13335
|
+
return /* @__PURE__ */ j(T, { children: [
|
|
13346
13336
|
/* @__PURE__ */ n(
|
|
13347
13337
|
ha,
|
|
13348
13338
|
{
|
|
@@ -13475,7 +13465,7 @@ const Pg = c1([
|
|
|
13475
13465
|
}
|
|
13476
13466
|
), Og = a.forwardRef(({ className: e, primary: t, secondary: o, textOverflow: r, ...s }, c) => {
|
|
13477
13467
|
const { variant: i } = wo();
|
|
13478
|
-
return /* @__PURE__ */
|
|
13468
|
+
return /* @__PURE__ */ j(
|
|
13479
13469
|
"span",
|
|
13480
13470
|
{
|
|
13481
13471
|
ref: c,
|
|
@@ -13585,7 +13575,7 @@ const Bg = c1(
|
|
|
13585
13575
|
...c
|
|
13586
13576
|
}, i) => {
|
|
13587
13577
|
const { color: l, variant: u } = Ia(), h = o ?? l, f = s ?? u;
|
|
13588
|
-
return /* @__PURE__ */
|
|
13578
|
+
return /* @__PURE__ */ j(
|
|
13589
13579
|
X0,
|
|
13590
13580
|
{
|
|
13591
13581
|
ref: i,
|
|
@@ -13688,7 +13678,7 @@ const Kg = a.forwardRef(({ className: e, ...t }, o) => /* @__PURE__ */ n(
|
|
|
13688
13678
|
}
|
|
13689
13679
|
));
|
|
13690
13680
|
Kg.displayName = ec.displayName;
|
|
13691
|
-
const Xg = a.forwardRef(({ className: e, children: t, ...o }, r) => /* @__PURE__ */
|
|
13681
|
+
const Xg = a.forwardRef(({ className: e, children: t, ...o }, r) => /* @__PURE__ */ j(
|
|
13692
13682
|
tc,
|
|
13693
13683
|
{
|
|
13694
13684
|
ref: r,
|
|
@@ -13887,7 +13877,7 @@ function sC() {
|
|
|
13887
13877
|
}
|
|
13888
13878
|
const cC = () => {
|
|
13889
13879
|
const { toasts: e } = sC(), { toast: t } = la();
|
|
13890
|
-
return /* @__PURE__ */
|
|
13880
|
+
return /* @__PURE__ */ j(xa, { children: [
|
|
13891
13881
|
e.map(function({
|
|
13892
13882
|
id: o,
|
|
13893
13883
|
description: r,
|
|
@@ -13896,11 +13886,11 @@ const cC = () => {
|
|
|
13896
13886
|
dismissButtonLabel: i,
|
|
13897
13887
|
...l
|
|
13898
13888
|
}) {
|
|
13899
|
-
return /* @__PURE__ */
|
|
13889
|
+
return /* @__PURE__ */ j(Ha, { ...l, children: [
|
|
13900
13890
|
c && /* @__PURE__ */ n("div", { className: "ksjsui:shrink-0", children: c }),
|
|
13901
|
-
/* @__PURE__ */ n("div", { className: "ksjsui:grid ksjsui:grow ksjsui:gap-1", children: r && /* @__PURE__ */ n(
|
|
13891
|
+
/* @__PURE__ */ n("div", { className: "ksjsui:grid ksjsui:grow ksjsui:gap-1", children: r && /* @__PURE__ */ n(Va, { children: r }) }),
|
|
13902
13892
|
s ?? /* @__PURE__ */ n(
|
|
13903
|
-
|
|
13893
|
+
ja,
|
|
13904
13894
|
{
|
|
13905
13895
|
"aria-label": i || t.dismissButtonLabel
|
|
13906
13896
|
}
|
|
@@ -13977,7 +13967,7 @@ const iC = a.forwardRef(({ className: e, ...t }, o) => /* @__PURE__ */ n(
|
|
|
13977
13967
|
}
|
|
13978
13968
|
));
|
|
13979
13969
|
iC.displayName = xc.displayName;
|
|
13980
|
-
const
|
|
13970
|
+
const ja = a.forwardRef(({ className: e, ...t }, o) => /* @__PURE__ */ n(
|
|
13981
13971
|
Sc,
|
|
13982
13972
|
{
|
|
13983
13973
|
ref: o,
|
|
@@ -14005,8 +13995,8 @@ const Va = a.forwardRef(({ className: e, ...t }, o) => /* @__PURE__ */ n(
|
|
|
14005
13995
|
children: /* @__PURE__ */ n(Wm, {})
|
|
14006
13996
|
}
|
|
14007
13997
|
));
|
|
14008
|
-
|
|
14009
|
-
const
|
|
13998
|
+
ja.displayName = Sc.displayName;
|
|
13999
|
+
const Va = a.forwardRef(({ className: e, ...t }, o) => /* @__PURE__ */ n(
|
|
14010
14000
|
Ic,
|
|
14011
14001
|
{
|
|
14012
14002
|
ref: o,
|
|
@@ -14015,7 +14005,7 @@ const Aa = a.forwardRef(({ className: e, ...t }, o) => /* @__PURE__ */ n(
|
|
|
14015
14005
|
...t
|
|
14016
14006
|
}
|
|
14017
14007
|
));
|
|
14018
|
-
|
|
14008
|
+
Va.displayName = Ic.displayName;
|
|
14019
14009
|
const lC = c1("", {
|
|
14020
14010
|
variants: {
|
|
14021
14011
|
align: {
|
|
@@ -14217,12 +14207,13 @@ function hC({
|
|
|
14217
14207
|
);
|
|
14218
14208
|
}
|
|
14219
14209
|
hC.displayName = Tc.displayName;
|
|
14220
|
-
const fC = a.forwardRef((e, t) => /* @__PURE__ */ n(
|
|
14210
|
+
const fC = a.forwardRef(({ type: e = "button", ...t }, o) => /* @__PURE__ */ n(
|
|
14221
14211
|
Nc,
|
|
14222
14212
|
{
|
|
14223
14213
|
"data-slot": "ksjsui-tooltip-trigger",
|
|
14224
|
-
ref:
|
|
14225
|
-
|
|
14214
|
+
ref: o,
|
|
14215
|
+
type: e,
|
|
14216
|
+
...t
|
|
14226
14217
|
}
|
|
14227
14218
|
));
|
|
14228
14219
|
fC.displayName = Nc.displayName;
|
|
@@ -14230,11 +14221,11 @@ const pC = a.forwardRef(
|
|
|
14230
14221
|
({
|
|
14231
14222
|
children: e,
|
|
14232
14223
|
className: t,
|
|
14233
|
-
collisionPadding: o = { left:
|
|
14224
|
+
collisionPadding: o = { left: 24, right: 24 },
|
|
14234
14225
|
side: r = "top",
|
|
14235
14226
|
sideOffset: s = 0,
|
|
14236
14227
|
...c
|
|
14237
|
-
}, i) => /* @__PURE__ */
|
|
14228
|
+
}, i) => /* @__PURE__ */ j(
|
|
14238
14229
|
Oc,
|
|
14239
14230
|
{
|
|
14240
14231
|
"data-slot": "ksjsui-tooltip-content",
|
|
@@ -14244,7 +14235,7 @@ const pC = a.forwardRef(
|
|
|
14244
14235
|
collisionPadding: o,
|
|
14245
14236
|
className: P(
|
|
14246
14237
|
[
|
|
14247
|
-
"ksjsui:z-50 ksjsui:w-fit ksjsui:max-w-
|
|
14238
|
+
"ksjsui:z-50 ksjsui:w-fit ksjsui:max-w-(--radix-popper-available-width) ksjsui:origin-(--radix-tooltip-content-transform-origin) ksjsui:rounded-md ksjsui:bg-popover-foreground ksjsui:px-3 ksjsui:py-2 ksjsui:text-default ksjsui:text-popover ksjsui:shadow-md ksjsui:will-change-transform",
|
|
14248
14239
|
"ksjsui:sm:max-w-prose",
|
|
14249
14240
|
"ksjsui:motion-safe:animate-in ksjsui:motion-safe:duration-300 ksjsui:motion-safe:fade-in-0",
|
|
14250
14241
|
"ksjsui:motion-safe:data-[state=closed]:animate-out ksjsui:motion-safe:data-[state=closed]:fade-out-0",
|
|
@@ -14260,8 +14251,8 @@ const pC = a.forwardRef(
|
|
|
14260
14251
|
{
|
|
14261
14252
|
"data-slot": "ksjsui-tooltip-arrow",
|
|
14262
14253
|
className: P([
|
|
14263
|
-
"ksjsui:z-50 ksjsui:size-2.5 ksjsui:translate-y-[calc(-50
|
|
14264
|
-
"ksjsui:forced-colors:translate-y-[calc(-50
|
|
14254
|
+
"ksjsui:z-50 ksjsui:size-2.5 ksjsui:translate-y-[calc(-50%-2px)] ksjsui:rotate-45 ksjsui:rounded-br-[2px] ksjsui:bg-popover-foreground ksjsui:fill-popover-foreground ksjsui:motion-safe:duration-300",
|
|
14255
|
+
"ksjsui:forced-colors:translate-y-[calc(-50%+1px)] ksjsui:forced-colors:border-r ksjsui:forced-colors:border-b ksjsui:forced-colors:border-canvas-text ksjsui:forced-colors:bg-canvas ksjsui:forced-colors:fill-canvas ksjsui:forced-colors:shadow-none"
|
|
14265
14256
|
]),
|
|
14266
14257
|
style: { width: 10, height: 10 }
|
|
14267
14258
|
}
|
|
@@ -14311,7 +14302,7 @@ const mC = c1("", {
|
|
|
14311
14302
|
defaultVariants: {
|
|
14312
14303
|
display: "block"
|
|
14313
14304
|
}
|
|
14314
|
-
}),
|
|
14305
|
+
}), Aa = a.forwardRef(
|
|
14315
14306
|
({
|
|
14316
14307
|
as: e = "div",
|
|
14317
14308
|
asChild: t,
|
|
@@ -14358,7 +14349,7 @@ const mC = c1("", {
|
|
|
14358
14349
|
);
|
|
14359
14350
|
}
|
|
14360
14351
|
);
|
|
14361
|
-
|
|
14352
|
+
Aa.displayName = "Box";
|
|
14362
14353
|
const gC = {
|
|
14363
14354
|
align: {
|
|
14364
14355
|
baseline: "ksjsui:items-baseline",
|
|
@@ -14428,7 +14419,7 @@ const gC = {
|
|
|
14428
14419
|
}), kC = a.forwardRef(
|
|
14429
14420
|
({
|
|
14430
14421
|
align: e,
|
|
14431
|
-
as: t =
|
|
14422
|
+
as: t = Aa,
|
|
14432
14423
|
asChild: o,
|
|
14433
14424
|
className: r,
|
|
14434
14425
|
display: s,
|
|
@@ -14452,7 +14443,7 @@ const gC = {
|
|
|
14452
14443
|
position: H,
|
|
14453
14444
|
ps: S,
|
|
14454
14445
|
pt: I,
|
|
14455
|
-
px:
|
|
14446
|
+
px: A,
|
|
14456
14447
|
py: O,
|
|
14457
14448
|
self: F,
|
|
14458
14449
|
shrink: U,
|
|
@@ -14461,9 +14452,9 @@ const gC = {
|
|
|
14461
14452
|
}, W) => {
|
|
14462
14453
|
const z = o ? Ct : t, q = {
|
|
14463
14454
|
...c,
|
|
14464
|
-
...
|
|
14455
|
+
...V8({ gap: l, columnGap: u, rowGap: h }),
|
|
14465
14456
|
...na({ m: v, mb: g, me: k, ms: m, mt: C, mx: b, my: w }),
|
|
14466
|
-
...ra({ p: M, pb: y, pe: x, ps: S, pt: I, px:
|
|
14457
|
+
...ra({ p: M, pb: y, pe: x, ps: S, pt: I, px: A, py: O })
|
|
14467
14458
|
};
|
|
14468
14459
|
return /* @__PURE__ */ n(
|
|
14469
14460
|
z,
|
|
@@ -14491,7 +14482,7 @@ const gC = {
|
|
|
14491
14482
|
}
|
|
14492
14483
|
);
|
|
14493
14484
|
kC.displayName = "Flex";
|
|
14494
|
-
const xH =
|
|
14485
|
+
const xH = Ve;
|
|
14495
14486
|
function SH(e) {
|
|
14496
14487
|
return /* @__PURE__ */ n(Ja, { ...e });
|
|
14497
14488
|
}
|
|
@@ -14530,7 +14521,7 @@ function HH() {
|
|
|
14530
14521
|
onTriggerMouseLeave: h
|
|
14531
14522
|
};
|
|
14532
14523
|
}
|
|
14533
|
-
const
|
|
14524
|
+
const jH = {
|
|
14534
14525
|
/**
|
|
14535
14526
|
* 0.75rem (12px),
|
|
14536
14527
|
* line-height: 1rem (16px)
|
|
@@ -14576,7 +14567,7 @@ const VH = {
|
|
|
14576
14567
|
* line-height: 2.5rem (40px)
|
|
14577
14568
|
*/
|
|
14578
14569
|
"4xl": "4xl"
|
|
14579
|
-
},
|
|
14570
|
+
}, VH = {
|
|
14580
14571
|
/** font-weight: 100 */
|
|
14581
14572
|
thin: "thin",
|
|
14582
14573
|
/** font-weight: 200 */
|
|
@@ -14597,7 +14588,7 @@ const VH = {
|
|
|
14597
14588
|
extrabold: "extrabold",
|
|
14598
14589
|
/** font-weight: 900 */
|
|
14599
14590
|
black: "black"
|
|
14600
|
-
},
|
|
14591
|
+
}, AH = {
|
|
14601
14592
|
/** line-height: 1 (1rem / 16px) */
|
|
14602
14593
|
none: "none",
|
|
14603
14594
|
/** line-height: 1.25 (1.25rem / 20px) */
|
|
@@ -14722,9 +14713,9 @@ const VH = {
|
|
|
14722
14713
|
lg: "lg"
|
|
14723
14714
|
};
|
|
14724
14715
|
export {
|
|
14725
|
-
|
|
14726
|
-
|
|
14727
|
-
|
|
14716
|
+
jC as AIcon,
|
|
14717
|
+
VC as AZArrowsIcon,
|
|
14718
|
+
AC as AZMinusIcon,
|
|
14728
14719
|
zC as AccessibilityIcon,
|
|
14729
14720
|
LC as AlignJustifyIcon,
|
|
14730
14721
|
RC as AmazonLogoIcon,
|
|
@@ -14779,16 +14770,16 @@ export {
|
|
|
14779
14770
|
bk as BookOpenPageIcon,
|
|
14780
14771
|
wk as BookOpenPageOutlineIcon,
|
|
14781
14772
|
Mk as BookOpenUpIcon,
|
|
14782
|
-
|
|
14773
|
+
Aa as Box,
|
|
14783
14774
|
yk as BracesIcon,
|
|
14784
14775
|
Ik as BreachwatchOffIcon,
|
|
14785
14776
|
Sk as BriefcaseBusinessIcon,
|
|
14786
14777
|
Hk as BriefcaseBusinessShieldIcon,
|
|
14787
14778
|
xk as BriefcaseIcon,
|
|
14788
|
-
|
|
14789
|
-
|
|
14779
|
+
jk as BugIcon,
|
|
14780
|
+
Ak as Building2Icon,
|
|
14790
14781
|
zk as BuildingCogIcon,
|
|
14791
|
-
|
|
14782
|
+
Vk as BuildingIcon,
|
|
14792
14783
|
Lk as BuildingPlusIcon,
|
|
14793
14784
|
Rk as BullhornIcon,
|
|
14794
14785
|
ua as Button,
|
|
@@ -14844,9 +14835,9 @@ export {
|
|
|
14844
14835
|
Sb as ClipboardAlertIcon,
|
|
14845
14836
|
Hb as ClipboardChartIcon,
|
|
14846
14837
|
Mb as ClipboardIcon,
|
|
14847
|
-
|
|
14848
|
-
|
|
14849
|
-
|
|
14838
|
+
jb as ClipboardTextIcon,
|
|
14839
|
+
Vb as ClipboardXIcon,
|
|
14840
|
+
Ab as ClockIcon,
|
|
14850
14841
|
Lb as CloudCogIcon,
|
|
14851
14842
|
Rb as CloudDownloadIcon,
|
|
14852
14843
|
Eb as CloudGovernmentIcon,
|
|
@@ -14925,9 +14916,9 @@ export {
|
|
|
14925
14916
|
bw as FileIcon,
|
|
14926
14917
|
Sw as FileImageIcon,
|
|
14927
14918
|
Hw as FileLockIcon,
|
|
14928
|
-
|
|
14929
|
-
|
|
14930
|
-
|
|
14919
|
+
jw as FilePdfIcon,
|
|
14920
|
+
Vw as FilePptIcon,
|
|
14921
|
+
Aw as FileQuestionMarkIcon,
|
|
14931
14922
|
zw as FileSearchIcon,
|
|
14932
14923
|
Lw as FileSearchOutlineIcon,
|
|
14933
14924
|
Rw as FileSvgIcon,
|
|
@@ -14980,9 +14971,9 @@ export {
|
|
|
14980
14971
|
xM as HexagonsIcon,
|
|
14981
14972
|
SM as HexagonsOutlineIcon,
|
|
14982
14973
|
HM as HospitalIcon,
|
|
14983
|
-
|
|
14984
|
-
|
|
14985
|
-
|
|
14974
|
+
jM as HourglassIcon,
|
|
14975
|
+
VM as HourglassSandIcon,
|
|
14976
|
+
AM as HouseIcon,
|
|
14986
14977
|
yg as IconButton,
|
|
14987
14978
|
LM as IdCard2Icon,
|
|
14988
14979
|
RM as IdCard3Icon,
|
|
@@ -15016,7 +15007,7 @@ export {
|
|
|
15016
15007
|
ry as LightbulbOutlineIcon,
|
|
15017
15008
|
cy as Link2Icon,
|
|
15018
15009
|
sy as LinkIcon,
|
|
15019
|
-
|
|
15010
|
+
Ag as List,
|
|
15020
15011
|
iy as ListCheckIcon,
|
|
15021
15012
|
ly as ListFilterIcon,
|
|
15022
15013
|
ay as ListIcon,
|
|
@@ -15046,10 +15037,10 @@ export {
|
|
|
15046
15037
|
xy as MegaphoneIcon,
|
|
15047
15038
|
Sy as MembershipCardIcon,
|
|
15048
15039
|
Hy as MenuIcon,
|
|
15049
|
-
|
|
15050
|
-
|
|
15040
|
+
jy as MessageSquareIcon,
|
|
15041
|
+
Vy as MessageSquareInfoIcon,
|
|
15051
15042
|
zy as MessageSquareMore2Icon,
|
|
15052
|
-
|
|
15043
|
+
Ay as MessageSquareMoreIcon,
|
|
15053
15044
|
Ly as MessageSquarePenLineIcon,
|
|
15054
15045
|
Ey as MessageSquareText2Icon,
|
|
15055
15046
|
Ry as MessageSquareTextIcon,
|
|
@@ -15104,10 +15095,10 @@ export {
|
|
|
15104
15095
|
xI as PrinterIcon,
|
|
15105
15096
|
SI as PuzzleIcon,
|
|
15106
15097
|
HI as QrCodeIcon,
|
|
15107
|
-
|
|
15108
|
-
|
|
15098
|
+
jI as RadioIcon,
|
|
15099
|
+
VI as RadioInputIcon,
|
|
15109
15100
|
ep as RadioInputSelectedIcon,
|
|
15110
|
-
|
|
15101
|
+
AI as RadioSignalIcon,
|
|
15111
15102
|
zI as RectangleArrowRightIcon,
|
|
15112
15103
|
LI as RectangleArrowUpIcon,
|
|
15113
15104
|
RI as RectangleCheckIcon,
|
|
@@ -15170,9 +15161,9 @@ export {
|
|
|
15170
15161
|
xx as ShieldSecurityIcon,
|
|
15171
15162
|
Sx as ShieldSunIcon,
|
|
15172
15163
|
Hx as ShieldUserIcon,
|
|
15173
|
-
|
|
15174
|
-
|
|
15175
|
-
|
|
15164
|
+
jx as ShoppingCartIcon,
|
|
15165
|
+
Vx as SiteBlogIcon,
|
|
15166
|
+
Ax as SkipForwardIcon,
|
|
15176
15167
|
zx as SlidersHorizontalIcon,
|
|
15177
15168
|
Lx as SlidersVerticalIcon,
|
|
15178
15169
|
Rx as SmartphoneIcon,
|
|
@@ -15231,10 +15222,10 @@ export {
|
|
|
15231
15222
|
pC as TooltipContent,
|
|
15232
15223
|
hC as TooltipProvider,
|
|
15233
15224
|
fC as TooltipTrigger,
|
|
15234
|
-
|
|
15235
|
-
|
|
15225
|
+
jS as Trash2Icon,
|
|
15226
|
+
VS as Trash3Icon,
|
|
15236
15227
|
HS as TrashIcon,
|
|
15237
|
-
|
|
15228
|
+
AS as TrashWideNarrowIcon,
|
|
15238
15229
|
zS as TriangleAlertIcon,
|
|
15239
15230
|
LS as TriangleArrowsUpDownIcon,
|
|
15240
15231
|
RS as TriangleNetworkIcon,
|
|
@@ -15289,10 +15280,10 @@ export {
|
|
|
15289
15280
|
RH as colorSurfaceToken,
|
|
15290
15281
|
EH as colorTextToken,
|
|
15291
15282
|
HC as configureStrings,
|
|
15292
|
-
|
|
15293
|
-
|
|
15283
|
+
jH as fontSizeToken,
|
|
15284
|
+
VH as fontWeightToken,
|
|
15294
15285
|
zH as letterSpacingToken,
|
|
15295
|
-
|
|
15286
|
+
AH as lineHeightToken,
|
|
15296
15287
|
xH as useDirection,
|
|
15297
15288
|
sC as useToast,
|
|
15298
15289
|
HH as useTooltipPopover
|