@club-employes/utopia 4.127.0 → 4.129.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/dist/Tabs.vue_vue_type_style_index_0_lang-CmN_lWQa.js +2339 -0
- package/dist/components/molecules/Modal/Modal.d.ts +4 -2
- package/dist/components/organisms/Table/Table.d.ts +1 -1
- package/dist/components/organisms/index.d.ts +7 -10
- package/dist/editor.d.ts +4 -0
- package/dist/editor.js +2632 -0
- package/dist/icons-list.json +1 -1
- package/dist/index.d.ts +23 -24
- package/dist/index.js +15329 -15706
- package/dist/utopia.css +1 -1
- package/package.json +8 -2
|
@@ -0,0 +1,2339 @@
|
|
|
1
|
+
import { computed as F, ref as $, watch as vs, defineComponent as ds, openBlock as u, createElementBlock as y, normalizeStyle as Os, normalizeClass as V, useSlots as re, Fragment as ns, createBlock as O, createCommentVNode as _, renderSlot as us, createElementVNode as D, createVNode as K, toDisplayString as H, unref as z, withDirectives as ke, vModelDynamic as Ce, createTextVNode as Ls, nextTick as ks, onMounted as ie, onUnmounted as ae, renderList as Fs, withCtx as ws, withModifiers as bs, Teleport as ce, Transition as Gs, resolveDynamicComponent as Se, mergeProps as _e } from "vue";
|
|
2
|
+
import { unrefElement as Ae, tryOnScopeDispose as Fe, useMediaQuery as xe, useScrollLock as Te, useEventListener as Be } from "@vueuse/core";
|
|
3
|
+
const Pe = (o, e, s) => {
|
|
4
|
+
const t = o[e];
|
|
5
|
+
return t ? typeof t == "function" ? t() : Promise.resolve(t) : new Promise((c, i) => {
|
|
6
|
+
(typeof queueMicrotask == "function" ? queueMicrotask : setTimeout)(i.bind(null, /* @__PURE__ */ new Error("Unknown variable dynamic import: " + e + (e.split("/").length !== s ? ". Note that variables only represent file names one level deep." : ""))));
|
|
7
|
+
});
|
|
8
|
+
}, hs = (o, e) => {
|
|
9
|
+
const s = o.__vccOpts || o;
|
|
10
|
+
for (const [t, c] of e)
|
|
11
|
+
s[t] = c;
|
|
12
|
+
return s;
|
|
13
|
+
}, Me = {
|
|
14
|
+
name: "club-employes-light",
|
|
15
|
+
mode: "light"
|
|
16
|
+
}, Le = {
|
|
17
|
+
name: "club-employes-dark",
|
|
18
|
+
mode: "dark"
|
|
19
|
+
}, Ee = {
|
|
20
|
+
name: "gifteo-light",
|
|
21
|
+
mode: "light"
|
|
22
|
+
}, De = {
|
|
23
|
+
name: "gifteo-dark",
|
|
24
|
+
mode: "dark"
|
|
25
|
+
}, Cs = {
|
|
26
|
+
BRAND: "utopia-theme-brand",
|
|
27
|
+
MODE: "utopia-theme-mode",
|
|
28
|
+
MENU_COLLAPSED: "utopia-menu-collapsed"
|
|
29
|
+
}, Re = () => {
|
|
30
|
+
if (typeof window > "u") return "club-employes";
|
|
31
|
+
const o = localStorage.getItem(Cs.BRAND);
|
|
32
|
+
return o === "club-employes" || o === "gifteo" ? o : "club-employes";
|
|
33
|
+
}, Ie = () => {
|
|
34
|
+
if (typeof window > "u") return "light";
|
|
35
|
+
const o = localStorage.getItem(Cs.MODE);
|
|
36
|
+
return o === "light" || o === "dark" ? o : "light";
|
|
37
|
+
}, Ne = (o) => {
|
|
38
|
+
typeof window < "u" && localStorage.setItem(Cs.BRAND, o);
|
|
39
|
+
}, $e = (o) => {
|
|
40
|
+
typeof window < "u" && localStorage.setItem(Cs.MODE, o);
|
|
41
|
+
}, ze = () => typeof window > "u" ? !1 : localStorage.getItem(Cs.MENU_COLLAPSED) === "true", Ve = (o) => {
|
|
42
|
+
typeof window < "u" && localStorage.setItem(Cs.MENU_COLLAPSED, o.toString());
|
|
43
|
+
};
|
|
44
|
+
let xs, Es, Ds, Rs;
|
|
45
|
+
function Oe() {
|
|
46
|
+
if (typeof window < "u") {
|
|
47
|
+
const e = document.querySelector("style[data-theme-preloaded]")?.getAttribute("data-theme-preloaded");
|
|
48
|
+
if (e) {
|
|
49
|
+
const s = e.lastIndexOf("-"), t = e.substring(0, s), c = e.substring(s + 1);
|
|
50
|
+
return console.log("🎨 useTheme: Using preloaded theme:", { brand: t, mode: c }), console.log("🔒 Brand is locked (initialized via initializeTheme)"), { brand: t, mode: c, isLocked: !0 };
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
brand: Re(),
|
|
55
|
+
mode: Ie(),
|
|
56
|
+
isLocked: !1
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
function qe() {
|
|
60
|
+
if (xs !== void 0) return;
|
|
61
|
+
const o = Oe();
|
|
62
|
+
xs = $(o.brand), Es = $(o.mode), Ds = $(ze()), Rs = $(o.isLocked);
|
|
63
|
+
const e = xs, s = Es, t = Ds, c = Rs;
|
|
64
|
+
typeof window < "u" && window.addEventListener("utopia:brand-unlocked", () => {
|
|
65
|
+
c.value = !1, console.log("🎨 useTheme: Brand unlocked");
|
|
66
|
+
}), vs(() => e.value, (i) => {
|
|
67
|
+
!c.value && i && Ne(i);
|
|
68
|
+
}, { immediate: !1 }), vs(() => s.value, (i) => {
|
|
69
|
+
i && $e(i);
|
|
70
|
+
}, { immediate: !1 }), vs(() => t.value, (i) => {
|
|
71
|
+
i !== void 0 && Ve(i);
|
|
72
|
+
}, { immediate: !1 });
|
|
73
|
+
}
|
|
74
|
+
function Ge() {
|
|
75
|
+
if (xs === void 0 || Es === void 0 || Ds === void 0 || Rs === void 0)
|
|
76
|
+
throw new Error("useTheme: Global state not initialized. This should never happen.");
|
|
77
|
+
}
|
|
78
|
+
const Ps = {
|
|
79
|
+
"club-employes": {
|
|
80
|
+
light: Me,
|
|
81
|
+
dark: Le,
|
|
82
|
+
name: "Club Employés"
|
|
83
|
+
},
|
|
84
|
+
gifteo: {
|
|
85
|
+
light: Ee,
|
|
86
|
+
dark: De,
|
|
87
|
+
name: "Gifteo"
|
|
88
|
+
}
|
|
89
|
+
};
|
|
90
|
+
function Ws() {
|
|
91
|
+
qe(), Ge();
|
|
92
|
+
const o = xs, e = Es, s = Ds, t = Rs, c = F(() => Ps[o.value][e.value]), i = F(() => Ps[o.value].name), r = () => {
|
|
93
|
+
if (t.value) {
|
|
94
|
+
console.warn("⚠️ Brand is locked and cannot be changed. Brand is determined by the domain.");
|
|
95
|
+
return;
|
|
96
|
+
}
|
|
97
|
+
o.value = o.value === "club-employes" ? "gifteo" : "club-employes";
|
|
98
|
+
}, l = () => {
|
|
99
|
+
e.value = e.value === "light" ? "dark" : "light";
|
|
100
|
+
}, g = (T) => {
|
|
101
|
+
if (t.value) {
|
|
102
|
+
console.warn("⚠️ Brand is locked and cannot be changed. Brand is determined by the domain.");
|
|
103
|
+
return;
|
|
104
|
+
}
|
|
105
|
+
o.value = T;
|
|
106
|
+
}, v = (T) => {
|
|
107
|
+
e.value = T;
|
|
108
|
+
}, h = () => {
|
|
109
|
+
s.value = !s.value;
|
|
110
|
+
}, m = (T) => {
|
|
111
|
+
s.value = T;
|
|
112
|
+
}, C = F(() => Object.keys(Ps).map((T) => ({
|
|
113
|
+
key: T,
|
|
114
|
+
name: Ps[T].name
|
|
115
|
+
})));
|
|
116
|
+
return {
|
|
117
|
+
// State
|
|
118
|
+
currentTheme: c,
|
|
119
|
+
currentBrand: F(() => o.value),
|
|
120
|
+
currentMode: F(() => e.value),
|
|
121
|
+
currentBrandName: i,
|
|
122
|
+
availableBrands: C,
|
|
123
|
+
menuCollapsed: F(() => s.value),
|
|
124
|
+
isBrandLocked: F(() => t.value),
|
|
125
|
+
// Actions
|
|
126
|
+
toggleBrand: r,
|
|
127
|
+
toggleMode: l,
|
|
128
|
+
setBrand: g,
|
|
129
|
+
setMode: v,
|
|
130
|
+
toggleMenuCollapsed: h,
|
|
131
|
+
setMenuCollapsed: m
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
const Ue = ["aria-label", "innerHTML"], He = /* @__PURE__ */ ds({
|
|
135
|
+
__name: "Icon",
|
|
136
|
+
props: {
|
|
137
|
+
name: {},
|
|
138
|
+
size: { default: "medium" },
|
|
139
|
+
color: { default: "current" },
|
|
140
|
+
strokeWidth: {},
|
|
141
|
+
alt: {},
|
|
142
|
+
class: {}
|
|
143
|
+
},
|
|
144
|
+
setup(o) {
|
|
145
|
+
const e = o, s = $(""), t = F(() => [
|
|
146
|
+
"icon",
|
|
147
|
+
`icon--${{
|
|
148
|
+
"extra-small": "xs",
|
|
149
|
+
small: "sm",
|
|
150
|
+
medium: "md",
|
|
151
|
+
large: "lg"
|
|
152
|
+
}[e.size]}`,
|
|
153
|
+
e.class
|
|
154
|
+
].filter(Boolean)), c = F(() => e.color ? {
|
|
155
|
+
color: `var(${`--theme-colors-${e.color}`})`,
|
|
156
|
+
"--stroke-width": e.strokeWidth ? String(e.strokeWidth) : "1"
|
|
157
|
+
} : {}), i = async (l) => {
|
|
158
|
+
try {
|
|
159
|
+
const g = await Pe(/* @__PURE__ */ Object.assign({ "../../../assets/icons-processed/Accessibility.svg": () => import("./Accessibility-BGqUpPxe.js"), "../../../assets/icons-processed/Activity-square.svg": () => import("./Activity-square-CPJIZjGU.js"), "../../../assets/icons-processed/Activity.svg": () => import("./Activity-CNIJUPN3.js"), "../../../assets/icons-processed/Air-vent.svg": () => import("./Air-vent-sj0Fj2PB.js"), "../../../assets/icons-processed/Airplay.svg": () => import("./Airplay-BTYRBwSV.js"), "../../../assets/icons-processed/Alarm-check.svg": () => import("./Alarm-check-Cq2jACTR.js"), "../../../assets/icons-processed/Alarm-clock-off.svg": () => import("./Alarm-clock-off-C9Zqd_xS.js"), "../../../assets/icons-processed/Alarm-clock.svg": () => import("./Alarm-clock-C3yYqn50.js"), "../../../assets/icons-processed/Alarm-minus.svg": () => import("./Alarm-minus-DU_L42eu.js"), "../../../assets/icons-processed/Alarm-plus.svg": () => import("./Alarm-plus-BMvmYkAz.js"), "../../../assets/icons-processed/Album.svg": () => import("./Album-DCbBPl3x.js"), "../../../assets/icons-processed/Alert-circle.svg": () => import("./Alert-circle-D3Um4lx5.js"), "../../../assets/icons-processed/Alert-octagon.svg": () => import("./Alert-octagon--RWuJRDa.js"), "../../../assets/icons-processed/Alert-triangle.svg": () => import("./Alert-triangle-CWjwCn5O.js"), "../../../assets/icons-processed/Align-center-horizontal.svg": () => import("./Align-center-horizontal-jo1KZyLz.js"), "../../../assets/icons-processed/Align-center-vertical.svg": () => import("./Align-center-vertical--dDoDt-9.js"), "../../../assets/icons-processed/Align-center.svg": () => import("./Align-center-DlGZhaGo.js"), "../../../assets/icons-processed/Align-end-horizontal.svg": () => import("./Align-end-horizontal-B_SApHqR.js"), "../../../assets/icons-processed/Align-end-vertical.svg": () => import("./Align-end-vertical-BJf8PWRT.js"), "../../../assets/icons-processed/Align-horizontal-distribute-center.svg": () => import("./Align-horizontal-distribute-center-CUVupzyR.js"), "../../../assets/icons-processed/Align-horizontal-distribute-end.svg": () => import("./Align-horizontal-distribute-end-CWD8BMvx.js"), "../../../assets/icons-processed/Align-horizontal-distribute-start.svg": () => import("./Align-horizontal-distribute-start-KFRp1IBs.js"), "../../../assets/icons-processed/Align-horizontal-justify-center.svg": () => import("./Align-horizontal-justify-center-CgOnqJ3O.js"), "../../../assets/icons-processed/Align-horizontal-justify-end.svg": () => import("./Align-horizontal-justify-end-CZAonK8S.js"), "../../../assets/icons-processed/Align-horizontal-justify-start.svg": () => import("./Align-horizontal-justify-start-BdNAsYVp.js"), "../../../assets/icons-processed/Align-horizontal-space-around.svg": () => import("./Align-horizontal-space-around-t9CXG5Zk.js"), "../../../assets/icons-processed/Align-horizontal-space-between.svg": () => import("./Align-horizontal-space-between-DKN7lG8s.js"), "../../../assets/icons-processed/Align-justify.svg": () => import("./Align-justify-BfP_o9_a.js"), "../../../assets/icons-processed/Align-left.svg": () => import("./Align-left-B9AtZUsI.js"), "../../../assets/icons-processed/Align-right.svg": () => import("./Align-right-Cz_xPQL2.js"), "../../../assets/icons-processed/Align-start-horizontal.svg": () => import("./Align-start-horizontal-CaTWPyhh.js"), "../../../assets/icons-processed/Align-start-vertical.svg": () => import("./Align-start-vertical-DV9kqkqY.js"), "../../../assets/icons-processed/Align-vertical-distribute-center.svg": () => import("./Align-vertical-distribute-center-DCxLc8-e.js"), "../../../assets/icons-processed/Align-vertical-distribute-end.svg": () => import("./Align-vertical-distribute-end-B11ehwmh.js"), "../../../assets/icons-processed/Align-vertical-distribute-start.svg": () => import("./Align-vertical-distribute-start-KcFZY7UJ.js"), "../../../assets/icons-processed/Align-vertical-justify-center.svg": () => import("./Align-vertical-justify-center-CFm41wnv.js"), "../../../assets/icons-processed/Align-vertical-justify-end.svg": () => import("./Align-vertical-justify-end-rihUS0wt.js"), "../../../assets/icons-processed/Align-vertical-justify-start.svg": () => import("./Align-vertical-justify-start-BeqXnc97.js"), "../../../assets/icons-processed/Align-vertical-space-around.svg": () => import("./Align-vertical-space-around-VtdyhK6H.js"), "../../../assets/icons-processed/Align-vertical-space-between.svg": () => import("./Align-vertical-space-between-JZ1OBt-_.js"), "../../../assets/icons-processed/Ampersand.svg": () => import("./Ampersand-DHRa6zIu.js"), "../../../assets/icons-processed/Ampersands.svg": () => import("./Ampersands-Ch3edUw0.js"), "../../../assets/icons-processed/Anchor.svg": () => import("./Anchor-DJ2LNY8J.js"), "../../../assets/icons-processed/Angry.svg": () => import("./Angry-D7WdS8mp.js"), "../../../assets/icons-processed/Annoyed.svg": () => import("./Annoyed-LmLomRNe.js"), "../../../assets/icons-processed/Antenna.svg": () => import("./Antenna-CIi3jjYh.js"), "../../../assets/icons-processed/Aperture.svg": () => import("./Aperture-CFZ-ZdQx.js"), "../../../assets/icons-processed/App-window.svg": () => import("./App-window-C-ar3lDj.js"), "../../../assets/icons-processed/Apple.svg": () => import("./Apple-CBlgWM7q.js"), "../../../assets/icons-processed/Archive-restore.svg": () => import("./Archive-restore-DobsaFAK.js"), "../../../assets/icons-processed/Archive-x.svg": () => import("./Archive-x-LV3fh4Zv.js"), "../../../assets/icons-processed/Archive.svg": () => import("./Archive-BKqAWG5Z.js"), "../../../assets/icons-processed/Area-chart.svg": () => import("./Area-chart-B1JKpFil.js"), "../../../assets/icons-processed/Armchair.svg": () => import("./Armchair-aHILrJmE.js"), "../../../assets/icons-processed/Arrow-big-down-dash.svg": () => import("./Arrow-big-down-dash-CHEWu_7u.js"), "../../../assets/icons-processed/Arrow-big-down.svg": () => import("./Arrow-big-down-sg1z8D7a.js"), "../../../assets/icons-processed/Arrow-big-left-dash.svg": () => import("./Arrow-big-left-dash-CjOiWNMa.js"), "../../../assets/icons-processed/Arrow-big-left.svg": () => import("./Arrow-big-left-DAfnc-Rk.js"), "../../../assets/icons-processed/Arrow-big-right-dash.svg": () => import("./Arrow-big-right-dash-nJbCDu2s.js"), "../../../assets/icons-processed/Arrow-big-right.svg": () => import("./Arrow-big-right-JVLvBftx.js"), "../../../assets/icons-processed/Arrow-big-up-dash.svg": () => import("./Arrow-big-up-dash-CJrmv_Xj.js"), "../../../assets/icons-processed/Arrow-big-up.svg": () => import("./Arrow-big-up-Dk7E54QT.js"), "../../../assets/icons-processed/Arrow-down-0-1.svg": () => import("./Arrow-down-0-1-DYhvP_Gz.js"), "../../../assets/icons-processed/Arrow-down-1-0.svg": () => import("./Arrow-down-1-0-BkBULncb.js"), "../../../assets/icons-processed/Arrow-down-a-z.svg": () => import("./Arrow-down-a-z-DCwxRjS4.js"), "../../../assets/icons-processed/Arrow-down-circle.svg": () => import("./Arrow-down-circle-aXnT4nAA.js"), "../../../assets/icons-processed/Arrow-down-from-line.svg": () => import("./Arrow-down-from-line-B1ndK7o_.js"), "../../../assets/icons-processed/Arrow-down-left-from-circle.svg": () => import("./Arrow-down-left-from-circle-D-DUR3Tm.js"), "../../../assets/icons-processed/Arrow-down-left-square.svg": () => import("./Arrow-down-left-square-ClEB9GsA.js"), "../../../assets/icons-processed/Arrow-down-left.svg": () => import("./Arrow-down-left-DRbJScTk.js"), "../../../assets/icons-processed/Arrow-down-narrow-wide.svg": () => import("./Arrow-down-narrow-wide-C6Z0SWHY.js"), "../../../assets/icons-processed/Arrow-down-right-from-circle.svg": () => import("./Arrow-down-right-from-circle-DpKtdG3r.js"), "../../../assets/icons-processed/Arrow-down-right-square.svg": () => import("./Arrow-down-right-square-JEmtiQGh.js"), "../../../assets/icons-processed/Arrow-down-right.svg": () => import("./Arrow-down-right-XIvYV8qx.js"), "../../../assets/icons-processed/Arrow-down-square.svg": () => import("./Arrow-down-square-DyKyrMNr.js"), "../../../assets/icons-processed/Arrow-down-to-dot.svg": () => import("./Arrow-down-to-dot-ZTKMsNwh.js"), "../../../assets/icons-processed/Arrow-down-to-line.svg": () => import("./Arrow-down-to-line-Cs1Xt8qv.js"), "../../../assets/icons-processed/Arrow-down-up.svg": () => import("./Arrow-down-up-BmVNgRrt.js"), "../../../assets/icons-processed/Arrow-down-wide-narrow.svg": () => import("./Arrow-down-wide-narrow-DyN7y_Fu.js"), "../../../assets/icons-processed/Arrow-down-z-a.svg": () => import("./Arrow-down-z-a-7Hy4bNdl.js"), "../../../assets/icons-processed/Arrow-down.svg": () => import("./Arrow-down-CHOmaL9f.js"), "../../../assets/icons-processed/Arrow-left-circle.svg": () => import("./Arrow-left-circle-Bw06uNKw.js"), "../../../assets/icons-processed/Arrow-left-from-line.svg": () => import("./Arrow-left-from-line-Dptt2lja.js"), "../../../assets/icons-processed/Arrow-left-right.svg": () => import("./Arrow-left-right-DjyJbEeH.js"), "../../../assets/icons-processed/Arrow-left-square.svg": () => import("./Arrow-left-square-FxDnnSVG.js"), "../../../assets/icons-processed/Arrow-left-to-line.svg": () => import("./Arrow-left-to-line-C3v1Hu5d.js"), "../../../assets/icons-processed/Arrow-left.svg": () => import("./Arrow-left-DyyJ7OPr.js"), "../../../assets/icons-processed/Arrow-right-circle.svg": () => import("./Arrow-right-circle-D6o33lBw.js"), "../../../assets/icons-processed/Arrow-right-from-line.svg": () => import("./Arrow-right-from-line-C7XsFpfM.js"), "../../../assets/icons-processed/Arrow-right-left.svg": () => import("./Arrow-right-left-BqC9V3Zb.js"), "../../../assets/icons-processed/Arrow-right-square.svg": () => import("./Arrow-right-square-Don7U2Qb.js"), "../../../assets/icons-processed/Arrow-right-to-line.svg": () => import("./Arrow-right-to-line-CpGKnHwP.js"), "../../../assets/icons-processed/Arrow-right.svg": () => import("./Arrow-right-BAiUQWwJ.js"), "../../../assets/icons-processed/Arrow-up-0-1.svg": () => import("./Arrow-up-0-1-CudgVxD0.js"), "../../../assets/icons-processed/Arrow-up-1-0.svg": () => import("./Arrow-up-1-0-BGQ7cplZ.js"), "../../../assets/icons-processed/Arrow-up-a-z.svg": () => import("./Arrow-up-a-z-D_dfsvyW.js"), "../../../assets/icons-processed/Arrow-up-circle.svg": () => import("./Arrow-up-circle-B76blCR7.js"), "../../../assets/icons-processed/Arrow-up-down.svg": () => import("./Arrow-up-down-C0jzUAnE.js"), "../../../assets/icons-processed/Arrow-up-from-dot.svg": () => import("./Arrow-up-from-dot-BIFOqvrD.js"), "../../../assets/icons-processed/Arrow-up-from-line.svg": () => import("./Arrow-up-from-line-CBtMvUuT.js"), "../../../assets/icons-processed/Arrow-up-left-from-circle.svg": () => import("./Arrow-up-left-from-circle-k98pFstw.js"), "../../../assets/icons-processed/Arrow-up-left-square.svg": () => import("./Arrow-up-left-square-DP1UziF2.js"), "../../../assets/icons-processed/Arrow-up-left.svg": () => import("./Arrow-up-left-vHdurT9Q.js"), "../../../assets/icons-processed/Arrow-up-narrow-wide.svg": () => import("./Arrow-up-narrow-wide-Di7ik3E0.js"), "../../../assets/icons-processed/Arrow-up-right-from-circle.svg": () => import("./Arrow-up-right-from-circle-BuhJ6p-h.js"), "../../../assets/icons-processed/Arrow-up-right-square.svg": () => import("./Arrow-up-right-square-voQQrqFx.js"), "../../../assets/icons-processed/Arrow-up-right.svg": () => import("./Arrow-up-right-pL541cKQ.js"), "../../../assets/icons-processed/Arrow-up-square.svg": () => import("./Arrow-up-square-9-GPV2o-.js"), "../../../assets/icons-processed/Arrow-up-to-line.svg": () => import("./Arrow-up-to-line-BRlyaESk.js"), "../../../assets/icons-processed/Arrow-up-wide-narrow.svg": () => import("./Arrow-up-wide-narrow-Cpl2M2nB.js"), "../../../assets/icons-processed/Arrow-up-z-a.svg": () => import("./Arrow-up-z-a-DqiaZvBF.js"), "../../../assets/icons-processed/Arrow-up.svg": () => import("./Arrow-up-CUC0LacC.js"), "../../../assets/icons-processed/Arrows-up-from-line.svg": () => import("./Arrows-up-from-line-DBp0ipBn.js"), "../../../assets/icons-processed/Asterisk.svg": () => import("./Asterisk-Dl1zqYkR.js"), "../../../assets/icons-processed/At-sign.svg": () => import("./At-sign-DL3dUSZG.js"), "../../../assets/icons-processed/Atom.svg": () => import("./Atom-d1x5U4gN.js"), "../../../assets/icons-processed/Award.svg": () => import("./Award-LFI31prM.js"), "../../../assets/icons-processed/Axe.svg": () => import("./Axe-BnR23ATD.js"), "../../../assets/icons-processed/Axis-3d.svg": () => import("./Axis-3d-2D_hgbvE.js"), "../../../assets/icons-processed/Baby.svg": () => import("./Baby-Bx6oXx-Z.js"), "../../../assets/icons-processed/Backpack.svg": () => import("./Backpack-Df5urZA0.js"), "../../../assets/icons-processed/Badge-alert.svg": () => import("./Badge-alert-DZoAjWS6.js"), "../../../assets/icons-processed/Badge-check.svg": () => import("./Badge-check-33gWRT16.js"), "../../../assets/icons-processed/Badge-dollar-sign.svg": () => import("./Badge-dollar-sign-m4dL7vS-.js"), "../../../assets/icons-processed/Badge-help.svg": () => import("./Badge-help-C8Tg9bYu.js"), "../../../assets/icons-processed/Badge-info.svg": () => import("./Badge-info-UIN6Dloq.js"), "../../../assets/icons-processed/Badge-minus.svg": () => import("./Badge-minus-B6SqgPDU.js"), "../../../assets/icons-processed/Badge-percent.svg": () => import("./Badge-percent-BVU5AqQ3.js"), "../../../assets/icons-processed/Badge-plus.svg": () => import("./Badge-plus-CWvjYKeE.js"), "../../../assets/icons-processed/Badge-x.svg": () => import("./Badge-x-DZxea_FZ.js"), "../../../assets/icons-processed/Badge.svg": () => import("./Badge-D9th-3jJ.js"), "../../../assets/icons-processed/Baggage-claim.svg": () => import("./Baggage-claim-k283oJ5B.js"), "../../../assets/icons-processed/Ban.svg": () => import("./Ban-CFkENRzE.js"), "../../../assets/icons-processed/Banana.svg": () => import("./Banana-Bcsze4Ld.js"), "../../../assets/icons-processed/Banknote.svg": () => import("./Banknote-DBlRvndX.js"), "../../../assets/icons-processed/Bar-chart-2.svg": () => import("./Bar-chart-2-B6sQx2tC.js"), "../../../assets/icons-processed/Bar-chart-3.svg": () => import("./Bar-chart-3-CjAML_Wh.js"), "../../../assets/icons-processed/Bar-chart-4.svg": () => import("./Bar-chart-4-Zm7QNyBL.js"), "../../../assets/icons-processed/Bar-chart-big.svg": () => import("./Bar-chart-big-DZ1w1u-9.js"), "../../../assets/icons-processed/Bar-chart-horizontal-big.svg": () => import("./Bar-chart-horizontal-big-C5VFA7tq.js"), "../../../assets/icons-processed/Bar-chart-horizontal.svg": () => import("./Bar-chart-horizontal-CCSpMZKB.js"), "../../../assets/icons-processed/Bar-chart.svg": () => import("./Bar-chart-D-DHtsoa.js"), "../../../assets/icons-processed/Baseline.svg": () => import("./Baseline-BAcHmQOS.js"), "../../../assets/icons-processed/Bath.svg": () => import("./Bath-TupnX6Cs.js"), "../../../assets/icons-processed/Battery-charging.svg": () => import("./Battery-charging-CqIHGVgT.js"), "../../../assets/icons-processed/Battery-full.svg": () => import("./Battery-full-fFbEXXFt.js"), "../../../assets/icons-processed/Battery-low.svg": () => import("./Battery-low-Bv6SbVGz.js"), "../../../assets/icons-processed/Battery-medium.svg": () => import("./Battery-medium-1EsFDzq2.js"), "../../../assets/icons-processed/Battery-warning.svg": () => import("./Battery-warning-ZAwh7bDE.js"), "../../../assets/icons-processed/Battery.svg": () => import("./Battery-CpzPEpRr.js"), "../../../assets/icons-processed/Beaker.svg": () => import("./Beaker--t6N0dQM.js"), "../../../assets/icons-processed/Bean-off.svg": () => import("./Bean-off-CHSe09F-.js"), "../../../assets/icons-processed/Bean.svg": () => import("./Bean-D6nOVsqz.js"), "../../../assets/icons-processed/Bed-double.svg": () => import("./Bed-double-CFxlTJXr.js"), "../../../assets/icons-processed/Bed-single.svg": () => import("./Bed-single-DOqsIGvO.js"), "../../../assets/icons-processed/Bed.svg": () => import("./Bed-BKmLXR8d.js"), "../../../assets/icons-processed/Beef.svg": () => import("./Beef-CCEgU2om.js"), "../../../assets/icons-processed/Beer.svg": () => import("./Beer-Q5kP8wY9.js"), "../../../assets/icons-processed/Bell-dot.svg": () => import("./Bell-dot-B5gqpHLg.js"), "../../../assets/icons-processed/Bell-minus.svg": () => import("./Bell-minus-C1w1LZh7.js"), "../../../assets/icons-processed/Bell-off.svg": () => import("./Bell-off-CY1pgyQ-.js"), "../../../assets/icons-processed/Bell-plus.svg": () => import("./Bell-plus-DGv1QTTc.js"), "../../../assets/icons-processed/Bell-ring.svg": () => import("./Bell-ring-BTtJVFrQ.js"), "../../../assets/icons-processed/Bell.svg": () => import("./Bell-Cxfl0Mr6.js"), "../../../assets/icons-processed/Bike.svg": () => import("./Bike-D4W9YIQ3.js"), "../../../assets/icons-processed/Binary.svg": () => import("./Binary-5FcvFWlW.js"), "../../../assets/icons-processed/Biohazard.svg": () => import("./Biohazard-DUZMYRVh.js"), "../../../assets/icons-processed/Bird.svg": () => import("./Bird-BNdN2qxg.js"), "../../../assets/icons-processed/Bitcoin.svg": () => import("./Bitcoin-BFIgw_DE.js"), "../../../assets/icons-processed/Blinds.svg": () => import("./Blinds-D-kok6e1.js"), "../../../assets/icons-processed/Blocks.svg": () => import("./Blocks-2YMQdlyb.js"), "../../../assets/icons-processed/Bluetooth-connected.svg": () => import("./Bluetooth-connected-BSy8jefk.js"), "../../../assets/icons-processed/Bluetooth-off.svg": () => import("./Bluetooth-off-CLHB8OkK.js"), "../../../assets/icons-processed/Bluetooth-searching.svg": () => import("./Bluetooth-searching-cSGcoJLx.js"), "../../../assets/icons-processed/Bluetooth.svg": () => import("./Bluetooth-DTrEfW4b.js"), "../../../assets/icons-processed/Bold.svg": () => import("./Bold-BjLmxpAg.js"), "../../../assets/icons-processed/Bomb.svg": () => import("./Bomb-Tu4ULRdw.js"), "../../../assets/icons-processed/Bone.svg": () => import("./Bone-BWYTbMvU.js"), "../../../assets/icons-processed/Book-copy.svg": () => import("./Book-copy-CHxK4JRf.js"), "../../../assets/icons-processed/Book-down.svg": () => import("./Book-down-CSFyhetp.js"), "../../../assets/icons-processed/Book-key.svg": () => import("./Book-key-BxI5LNTP.js"), "../../../assets/icons-processed/Book-lock.svg": () => import("./Book-lock-CRBb7eXU.js"), "../../../assets/icons-processed/Book-marked.svg": () => import("./Book-marked-CMmlvPRb.js"), "../../../assets/icons-processed/Book-minus.svg": () => import("./Book-minus-AbTGzLrQ.js"), "../../../assets/icons-processed/Book-open-check.svg": () => import("./Book-open-check-Cat4JlIf.js"), "../../../assets/icons-processed/Book-open.svg": () => import("./Book-open-B04o61GZ.js"), "../../../assets/icons-processed/Book-plus.svg": () => import("./Book-plus-Bm8f_a3q.js"), "../../../assets/icons-processed/Book-template.svg": () => import("./Book-template-4uZhddyQ.js"), "../../../assets/icons-processed/Book-up-2.svg": () => import("./Book-up-2-BCfaLIH7.js"), "../../../assets/icons-processed/Book-up.svg": () => import("./Book-up-DsiaMYfK.js"), "../../../assets/icons-processed/Book-x.svg": () => import("./Book-x-dP3IyTaU.js"), "../../../assets/icons-processed/Book.svg": () => import("./Book-DX2f37R-.js"), "../../../assets/icons-processed/Bookmark-minus.svg": () => import("./Bookmark-minus-3e4bVrBN.js"), "../../../assets/icons-processed/Bookmark-plus.svg": () => import("./Bookmark-plus-D3JBF1uW.js"), "../../../assets/icons-processed/Bookmark.svg": () => import("./Bookmark-DSa3xeHe.js"), "../../../assets/icons-processed/Boom-box.svg": () => import("./Boom-box-KljQgy5y.js"), "../../../assets/icons-processed/Bot.svg": () => import("./Bot-DzOvmVHU.js"), "../../../assets/icons-processed/Box-select.svg": () => import("./Box-select-BYMjEBuj.js"), "../../../assets/icons-processed/Box.svg": () => import("./Box-DBHk2kgZ.js"), "../../../assets/icons-processed/Boxes.svg": () => import("./Boxes-Dv35LDVG.js"), "../../../assets/icons-processed/Braces.svg": () => import("./Braces-saOmnEsQ.js"), "../../../assets/icons-processed/Brackets.svg": () => import("./Brackets-Cmw0u4b-.js"), "../../../assets/icons-processed/Brain-circuit.svg": () => import("./Brain-circuit-Cqv8xI3T.js"), "../../../assets/icons-processed/Brain-cog.svg": () => import("./Brain-cog-Bj8Op-XJ.js"), "../../../assets/icons-processed/Brain.svg": () => import("./Brain-C37IC4pt.js"), "../../../assets/icons-processed/Briefcase.svg": () => import("./Briefcase-CaK2OvKh.js"), "../../../assets/icons-processed/Bring-to-front.svg": () => import("./Bring-to-front-D562IWU0.js"), "../../../assets/icons-processed/Brush.svg": () => import("./Brush-HE0Rv-Sq.js"), "../../../assets/icons-processed/Bug.svg": () => import("./Bug-D_mV-rK7.js"), "../../../assets/icons-processed/Building-2.svg": () => import("./Building-2-1MyaHiab.js"), "../../../assets/icons-processed/Building.svg": () => import("./Building-D6jXSZCh.js"), "../../../assets/icons-processed/Bus-front.svg": () => import("./Bus-front-BLdLMYQ9.js"), "../../../assets/icons-processed/Bus.svg": () => import("./Bus-CuLtZWfI.js"), "../../../assets/icons-processed/CPU.svg": () => import("./CPU-CClaQQRL.js"), "../../../assets/icons-processed/Cable-car.svg": () => import("./Cable-car-DzyQOQWS.js"), "../../../assets/icons-processed/Cable.svg": () => import("./Cable-D4uhexK4.js"), "../../../assets/icons-processed/Cake-slice.svg": () => import("./Cake-slice-CnWCiz_S.js"), "../../../assets/icons-processed/Cake.svg": () => import("./Cake-CdSUUiKH.js"), "../../../assets/icons-processed/Calculator.svg": () => import("./Calculator-pLNQrMUq.js"), "../../../assets/icons-processed/Calendar-check-2.svg": () => import("./Calendar-check-2-DQJetekD.js"), "../../../assets/icons-processed/Calendar-check.svg": () => import("./Calendar-check-C6CImzFP.js"), "../../../assets/icons-processed/Calendar-clock.svg": () => import("./Calendar-clock-DE2SybDB.js"), "../../../assets/icons-processed/Calendar-days.svg": () => import("./Calendar-days-DfL52Hkq.js"), "../../../assets/icons-processed/Calendar-heart.svg": () => import("./Calendar-heart-5a_VlsvM.js"), "../../../assets/icons-processed/Calendar-minus.svg": () => import("./Calendar-minus-JuLFl_Xi.js"), "../../../assets/icons-processed/Calendar-off.svg": () => import("./Calendar-off-g9B6AR_a.js"), "../../../assets/icons-processed/Calendar-plus.svg": () => import("./Calendar-plus-G4LCTFNi.js"), "../../../assets/icons-processed/Calendar-range.svg": () => import("./Calendar-range-CZBrEaeP.js"), "../../../assets/icons-processed/Calendar-search.svg": () => import("./Calendar-search-DOjGOi0O.js"), "../../../assets/icons-processed/Calendar-x-2.svg": () => import("./Calendar-x-2-CMYBs3Hp.js"), "../../../assets/icons-processed/Calendar-x.svg": () => import("./Calendar-x-DvPfA-oC.js"), "../../../assets/icons-processed/Calendar.svg": () => import("./Calendar-_ky-fMd2.js"), "../../../assets/icons-processed/Camera-off.svg": () => import("./Camera-off-BG98otGf.js"), "../../../assets/icons-processed/Camera.svg": () => import("./Camera-BjPHW7qi.js"), "../../../assets/icons-processed/Candlestick-chart.svg": () => import("./Candlestick-chart-CRk8N6QB.js"), "../../../assets/icons-processed/Candy-cane.svg": () => import("./Candy-cane-sAaAPo_b.js"), "../../../assets/icons-processed/Candy-off.svg": () => import("./Candy-off-TqINNsk5.js"), "../../../assets/icons-processed/Candy.svg": () => import("./Candy-B0oOX6Fz.js"), "../../../assets/icons-processed/Car-front.svg": () => import("./Car-front-Dck_K09Q.js"), "../../../assets/icons-processed/Car-taxi-front.svg": () => import("./Car-taxi-front-CVfjL6Qs.js"), "../../../assets/icons-processed/Car.svg": () => import("./Car-BLD6yD-_.js"), "../../../assets/icons-processed/Carrot.svg": () => import("./Carrot-GtU6S0zC.js"), "../../../assets/icons-processed/Case-lower.svg": () => import("./Case-lower-BxiDsBQa.js"), "../../../assets/icons-processed/Case-sensitive.svg": () => import("./Case-sensitive-Bn6S4ub-.js"), "../../../assets/icons-processed/Case-upper.svg": () => import("./Case-upper-BUJavnYP.js"), "../../../assets/icons-processed/Cassette-tape.svg": () => import("./Cassette-tape-C2R79ohz.js"), "../../../assets/icons-processed/Cast.svg": () => import("./Cast-gxs3yBjQ.js"), "../../../assets/icons-processed/Castle.svg": () => import("./Castle-Dr6sAhYX.js"), "../../../assets/icons-processed/Cat.svg": () => import("./Cat-BiJxkLGE.js"), "../../../assets/icons-processed/Check-check.svg": () => import("./Check-check-BPLSNais.js"), "../../../assets/icons-processed/Check-circle-2.svg": () => import("./Check-circle-2-GTCe77WU.js"), "../../../assets/icons-processed/Check-circle.svg": () => import("./Check-circle-Bh5gO84q.js"), "../../../assets/icons-processed/Check-square.svg": () => import("./Check-square-C8i0EyI8.js"), "../../../assets/icons-processed/Check.svg": () => import("./Check-B1h5c7Sh.js"), "../../../assets/icons-processed/Chef-hat.svg": () => import("./Chef-hat-BB0QZgXS.js"), "../../../assets/icons-processed/Cherry.svg": () => import("./Cherry-CnDEgBnX.js"), "../../../assets/icons-processed/Chevron-down-circle.svg": () => import("./Chevron-down-circle-l2k0i49r.js"), "../../../assets/icons-processed/Chevron-down-square.svg": () => import("./Chevron-down-square-BfQSgeh2.js"), "../../../assets/icons-processed/Chevron-down.svg": () => import("./Chevron-down-KvYw4J2Q.js"), "../../../assets/icons-processed/Chevron-first.svg": () => import("./Chevron-first-BXYArYa3.js"), "../../../assets/icons-processed/Chevron-last.svg": () => import("./Chevron-last-Cumv00wR.js"), "../../../assets/icons-processed/Chevron-left-circle.svg": () => import("./Chevron-left-circle-B7TGsGtc.js"), "../../../assets/icons-processed/Chevron-left-square.svg": () => import("./Chevron-left-square-B6jArKjO.js"), "../../../assets/icons-processed/Chevron-left.svg": () => import("./Chevron-left-CCz3CLrR.js"), "../../../assets/icons-processed/Chevron-right-circle.svg": () => import("./Chevron-right-circle-lplAFyBK.js"), "../../../assets/icons-processed/Chevron-right-square.svg": () => import("./Chevron-right-square-w0WZKjyG.js"), "../../../assets/icons-processed/Chevron-right.svg": () => import("./Chevron-right-3hm-AhxE.js"), "../../../assets/icons-processed/Chevron-up-circle.svg": () => import("./Chevron-up-circle-CZXWcBoy.js"), "../../../assets/icons-processed/Chevron-up-square.svg": () => import("./Chevron-up-square-CYqAvhzE.js"), "../../../assets/icons-processed/Chevron-up.svg": () => import("./Chevron-up-D-_SMs8J.js"), "../../../assets/icons-processed/Chevrons-down-up.svg": () => import("./Chevrons-down-up-Dyeqyea7.js"), "../../../assets/icons-processed/Chevrons-down.svg": () => import("./Chevrons-down-k_FFuMjV.js"), "../../../assets/icons-processed/Chevrons-left-right.svg": () => import("./Chevrons-left-right-DxkxccfE.js"), "../../../assets/icons-processed/Chevrons-left.svg": () => import("./Chevrons-left-MpmgDEEh.js"), "../../../assets/icons-processed/Chevrons-right-left.svg": () => import("./Chevrons-right-left-78UdXkP-.js"), "../../../assets/icons-processed/Chevrons-right.svg": () => import("./Chevrons-right-vWpfLCd7.js"), "../../../assets/icons-processed/Chevrons-up-down.svg": () => import("./Chevrons-up-down-CAtvn21u.js"), "../../../assets/icons-processed/Chevrons-up.svg": () => import("./Chevrons-up-CfcWe9xB.js"), "../../../assets/icons-processed/Chrome.svg": () => import("./Chrome-nuCy7EXA.js"), "../../../assets/icons-processed/Church.svg": () => import("./Church-DhoMZ5bI.js"), "../../../assets/icons-processed/Cigarette-off.svg": () => import("./Cigarette-off-vPBF13is.js"), "../../../assets/icons-processed/Cigarette.svg": () => import("./Cigarette-B1Ykea5W.js"), "../../../assets/icons-processed/Circle-dashed.svg": () => import("./Circle-dashed-BkQRXdZG.js"), "../../../assets/icons-processed/Circle-dollar-sign.svg": () => import("./Circle-dollar-sign-BmyNfkB5.js"), "../../../assets/icons-processed/Circle-dot-dashed.svg": () => import("./Circle-dot-dashed-CzW7yVkd.js"), "../../../assets/icons-processed/Circle-dot.svg": () => import("./Circle-dot-CU_Z8ygE.js"), "../../../assets/icons-processed/Circle-ellipsis.svg": () => import("./Circle-ellipsis-DzLoZDDG.js"), "../../../assets/icons-processed/Circle-equal.svg": () => import("./Circle-equal-By6JOmtx.js"), "../../../assets/icons-processed/Circle-off.svg": () => import("./Circle-off-C7opVpcm.js"), "../../../assets/icons-processed/Circle-slash-2.svg": () => import("./Circle-slash-2-L66oEzds.js"), "../../../assets/icons-processed/Circle-slash.svg": () => import("./Circle-slash-CMBBqpaX.js"), "../../../assets/icons-processed/Circle.svg": () => import("./Circle-CScVevHS.js"), "../../../assets/icons-processed/Circuit-board.svg": () => import("./Circuit-board-Cm71ZjsK.js"), "../../../assets/icons-processed/Citrus.svg": () => import("./Citrus-BDNShHHD.js"), "../../../assets/icons-processed/Clapperboard.svg": () => import("./Clapperboard-CgWS84GB.js"), "../../../assets/icons-processed/Clipboard-check.svg": () => import("./Clipboard-check-B9XFeFuH.js"), "../../../assets/icons-processed/Clipboard-copy.svg": () => import("./Clipboard-copy-akbWjLRI.js"), "../../../assets/icons-processed/Clipboard-edit.svg": () => import("./Clipboard-edit-Cw7kv4q3.js"), "../../../assets/icons-processed/Clipboard-list.svg": () => import("./Clipboard-list-TBPOWxm4.js"), "../../../assets/icons-processed/Clipboard-paste.svg": () => import("./Clipboard-paste-D53HvSTM.js"), "../../../assets/icons-processed/Clipboard-signature.svg": () => import("./Clipboard-signature-BcsHYRSe.js"), "../../../assets/icons-processed/Clipboard-type.svg": () => import("./Clipboard-type-Bpml6wgi.js"), "../../../assets/icons-processed/Clipboard-x.svg": () => import("./Clipboard-x-D4-rBp7w.js"), "../../../assets/icons-processed/Clipboard.svg": () => import("./Clipboard-UlIKPQvP.js"), "../../../assets/icons-processed/Clock-1.svg": () => import("./Clock-1-BQZI9zlX.js"), "../../../assets/icons-processed/Clock-10.svg": () => import("./Clock-10-Cd06ucfr.js"), "../../../assets/icons-processed/Clock-11.svg": () => import("./Clock-11-M_Ma4epi.js"), "../../../assets/icons-processed/Clock-12.svg": () => import("./Clock-12-v0wei__n.js"), "../../../assets/icons-processed/Clock-2.svg": () => import("./Clock-2-Uu7So-s0.js"), "../../../assets/icons-processed/Clock-3.svg": () => import("./Clock-3-CJxaTYcD.js"), "../../../assets/icons-processed/Clock-4.svg": () => import("./Clock-4-B0O7iE80.js"), "../../../assets/icons-processed/Clock-5.svg": () => import("./Clock-5-zDgkkXAc.js"), "../../../assets/icons-processed/Clock-6.svg": () => import("./Clock-6-DHb8joa_.js"), "../../../assets/icons-processed/Clock-7.svg": () => import("./Clock-7-BPlTi9cg.js"), "../../../assets/icons-processed/Clock-8.svg": () => import("./Clock-8-Br6yfVos.js"), "../../../assets/icons-processed/Clock-9.svg": () => import("./Clock-9-Djv6XjLH.js"), "../../../assets/icons-processed/Clock.svg": () => import("./Clock-B0O7iE80.js"), "../../../assets/icons-processed/Cloud-cog.svg": () => import("./Cloud-cog-fUgXlISC.js"), "../../../assets/icons-processed/Cloud-drizzle.svg": () => import("./Cloud-drizzle-B2WFj8O0.js"), "../../../assets/icons-processed/Cloud-fog.svg": () => import("./Cloud-fog-CvboVVUM.js"), "../../../assets/icons-processed/Cloud-hail.svg": () => import("./Cloud-hail-BzNC91bj.js"), "../../../assets/icons-processed/Cloud-lightning.svg": () => import("./Cloud-lightning-pTnZjVW6.js"), "../../../assets/icons-processed/Cloud-moon-rain.svg": () => import("./Cloud-moon-rain-BNsOLCtd.js"), "../../../assets/icons-processed/Cloud-moon.svg": () => import("./Cloud-moon-Ca2m8lQM.js"), "../../../assets/icons-processed/Cloud-off.svg": () => import("./Cloud-off-D0lGA7Rz.js"), "../../../assets/icons-processed/Cloud-rain-wind.svg": () => import("./Cloud-rain-wind-BALkB69p.js"), "../../../assets/icons-processed/Cloud-rain.svg": () => import("./Cloud-rain-BfSz0LcH.js"), "../../../assets/icons-processed/Cloud-snow.svg": () => import("./Cloud-snow-BgrTglEM.js"), "../../../assets/icons-processed/Cloud-sun-rain.svg": () => import("./Cloud-sun-rain-Bg4Vqjm4.js"), "../../../assets/icons-processed/Cloud-sun.svg": () => import("./Cloud-sun-DRVvVfJp.js"), "../../../assets/icons-processed/Cloud.svg": () => import("./Cloud-ekbKjO0N.js"), "../../../assets/icons-processed/Cloudy.svg": () => import("./Cloudy-DlLQ9nuc.js"), "../../../assets/icons-processed/Clover.svg": () => import("./Clover-Cokfso-V.js"), "../../../assets/icons-processed/Club.svg": () => import("./Club-DzRK8rLL.js"), "../../../assets/icons-processed/Code-2.svg": () => import("./Code-2-DLvVqGmF.js"), "../../../assets/icons-processed/Code.svg": () => import("./Code-C4WszzK-.js"), "../../../assets/icons-processed/Codepen.svg": () => import("./Codepen-DwfMtJ0X.js"), "../../../assets/icons-processed/Codesandbox.svg": () => import("./Codesandbox-CRaPnbCJ.js"), "../../../assets/icons-processed/Coffee.svg": () => import("./Coffee-JqSGORun.js"), "../../../assets/icons-processed/Cog.svg": () => import("./Cog-BPucHjoI.js"), "../../../assets/icons-processed/Coins.svg": () => import("./Coins-DqnSSBEe.js"), "../../../assets/icons-processed/Columns.svg": () => import("./Columns-SJ5DvfrY.js"), "../../../assets/icons-processed/Combine.svg": () => import("./Combine-BfHdlUiR.js"), "../../../assets/icons-processed/Command.svg": () => import("./Command-CusEc7AD.js"), "../../../assets/icons-processed/Compass.svg": () => import("./Compass-BAgEJZxH.js"), "../../../assets/icons-processed/Component.svg": () => import("./Component-ff5Jhqva.js"), "../../../assets/icons-processed/Computer.svg": () => import("./Computer-DG0jOPp0.js"), "../../../assets/icons-processed/Concierge-bell.svg": () => import("./Concierge-bell-DNV2aaOC.js"), "../../../assets/icons-processed/Construction.svg": () => import("./Construction-_umiXy9g.js"), "../../../assets/icons-processed/Contact-2.svg": () => import("./Contact-2-Drj_TZl-.js"), "../../../assets/icons-processed/Contact.svg": () => import("./Contact-DMWQElr-.js"), "../../../assets/icons-processed/Container.svg": () => import("./Container-Ez3vaiC9.js"), "../../../assets/icons-processed/Contrast.svg": () => import("./Contrast-C1ireL67.js"), "../../../assets/icons-processed/Cookie.svg": () => import("./Cookie-SIS1aAWd.js"), "../../../assets/icons-processed/Copy-check.svg": () => import("./Copy-check-Djp0MWj6.js"), "../../../assets/icons-processed/Copy-minus.svg": () => import("./Copy-minus-B_T8h2GR.js"), "../../../assets/icons-processed/Copy-plus.svg": () => import("./Copy-plus--w7MMpWA.js"), "../../../assets/icons-processed/Copy-slash.svg": () => import("./Copy-slash-B79Uarb5.js"), "../../../assets/icons-processed/Copy-x.svg": () => import("./Copy-x-BmJSCHv-.js"), "../../../assets/icons-processed/Copy.svg": () => import("./Copy-CnlfnaRo.js"), "../../../assets/icons-processed/Copyleft.svg": () => import("./Copyleft-Ca-xZLZn.js"), "../../../assets/icons-processed/Copyright.svg": () => import("./Copyright-B0uDMOxW.js"), "../../../assets/icons-processed/Corner-down-left.svg": () => import("./Corner-down-left-DWRrs3-X.js"), "../../../assets/icons-processed/Corner-down-right.svg": () => import("./Corner-down-right-DeStvt3t.js"), "../../../assets/icons-processed/Corner-left-down.svg": () => import("./Corner-left-down-Bhzzstkl.js"), "../../../assets/icons-processed/Corner-left-up.svg": () => import("./Corner-left-up-p_8kKoea.js"), "../../../assets/icons-processed/Corner-right-down.svg": () => import("./Corner-right-down-BBNTeDAe.js"), "../../../assets/icons-processed/Corner-right-up.svg": () => import("./Corner-right-up-BQK7JGWW.js"), "../../../assets/icons-processed/Corner-up-left.svg": () => import("./Corner-up-left-82TX9sq1.js"), "../../../assets/icons-processed/Corner-up-right.svg": () => import("./Corner-up-right-DFCNMsNF.js"), "../../../assets/icons-processed/Creative-commons.svg": () => import("./Creative-commons-D2RaYfqx.js"), "../../../assets/icons-processed/Credit-card.svg": () => import("./Credit-card-CjHkjZOF.js"), "../../../assets/icons-processed/Croissant.svg": () => import("./Croissant-CFkOtZVj.js"), "../../../assets/icons-processed/Crop.svg": () => import("./Crop-Ds0aI3Tq.js"), "../../../assets/icons-processed/Cross.svg": () => import("./Cross-DpzCsxa9.js"), "../../../assets/icons-processed/Crosshair.svg": () => import("./Crosshair-BsQ3idDo.js"), "../../../assets/icons-processed/Crown.svg": () => import("./Crown-dNMWig-S.js"), "../../../assets/icons-processed/Cup-soda.svg": () => import("./Cup-soda-D_xLQcro.js"), "../../../assets/icons-processed/Currency.svg": () => import("./Currency-B5tqOEmP.js"), "../../../assets/icons-processed/Database-backup.svg": () => import("./Database-backup-BxjdbBK_.js"), "../../../assets/icons-processed/Database-zap.svg": () => import("./Database-zap-CWHbS-OS.js"), "../../../assets/icons-processed/Database.svg": () => import("./Database-Bri3y_2G.js"), "../../../assets/icons-processed/Delete.svg": () => import("./Delete-9PAlvdiQ.js"), "../../../assets/icons-processed/Dessert.svg": () => import("./Dessert-DLMeFJn4.js"), "../../../assets/icons-processed/Diamond.svg": () => import("./Diamond-CV9mCn7T.js"), "../../../assets/icons-processed/Dice-1.svg": () => import("./Dice-1-DYmdkrJe.js"), "../../../assets/icons-processed/Dice-2.svg": () => import("./Dice-2-BxVYEDHZ.js"), "../../../assets/icons-processed/Dice-3.svg": () => import("./Dice-3-BtDZpk9J.js"), "../../../assets/icons-processed/Dice-4.svg": () => import("./Dice-4-0oezKlPJ.js"), "../../../assets/icons-processed/Dice-5.svg": () => import("./Dice-5-Dpk1eQO4.js"), "../../../assets/icons-processed/Dice-6.svg": () => import("./Dice-6-BNaSZ3SF.js"), "../../../assets/icons-processed/Dices.svg": () => import("./Dices-Cv52rdNt.js"), "../../../assets/icons-processed/Diff.svg": () => import("./Diff-DtzWJDR2.js"), "../../../assets/icons-processed/Disc-2.svg": () => import("./Disc-2-DEX6t_V9.js"), "../../../assets/icons-processed/Disc-3.svg": () => import("./Disc-3-Zn9qLsdr.js"), "../../../assets/icons-processed/Disc.svg": () => import("./Disc-gHi34ahj.js"), "../../../assets/icons-processed/Divide-circle.svg": () => import("./Divide-circle-BT-3cm7V.js"), "../../../assets/icons-processed/Divide-square.svg": () => import("./Divide-square-C_qMc5Z4.js"), "../../../assets/icons-processed/Divide.svg": () => import("./Divide-CkwvzUen.js"), "../../../assets/icons-processed/Dna-off.svg": () => import("./Dna-off-cRcsRlPf.js"), "../../../assets/icons-processed/Dna.svg": () => import("./Dna-VFhR9KGY.js"), "../../../assets/icons-processed/Dog.svg": () => import("./Dog-BUcO1CBy.js"), "../../../assets/icons-processed/Dollar-sign.svg": () => import("./Dollar-sign-DcZO-9tH.js"), "../../../assets/icons-processed/Donut.svg": () => import("./Donut-Bj1jHKiz.js"), "../../../assets/icons-processed/Door-closed.svg": () => import("./Door-closed-Cc_NOxPi.js"), "../../../assets/icons-processed/Door-open.svg": () => import("./Door-open-BHrJgMNO.js"), "../../../assets/icons-processed/Dot.svg": () => import("./Dot-BgKACfl0.js"), "../../../assets/icons-processed/Download-cloud.svg": () => import("./Download-cloud-CDUjwLzc.js"), "../../../assets/icons-processed/Download.svg": () => import("./Download-Bhfag0IC.js"), "../../../assets/icons-processed/Dribbble.svg": () => import("./Dribbble-C5aHkzA4.js"), "../../../assets/icons-processed/Droplet.svg": () => import("./Droplet-CjKk5zLL.js"), "../../../assets/icons-processed/Droplets.svg": () => import("./Droplets-C_A5ef8S.js"), "../../../assets/icons-processed/Drumstick.svg": () => import("./Drumstick-_f0bdOmm.js"), "../../../assets/icons-processed/Dumbbell.svg": () => import("./Dumbbell-D1wmSYss.js"), "../../../assets/icons-processed/Ear-off.svg": () => import("./Ear-off-C0TE5vtt.js"), "../../../assets/icons-processed/Ear.svg": () => import("./Ear-BP_aLgE-.js"), "../../../assets/icons-processed/Egg-fried.svg": () => import("./Egg-fried-CGtCRQy5.js"), "../../../assets/icons-processed/Egg-off.svg": () => import("./Egg-off-wvIFboyT.js"), "../../../assets/icons-processed/Egg.svg": () => import("./Egg-ChT5vP6K.js"), "../../../assets/icons-processed/Equal-not.svg": () => import("./Equal-not-DDOw_3a2.js"), "../../../assets/icons-processed/Equal.svg": () => import("./Equal-CPACfxvb.js"), "../../../assets/icons-processed/Eraser.svg": () => import("./Eraser-BJo9Ch95.js"), "../../../assets/icons-processed/Euro.svg": () => import("./Euro-DIEeik88.js"), "../../../assets/icons-processed/Expand.svg": () => import("./Expand-VhagDTRf.js"), "../../../assets/icons-processed/External-link.svg": () => import("./External-link-DrQbHAK7.js"), "../../../assets/icons-processed/Eye-off.svg": () => import("./Eye-off-BTGX2LSJ.js"), "../../../assets/icons-processed/Eye.svg": () => import("./Eye--ij3250d.js"), "../../../assets/icons-processed/Facebook.svg": () => import("./Facebook-uljhDGto.js"), "../../../assets/icons-processed/Factory.svg": () => import("./Factory-Cx-63NSo.js"), "../../../assets/icons-processed/Fan.svg": () => import("./Fan-CIEP9pFK.js"), "../../../assets/icons-processed/Fast-forward.svg": () => import("./Fast-forward-DPX7GcND.js"), "../../../assets/icons-processed/Feather.svg": () => import("./Feather-Drf5Hqjv.js"), "../../../assets/icons-processed/Ferris-wheel.svg": () => import("./Ferris-wheel-DjQ3503z.js"), "../../../assets/icons-processed/Figma.svg": () => import("./Figma-BhtKXzuP.js"), "../../../assets/icons-processed/File-archive.svg": () => import("./File-archive-wZMnVKu2.js"), "../../../assets/icons-processed/File-audio-2.svg": () => import("./File-audio-2-CZ9Y3fve.js"), "../../../assets/icons-processed/File-audio.svg": () => import("./File-audio-Cs58gZL0.js"), "../../../assets/icons-processed/File-axis-3d.svg": () => import("./File-axis-3d-Dn-6DEfk.js"), "../../../assets/icons-processed/File-badge-2.svg": () => import("./File-badge-2-BWCnH5yO.js"), "../../../assets/icons-processed/File-badge.svg": () => import("./File-badge-BQkTw__V.js"), "../../../assets/icons-processed/File-bar-chart-2.svg": () => import("./File-bar-chart-2-CAIqJyTt.js"), "../../../assets/icons-processed/File-bar-chart.svg": () => import("./File-bar-chart-BbB9xoch.js"), "../../../assets/icons-processed/File-box.svg": () => import("./File-box-CpBBPdn1.js"), "../../../assets/icons-processed/File-check-2.svg": () => import("./File-check-2-BlHjlnCs.js"), "../../../assets/icons-processed/File-check.svg": () => import("./File-check-DCC2XpbV.js"), "../../../assets/icons-processed/File-clock.svg": () => import("./File-clock-C5NZoOcB.js"), "../../../assets/icons-processed/File-code-2.svg": () => import("./File-code-2-Dy1dBK_7.js"), "../../../assets/icons-processed/File-code.svg": () => import("./File-code-ceeu0GE5.js"), "../../../assets/icons-processed/File-cog.svg": () => import("./File-cog-DqsvF4pP.js"), "../../../assets/icons-processed/File-diff.svg": () => import("./File-diff-D7xOujYR.js"), "../../../assets/icons-processed/File-digit.svg": () => import("./File-digit-Dm38PyTP.js"), "../../../assets/icons-processed/File-down.svg": () => import("./File-down-CafTfqN9.js"), "../../../assets/icons-processed/File-edit.svg": () => import("./File-edit-DyTsh5_-.js"), "../../../assets/icons-processed/File-heart.svg": () => import("./File-heart-joEDdQTS.js"), "../../../assets/icons-processed/File-image.svg": () => import("./File-image-C1Be9snl.js"), "../../../assets/icons-processed/File-input.svg": () => import("./File-input-BDF2_cWF.js"), "../../../assets/icons-processed/File-json-2.svg": () => import("./File-json-2-tcws-ngJ.js"), "../../../assets/icons-processed/File-json.svg": () => import("./File-json-EndaNIyj.js"), "../../../assets/icons-processed/File-key-2.svg": () => import("./File-key-2-HSrCtiRp.js"), "../../../assets/icons-processed/File-key.svg": () => import("./File-key-Clgywnke.js"), "../../../assets/icons-processed/File-line-chart.svg": () => import("./File-line-chart-72jScUTl.js"), "../../../assets/icons-processed/File-lock-2.svg": () => import("./File-lock-2-DScl6Zwn.js"), "../../../assets/icons-processed/File-lock.svg": () => import("./File-lock-Dr_mJQSc.js"), "../../../assets/icons-processed/File-minus-2.svg": () => import("./File-minus-2-dSQevDJ7.js"), "../../../assets/icons-processed/File-minus.svg": () => import("./File-minus-BJMHGaCK.js"), "../../../assets/icons-processed/File-output.svg": () => import("./File-output-wQEuAgsI.js"), "../../../assets/icons-processed/File-pie-chart.svg": () => import("./File-pie-chart-DrcfPsGw.js"), "../../../assets/icons-processed/File-plus-2.svg": () => import("./File-plus-2-C-nMfNJf.js"), "../../../assets/icons-processed/File-plus.svg": () => import("./File-plus-GR_9nvhs.js"), "../../../assets/icons-processed/File-question.svg": () => import("./File-question-C0lkuVUe.js"), "../../../assets/icons-processed/File-scan.svg": () => import("./File-scan-DOhTDCQW.js"), "../../../assets/icons-processed/File-search-2.svg": () => import("./File-search-2-Cqvo0AUg.js"), "../../../assets/icons-processed/File-search.svg": () => import("./File-search-B52Jqdhq.js"), "../../../assets/icons-processed/File-signature.svg": () => import("./File-signature-CCygZ7xR.js"), "../../../assets/icons-processed/File-spreadsheet.svg": () => import("./File-spreadsheet-Dg_qJMVU.js"), "../../../assets/icons-processed/File-stack.svg": () => import("./File-stack-DXjxKYYQ.js"), "../../../assets/icons-processed/File-symlink.svg": () => import("./File-symlink-CUdYlYLF.js"), "../../../assets/icons-processed/File-terminal.svg": () => import("./File-terminal-Dlgu5_Zh.js"), "../../../assets/icons-processed/File-text.svg": () => import("./File-text-vjAgmI8I.js"), "../../../assets/icons-processed/File-type-2.svg": () => import("./File-type-2-FpB3RwDa.js"), "../../../assets/icons-processed/File-type.svg": () => import("./File-type-D05L8E0B.js"), "../../../assets/icons-processed/File-up.svg": () => import("./File-up-DcDrU-7z.js"), "../../../assets/icons-processed/File-video-2.svg": () => import("./File-video-2-BmqKsAp4.js"), "../../../assets/icons-processed/File-video.svg": () => import("./File-video-DeAN8Tgb.js"), "../../../assets/icons-processed/File-volume-2.svg": () => import("./File-volume-2-C1z2u-4I.js"), "../../../assets/icons-processed/File-volume.svg": () => import("./File-volume-v574wiuc.js"), "../../../assets/icons-processed/File-warning.svg": () => import("./File-warning-C1eSFkdp.js"), "../../../assets/icons-processed/File-x-2.svg": () => import("./File-x-2-D7JxGguZ.js"), "../../../assets/icons-processed/File-x.svg": () => import("./File-x-Bc9sxoPg.js"), "../../../assets/icons-processed/File.svg": () => import("./File-XywS_Xf0.js"), "../../../assets/icons-processed/Files.svg": () => import("./Files--aU71qes.js"), "../../../assets/icons-processed/Film.svg": () => import("./Film-CqbFFsYX.js"), "../../../assets/icons-processed/Filter-x.svg": () => import("./Filter-x-Dy1DXV8u.js"), "../../../assets/icons-processed/Filter.svg": () => import("./Filter-BvwFAAbG.js"), "../../../assets/icons-processed/Fingerprint.svg": () => import("./Fingerprint-RZy9OFk0.js"), "../../../assets/icons-processed/Fish-off.svg": () => import("./Fish-off-7y0SDvao.js"), "../../../assets/icons-processed/Fish-symbol.svg": () => import("./Fish-symbol-BDkt24w2.js"), "../../../assets/icons-processed/Fish.svg": () => import("./Fish-CZkwJ_RB.js"), "../../../assets/icons-processed/Flag-off.svg": () => import("./Flag-off-CQG-vCAl.js"), "../../../assets/icons-processed/Flag-triangle-left.svg": () => import("./Flag-triangle-left-BxKYd09v.js"), "../../../assets/icons-processed/Flag-triangle-right.svg": () => import("./Flag-triangle-right-ChL1CWRu.js"), "../../../assets/icons-processed/Flag.svg": () => import("./Flag-Bo4NgNBa.js"), "../../../assets/icons-processed/Flame.svg": () => import("./Flame-BPqd_Sa3.js"), "../../../assets/icons-processed/Flashlight-off.svg": () => import("./Flashlight-off-BBCzDQgE.js"), "../../../assets/icons-processed/Flashlight.svg": () => import("./Flashlight-B0nSW23t.js"), "../../../assets/icons-processed/Flask-conical-off.svg": () => import("./Flask-conical-off-C4BqzFO-.js"), "../../../assets/icons-processed/Flask-conical.svg": () => import("./Flask-conical-3vRx8PY2.js"), "../../../assets/icons-processed/Flask-round.svg": () => import("./Flask-round-96a5JFGB.js"), "../../../assets/icons-processed/Flip-horizontal-2.svg": () => import("./Flip-horizontal-2-HQ7RQRtA.js"), "../../../assets/icons-processed/Flip-horizontal.svg": () => import("./Flip-horizontal-CD8T8WAl.js"), "../../../assets/icons-processed/Flip-vertical-2.svg": () => import("./Flip-vertical-2-lMlIATVQ.js"), "../../../assets/icons-processed/Flip-vertical.svg": () => import("./Flip-vertical-pVOOb1j5.js"), "../../../assets/icons-processed/Flower-2.svg": () => import("./Flower-2-femEFhza.js"), "../../../assets/icons-processed/Flower.svg": () => import("./Flower-CXZ0t58D.js"), "../../../assets/icons-processed/Focus.svg": () => import("./Focus-XhK8l-jo.js"), "../../../assets/icons-processed/Fold-horizontal.svg": () => import("./Fold-horizontal-2tKz34qd.js"), "../../../assets/icons-processed/Fold-vertical.svg": () => import("./Fold-vertical-CF6Sglc3.js"), "../../../assets/icons-processed/Folder-archive.svg": () => import("./Folder-archive-BpInfzZ9.js"), "../../../assets/icons-processed/Folder-check.svg": () => import("./Folder-check-NP6qv1am.js"), "../../../assets/icons-processed/Folder-clock.svg": () => import("./Folder-clock-CsVYBv7A.js"), "../../../assets/icons-processed/Folder-closed.svg": () => import("./Folder-closed-BqWl610n.js"), "../../../assets/icons-processed/Folder-cog.svg": () => import("./Folder-cog-C68q8pAj.js"), "../../../assets/icons-processed/Folder-dot.svg": () => import("./Folder-dot-VZ7OkCoG.js"), "../../../assets/icons-processed/Folder-down.svg": () => import("./Folder-down-BJOjbl2r.js"), "../../../assets/icons-processed/Folder-edit.svg": () => import("./Folder-edit-Bdsh85fP.js"), "../../../assets/icons-processed/Folder-git-2.svg": () => import("./Folder-git-2-DuoWS176.js"), "../../../assets/icons-processed/Folder-git.svg": () => import("./Folder-git-D2j49nox.js"), "../../../assets/icons-processed/Folder-heart.svg": () => import("./Folder-heart-BYASaJeO.js"), "../../../assets/icons-processed/Folder-input.svg": () => import("./Folder-input-C94EyFrK.js"), "../../../assets/icons-processed/Folder-kanban.svg": () => import("./Folder-kanban-DNDvZZOs.js"), "../../../assets/icons-processed/Folder-key.svg": () => import("./Folder-key-DNYnxr0U.js"), "../../../assets/icons-processed/Folder-lock.svg": () => import("./Folder-lock-CeyHl-Hv.js"), "../../../assets/icons-processed/Folder-minus.svg": () => import("./Folder-minus-Lye65VHt.js"), "../../../assets/icons-processed/Folder-open-dot.svg": () => import("./Folder-open-dot-D89oIKiu.js"), "../../../assets/icons-processed/Folder-open.svg": () => import("./Folder-open-BI3cZVAP.js"), "../../../assets/icons-processed/Folder-output.svg": () => import("./Folder-output-7tC_uifq.js"), "../../../assets/icons-processed/Folder-plus.svg": () => import("./Folder-plus-BmhoVbZM.js"), "../../../assets/icons-processed/Folder-root.svg": () => import("./Folder-root-11P579KE.js"), "../../../assets/icons-processed/Folder-search-2.svg": () => import("./Folder-search-2-CxuFhTXv.js"), "../../../assets/icons-processed/Folder-search.svg": () => import("./Folder-search-DwNFYPFx.js"), "../../../assets/icons-processed/Folder-symlink.svg": () => import("./Folder-symlink-BUmuhi9u.js"), "../../../assets/icons-processed/Folder-sync.svg": () => import("./Folder-sync-Cp0vBenA.js"), "../../../assets/icons-processed/Folder-tree.svg": () => import("./Folder-tree-CkFq5zfg.js"), "../../../assets/icons-processed/Folder-up.svg": () => import("./Folder-up-Ds6ufEPd.js"), "../../../assets/icons-processed/Folder-x.svg": () => import("./Folder-x-BdvPgMPJ.js"), "../../../assets/icons-processed/Folder.svg": () => import("./Folder-BiJbXj6g.js"), "../../../assets/icons-processed/Folders.svg": () => import("./Folders-B5L95qCi.js"), "../../../assets/icons-processed/Footprints.svg": () => import("./Footprints-CSQblPEZ.js"), "../../../assets/icons-processed/Forklift.svg": () => import("./Forklift-DeeNRVKP.js"), "../../../assets/icons-processed/Form-input.svg": () => import("./Form-input-BzVosDrp.js"), "../../../assets/icons-processed/Forward.svg": () => import("./Forward-DMsyP2jR.js"), "../../../assets/icons-processed/Frame.svg": () => import("./Frame-Df4asqv-.js"), "../../../assets/icons-processed/Framer.svg": () => import("./Framer-T37xKf8k.js"), "../../../assets/icons-processed/Frown.svg": () => import("./Frown-4pNHC9yG.js"), "../../../assets/icons-processed/Fuel.svg": () => import("./Fuel-e3tM6h2P.js"), "../../../assets/icons-processed/Function-square.svg": () => import("./Function-square-DMtt2SIA.js"), "../../../assets/icons-processed/GIft.svg": () => import("./GIft-D7EvUUvv.js"), "../../../assets/icons-processed/Gallery-horizontal-end.svg": () => import("./Gallery-horizontal-end-DIU1SErs.js"), "../../../assets/icons-processed/Gallery-horizontal.svg": () => import("./Gallery-horizontal-q63r3Tku.js"), "../../../assets/icons-processed/Gallery-thumbnails.svg": () => import("./Gallery-thumbnails-DfSYiUnF.js"), "../../../assets/icons-processed/Gallery-vertical-end.svg": () => import("./Gallery-vertical-end-k6zKympb.js"), "../../../assets/icons-processed/Gallery-vertical.svg": () => import("./Gallery-vertical-DDH-8uAf.js"), "../../../assets/icons-processed/Gamepad-2.svg": () => import("./Gamepad-2-Cr9CYN57.js"), "../../../assets/icons-processed/Gamepad.svg": () => import("./Gamepad-D-HzpFV0.js"), "../../../assets/icons-processed/Gantt-chart-square.svg": () => import("./Gantt-chart-square-Bo7r_HIO.js"), "../../../assets/icons-processed/Gantt-chart.svg": () => import("./Gantt-chart-Du99ni8Y.js"), "../../../assets/icons-processed/Gauge-circle.svg": () => import("./Gauge-circle-BJZW3Lg0.js"), "../../../assets/icons-processed/Gauge.svg": () => import("./Gauge-VYoRLxgr.js"), "../../../assets/icons-processed/Gavel.svg": () => import("./Gavel-Chye_6Sk.js"), "../../../assets/icons-processed/Gem.svg": () => import("./Gem-B1lQTARc.js"), "../../../assets/icons-processed/Ghost.svg": () => import("./Ghost-Cf8Ttu71.js"), "../../../assets/icons-processed/Git-branch-plus.svg": () => import("./Git-branch-plus-vIiGcSYG.js"), "../../../assets/icons-processed/Git-branch.svg": () => import("./Git-branch-DAyAo89o.js"), "../../../assets/icons-processed/Git-commit.svg": () => import("./Git-commit-DpgYYzul.js"), "../../../assets/icons-processed/Git-compare.svg": () => import("./Git-compare-PwLf8HYf.js"), "../../../assets/icons-processed/Git-fork.svg": () => import("./Git-fork-qWcL9kkB.js"), "../../../assets/icons-processed/Git-merge.svg": () => import("./Git-merge-D59QIuLy.js"), "../../../assets/icons-processed/Git-pull-request-closed.svg": () => import("./Git-pull-request-closed-Cn5Kllo0.js"), "../../../assets/icons-processed/Git-pull-request-draft.svg": () => import("./Git-pull-request-draft-ChXR2Ted.js"), "../../../assets/icons-processed/Git-pull-request.svg": () => import("./Git-pull-request-DvdtZRhx.js"), "../../../assets/icons-processed/Github.svg": () => import("./Github-CVc9lceZ.js"), "../../../assets/icons-processed/Gitlab.svg": () => import("./Gitlab-DL1hN2j_.js"), "../../../assets/icons-processed/Glass-water.svg": () => import("./Glass-water-vXYgDcYp.js"), "../../../assets/icons-processed/Glasses.svg": () => import("./Glasses-BlbdGB-e.js"), "../../../assets/icons-processed/Globe-2.svg": () => import("./Globe-2-BXArIKiA.js"), "../../../assets/icons-processed/Goal.svg": () => import("./Goal-CKWIju6Z.js"), "../../../assets/icons-processed/Grab.svg": () => import("./Grab-jMoakef3.js"), "../../../assets/icons-processed/Graduation-cap.svg": () => import("./Graduation-cap-BXcKYfTc.js"), "../../../assets/icons-processed/Grape.svg": () => import("./Grape-BBswQsGO.js"), "../../../assets/icons-processed/Grid-2x2.svg": () => import("./Grid-2x2-DSM074pB.js"), "../../../assets/icons-processed/Grid-3x3.svg": () => import("./Grid-3x3-D-mk9cpV.js"), "../../../assets/icons-processed/Grip-horizontal.svg": () => import("./Grip-horizontal-DHFMK3fq.js"), "../../../assets/icons-processed/Grip-vertical.svg": () => import("./Grip-vertical-CYkndEco.js"), "../../../assets/icons-processed/Grip.svg": () => import("./Grip-CGxALGzs.js"), "../../../assets/icons-processed/Group.svg": () => import("./Group-BGw9Xx8Z.js"), "../../../assets/icons-processed/Hammer.svg": () => import("./Hammer-CG-gOdtR.js"), "../../../assets/icons-processed/Hand-metal.svg": () => import("./Hand-metal-BtvppJTN.js"), "../../../assets/icons-processed/Hand.svg": () => import("./Hand-CyK9EsfY.js"), "../../../assets/icons-processed/Hard-drive-download.svg": () => import("./Hard-drive-download-DNUWSjYm.js"), "../../../assets/icons-processed/Hard-drive-upload.svg": () => import("./Hard-drive-upload-BnISwMyS.js"), "../../../assets/icons-processed/Hard-drive.svg": () => import("./Hard-drive-N0m3lEWe.js"), "../../../assets/icons-processed/Hard-hat.svg": () => import("./Hard-hat-C9NUzN_I.js"), "../../../assets/icons-processed/Hash.svg": () => import("./Hash-Bu-GTXfP.js"), "../../../assets/icons-processed/Haze.svg": () => import("./Haze-0I_PvA7x.js"), "../../../assets/icons-processed/Hdmi-port.svg": () => import("./Hdmi-port-DMc6w3Jt.js"), "../../../assets/icons-processed/Heading-1.svg": () => import("./Heading-1-DypDBhTK.js"), "../../../assets/icons-processed/Heading-2.svg": () => import("./Heading-2-DiMNLa8C.js"), "../../../assets/icons-processed/Heading-3.svg": () => import("./Heading-3-CHfxdxwO.js"), "../../../assets/icons-processed/Heading-4.svg": () => import("./Heading-4-3IzgFCR4.js"), "../../../assets/icons-processed/Heading-5.svg": () => import("./Heading-5-6CbJ3BRA.js"), "../../../assets/icons-processed/Heading-6.svg": () => import("./Heading-6-B7coV1u9.js"), "../../../assets/icons-processed/Heading.svg": () => import("./Heading-B0OVy-_N.js"), "../../../assets/icons-processed/Headphones.svg": () => import("./Headphones-dJucVg3O.js"), "../../../assets/icons-processed/Heart-crack.svg": () => import("./Heart-crack-Be3NJ13L.js"), "../../../assets/icons-processed/Heart-fill.svg": () => import("./Heart-fill-Bb_-vQZs.js"), "../../../assets/icons-processed/Heart-handshake.svg": () => import("./Heart-handshake-FjwNhnd7.js"), "../../../assets/icons-processed/Heart-off.svg": () => import("./Heart-off-DVs6eC4u.js"), "../../../assets/icons-processed/Heart-pulse.svg": () => import("./Heart-pulse-Bir8Fck8.js"), "../../../assets/icons-processed/Heart.svg": () => import("./Heart-whRyCJ9N.js"), "../../../assets/icons-processed/Help-circle.svg": () => import("./Help-circle-DtUKIBkv.js"), "../../../assets/icons-processed/Helping-hand.svg": () => import("./Helping-hand-BhM87-bB.js"), "../../../assets/icons-processed/Hexagon.svg": () => import("./Hexagon-B4vgYr3f.js"), "../../../assets/icons-processed/Highlighter.svg": () => import("./Highlighter-D9WM0Ptq.js"), "../../../assets/icons-processed/History.svg": () => import("./History-CD9KoxIr.js"), "../../../assets/icons-processed/Home.svg": () => import("./Home-Cpr6FV43.js"), "../../../assets/icons-processed/Hop-off.svg": () => import("./Hop-off-CYQTHDPr.js"), "../../../assets/icons-processed/Hop.svg": () => import("./Hop-WGc5ynxf.js"), "../../../assets/icons-processed/Hotel.svg": () => import("./Hotel-BqTfM89F.js"), "../../../assets/icons-processed/Hourglass.svg": () => import("./Hourglass-_0IyuLKl.js"), "../../../assets/icons-processed/Ice-cream-2.svg": () => import("./Ice-cream-2-Cd7D36Sr.js"), "../../../assets/icons-processed/Ice-cream.svg": () => import("./Ice-cream-BqUlaUlu.js"), "../../../assets/icons-processed/Image-minus.svg": () => import("./Image-minus-BrCRjwcU.js"), "../../../assets/icons-processed/Image-off.svg": () => import("./Image-off-GjOxn63M.js"), "../../../assets/icons-processed/Image-plus.svg": () => import("./Image-plus-DOSxfdbO.js"), "../../../assets/icons-processed/Image.svg": () => import("./Image-YP3Wcx90.js"), "../../../assets/icons-processed/Import.svg": () => import("./Import-QaRyk3IS.js"), "../../../assets/icons-processed/Inbox.svg": () => import("./Inbox-CQdIXmnZ.js"), "../../../assets/icons-processed/Indent.svg": () => import("./Indent-DYXGBNEe.js"), "../../../assets/icons-processed/Indian-rupee.svg": () => import("./Indian-rupee-CnkOcjZ4.js"), "../../../assets/icons-processed/Infinity.svg": () => import("./Infinity-ZibHvpnZ.js"), "../../../assets/icons-processed/Info.svg": () => import("./Info-DMvM4bKQ.js"), "../../../assets/icons-processed/Instagram.svg": () => import("./Instagram-C52YnxoB.js"), "../../../assets/icons-processed/Italic.svg": () => import("./Italic-ClNLCPwo.js"), "../../../assets/icons-processed/Iteration-ccw.svg": () => import("./Iteration-ccw-DJMIMfVj.js"), "../../../assets/icons-processed/Iteration-cw.svg": () => import("./Iteration-cw-WqTl2GrJ.js"), "../../../assets/icons-processed/Japanese-yen.svg": () => import("./Japanese-yen-By0lACOC.js"), "../../../assets/icons-processed/Joystick.svg": () => import("./Joystick-k26pLd0u.js"), "../../../assets/icons-processed/Kanban-square-dashed.svg": () => import("./Kanban-square-dashed-Vpso3NJx.js"), "../../../assets/icons-processed/Kanban-square.svg": () => import("./Kanban-square-Caf9UXug.js"), "../../../assets/icons-processed/Kanban.svg": () => import("./Kanban-CFxvomka.js"), "../../../assets/icons-processed/Key-round.svg": () => import("./Key-round-ClnowGOa.js"), "../../../assets/icons-processed/Key-square.svg": () => import("./Key-square-CbNUvmdN.js"), "../../../assets/icons-processed/Key.svg": () => import("./Key-02wcPz16.js"), "../../../assets/icons-processed/Keyboard.svg": () => import("./Keyboard-DERmTijA.js"), "../../../assets/icons-processed/Lamp-ceiling.svg": () => import("./Lamp-ceiling-BqQHSR2r.js"), "../../../assets/icons-processed/Lamp-desk.svg": () => import("./Lamp-desk-Ce6k9N01.js"), "../../../assets/icons-processed/Lamp-floor.svg": () => import("./Lamp-floor-BT_BfBlJ.js"), "../../../assets/icons-processed/Lamp-wall-down.svg": () => import("./Lamp-wall-down-VK9yI3tg.js"), "../../../assets/icons-processed/Lamp-wall-up.svg": () => import("./Lamp-wall-up-6nd2_Bii.js"), "../../../assets/icons-processed/Lamp.svg": () => import("./Lamp-Un1JZTPH.js"), "../../../assets/icons-processed/Landmark.svg": () => import("./Landmark-d-f7gsHA.js"), "../../../assets/icons-processed/Languages.svg": () => import("./Languages-DyFGDlHZ.js"), "../../../assets/icons-processed/Laptop-2.svg": () => import("./Laptop-2-1sbDHNZl.js"), "../../../assets/icons-processed/Laptop.svg": () => import("./Laptop-DckjUf4d.js"), "../../../assets/icons-processed/Lasso-select.svg": () => import("./Lasso-select-CaeUorpd.js"), "../../../assets/icons-processed/Lasso.svg": () => import("./Lasso-C4CXYm-H.js"), "../../../assets/icons-processed/Laugh.svg": () => import("./Laugh-B51CnRKQ.js"), "../../../assets/icons-processed/Layers.svg": () => import("./Layers-B8kInCdd.js"), "../../../assets/icons-processed/Layout-dashboard.svg": () => import("./Layout-dashboard-C2wPkKC9.js"), "../../../assets/icons-processed/Layout-grid.svg": () => import("./Layout-grid-CYHOI4xf.js"), "../../../assets/icons-processed/Layout-list.svg": () => import("./Layout-list-B9vMylxD.js"), "../../../assets/icons-processed/Layout-panel-left.svg": () => import("./Layout-panel-left-BL10u03J.js"), "../../../assets/icons-processed/Layout-panel-top.svg": () => import("./Layout-panel-top-DHQJ8Jkh.js"), "../../../assets/icons-processed/Layout-template.svg": () => import("./Layout-template-B7gpejlI.js"), "../../../assets/icons-processed/Layout.svg": () => import("./Layout-SxBB2pHT.js"), "../../../assets/icons-processed/Leaf.svg": () => import("./Leaf-DfdmuVXb.js"), "../../../assets/icons-processed/Leafy-green.svg": () => import("./Leafy-green-Cr35HbBr.js"), "../../../assets/icons-processed/Library.svg": () => import("./Library-CPi3eJCD.js"), "../../../assets/icons-processed/Life-buoy.svg": () => import("./Life-buoy-VqSB4v8y.js"), "../../../assets/icons-processed/Ligature.svg": () => import("./Ligature-QAcqEyQm.js"), "../../../assets/icons-processed/Lightbulb-off.svg": () => import("./Lightbulb-off-uGkKtnwH.js"), "../../../assets/icons-processed/Lightbulb.svg": () => import("./Lightbulb-DqazGGoi.js"), "../../../assets/icons-processed/Line-chart.svg": () => import("./Line-chart-BTxrb-_N.js"), "../../../assets/icons-processed/Link-2-off.svg": () => import("./Link-2-off-C2wkwQa1.js"), "../../../assets/icons-processed/Link-2.svg": () => import("./Link-2-Bx-VxLXp.js"), "../../../assets/icons-processed/Linkedin.svg": () => import("./Linkedin-CKtzPBdc.js"), "../../../assets/icons-processed/List-checks.svg": () => import("./List-checks-CTmzX0hl.js"), "../../../assets/icons-processed/List-end.svg": () => import("./List-end-DOdIhNod.js"), "../../../assets/icons-processed/List-filter.svg": () => import("./List-filter-DPaDenpT.js"), "../../../assets/icons-processed/List-minus.svg": () => import("./List-minus-DjXoVfSi.js"), "../../../assets/icons-processed/List-music.svg": () => import("./List-music-CxhllPPP.js"), "../../../assets/icons-processed/List-ordered.svg": () => import("./List-ordered-uYcBR_FX.js"), "../../../assets/icons-processed/List-plus.svg": () => import("./List-plus-U2ijrpZO.js"), "../../../assets/icons-processed/List-restart.svg": () => import("./List-restart-jUEf6RFl.js"), "../../../assets/icons-processed/List-start.svg": () => import("./List-start-CQ4BonbL.js"), "../../../assets/icons-processed/List-todo.svg": () => import("./List-todo-43knIDVr.js"), "../../../assets/icons-processed/List-tree.svg": () => import("./List-tree-BYxY8qXu.js"), "../../../assets/icons-processed/List-video.svg": () => import("./List-video-DjplXVS7.js"), "../../../assets/icons-processed/List-x.svg": () => import("./List-x-Li33yxUP.js"), "../../../assets/icons-processed/List.svg": () => import("./List-kHU0fjwN.js"), "../../../assets/icons-processed/Loader-2.svg": () => import("./Loader-2-faaK01tG.js"), "../../../assets/icons-processed/Loader.svg": () => import("./Loader-oZmquOJm.js"), "../../../assets/icons-processed/Locate-fixed.svg": () => import("./Locate-fixed-BrVKCZlU.js"), "../../../assets/icons-processed/Locate-off.svg": () => import("./Locate-off-nqzRckb4.js"), "../../../assets/icons-processed/Locate.svg": () => import("./Locate-B_Q2HlED.js"), "../../../assets/icons-processed/Lock.svg": () => import("./Lock-BtvySkiE.js"), "../../../assets/icons-processed/Log-in.svg": () => import("./Log-in-DuD7YIsj.js"), "../../../assets/icons-processed/Log-out.svg": () => import("./Log-out-Bsb1wNiX.js"), "../../../assets/icons-processed/Lollipop.svg": () => import("./Lollipop-CQy2tw5Z.js"), "../../../assets/icons-processed/Luggage.svg": () => import("./Luggage-Bpt9DT_Q.js"), "../../../assets/icons-processed/M-square.svg": () => import("./M-square-ucpQfSZ5.js"), "../../../assets/icons-processed/Magnet.svg": () => import("./Magnet-BSV-gFhK.js"), "../../../assets/icons-processed/Mail-check.svg": () => import("./Mail-check-C1q7SbrM.js"), "../../../assets/icons-processed/Mail-minus.svg": () => import("./Mail-minus-DYr67s7q.js"), "../../../assets/icons-processed/Mail-open.svg": () => import("./Mail-open-69z852f_.js"), "../../../assets/icons-processed/Mail-plus.svg": () => import("./Mail-plus-p0mKAqJp.js"), "../../../assets/icons-processed/Mail-question.svg": () => import("./Mail-question-vxSWfH9v.js"), "../../../assets/icons-processed/Mail-search.svg": () => import("./Mail-search-BcaMg9Yc.js"), "../../../assets/icons-processed/Mail-warning.svg": () => import("./Mail-warning-D_roHLeR.js"), "../../../assets/icons-processed/Mail-x.svg": () => import("./Mail-x-BCiOFiyU.js"), "../../../assets/icons-processed/Mail.svg": () => import("./Mail-DhGvHqZC.js"), "../../../assets/icons-processed/Mailbox.svg": () => import("./Mailbox-CiTn2pQ4.js"), "../../../assets/icons-processed/Mails.svg": () => import("./Mails-CY5nhP3p.js"), "../../../assets/icons-processed/Map-pin-off.svg": () => import("./Map-pin-off-DORuPyHJ.js"), "../../../assets/icons-processed/Map-pin.svg": () => import("./Map-pin-CdOT7a9e.js"), "../../../assets/icons-processed/Map.svg": () => import("./Map-B5_rDWlo.js"), "../../../assets/icons-processed/Martini.svg": () => import("./Martini-CTmaCyVs.js"), "../../../assets/icons-processed/Maximize-2.svg": () => import("./Maximize-2-CaQaPcel.js"), "../../../assets/icons-processed/Maximize.svg": () => import("./Maximize-DE2XqHrc.js"), "../../../assets/icons-processed/Medal.svg": () => import("./Medal-Ws-eCNUr.js"), "../../../assets/icons-processed/Megaphone-off.svg": () => import("./Megaphone-off-Dk9gUWji.js"), "../../../assets/icons-processed/Megaphone.svg": () => import("./Megaphone-D3qgD9Mb.js"), "../../../assets/icons-processed/Meh.svg": () => import("./Meh-ChfwuqFF.js"), "../../../assets/icons-processed/Memory-stick.svg": () => import("./Memory-stick-D912a9JE.js"), "../../../assets/icons-processed/Menu-square.svg": () => import("./Menu-square-CEiGGy0v.js"), "../../../assets/icons-processed/Menu.svg": () => import("./Menu-CMV1S3i1.js"), "../../../assets/icons-processed/Merge.svg": () => import("./Merge-CtbRrpZU.js"), "../../../assets/icons-processed/Message-circle.svg": () => import("./Message-circle-DrfnA7qR.js"), "../../../assets/icons-processed/Message-square-dashed.svg": () => import("./Message-square-dashed-BVmk_Hzd.js"), "../../../assets/icons-processed/Message-square-plus.svg": () => import("./Message-square-plus-DQbHBiHW.js"), "../../../assets/icons-processed/Message-square.svg": () => import("./Message-square-BJNq4axp.js"), "../../../assets/icons-processed/Messages-square.svg": () => import("./Messages-square-CBXWmNrg.js"), "../../../assets/icons-processed/Mic-2.svg": () => import("./Mic-2-XsdXcLNs.js"), "../../../assets/icons-processed/Mic-off.svg": () => import("./Mic-off-PgVOY2U4.js"), "../../../assets/icons-processed/Mic.svg": () => import("./Mic-CQP3aEKj.js"), "../../../assets/icons-processed/Microscope.svg": () => import("./Microscope-DM19UkbW.js"), "../../../assets/icons-processed/Microwave.svg": () => import("./Microwave-Bhstfj99.js"), "../../../assets/icons-processed/Milestone.svg": () => import("./Milestone-DUNgkEc8.js"), "../../../assets/icons-processed/Milk-off.svg": () => import("./Milk-off-BChqJAIZ.js"), "../../../assets/icons-processed/Milk.svg": () => import("./Milk-Canqemo7.js"), "../../../assets/icons-processed/Minimize-2.svg": () => import("./Minimize-2-C3-lDRtH.js"), "../../../assets/icons-processed/Minimize.svg": () => import("./Minimize-BGY7_J5U.js"), "../../../assets/icons-processed/Minus-circle.svg": () => import("./Minus-circle-BMd2NEQI.js"), "../../../assets/icons-processed/Minus-square.svg": () => import("./Minus-square-Bny6T7nM.js"), "../../../assets/icons-processed/Minus.svg": () => import("./Minus-CfBfu72L.js"), "../../../assets/icons-processed/Monitor-check.svg": () => import("./Monitor-check-4beP_3gx.js"), "../../../assets/icons-processed/Monitor-dot.svg": () => import("./Monitor-dot-BK67y2Cp.js"), "../../../assets/icons-processed/Monitor-down.svg": () => import("./Monitor-down-DqTOsloi.js"), "../../../assets/icons-processed/Monitor-off.svg": () => import("./Monitor-off-CrbewF8F.js"), "../../../assets/icons-processed/Monitor-pause.svg": () => import("./Monitor-pause-BeufutmQ.js"), "../../../assets/icons-processed/Monitor-play.svg": () => import("./Monitor-play-CPQdwHyt.js"), "../../../assets/icons-processed/Monitor-smartphone.svg": () => import("./Monitor-smartphone-R0Ni-Kui.js"), "../../../assets/icons-processed/Monitor-speaker.svg": () => import("./Monitor-speaker-b5-USgzF.js"), "../../../assets/icons-processed/Monitor-stop.svg": () => import("./Monitor-stop-BgW4KYyW.js"), "../../../assets/icons-processed/Monitor-up.svg": () => import("./Monitor-up-BwDpPvjW.js"), "../../../assets/icons-processed/Monitor-x.svg": () => import("./Monitor-x-gzvijXLL.js"), "../../../assets/icons-processed/Monitor.svg": () => import("./Monitor-CQMQSTfV.js"), "../../../assets/icons-processed/Moon-star.svg": () => import("./Moon-star-BAf6Vyeh.js"), "../../../assets/icons-processed/Moon.svg": () => import("./Moon-X6FacELx.js"), "../../../assets/icons-processed/More-horizontal.svg": () => import("./More-horizontal-B-LLEkRe.js"), "../../../assets/icons-processed/More-vertical.svg": () => import("./More-vertical-5a887qXx.js"), "../../../assets/icons-processed/Mountain-snow.svg": () => import("./Mountain-snow-C6LKyWTQ.js"), "../../../assets/icons-processed/Mountain.svg": () => import("./Mountain-wUA0mRQf.js"), "../../../assets/icons-processed/Mouse-pointer-2.svg": () => import("./Mouse-pointer-2-1flkk32S.js"), "../../../assets/icons-processed/Mouse-pointer-click.svg": () => import("./Mouse-pointer-click-pOcepIfs.js"), "../../../assets/icons-processed/Mouse-pointer-square-dashed.svg": () => import("./Mouse-pointer-square-dashed-BArnFEZt.js"), "../../../assets/icons-processed/Mouse-pointer-square.svg": () => import("./Mouse-pointer-square-Ct42znZL.js"), "../../../assets/icons-processed/Mouse-pointer.svg": () => import("./Mouse-pointer-C-jngXlg.js"), "../../../assets/icons-processed/Mouse.svg": () => import("./Mouse-B2aHoRjQ.js"), "../../../assets/icons-processed/Move-3d.svg": () => import("./Move-3d-LCVFioFG.js"), "../../../assets/icons-processed/Move-diagonal-2.svg": () => import("./Move-diagonal-2-Tv53y5FT.js"), "../../../assets/icons-processed/Move-diagonal.svg": () => import("./Move-diagonal-DfVp4YcD.js"), "../../../assets/icons-processed/Move-down-left.svg": () => import("./Move-down-left-CVXMNUbc.js"), "../../../assets/icons-processed/Move-down-right.svg": () => import("./Move-down-right-BteiiML_.js"), "../../../assets/icons-processed/Move-down.svg": () => import("./Move-down-BHXqt7ys.js"), "../../../assets/icons-processed/Move-horizontal.svg": () => import("./Move-horizontal-BDGI4aRo.js"), "../../../assets/icons-processed/Move-left.svg": () => import("./Move-left-BDM0bXmg.js"), "../../../assets/icons-processed/Move-right.svg": () => import("./Move-right-DMDONwwk.js"), "../../../assets/icons-processed/Move-up-left.svg": () => import("./Move-up-left-sj0PfUeh.js"), "../../../assets/icons-processed/Move-up-right.svg": () => import("./Move-up-right-CuUML9kB.js"), "../../../assets/icons-processed/Move-up.svg": () => import("./Move-up-BCTsilEx.js"), "../../../assets/icons-processed/Move-vertical.svg": () => import("./Move-vertical-BoCy_li0.js"), "../../../assets/icons-processed/Move.svg": () => import("./Move-lWbObw19.js"), "../../../assets/icons-processed/Music-2.svg": () => import("./Music-2-CNOWx1gh.js"), "../../../assets/icons-processed/Music-3.svg": () => import("./Music-3-CHw6n5XE.js"), "../../../assets/icons-processed/Music-4.svg": () => import("./Music-4-BTsxjKDl.js"), "../../../assets/icons-processed/Music.svg": () => import("./Music-BDk0dk7y.js"), "../../../assets/icons-processed/NFC.svg": () => import("./NFC-CjpV9Yjs.js"), "../../../assets/icons-processed/Navigation-2-off.svg": () => import("./Navigation-2-off-cBO8Y52L.js"), "../../../assets/icons-processed/Navigation-2.svg": () => import("./Navigation-2-AOdS9B95.js"), "../../../assets/icons-processed/Navigation-off.svg": () => import("./Navigation-off-BUwO7ac9.js"), "../../../assets/icons-processed/Navigation.svg": () => import("./Navigation-Bq96NLmx.js"), "../../../assets/icons-processed/Network.svg": () => import("./Network-CLBWS7-D.js"), "../../../assets/icons-processed/Newspaper.svg": () => import("./Newspaper-Cs3D1Aql.js"), "../../../assets/icons-processed/Nut-off.svg": () => import("./Nut-off-qvoQB6Kl.js"), "../../../assets/icons-processed/Nut.svg": () => import("./Nut-COiJHHKT.js"), "../../../assets/icons-processed/Octagon.svg": () => import("./Octagon-CgVw3bEM.js"), "../../../assets/icons-processed/Option.svg": () => import("./Option-CG-6zeCp.js"), "../../../assets/icons-processed/Orbit.svg": () => import("./Orbit-Cxc6w6qh.js"), "../../../assets/icons-processed/Outdent.svg": () => import("./Outdent-DqHv3WsF.js"), "../../../assets/icons-processed/Package-2.svg": () => import("./Package-2-DepM_tqG.js"), "../../../assets/icons-processed/Package-check.svg": () => import("./Package-check-hs8Wfn6_.js"), "../../../assets/icons-processed/Package-first.svg": () => import("./Package-first-DvNPcs9o.js"), "../../../assets/icons-processed/Package-minus.svg": () => import("./Package-minus-28gagMrR.js"), "../../../assets/icons-processed/Package-open.svg": () => import("./Package-open-ba6neSsm.js"), "../../../assets/icons-processed/Package-plus.svg": () => import("./Package-plus-R3IdM67v.js"), "../../../assets/icons-processed/Package-search.svg": () => import("./Package-search-m5WJJ8nC.js"), "../../../assets/icons-processed/Package-x.svg": () => import("./Package-x-D1zotp3F.js"), "../../../assets/icons-processed/Paint-bucket.svg": () => import("./Paint-bucket-DLAjf_jB.js"), "../../../assets/icons-processed/Paintbrush-2.svg": () => import("./Paintbrush-2-1sM-hlOY.js"), "../../../assets/icons-processed/Paintbrush.svg": () => import("./Paintbrush-BR2pJi_H.js"), "../../../assets/icons-processed/Palette.svg": () => import("./Palette-Ll1RMzta.js"), "../../../assets/icons-processed/Palmtree.svg": () => import("./Palmtree-B045-Lop.js"), "../../../assets/icons-processed/Panel-bottom-close.svg": () => import("./Panel-bottom-close-BhkjNURh.js"), "../../../assets/icons-processed/Panel-bottom-inactive.svg": () => import("./Panel-bottom-inactive-BZviGmKs.js"), "../../../assets/icons-processed/Panel-bottom-open.svg": () => import("./Panel-bottom-open-DRSp1-sG.js"), "../../../assets/icons-processed/Panel-bottom.svg": () => import("./Panel-bottom-vyRTNfV1.js"), "../../../assets/icons-processed/Panel-left-close.svg": () => import("./Panel-left-close-DRYwXTOc.js"), "../../../assets/icons-processed/Panel-left-inactive.svg": () => import("./Panel-left-inactive-BpdeT54B.js"), "../../../assets/icons-processed/Panel-left-open.svg": () => import("./Panel-left-open-COQBBFvL.js"), "../../../assets/icons-processed/Panel-left.svg": () => import("./Panel-left-CJACRxLr.js"), "../../../assets/icons-processed/Panel-right-close.svg": () => import("./Panel-right-close-Cw8QNv3W.js"), "../../../assets/icons-processed/Panel-right-inactive.svg": () => import("./Panel-right-inactive-Ca29MWz5.js"), "../../../assets/icons-processed/Panel-right-open.svg": () => import("./Panel-right-open-IzllIlxH.js"), "../../../assets/icons-processed/Panel-right.svg": () => import("./Panel-right-CHfJaLil.js"), "../../../assets/icons-processed/Panel-top-close.svg": () => import("./Panel-top-close-DhhhceIy.js"), "../../../assets/icons-processed/Panel-top-inactive.svg": () => import("./Panel-top-inactive-5-VSy34C.js"), "../../../assets/icons-processed/Panel-top-open.svg": () => import("./Panel-top-open-CdIpoIWU.js"), "../../../assets/icons-processed/Panel-top.svg": () => import("./Panel-top-B2s_wkbt.js"), "../../../assets/icons-processed/Paperclip.svg": () => import("./Paperclip-DxKpUEbp.js"), "../../../assets/icons-processed/Parentheses.svg": () => import("./Parentheses-DJaGak_p.js"), "../../../assets/icons-processed/Parking-circle-off.svg": () => import("./Parking-circle-off-BgM5zusi.js"), "../../../assets/icons-processed/Parking-circle.svg": () => import("./Parking-circle-Crz8utYG.js"), "../../../assets/icons-processed/Parking-meter.svg": () => import("./Parking-meter-C3bLQYBZ.js"), "../../../assets/icons-processed/Parking-square-off.svg": () => import("./Parking-square-off-ynOFzZ2D.js"), "../../../assets/icons-processed/Parking-square.svg": () => import("./Parking-square-Da-4BzxI.js"), "../../../assets/icons-processed/Party-popper.svg": () => import("./Party-popper-sxU_wshx.js"), "../../../assets/icons-processed/Pause-circle.svg": () => import("./Pause-circle-DTdFJwHl.js"), "../../../assets/icons-processed/Pause-octagon.svg": () => import("./Pause-octagon-QVYr5vVh.js"), "../../../assets/icons-processed/Pause.svg": () => import("./Pause-BqCe1iyV.js"), "../../../assets/icons-processed/Paw-print.svg": () => import("./Paw-print-DrgjZp_h.js"), "../../../assets/icons-processed/Pc-case.svg": () => import("./Pc-case-CGyEgmsi.js"), "../../../assets/icons-processed/Pen-line.svg": () => import("./Pen-line-C7Q8Fc0p.js"), "../../../assets/icons-processed/Pen-square.svg": () => import("./Pen-square-DAJP94fm.js"), "../../../assets/icons-processed/Pen-tool.svg": () => import("./Pen-tool-B3sUlFZj.js"), "../../../assets/icons-processed/Pen.svg": () => import("./Pen-DKsU-EbW.js"), "../../../assets/icons-processed/Pencil-line.svg": () => import("./Pencil-line-BGL9I5kh.js"), "../../../assets/icons-processed/Pencil-ruler.svg": () => import("./Pencil-ruler-ChOPQTs9.js"), "../../../assets/icons-processed/Pencil.svg": () => import("./Pencil-BdUh0D01.js"), "../../../assets/icons-processed/Percent.svg": () => import("./Percent-SIHzsY_C.js"), "../../../assets/icons-processed/Person-standing.svg": () => import("./Person-standing-Ccde5nYH.js"), "../../../assets/icons-processed/Phone-call.svg": () => import("./Phone-call-C7midkkS.js"), "../../../assets/icons-processed/Phone-forwarded.svg": () => import("./Phone-forwarded-o1Qqt9H3.js"), "../../../assets/icons-processed/Phone-incoming.svg": () => import("./Phone-incoming-DOV9tLn2.js"), "../../../assets/icons-processed/Phone-missed.svg": () => import("./Phone-missed-CHCyA3a2.js"), "../../../assets/icons-processed/Phone-off.svg": () => import("./Phone-off-97O0wTu4.js"), "../../../assets/icons-processed/Phone-outgoing.svg": () => import("./Phone-outgoing-DI21Uw6U.js"), "../../../assets/icons-processed/Pi-square.svg": () => import("./Pi-square-Uuv4jwpZ.js"), "../../../assets/icons-processed/Pi.svg": () => import("./Pi-Dlk9Vh0f.js"), "../../../assets/icons-processed/Picture-in-picture-2.svg": () => import("./Picture-in-picture-2-DEvbeJzo.js"), "../../../assets/icons-processed/Picture-in-picture.svg": () => import("./Picture-in-picture-CnUMx7TD.js"), "../../../assets/icons-processed/Pie-chart.svg": () => import("./Pie-chart-4LchdKpa.js"), "../../../assets/icons-processed/Piggy-bank.svg": () => import("./Piggy-bank-C_Ck9yKJ.js"), "../../../assets/icons-processed/Pilcrow-square.svg": () => import("./Pilcrow-square-Dlu9KIJT.js"), "../../../assets/icons-processed/Pilcrow.svg": () => import("./Pilcrow-6cHR2w78.js"), "../../../assets/icons-processed/Pill.svg": () => import("./Pill-DYaI1rU_.js"), "../../../assets/icons-processed/Pin-off.svg": () => import("./Pin-off-DfiEzFXH.js"), "../../../assets/icons-processed/Pin.svg": () => import("./Pin-D_iEOQub.js"), "../../../assets/icons-processed/Pipette.svg": () => import("./Pipette-BZs1DFKi.js"), "../../../assets/icons-processed/Pizza.svg": () => import("./Pizza-CyrPnP3n.js"), "../../../assets/icons-processed/Plane-landing.svg": () => import("./Plane-landing-CDpK_Jc3.js"), "../../../assets/icons-processed/Plane-takeoff.svg": () => import("./Plane-takeoff-nluXclHt.js"), "../../../assets/icons-processed/Plane.svg": () => import("./Plane-CX-h5-KH.js"), "../../../assets/icons-processed/Play-circle.svg": () => import("./Play-circle-Drk_z_9k.js"), "../../../assets/icons-processed/Play-square.svg": () => import("./Play-square-Mlu5JBrV.js"), "../../../assets/icons-processed/Play.svg": () => import("./Play-CN1eOIFC.js"), "../../../assets/icons-processed/Plug-2.svg": () => import("./Plug-2-ClXtaxik.js"), "../../../assets/icons-processed/Plug-zap-2.svg": () => import("./Plug-zap-2-DXiB5wzg.js"), "../../../assets/icons-processed/Plug-zap.svg": () => import("./Plug-zap-BqnYjv-U.js"), "../../../assets/icons-processed/Plug.svg": () => import("./Plug-C-Rv_zRO.js"), "../../../assets/icons-processed/Plus-circle.svg": () => import("./Plus-circle-DF71vrWf.js"), "../../../assets/icons-processed/Plus-square.svg": () => import("./Plus-square-DlRk5yrG.js"), "../../../assets/icons-processed/Plus.svg": () => import("./Plus-Bugr4WwC.js"), "../../../assets/icons-processed/Pocket-knife.svg": () => import("./Pocket-knife-CKk_NIk6.js"), "../../../assets/icons-processed/Pocket.svg": () => import("./Pocket-CK592LIp.js"), "../../../assets/icons-processed/Podcast.svg": () => import("./Podcast-DBOgEN2I.js"), "../../../assets/icons-processed/Pointer.svg": () => import("./Pointer-CuzA3CW3.js"), "../../../assets/icons-processed/Popcorn.svg": () => import("./Popcorn-BanBja1j.js"), "../../../assets/icons-processed/Popsicle.svg": () => import("./Popsicle--2os-MoE.js"), "../../../assets/icons-processed/Pound-sterling.svg": () => import("./Pound-sterling-Bsx7FCvi.js"), "../../../assets/icons-processed/Power-off.svg": () => import("./Power-off-CLsBgmnK.js"), "../../../assets/icons-processed/Power.svg": () => import("./Power-DsmudyGX.js"), "../../../assets/icons-processed/Presentation.svg": () => import("./Presentation-DJxAi5JL.js"), "../../../assets/icons-processed/Printer.svg": () => import("./Printer-DtHhCYeH.js"), "../../../assets/icons-processed/Projector.svg": () => import("./Projector-BqNgc8yY.js"), "../../../assets/icons-processed/Puzzle.svg": () => import("./Puzzle-HDt9UEMZ.js"), "../../../assets/icons-processed/Qr-code.svg": () => import("./Qr-code-LAYjCp4c.js"), "../../../assets/icons-processed/Quote.svg": () => import("./Quote-Cj6IwRCi.js"), "../../../assets/icons-processed/Rabbit.svg": () => import("./Rabbit-CT6cv4G5.js"), "../../../assets/icons-processed/Radar.svg": () => import("./Radar-DYA88N1h.js"), "../../../assets/icons-processed/Radiation.svg": () => import("./Radiation-CcbGOscx.js"), "../../../assets/icons-processed/Radio-receiver.svg": () => import("./Radio-receiver-CJ7gXYkE.js"), "../../../assets/icons-processed/Radio-tower.svg": () => import("./Radio-tower-BYX73oQj.js"), "../../../assets/icons-processed/Radio.svg": () => import("./Radio-DIP8Nt-s.js"), "../../../assets/icons-processed/Rail-symbol.svg": () => import("./Rail-symbol-Ch3pG-hE.js"), "../../../assets/icons-processed/Rainbow.svg": () => import("./Rainbow-O6ApoibJ.js"), "../../../assets/icons-processed/Rat.svg": () => import("./Rat-CvyGORSl.js"), "../../../assets/icons-processed/Ratio.svg": () => import("./Ratio-BAum48Lr.js"), "../../../assets/icons-processed/Receipt.svg": () => import("./Receipt-B21arV2E.js"), "../../../assets/icons-processed/Rectangle-horizontal.svg": () => import("./Rectangle-horizontal-s8EZBHwo.js"), "../../../assets/icons-processed/Rectangle-vertical.svg": () => import("./Rectangle-vertical-sTTzY0Ni.js"), "../../../assets/icons-processed/Recycle.svg": () => import("./Recycle-D5xPiMTo.js"), "../../../assets/icons-processed/Redo-2.svg": () => import("./Redo-2-DcmIyrR5.js"), "../../../assets/icons-processed/Redo-dot.svg": () => import("./Redo-dot-C95d3tt4.js"), "../../../assets/icons-processed/Redo.svg": () => import("./Redo-BBWTW0JC.js"), "../../../assets/icons-processed/Refresh-ccw-dot.svg": () => import("./Refresh-ccw-dot-CBC_9lVo.js"), "../../../assets/icons-processed/Refresh-ccw.svg": () => import("./Refresh-ccw-Ghsi7L_U.js"), "../../../assets/icons-processed/Refresh-cw-off.svg": () => import("./Refresh-cw-off-BHL84y2g.js"), "../../../assets/icons-processed/Refresh-cw.svg": () => import("./Refresh-cw-3MIkWydV.js"), "../../../assets/icons-processed/Refrigerator.svg": () => import("./Refrigerator-CWjyVtya.js"), "../../../assets/icons-processed/Regex.svg": () => import("./Regex-SeXoFDQe.js"), "../../../assets/icons-processed/Remove-formatting.svg": () => import("./Remove-formatting-8HSS9myw.js"), "../../../assets/icons-processed/Repeat-1.svg": () => import("./Repeat-1-DjjQRNKu.js"), "../../../assets/icons-processed/Repeat-2.svg": () => import("./Repeat-2-D5xLzm9D.js"), "../../../assets/icons-processed/Repeat.svg": () => import("./Repeat-CIc_ounv.js"), "../../../assets/icons-processed/Replace-all.svg": () => import("./Replace-all-aT6NMku_.js"), "../../../assets/icons-processed/Replace.svg": () => import("./Replace-DiX4K54Q.js"), "../../../assets/icons-processed/Reply-all.svg": () => import("./Reply-all-DUSAKE_F.js"), "../../../assets/icons-processed/Reply.svg": () => import("./Reply-DmceZxpO.js"), "../../../assets/icons-processed/Rewind.svg": () => import("./Rewind-B63Dw5FZ.js"), "../../../assets/icons-processed/Rocket.svg": () => import("./Rocket-C7ySB5Fm.js"), "../../../assets/icons-processed/Rocking-chair.svg": () => import("./Rocking-chair-D8imI5mD.js"), "../../../assets/icons-processed/Roller-coaster.svg": () => import("./Roller-coaster-BlQtkNF7.js"), "../../../assets/icons-processed/Rotate-3d.svg": () => import("./Rotate-3d-BrzUboe6.js"), "../../../assets/icons-processed/Rotate-ccw.svg": () => import("./Rotate-ccw-WlCw8lX5.js"), "../../../assets/icons-processed/Rotate-cw.svg": () => import("./Rotate-cw-XP9yPgWC.js"), "../../../assets/icons-processed/Router.svg": () => import("./Router-CAcp1c4l.js"), "../../../assets/icons-processed/Rows.svg": () => import("./Rows-D-21Pyuo.js"), "../../../assets/icons-processed/Rss.svg": () => import("./Rss-jlQ3ho1j.js"), "../../../assets/icons-processed/Ruler.svg": () => import("./Ruler-DzQ5hj8_.js"), "../../../assets/icons-processed/Russian-ruble.svg": () => import("./Russian-ruble-BRdkt-JW.js"), "../../../assets/icons-processed/Sailboat.svg": () => import("./Sailboat-3PDCI8C2.js"), "../../../assets/icons-processed/Salad.svg": () => import("./Salad-Bw1iDluH.js"), "../../../assets/icons-processed/Sandwich.svg": () => import("./Sandwich-B_MjpHDp.js"), "../../../assets/icons-processed/Satellite-dish.svg": () => import("./Satellite-dish-DF3aJqFu.js"), "../../../assets/icons-processed/Satellite.svg": () => import("./Satellite-D5MqFTAi.js"), "../../../assets/icons-processed/Save-all.svg": () => import("./Save-all-Cpv1rAQZ.js"), "../../../assets/icons-processed/Save.svg": () => import("./Save-DLVGBXGd.js"), "../../../assets/icons-processed/Scale-3d.svg": () => import("./Scale-3d-DS8eAD4K.js"), "../../../assets/icons-processed/Scale.svg": () => import("./Scale-D9_yHTND.js"), "../../../assets/icons-processed/Scaling.svg": () => import("./Scaling-0x0ImtgO.js"), "../../../assets/icons-processed/Scan-face.svg": () => import("./Scan-face-DhCY06AH.js"), "../../../assets/icons-processed/Scan-line.svg": () => import("./Scan-line-DjdfK1Dt.js"), "../../../assets/icons-processed/Scan.svg": () => import("./Scan-qDkA9XZI.js"), "../../../assets/icons-processed/Scatter-chart.svg": () => import("./Scatter-chart-Itpjbp2Y.js"), "../../../assets/icons-processed/School-2.svg": () => import("./School-2-DwJKzCC0.js"), "../../../assets/icons-processed/School.svg": () => import("./School-Be6rZZKD.js"), "../../../assets/icons-processed/Scissors-line-dashed.svg": () => import("./Scissors-line-dashed-AbnyFvFy.js"), "../../../assets/icons-processed/Scissors-square-dashed-bottom.svg": () => import("./Scissors-square-dashed-bottom-76rwOknv.js"), "../../../assets/icons-processed/Scissors-square.svg": () => import("./Scissors-square-CaU6eQQZ.js"), "../../../assets/icons-processed/Scissors.svg": () => import("./Scissors-Q25oNqxI.js"), "../../../assets/icons-processed/Screen-share-off.svg": () => import("./Screen-share-off-DwxX-7fs.js"), "../../../assets/icons-processed/Screen-share.svg": () => import("./Screen-share-C7D4gQiP.js"), "../../../assets/icons-processed/Scroll-text.svg": () => import("./Scroll-text-C3m8KaXh.js"), "../../../assets/icons-processed/Scroll.svg": () => import("./Scroll-DZir8W__.js"), "../../../assets/icons-processed/Search-check.svg": () => import("./Search-check-BhLeIYHF.js"), "../../../assets/icons-processed/Search-code.svg": () => import("./Search-code-DSi8razH.js"), "../../../assets/icons-processed/Search-slash.svg": () => import("./Search-slash-8mJY4pg1.js"), "../../../assets/icons-processed/Search-x.svg": () => import("./Search-x-DvAlqwJN.js"), "../../../assets/icons-processed/Search.svg": () => import("./Search-BdQlTQkS.js"), "../../../assets/icons-processed/Send-horizontal.svg": () => import("./Send-horizontal-CWTFgfIj.js"), "../../../assets/icons-processed/Send-to-back.svg": () => import("./Send-to-back-DgxTLNup.js"), "../../../assets/icons-processed/Send.svg": () => import("./Send-Bk-qbEhT.js"), "../../../assets/icons-processed/Separator-horizontal.svg": () => import("./Separator-horizontal-noaY0-1i.js"), "../../../assets/icons-processed/Separator-vertical.svg": () => import("./Separator-vertical-BJi0ynf1.js"), "../../../assets/icons-processed/Server-cog.svg": () => import("./Server-cog-Bk9Yt6ea.js"), "../../../assets/icons-processed/Server-crash.svg": () => import("./Server-crash-7gH9BuP8.js"), "../../../assets/icons-processed/Server-off.svg": () => import("./Server-off-C5FTXFmk.js"), "../../../assets/icons-processed/Server.svg": () => import("./Server-Cb7lgPoL.js"), "../../../assets/icons-processed/Settings-2.svg": () => import("./Settings-2-2zAv4WzT.js"), "../../../assets/icons-processed/Settings.svg": () => import("./Settings-Bk8DKIyj.js"), "../../../assets/icons-processed/Shapes.svg": () => import("./Shapes-BZ2n64n6.js"), "../../../assets/icons-processed/Share-2.svg": () => import("./Share-2-Bi43PAuv.js"), "../../../assets/icons-processed/Share.svg": () => import("./Share-J9X1mrB6.js"), "../../../assets/icons-processed/Sheet.svg": () => import("./Sheet-DTH9OBOT.js"), "../../../assets/icons-processed/Shell.svg": () => import("./Shell-BUd-kVhW.js"), "../../../assets/icons-processed/Shield-alert.svg": () => import("./Shield-alert-BZ8I5iRC.js"), "../../../assets/icons-processed/Shield-check.svg": () => import("./Shield-check-C0MoKXRy.js"), "../../../assets/icons-processed/Shield-close.svg": () => import("./Shield-close-zJfmY4OT.js"), "../../../assets/icons-processed/Shield-off.svg": () => import("./Shield-off-CHjG-z5F.js"), "../../../assets/icons-processed/Shield-question.svg": () => import("./Shield-question-LqglyHY9.js"), "../../../assets/icons-processed/Shield.svg": () => import("./Shield-C611TOMC.js"), "../../../assets/icons-processed/Ship-wheel.svg": () => import("./Ship-wheel-BXKg_4jD.js"), "../../../assets/icons-processed/Ship.svg": () => import("./Ship-u5NBANLx.js"), "../../../assets/icons-processed/Shirt.svg": () => import("./Shirt-CtJ_vYPA.js"), "../../../assets/icons-processed/Shopping-bag.svg": () => import("./Shopping-bag-hoMilsGH.js"), "../../../assets/icons-processed/Shopping-basket.svg": () => import("./Shopping-basket-Dk5PqUpM.js"), "../../../assets/icons-processed/Shopping-cart.svg": () => import("./Shopping-cart-NEVoBUc-.js"), "../../../assets/icons-processed/Shovel.svg": () => import("./Shovel-IINl8baD.js"), "../../../assets/icons-processed/Shower-head.svg": () => import("./Shower-head-Bi3FFaX-.js"), "../../../assets/icons-processed/Shrink.svg": () => import("./Shrink-T-yf9RTC.js"), "../../../assets/icons-processed/Shrub.svg": () => import("./Shrub-otYYXpiD.js"), "../../../assets/icons-processed/Shuffle.svg": () => import("./Shuffle-C2uMY8sa.js"), "../../../assets/icons-processed/Sigma-square.svg": () => import("./Sigma-square---coKY2h.js"), "../../../assets/icons-processed/Sigma.svg": () => import("./Sigma-Cv5bjUOM.js"), "../../../assets/icons-processed/Signal-high.svg": () => import("./Signal-high-Brul1mVe.js"), "../../../assets/icons-processed/Signal-low.svg": () => import("./Signal-low-DDQKbEJG.js"), "../../../assets/icons-processed/Signal-medium.svg": () => import("./Signal-medium-Dy4jV7P3.js"), "../../../assets/icons-processed/Signal-zero.svg": () => import("./Signal-zero-DixugrHe.js"), "../../../assets/icons-processed/Signal.svg": () => import("./Signal-BodGZYET.js"), "../../../assets/icons-processed/Siren.svg": () => import("./Siren-DLj6a0sK.js"), "../../../assets/icons-processed/Skip-back.svg": () => import("./Skip-back-B5LtZLXz.js"), "../../../assets/icons-processed/Skip-forward.svg": () => import("./Skip-forward-BQHn5SWu.js"), "../../../assets/icons-processed/Skull.svg": () => import("./Skull-gSPOtM-V.js"), "../../../assets/icons-processed/Slack.svg": () => import("./Slack-Do6-B2Bc.js"), "../../../assets/icons-processed/Slice.svg": () => import("./Slice-CV96Qf--.js"), "../../../assets/icons-processed/Sliders-horizontal.svg": () => import("./Sliders-horizontal-DW4DN2nM.js"), "../../../assets/icons-processed/Sliders.svg": () => import("./Sliders-CMfKouq4.js"), "../../../assets/icons-processed/Smartphone-charging.svg": () => import("./Smartphone-charging-Cs9TxoZ6.js"), "../../../assets/icons-processed/Smartphone-nfc.svg": () => import("./Smartphone-nfc-Bwf0LxMe.js"), "../../../assets/icons-processed/Smartphone.svg": () => import("./Smartphone-O3Zimygc.js"), "../../../assets/icons-processed/Smile-plus.svg": () => import("./Smile-plus-D8gvScHa.js"), "../../../assets/icons-processed/Smile.svg": () => import("./Smile-BEjMxyeL.js"), "../../../assets/icons-processed/Snail.svg": () => import("./Snail-BfXQhIED.js"), "../../../assets/icons-processed/Snowflake.svg": () => import("./Snowflake-BkfpyOV7.js"), "../../../assets/icons-processed/Sofa.svg": () => import("./Sofa-Bvi1zRSg.js"), "../../../assets/icons-processed/Soup.svg": () => import("./Soup-A5L5mS3x.js"), "../../../assets/icons-processed/Space.svg": () => import("./Space-DCUXnJH8.js"), "../../../assets/icons-processed/Spade.svg": () => import("./Spade-DFsBT5O4.js"), "../../../assets/icons-processed/Sparkle.svg": () => import("./Sparkle-BKbjtxKG.js"), "../../../assets/icons-processed/Sparkles.svg": () => import("./Sparkles-Bbu7wf9R.js"), "../../../assets/icons-processed/Speaker.svg": () => import("./Speaker-BVKJEDBM.js"), "../../../assets/icons-processed/Spell-check-2.svg": () => import("./Spell-check-2-CypTIAF8.js"), "../../../assets/icons-processed/Spell-check.svg": () => import("./Spell-check-1ch8pTdJ.js"), "../../../assets/icons-processed/Spline.svg": () => import("./Spline-BhZCASUt.js"), "../../../assets/icons-processed/Split-square-horizontal.svg": () => import("./Split-square-horizontal-Bb-PvL3T.js"), "../../../assets/icons-processed/Split-square-vertical.svg": () => import("./Split-square-vertical-ChCpwWKX.js"), "../../../assets/icons-processed/Split.svg": () => import("./Split-Ccbj23id.js"), "../../../assets/icons-processed/Spray-can.svg": () => import("./Spray-can-Cy24T1iA.js"), "../../../assets/icons-processed/Sprout.svg": () => import("./Sprout-3z0qWB0I.js"), "../../../assets/icons-processed/Square-asterisk.svg": () => import("./Square-asterisk-_QFbsuwc.js"), "../../../assets/icons-processed/Square-code.svg": () => import("./Square-code-Ch21K3Em.js"), "../../../assets/icons-processed/Square-dashed-bottom-code.svg": () => import("./Square-dashed-bottom-code-PHYAsUSa.js"), "../../../assets/icons-processed/Square-dashed-bottom.svg": () => import("./Square-dashed-bottom-vFo0Y3cT.js"), "../../../assets/icons-processed/Square-dot.svg": () => import("./Square-dot-y8Jo8tcI.js"), "../../../assets/icons-processed/Square-equal.svg": () => import("./Square-equal-CfWpYtA_.js"), "../../../assets/icons-processed/Square-slash.svg": () => import("./Square-slash-BVXd2Avy.js"), "../../../assets/icons-processed/Square-stack.svg": () => import("./Square-stack-C21Poq2N.js"), "../../../assets/icons-processed/Square.svg": () => import("./Square-CbbIzgw8.js"), "../../../assets/icons-processed/Squirrel.svg": () => import("./Squirrel-tOPSoiwd.js"), "../../../assets/icons-processed/Stamp.svg": () => import("./Stamp-DA4mWBdS.js"), "../../../assets/icons-processed/Star-half.svg": () => import("./Star-half-BOJ1wS6w.js"), "../../../assets/icons-processed/Star-off.svg": () => import("./Star-off-CFZlaop1.js"), "../../../assets/icons-processed/Star.svg": () => import("./Star-lhXnVYtj.js"), "../../../assets/icons-processed/Step-back.svg": () => import("./Step-back-C_YPXu_j.js"), "../../../assets/icons-processed/Step-forward.svg": () => import("./Step-forward-Ba0DcJyz.js"), "../../../assets/icons-processed/Sticker.svg": () => import("./Sticker-mseNoXAw.js"), "../../../assets/icons-processed/Sticky-note.svg": () => import("./Sticky-note-n_fcQ3Z5.js"), "../../../assets/icons-processed/Stop-circle.svg": () => import("./Stop-circle-C43Ga99Y.js"), "../../../assets/icons-processed/Store.svg": () => import("./Store-biz2WAk3.js"), "../../../assets/icons-processed/Stretch-horizontal.svg": () => import("./Stretch-horizontal-CVBVJjT0.js"), "../../../assets/icons-processed/Stretch-vertical.svg": () => import("./Stretch-vertical-GcA4HfkO.js"), "../../../assets/icons-processed/Strikethrough.svg": () => import("./Strikethrough-3-n1LWDK.js"), "../../../assets/icons-processed/Subscript.svg": () => import("./Subscript-LHAtz9Nr.js"), "../../../assets/icons-processed/Subtitles.svg": () => import("./Subtitles-CqMFWwO-.js"), "../../../assets/icons-processed/Sun-dim.svg": () => import("./Sun-dim-BS8aCnTq.js"), "../../../assets/icons-processed/Sun-medium.svg": () => import("./Sun-medium-CYb3PVVD.js"), "../../../assets/icons-processed/Sun-moon.svg": () => import("./Sun-moon-CUXbca8E.js"), "../../../assets/icons-processed/Sun-snow.svg": () => import("./Sun-snow-DVKQ_Q9W.js"), "../../../assets/icons-processed/Sun.svg": () => import("./Sun-BsYw_CgM.js"), "../../../assets/icons-processed/Sunrise.svg": () => import("./Sunrise-Ckr91MqG.js"), "../../../assets/icons-processed/Sunset.svg": () => import("./Sunset-0cTmj7qj.js"), "../../../assets/icons-processed/Superscript.svg": () => import("./Superscript-BQpYK5tU.js"), "../../../assets/icons-processed/Swiss-franc.svg": () => import("./Swiss-franc-DxeEeJDZ.js"), "../../../assets/icons-processed/Switch-camera.svg": () => import("./Switch-camera-DgHUatDN.js"), "../../../assets/icons-processed/Sword.svg": () => import("./Sword-BKshM9rb.js"), "../../../assets/icons-processed/Swords.svg": () => import("./Swords-BQ-u5gmg.js"), "../../../assets/icons-processed/Syringe.svg": () => import("./Syringe-ByrWjMcH.js"), "../../../assets/icons-processed/Table-2.svg": () => import("./Table-2-BGU8H21p.js"), "../../../assets/icons-processed/Table-properties.svg": () => import("./Table-properties-zvidEEp4.js"), "../../../assets/icons-processed/Table.svg": () => import("./Table-uq08-rTv.js"), "../../../assets/icons-processed/Tablet-smartphone.svg": () => import("./Tablet-smartphone-B-M0NibL.js"), "../../../assets/icons-processed/Tablet.svg": () => import("./Tablet-BFUcMrEw.js"), "../../../assets/icons-processed/Tablets.svg": () => import("./Tablets-CbxeJfo7.js"), "../../../assets/icons-processed/Tag.svg": () => import("./Tag-DxXYgaQR.js"), "../../../assets/icons-processed/Tags.svg": () => import("./Tags-ChxJb1l0.js"), "../../../assets/icons-processed/Tally-1.svg": () => import("./Tally-1-BrXrOF_B.js"), "../../../assets/icons-processed/Tally-2.svg": () => import("./Tally-2-DyLYX1Ym.js"), "../../../assets/icons-processed/Tally-3.svg": () => import("./Tally-3-CsgEr10a.js"), "../../../assets/icons-processed/Tally-4.svg": () => import("./Tally-4-DwL5TWD7.js"), "../../../assets/icons-processed/Tally-5.svg": () => import("./Tally-5-C5sek8Nc.js"), "../../../assets/icons-processed/Target.svg": () => import("./Target-Dwd-B51d.js"), "../../../assets/icons-processed/Tent.svg": () => import("./Tent-CXMVTcxv.js"), "../../../assets/icons-processed/Terminal-square.svg": () => import("./Terminal-square-Bt2gu4cl.js"), "../../../assets/icons-processed/Terminal.svg": () => import("./Terminal-CwSwoDA7.js"), "../../../assets/icons-processed/Test-tube-2.svg": () => import("./Test-tube-2-CIqvwUuk.js"), "../../../assets/icons-processed/Test-tube.svg": () => import("./Test-tube-CHM4q_AL.js"), "../../../assets/icons-processed/Test-tubes.svg": () => import("./Test-tubes-Do6Bia0J.js"), "../../../assets/icons-processed/Text-cursor-input.svg": () => import("./Text-cursor-input-DjMnb88T.js"), "../../../assets/icons-processed/Text-cursor.svg": () => import("./Text-cursor-tjlejmSp.js"), "../../../assets/icons-processed/Text-quote.svg": () => import("./Text-quote-BxZ_ll6f.js"), "../../../assets/icons-processed/Text-select.svg": () => import("./Text-select-CX2Gyrrq.js"), "../../../assets/icons-processed/Text.svg": () => import("./Text-uyJ-7OSJ.js"), "../../../assets/icons-processed/Thermometer-snowflake.svg": () => import("./Thermometer-snowflake-BK8NNuNt.js"), "../../../assets/icons-processed/Thermometer-sun.svg": () => import("./Thermometer-sun-00drKUep.js"), "../../../assets/icons-processed/Thermometer.svg": () => import("./Thermometer-BCNxhaLZ.js"), "../../../assets/icons-processed/Thumbs-down.svg": () => import("./Thumbs-down-B6NVvBK4.js"), "../../../assets/icons-processed/Thumbs-up.svg": () => import("./Thumbs-up-nagQyNIV.js"), "../../../assets/icons-processed/Ticket.svg": () => import("./Ticket-BUzAuiat.js"), "../../../assets/icons-processed/Timer-off.svg": () => import("./Timer-off-Cej0Uo10.js"), "../../../assets/icons-processed/Timer-reset.svg": () => import("./Timer-reset-zcrbkhGM.js"), "../../../assets/icons-processed/Timer.svg": () => import("./Timer-DUfNkiAi.js"), "../../../assets/icons-processed/Toggle-left.svg": () => import("./Toggle-left-D8gNHJdz.js"), "../../../assets/icons-processed/Toggle-right.svg": () => import("./Toggle-right-C61rYmgm.js"), "../../../assets/icons-processed/Tornado.svg": () => import("./Tornado-H3QGT3i8.js"), "../../../assets/icons-processed/Touchpad-off.svg": () => import("./Touchpad-off-Bd1M-KQ5.js"), "../../../assets/icons-processed/Touchpad.svg": () => import("./Touchpad-1pMONRsm.js"), "../../../assets/icons-processed/Tower-control.svg": () => import("./Tower-control-BaDN98qC.js"), "../../../assets/icons-processed/Toy-brick.svg": () => import("./Toy-brick-DwPR5H30.js"), "../../../assets/icons-processed/Tractor.svg": () => import("./Tractor-CaLvg4kz.js"), "../../../assets/icons-processed/Traffic-cone.svg": () => import("./Traffic-cone-CJi3_VHv.js"), "../../../assets/icons-processed/Train-front-tunnel.svg": () => import("./Train-front-tunnel-DnGiVxAR.js"), "../../../assets/icons-processed/Train-front.svg": () => import("./Train-front-yFsgnVGR.js"), "../../../assets/icons-processed/Train-track.svg": () => import("./Train-track-CLWG7hcX.js"), "../../../assets/icons-processed/Tram-front.svg": () => import("./Tram-front-CA5jNhaP.js"), "../../../assets/icons-processed/Trash-2.svg": () => import("./Trash-2-BDQJmgQe.js"), "../../../assets/icons-processed/Trash.svg": () => import("./Trash-D-rtEL2q.js"), "../../../assets/icons-processed/Tree-deciduous.svg": () => import("./Tree-deciduous-CS-ohb2j.js"), "../../../assets/icons-processed/Tree-pine.svg": () => import("./Tree-pine-CgK97nYn.js"), "../../../assets/icons-processed/Trees.svg": () => import("./Trees-CrS4vjho.js"), "../../../assets/icons-processed/Trello.svg": () => import("./Trello-tF0T0h9o.js"), "../../../assets/icons-processed/Trending-down.svg": () => import("./Trending-down-BRyGpXiM.js"), "../../../assets/icons-processed/Trending-up.svg": () => import("./Trending-up-I01BrFx6.js"), "../../../assets/icons-processed/Triangle-right.svg": () => import("./Triangle-right-PuFU9nBr.js"), "../../../assets/icons-processed/Triangle.svg": () => import("./Triangle-DRje7-Jy.js"), "../../../assets/icons-processed/Trophy.svg": () => import("./Trophy-Dxg-j2Ji.js"), "../../../assets/icons-processed/Truck.svg": () => import("./Truck-DwGEj335.js"), "../../../assets/icons-processed/Turtle.svg": () => import("./Turtle-BYerG1bb.js"), "../../../assets/icons-processed/Tv-2.svg": () => import("./Tv-2-ClZCJ0fZ.js"), "../../../assets/icons-processed/Tv.svg": () => import("./Tv-xNb6Slao.js"), "../../../assets/icons-processed/Twitch.svg": () => import("./Twitch-lgvYkuiN.js"), "../../../assets/icons-processed/Twitter.svg": () => import("./Twitter-CSh82u0C.js"), "../../../assets/icons-processed/Type.svg": () => import("./Type-Bw66phpg.js"), "../../../assets/icons-processed/Umbrella.svg": () => import("./Umbrella-D1FfCWdm.js"), "../../../assets/icons-processed/Underline.svg": () => import("./Underline-BdeThdBH.js"), "../../../assets/icons-processed/Undo-2.svg": () => import("./Undo-2-BJY_0za7.js"), "../../../assets/icons-processed/Undo-dot.svg": () => import("./Undo-dot-RXviWedl.js"), "../../../assets/icons-processed/Undo.svg": () => import("./Undo-BBG8qRxh.js"), "../../../assets/icons-processed/Unfold-horizontal.svg": () => import("./Unfold-horizontal-DkW244TX.js"), "../../../assets/icons-processed/Unfold-vertical.svg": () => import("./Unfold-vertical-BCIQPCTo.js"), "../../../assets/icons-processed/Ungroup.svg": () => import("./Ungroup-DaOgmijo.js"), "../../../assets/icons-processed/Unlink-2.svg": () => import("./Unlink-2-KvQ5Penl.js"), "../../../assets/icons-processed/Unlink.svg": () => import("./Unlink-DeuZtPaj.js"), "../../../assets/icons-processed/Unlock.svg": () => import("./Unlock-Beoz9btg.js"), "../../../assets/icons-processed/Unplug.svg": () => import("./Unplug-DMBp14vB.js"), "../../../assets/icons-processed/Upload-cloud.svg": () => import("./Upload-cloud-BYUjLbM8.js"), "../../../assets/icons-processed/Upload.svg": () => import("./Upload-D0D-b0sn.js"), "../../../assets/icons-processed/Usb.svg": () => import("./Usb-DsHWm571.js"), "../../../assets/icons-processed/User-2.svg": () => import("./User-2-kzq5xo2C.js"), "../../../assets/icons-processed/User-check-2.svg": () => import("./User-check-2-Cx8WW0YK.js"), "../../../assets/icons-processed/User-check.svg": () => import("./User-check-c9LWFNrT.js"), "../../../assets/icons-processed/User-circle-2.svg": () => import("./User-circle-2-C5fDJYfE.js"), "../../../assets/icons-processed/User-circle.svg": () => import("./User-circle-V0AjLOxu.js"), "../../../assets/icons-processed/User-cog-2.svg": () => import("./User-cog-2-BB4YnTAj.js"), "../../../assets/icons-processed/User-cog.svg": () => import("./User-cog-D8dO_3h7.js"), "../../../assets/icons-processed/User-minus-2.svg": () => import("./User-minus-2-OyTgZ2fv.js"), "../../../assets/icons-processed/User-minus.svg": () => import("./User-minus-DUWFMzIX.js"), "../../../assets/icons-processed/User-plus-2.svg": () => import("./User-plus-2-s9DMBtIg.js"), "../../../assets/icons-processed/User-plus.svg": () => import("./User-plus-Bqqsz5YS.js"), "../../../assets/icons-processed/User-square-2.svg": () => import("./User-square-2-DSfvuuke.js"), "../../../assets/icons-processed/User-square.svg": () => import("./User-square-J98eHbRo.js"), "../../../assets/icons-processed/User-x-2.svg": () => import("./User-x-2-BRny0RJf.js"), "../../../assets/icons-processed/User-x.svg": () => import("./User-x-BQjn-W3J.js"), "../../../assets/icons-processed/User.svg": () => import("./User-CyjjvVfj.js"), "../../../assets/icons-processed/Users-2.svg": () => import("./Users-2-CS2rpher.js"), "../../../assets/icons-processed/Users.svg": () => import("./Users-hLH4Ici3.js"), "../../../assets/icons-processed/Utensils-crossed.svg": () => import("./Utensils-crossed-BTAq5-N9.js"), "../../../assets/icons-processed/Utensils.svg": () => import("./Utensils-C3CpJU00.js"), "../../../assets/icons-processed/Utility-pole.svg": () => import("./Utility-pole-DZTeGw18.js"), "../../../assets/icons-processed/Variable.svg": () => import("./Variable-DXI4SLtt.js"), "../../../assets/icons-processed/Vegan.svg": () => import("./Vegan-C9n-BirG.js"), "../../../assets/icons-processed/Venetian-mask.svg": () => import("./Venetian-mask-BzelwQS6.js"), "../../../assets/icons-processed/Vibrate-off.svg": () => import("./Vibrate-off-EN70Tui0.js"), "../../../assets/icons-processed/Vibrate.svg": () => import("./Vibrate-D7-XDBS7.js"), "../../../assets/icons-processed/Video-off.svg": () => import("./Video-off-ByTv_0Gh.js"), "../../../assets/icons-processed/Video.svg": () => import("./Video-C2-SiMrY.js"), "../../../assets/icons-processed/Videotape.svg": () => import("./Videotape-CNTxWh_M.js"), "../../../assets/icons-processed/View.svg": () => import("./View-tQpsPEma.js"), "../../../assets/icons-processed/Voicemail.svg": () => import("./Voicemail-DQNctSk-.js"), "../../../assets/icons-processed/Volume-1.svg": () => import("./Volume-1-B2Cvc4Bp.js"), "../../../assets/icons-processed/Volume-2.svg": () => import("./Volume-2-CO8TmGC0.js"), "../../../assets/icons-processed/Volume-x.svg": () => import("./Volume-x-DzwqvQ5Z.js"), "../../../assets/icons-processed/Volume.svg": () => import("./Volume-B1DQ2OLO.js"), "../../../assets/icons-processed/Vote.svg": () => import("./Vote-yf4mFS4Q.js"), "../../../assets/icons-processed/Wallet-2.svg": () => import("./Wallet-2-b_aNgOc-.js"), "../../../assets/icons-processed/Wallet-cards.svg": () => import("./Wallet-cards-Dp6NejbB.js"), "../../../assets/icons-processed/Wallet.svg": () => import("./Wallet-QJqJrtl1.js"), "../../../assets/icons-processed/Wallpaper.svg": () => import("./Wallpaper-CHt0Y9K6.js"), "../../../assets/icons-processed/Wand-2.svg": () => import("./Wand-2-JFNLbUHl.js"), "../../../assets/icons-processed/Wand.svg": () => import("./Wand-BxxOPfR-.js"), "../../../assets/icons-processed/Warehouse.svg": () => import("./Warehouse-UWUmsZsj.js"), "../../../assets/icons-processed/Waves.svg": () => import("./Waves-C6hfXVgj.js"), "../../../assets/icons-processed/Webcam.svg": () => import("./Webcam-C82dlxIP.js"), "../../../assets/icons-processed/Webhook.svg": () => import("./Webhook-CYDrCwwn.js"), "../../../assets/icons-processed/Wheat-off.svg": () => import("./Wheat-off-CcSPBTf_.js"), "../../../assets/icons-processed/Wheat.svg": () => import("./Wheat-C-49VYj1.js"), "../../../assets/icons-processed/Whole-word.svg": () => import("./Whole-word-CCcINSbr.js"), "../../../assets/icons-processed/Wifi-off.svg": () => import("./Wifi-off-AJ-iJirU.js"), "../../../assets/icons-processed/Wifi.svg": () => import("./Wifi-xzWpG4Ce.js"), "../../../assets/icons-processed/Wind.svg": () => import("./Wind-BGbs3wB8.js"), "../../../assets/icons-processed/Wine-off.svg": () => import("./Wine-off-CuaeVGE-.js"), "../../../assets/icons-processed/Wine.svg": () => import("./Wine-CFZpbRDd.js"), "../../../assets/icons-processed/Workflow.svg": () => import("./Workflow-Nz6S--yx.js"), "../../../assets/icons-processed/Wrap-text.svg": () => import("./Wrap-text-Ct90Qduy.js"), "../../../assets/icons-processed/Wrench.svg": () => import("./Wrench-Ce8Pcvoo.js"), "../../../assets/icons-processed/X-circle.svg": () => import("./X-circle-xPo7Ow-V.js"), "../../../assets/icons-processed/X-octagon.svg": () => import("./X-octagon-Nu3sROmv.js"), "../../../assets/icons-processed/X-square.svg": () => import("./X-square-Dkid2GNJ.js"), "../../../assets/icons-processed/X.svg": () => import("./X-Da7gyY7w.js"), "../../../assets/icons-processed/Youtube.svg": () => import("./Youtube-BTasUQKt.js"), "../../../assets/icons-processed/Zap-off.svg": () => import("./Zap-off-BfJjibMJ.js"), "../../../assets/icons-processed/Zap.svg": () => import("./Zap-CES5H1Q_.js"), "../../../assets/icons-processed/Zoom-in.svg": () => import("./Zoom-in-CBHVThjm.js"), "../../../assets/icons-processed/Zoom-out.svg": () => import("./Zoom-out-7DJ0un9E.js"), "../../../assets/icons-processed/globe.svg": () => import("./globe-B8ycO_7T.js"), "../../../assets/icons-processed/link.svg": () => import("./link-CPR_jfCP.js"), "../../../assets/icons-processed/phone.svg": () => import("./phone-R4Q5BNvE.js"), "../../../assets/icons-processed/stethoscope.svg": () => import("./stethoscope-BnXD_qll.js"), "../../../assets/icons-processed/watch.svg": () => import("./watch-CuExllMk.js") }), `../../../assets/icons-processed/${l}.svg`, 6), h = (g.default || g).replace(/width="[^"]*"/g, "").replace(/height="[^"]*"/g, "").replace(/<svg([^>]*)>/g, '<svg$1 width="100%" height="100%">');
|
|
160
|
+
s.value = h;
|
|
161
|
+
} catch (g) {
|
|
162
|
+
console.error(`Failed to load icon: ${l}`, g), s.value = `
|
|
163
|
+
<svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
164
|
+
<circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="2"/>
|
|
165
|
+
<path d="M12 8v4" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
166
|
+
<path d="M12 16h.01" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
|
|
167
|
+
</svg>
|
|
168
|
+
`;
|
|
169
|
+
}
|
|
170
|
+
}, r = (l) => l.includes("/") && l.split("/").pop() || l;
|
|
171
|
+
return vs(
|
|
172
|
+
() => e.name,
|
|
173
|
+
(l) => {
|
|
174
|
+
const g = r(l);
|
|
175
|
+
i(g);
|
|
176
|
+
},
|
|
177
|
+
{ immediate: !0 }
|
|
178
|
+
), (l, g) => (u(), y("span", {
|
|
179
|
+
class: V(t.value),
|
|
180
|
+
style: Os(c.value),
|
|
181
|
+
"aria-label": o.alt || o.name,
|
|
182
|
+
role: "img",
|
|
183
|
+
innerHTML: s.value
|
|
184
|
+
}, null, 14, Ue));
|
|
185
|
+
}
|
|
186
|
+
}), N = /* @__PURE__ */ hs(He, [["__scopeId", "data-v-6c91bfba"]]), We = ["disabled", "aria-label"], je = {
|
|
187
|
+
key: 1,
|
|
188
|
+
class: "utopia-button__text"
|
|
189
|
+
}, Ke = /* @__PURE__ */ ds({
|
|
190
|
+
__name: "Button",
|
|
191
|
+
props: {
|
|
192
|
+
variant: { default: "primary" },
|
|
193
|
+
size: { default: "md" },
|
|
194
|
+
disabled: { type: Boolean, default: !1 },
|
|
195
|
+
loading: { type: Boolean, default: !1 },
|
|
196
|
+
icon: {},
|
|
197
|
+
iconPosition: { default: "left" },
|
|
198
|
+
ariaLabel: { default: void 0 }
|
|
199
|
+
},
|
|
200
|
+
emits: ["click"],
|
|
201
|
+
setup(o, { emit: e }) {
|
|
202
|
+
const s = o, t = e, { currentTheme: c } = Ws(), i = re(), r = F(() => ({
|
|
203
|
+
[`utopia-button--${s.variant}`]: !0,
|
|
204
|
+
[`utopia-button--${s.size}`]: !0,
|
|
205
|
+
"utopia-button--disabled": s.disabled,
|
|
206
|
+
"utopia-button--loading": s.loading,
|
|
207
|
+
"utopia-button--icon-only": s.icon && !i.default || s.loading && !s.icon && i.default,
|
|
208
|
+
[`utopia-button--${c.value?.mode || "light"}`]: !0
|
|
209
|
+
})), l = F(() => ({
|
|
210
|
+
flexDirection: "row"
|
|
211
|
+
})), g = (v) => {
|
|
212
|
+
!s.disabled && !s.loading && t("click", v);
|
|
213
|
+
};
|
|
214
|
+
return (v, h) => (u(), y("button", {
|
|
215
|
+
class: V(["utopia-button", r.value]),
|
|
216
|
+
disabled: o.disabled || o.loading,
|
|
217
|
+
onClick: g,
|
|
218
|
+
style: Os(l.value),
|
|
219
|
+
"aria-label": s.ariaLabel
|
|
220
|
+
}, [
|
|
221
|
+
o.iconPosition === "left" || !o.icon && o.loading ? (u(), y(ns, { key: 0 }, [
|
|
222
|
+
o.loading && o.icon ? (u(), O(N, {
|
|
223
|
+
key: 0,
|
|
224
|
+
name: "Loader-2",
|
|
225
|
+
class: "utopia-button__icon utopia-button__icon--loading",
|
|
226
|
+
"stroke-width": "2"
|
|
227
|
+
})) : o.loading && !o.icon && v.$slots.default ? (u(), O(N, {
|
|
228
|
+
key: 1,
|
|
229
|
+
name: "Loader-2",
|
|
230
|
+
class: "utopia-button__icon utopia-button__icon--loading",
|
|
231
|
+
"stroke-width": "2"
|
|
232
|
+
})) : o.icon ? (u(), O(N, {
|
|
233
|
+
key: 2,
|
|
234
|
+
name: o.icon,
|
|
235
|
+
class: "utopia-button__icon",
|
|
236
|
+
"stroke-width": "2"
|
|
237
|
+
}, null, 8, ["name"])) : _("", !0)
|
|
238
|
+
], 64)) : _("", !0),
|
|
239
|
+
v.$slots.default && (!o.loading || o.loading && o.icon) ? (u(), y("span", je, [
|
|
240
|
+
us(v.$slots, "default", {}, void 0, !0)
|
|
241
|
+
])) : _("", !0),
|
|
242
|
+
o.iconPosition === "right" ? (u(), y(ns, { key: 2 }, [
|
|
243
|
+
o.loading && o.icon ? (u(), O(N, {
|
|
244
|
+
key: 0,
|
|
245
|
+
name: "Loader-2",
|
|
246
|
+
class: "utopia-button__icon utopia-button__icon--loading",
|
|
247
|
+
"stroke-width": "2"
|
|
248
|
+
})) : o.icon ? (u(), O(N, {
|
|
249
|
+
key: 1,
|
|
250
|
+
name: o.icon,
|
|
251
|
+
class: "utopia-button__icon",
|
|
252
|
+
"stroke-width": "2"
|
|
253
|
+
}, null, 8, ["name"])) : _("", !0)
|
|
254
|
+
], 64)) : _("", !0)
|
|
255
|
+
], 14, We));
|
|
256
|
+
}
|
|
257
|
+
}), Xs = /* @__PURE__ */ hs(Ke, [["__scopeId", "data-v-e183f79a"]]), Xe = [".indeterminate", "checked", "disabled", "tabindex"], Ze = { class: "utopia-checkbox__box" }, Ye = {
|
|
258
|
+
key: 0,
|
|
259
|
+
class: "utopia-checkbox__label"
|
|
260
|
+
}, Qe = /* @__PURE__ */ ds({
|
|
261
|
+
__name: "Checkbox",
|
|
262
|
+
props: {
|
|
263
|
+
modelValue: { type: Boolean, default: !1 },
|
|
264
|
+
partial: { type: Boolean, default: !1 },
|
|
265
|
+
disabled: { type: Boolean, default: !1 },
|
|
266
|
+
focusable: { type: Boolean, default: !0 },
|
|
267
|
+
size: { default: "medium" }
|
|
268
|
+
},
|
|
269
|
+
emits: ["update:modelValue"],
|
|
270
|
+
setup(o, { emit: e }) {
|
|
271
|
+
const s = o, t = e, { currentTheme: c } = Ws(), i = F(() => s.partial && !s.modelValue), r = F(() => ({
|
|
272
|
+
[`utopia-checkbox--${s.size}`]: !0,
|
|
273
|
+
"utopia-checkbox--disabled": s.disabled,
|
|
274
|
+
"utopia-checkbox--checked": s.modelValue,
|
|
275
|
+
"utopia-checkbox--partial": i.value,
|
|
276
|
+
[`utopia-checkbox--${c.value?.mode || "light"}`]: !0
|
|
277
|
+
})), l = (g) => {
|
|
278
|
+
const v = g.target;
|
|
279
|
+
t("update:modelValue", v.checked);
|
|
280
|
+
};
|
|
281
|
+
return (g, v) => (u(), y("label", {
|
|
282
|
+
class: V(["utopia-checkbox", r.value])
|
|
283
|
+
}, [
|
|
284
|
+
D("input", {
|
|
285
|
+
type: "checkbox",
|
|
286
|
+
class: "utopia-checkbox__input",
|
|
287
|
+
".indeterminate": o.partial && !o.modelValue,
|
|
288
|
+
checked: o.modelValue,
|
|
289
|
+
disabled: o.disabled,
|
|
290
|
+
onChange: l,
|
|
291
|
+
tabindex: o.focusable ? 1 : -1
|
|
292
|
+
}, null, 40, Xe),
|
|
293
|
+
D("div", Ze, [
|
|
294
|
+
K(N, {
|
|
295
|
+
name: i.value ? "Minus" : "Check",
|
|
296
|
+
class: "utopia-checkbox__check",
|
|
297
|
+
"stroke-width": "4"
|
|
298
|
+
}, null, 8, ["name"])
|
|
299
|
+
]),
|
|
300
|
+
g.$slots.default ? (u(), y("span", Ye, [
|
|
301
|
+
us(g.$slots, "default", {}, void 0, !0)
|
|
302
|
+
])) : _("", !0)
|
|
303
|
+
], 2));
|
|
304
|
+
}
|
|
305
|
+
}), Zs = /* @__PURE__ */ hs(Qe, [["__scopeId", "data-v-8f0335ba"]]), Je = { class: "utopia-chip__label" }, so = ["disabled", "aria-label"], eo = /* @__PURE__ */ ds({
|
|
306
|
+
__name: "Chip",
|
|
307
|
+
props: {
|
|
308
|
+
variant: { default: "default" },
|
|
309
|
+
size: { default: "medium" },
|
|
310
|
+
disabled: { type: Boolean, default: !1 },
|
|
311
|
+
removable: { type: Boolean, default: !1 },
|
|
312
|
+
leftIcon: {},
|
|
313
|
+
actionable: { type: Boolean, default: !1 },
|
|
314
|
+
ghost: { type: Boolean, default: !1 },
|
|
315
|
+
customColor: {},
|
|
316
|
+
customTextColor: {}
|
|
317
|
+
},
|
|
318
|
+
emits: ["remove"],
|
|
319
|
+
setup(o, { emit: e }) {
|
|
320
|
+
const s = o, t = F(() => {
|
|
321
|
+
const v = {};
|
|
322
|
+
return s.customColor && (v["background-color"] = `var(${s.customColor})`), s.customTextColor && (v.color = `var(${s.customTextColor})`), v;
|
|
323
|
+
}), c = e, { currentTheme: i } = Ws(), r = F(() => ({
|
|
324
|
+
[`utopia-chip--${s.variant}`]: !s.customColor,
|
|
325
|
+
[`utopia-chip--${s.size}`]: !0,
|
|
326
|
+
"utopia-chip--disabled": s.disabled,
|
|
327
|
+
"utopia-chip--removable": s.removable,
|
|
328
|
+
"utopia-chip--actionable": s.actionable,
|
|
329
|
+
"utopia-chip--ghost": s.ghost,
|
|
330
|
+
[`utopia-chip--${i.value?.mode || "light"}`]: !0
|
|
331
|
+
})), l = F(() => ({
|
|
332
|
+
"extra-small": "extra-small",
|
|
333
|
+
small: "small",
|
|
334
|
+
medium: "medium",
|
|
335
|
+
large: "large"
|
|
336
|
+
})[s.size]), g = (v) => {
|
|
337
|
+
v.stopPropagation(), s.disabled || c("remove");
|
|
338
|
+
};
|
|
339
|
+
return (v, h) => (u(), y("div", {
|
|
340
|
+
class: V(["utopia-chip", r.value]),
|
|
341
|
+
style: Os(t.value)
|
|
342
|
+
}, [
|
|
343
|
+
o.leftIcon ? (u(), O(N, {
|
|
344
|
+
key: 0,
|
|
345
|
+
name: o.leftIcon,
|
|
346
|
+
size: l.value,
|
|
347
|
+
"stroke-width": 2,
|
|
348
|
+
class: "utopia-chip__left-icon"
|
|
349
|
+
}, null, 8, ["name", "size"])) : _("", !0),
|
|
350
|
+
D("span", Je, [
|
|
351
|
+
us(v.$slots, "default", {}, void 0, !0)
|
|
352
|
+
]),
|
|
353
|
+
o.removable ? (u(), y("button", {
|
|
354
|
+
key: 1,
|
|
355
|
+
type: "button",
|
|
356
|
+
class: "utopia-chip__close-button",
|
|
357
|
+
disabled: o.disabled,
|
|
358
|
+
onClick: g,
|
|
359
|
+
"aria-label": `Supprimer ${v.$slots.default?.() || "chip"}`
|
|
360
|
+
}, [
|
|
361
|
+
K(N, {
|
|
362
|
+
name: "X",
|
|
363
|
+
size: l.value,
|
|
364
|
+
class: "utopia-chip__close-icon",
|
|
365
|
+
"stroke-width": 2
|
|
366
|
+
}, null, 8, ["size"])
|
|
367
|
+
], 8, so)) : _("", !0)
|
|
368
|
+
], 6));
|
|
369
|
+
}
|
|
370
|
+
}), oo = /* @__PURE__ */ hs(eo, [["__scopeId", "data-v-07aa8f4e"]]), to = ["for"], ro = { class: "utopia-inputtext__container_in" }, io = ["id", "type", "inputmode", "placeholder", "disabled", "readonly", "maxlength", "min", "max", "step"], ao = {
|
|
371
|
+
key: 2,
|
|
372
|
+
class: "utopia-inputtext__stepper"
|
|
373
|
+
}, co = ["disabled"], no = ["disabled"], po = /* @__PURE__ */ ds({
|
|
374
|
+
inheritAttrs: !1,
|
|
375
|
+
__name: "InputText",
|
|
376
|
+
props: {
|
|
377
|
+
modelValue: { default: "" },
|
|
378
|
+
label: { default: "" },
|
|
379
|
+
placeholder: { default: "" },
|
|
380
|
+
type: { default: "text" },
|
|
381
|
+
inputmode: {},
|
|
382
|
+
state: { default: "default" },
|
|
383
|
+
size: { default: "medium" },
|
|
384
|
+
disabled: { type: Boolean, default: !1 },
|
|
385
|
+
readonly: { type: Boolean, default: !1 },
|
|
386
|
+
icon: { default: "" },
|
|
387
|
+
iconPosition: { default: "right" },
|
|
388
|
+
iconClickable: { type: Boolean, default: !1 },
|
|
389
|
+
message: { default: "" },
|
|
390
|
+
required: { type: Boolean, default: !1 },
|
|
391
|
+
min: {},
|
|
392
|
+
max: {},
|
|
393
|
+
step: { default: 1 },
|
|
394
|
+
maxlength: {},
|
|
395
|
+
isCode: { type: Boolean, default: !1 },
|
|
396
|
+
forceModelValueOnBlur: { type: Boolean, default: !1 }
|
|
397
|
+
},
|
|
398
|
+
emits: ["update:modelValue", "focus", "blur", "input", "change", "keydown", "paste", "icon-click"],
|
|
399
|
+
setup(o, { emit: e }) {
|
|
400
|
+
const s = o, t = e, c = $(), i = $(s.modelValue), r = F(() => `utopia-input-${Math.random().toString(36).substr(2, 9)}`), l = F(() => s.step ?? 1), g = F(() => s.type === "number" && s.isCode ? "text" : s.type), v = F(() => {
|
|
401
|
+
if (s.inputmode)
|
|
402
|
+
return s.inputmode;
|
|
403
|
+
if (s.type === "number")
|
|
404
|
+
return "numeric";
|
|
405
|
+
}), h = F(() => ({
|
|
406
|
+
[`utopia-inputtext--${s.size}`]: !0,
|
|
407
|
+
[`utopia-inputtext--${s.state}`]: !0,
|
|
408
|
+
"utopia-inputtext--disabled": s.disabled,
|
|
409
|
+
"utopia-inputtext--with-icon": s.icon || s.state === "valid" || s.state === "error",
|
|
410
|
+
"utopia-inputtext--with-message": s.message,
|
|
411
|
+
"utopia-inputtext--code": s.isCode,
|
|
412
|
+
"utopia-inputtext--icon-left": s.iconPosition === "left" && (s.icon || s.state === "valid" || s.state === "error"),
|
|
413
|
+
"utopia-inputtext--icon-right": s.iconPosition === "right" && (s.icon || s.state === "valid" || s.state === "error")
|
|
414
|
+
})), m = F(() => ({
|
|
415
|
+
"utopia-inputtext__field--with-icon": s.icon || s.state === "valid" || s.state === "error",
|
|
416
|
+
"utopia-inputtext__field--with-icon-left": s.iconPosition === "left" && (s.icon || s.state === "valid" || s.state === "error"),
|
|
417
|
+
"utopia-inputtext__field--with-icon-right": s.iconPosition === "right" && (s.icon || s.state === "valid" || s.state === "error"),
|
|
418
|
+
"utopia-inputtext__field--number": s.type === "number",
|
|
419
|
+
"utopia-inputtext__field--code": s.isCode,
|
|
420
|
+
"utopia-inputtext__field--numeric-text": s.type === "number" && s.maxlength !== void 0 && s.isCode
|
|
421
|
+
})), C = F(() => ({
|
|
422
|
+
[`utopia-inputtext__message--${s.state}`]: s.state === "error" || s.state === "valid"
|
|
423
|
+
})), T = (S) => {
|
|
424
|
+
t("focus", S);
|
|
425
|
+
}, q = (S) => {
|
|
426
|
+
s.forceModelValueOnBlur && (i.value = s.modelValue), t("blur", S);
|
|
427
|
+
}, X = (S) => {
|
|
428
|
+
const R = S.target;
|
|
429
|
+
let k = R.value;
|
|
430
|
+
s.isCode && (k = k.charAt(0).toUpperCase(), s.type === "number" ? /^\d$/.test(k) || (k = "") : /^[A-Z0-9]$/.test(k) || (k = ""), R.value = k), i.value = k, t("update:modelValue", k), t("input", S);
|
|
431
|
+
}, U = (S) => {
|
|
432
|
+
t("change", S);
|
|
433
|
+
}, Z = (S) => {
|
|
434
|
+
if (s.isCode) {
|
|
435
|
+
const R = S.key;
|
|
436
|
+
if (s.type === "number") {
|
|
437
|
+
if (!/^\d$/.test(R)) {
|
|
438
|
+
S.preventDefault();
|
|
439
|
+
return;
|
|
440
|
+
}
|
|
441
|
+
} else if (!/^[A-Za-z0-9]$/.test(R)) {
|
|
442
|
+
S.preventDefault();
|
|
443
|
+
return;
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
}, J = (S) => {
|
|
447
|
+
t("keydown", S);
|
|
448
|
+
}, ls = (S) => {
|
|
449
|
+
t("paste", S);
|
|
450
|
+
}, ss = (S) => {
|
|
451
|
+
s.iconClickable && !s.disabled && !s.readonly && t("icon-click", S);
|
|
452
|
+
}, es = (S) => {
|
|
453
|
+
const R = parseFloat(S);
|
|
454
|
+
return Number.isFinite(R) ? R : 0;
|
|
455
|
+
}, is = (S) => (typeof s.min == "number" && (S = Math.max(S, s.min)), typeof s.max == "number" && (S = Math.min(S, s.max)), S), M = (S) => {
|
|
456
|
+
const R = l.value, k = R && !Number.isInteger(R) ? R.toString().split(".")[1]?.length ?? 0 : 0;
|
|
457
|
+
return S.toFixed(k);
|
|
458
|
+
}, G = () => {
|
|
459
|
+
const S = es(i.value), R = is(S + l.value), k = M(R);
|
|
460
|
+
i.value = k, t("update:modelValue", k);
|
|
461
|
+
}, rs = () => {
|
|
462
|
+
const S = es(i.value), R = is(S - l.value), k = M(R);
|
|
463
|
+
i.value = k, t("update:modelValue", k);
|
|
464
|
+
}, W = (S) => {
|
|
465
|
+
i.value = S, ks(() => {
|
|
466
|
+
c.value && (c.value.value = S);
|
|
467
|
+
});
|
|
468
|
+
};
|
|
469
|
+
return vs(() => s.modelValue, (S) => {
|
|
470
|
+
S !== i.value && W(S || "");
|
|
471
|
+
}), (S, R) => (u(), y("div", {
|
|
472
|
+
class: V(["utopia-inputtext", h.value])
|
|
473
|
+
}, [
|
|
474
|
+
o.label ? (u(), y("label", {
|
|
475
|
+
key: 0,
|
|
476
|
+
class: "utopia-inputtext__label",
|
|
477
|
+
for: r.value
|
|
478
|
+
}, H(o.label), 9, to)) : _("", !0),
|
|
479
|
+
D("div", ro, [
|
|
480
|
+
(o.icon || o.state === "valid" || o.state === "error") && o.iconPosition === "left" ? (u(), y("div", {
|
|
481
|
+
key: 0,
|
|
482
|
+
class: V(["utopia-inputtext__icon-container utopia-inputtext__icon--left", { "utopia-inputtext__icon--clickable": o.iconClickable }]),
|
|
483
|
+
onClick: ss
|
|
484
|
+
}, [
|
|
485
|
+
o.state === "valid" ? (u(), O(z(N), {
|
|
486
|
+
key: 0,
|
|
487
|
+
name: "Check",
|
|
488
|
+
class: "utopia-inputtext__icon utopia-inputtext__icon--valid",
|
|
489
|
+
"stroke-width": "2",
|
|
490
|
+
color: "success"
|
|
491
|
+
})) : o.state === "error" ? (u(), O(z(N), {
|
|
492
|
+
key: 1,
|
|
493
|
+
name: "Alert-triangle",
|
|
494
|
+
class: "utopia-inputtext__icon utopia-inputtext__icon--error",
|
|
495
|
+
"stroke-width": "2",
|
|
496
|
+
color: "danger"
|
|
497
|
+
})) : o.icon ? (u(), O(z(N), {
|
|
498
|
+
key: 2,
|
|
499
|
+
name: o.icon,
|
|
500
|
+
class: "utopia-inputtext__icon utopia-inputtext__icon--default",
|
|
501
|
+
"stroke-width": "2",
|
|
502
|
+
color: "current"
|
|
503
|
+
}, null, 8, ["name"])) : _("", !0)
|
|
504
|
+
], 2)) : _("", !0),
|
|
505
|
+
ke(D("input", {
|
|
506
|
+
id: r.value,
|
|
507
|
+
ref_key: "inputRef",
|
|
508
|
+
ref: c,
|
|
509
|
+
"onUpdate:modelValue": R[0] || (R[0] = (k) => i.value = k),
|
|
510
|
+
type: g.value,
|
|
511
|
+
inputmode: v.value,
|
|
512
|
+
placeholder: o.placeholder,
|
|
513
|
+
disabled: o.disabled,
|
|
514
|
+
readonly: o.readonly,
|
|
515
|
+
maxlength: o.maxlength,
|
|
516
|
+
class: V(["utopia-inputtext__field", m.value]),
|
|
517
|
+
min: o.min,
|
|
518
|
+
max: o.max,
|
|
519
|
+
step: l.value,
|
|
520
|
+
onFocus: T,
|
|
521
|
+
onBlur: q,
|
|
522
|
+
onInput: X,
|
|
523
|
+
onChange: U,
|
|
524
|
+
onKeypress: Z,
|
|
525
|
+
onKeydown: J,
|
|
526
|
+
onPaste: ls
|
|
527
|
+
}, null, 42, io), [
|
|
528
|
+
[Ce, i.value]
|
|
529
|
+
]),
|
|
530
|
+
(o.icon || o.state === "valid" || o.state === "error") && o.iconPosition === "right" ? (u(), y("div", {
|
|
531
|
+
key: 1,
|
|
532
|
+
class: V(["utopia-inputtext__icon-container utopia-inputtext__icon--right", {
|
|
533
|
+
"utopia-inputtext__icon--clickable": o.iconClickable,
|
|
534
|
+
"utopia-inputtext__icon--right--offset": o.type === "number" && !o.isCode
|
|
535
|
+
}]),
|
|
536
|
+
onClick: ss
|
|
537
|
+
}, [
|
|
538
|
+
o.state === "valid" ? (u(), O(z(N), {
|
|
539
|
+
key: 0,
|
|
540
|
+
name: "Check",
|
|
541
|
+
class: "utopia-inputtext__icon utopia-inputtext__icon--valid",
|
|
542
|
+
"stroke-width": "2",
|
|
543
|
+
color: "success"
|
|
544
|
+
})) : o.state === "error" ? (u(), O(z(N), {
|
|
545
|
+
key: 1,
|
|
546
|
+
name: "Alert-triangle",
|
|
547
|
+
class: "utopia-inputtext__icon utopia-inputtext__icon--error",
|
|
548
|
+
"stroke-width": "2",
|
|
549
|
+
color: "danger"
|
|
550
|
+
})) : o.icon ? (u(), O(z(N), {
|
|
551
|
+
key: 2,
|
|
552
|
+
name: o.icon,
|
|
553
|
+
class: "utopia-inputtext__icon utopia-inputtext__icon--default",
|
|
554
|
+
"stroke-width": "2",
|
|
555
|
+
color: "current"
|
|
556
|
+
}, null, 8, ["name"])) : _("", !0)
|
|
557
|
+
], 2)) : _("", !0),
|
|
558
|
+
o.type === "number" && !o.isCode ? (u(), y("div", ao, [
|
|
559
|
+
D("button", {
|
|
560
|
+
type: "button",
|
|
561
|
+
class: "utopia-inputtext__stepper-btn utopia-inputtext__stepper-btn--up",
|
|
562
|
+
onClick: G,
|
|
563
|
+
disabled: o.disabled || o.readonly,
|
|
564
|
+
tabindex: "-1"
|
|
565
|
+
}, [
|
|
566
|
+
K(z(N), {
|
|
567
|
+
name: "Chevron-up",
|
|
568
|
+
"stroke-width": "2"
|
|
569
|
+
})
|
|
570
|
+
], 8, co),
|
|
571
|
+
D("button", {
|
|
572
|
+
type: "button",
|
|
573
|
+
class: "utopia-inputtext__stepper-btn utopia-inputtext__stepper-btn--down",
|
|
574
|
+
onClick: rs,
|
|
575
|
+
disabled: o.disabled || o.readonly,
|
|
576
|
+
tabindex: "-1"
|
|
577
|
+
}, [
|
|
578
|
+
K(z(N), {
|
|
579
|
+
name: "Chevron-down",
|
|
580
|
+
"stroke-width": "2"
|
|
581
|
+
})
|
|
582
|
+
], 8, no)
|
|
583
|
+
])) : _("", !0)
|
|
584
|
+
]),
|
|
585
|
+
o.message ? (u(), y("div", {
|
|
586
|
+
key: 1,
|
|
587
|
+
class: V(["utopia-inputtext__message", C.value])
|
|
588
|
+
}, [
|
|
589
|
+
o.state === "error" ? (u(), O(z(N), {
|
|
590
|
+
key: 0,
|
|
591
|
+
name: "Alert-triangle",
|
|
592
|
+
class: "utopia-inputtext__message-icon",
|
|
593
|
+
"stroke-width": "2"
|
|
594
|
+
})) : o.state === "valid" ? (u(), O(z(N), {
|
|
595
|
+
key: 1,
|
|
596
|
+
name: "Check",
|
|
597
|
+
class: "utopia-inputtext__message-icon",
|
|
598
|
+
"stroke-width": "2"
|
|
599
|
+
})) : _("", !0),
|
|
600
|
+
Ls(" " + H(o.message), 1)
|
|
601
|
+
], 2)) : _("", !0)
|
|
602
|
+
], 2));
|
|
603
|
+
}
|
|
604
|
+
}), lo = /* @__PURE__ */ hs(po, [["__scopeId", "data-v-c9890bfc"]]), uo = ["for"], vo = { class: "utopia-dropdown__container" }, mo = ["id", "disabled", "aria-expanded"], go = { key: 0 }, fo = {
|
|
605
|
+
key: 0,
|
|
606
|
+
class: "utopia-dropdown__chips-shadow utopia-dropdown__chips-shadow--left"
|
|
607
|
+
}, ho = {
|
|
608
|
+
key: 0,
|
|
609
|
+
class: "utopia-dropdown__more"
|
|
610
|
+
}, bo = {
|
|
611
|
+
key: 1,
|
|
612
|
+
class: "utopia-dropdown__chips-shadow utopia-dropdown__chips-shadow--right"
|
|
613
|
+
}, yo = { key: "placeholder" }, wo = {
|
|
614
|
+
key: 1,
|
|
615
|
+
class: "utopia-dropdown__state-icon"
|
|
616
|
+
}, ko = ["id", "aria-multiselectable"], Co = {
|
|
617
|
+
key: 0,
|
|
618
|
+
class: "utopia-dropdown__search"
|
|
619
|
+
}, So = {
|
|
620
|
+
class: "utopia-dropdown__options",
|
|
621
|
+
role: "group"
|
|
622
|
+
}, _o = ["aria-selected", "aria-disabled", "onClick", "onMouseenter"], Ao = {
|
|
623
|
+
key: 0,
|
|
624
|
+
class: "utopia-dropdown__checkbox-container"
|
|
625
|
+
}, Fo = ["onClick"], xo = {
|
|
626
|
+
key: 1,
|
|
627
|
+
class: "utopia-dropdown__category-spacer"
|
|
628
|
+
}, To = ["title", "onClick"], Bo = { class: "utopia-dropdown__checkbox-label" }, Po = {
|
|
629
|
+
key: 0,
|
|
630
|
+
class: "utopia-dropdown__secondary-label"
|
|
631
|
+
}, Mo = ["title"], Lo = ["onClick"], Eo = { class: "utopia-dropdown__option-label" }, Do = {
|
|
632
|
+
key: 1,
|
|
633
|
+
class: "utopia-dropdown__secondary-label"
|
|
634
|
+
}, Ro = ["aria-selected", "aria-disabled", "onClick"], Io = {
|
|
635
|
+
key: 0,
|
|
636
|
+
class: "utopia-dropdown__checkbox-container"
|
|
637
|
+
}, No = ["title"], $o = { class: "utopia-dropdown__checkbox-label" }, zo = {
|
|
638
|
+
key: 0,
|
|
639
|
+
class: "utopia-dropdown__secondary-label"
|
|
640
|
+
}, Vo = ["title"], Oo = { class: "utopia-dropdown__option-label" }, qo = {
|
|
641
|
+
key: 0,
|
|
642
|
+
class: "utopia-dropdown__secondary-label"
|
|
643
|
+
}, Go = {
|
|
644
|
+
key: 0,
|
|
645
|
+
class: "utopia-dropdown__no-results"
|
|
646
|
+
}, Uo = /* @__PURE__ */ ds({
|
|
647
|
+
__name: "DropDown",
|
|
648
|
+
props: {
|
|
649
|
+
modelValue: { type: [String, Number, Boolean, Array], default: void 0 },
|
|
650
|
+
label: { default: "" },
|
|
651
|
+
placeholder: { default: "Sélectionner une option" },
|
|
652
|
+
options: { default: () => [] },
|
|
653
|
+
state: { default: "default" },
|
|
654
|
+
size: { default: "medium" },
|
|
655
|
+
disabled: { type: Boolean, default: !1 },
|
|
656
|
+
readonly: { type: Boolean, default: !1 },
|
|
657
|
+
multiple: { type: Boolean, default: !1 },
|
|
658
|
+
searchable: { type: Boolean, default: !1 },
|
|
659
|
+
clearable: { type: Boolean, default: !1 },
|
|
660
|
+
message: { default: "" },
|
|
661
|
+
required: { type: Boolean, default: !1 },
|
|
662
|
+
maxHeight: { default: "200px" },
|
|
663
|
+
innerModalId: {},
|
|
664
|
+
maxVisibleChips: { default: void 0 }
|
|
665
|
+
},
|
|
666
|
+
emits: ["update:modelValue", "change", "open", "close", "focus", "blur"],
|
|
667
|
+
setup(o, { emit: e }) {
|
|
668
|
+
const s = o, t = e, c = $(), i = $(), r = $(), l = $(), g = $(!1), v = $(!1), h = $(!1), m = $(""), C = $(-1), T = $({ top: "0px", left: "0px", width: "0px" }), q = $(/* @__PURE__ */ new Set()), X = $(`utopia-dropdown-${Math.random().toString(36).substr(2, 9)}`), U = F(() => s.multiple ? Array.isArray(s.modelValue) && s.modelValue.length > 0 : s.modelValue !== "" && s.modelValue !== null && s.modelValue !== void 0), Z = F(() => !s.multiple || !Array.isArray(s.modelValue) ? [] : ss(s.options).filter(
|
|
669
|
+
(b) => s.modelValue.includes(b.value)
|
|
670
|
+
)), J = F(() => s.maxVisibleChips === void 0 ? Z.value.length : s.maxVisibleChips), ls = F(() => {
|
|
671
|
+
if (!l.value) return !1;
|
|
672
|
+
const { scrollWidth: n, clientWidth: b } = l.value;
|
|
673
|
+
return n > b + 2;
|
|
674
|
+
}), ss = (n) => {
|
|
675
|
+
const b = [];
|
|
676
|
+
return n.forEach((a) => {
|
|
677
|
+
b.push(a), a.children && a.children.length > 0 && b.push(...ss(a.children));
|
|
678
|
+
}), b;
|
|
679
|
+
}, es = () => {
|
|
680
|
+
if (!l.value) return;
|
|
681
|
+
const { scrollLeft: n, scrollWidth: b, clientWidth: a } = l.value;
|
|
682
|
+
if (!(b > a + 2)) {
|
|
683
|
+
g.value = !1, v.value = !1;
|
|
684
|
+
return;
|
|
685
|
+
}
|
|
686
|
+
const w = n <= 1, Q = Math.abs(b - a - n) <= 1;
|
|
687
|
+
g.value = !w, v.value = !Q;
|
|
688
|
+
}, is = F(() => s.multiple && s.searchable ? "400px" : s.maxHeight || "300px"), M = F(() => {
|
|
689
|
+
if (!U.value)
|
|
690
|
+
return s.placeholder;
|
|
691
|
+
if (s.multiple && Array.isArray(s.modelValue)) {
|
|
692
|
+
const a = Z.value;
|
|
693
|
+
return a.length === 0 ? s.placeholder : a.length === 1 ? a[0].label : `${a.length} éléments sélectionnés`;
|
|
694
|
+
}
|
|
695
|
+
return ss(s.options).find((a) => a.value === s.modelValue)?.label || s.placeholder;
|
|
696
|
+
}), G = (n, b) => {
|
|
697
|
+
const a = b.toLowerCase().trim();
|
|
698
|
+
return n.label.toLowerCase().includes(a) ? !0 : n.children && n.children.length > 0 ? n.children.some((I) => G(I, b)) : !1;
|
|
699
|
+
}, rs = (n, b) => b.trim() ? n.filter((a) => G(a, b)).map((a) => a.children && a.children.length > 0 ? {
|
|
700
|
+
...a,
|
|
701
|
+
children: rs(a.children, b)
|
|
702
|
+
} : a) : n, W = F(() => {
|
|
703
|
+
if (!s.searchable || !m.value.trim())
|
|
704
|
+
return s.options;
|
|
705
|
+
const n = m.value.trim();
|
|
706
|
+
return rs(s.options, n);
|
|
707
|
+
}), S = (n) => q.value.has(n.value), R = (n, b) => {
|
|
708
|
+
b.stopPropagation(), n.children && n.children.length > 0 && (q.value.has(n.value) ? q.value.delete(n.value) : q.value.add(n.value));
|
|
709
|
+
}, k = F(() => ({
|
|
710
|
+
[`utopia-dropdown--${s.size}`]: !0,
|
|
711
|
+
[`utopia-dropdown--${s.state}`]: !0,
|
|
712
|
+
"utopia-dropdown--disabled": s.disabled,
|
|
713
|
+
"utopia-dropdown--multiple": s.multiple,
|
|
714
|
+
"utopia-dropdown--open": h.value,
|
|
715
|
+
"utopia-dropdown--with-message": s.message
|
|
716
|
+
})), p = F(() => ({
|
|
717
|
+
"utopia-dropdown__trigger--with-clear": s.clearable && U.value,
|
|
718
|
+
"utopia-dropdown__trigger--with-state": s.state === "valid" || s.state === "error",
|
|
719
|
+
"utopia-dropdown__trigger--open": h.value
|
|
720
|
+
})), d = F(() => ({
|
|
721
|
+
[`utopia-dropdown__message--${s.state}`]: s.state === "error" || s.state === "valid"
|
|
722
|
+
})), f = (n) => s.multiple ? Array.isArray(s.modelValue) && s.modelValue.includes(n) : s.modelValue === n, B = (n, b) => ({
|
|
723
|
+
"utopia-dropdown__option--selected": f(n.value),
|
|
724
|
+
"utopia-dropdown__option--highlighted": C.value === b,
|
|
725
|
+
"utopia-dropdown__option--disabled": n.disabled
|
|
726
|
+
}), x = () => {
|
|
727
|
+
if (!c.value) return;
|
|
728
|
+
const n = c.value.getBoundingClientRect(), a = window.innerHeight - n.bottom, I = n.top;
|
|
729
|
+
let w;
|
|
730
|
+
i.value ? w = i.value.getBoundingClientRect().height : w = parseInt(is.value.replace("px", "")) || 300;
|
|
731
|
+
const Q = a < w && I > w;
|
|
732
|
+
T.value = {
|
|
733
|
+
top: Q ? `${n.top - w - 4}px` : `${n.bottom + 4}px`,
|
|
734
|
+
left: `${n.left}px`,
|
|
735
|
+
width: `${n.width}px`
|
|
736
|
+
};
|
|
737
|
+
}, L = () => {
|
|
738
|
+
s.disabled || s.readonly || (h.value ? P() : A());
|
|
739
|
+
}, A = async () => {
|
|
740
|
+
if (!(s.disabled || s.readonly) && (x(), h.value = !0, C.value = -1, m.value = "", s.searchable && m.value.trim() && s.options.forEach((n) => {
|
|
741
|
+
n.children && n.children.length > 0 && q.value.add(n.value);
|
|
742
|
+
}), t("open"), await ks(), x(), s.searchable && r.value))
|
|
743
|
+
try {
|
|
744
|
+
const n = r.value?.$el?.querySelector("input");
|
|
745
|
+
n && n.focus();
|
|
746
|
+
} catch (n) {
|
|
747
|
+
console.warn("Could not focus search input:", n);
|
|
748
|
+
}
|
|
749
|
+
}, P = () => {
|
|
750
|
+
h.value = !1, C.value = -1, m.value = "", t("close"), c.value && c.value.focus();
|
|
751
|
+
}, E = (n, b) => {
|
|
752
|
+
for (const a of b)
|
|
753
|
+
if (a.children && a.children.length > 0) {
|
|
754
|
+
if (a.children.some((w) => w.value === n))
|
|
755
|
+
return a;
|
|
756
|
+
const I = E(n, a.children);
|
|
757
|
+
if (I) return I;
|
|
758
|
+
}
|
|
759
|
+
return null;
|
|
760
|
+
}, j = (n, b) => {
|
|
761
|
+
if (!n.children || n.children.length === 0) return !1;
|
|
762
|
+
const a = n.children.filter((I) => !I.disabled);
|
|
763
|
+
return a.length === 0 ? !1 : a.every((I) => b.includes(I.value));
|
|
764
|
+
}, os = (n, b) => {
|
|
765
|
+
if (!n.children || n.children.length === 0) return !1;
|
|
766
|
+
const a = n.children.filter((I) => !I.disabled);
|
|
767
|
+
return a.length === 0 ? !1 : a.every((I) => !b.includes(I.value));
|
|
768
|
+
}, Y = (n) => {
|
|
769
|
+
const b = [];
|
|
770
|
+
return n.children && n.children.length > 0 && n.children.forEach((a) => {
|
|
771
|
+
a.disabled || b.push(a.value), a.children && a.children.length > 0 && b.push(...Y(a));
|
|
772
|
+
}), b;
|
|
773
|
+
}, ts = (n) => {
|
|
774
|
+
if (n.disabled) return;
|
|
775
|
+
let b;
|
|
776
|
+
if (s.multiple) {
|
|
777
|
+
const a = Array.isArray(s.modelValue) ? [...s.modelValue] : [], I = a.includes(n.value);
|
|
778
|
+
if (I) {
|
|
779
|
+
const Q = a.findIndex((cs) => cs === n.value);
|
|
780
|
+
Q > -1 && a.splice(Q, 1), n.children && n.children.length > 0 && Y(n).forEach((ye) => {
|
|
781
|
+
const Ks = a.findIndex((we) => we === ye);
|
|
782
|
+
Ks > -1 && a.splice(Ks, 1);
|
|
783
|
+
});
|
|
784
|
+
} else
|
|
785
|
+
a.push(n.value), n.children && n.children.length > 0 && Y(n).forEach((cs) => {
|
|
786
|
+
a.includes(cs) || a.push(cs);
|
|
787
|
+
});
|
|
788
|
+
const w = E(n.value, s.options);
|
|
789
|
+
if (w)
|
|
790
|
+
if (I) {
|
|
791
|
+
if (os(w, a)) {
|
|
792
|
+
const Q = a.findIndex((cs) => cs === w.value);
|
|
793
|
+
Q > -1 && a.splice(Q, 1);
|
|
794
|
+
}
|
|
795
|
+
} else
|
|
796
|
+
j(w, a) && (a.includes(w.value) || a.push(w.value));
|
|
797
|
+
b = a;
|
|
798
|
+
} else
|
|
799
|
+
b = n.value, P();
|
|
800
|
+
t("update:modelValue", b), t("change", b);
|
|
801
|
+
}, as = () => {
|
|
802
|
+
const n = s.multiple ? [] : "";
|
|
803
|
+
t("update:modelValue", n), t("change", n);
|
|
804
|
+
}, Ss = (n) => {
|
|
805
|
+
if (!s.multiple || !Array.isArray(s.modelValue)) return;
|
|
806
|
+
const b = [...s.modelValue], a = b.findIndex((I) => I === n);
|
|
807
|
+
if (a > -1) {
|
|
808
|
+
b.splice(a, 1);
|
|
809
|
+
const I = E(n, s.options);
|
|
810
|
+
if (I && os(I, b)) {
|
|
811
|
+
const w = b.findIndex((Q) => Q === I.value);
|
|
812
|
+
w > -1 && b.splice(w, 1);
|
|
813
|
+
}
|
|
814
|
+
t("update:modelValue", b), t("change", b);
|
|
815
|
+
}
|
|
816
|
+
}, _s = (n) => {
|
|
817
|
+
switch (n.key) {
|
|
818
|
+
case "Enter":
|
|
819
|
+
case " ":
|
|
820
|
+
n.preventDefault(), L();
|
|
821
|
+
break;
|
|
822
|
+
case "ArrowDown":
|
|
823
|
+
n.preventDefault(), h.value ? C.value = Math.min(C.value + 1, W.value.length - 1) : A();
|
|
824
|
+
break;
|
|
825
|
+
case "ArrowUp":
|
|
826
|
+
n.preventDefault(), h.value && (C.value = Math.max(C.value - 1, 0));
|
|
827
|
+
break;
|
|
828
|
+
case "Escape":
|
|
829
|
+
h.value && (n.preventDefault(), P());
|
|
830
|
+
break;
|
|
831
|
+
case "Tab":
|
|
832
|
+
h.value && P();
|
|
833
|
+
break;
|
|
834
|
+
}
|
|
835
|
+
}, ge = () => {
|
|
836
|
+
m.value.trim() && s.options.forEach((n) => {
|
|
837
|
+
n.children && n.children.length > 0 && G(n, m.value) && q.value.add(n.value);
|
|
838
|
+
});
|
|
839
|
+
}, fe = (n) => {
|
|
840
|
+
switch (n.key) {
|
|
841
|
+
case "ArrowDown":
|
|
842
|
+
n.preventDefault(), C.value = Math.min(C.value + 1, W.value.length - 1);
|
|
843
|
+
break;
|
|
844
|
+
case "ArrowUp":
|
|
845
|
+
n.preventDefault(), C.value = Math.max(C.value - 1, 0);
|
|
846
|
+
break;
|
|
847
|
+
case "Enter":
|
|
848
|
+
n.preventDefault(), C.value >= 0 && W.value[C.value] && ts(W.value[C.value]);
|
|
849
|
+
break;
|
|
850
|
+
case "Escape":
|
|
851
|
+
n.preventDefault(), P();
|
|
852
|
+
break;
|
|
853
|
+
}
|
|
854
|
+
}, he = (n) => {
|
|
855
|
+
t("focus", n);
|
|
856
|
+
}, be = (n) => {
|
|
857
|
+
t("blur", n);
|
|
858
|
+
}, js = (n) => {
|
|
859
|
+
const b = n.target;
|
|
860
|
+
h.value && c.value && i.value && !c.value.contains(b) && !i.value.contains(b) && P();
|
|
861
|
+
};
|
|
862
|
+
let ms = null;
|
|
863
|
+
const Bs = () => {
|
|
864
|
+
h.value && (ms !== null && cancelAnimationFrame(ms), ms = requestAnimationFrame(() => {
|
|
865
|
+
x(), ms = null;
|
|
866
|
+
}));
|
|
867
|
+
};
|
|
868
|
+
return ie(() => {
|
|
869
|
+
document.addEventListener("click", js), window.addEventListener("resize", Bs), window.addEventListener("scroll", Bs, !0), ks(() => {
|
|
870
|
+
es();
|
|
871
|
+
});
|
|
872
|
+
}), ae(() => {
|
|
873
|
+
document.removeEventListener("click", js), window.removeEventListener("resize", Bs), window.removeEventListener("scroll", Bs, !0), ms !== null && (cancelAnimationFrame(ms), ms = null);
|
|
874
|
+
}), (n, b) => (u(), y("div", {
|
|
875
|
+
class: V(["utopia-dropdown", k.value])
|
|
876
|
+
}, [
|
|
877
|
+
o.label ? (u(), y("label", {
|
|
878
|
+
key: 0,
|
|
879
|
+
class: "utopia-dropdown__label",
|
|
880
|
+
for: X.value
|
|
881
|
+
}, H(o.label), 9, uo)) : _("", !0),
|
|
882
|
+
D("div", vo, [
|
|
883
|
+
D("button", {
|
|
884
|
+
id: X.value,
|
|
885
|
+
ref_key: "triggerRef",
|
|
886
|
+
ref: c,
|
|
887
|
+
type: "button",
|
|
888
|
+
class: V(["utopia-dropdown__trigger", p.value]),
|
|
889
|
+
disabled: o.disabled,
|
|
890
|
+
"aria-expanded": h.value,
|
|
891
|
+
"aria-haspopup": !0,
|
|
892
|
+
onClick: L,
|
|
893
|
+
onKeydown: _s,
|
|
894
|
+
onFocus: he,
|
|
895
|
+
onBlur: be
|
|
896
|
+
}, [
|
|
897
|
+
D("div", {
|
|
898
|
+
class: V(["utopia-dropdown__value", { "utopia-dropdown__value--placeholder": !U.value }])
|
|
899
|
+
}, [
|
|
900
|
+
o.multiple ? (u(), y(ns, { key: 1 }, [
|
|
901
|
+
U.value ? (u(), y("div", {
|
|
902
|
+
class: "utopia-dropdown__chips-wrapper",
|
|
903
|
+
key: `chips-${Z.value.length}`
|
|
904
|
+
}, [
|
|
905
|
+
g.value && ls.value ? (u(), y("div", fo)) : _("", !0),
|
|
906
|
+
D("div", {
|
|
907
|
+
ref_key: "chipsScrollRef",
|
|
908
|
+
ref: l,
|
|
909
|
+
class: "utopia-dropdown__chips",
|
|
910
|
+
onScroll: es
|
|
911
|
+
}, [
|
|
912
|
+
(u(!0), y(ns, null, Fs(Z.value.slice(0, J.value), (a) => (u(), O(z(oo), {
|
|
913
|
+
key: `chip-${a.value}`,
|
|
914
|
+
size: "small",
|
|
915
|
+
variant: "default",
|
|
916
|
+
removable: "",
|
|
917
|
+
class: "utopia-dropdown__chip",
|
|
918
|
+
onRemove: (I) => Ss(a.value)
|
|
919
|
+
}, {
|
|
920
|
+
default: ws(() => [
|
|
921
|
+
Ls(H(a.label), 1)
|
|
922
|
+
]),
|
|
923
|
+
_: 2
|
|
924
|
+
}, 1032, ["onRemove"]))), 128)),
|
|
925
|
+
Z.value.length > J.value ? (u(), y("span", ho, " +" + H(Z.value.length - J.value) + " autres ", 1)) : _("", !0)
|
|
926
|
+
], 544),
|
|
927
|
+
v.value && ls.value ? (u(), y("div", bo)) : _("", !0)
|
|
928
|
+
])) : (u(), y("span", yo, H(o.placeholder), 1))
|
|
929
|
+
], 64)) : (u(), y("span", go, H(M.value), 1))
|
|
930
|
+
], 2),
|
|
931
|
+
o.clearable && U.value && !o.disabled ? (u(), y("div", {
|
|
932
|
+
key: 0,
|
|
933
|
+
size: "sm",
|
|
934
|
+
class: "utopia-dropdown__clear",
|
|
935
|
+
onClick: bs(as, ["stop"]),
|
|
936
|
+
onMousedown: b[0] || (b[0] = bs(() => {
|
|
937
|
+
}, ["prevent"])),
|
|
938
|
+
icon: "X"
|
|
939
|
+
}, [
|
|
940
|
+
K(z(N), {
|
|
941
|
+
name: "X",
|
|
942
|
+
"stroke-width": "2",
|
|
943
|
+
size: "small",
|
|
944
|
+
color: "neutral"
|
|
945
|
+
})
|
|
946
|
+
], 32)) : _("", !0),
|
|
947
|
+
D("div", {
|
|
948
|
+
class: V(["utopia-dropdown__chevron", { "utopia-dropdown__chevron--open": h.value }])
|
|
949
|
+
}, [
|
|
950
|
+
K(z(N), {
|
|
951
|
+
name: "Chevron-down",
|
|
952
|
+
"stroke-width": "2"
|
|
953
|
+
})
|
|
954
|
+
], 2),
|
|
955
|
+
o.state === "valid" || o.state === "error" ? (u(), y("div", wo, [
|
|
956
|
+
o.state === "valid" ? (u(), O(z(N), {
|
|
957
|
+
key: 0,
|
|
958
|
+
name: "Check",
|
|
959
|
+
class: "utopia-dropdown__state-icon--valid",
|
|
960
|
+
"stroke-width": "2",
|
|
961
|
+
color: "success"
|
|
962
|
+
})) : o.state === "error" ? (u(), O(z(N), {
|
|
963
|
+
key: 1,
|
|
964
|
+
name: "Alert-triangle",
|
|
965
|
+
class: "utopia-dropdown__state-icon--error",
|
|
966
|
+
"stroke-width": "2",
|
|
967
|
+
color: "danger"
|
|
968
|
+
})) : _("", !0)
|
|
969
|
+
])) : _("", !0)
|
|
970
|
+
], 42, mo),
|
|
971
|
+
(u(), O(ce, { to: "body" }, [
|
|
972
|
+
K(Gs, { name: "utopia-dropdown-fade" }, {
|
|
973
|
+
default: ws(() => [
|
|
974
|
+
h.value ? (u(), y("div", {
|
|
975
|
+
key: 0,
|
|
976
|
+
ref_key: "menuRef",
|
|
977
|
+
ref: i,
|
|
978
|
+
id: o.innerModalId,
|
|
979
|
+
class: "utopia-dropdown__menu",
|
|
980
|
+
style: Os({
|
|
981
|
+
maxHeight: is.value,
|
|
982
|
+
top: T.value.top,
|
|
983
|
+
left: T.value.left,
|
|
984
|
+
width: T.value.width
|
|
985
|
+
}),
|
|
986
|
+
role: "listbox",
|
|
987
|
+
"aria-multiselectable": o.multiple
|
|
988
|
+
}, [
|
|
989
|
+
o.searchable ? (u(), y("div", Co, [
|
|
990
|
+
K(z(lo), {
|
|
991
|
+
ref_key: "searchRef",
|
|
992
|
+
ref: r,
|
|
993
|
+
modelValue: m.value,
|
|
994
|
+
"onUpdate:modelValue": b[1] || (b[1] = (a) => m.value = a),
|
|
995
|
+
placeholder: "Rechercher une page...",
|
|
996
|
+
icon: "Search",
|
|
997
|
+
size: "small",
|
|
998
|
+
class: "utopia-dropdown__search-input",
|
|
999
|
+
onKeydown: fe,
|
|
1000
|
+
onInput: ge
|
|
1001
|
+
}, null, 8, ["modelValue"])
|
|
1002
|
+
])) : _("", !0),
|
|
1003
|
+
D("div", So, [
|
|
1004
|
+
(u(!0), y(ns, null, Fs(W.value, (a, I) => (u(), y(ns, {
|
|
1005
|
+
key: `option-${a.value}-${I}`
|
|
1006
|
+
}, [
|
|
1007
|
+
D("div", {
|
|
1008
|
+
class: V(["utopia-dropdown__option", [
|
|
1009
|
+
B(a, I),
|
|
1010
|
+
{
|
|
1011
|
+
"utopia-dropdown__option--multiple": o.multiple,
|
|
1012
|
+
"utopia-dropdown__option--category": a.children && a.children.length > 0
|
|
1013
|
+
}
|
|
1014
|
+
]]),
|
|
1015
|
+
role: "option",
|
|
1016
|
+
"aria-selected": f(a.value),
|
|
1017
|
+
"aria-disabled": a.disabled,
|
|
1018
|
+
onClick: (w) => a.children && a.children.length > 0 ? R(a, w) : ts(a),
|
|
1019
|
+
onMouseenter: (w) => C.value = I
|
|
1020
|
+
}, [
|
|
1021
|
+
o.multiple ? (u(), y("div", Ao, [
|
|
1022
|
+
a.children && a.children.length > 0 ? (u(), y("div", {
|
|
1023
|
+
key: 0,
|
|
1024
|
+
class: V(["utopia-dropdown__category-chevron", { "utopia-dropdown__category-chevron--expanded": S(a) }]),
|
|
1025
|
+
onClick: bs((w) => R(a, w), ["stop"])
|
|
1026
|
+
}, [
|
|
1027
|
+
K(z(N), {
|
|
1028
|
+
name: "Chevron-down",
|
|
1029
|
+
"stroke-width": "2",
|
|
1030
|
+
size: "small"
|
|
1031
|
+
})
|
|
1032
|
+
], 10, Fo)) : (u(), y("div", xo)),
|
|
1033
|
+
K(z(Zs), {
|
|
1034
|
+
modelValue: f(a.value),
|
|
1035
|
+
disabled: a.disabled,
|
|
1036
|
+
size: "small",
|
|
1037
|
+
class: "utopia-dropdown__checkbox",
|
|
1038
|
+
onClick: bs((w) => ts(a), ["stop"])
|
|
1039
|
+
}, null, 8, ["modelValue", "disabled", "onClick"]),
|
|
1040
|
+
D("div", {
|
|
1041
|
+
class: "utopia-dropdown__option-label-container",
|
|
1042
|
+
title: a.secondaryLabel ? `${a.label} ${a.secondaryLabel}` : a.label,
|
|
1043
|
+
onClick: bs((w) => ts(a), ["stop"])
|
|
1044
|
+
}, [
|
|
1045
|
+
D("div", Bo, H(a.label), 1),
|
|
1046
|
+
a.secondaryLabel ? (u(), y("div", Po, H(a.secondaryLabel), 1)) : _("", !0)
|
|
1047
|
+
], 8, To)
|
|
1048
|
+
])) : (u(), y("div", {
|
|
1049
|
+
key: 1,
|
|
1050
|
+
class: "utopia-dropdown__option-label-container",
|
|
1051
|
+
title: a.secondaryLabel ? `${a.label} ${a.secondaryLabel}` : a.label
|
|
1052
|
+
}, [
|
|
1053
|
+
a.children && a.children.length > 0 ? (u(), y("div", {
|
|
1054
|
+
key: 0,
|
|
1055
|
+
class: V(["utopia-dropdown__category-chevron", { "utopia-dropdown__category-chevron--expanded": S(a) }]),
|
|
1056
|
+
onClick: bs((w) => R(a, w), ["stop"])
|
|
1057
|
+
}, [
|
|
1058
|
+
K(z(N), {
|
|
1059
|
+
name: "Chevron-down",
|
|
1060
|
+
"stroke-width": "2",
|
|
1061
|
+
size: "small"
|
|
1062
|
+
})
|
|
1063
|
+
], 10, Lo)) : _("", !0),
|
|
1064
|
+
D("div", Eo, H(a.label), 1),
|
|
1065
|
+
a.secondaryLabel ? (u(), y("div", Do, H(a.secondaryLabel), 1)) : _("", !0)
|
|
1066
|
+
], 8, Mo))
|
|
1067
|
+
], 42, _o),
|
|
1068
|
+
a.children && a.children.length > 0 && (S(a) || o.searchable && m.value.trim()) ? (u(!0), y(ns, { key: 0 }, Fs(a.children, (w, Q) => (u(), y("div", {
|
|
1069
|
+
key: `child-${w.value}-${Q}`,
|
|
1070
|
+
class: V(["utopia-dropdown__option utopia-dropdown__option--child", [
|
|
1071
|
+
B(w, -1),
|
|
1072
|
+
{ "utopia-dropdown__option--multiple": o.multiple }
|
|
1073
|
+
]]),
|
|
1074
|
+
role: "option",
|
|
1075
|
+
"aria-selected": f(w.value),
|
|
1076
|
+
"aria-disabled": w.disabled,
|
|
1077
|
+
onClick: (cs) => ts(w),
|
|
1078
|
+
onMouseenter: b[2] || (b[2] = (cs) => C.value = -1)
|
|
1079
|
+
}, [
|
|
1080
|
+
o.multiple ? (u(), y("div", Io, [
|
|
1081
|
+
b[3] || (b[3] = D("div", { class: "utopia-dropdown__category-spacer" }, null, -1)),
|
|
1082
|
+
K(z(Zs), {
|
|
1083
|
+
modelValue: f(w.value),
|
|
1084
|
+
disabled: w.disabled,
|
|
1085
|
+
size: "small",
|
|
1086
|
+
class: "utopia-dropdown__checkbox"
|
|
1087
|
+
}, null, 8, ["modelValue", "disabled"]),
|
|
1088
|
+
D("div", {
|
|
1089
|
+
class: "utopia-dropdown__option-label-container",
|
|
1090
|
+
title: w.secondaryLabel ? `${w.label} ${w.secondaryLabel}` : w.label
|
|
1091
|
+
}, [
|
|
1092
|
+
D("div", $o, H(w.label), 1),
|
|
1093
|
+
w.secondaryLabel ? (u(), y("div", zo, H(w.secondaryLabel), 1)) : _("", !0)
|
|
1094
|
+
], 8, No)
|
|
1095
|
+
])) : (u(), y("div", {
|
|
1096
|
+
key: 1,
|
|
1097
|
+
class: "utopia-dropdown__option-label-container",
|
|
1098
|
+
title: w.secondaryLabel ? `${w.label} ${w.secondaryLabel}` : w.label
|
|
1099
|
+
}, [
|
|
1100
|
+
D("div", Oo, H(w.label), 1),
|
|
1101
|
+
w.secondaryLabel ? (u(), y("div", qo, H(w.secondaryLabel), 1)) : _("", !0)
|
|
1102
|
+
], 8, Vo))
|
|
1103
|
+
], 42, Ro))), 128)) : _("", !0)
|
|
1104
|
+
], 64))), 128)),
|
|
1105
|
+
W.value.length === 0 ? (u(), y("div", Go, " Aucun résultat trouvé ")) : _("", !0)
|
|
1106
|
+
])
|
|
1107
|
+
], 12, ko)) : _("", !0)
|
|
1108
|
+
]),
|
|
1109
|
+
_: 1
|
|
1110
|
+
})
|
|
1111
|
+
]))
|
|
1112
|
+
]),
|
|
1113
|
+
o.message ? (u(), y("div", {
|
|
1114
|
+
key: 1,
|
|
1115
|
+
class: V(["utopia-dropdown__message", d.value])
|
|
1116
|
+
}, [
|
|
1117
|
+
o.state === "error" ? (u(), O(z(N), {
|
|
1118
|
+
key: 0,
|
|
1119
|
+
name: "Alert-triangle",
|
|
1120
|
+
class: "utopia-dropdown__message-icon",
|
|
1121
|
+
"stroke-width": "2"
|
|
1122
|
+
})) : o.state === "valid" ? (u(), O(z(N), {
|
|
1123
|
+
key: 1,
|
|
1124
|
+
name: "Check",
|
|
1125
|
+
class: "utopia-dropdown__message-icon",
|
|
1126
|
+
"stroke-width": "2"
|
|
1127
|
+
})) : _("", !0),
|
|
1128
|
+
Ls(" " + H(o.message), 1)
|
|
1129
|
+
], 2)) : _("", !0)
|
|
1130
|
+
], 2));
|
|
1131
|
+
}
|
|
1132
|
+
}), $t = /* @__PURE__ */ hs(Uo, [["__scopeId", "data-v-de0d71d4"]]);
|
|
1133
|
+
function Ys(o) {
|
|
1134
|
+
return typeof o == "function" ? o() : z(o);
|
|
1135
|
+
}
|
|
1136
|
+
typeof WorkerGlobalScope < "u" && globalThis instanceof WorkerGlobalScope;
|
|
1137
|
+
const Ho = (o) => o != null;
|
|
1138
|
+
var ne = ["input:not([inert]):not([inert] *)", "select:not([inert]):not([inert] *)", "textarea:not([inert]):not([inert] *)", "a[href]:not([inert]):not([inert] *)", "button:not([inert]):not([inert] *)", "[tabindex]:not(slot):not([inert]):not([inert] *)", "audio[controls]:not([inert]):not([inert] *)", "video[controls]:not([inert]):not([inert] *)", '[contenteditable]:not([contenteditable="false"]):not([inert]):not([inert] *)', "details>summary:first-of-type:not([inert]):not([inert] *)", "details:not([inert]):not([inert] *)"], Is = /* @__PURE__ */ ne.join(","), pe = typeof Element > "u", fs = pe ? function() {
|
|
1139
|
+
} : Element.prototype.matches || Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector, Ns = !pe && Element.prototype.getRootNode ? function(o) {
|
|
1140
|
+
var e;
|
|
1141
|
+
return o == null || (e = o.getRootNode) === null || e === void 0 ? void 0 : e.call(o);
|
|
1142
|
+
} : function(o) {
|
|
1143
|
+
return o?.ownerDocument;
|
|
1144
|
+
}, $s = function(e, s) {
|
|
1145
|
+
var t;
|
|
1146
|
+
s === void 0 && (s = !0);
|
|
1147
|
+
var c = e == null || (t = e.getAttribute) === null || t === void 0 ? void 0 : t.call(e, "inert"), i = c === "" || c === "true", r = i || s && e && // closest does not exist on shadow roots, so we fall back to a manual
|
|
1148
|
+
// lookup upward, in case it is not defined.
|
|
1149
|
+
(typeof e.closest == "function" ? e.closest("[inert]") : $s(e.parentNode));
|
|
1150
|
+
return r;
|
|
1151
|
+
}, Wo = function(e) {
|
|
1152
|
+
var s, t = e == null || (s = e.getAttribute) === null || s === void 0 ? void 0 : s.call(e, "contenteditable");
|
|
1153
|
+
return t === "" || t === "true";
|
|
1154
|
+
}, de = function(e, s, t) {
|
|
1155
|
+
if ($s(e))
|
|
1156
|
+
return [];
|
|
1157
|
+
var c = Array.prototype.slice.apply(e.querySelectorAll(Is));
|
|
1158
|
+
return s && fs.call(e, Is) && c.unshift(e), c = c.filter(t), c;
|
|
1159
|
+
}, zs = function(e, s, t) {
|
|
1160
|
+
for (var c = [], i = Array.from(e); i.length; ) {
|
|
1161
|
+
var r = i.shift();
|
|
1162
|
+
if (!$s(r, !1))
|
|
1163
|
+
if (r.tagName === "SLOT") {
|
|
1164
|
+
var l = r.assignedElements(), g = l.length ? l : r.children, v = zs(g, !0, t);
|
|
1165
|
+
t.flatten ? c.push.apply(c, v) : c.push({
|
|
1166
|
+
scopeParent: r,
|
|
1167
|
+
candidates: v
|
|
1168
|
+
});
|
|
1169
|
+
} else {
|
|
1170
|
+
var h = fs.call(r, Is);
|
|
1171
|
+
h && t.filter(r) && (s || !e.includes(r)) && c.push(r);
|
|
1172
|
+
var m = r.shadowRoot || // check for an undisclosed shadow
|
|
1173
|
+
typeof t.getShadowRoot == "function" && t.getShadowRoot(r), C = !$s(m, !1) && (!t.shadowRootFilter || t.shadowRootFilter(r));
|
|
1174
|
+
if (m && C) {
|
|
1175
|
+
var T = zs(m === !0 ? r.children : m.children, !0, t);
|
|
1176
|
+
t.flatten ? c.push.apply(c, T) : c.push({
|
|
1177
|
+
scopeParent: r,
|
|
1178
|
+
candidates: T
|
|
1179
|
+
});
|
|
1180
|
+
} else
|
|
1181
|
+
i.unshift.apply(i, r.children);
|
|
1182
|
+
}
|
|
1183
|
+
}
|
|
1184
|
+
return c;
|
|
1185
|
+
}, le = function(e) {
|
|
1186
|
+
return !isNaN(parseInt(e.getAttribute("tabindex"), 10));
|
|
1187
|
+
}, gs = function(e) {
|
|
1188
|
+
if (!e)
|
|
1189
|
+
throw new Error("No node provided");
|
|
1190
|
+
return e.tabIndex < 0 && (/^(AUDIO|VIDEO|DETAILS)$/.test(e.tagName) || Wo(e)) && !le(e) ? 0 : e.tabIndex;
|
|
1191
|
+
}, jo = function(e, s) {
|
|
1192
|
+
var t = gs(e);
|
|
1193
|
+
return t < 0 && s && !le(e) ? 0 : t;
|
|
1194
|
+
}, Ko = function(e, s) {
|
|
1195
|
+
return e.tabIndex === s.tabIndex ? e.documentOrder - s.documentOrder : e.tabIndex - s.tabIndex;
|
|
1196
|
+
}, ue = function(e) {
|
|
1197
|
+
return e.tagName === "INPUT";
|
|
1198
|
+
}, Xo = function(e) {
|
|
1199
|
+
return ue(e) && e.type === "hidden";
|
|
1200
|
+
}, Zo = function(e) {
|
|
1201
|
+
var s = e.tagName === "DETAILS" && Array.prototype.slice.apply(e.children).some(function(t) {
|
|
1202
|
+
return t.tagName === "SUMMARY";
|
|
1203
|
+
});
|
|
1204
|
+
return s;
|
|
1205
|
+
}, Yo = function(e, s) {
|
|
1206
|
+
for (var t = 0; t < e.length; t++)
|
|
1207
|
+
if (e[t].checked && e[t].form === s)
|
|
1208
|
+
return e[t];
|
|
1209
|
+
}, Qo = function(e) {
|
|
1210
|
+
if (!e.name)
|
|
1211
|
+
return !0;
|
|
1212
|
+
var s = e.form || Ns(e), t = function(l) {
|
|
1213
|
+
return s.querySelectorAll('input[type="radio"][name="' + l + '"]');
|
|
1214
|
+
}, c;
|
|
1215
|
+
if (typeof window < "u" && typeof window.CSS < "u" && typeof window.CSS.escape == "function")
|
|
1216
|
+
c = t(window.CSS.escape(e.name));
|
|
1217
|
+
else
|
|
1218
|
+
try {
|
|
1219
|
+
c = t(e.name);
|
|
1220
|
+
} catch (r) {
|
|
1221
|
+
return console.error("Looks like you have a radio button with a name attribute containing invalid CSS selector characters and need the CSS.escape polyfill: %s", r.message), !1;
|
|
1222
|
+
}
|
|
1223
|
+
var i = Yo(c, e.form);
|
|
1224
|
+
return !i || i === e;
|
|
1225
|
+
}, Jo = function(e) {
|
|
1226
|
+
return ue(e) && e.type === "radio";
|
|
1227
|
+
}, st = function(e) {
|
|
1228
|
+
return Jo(e) && !Qo(e);
|
|
1229
|
+
}, et = function(e) {
|
|
1230
|
+
var s, t = e && Ns(e), c = (s = t) === null || s === void 0 ? void 0 : s.host, i = !1;
|
|
1231
|
+
if (t && t !== e) {
|
|
1232
|
+
var r, l, g;
|
|
1233
|
+
for (i = !!((r = c) !== null && r !== void 0 && (l = r.ownerDocument) !== null && l !== void 0 && l.contains(c) || e != null && (g = e.ownerDocument) !== null && g !== void 0 && g.contains(e)); !i && c; ) {
|
|
1234
|
+
var v, h, m;
|
|
1235
|
+
t = Ns(c), c = (v = t) === null || v === void 0 ? void 0 : v.host, i = !!((h = c) !== null && h !== void 0 && (m = h.ownerDocument) !== null && m !== void 0 && m.contains(c));
|
|
1236
|
+
}
|
|
1237
|
+
}
|
|
1238
|
+
return i;
|
|
1239
|
+
}, Qs = function(e) {
|
|
1240
|
+
var s = e.getBoundingClientRect(), t = s.width, c = s.height;
|
|
1241
|
+
return t === 0 && c === 0;
|
|
1242
|
+
}, ot = function(e, s) {
|
|
1243
|
+
var t = s.displayCheck, c = s.getShadowRoot;
|
|
1244
|
+
if (t === "full-native" && "checkVisibility" in e) {
|
|
1245
|
+
var i = e.checkVisibility({
|
|
1246
|
+
// Checking opacity might be desirable for some use cases, but natively,
|
|
1247
|
+
// opacity zero elements _are_ focusable and tabbable.
|
|
1248
|
+
checkOpacity: !1,
|
|
1249
|
+
opacityProperty: !1,
|
|
1250
|
+
contentVisibilityAuto: !0,
|
|
1251
|
+
visibilityProperty: !0,
|
|
1252
|
+
// This is an alias for `visibilityProperty`. Contemporary browsers
|
|
1253
|
+
// support both. However, this alias has wider browser support (Chrome
|
|
1254
|
+
// >= 105 and Firefox >= 106, vs. Chrome >= 121 and Firefox >= 122), so
|
|
1255
|
+
// we include it anyway.
|
|
1256
|
+
checkVisibilityCSS: !0
|
|
1257
|
+
});
|
|
1258
|
+
return !i;
|
|
1259
|
+
}
|
|
1260
|
+
if (getComputedStyle(e).visibility === "hidden")
|
|
1261
|
+
return !0;
|
|
1262
|
+
var r = fs.call(e, "details>summary:first-of-type"), l = r ? e.parentElement : e;
|
|
1263
|
+
if (fs.call(l, "details:not([open]) *"))
|
|
1264
|
+
return !0;
|
|
1265
|
+
if (!t || t === "full" || // full-native can run this branch when it falls through in case
|
|
1266
|
+
// Element#checkVisibility is unsupported
|
|
1267
|
+
t === "full-native" || t === "legacy-full") {
|
|
1268
|
+
if (typeof c == "function") {
|
|
1269
|
+
for (var g = e; e; ) {
|
|
1270
|
+
var v = e.parentElement, h = Ns(e);
|
|
1271
|
+
if (v && !v.shadowRoot && c(v) === !0)
|
|
1272
|
+
return Qs(e);
|
|
1273
|
+
e.assignedSlot ? e = e.assignedSlot : !v && h !== e.ownerDocument ? e = h.host : e = v;
|
|
1274
|
+
}
|
|
1275
|
+
e = g;
|
|
1276
|
+
}
|
|
1277
|
+
if (et(e))
|
|
1278
|
+
return !e.getClientRects().length;
|
|
1279
|
+
if (t !== "legacy-full")
|
|
1280
|
+
return !0;
|
|
1281
|
+
} else if (t === "non-zero-area")
|
|
1282
|
+
return Qs(e);
|
|
1283
|
+
return !1;
|
|
1284
|
+
}, tt = function(e) {
|
|
1285
|
+
if (/^(INPUT|BUTTON|SELECT|TEXTAREA)$/.test(e.tagName))
|
|
1286
|
+
for (var s = e.parentElement; s; ) {
|
|
1287
|
+
if (s.tagName === "FIELDSET" && s.disabled) {
|
|
1288
|
+
for (var t = 0; t < s.children.length; t++) {
|
|
1289
|
+
var c = s.children.item(t);
|
|
1290
|
+
if (c.tagName === "LEGEND")
|
|
1291
|
+
return fs.call(s, "fieldset[disabled] *") ? !0 : !c.contains(e);
|
|
1292
|
+
}
|
|
1293
|
+
return !0;
|
|
1294
|
+
}
|
|
1295
|
+
s = s.parentElement;
|
|
1296
|
+
}
|
|
1297
|
+
return !1;
|
|
1298
|
+
}, Vs = function(e, s) {
|
|
1299
|
+
return !(s.disabled || Xo(s) || ot(s, e) || // For a details element with a summary, the summary element gets the focus
|
|
1300
|
+
Zo(s) || tt(s));
|
|
1301
|
+
}, Us = function(e, s) {
|
|
1302
|
+
return !(st(s) || gs(s) < 0 || !Vs(e, s));
|
|
1303
|
+
}, rt = function(e) {
|
|
1304
|
+
var s = parseInt(e.getAttribute("tabindex"), 10);
|
|
1305
|
+
return !!(isNaN(s) || s >= 0);
|
|
1306
|
+
}, ve = function(e) {
|
|
1307
|
+
var s = [], t = [];
|
|
1308
|
+
return e.forEach(function(c, i) {
|
|
1309
|
+
var r = !!c.scopeParent, l = r ? c.scopeParent : c, g = jo(l, r), v = r ? ve(c.candidates) : l;
|
|
1310
|
+
g === 0 ? r ? s.push.apply(s, v) : s.push(l) : t.push({
|
|
1311
|
+
documentOrder: i,
|
|
1312
|
+
tabIndex: g,
|
|
1313
|
+
item: c,
|
|
1314
|
+
isScope: r,
|
|
1315
|
+
content: v
|
|
1316
|
+
});
|
|
1317
|
+
}), t.sort(Ko).reduce(function(c, i) {
|
|
1318
|
+
return i.isScope ? c.push.apply(c, i.content) : c.push(i.content), c;
|
|
1319
|
+
}, []).concat(s);
|
|
1320
|
+
}, it = function(e, s) {
|
|
1321
|
+
s = s || {};
|
|
1322
|
+
var t;
|
|
1323
|
+
return s.getShadowRoot ? t = zs([e], s.includeContainer, {
|
|
1324
|
+
filter: Us.bind(null, s),
|
|
1325
|
+
flatten: !1,
|
|
1326
|
+
getShadowRoot: s.getShadowRoot,
|
|
1327
|
+
shadowRootFilter: rt
|
|
1328
|
+
}) : t = de(e, s.includeContainer, Us.bind(null, s)), ve(t);
|
|
1329
|
+
}, at = function(e, s) {
|
|
1330
|
+
s = s || {};
|
|
1331
|
+
var t;
|
|
1332
|
+
return s.getShadowRoot ? t = zs([e], s.includeContainer, {
|
|
1333
|
+
filter: Vs.bind(null, s),
|
|
1334
|
+
flatten: !0,
|
|
1335
|
+
getShadowRoot: s.getShadowRoot
|
|
1336
|
+
}) : t = de(e, s.includeContainer, Vs.bind(null, s)), t;
|
|
1337
|
+
}, ys = function(e, s) {
|
|
1338
|
+
if (s = s || {}, !e)
|
|
1339
|
+
throw new Error("No node provided");
|
|
1340
|
+
return fs.call(e, Is) === !1 ? !1 : Us(s, e);
|
|
1341
|
+
}, ct = /* @__PURE__ */ ne.concat("iframe:not([inert]):not([inert] *)").join(","), qs = function(e, s) {
|
|
1342
|
+
if (s = s || {}, !e)
|
|
1343
|
+
throw new Error("No node provided");
|
|
1344
|
+
return fs.call(e, ct) === !1 ? !1 : Vs(s, e);
|
|
1345
|
+
};
|
|
1346
|
+
function Hs(o, e) {
|
|
1347
|
+
(e == null || e > o.length) && (e = o.length);
|
|
1348
|
+
for (var s = 0, t = Array(e); s < e; s++) t[s] = o[s];
|
|
1349
|
+
return t;
|
|
1350
|
+
}
|
|
1351
|
+
function nt(o) {
|
|
1352
|
+
if (Array.isArray(o)) return Hs(o);
|
|
1353
|
+
}
|
|
1354
|
+
function Js(o, e) {
|
|
1355
|
+
var s = typeof Symbol < "u" && o[Symbol.iterator] || o["@@iterator"];
|
|
1356
|
+
if (!s) {
|
|
1357
|
+
if (Array.isArray(o) || (s = me(o)) || e) {
|
|
1358
|
+
s && (o = s);
|
|
1359
|
+
var t = 0, c = function() {
|
|
1360
|
+
};
|
|
1361
|
+
return {
|
|
1362
|
+
s: c,
|
|
1363
|
+
n: function() {
|
|
1364
|
+
return t >= o.length ? {
|
|
1365
|
+
done: !0
|
|
1366
|
+
} : {
|
|
1367
|
+
done: !1,
|
|
1368
|
+
value: o[t++]
|
|
1369
|
+
};
|
|
1370
|
+
},
|
|
1371
|
+
e: function(g) {
|
|
1372
|
+
throw g;
|
|
1373
|
+
},
|
|
1374
|
+
f: c
|
|
1375
|
+
};
|
|
1376
|
+
}
|
|
1377
|
+
throw new TypeError(`Invalid attempt to iterate non-iterable instance.
|
|
1378
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
|
|
1379
|
+
}
|
|
1380
|
+
var i, r = !0, l = !1;
|
|
1381
|
+
return {
|
|
1382
|
+
s: function() {
|
|
1383
|
+
s = s.call(o);
|
|
1384
|
+
},
|
|
1385
|
+
n: function() {
|
|
1386
|
+
var g = s.next();
|
|
1387
|
+
return r = g.done, g;
|
|
1388
|
+
},
|
|
1389
|
+
e: function(g) {
|
|
1390
|
+
l = !0, i = g;
|
|
1391
|
+
},
|
|
1392
|
+
f: function() {
|
|
1393
|
+
try {
|
|
1394
|
+
r || s.return == null || s.return();
|
|
1395
|
+
} finally {
|
|
1396
|
+
if (l) throw i;
|
|
1397
|
+
}
|
|
1398
|
+
}
|
|
1399
|
+
};
|
|
1400
|
+
}
|
|
1401
|
+
function pt(o, e, s) {
|
|
1402
|
+
return (e = mt(e)) in o ? Object.defineProperty(o, e, {
|
|
1403
|
+
value: s,
|
|
1404
|
+
enumerable: !0,
|
|
1405
|
+
configurable: !0,
|
|
1406
|
+
writable: !0
|
|
1407
|
+
}) : o[e] = s, o;
|
|
1408
|
+
}
|
|
1409
|
+
function dt(o) {
|
|
1410
|
+
if (typeof Symbol < "u" && o[Symbol.iterator] != null || o["@@iterator"] != null) return Array.from(o);
|
|
1411
|
+
}
|
|
1412
|
+
function lt() {
|
|
1413
|
+
throw new TypeError(`Invalid attempt to spread non-iterable instance.
|
|
1414
|
+
In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
|
|
1415
|
+
}
|
|
1416
|
+
function se(o, e) {
|
|
1417
|
+
var s = Object.keys(o);
|
|
1418
|
+
if (Object.getOwnPropertySymbols) {
|
|
1419
|
+
var t = Object.getOwnPropertySymbols(o);
|
|
1420
|
+
e && (t = t.filter(function(c) {
|
|
1421
|
+
return Object.getOwnPropertyDescriptor(o, c).enumerable;
|
|
1422
|
+
})), s.push.apply(s, t);
|
|
1423
|
+
}
|
|
1424
|
+
return s;
|
|
1425
|
+
}
|
|
1426
|
+
function ee(o) {
|
|
1427
|
+
for (var e = 1; e < arguments.length; e++) {
|
|
1428
|
+
var s = arguments[e] != null ? arguments[e] : {};
|
|
1429
|
+
e % 2 ? se(Object(s), !0).forEach(function(t) {
|
|
1430
|
+
pt(o, t, s[t]);
|
|
1431
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties(o, Object.getOwnPropertyDescriptors(s)) : se(Object(s)).forEach(function(t) {
|
|
1432
|
+
Object.defineProperty(o, t, Object.getOwnPropertyDescriptor(s, t));
|
|
1433
|
+
});
|
|
1434
|
+
}
|
|
1435
|
+
return o;
|
|
1436
|
+
}
|
|
1437
|
+
function ut(o) {
|
|
1438
|
+
return nt(o) || dt(o) || me(o) || lt();
|
|
1439
|
+
}
|
|
1440
|
+
function vt(o, e) {
|
|
1441
|
+
if (typeof o != "object" || !o) return o;
|
|
1442
|
+
var s = o[Symbol.toPrimitive];
|
|
1443
|
+
if (s !== void 0) {
|
|
1444
|
+
var t = s.call(o, e);
|
|
1445
|
+
if (typeof t != "object") return t;
|
|
1446
|
+
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
1447
|
+
}
|
|
1448
|
+
return (e === "string" ? String : Number)(o);
|
|
1449
|
+
}
|
|
1450
|
+
function mt(o) {
|
|
1451
|
+
var e = vt(o, "string");
|
|
1452
|
+
return typeof e == "symbol" ? e : e + "";
|
|
1453
|
+
}
|
|
1454
|
+
function me(o, e) {
|
|
1455
|
+
if (o) {
|
|
1456
|
+
if (typeof o == "string") return Hs(o, e);
|
|
1457
|
+
var s = {}.toString.call(o).slice(8, -1);
|
|
1458
|
+
return s === "Object" && o.constructor && (s = o.constructor.name), s === "Map" || s === "Set" ? Array.from(o) : s === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(s) ? Hs(o, e) : void 0;
|
|
1459
|
+
}
|
|
1460
|
+
}
|
|
1461
|
+
var ps = {
|
|
1462
|
+
// Returns the trap from the top of the stack.
|
|
1463
|
+
getActiveTrap: function(e) {
|
|
1464
|
+
return e?.length > 0 ? e[e.length - 1] : null;
|
|
1465
|
+
},
|
|
1466
|
+
// Pauses the currently active trap, then adds a new trap to the stack.
|
|
1467
|
+
activateTrap: function(e, s) {
|
|
1468
|
+
var t = ps.getActiveTrap(e);
|
|
1469
|
+
s !== t && ps.pauseTrap(e);
|
|
1470
|
+
var c = e.indexOf(s);
|
|
1471
|
+
c === -1 || e.splice(c, 1), e.push(s);
|
|
1472
|
+
},
|
|
1473
|
+
// Removes the trap from the top of the stack, then unpauses the next trap down.
|
|
1474
|
+
deactivateTrap: function(e, s) {
|
|
1475
|
+
var t = e.indexOf(s);
|
|
1476
|
+
t !== -1 && e.splice(t, 1), ps.unpauseTrap(e);
|
|
1477
|
+
},
|
|
1478
|
+
// Pauses the trap at the top of the stack.
|
|
1479
|
+
pauseTrap: function(e) {
|
|
1480
|
+
var s = ps.getActiveTrap(e);
|
|
1481
|
+
s?._setPausedState(!0);
|
|
1482
|
+
},
|
|
1483
|
+
// Unpauses the trap at the top of the stack.
|
|
1484
|
+
unpauseTrap: function(e) {
|
|
1485
|
+
var s = ps.getActiveTrap(e);
|
|
1486
|
+
s && !s._isManuallyPaused() && s._setPausedState(!1);
|
|
1487
|
+
}
|
|
1488
|
+
}, gt = function(e) {
|
|
1489
|
+
return e.tagName && e.tagName.toLowerCase() === "input" && typeof e.select == "function";
|
|
1490
|
+
}, ft = function(e) {
|
|
1491
|
+
return e?.key === "Escape" || e?.key === "Esc" || e?.keyCode === 27;
|
|
1492
|
+
}, Ts = function(e) {
|
|
1493
|
+
return e?.key === "Tab" || e?.keyCode === 9;
|
|
1494
|
+
}, ht = function(e) {
|
|
1495
|
+
return Ts(e) && !e.shiftKey;
|
|
1496
|
+
}, bt = function(e) {
|
|
1497
|
+
return Ts(e) && e.shiftKey;
|
|
1498
|
+
}, oe = function(e) {
|
|
1499
|
+
return setTimeout(e, 0);
|
|
1500
|
+
}, As = function(e) {
|
|
1501
|
+
for (var s = arguments.length, t = new Array(s > 1 ? s - 1 : 0), c = 1; c < s; c++)
|
|
1502
|
+
t[c - 1] = arguments[c];
|
|
1503
|
+
return typeof e == "function" ? e.apply(void 0, t) : e;
|
|
1504
|
+
}, Ms = function(e) {
|
|
1505
|
+
return e.target.shadowRoot && typeof e.composedPath == "function" ? e.composedPath()[0] : e.target;
|
|
1506
|
+
}, yt = [], wt = function(e, s) {
|
|
1507
|
+
var t = s?.document || document, c = s?.trapStack || yt, i = ee({
|
|
1508
|
+
returnFocusOnDeactivate: !0,
|
|
1509
|
+
escapeDeactivates: !0,
|
|
1510
|
+
delayInitialFocus: !0,
|
|
1511
|
+
isolateSubtrees: !1,
|
|
1512
|
+
isKeyForward: ht,
|
|
1513
|
+
isKeyBackward: bt
|
|
1514
|
+
}, s), r = {
|
|
1515
|
+
// containers given to createFocusTrap()
|
|
1516
|
+
/** @type {Array<HTMLElement>} */
|
|
1517
|
+
containers: [],
|
|
1518
|
+
// list of objects identifying tabbable nodes in `containers` in the trap
|
|
1519
|
+
// NOTE: it's possible that a group has no tabbable nodes if nodes get removed while the trap
|
|
1520
|
+
// is active, but the trap should never get to a state where there isn't at least one group
|
|
1521
|
+
// with at least one tabbable node in it (that would lead to an error condition that would
|
|
1522
|
+
// result in an error being thrown)
|
|
1523
|
+
/** @type {Array<{
|
|
1524
|
+
* container: HTMLElement,
|
|
1525
|
+
* tabbableNodes: Array<HTMLElement>, // empty if none
|
|
1526
|
+
* focusableNodes: Array<HTMLElement>, // empty if none
|
|
1527
|
+
* posTabIndexesFound: boolean,
|
|
1528
|
+
* firstTabbableNode: HTMLElement|undefined,
|
|
1529
|
+
* lastTabbableNode: HTMLElement|undefined,
|
|
1530
|
+
* firstDomTabbableNode: HTMLElement|undefined,
|
|
1531
|
+
* lastDomTabbableNode: HTMLElement|undefined,
|
|
1532
|
+
* nextTabbableNode: (node: HTMLElement, forward: boolean) => HTMLElement|undefined
|
|
1533
|
+
* }>}
|
|
1534
|
+
*/
|
|
1535
|
+
containerGroups: [],
|
|
1536
|
+
// same order/length as `containers` list
|
|
1537
|
+
// references to objects in `containerGroups`, but only those that actually have
|
|
1538
|
+
// tabbable nodes in them
|
|
1539
|
+
// NOTE: same order as `containers` and `containerGroups`, but __not necessarily__
|
|
1540
|
+
// the same length
|
|
1541
|
+
tabbableGroups: [],
|
|
1542
|
+
// references to nodes that are siblings to the ancestors of this trap's containers.
|
|
1543
|
+
/** @type {Set<HTMLElement>} */
|
|
1544
|
+
adjacentElements: /* @__PURE__ */ new Set(),
|
|
1545
|
+
// references to nodes that were inert or aria-hidden before the trap was activated.
|
|
1546
|
+
/** @type {Set<HTMLElement>} */
|
|
1547
|
+
alreadySilent: /* @__PURE__ */ new Set(),
|
|
1548
|
+
nodeFocusedBeforeActivation: null,
|
|
1549
|
+
mostRecentlyFocusedNode: null,
|
|
1550
|
+
active: !1,
|
|
1551
|
+
paused: !1,
|
|
1552
|
+
manuallyPaused: !1,
|
|
1553
|
+
// timer ID for when delayInitialFocus is true and initial focus in this trap
|
|
1554
|
+
// has been delayed during activation
|
|
1555
|
+
delayInitialFocusTimer: void 0,
|
|
1556
|
+
// the most recent KeyboardEvent for the configured nav key (typically [SHIFT+]TAB), if any
|
|
1557
|
+
recentNavEvent: void 0
|
|
1558
|
+
}, l, g = function(p, d, f) {
|
|
1559
|
+
return p && p[d] !== void 0 ? p[d] : i[f || d];
|
|
1560
|
+
}, v = function(p, d) {
|
|
1561
|
+
var f = typeof d?.composedPath == "function" ? d.composedPath() : void 0;
|
|
1562
|
+
return r.containerGroups.findIndex(function(B) {
|
|
1563
|
+
var x = B.container, L = B.tabbableNodes;
|
|
1564
|
+
return x.contains(p) || f?.includes(x) || L.find(function(A) {
|
|
1565
|
+
return A === p;
|
|
1566
|
+
});
|
|
1567
|
+
});
|
|
1568
|
+
}, h = function(p) {
|
|
1569
|
+
var d = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, f = d.hasFallback, B = f === void 0 ? !1 : f, x = d.params, L = x === void 0 ? [] : x, A = i[p];
|
|
1570
|
+
if (typeof A == "function" && (A = A.apply(void 0, ut(L))), A === !0 && (A = void 0), !A) {
|
|
1571
|
+
if (A === void 0 || A === !1)
|
|
1572
|
+
return A;
|
|
1573
|
+
throw new Error("`".concat(p, "` was specified but was not a node, or did not return a node"));
|
|
1574
|
+
}
|
|
1575
|
+
var P = A;
|
|
1576
|
+
if (typeof A == "string") {
|
|
1577
|
+
try {
|
|
1578
|
+
P = t.querySelector(A);
|
|
1579
|
+
} catch (E) {
|
|
1580
|
+
throw new Error("`".concat(p, '` appears to be an invalid selector; error="').concat(E.message, '"'));
|
|
1581
|
+
}
|
|
1582
|
+
if (!P && !B)
|
|
1583
|
+
throw new Error("`".concat(p, "` as selector refers to no known node"));
|
|
1584
|
+
}
|
|
1585
|
+
return P;
|
|
1586
|
+
}, m = function() {
|
|
1587
|
+
var p = h("initialFocus", {
|
|
1588
|
+
hasFallback: !0
|
|
1589
|
+
});
|
|
1590
|
+
if (p === !1)
|
|
1591
|
+
return !1;
|
|
1592
|
+
if (p === void 0 || p && !qs(p, i.tabbableOptions))
|
|
1593
|
+
if (v(t.activeElement) >= 0)
|
|
1594
|
+
p = t.activeElement;
|
|
1595
|
+
else {
|
|
1596
|
+
var d = r.tabbableGroups[0], f = d && d.firstTabbableNode;
|
|
1597
|
+
p = f || h("fallbackFocus");
|
|
1598
|
+
}
|
|
1599
|
+
else p === null && (p = h("fallbackFocus"));
|
|
1600
|
+
if (!p)
|
|
1601
|
+
throw new Error("Your focus-trap needs to have at least one focusable element");
|
|
1602
|
+
return p;
|
|
1603
|
+
}, C = function() {
|
|
1604
|
+
if (r.containerGroups = r.containers.map(function(p) {
|
|
1605
|
+
var d = it(p, i.tabbableOptions), f = at(p, i.tabbableOptions), B = d.length > 0 ? d[0] : void 0, x = d.length > 0 ? d[d.length - 1] : void 0, L = f.find(function(E) {
|
|
1606
|
+
return ys(E);
|
|
1607
|
+
}), A = f.slice().reverse().find(function(E) {
|
|
1608
|
+
return ys(E);
|
|
1609
|
+
}), P = !!d.find(function(E) {
|
|
1610
|
+
return gs(E) > 0;
|
|
1611
|
+
});
|
|
1612
|
+
return {
|
|
1613
|
+
container: p,
|
|
1614
|
+
tabbableNodes: d,
|
|
1615
|
+
focusableNodes: f,
|
|
1616
|
+
/** True if at least one node with positive `tabindex` was found in this container. */
|
|
1617
|
+
posTabIndexesFound: P,
|
|
1618
|
+
/** First tabbable node in container, __tabindex__ order; `undefined` if none. */
|
|
1619
|
+
firstTabbableNode: B,
|
|
1620
|
+
/** Last tabbable node in container, __tabindex__ order; `undefined` if none. */
|
|
1621
|
+
lastTabbableNode: x,
|
|
1622
|
+
// NOTE: DOM order is NOT NECESSARILY "document position" order, but figuring that out
|
|
1623
|
+
// would require more than just https://developer.mozilla.org/en-US/docs/Web/API/Node/compareDocumentPosition
|
|
1624
|
+
// because that API doesn't work with Shadow DOM as well as it should (@see
|
|
1625
|
+
// https://github.com/whatwg/dom/issues/320) and since this first/last is only needed, so far,
|
|
1626
|
+
// to address an edge case related to positive tabindex support, this seems like a much easier,
|
|
1627
|
+
// "close enough most of the time" alternative for positive tabindexes which should generally
|
|
1628
|
+
// be avoided anyway...
|
|
1629
|
+
/** First tabbable node in container, __DOM__ order; `undefined` if none. */
|
|
1630
|
+
firstDomTabbableNode: L,
|
|
1631
|
+
/** Last tabbable node in container, __DOM__ order; `undefined` if none. */
|
|
1632
|
+
lastDomTabbableNode: A,
|
|
1633
|
+
/**
|
|
1634
|
+
* Finds the __tabbable__ node that follows the given node in the specified direction,
|
|
1635
|
+
* in this container, if any.
|
|
1636
|
+
* @param {HTMLElement} node
|
|
1637
|
+
* @param {boolean} [forward] True if going in forward tab order; false if going
|
|
1638
|
+
* in reverse.
|
|
1639
|
+
* @returns {HTMLElement|undefined} The next tabbable node, if any.
|
|
1640
|
+
*/
|
|
1641
|
+
nextTabbableNode: function(j) {
|
|
1642
|
+
var os = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !0, Y = d.indexOf(j);
|
|
1643
|
+
return Y < 0 ? os ? f.slice(f.indexOf(j) + 1).find(function(ts) {
|
|
1644
|
+
return ys(ts);
|
|
1645
|
+
}) : f.slice(0, f.indexOf(j)).reverse().find(function(ts) {
|
|
1646
|
+
return ys(ts);
|
|
1647
|
+
}) : d[Y + (os ? 1 : -1)];
|
|
1648
|
+
}
|
|
1649
|
+
};
|
|
1650
|
+
}), r.tabbableGroups = r.containerGroups.filter(function(p) {
|
|
1651
|
+
return p.tabbableNodes.length > 0;
|
|
1652
|
+
}), r.tabbableGroups.length <= 0 && !h("fallbackFocus"))
|
|
1653
|
+
throw new Error("Your focus-trap must have at least one container with at least one tabbable node in it at all times");
|
|
1654
|
+
if (r.containerGroups.find(function(p) {
|
|
1655
|
+
return p.posTabIndexesFound;
|
|
1656
|
+
}) && r.containerGroups.length > 1)
|
|
1657
|
+
throw new Error("At least one node with a positive tabindex was found in one of your focus-trap's multiple containers. Positive tabindexes are only supported in single-container focus-traps.");
|
|
1658
|
+
}, T = function(p) {
|
|
1659
|
+
var d = p.activeElement;
|
|
1660
|
+
if (d)
|
|
1661
|
+
return d.shadowRoot && d.shadowRoot.activeElement !== null ? T(d.shadowRoot) : d;
|
|
1662
|
+
}, q = function(p) {
|
|
1663
|
+
if (p !== !1 && p !== T(document)) {
|
|
1664
|
+
if (!p || !p.focus) {
|
|
1665
|
+
q(m());
|
|
1666
|
+
return;
|
|
1667
|
+
}
|
|
1668
|
+
p.focus({
|
|
1669
|
+
preventScroll: !!i.preventScroll
|
|
1670
|
+
}), r.mostRecentlyFocusedNode = p, gt(p) && p.select();
|
|
1671
|
+
}
|
|
1672
|
+
}, X = function(p) {
|
|
1673
|
+
var d = h("setReturnFocus", {
|
|
1674
|
+
params: [p]
|
|
1675
|
+
});
|
|
1676
|
+
return d || (d === !1 ? !1 : p);
|
|
1677
|
+
}, U = function(p) {
|
|
1678
|
+
var d = p.target, f = p.event, B = p.isBackward, x = B === void 0 ? !1 : B;
|
|
1679
|
+
d = d || Ms(f), C();
|
|
1680
|
+
var L = null;
|
|
1681
|
+
if (r.tabbableGroups.length > 0) {
|
|
1682
|
+
var A = v(d, f), P = A >= 0 ? r.containerGroups[A] : void 0;
|
|
1683
|
+
if (A < 0)
|
|
1684
|
+
x ? L = r.tabbableGroups[r.tabbableGroups.length - 1].lastTabbableNode : L = r.tabbableGroups[0].firstTabbableNode;
|
|
1685
|
+
else if (x) {
|
|
1686
|
+
var E = r.tabbableGroups.findIndex(function(Ss) {
|
|
1687
|
+
var _s = Ss.firstTabbableNode;
|
|
1688
|
+
return d === _s;
|
|
1689
|
+
});
|
|
1690
|
+
if (E < 0 && (P.container === d || qs(d, i.tabbableOptions) && !ys(d, i.tabbableOptions) && !P.nextTabbableNode(d, !1)) && (E = A), E >= 0) {
|
|
1691
|
+
var j = E === 0 ? r.tabbableGroups.length - 1 : E - 1, os = r.tabbableGroups[j];
|
|
1692
|
+
L = gs(d) >= 0 ? os.lastTabbableNode : os.lastDomTabbableNode;
|
|
1693
|
+
} else Ts(f) || (L = P.nextTabbableNode(d, !1));
|
|
1694
|
+
} else {
|
|
1695
|
+
var Y = r.tabbableGroups.findIndex(function(Ss) {
|
|
1696
|
+
var _s = Ss.lastTabbableNode;
|
|
1697
|
+
return d === _s;
|
|
1698
|
+
});
|
|
1699
|
+
if (Y < 0 && (P.container === d || qs(d, i.tabbableOptions) && !ys(d, i.tabbableOptions) && !P.nextTabbableNode(d)) && (Y = A), Y >= 0) {
|
|
1700
|
+
var ts = Y === r.tabbableGroups.length - 1 ? 0 : Y + 1, as = r.tabbableGroups[ts];
|
|
1701
|
+
L = gs(d) >= 0 ? as.firstTabbableNode : as.firstDomTabbableNode;
|
|
1702
|
+
} else Ts(f) || (L = P.nextTabbableNode(d));
|
|
1703
|
+
}
|
|
1704
|
+
} else
|
|
1705
|
+
L = h("fallbackFocus");
|
|
1706
|
+
return L;
|
|
1707
|
+
}, Z = function(p) {
|
|
1708
|
+
var d = Ms(p);
|
|
1709
|
+
if (!(v(d, p) >= 0)) {
|
|
1710
|
+
if (As(i.clickOutsideDeactivates, p)) {
|
|
1711
|
+
l.deactivate({
|
|
1712
|
+
// NOTE: by setting `returnFocus: false`, deactivate() will do nothing,
|
|
1713
|
+
// which will result in the outside click setting focus to the node
|
|
1714
|
+
// that was clicked (and if not focusable, to "nothing"); by setting
|
|
1715
|
+
// `returnFocus: true`, we'll attempt to re-focus the node originally-focused
|
|
1716
|
+
// on activation (or the configured `setReturnFocus` node), whether the
|
|
1717
|
+
// outside click was on a focusable node or not
|
|
1718
|
+
returnFocus: i.returnFocusOnDeactivate
|
|
1719
|
+
});
|
|
1720
|
+
return;
|
|
1721
|
+
}
|
|
1722
|
+
As(i.allowOutsideClick, p) || p.preventDefault();
|
|
1723
|
+
}
|
|
1724
|
+
}, J = function(p) {
|
|
1725
|
+
var d = Ms(p), f = v(d, p) >= 0;
|
|
1726
|
+
if (f || d instanceof Document)
|
|
1727
|
+
f && (r.mostRecentlyFocusedNode = d);
|
|
1728
|
+
else {
|
|
1729
|
+
p.stopImmediatePropagation();
|
|
1730
|
+
var B, x = !0;
|
|
1731
|
+
if (r.mostRecentlyFocusedNode)
|
|
1732
|
+
if (gs(r.mostRecentlyFocusedNode) > 0) {
|
|
1733
|
+
var L = v(r.mostRecentlyFocusedNode), A = r.containerGroups[L].tabbableNodes;
|
|
1734
|
+
if (A.length > 0) {
|
|
1735
|
+
var P = A.findIndex(function(E) {
|
|
1736
|
+
return E === r.mostRecentlyFocusedNode;
|
|
1737
|
+
});
|
|
1738
|
+
P >= 0 && (i.isKeyForward(r.recentNavEvent) ? P + 1 < A.length && (B = A[P + 1], x = !1) : P - 1 >= 0 && (B = A[P - 1], x = !1));
|
|
1739
|
+
}
|
|
1740
|
+
} else
|
|
1741
|
+
r.containerGroups.some(function(E) {
|
|
1742
|
+
return E.tabbableNodes.some(function(j) {
|
|
1743
|
+
return gs(j) > 0;
|
|
1744
|
+
});
|
|
1745
|
+
}) || (x = !1);
|
|
1746
|
+
else
|
|
1747
|
+
x = !1;
|
|
1748
|
+
x && (B = U({
|
|
1749
|
+
// move FROM the MRU node, not event-related node (which will be the node that is
|
|
1750
|
+
// outside the trap causing the focus escape we're trying to fix)
|
|
1751
|
+
target: r.mostRecentlyFocusedNode,
|
|
1752
|
+
isBackward: i.isKeyBackward(r.recentNavEvent)
|
|
1753
|
+
})), q(B || r.mostRecentlyFocusedNode || m());
|
|
1754
|
+
}
|
|
1755
|
+
r.recentNavEvent = void 0;
|
|
1756
|
+
}, ls = function(p) {
|
|
1757
|
+
var d = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !1;
|
|
1758
|
+
r.recentNavEvent = p;
|
|
1759
|
+
var f = U({
|
|
1760
|
+
event: p,
|
|
1761
|
+
isBackward: d
|
|
1762
|
+
});
|
|
1763
|
+
f && (Ts(p) && p.preventDefault(), q(f));
|
|
1764
|
+
}, ss = function(p) {
|
|
1765
|
+
(i.isKeyForward(p) || i.isKeyBackward(p)) && ls(p, i.isKeyBackward(p));
|
|
1766
|
+
}, es = function(p) {
|
|
1767
|
+
ft(p) && As(i.escapeDeactivates, p) !== !1 && (p.preventDefault(), l.deactivate());
|
|
1768
|
+
}, is = function(p) {
|
|
1769
|
+
var d = Ms(p);
|
|
1770
|
+
v(d, p) >= 0 || As(i.clickOutsideDeactivates, p) || As(i.allowOutsideClick, p) || (p.preventDefault(), p.stopImmediatePropagation());
|
|
1771
|
+
}, M = function() {
|
|
1772
|
+
if (r.active)
|
|
1773
|
+
return ps.activateTrap(c, l), r.delayInitialFocusTimer = i.delayInitialFocus ? oe(function() {
|
|
1774
|
+
q(m());
|
|
1775
|
+
}) : q(m()), t.addEventListener("focusin", J, !0), t.addEventListener("mousedown", Z, {
|
|
1776
|
+
capture: !0,
|
|
1777
|
+
passive: !1
|
|
1778
|
+
}), t.addEventListener("touchstart", Z, {
|
|
1779
|
+
capture: !0,
|
|
1780
|
+
passive: !1
|
|
1781
|
+
}), t.addEventListener("click", is, {
|
|
1782
|
+
capture: !0,
|
|
1783
|
+
passive: !1
|
|
1784
|
+
}), t.addEventListener("keydown", ss, {
|
|
1785
|
+
capture: !0,
|
|
1786
|
+
passive: !1
|
|
1787
|
+
}), t.addEventListener("keydown", es), l;
|
|
1788
|
+
}, G = function(p) {
|
|
1789
|
+
r.active && !r.paused && l._setSubtreeIsolation(!1), r.adjacentElements.clear(), r.alreadySilent.clear();
|
|
1790
|
+
var d = /* @__PURE__ */ new Set(), f = /* @__PURE__ */ new Set(), B = Js(p), x;
|
|
1791
|
+
try {
|
|
1792
|
+
for (B.s(); !(x = B.n()).done; ) {
|
|
1793
|
+
var L = x.value;
|
|
1794
|
+
d.add(L);
|
|
1795
|
+
for (var A = typeof ShadowRoot < "u" && L.getRootNode() instanceof ShadowRoot, P = L; P; ) {
|
|
1796
|
+
d.add(P);
|
|
1797
|
+
var E = P.parentElement, j = [];
|
|
1798
|
+
E ? j = E.children : !E && A && (j = P.getRootNode().children, E = P.getRootNode().host, A = typeof ShadowRoot < "u" && E.getRootNode() instanceof ShadowRoot);
|
|
1799
|
+
var os = Js(j), Y;
|
|
1800
|
+
try {
|
|
1801
|
+
for (os.s(); !(Y = os.n()).done; ) {
|
|
1802
|
+
var ts = Y.value;
|
|
1803
|
+
f.add(ts);
|
|
1804
|
+
}
|
|
1805
|
+
} catch (as) {
|
|
1806
|
+
os.e(as);
|
|
1807
|
+
} finally {
|
|
1808
|
+
os.f();
|
|
1809
|
+
}
|
|
1810
|
+
P = E;
|
|
1811
|
+
}
|
|
1812
|
+
}
|
|
1813
|
+
} catch (as) {
|
|
1814
|
+
B.e(as);
|
|
1815
|
+
} finally {
|
|
1816
|
+
B.f();
|
|
1817
|
+
}
|
|
1818
|
+
d.forEach(function(as) {
|
|
1819
|
+
f.delete(as);
|
|
1820
|
+
}), r.adjacentElements = f;
|
|
1821
|
+
}, rs = function() {
|
|
1822
|
+
if (r.active)
|
|
1823
|
+
return t.removeEventListener("focusin", J, !0), t.removeEventListener("mousedown", Z, !0), t.removeEventListener("touchstart", Z, !0), t.removeEventListener("click", is, !0), t.removeEventListener("keydown", ss, !0), t.removeEventListener("keydown", es), l;
|
|
1824
|
+
}, W = function(p) {
|
|
1825
|
+
var d = p.some(function(f) {
|
|
1826
|
+
var B = Array.from(f.removedNodes);
|
|
1827
|
+
return B.some(function(x) {
|
|
1828
|
+
return x === r.mostRecentlyFocusedNode;
|
|
1829
|
+
});
|
|
1830
|
+
});
|
|
1831
|
+
d && q(m());
|
|
1832
|
+
}, S = typeof window < "u" && "MutationObserver" in window ? new MutationObserver(W) : void 0, R = function() {
|
|
1833
|
+
S && (S.disconnect(), r.active && !r.paused && r.containers.map(function(p) {
|
|
1834
|
+
S.observe(p, {
|
|
1835
|
+
subtree: !0,
|
|
1836
|
+
childList: !0
|
|
1837
|
+
});
|
|
1838
|
+
}));
|
|
1839
|
+
};
|
|
1840
|
+
return l = {
|
|
1841
|
+
get active() {
|
|
1842
|
+
return r.active;
|
|
1843
|
+
},
|
|
1844
|
+
get paused() {
|
|
1845
|
+
return r.paused;
|
|
1846
|
+
},
|
|
1847
|
+
activate: function(p) {
|
|
1848
|
+
if (r.active)
|
|
1849
|
+
return this;
|
|
1850
|
+
var d = g(p, "onActivate"), f = g(p, "onPostActivate"), B = g(p, "checkCanFocusTrap"), x = ps.getActiveTrap(c), L = !1;
|
|
1851
|
+
if (x && !x.paused) {
|
|
1852
|
+
var A;
|
|
1853
|
+
(A = x._setSubtreeIsolation) === null || A === void 0 || A.call(x, !1), L = !0;
|
|
1854
|
+
}
|
|
1855
|
+
try {
|
|
1856
|
+
B || C(), r.active = !0, r.paused = !1, r.nodeFocusedBeforeActivation = T(t), d?.();
|
|
1857
|
+
var P = function() {
|
|
1858
|
+
B && C(), M(), R(), i.isolateSubtrees && l._setSubtreeIsolation(!0), f?.();
|
|
1859
|
+
};
|
|
1860
|
+
if (B)
|
|
1861
|
+
return B(r.containers.concat()).then(P, P), this;
|
|
1862
|
+
P();
|
|
1863
|
+
} catch (j) {
|
|
1864
|
+
if (x === ps.getActiveTrap(c) && L) {
|
|
1865
|
+
var E;
|
|
1866
|
+
(E = x._setSubtreeIsolation) === null || E === void 0 || E.call(x, !0);
|
|
1867
|
+
}
|
|
1868
|
+
throw j;
|
|
1869
|
+
}
|
|
1870
|
+
return this;
|
|
1871
|
+
},
|
|
1872
|
+
deactivate: function(p) {
|
|
1873
|
+
if (!r.active)
|
|
1874
|
+
return this;
|
|
1875
|
+
var d = ee({
|
|
1876
|
+
onDeactivate: i.onDeactivate,
|
|
1877
|
+
onPostDeactivate: i.onPostDeactivate,
|
|
1878
|
+
checkCanReturnFocus: i.checkCanReturnFocus
|
|
1879
|
+
}, p);
|
|
1880
|
+
clearTimeout(r.delayInitialFocusTimer), r.delayInitialFocusTimer = void 0, r.paused || l._setSubtreeIsolation(!1), r.alreadySilent.clear(), rs(), r.active = !1, r.paused = !1, R(), ps.deactivateTrap(c, l);
|
|
1881
|
+
var f = g(d, "onDeactivate"), B = g(d, "onPostDeactivate"), x = g(d, "checkCanReturnFocus"), L = g(d, "returnFocus", "returnFocusOnDeactivate");
|
|
1882
|
+
f?.();
|
|
1883
|
+
var A = function() {
|
|
1884
|
+
oe(function() {
|
|
1885
|
+
L && q(X(r.nodeFocusedBeforeActivation)), B?.();
|
|
1886
|
+
});
|
|
1887
|
+
};
|
|
1888
|
+
return L && x ? (x(X(r.nodeFocusedBeforeActivation)).then(A, A), this) : (A(), this);
|
|
1889
|
+
},
|
|
1890
|
+
pause: function(p) {
|
|
1891
|
+
return r.active ? (r.manuallyPaused = !0, this._setPausedState(!0, p)) : this;
|
|
1892
|
+
},
|
|
1893
|
+
unpause: function(p) {
|
|
1894
|
+
return r.active ? (r.manuallyPaused = !1, c[c.length - 1] !== this ? this : this._setPausedState(!1, p)) : this;
|
|
1895
|
+
},
|
|
1896
|
+
updateContainerElements: function(p) {
|
|
1897
|
+
var d = [].concat(p).filter(Boolean);
|
|
1898
|
+
return r.containers = d.map(function(f) {
|
|
1899
|
+
return typeof f == "string" ? t.querySelector(f) : f;
|
|
1900
|
+
}), i.isolateSubtrees && G(r.containers), r.active && (C(), i.isolateSubtrees && !r.paused && l._setSubtreeIsolation(!0)), R(), this;
|
|
1901
|
+
}
|
|
1902
|
+
}, Object.defineProperties(l, {
|
|
1903
|
+
_isManuallyPaused: {
|
|
1904
|
+
value: function() {
|
|
1905
|
+
return r.manuallyPaused;
|
|
1906
|
+
}
|
|
1907
|
+
},
|
|
1908
|
+
_setPausedState: {
|
|
1909
|
+
value: function(p, d) {
|
|
1910
|
+
if (r.paused === p)
|
|
1911
|
+
return this;
|
|
1912
|
+
if (r.paused = p, p) {
|
|
1913
|
+
var f = g(d, "onPause"), B = g(d, "onPostPause");
|
|
1914
|
+
f?.(), rs(), R(), l._setSubtreeIsolation(!1), B?.();
|
|
1915
|
+
} else {
|
|
1916
|
+
var x = g(d, "onUnpause"), L = g(d, "onPostUnpause");
|
|
1917
|
+
x?.(), l._setSubtreeIsolation(!0), C(), M(), R(), L?.();
|
|
1918
|
+
}
|
|
1919
|
+
return this;
|
|
1920
|
+
}
|
|
1921
|
+
},
|
|
1922
|
+
_setSubtreeIsolation: {
|
|
1923
|
+
value: function(p) {
|
|
1924
|
+
i.isolateSubtrees && r.adjacentElements.forEach(function(d) {
|
|
1925
|
+
var f;
|
|
1926
|
+
p ? i.isolateSubtrees === "aria-hidden" ? ((d.ariaHidden === "true" || ((f = d.getAttribute("aria-hidden")) === null || f === void 0 ? void 0 : f.toLowerCase()) === "true") && r.alreadySilent.add(d), d.setAttribute("aria-hidden", "true")) : ((d.inert || d.hasAttribute("inert")) && r.alreadySilent.add(d), d.setAttribute("inert", !0)) : r.alreadySilent.has(d) || (i.isolateSubtrees === "aria-hidden" ? d.removeAttribute("aria-hidden") : d.removeAttribute("inert"));
|
|
1927
|
+
});
|
|
1928
|
+
}
|
|
1929
|
+
}
|
|
1930
|
+
}), l.updateContainerElements(e), l;
|
|
1931
|
+
};
|
|
1932
|
+
function kt(o, e = {}) {
|
|
1933
|
+
let s;
|
|
1934
|
+
const { immediate: t, ...c } = e, i = $(!1), r = $(!1), l = (C) => s && s.activate(C), g = (C) => s && s.deactivate(C), v = () => {
|
|
1935
|
+
s && (s.pause(), r.value = !0);
|
|
1936
|
+
}, h = () => {
|
|
1937
|
+
s && (s.unpause(), r.value = !1);
|
|
1938
|
+
}, m = F(() => {
|
|
1939
|
+
const C = Ys(o);
|
|
1940
|
+
return (Array.isArray(C) ? C : [C]).map((T) => {
|
|
1941
|
+
const q = Ys(T);
|
|
1942
|
+
return typeof q == "string" ? q : Ae(q);
|
|
1943
|
+
}).filter(Ho);
|
|
1944
|
+
});
|
|
1945
|
+
return vs(
|
|
1946
|
+
m,
|
|
1947
|
+
(C) => {
|
|
1948
|
+
C.length && (s = wt(C, {
|
|
1949
|
+
...c,
|
|
1950
|
+
onActivate() {
|
|
1951
|
+
i.value = !0, e.onActivate && e.onActivate();
|
|
1952
|
+
},
|
|
1953
|
+
onDeactivate() {
|
|
1954
|
+
i.value = !1, e.onDeactivate && e.onDeactivate();
|
|
1955
|
+
}
|
|
1956
|
+
}), t && l());
|
|
1957
|
+
},
|
|
1958
|
+
{ flush: "post" }
|
|
1959
|
+
), Fe(() => g()), {
|
|
1960
|
+
hasFocus: i,
|
|
1961
|
+
isPaused: r,
|
|
1962
|
+
activate: l,
|
|
1963
|
+
deactivate: g,
|
|
1964
|
+
pause: v,
|
|
1965
|
+
unpause: h
|
|
1966
|
+
};
|
|
1967
|
+
}
|
|
1968
|
+
const Ct = ["aria-hidden"], St = ["aria-labelledby"], _t = {
|
|
1969
|
+
key: 0,
|
|
1970
|
+
class: "utopia-modal__header"
|
|
1971
|
+
}, At = { class: "utopia-modal__bar utopia-modal__bar--header" }, Ft = ["id"], xt = { class: "utopia-modal__content utopia-scrollbar" }, Tt = {
|
|
1972
|
+
key: 2,
|
|
1973
|
+
class: "utopia-modal__bar utopia-modal__bar--footer"
|
|
1974
|
+
}, Bt = { class: "utopia-modal__footer-inner" }, Pt = /* @__PURE__ */ ds({
|
|
1975
|
+
__name: "Modal",
|
|
1976
|
+
props: {
|
|
1977
|
+
open: { type: Boolean },
|
|
1978
|
+
defaultOpen: { type: Boolean },
|
|
1979
|
+
title: { default: "" },
|
|
1980
|
+
size: { default: "md" },
|
|
1981
|
+
position: { default: "center" },
|
|
1982
|
+
closeOnOverlayClick: { type: Boolean, default: !0 },
|
|
1983
|
+
showCloseButton: { type: Boolean, default: !0 },
|
|
1984
|
+
showHeader: { type: Boolean, default: !0 },
|
|
1985
|
+
showFooter: { type: Boolean, default: !0 },
|
|
1986
|
+
disableScrollLock: { type: Boolean, default: !1 },
|
|
1987
|
+
focusTrap: { type: Boolean, default: !0 },
|
|
1988
|
+
blurBackdrop: { type: Boolean, default: !1 },
|
|
1989
|
+
animation: { default: "slide-top" },
|
|
1990
|
+
mobileBehavior: { default: "bottom-sheet" },
|
|
1991
|
+
forceVisible: { type: Boolean, default: !1 },
|
|
1992
|
+
onOpenChange: {}
|
|
1993
|
+
},
|
|
1994
|
+
emits: ["update:open", "openChange"],
|
|
1995
|
+
setup(o, { emit: e }) {
|
|
1996
|
+
const s = o, t = e, c = xe("(max-width: 768px)"), i = F(() => c.value && s.mobileBehavior === "bottom-sheet"), r = F(() => {
|
|
1997
|
+
if (i.value)
|
|
1998
|
+
return "utopia-bottom-sheet";
|
|
1999
|
+
switch (s.animation) {
|
|
2000
|
+
case "slide-horizontal":
|
|
2001
|
+
return "utopia-slide-x";
|
|
2002
|
+
case "slide-horizontal-left":
|
|
2003
|
+
return "utopia-slide-x-left";
|
|
2004
|
+
case "slide-top":
|
|
2005
|
+
return "utopia-bs";
|
|
2006
|
+
case "slide-bottom":
|
|
2007
|
+
return "utopia-slide-bottom";
|
|
2008
|
+
}
|
|
2009
|
+
}), l = F(() => s.open !== void 0), g = $(s.defaultOpen ?? !1), v = F(
|
|
2010
|
+
() => l.value ? s.open : g.value
|
|
2011
|
+
), h = F(() => !!s.showHeader), m = `utopia-modal-${Math.random().toString(36).slice(2, 8)}`, C = F(() => s.title ? `${m}-title` : ""), T = $(!1), q = F(() => ({
|
|
2012
|
+
sm: "small",
|
|
2013
|
+
md: "medium",
|
|
2014
|
+
lg: "large",
|
|
2015
|
+
full: "large"
|
|
2016
|
+
})[s.size]), X = $(null), U = $(null), Z = typeof document < "u" ? document.body : null, J = Te(Z), { activate: ls, deactivate: ss } = kt(X, {
|
|
2017
|
+
immediate: !1,
|
|
2018
|
+
escapeDeactivates: !1,
|
|
2019
|
+
returnFocusOnDeactivate: !0,
|
|
2020
|
+
allowOutsideClick: !0,
|
|
2021
|
+
initialFocus: () => {
|
|
2022
|
+
if (U.value) {
|
|
2023
|
+
const G = U.value.$el || U.value;
|
|
2024
|
+
if (G && G instanceof HTMLElement)
|
|
2025
|
+
return G;
|
|
2026
|
+
}
|
|
2027
|
+
const M = X.value;
|
|
2028
|
+
return M ? M.querySelector("[data-utopia-modal-close]") ?? M.querySelector(".utopia-modal__close button") ?? M.querySelector("button") ?? M.querySelector("[autofocus]") ?? M : null;
|
|
2029
|
+
},
|
|
2030
|
+
fallbackFocus: () => X.value
|
|
2031
|
+
});
|
|
2032
|
+
vs(
|
|
2033
|
+
() => v.value,
|
|
2034
|
+
async (M, G) => {
|
|
2035
|
+
if (M === G) return;
|
|
2036
|
+
if (M) {
|
|
2037
|
+
if (s.disableScrollLock || (J.value = !0), await ks(), s.focusTrap) {
|
|
2038
|
+
ls(), await ks();
|
|
2039
|
+
let W = null;
|
|
2040
|
+
U.value && (W = U.value.$el || U.value), W || (W = X.value?.querySelector("[data-utopia-modal-close]") || X.value?.querySelector(".utopia-modal__close button") || X.value?.querySelector("button")), W && W.focus();
|
|
2041
|
+
}
|
|
2042
|
+
} else
|
|
2043
|
+
s.disableScrollLock || (J.value = !1), ss();
|
|
2044
|
+
if (T.value) {
|
|
2045
|
+
T.value = !1;
|
|
2046
|
+
return;
|
|
2047
|
+
}
|
|
2048
|
+
const rs = M ? "open" : "close";
|
|
2049
|
+
t("openChange", M, rs), s.onOpenChange?.(M, rs);
|
|
2050
|
+
},
|
|
2051
|
+
{ immediate: !0 }
|
|
2052
|
+
);
|
|
2053
|
+
function es(M) {
|
|
2054
|
+
v.value && (T.value = !0, l.value ? t("update:open", !1) : g.value = !1, t("openChange", !1, M), s.onOpenChange?.(!1, M), s.disableScrollLock || (J.value = !1), ss());
|
|
2055
|
+
}
|
|
2056
|
+
Be(window, "keydown", (M) => {
|
|
2057
|
+
v.value && M.key === "Escape" && es("escape");
|
|
2058
|
+
});
|
|
2059
|
+
function is() {
|
|
2060
|
+
s.closeOnOverlayClick && es("overlay");
|
|
2061
|
+
}
|
|
2062
|
+
return ae(() => {
|
|
2063
|
+
s.disableScrollLock || (J.value = !1), ss();
|
|
2064
|
+
}), (M, G) => (u(), O(ce, { to: "body" }, [
|
|
2065
|
+
D("div", {
|
|
2066
|
+
class: V(["utopia-modal", [
|
|
2067
|
+
`utopia-modal--${o.position}`,
|
|
2068
|
+
{
|
|
2069
|
+
"is-open": v.value,
|
|
2070
|
+
"is-mobile": i.value,
|
|
2071
|
+
"utopia---force-visible": s.forceVisible
|
|
2072
|
+
}
|
|
2073
|
+
]]),
|
|
2074
|
+
"aria-hidden": !v.value
|
|
2075
|
+
}, [
|
|
2076
|
+
K(Gs, { name: "utopia-fade" }, {
|
|
2077
|
+
default: ws(() => [
|
|
2078
|
+
v.value ? (u(), y("div", {
|
|
2079
|
+
key: 0,
|
|
2080
|
+
class: V(["utopia-modal__overlay", { "utopia-modal__overlay--blur": o.blurBackdrop }]),
|
|
2081
|
+
onClick: is,
|
|
2082
|
+
"aria-hidden": "true"
|
|
2083
|
+
}, null, 2)) : _("", !0)
|
|
2084
|
+
]),
|
|
2085
|
+
_: 1
|
|
2086
|
+
}),
|
|
2087
|
+
K(Gs, { name: r.value }, {
|
|
2088
|
+
default: ws(() => [
|
|
2089
|
+
v.value ? (u(), y("div", {
|
|
2090
|
+
key: 0,
|
|
2091
|
+
ref_key: "panelRef",
|
|
2092
|
+
ref: X,
|
|
2093
|
+
class: V(["utopia-modal__panel", [`utopia-modal__panel--${o.size}`]]),
|
|
2094
|
+
role: "dialog",
|
|
2095
|
+
"aria-modal": "true",
|
|
2096
|
+
"aria-labelledby": C.value || void 0,
|
|
2097
|
+
tabindex: "-1"
|
|
2098
|
+
}, [
|
|
2099
|
+
h.value ? (u(), y("header", _t, [
|
|
2100
|
+
D("div", At, [
|
|
2101
|
+
us(M.$slots, "header", {}, () => [
|
|
2102
|
+
o.title ? (u(), y("h3", {
|
|
2103
|
+
key: 0,
|
|
2104
|
+
class: "utopia-modal__title",
|
|
2105
|
+
id: C.value
|
|
2106
|
+
}, H(o.title), 9, Ft)) : _("", !0)
|
|
2107
|
+
], !0),
|
|
2108
|
+
o.showCloseButton ? (u(), O(Xs, {
|
|
2109
|
+
key: 0,
|
|
2110
|
+
ref_key: "closeButtonRef",
|
|
2111
|
+
ref: U,
|
|
2112
|
+
class: "utopia-modal__close",
|
|
2113
|
+
variant: "tertiary",
|
|
2114
|
+
size: "sm",
|
|
2115
|
+
onClick: G[0] || (G[0] = (rs) => es("close-button")),
|
|
2116
|
+
"aria-label": "Fermer la modal",
|
|
2117
|
+
"data-utopia-modal-close": ""
|
|
2118
|
+
}, {
|
|
2119
|
+
default: ws(() => [
|
|
2120
|
+
G[2] || (G[2] = D("span", { class: "utopia-modal__close-label" }, "Fermer", -1)),
|
|
2121
|
+
K(N, {
|
|
2122
|
+
name: "X",
|
|
2123
|
+
size: q.value,
|
|
2124
|
+
"stroke-width": 3,
|
|
2125
|
+
color: "current",
|
|
2126
|
+
class: "utopia-modal__close-icon"
|
|
2127
|
+
}, null, 8, ["size"])
|
|
2128
|
+
]),
|
|
2129
|
+
_: 1
|
|
2130
|
+
}, 512)) : _("", !0)
|
|
2131
|
+
]),
|
|
2132
|
+
us(M.$slots, "sticky", {}, void 0, !0)
|
|
2133
|
+
])) : _("", !0),
|
|
2134
|
+
!h.value && !M.$slots.header && o.showCloseButton ? (u(), O(Xs, {
|
|
2135
|
+
key: 1,
|
|
2136
|
+
ref_key: "closeButtonRef",
|
|
2137
|
+
ref: U,
|
|
2138
|
+
class: "utopia-modal__close utopia-modal__close--floating",
|
|
2139
|
+
variant: "tertiary",
|
|
2140
|
+
size: "sm",
|
|
2141
|
+
onClick: G[1] || (G[1] = (rs) => es("close-button")),
|
|
2142
|
+
"aria-label": "Fermer la modal",
|
|
2143
|
+
"data-utopia-modal-close": ""
|
|
2144
|
+
}, {
|
|
2145
|
+
default: ws(() => [
|
|
2146
|
+
G[3] || (G[3] = D("span", { class: "utopia-modal__close-label" }, "Fermer", -1)),
|
|
2147
|
+
K(N, {
|
|
2148
|
+
name: "X",
|
|
2149
|
+
size: q.value,
|
|
2150
|
+
"stroke-width": 3,
|
|
2151
|
+
color: "current",
|
|
2152
|
+
class: "utopia-modal__close-icon"
|
|
2153
|
+
}, null, 8, ["size"])
|
|
2154
|
+
]),
|
|
2155
|
+
_: 1
|
|
2156
|
+
}, 512)) : _("", !0),
|
|
2157
|
+
D("div", xt, [
|
|
2158
|
+
us(M.$slots, "default", {}, void 0, !0)
|
|
2159
|
+
]),
|
|
2160
|
+
o.showFooter && M.$slots.footer ? (u(), y("footer", Tt, [
|
|
2161
|
+
D("div", Bt, [
|
|
2162
|
+
us(M.$slots, "footer", {}, void 0, !0)
|
|
2163
|
+
])
|
|
2164
|
+
])) : _("", !0)
|
|
2165
|
+
], 10, St)) : _("", !0)
|
|
2166
|
+
]),
|
|
2167
|
+
_: 3
|
|
2168
|
+
}, 8, ["name"])
|
|
2169
|
+
], 10, Ct)
|
|
2170
|
+
]));
|
|
2171
|
+
}
|
|
2172
|
+
}), zt = /* @__PURE__ */ hs(Pt, [["__scopeId", "data-v-1da355ee"]]), te = /* @__PURE__ */ ds({
|
|
2173
|
+
__name: "Tab",
|
|
2174
|
+
props: {
|
|
2175
|
+
label: {},
|
|
2176
|
+
id: {},
|
|
2177
|
+
isDisabled: { type: Boolean },
|
|
2178
|
+
icon: {},
|
|
2179
|
+
iconSize: {}
|
|
2180
|
+
},
|
|
2181
|
+
setup(o) {
|
|
2182
|
+
return (e, s) => (u(), y("div", null, [
|
|
2183
|
+
us(e.$slots, "default")
|
|
2184
|
+
]));
|
|
2185
|
+
}
|
|
2186
|
+
});
|
|
2187
|
+
function Mt(o, e, s) {
|
|
2188
|
+
const t = $({}), c = F(() => s.value.map((l) => l.props).filter((l) => l && l.id)), i = (l) => {
|
|
2189
|
+
l.isDisabled || l.id !== o.modelValue && (e("update:modelValue", l.id), e("tabChange", l.id));
|
|
2190
|
+
}, r = (l, g) => {
|
|
2191
|
+
const v = c.value, h = v.length;
|
|
2192
|
+
let m = g;
|
|
2193
|
+
switch (l.key) {
|
|
2194
|
+
case "ArrowRight":
|
|
2195
|
+
m = (g + 1) % h;
|
|
2196
|
+
break;
|
|
2197
|
+
case "ArrowLeft":
|
|
2198
|
+
m = (g - 1 + h) % h;
|
|
2199
|
+
break;
|
|
2200
|
+
case "Home":
|
|
2201
|
+
m = 0;
|
|
2202
|
+
break;
|
|
2203
|
+
case "End":
|
|
2204
|
+
m = h - 1;
|
|
2205
|
+
break;
|
|
2206
|
+
default:
|
|
2207
|
+
return;
|
|
2208
|
+
}
|
|
2209
|
+
l.preventDefault();
|
|
2210
|
+
let C = 0;
|
|
2211
|
+
for (; v[m]?.isDisabled && C < h; )
|
|
2212
|
+
m = l.key === "ArrowLeft" || l.key === "End" ? (m - 1 + h) % h : (m + 1) % h, C++;
|
|
2213
|
+
const T = v[m];
|
|
2214
|
+
T && !T?.isDisabled && (i(T), ks(() => t.value[T.id]?.focus()));
|
|
2215
|
+
};
|
|
2216
|
+
return ie(() => {
|
|
2217
|
+
const l = c.value;
|
|
2218
|
+
if (!l.some((v) => v?.id === o.modelValue)) {
|
|
2219
|
+
const v = l.find((h) => !h?.isDisabled);
|
|
2220
|
+
v && i(v);
|
|
2221
|
+
}
|
|
2222
|
+
}), {
|
|
2223
|
+
tabRefs: t,
|
|
2224
|
+
tabs: c,
|
|
2225
|
+
updateActiveTab: i,
|
|
2226
|
+
handleKeyDown: r
|
|
2227
|
+
};
|
|
2228
|
+
}
|
|
2229
|
+
const Lt = ["aria-label"], Et = {
|
|
2230
|
+
role: "tablist",
|
|
2231
|
+
class: "tabs-header-inner",
|
|
2232
|
+
"aria-orientation": "horizontal"
|
|
2233
|
+
}, Dt = ["id", "aria-controls", "aria-selected", "tabindex", "disabled", "onClick", "onKeydown"], Rt = { class: "tabs-content" }, Vt = /* @__PURE__ */ ds({
|
|
2234
|
+
__name: "Tabs",
|
|
2235
|
+
props: {
|
|
2236
|
+
modelValue: { default: "" },
|
|
2237
|
+
fullWidth: { type: Boolean, default: !1 },
|
|
2238
|
+
ariaLabel: { default: "Navigation par onglets" },
|
|
2239
|
+
isDisabled: { type: Boolean }
|
|
2240
|
+
},
|
|
2241
|
+
emits: ["update:modelValue", "tabChange"],
|
|
2242
|
+
setup(o, { emit: e }) {
|
|
2243
|
+
const s = o, t = e, c = re(), i = $([]);
|
|
2244
|
+
vs(
|
|
2245
|
+
() => c.default?.(),
|
|
2246
|
+
(v) => {
|
|
2247
|
+
if (!v) {
|
|
2248
|
+
i.value = [];
|
|
2249
|
+
return;
|
|
2250
|
+
}
|
|
2251
|
+
i.value = v.filter(
|
|
2252
|
+
(h) => h.type === te && h.props?.id
|
|
2253
|
+
);
|
|
2254
|
+
},
|
|
2255
|
+
{ immediate: !0 }
|
|
2256
|
+
);
|
|
2257
|
+
const {
|
|
2258
|
+
tabRefs: r,
|
|
2259
|
+
updateActiveTab: l,
|
|
2260
|
+
handleKeyDown: g
|
|
2261
|
+
} = Mt(s, t, i);
|
|
2262
|
+
return (v, h) => (u(), y("div", {
|
|
2263
|
+
class: V(["tabs-container", { "w-full": s.fullWidth }])
|
|
2264
|
+
}, [
|
|
2265
|
+
D("div", {
|
|
2266
|
+
class: V(["tabs-wrapper", { "tabs-disabled": s.isDisabled }]),
|
|
2267
|
+
"aria-label": s.ariaLabel
|
|
2268
|
+
}, [
|
|
2269
|
+
D("div", {
|
|
2270
|
+
class: V(["tabs-header-scroll", { "tabs-fullwidth": s.fullWidth }])
|
|
2271
|
+
}, [
|
|
2272
|
+
D("div", Et, [
|
|
2273
|
+
(u(!0), y(ns, null, Fs(i.value, (m, C) => (u(), y("button", {
|
|
2274
|
+
key: m.props?.id,
|
|
2275
|
+
ref_for: !0,
|
|
2276
|
+
ref: (T) => z(r)[m.props?.id] = T,
|
|
2277
|
+
id: `tab-${m.props?.id}`,
|
|
2278
|
+
role: "tab",
|
|
2279
|
+
"aria-controls": `tabpanel-${m.props?.id}`,
|
|
2280
|
+
"aria-selected": m.props?.id === s.modelValue,
|
|
2281
|
+
tabindex: m.props?.id === s.modelValue ? 0 : -1,
|
|
2282
|
+
disabled: m.props?.isDisabled,
|
|
2283
|
+
onClick: (T) => z(l)(m.props),
|
|
2284
|
+
onKeydown: (T) => z(g)(T, C),
|
|
2285
|
+
class: V([
|
|
2286
|
+
"tab-button",
|
|
2287
|
+
{
|
|
2288
|
+
"is-active": m.props?.id === s.modelValue,
|
|
2289
|
+
"is-disabled": m.props?.isDisabled,
|
|
2290
|
+
"is-fullwidth": s.fullWidth
|
|
2291
|
+
}
|
|
2292
|
+
])
|
|
2293
|
+
}, [
|
|
2294
|
+
m.props?.icon ? (u(), O(N, {
|
|
2295
|
+
key: 0,
|
|
2296
|
+
name: m.props?.icon,
|
|
2297
|
+
size: m.props?.iconSize,
|
|
2298
|
+
strokeWidth: m.props?.iconStrokeWidth,
|
|
2299
|
+
color: m.props?.iconColor
|
|
2300
|
+
}, null, 8, ["name", "size", "strokeWidth", "color"])) : _("", !0),
|
|
2301
|
+
Ls(" " + H(m.props?.label), 1)
|
|
2302
|
+
], 42, Dt))), 128))
|
|
2303
|
+
])
|
|
2304
|
+
], 2)
|
|
2305
|
+
], 10, Lt),
|
|
2306
|
+
D("div", Rt, [
|
|
2307
|
+
(u(!0), y(ns, null, Fs(i.value, (m) => (u(), y(ns, null, [
|
|
2308
|
+
m.props?.id === s.modelValue && m.type === te ? (u(), O(Se(m), _e({
|
|
2309
|
+
key: m.props?.id
|
|
2310
|
+
}, { ref_for: !0 }, m.props, {
|
|
2311
|
+
id: `tabpanel-${m.props?.id}`,
|
|
2312
|
+
role: "tabpanel",
|
|
2313
|
+
"aria-labelledby": `tab-${m.props?.id}`,
|
|
2314
|
+
tabindex: "0"
|
|
2315
|
+
}), null, 16, ["id", "aria-labelledby"])) : _("", !0)
|
|
2316
|
+
], 64))), 256))
|
|
2317
|
+
])
|
|
2318
|
+
], 2));
|
|
2319
|
+
}
|
|
2320
|
+
});
|
|
2321
|
+
export {
|
|
2322
|
+
Xs as B,
|
|
2323
|
+
oo as C,
|
|
2324
|
+
$t as D,
|
|
2325
|
+
N as I,
|
|
2326
|
+
zt as M,
|
|
2327
|
+
Pe as _,
|
|
2328
|
+
hs as a,
|
|
2329
|
+
lo as b,
|
|
2330
|
+
kt as c,
|
|
2331
|
+
Zs as d,
|
|
2332
|
+
te as e,
|
|
2333
|
+
Vt as f,
|
|
2334
|
+
Le as g,
|
|
2335
|
+
Me as h,
|
|
2336
|
+
De as i,
|
|
2337
|
+
Ee as j,
|
|
2338
|
+
Ws as u
|
|
2339
|
+
};
|