@club-employes/utopia 2.10.0 → 2.11.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,49 +1,144 @@
1
- import { defineComponent as f, computed as v, provide as h, onMounted as S, onBeforeUnmount as k, watch as C, createElementBlock as i, openBlock as d, renderSlot as p, mergeProps as A, createCommentVNode as I, createElementVNode as l, normalizeClass as G, ref as b, normalizeStyle as B } from "vue";
2
- const F = ["data-theme"], T = /* @__PURE__ */ f({
1
+ import { defineComponent as w, computed as u, ref as C, provide as I, onMounted as z, onBeforeUnmount as L, watch as k, createElementBlock as g, openBlock as h, renderSlot as y, normalizeClass as $, mergeProps as D, createCommentVNode as T, createElementVNode as v, normalizeStyle as A, onUnmounted as F } from "vue";
2
+ const P = (n, t, o) => {
3
+ const r = n[t];
4
+ return r ? typeof r == "function" ? r() : Promise.resolve(r) : new Promise((l, d) => {
5
+ (typeof queueMicrotask == "function" ? queueMicrotask : setTimeout)(d.bind(null, /* @__PURE__ */ new Error("Unknown variable dynamic import: " + t + (t.split("/").length !== o ? ". Note that variables only represent file names one level deep." : ""))));
6
+ });
7
+ }, j = ["data-theme"], x = /* @__PURE__ */ w({
3
8
  __name: "ThemeProvider",
4
9
  props: {
5
10
  theme: {}
6
11
  },
7
- setup(r) {
8
- const n = r, o = v(() => n.theme.name);
9
- let c = null;
10
- const t = () => {
11
- c && document.head.removeChild(c), c = document.createElement("style"), c.setAttribute("data-theme-provider", o.value), c.textContent = n.theme.cssContent, document.head.appendChild(c);
12
- }, g = () => {
13
- c && document.head.contains(c) && (document.head.removeChild(c), c = null);
12
+ setup(n) {
13
+ const t = n, o = u(() => t.theme.name), r = /* @__PURE__ */ new Map(), l = C(!1), d = async (s) => {
14
+ if (r.has(s))
15
+ return r.get(s);
16
+ const c = s.lastIndexOf("-"), m = s.substring(0, c), p = s.substring(c + 1);
17
+ try {
18
+ const S = await P(/* @__PURE__ */ Object.assign({ "../tokens/generated/club-employes/dark.css": () => import("./dark-CJ1ivx_-.js"), "../tokens/generated/club-employes/light.css": () => import("./light-CXtMcqsV.js"), "../tokens/generated/gifteo/dark.css": () => import("./dark-CZ1KmhXy.js"), "../tokens/generated/gifteo/light.css": () => import("./light-BAFzIOTZ.js") }), `../tokens/generated/${m}/${p}.css`, 5), E = S.default || S;
19
+ return r.set(s, E), E;
20
+ } catch (S) {
21
+ return console.warn(`Failed to preload theme CSS for ${s}:`, S), "";
22
+ }
23
+ }, a = async () => {
24
+ if (!l.value) {
25
+ l.value = !0, console.log("🎨 Switching to theme:", o.value);
26
+ try {
27
+ const s = await d(o.value);
28
+ if (!s) {
29
+ console.warn("No CSS content found for theme:", o.value), l.value = !1;
30
+ return;
31
+ }
32
+ document.body.classList.add("theme-transition"), await new Promise((p) => setTimeout(p, 50)), document.querySelectorAll("style[data-theme-css]").forEach((p) => p.remove());
33
+ const m = document.createElement("style");
34
+ m.setAttribute("data-theme-css", "true"), m.textContent = s, document.head.appendChild(m), document.body.setAttribute("data-theme", o.value), setTimeout(() => {
35
+ document.body.classList.remove("theme-transition"), l.value = !1;
36
+ }, 300), console.log("✅ Theme CSS applied smoothly:", o.value);
37
+ } catch (s) {
38
+ console.warn("Failed to inject theme CSS:", s), document.body.classList.remove("theme-transition"), l.value = !1;
39
+ }
40
+ }
41
+ }, e = () => {
42
+ document.body.removeAttribute("data-theme");
43
+ const s = document.querySelector("style[data-theme-css]");
44
+ s && s.remove();
14
45
  };
15
- return h("theme", {
46
+ return I("theme", {
16
47
  name: o,
17
- config: n.theme
18
- }), S(() => {
19
- t();
20
- }), k(() => {
21
- g();
22
- }), C(() => n.theme, () => {
23
- t();
24
- }, { deep: !0 }), (s, e) => (d(), i("div", {
48
+ config: t.theme
49
+ }), z(async () => {
50
+ const s = document.querySelector("style[data-default-theme]"), c = [
51
+ "club-employes-light",
52
+ "club-employes-dark",
53
+ "gifteo-light",
54
+ "gifteo-dark"
55
+ ];
56
+ if (Promise.all(
57
+ c.map((m) => d(m))
58
+ ).then(() => {
59
+ console.log("🚀 All themes preloaded in cache");
60
+ }), s && o.value === "club-employes-light") {
61
+ console.log("✅ Default theme already loaded, skipping initial injection");
62
+ return;
63
+ }
64
+ await a();
65
+ }), L(() => {
66
+ e();
67
+ }), k(() => t.theme, () => {
68
+ console.log("Theme changed to:", t.theme.name), a();
69
+ }, { deep: !0 }), (() => {
70
+ if (document.querySelector("style[data-theme-transitions]")) return;
71
+ const c = document.createElement("style");
72
+ c.setAttribute("data-theme-transitions", "true"), c.textContent = `
73
+ body.theme-transition {
74
+ transition: background-color 0.3s ease, color 0.3s ease;
75
+ }
76
+
77
+ body.theme-transition *,
78
+ body.theme-transition *::before,
79
+ body.theme-transition *::after {
80
+ transition: background-color 0.3s ease,
81
+ color 0.3s ease,
82
+ border-color 0.3s ease,
83
+ box-shadow 0.3s ease,
84
+ fill 0.3s ease,
85
+ stroke 0.3s ease !important;
86
+ }
87
+
88
+ /* Désactiver les transitions sur les éléments interactifs pour éviter les lags */
89
+ body.theme-transition button:hover,
90
+ body.theme-transition a:hover,
91
+ body.theme-transition [role="button"]:hover {
92
+ transition: none !important;
93
+ }
94
+ `, document.head.appendChild(c);
95
+ })(), (s, c) => (h(), g("div", {
25
96
  class: "theme-provider",
26
97
  "data-theme": o.value
27
98
  }, [
28
- p(s.$slots, "default", {}, void 0, !0)
29
- ], 8, F));
99
+ y(s.$slots, "default", {}, void 0, !0)
100
+ ], 8, j));
30
101
  }
31
- }), m = (r, n) => {
32
- const o = r.__vccOpts || r;
33
- for (const [c, t] of n)
34
- o[c] = t;
102
+ }), B = (n, t) => {
103
+ const o = n.__vccOpts || n;
104
+ for (const [r, l] of t)
105
+ o[r] = l;
35
106
  return o;
36
- }, E = /* @__PURE__ */ m(T, [["__scopeId", "data-v-0be50703"]]), D = ["disabled", "aria-disabled", "aria-label"], y = {
107
+ }, ae = /* @__PURE__ */ B(x, [["__scopeId", "data-v-de954be9"]]), O = /* @__PURE__ */ w({
108
+ __name: "Badge",
109
+ props: {
110
+ variant: { default: "default" },
111
+ size: { default: "medium" }
112
+ },
113
+ setup(n) {
114
+ const t = n, o = u(() => {
115
+ const r = {
116
+ small: "sm",
117
+ medium: "md"
118
+ };
119
+ return [
120
+ "badge",
121
+ `badge--${t.variant}`,
122
+ `badge--${r[t.size]}`
123
+ ];
124
+ });
125
+ return (r, l) => (h(), g("span", {
126
+ class: $(o.value)
127
+ }, [
128
+ y(r.$slots, "default", {}, void 0, !0)
129
+ ], 2));
130
+ }
131
+ }), re = /* @__PURE__ */ B(O, [["__scopeId", "data-v-2a8fca7d"]]), q = ["disabled", "aria-disabled", "aria-label"], U = {
37
132
  key: 0,
38
133
  class: "button-spinner",
39
134
  "aria-hidden": "true"
40
- }, x = {
135
+ }, N = {
41
136
  key: 0,
42
137
  class: "button-icon button-icon--before"
43
- }, P = { class: "button-text" }, L = {
138
+ }, G = { class: "button-text" }, R = {
44
139
  key: 1,
45
140
  class: "button-icon button-icon--after"
46
- }, w = /* @__PURE__ */ f({
141
+ }, V = /* @__PURE__ */ w({
47
142
  __name: "Button",
48
143
  props: {
49
144
  variant: { default: "primary" },
@@ -51,13 +146,12 @@ const F = ["data-theme"], T = /* @__PURE__ */ f({
51
146
  disabled: { type: Boolean, default: !1 },
52
147
  loading: { type: Boolean, default: !1 },
53
148
  block: { type: Boolean, default: !1 },
54
- ariaLabel: {},
55
- test: {}
149
+ ariaLabel: {}
56
150
  },
57
151
  emits: ["click"],
58
- setup(r, { emit: n }) {
59
- const o = r, c = n, t = v(() => {
60
- const s = {
152
+ setup(n, { emit: t }) {
153
+ const o = n, r = t, l = u(() => {
154
+ const a = {
61
155
  small: "sm",
62
156
  medium: "md",
63
157
  large: "lg"
@@ -65,28 +159,28 @@ const F = ["data-theme"], T = /* @__PURE__ */ f({
65
159
  return [
66
160
  "button",
67
161
  `button--${o.variant}`,
68
- `button--${s[o.size]}`,
162
+ `button--${a[o.size]}`,
69
163
  {
70
164
  "button--disabled": o.disabled,
71
165
  "button--loading": o.loading,
72
166
  "button--block": o.block
73
167
  }
74
168
  ];
75
- }), g = (s) => {
76
- !o.disabled && !o.loading && c("click", s);
169
+ }), d = (a) => {
170
+ !o.disabled && !o.loading && r("click", a);
77
171
  };
78
- return (s, e) => (d(), i("button", A({
79
- class: t.value,
80
- disabled: s.disabled || s.loading,
81
- "aria-disabled": s.disabled || s.loading,
82
- "aria-label": s.ariaLabel
83
- }, s.$attrs, { onClick: g }), [
84
- s.loading ? (d(), i("span", y, e[0] || (e[0] = [
85
- l("svg", {
172
+ return (a, e) => (h(), g("button", D({
173
+ class: l.value,
174
+ disabled: a.disabled || a.loading,
175
+ "aria-disabled": a.disabled || a.loading,
176
+ "aria-label": a.ariaLabel
177
+ }, a.$attrs, { onClick: d }), [
178
+ a.loading ? (h(), g("span", U, e[0] || (e[0] = [
179
+ v("svg", {
86
180
  class: "spinner-icon",
87
181
  viewBox: "0 0 24 24"
88
182
  }, [
89
- l("circle", {
183
+ v("circle", {
90
184
  class: "spinner-path",
91
185
  cx: "12",
92
186
  cy: "12",
@@ -98,13 +192,13 @@ const F = ["data-theme"], T = /* @__PURE__ */ f({
98
192
  "stroke-dasharray": "31.416",
99
193
  "stroke-dashoffset": "31.416"
100
194
  }, [
101
- l("animate", {
195
+ v("animate", {
102
196
  attributeName: "stroke-dasharray",
103
197
  dur: "2s",
104
198
  values: "0 31.416;15.708 15.708;0 31.416",
105
199
  repeatCount: "indefinite"
106
200
  }),
107
- l("animate", {
201
+ v("animate", {
108
202
  attributeName: "stroke-dashoffset",
109
203
  dur: "2s",
110
204
  values: "0;-15.708;-31.416",
@@ -112,23 +206,23 @@ const F = ["data-theme"], T = /* @__PURE__ */ f({
112
206
  })
113
207
  ])
114
208
  ], -1)
115
- ]))) : I("", !0),
116
- l("span", {
117
- class: G(["button-content", { "button-content--hidden": s.loading }])
209
+ ]))) : T("", !0),
210
+ v("span", {
211
+ class: $(["button-content", { "button-content--hidden": a.loading }])
118
212
  }, [
119
- s.$slots.icon ? (d(), i("span", x, [
120
- p(s.$slots, "icon", {}, void 0, !0)
121
- ])) : I("", !0),
122
- l("span", P, [
123
- p(s.$slots, "default", {}, void 0, !0)
213
+ a.$slots.icon ? (h(), g("span", N, [
214
+ y(a.$slots, "icon", {}, void 0, !0)
215
+ ])) : T("", !0),
216
+ v("span", G, [
217
+ y(a.$slots, "default", {}, void 0, !0)
124
218
  ]),
125
- s.$slots.iconAfter ? (d(), i("span", L, [
126
- p(s.$slots, "iconAfter", {}, void 0, !0)
127
- ])) : I("", !0)
219
+ a.$slots.iconAfter ? (h(), g("span", R, [
220
+ y(a.$slots, "iconAfter", {}, void 0, !0)
221
+ ])) : T("", !0)
128
222
  ], 2)
129
- ], 16, D));
223
+ ], 16, q));
130
224
  }
131
- }), U = /* @__PURE__ */ m(w, [["__scopeId", "data-v-44bec5ce"]]), R = ["aria-label", "innerHTML"], M = /* @__PURE__ */ f({
225
+ }), le = /* @__PURE__ */ B(V, [["__scopeId", "data-v-c5f4114b"]]), H = ["aria-label", "innerHTML"], W = /* @__PURE__ */ w({
132
226
  __name: "Icon",
133
227
  props: {
134
228
  name: {},
@@ -137,17 +231,17 @@ const F = ["data-theme"], T = /* @__PURE__ */ f({
137
231
  alt: {},
138
232
  class: {}
139
233
  },
140
- setup(r) {
141
- const n = r, o = b(""), c = v(() => [
234
+ setup(n) {
235
+ const t = n, o = C(""), r = u(() => [
142
236
  "icon",
143
237
  `icon--${{
144
238
  small: "sm",
145
239
  medium: "md",
146
240
  large: "lg"
147
- }[n.size]}`,
148
- `icon--${n.color}`,
149
- n.class
150
- ].filter(Boolean)), t = v(() => ({
241
+ }[t.size]}`,
242
+ `icon--${t.color}`,
243
+ t.class
244
+ ].filter(Boolean)), l = u(() => ({
151
245
  color: {
152
246
  primary: "var(--theme-colors-brand-primary-600)",
153
247
  secondary: "var(--theme-colors-brand-secondary-600)",
@@ -156,16 +250,16 @@ const F = ["data-theme"], T = /* @__PURE__ */ f({
156
250
  danger: "var(--theme-colors-common-danger-600)",
157
251
  neutral: "var(--theme-colors-common-slate-600)",
158
252
  current: "currentColor"
159
- }[n.color]
160
- })), g = async (e) => {
253
+ }[t.color]
254
+ })), d = async (e) => {
161
255
  try {
162
- const a = `/src/assets/icons-processed/${e}.svg`, u = await fetch(a);
163
- if (!u.ok)
256
+ const i = `/src/assets/icons-processed/${e}.svg`, s = await fetch(i);
257
+ if (!s.ok)
164
258
  throw new Error(`Icon not found: ${e}`);
165
- const _ = (await u.text()).replace(/width="[^"]*"/g, "").replace(/height="[^"]*"/g, "").replace(/<svg([^>]*)>/g, '<svg$1 width="100%" height="100%">');
166
- o.value = _;
167
- } catch (a) {
168
- console.error(`Failed to load icon: ${e}`, a), o.value = `
259
+ const m = (await s.text()).replace(/width="[^"]*"/g, "").replace(/height="[^"]*"/g, "").replace(/<svg([^>]*)>/g, '<svg$1 width="100%" height="100%">');
260
+ o.value = m;
261
+ } catch (i) {
262
+ console.error(`Failed to load icon: ${e}`, i), o.value = `
169
263
  <svg width="100%" height="100%" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
170
264
  <circle cx="12" cy="12" r="10" stroke="currentColor" stroke-width="2"/>
171
265
  <path d="M12 8v4" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
@@ -173,833 +267,167 @@ const F = ["data-theme"], T = /* @__PURE__ */ f({
173
267
  </svg>
174
268
  `;
175
269
  }
176
- }, s = (e) => e.includes("/") && e.split("/").pop() || e;
177
- return C(() => n.name, (e) => {
178
- const a = s(e);
179
- g(a);
180
- }, { immediate: !0 }), (e, a) => (d(), i("span", {
181
- class: G(c.value),
182
- style: B(t.value),
270
+ }, a = (e) => e.includes("/") && e.split("/").pop() || e;
271
+ return k(() => t.name, (e) => {
272
+ const i = a(e);
273
+ d(i);
274
+ }, { immediate: !0 }), (e, i) => (h(), g("span", {
275
+ class: $(r.value),
276
+ style: A(l.value),
183
277
  "aria-label": e.alt || e.name,
184
278
  role: "img",
185
279
  innerHTML: o.value
186
- }, null, 14, R));
280
+ }, null, 14, H));
187
281
  }
188
- }), z = /* @__PURE__ */ m(M, [["__scopeId", "data-v-8bcf9243"]]), H = {
282
+ }), ie = /* @__PURE__ */ B(W, [["__scopeId", "data-v-8bcf9243"]]), K = ["aria-label"], ce = /* @__PURE__ */ w({
283
+ __name: "Logo",
284
+ props: {
285
+ brand: {},
286
+ variant: { default: "auto" },
287
+ size: { default: "md" },
288
+ alt: {},
289
+ class: {}
290
+ },
291
+ setup(n) {
292
+ const t = n, o = u(() => {
293
+ const l = t.brand ? `logo--${t.brand}` : "logo--auto-brand";
294
+ return [
295
+ "logo",
296
+ `logo--${t.size}`,
297
+ `logo--${t.variant}`,
298
+ l,
299
+ t.class
300
+ ].filter(Boolean);
301
+ }), r = u(() => t.brand === "gifteo" ? "Gifteo" : t.brand === "club-employes" ? "Club Employés" : "Logo");
302
+ return (l, d) => (h(), g("div", {
303
+ class: $(o.value),
304
+ "aria-label": l.alt || `Logo ${r.value}`,
305
+ role: "img"
306
+ }, null, 10, K));
307
+ }
308
+ }), Y = {
189
309
  name: "club-employes-light",
190
- mode: "light",
191
- cssFile: "/src/tokens/generated/club-employes/light.css"
192
- }, O = {
310
+ mode: "light"
311
+ }, J = {
193
312
  name: "club-employes-dark",
194
- mode: "dark",
195
- cssFile: "/src/tokens/generated/club-employes/dark.css"
196
- }, $ = {
313
+ mode: "dark"
314
+ }, Q = {
197
315
  name: "gifteo-light",
198
- mode: "light",
199
- cssFile: "/src/tokens/generated/gifteo/light.css"
200
- }, V = {
316
+ mode: "light"
317
+ }, X = {
201
318
  name: "gifteo-dark",
202
- mode: "dark",
203
- cssFile: "/src/tokens/generated/gifteo/dark.css"
204
- }, q = "/src/assets/logos/club-employes/logo.svg", K = "/src/assets/logos/club-employes/logo-small.svg", X = "/src/assets/logos/club-employes/logo-white.svg", j = "/src/assets/logos/club-employes/logo-small-white.svg", J = "/src/assets/logos/gifteo/logo.svg", Q = "/src/assets/logos/gifteo/logo-small.svg", Y = "/src/assets/logos/gifteo/logo-white.svg", Z = "/src/assets/logos/gifteo/logo-small-white.svg", ss = "0px", es = "1px", os = "2px", cs = "4px", ns = "0px", rs = "4px", ts = "8px", as = "12px", ls = "16px", is = "24px", ds = "9999px", gs = "#020618", ps = "#0f172b", vs = "#1d293d", Is = "#314158", fs = "#45556c", ms = "#62748e", us = "#90a1b9", Cs = "#cad5e2", Gs = "#e2e8f0", _s = "#f1f5f9", hs = "#f8fafc", Ss = "#002c22", ks = "#004f3b", As = "#006045", bs = "#007a55", Bs = "#0a9c55", Fs = "#0baa60", Ts = "#00d492", Ds = "#5ee9b5", ys = "#a4f4cf", xs = "#d0fae5", Ps = "#e2fcf0", Ls = "#441306", ws = "#7e2a0c", Rs = "#9f2d00", Ms = "#ca3500", Ws = "#f54900", Ns = "#f78e1f", Es = "#ff8904", Us = "#ffcc7b", zs = "#ffd6a8", Hs = "#ffedd4", Os = "#fff5db", $s = "#460809", Vs = "#82181a", qs = "#9f0712", Ks = "#c10007", Xs = "#cf2a2a", js = "#f03d3d", Js = "#ff6467", Qs = "#ffa2a2", Ys = "#ffc9c9", Zs = "#ffe2e2", se = "#ffefe8", ee = "#f8fafc", oe = "#f1f5f9", ce = "#e2e8f0", ne = "#cad5e2", re = "#90a1b9", te = "#62748e", ae = "#45556c", le = "#314158", ie = "#1d293d", de = "#0f172b", ge = "#020618", pe = "#fafaf9", ve = "#f5f5f4", Ie = "#e7e5e4", fe = "#d6d3d1", me = "#a6a09b", ue = "#79716b", Ce = "#57534d", Ge = "#44403b", _e = "#292524", he = "#1c1917", Se = "#0c0a09", ke = "#e8fcf2", Ae = "#d0fae5", be = "#a4f4cf", Be = "#5ee9b5", Fe = "#00d492", Te = "#0baa60", De = "#0a9c55", ye = "#007a55", xe = "#006045", Pe = "#004f3b", Le = "#002c22", we = "#fff5db", Re = "#ffedd4", Me = "#ffd6a8", We = "#ffcc7b", Ne = "#ff8904", Ee = "#f78e1f", Ue = "#f54900", ze = "#ca3500", He = "#9f2d00", Oe = "#7e2a0c", $e = "#441306", Ve = "#ffefe8", qe = "#ffe2e2", Ke = "#ffc9c9", Xe = "#ffa2a2", je = "#ff6467", Je = "#f03d3d", Qe = "#cf2a2a", Ye = "#c10007", Ze = "#9f0712", so = "#82181a", eo = "#460809", oo = "#f8faff", co = "#eff6ff", no = "#dbeafe", ro = "#bfdbfe", to = "#93c5fd", ao = "#60a5fa", lo = "#3b82f6", io = "#2563eb", go = "#1d4ed8", po = "#1e40af", vo = "#1e3a8a", Io = "#172554", fo = "#ff6b35", mo = "#fff2ed", uo = "#e91e63", Co = "#fdf2f8", Go = "#3b82f6", _o = "#eff6ff", ho = "#f59e0b", So = "#fffbeb", ko = "#8b5cf6", Ao = "#f5f3ff", bo = "#06b6d4", Bo = "#f0fdff", Fo = "#7c3aed", To = "#f5f3ff", Do = "#cf2a2a", yo = "#ff03d3", xo = "#ffefe8", Po = "#0a9c56", Lo = "#0ba460", wo = "#e2fcf0", Ro = "#f9fafb", Mo = "#f3f4f6", Wo = "#e5e7eb", No = "#d1d5db", Eo = "#9ca3af", Uo = "#6b7280", zo = "#4b5563", Ho = "#374151", Oo = "#1f2937", $o = "#111827", Vo = "#ffffff", qo = "#000000", Ko = "#fafbfe", Xo = "#f6f8fe", jo = "#f2f5fe", Jo = "#e9eefe", Qo = "#c9d6fb", Yo = "#93aef8", Zo = "#275cf1", sc = "#FAFAFЕ", ec = "#f5f6f8", oc = "#f0f1f4", cc = "#e7e8ed", nc = "#c2c6d1", rc = "#858ea4", tc = "#0b1c48", ac = "#fffcfa", lc = "#fff9f6", ic = "#fff6f2", dc = "#fef0e9", gc = "#fcd8c8", pc = "#f9b191", vc = "#f36222", Ic = "/src/assets/icons-processed/11.svg", fc = "/src/assets/icons-processed/3d_box.svg", mc = "/src/assets/icons-processed/Add_round.svg", uc = "/src/assets/icons-processed/Add_round_duotone.svg", Cc = "/src/assets/icons-processed/Add_round_fill.svg", Gc = "/src/assets/icons-processed/Alarm.svg", _c = "/src/assets/icons-processed/Angry.svg", hc = "/src/assets/icons-processed/Archive_alt_big.svg", Sc = "/src/assets/icons-processed/Archive_alt_small.svg", kc = "/src/assets/icons-processed/Archive_alt_small_add.svg", Ac = "/src/assets/icons-processed/Archive_alt_small_lock.svg", bc = "/src/assets/icons-processed/Archive_alt_small_secure_light.svg", Bc = "/src/assets/icons-processed/Archive_export.svg", Fc = "/src/assets/icons-processed/Archive_import.svg", Tc = "/src/assets/icons-processed/Archive_load.svg", Dc = "/src/assets/icons-processed/Archive_plane.svg", yc = "/src/assets/icons-processed/Arhive-1.svg", xc = "/src/assets/icons-processed/Arhive.svg", Pc = "/src/assets/icons-processed/Arhive_alt_add.svg", Lc = "/src/assets/icons-processed/Arhive_alt_add_list.svg", wc = "/src/assets/icons-processed/Arhive_alt_export.svg", Rc = "/src/assets/icons-processed/Arhives_alt.svg", Mc = "/src/assets/icons-processed/Atom.svg", Wc = "/src/assets/icons-processed/Atom_alt.svg", Nc = "/src/assets/icons-processed/Back.svg", Ec = "/src/assets/icons-processed/Bag.svg", Uc = "/src/assets/icons-processed/Bag_alt.svg", zc = "/src/assets/icons-processed/Basket-1.svg", Hc = "/src/assets/icons-processed/Basket-2.svg", Oc = "/src/assets/icons-processed/Basket.svg", $c = "/src/assets/icons-processed/Basket_alt.svg", Vc = "/src/assets/icons-processed/Basket_alt_3.svg", qc = "/src/assets/icons-processed/Bed.svg", Kc = "/src/assets/icons-processed/Bell.svg", Xc = "/src/assets/icons-processed/Bell_pin.svg", jc = "/src/assets/icons-processed/Blank.svg", Jc = "/src/assets/icons-processed/Blank_alt.svg", Qc = "/src/assets/icons-processed/Blood.svg", Yc = "/src/assets/icons-processed/Blood_add.svg", Zc = "/src/assets/icons-processed/Blood_minus.svg", sn = "/src/assets/icons-processed/Book.svg", en = "/src/assets/icons-processed/Book_check.svg", on = "/src/assets/icons-processed/Book_open.svg", cn = "/src/assets/icons-processed/Book_open_alt.svg", nn = "/src/assets/icons-processed/Bookmark.svg", rn = "/src/assets/icons-processed/Box.svg", tn = "/src/assets/icons-processed/Box_alt.svg", an = "/src/assets/icons-processed/Box_open.svg", ln = "/src/assets/icons-processed/Boxes.svg", dn = "/src/assets/icons-processed/Bubble.svg", gn = "/src/assets/icons-processed/Bug.svg", pn = "/src/assets/icons-processed/CPU.svg", vn = "/src/assets/icons-processed/Cake.svg", In = "/src/assets/icons-processed/Calendar.svg", fn = "/src/assets/icons-processed/Calendar_add.svg", mn = "/src/assets/icons-processed/Calories.svg", un = "/src/assets/icons-processed/Camera.svg", Cn = "/src/assets/icons-processed/Cancel.svg", Gn = "/src/assets/icons-processed/Cancel_duotone_line.svg", _n = "/src/assets/icons-processed/Carbs.svg", hn = "/src/assets/icons-processed/Center_pick.svg", Sn = "/src/assets/icons-processed/Center_pick_alt.svg", kn = "/src/assets/icons-processed/Chart.svg", An = "/src/assets/icons-processed/Chart_alt.svg", bn = "/src/assets/icons-processed/Chart_pin.svg", Bn = "/src/assets/icons-processed/Chat.svg", Fn = "/src/assets/icons-processed/Chat_alt.svg", Tn = "/src/assets/icons-processed/Chat_alt_2.svg", Dn = "/src/assets/icons-processed/Chat_alt_3.svg", yn = "/src/assets/icons-processed/Chat_alt_add-1.svg", xn = "/src/assets/icons-processed/Chat_alt_add.svg", Pn = "/src/assets/icons-processed/Chat_plus-1.svg", Ln = "/src/assets/icons-processed/Chat_plus.svg", wn = "/src/assets/icons-processed/Chat_search.svg", Rn = "/src/assets/icons-processed/Check_ring.svg", Mn = "/src/assets/icons-processed/Checked_round.svg", Wn = "/src/assets/icons-processed/Chemistry.svg", Nn = "/src/assets/icons-processed/Chield.svg", En = "/src/assets/icons-processed/Chield_alt.svg", Un = "/src/assets/icons-processed/Chield_check.svg", zn = "/src/assets/icons-processed/Close_round.svg", Hn = "/src/assets/icons-processed/Close_round_duotone.svg", On = "/src/assets/icons-processed/Close_round_fill.svg", $n = "/src/assets/icons-processed/Cloud.svg", Vn = "/src/assets/icons-processed/Cloud_alt.svg", qn = "/src/assets/icons-processed/Collapse.svg", Kn = "/src/assets/icons-processed/Compas_mini.svg", Xn = "/src/assets/icons-processed/Compass.svg", jn = "/src/assets/icons-processed/Compass_alt.svg", Jn = "/src/assets/icons-processed/Compass_north_fill.svg", Qn = "/src/assets/icons-processed/Copy.svg", Yn = "/src/assets/icons-processed/Copy_alt.svg", Zn = "/src/assets/icons-processed/Covert.svg", sr = "/src/assets/icons-processed/Critical.svg", er = "/src/assets/icons-processed/Data_bank.svg", or = "/src/assets/icons-processed/Database.svg", cr = "/src/assets/icons-processed/Date_range.svg", nr = "/src/assets/icons-processed/Date_today.svg", rr = "/src/assets/icons-processed/Desk.svg", tr = "/src/assets/icons-processed/Desk_alt.svg", ar = "/src/assets/icons-processed/Dimond.svg", lr = "/src/assets/icons-processed/Dimond_alt.svg", ir = "/src/assets/icons-processed/Direction.svg", dr = "/src/assets/icons-processed/Direction_alt.svg", gr = "/src/assets/icons-processed/Direction_alt_2.svg", pr = "/src/assets/icons-processed/Direction_alt_3.svg", vr = "/src/assets/icons-processed/Dna.svg", Ir = "/src/assets/icons-processed/Done.svg", fr = "/src/assets/icons-processed/Done_all_alt_round.svg", mr = "/src/assets/icons-processed/Done_all_round.svg", ur = "/src/assets/icons-processed/Done_ring_round.svg", Cr = "/src/assets/icons-processed/Done_round.svg", Gr = "/src/assets/icons-processed/Dot3.svg", _r = "/src/assets/icons-processed/E-mail.svg", hr = "/src/assets/icons-processed/Expand_left.svg", Sr = "/src/assets/icons-processed/Expand_left_double.svg", kr = "/src/assets/icons-processed/Expand_left_stop.svg", Ar = "/src/assets/icons-processed/Expand_right.svg", br = "/src/assets/icons-processed/Expand_right_double.svg", Br = "/src/assets/icons-processed/Expand_right_stop.svg", Fr = "/src/assets/icons-processed/Expand_top_stop.svg", Tr = "/src/assets/icons-processed/Export.svg", Dr = "/src/assets/icons-processed/External.svg", yr = "/src/assets/icons-processed/Eye.svg", xr = "/src/assets/icons-processed/Fat.svg", Pr = "/src/assets/icons-processed/Favorite.svg", Lr = "/src/assets/icons-processed/Favorites.svg", wr = "/src/assets/icons-processed/Filter.svg", Rr = "/src/assets/icons-processed/Filter_alt-1.svg", Mr = "/src/assets/icons-processed/Filter_alt.svg", Wr = "/src/assets/icons-processed/Filter_big.svg", Nr = "/src/assets/icons-processed/Filter_big_alt.svg", Er = "/src/assets/icons-processed/Fire-1.svg", Ur = "/src/assets/icons-processed/Fire-2.svg", zr = "/src/assets/icons-processed/Fire.svg", Hr = "/src/assets/icons-processed/Flag.svg", Or = "/src/assets/icons-processed/Flag_alt.svg", $r = "/src/assets/icons-processed/Flag_finish.svg", Vr = "/src/assets/icons-processed/Flag_finish_alt.svg", qr = "/src/assets/icons-processed/Flask.svg", Kr = "/src/assets/icons-processed/Flask_alt.svg", Xr = "/src/assets/icons-processed/Folder.svg", jr = "/src/assets/icons-processed/Folder_add.svg", Jr = "/src/assets/icons-processed/Folder_alt.svg", Qr = "/src/assets/icons-processed/Folder_check.svg", Yr = "/src/assets/icons-processed/Folder_copy.svg", Zr = "/src/assets/icons-processed/Folder_del.svg", st = "/src/assets/icons-processed/Folder_dublicate.svg", et = "/src/assets/icons-processed/Folder_line.svg", ot = "/src/assets/icons-processed/Folder_open.svg", ct = "/src/assets/icons-processed/Folder_open_alt.svg", nt = "/src/assets/icons-processed/Folder_search.svg", rt = "/src/assets/icons-processed/Folder_send.svg", tt = "/src/assets/icons-processed/Folders_.svg", at = "/src/assets/icons-processed/Folders_line.svg", lt = "/src/assets/icons-processed/Form.svg", it = "/src/assets/icons-processed/Frame 11934.svg", dt = "/src/assets/icons-processed/Frame.svg", gt = "/src/assets/icons-processed/Full-1.svg", pt = "/src/assets/icons-processed/Full-2.svg", vt = "/src/assets/icons-processed/Full.svg", It = "/src/assets/icons-processed/Full_Screen_Corner.svg", ft = "/src/assets/icons-processed/Full_alt-1.svg", mt = "/src/assets/icons-processed/Full_alt.svg", ut = "/src/assets/icons-processed/GIft.svg", Ct = "/src/assets/icons-processed/Gamepad.svg", Gt = "/src/assets/icons-processed/Glass.svg", _t = "/src/assets/icons-processed/Glasses.svg", ht = "/src/assets/icons-processed/Gps_fixed.svg", St = "/src/assets/icons-processed/Headphones_fill.svg", kt = "/src/assets/icons-processed/Hhourglass_move_light.svg", At = "/src/assets/icons-processed/Home.svg", bt = "/src/assets/icons-processed/Horizontal_switch.svg", Bt = "/src/assets/icons-processed/Horizontal_top_left_main.svg", Ft = "/src/assets/icons-processed/Horizontal_top_right_main.svg", Tt = "/src/assets/icons-processed/Hourglass.svg", Dt = "/src/assets/icons-processed/ITO.svg", yt = "/src/assets/icons-processed/Img.svg", xt = "/src/assets/icons-processed/Img_alt_.svg", Pt = "/src/assets/icons-processed/Img_box.svg", Lt = "/src/assets/icons-processed/Img_load-box.svg", wt = "/src/assets/icons-processed/Img_out-box.svg", Rt = "/src/assets/icons-processed/Img_rol.svg", Mt = "/src/assets/icons-processed/Import.svg", Wt = "/src/assets/icons-processed/In.svg", Nt = "/src/assets/icons-processed/Info-1.svg", Et = "/src/assets/icons-processed/Info.svg", Ut = "/src/assets/icons-processed/Info_alt.svg", zt = "/src/assets/icons-processed/Key.svg", Ht = "/src/assets/icons-processed/Key_alt.svg", Ot = "/src/assets/icons-processed/Knife.svg", $t = "/src/assets/icons-processed/Lable.svg", Vt = "/src/assets/icons-processed/Lamp.svg", qt = "/src/assets/icons-processed/Layers.svg", Kt = "/src/assets/icons-processed/Less_Screen_Corner.svg", Xt = "/src/assets/icons-processed/Less_round_duotone.svg", jt = "/src/assets/icons-processed/Line.svg", Jt = "/src/assets/icons-processed/Line_alt.svg", Qt = "/src/assets/icons-processed/Line_in.svg", Yt = "/src/assets/icons-processed/Line_in_alt.svg", Zt = "/src/assets/icons-processed/Line_out.svg", sa = "/src/assets/icons-processed/Line_out_alt.svg", ea = "/src/assets/icons-processed/Load_circle.svg", oa = "/src/assets/icons-processed/Load_circle_fill.svg", ca = "/src/assets/icons-processed/Load_list.svg", na = "/src/assets/icons-processed/Load_list_alt.svg", ra = "/src/assets/icons-processed/Lock.svg", ta = "/src/assets/icons-processed/Lock_alt.svg", aa = "/src/assets/icons-processed/Lol.svg", la = "/src/assets/icons-processed/Mask.svg", ia = "/src/assets/icons-processed/Materials.svg", da = "/src/assets/icons-processed/Meatballs_menu.svg", ga = "/src/assets/icons-processed/Menu-1.svg", pa = "/src/assets/icons-processed/Menu.svg", va = "/src/assets/icons-processed/Message.svg", Ia = "/src/assets/icons-processed/Message_alt.svg", fa = "/src/assets/icons-processed/Message_open.svg", ma = "/src/assets/icons-processed/Mic.svg", ua = "/src/assets/icons-processed/Mic_alt.svg", Ca = "/src/assets/icons-processed/Molecule.svg", Ga = "/src/assets/icons-processed/Money.svg", _a = "/src/assets/icons-processed/Moon.svg", ha = "/src/assets/icons-processed/Moon_alt.svg", Sa = "/src/assets/icons-processed/Mortarboard.svg", ka = "/src/assets/icons-processed/Mortarboard_alt.svg", Aa = "/src/assets/icons-processed/Mortarboard_alt_2.svg", ba = "/src/assets/icons-processed/Mouse.svg", Ba = "/src/assets/icons-processed/Move.svg", Fa = "/src/assets/icons-processed/Move_alt.svg", Ta = "/src/assets/icons-processed/Move_object.svg", Da = "/src/assets/icons-processed/Music.svg", ya = "/src/assets/icons-processed/NFC.svg", xa = "/src/assets/icons-processed/Navigate.svg", Pa = "/src/assets/icons-processed/Nesting.svg", La = "/src/assets/icons-processed/News.svg", wa = "/src/assets/icons-processed/On_button.svg", Ra = "/src/assets/icons-processed/Orange.svg", Ma = "/src/assets/icons-processed/Order.svg", Wa = "/src/assets/icons-processed/Out.svg", Na = "/src/assets/icons-processed/Paper.svg", Ea = "/src/assets/icons-processed/Paper_alt.svg", Ua = "/src/assets/icons-processed/Pass.svg", za = "/src/assets/icons-processed/Password.svg", Ha = "/src/assets/icons-processed/Pin-1.svg", Oa = "/src/assets/icons-processed/Pin.svg", $a = "/src/assets/icons-processed/Pin_alt.svg", Va = "/src/assets/icons-processed/Pined.svg", qa = "/src/assets/icons-processed/Pipe.svg", Ka = "/src/assets/icons-processed/Pipette.svg", Xa = "/src/assets/icons-processed/Pizza.svg", ja = "/src/assets/icons-processed/Pointers.svg", Ja = "/src/assets/icons-processed/Pressure.svg", Qa = "/src/assets/icons-processed/Print.svg", Ya = "/src/assets/icons-processed/Progress.svg", Za = "/src/assets/icons-processed/Protein.svg", sl = "/src/assets/icons-processed/Question.svg", el = "/src/assets/icons-processed/Rain.svg", ol = "/src/assets/icons-processed/Reduce.svg", cl = "/src/assets/icons-processed/Refresh.svg", nl = "/src/assets/icons-processed/Refresh_2.svg", rl = "/src/assets/icons-processed/Refund_Forward.svg", tl = "/src/assets/icons-processed/Refund_back.svg", al = "/src/assets/icons-processed/Refund_ring_back.svg", ll = "/src/assets/icons-processed/Refund_ring_forward.svg", il = "/src/assets/icons-processed/Refund_ring_top.svg", dl = "/src/assets/icons-processed/Refund_top.svg", gl = "/src/assets/icons-processed/Remove.svg", pl = "/src/assets/icons-processed/Return.svg", vl = "/src/assets/icons-processed/Ring.svg", Il = "/src/assets/icons-processed/Ring_move.svg", fl = "/src/assets/icons-processed/Road.svg", ml = "/src/assets/icons-processed/Road_alt.svg", ul = "/src/assets/icons-processed/Road_finish.svg", Cl = "/src/assets/icons-processed/Rofl.svg", Gl = "/src/assets/icons-processed/Roll.svg", _l = "/src/assets/icons-processed/Roll_alt.svg", hl = "/src/assets/icons-processed/Root.svg", Sl = "/src/assets/icons-processed/Sad.svg", kl = "/src/assets/icons-processed/Sad_alt.svg", Al = "/src/assets/icons-processed/Sad_alt_2.svg", bl = "/src/assets/icons-processed/Save.svg", Bl = "/src/assets/icons-processed/Scan.svg", Fl = "/src/assets/icons-processed/Scan_alt.svg", Tl = "/src/assets/icons-processed/Scan_alt_2.svg", Dl = "/src/assets/icons-processed/Search.svg", yl = "/src/assets/icons-processed/Search_alt.svg", xl = "/src/assets/icons-processed/Send.svg", Pl = "/src/assets/icons-processed/Send_hor.svg", Ll = "/src/assets/icons-processed/Sertificate.svg", wl = "/src/assets/icons-processed/Server.svg", Rl = "/src/assets/icons-processed/Sign_in_circle.svg", Ml = "/src/assets/icons-processed/Sign_in_squre.svg", Wl = "/src/assets/icons-processed/Sign_out_bis.svg", Nl = "/src/assets/icons-processed/Sign_out_circle.svg", El = "/src/assets/icons-processed/Sign_out_squre.svg", Ul = "/src/assets/icons-processed/Speed.svg", zl = "/src/assets/icons-processed/Speed_alt.svg", Hl = "/src/assets/icons-processed/Square.svg", Ol = "/src/assets/icons-processed/Stackframe.svg", $l = "/src/assets/icons-processed/Stat.svg", Vl = "/src/assets/icons-processed/Status.svg", ql = "/src/assets/icons-processed/Status_list.svg", Kl = "/src/assets/icons-processed/Stop.svg", Xl = "/src/assets/icons-processed/Subttasks.svg", jl = "/src/assets/icons-processed/Subttasks_alt.svg", Jl = "/src/assets/icons-processed/Table.svg", Ql = "/src/assets/icons-processed/Tablet.svg", Yl = "/src/assets/icons-processed/Target.svg", Zl = "/src/assets/icons-processed/Temperature-1.svg", si = "/src/assets/icons-processed/Temperature.svg", ei = "/src/assets/icons-processed/Tie.svg", oi = "/src/assets/icons-processed/Tooth.svg", ci = "/src/assets/icons-processed/Transger.svg", ni = "/src/assets/icons-processed/Trash.svg", ri = "/src/assets/icons-processed/Tree.svg", ti = "/src/assets/icons-processed/Trophy.svg", ai = "/src/assets/icons-processed/Tumer.svg", li = "/src/assets/icons-processed/Turbine.svg", ii = "/src/assets/icons-processed/Unlock-1.svg", di = "/src/assets/icons-processed/Unlock.svg", gi = "/src/assets/icons-processed/Vector.svg", pi = "/src/assets/icons-processed/Vertical_switch.svg", vi = "/src/assets/icons-processed/Vertical_switch_alt.svg", Ii = "/src/assets/icons-processed/Vertical_switch_long.svg", fi = "/src/assets/icons-processed/Water.svg", mi = "/src/assets/icons-processed/Waterfall.svg", ui = "/src/assets/icons-processed/Winter.svg", Ci = "/src/assets/icons-processed/Wow.svg", Gi = "/src/assets/icons-processed/battery_full.svg", _i = "/src/assets/icons-processed/battery_low.svg", hi = "/src/assets/icons-processed/box_refresh_alt_right.svg", Si = "/src/assets/icons-processed/box_refresh_right.svg", ki = "/src/assets/icons-processed/candlestick.svg", Ai = "/src/assets/icons-processed/check_ring_round.svg", bi = "/src/assets/icons-processed/circle_left.svg", Bi = "/src/assets/icons-processed/circle_right.svg", Fi = "/src/assets/icons-processed/circle_right_alt.svg", Ti = "/src/assets/icons-processed/close_ring.svg", Di = "/src/assets/icons-processed/close_ring_duotone.svg", yi = "/src/assets/icons-processed/close_ring_fill.svg", xi = "/src/assets/icons-processed/cocktail.svg", Pi = "/src/assets/icons-processed/color_picker.svg", Li = "/src/assets/icons-processed/comment.svg", wi = "/src/assets/icons-processed/darhboard.svg", Ri = "/src/assets/icons-processed/darhboard_alt.svg", Mi = "/src/assets/icons-processed/del_alt.svg", Wi = "/src/assets/icons-processed/desktop.svg", Ni = "/src/assets/icons-processed/doughnut_chart.svg", Ei = "/src/assets/icons-processed/drink.svg", Ui = "/src/assets/icons-processed/face_id.svg", zi = "/src/assets/icons-processed/flash.svg", Hi = "/src/assets/icons-processed/gift_alt.svg", Oi = "/src/assets/icons-processed/globe.svg", $i = "/src/assets/icons-processed/happy-1.svg", Vi = "/src/assets/icons-processed/happy.svg", qi = "/src/assets/icons-processed/hide_eye.svg", Ki = "/src/assets/icons-processed/humidity.svg", Xi = "/src/assets/icons-processed/ice_cream.svg", ji = "/src/assets/icons-processed/ice_cream_1.svg", Ji = "/src/assets/icons-processed/insta.svg", Qi = "/src/assets/icons-processed/lightning.svg", Yi = "/src/assets/icons-processed/lightning_alt.svg", Zi = "/src/assets/icons-processed/lightning_ring.svg", sd = "/src/assets/icons-processed/link.svg", ed = "/src/assets/icons-processed/link_alt-1.svg", od = "/src/assets/icons-processed/link_alt.svg", cd = "/src/assets/icons-processed/md_icon.svg", nd = "/src/assets/icons-processed/mobile.svg", rd = "/src/assets/icons-processed/notebook.svg", td = "/src/assets/icons-processed/oil.svg", ad = "/src/assets/icons-processed/package.svg", ld = "/src/assets/icons-processed/package_box.svg", id = "/src/assets/icons-processed/package_box_alt.svg", dd = "/src/assets/icons-processed/package_box_close.svg", gd = "/src/assets/icons-processed/package_car.svg", pd = "/src/assets/icons-processed/package_favourite.svg", vd = "/src/assets/icons-processed/package_favourite_alt.svg", Id = "/src/assets/icons-processed/package_search.svg", fd = "/src/assets/icons-processed/paper_clip.svg", md = "/src/assets/icons-processed/phone.svg", ud = "/src/assets/icons-processed/pie_chart.svg", Cd = "/src/assets/icons-processed/pil.svg", Gd = "/src/assets/icons-processed/pils.svg", _d = "/src/assets/icons-processed/pool.svg", hd = "/src/assets/icons-processed/pyramid_chart.svg", Sd = "/src/assets/icons-processed/stethoscope.svg", kd = "/src/assets/icons-processed/suitcase.svg", Ad = "/src/assets/icons-processed/€.svg", bd = "/src/assets/icons-processed/Alarmclock.svg", Bd = "/src/assets/icons-processed/Clock.svg", Fd = "/src/assets/icons-processed/Jump_time.svg", Td = "/src/assets/icons-processed/Time.svg", Dd = "/src/assets/icons-processed/Time_atack.svg", yd = "/src/assets/icons-processed/Time_del_light.svg", xd = "/src/assets/icons-processed/Time_progress.svg", Pd = "/src/assets/icons-processed/Time_sleep.svg", Ld = "/src/assets/icons-processed/watch.svg", wd = "/src/assets/icons-processed/watch_alt.svg", Rd = "/src/assets/icons-processed/Arhives_group_docks.svg", Md = "/src/assets/icons-processed/Arrow_alt_ldown.svg", Wd = "/src/assets/icons-processed/Arrow_alt_left.svg", Nd = "/src/assets/icons-processed/Arrow_alt_lright.svg", Ed = "/src/assets/icons-processed/Arrow_alt_ltop.svg", Ud = "/src/assets/icons-processed/Arrow_down_long.svg", zd = "/src/assets/icons-processed/Arrow_left_long.svg", Hd = "/src/assets/icons-processed/Arrow_right_long.svg", Od = "/src/assets/icons-processed/Arrow_top_long.svg", $d = "/src/assets/icons-processed/Colum_up.svg", Vd = "/src/assets/icons-processed/Down.svg", qd = "/src/assets/icons-processed/Download.svg", Kd = "/src/assets/icons-processed/Download_circle.svg", Xd = "/src/assets/icons-processed/Download_circle_fill.svg", jd = "/src/assets/icons-processed/Expand_down.svg", Jd = "/src/assets/icons-processed/Expand_down_double.svg", Qd = "/src/assets/icons-processed/Expand_down_stop.svg", Yd = "/src/assets/icons-processed/Expand_up.svg", Zd = "/src/assets/icons-processed/Expand_up_double.svg", sg = "/src/assets/icons-processed/Folder_up.svg", eg = "/src/assets/icons-processed/Folders_group.svg", og = "/src/assets/icons-processed/Group.svg", cg = "/src/assets/icons-processed/Group_scan.svg", ng = "/src/assets/icons-processed/Horizontal_down_left_main.svg", rg = "/src/assets/icons-processed/Horizontal_down_right_main.svg", tg = "/src/assets/icons-processed/Line_up.svg", ag = "/src/assets/icons-processed/Refund_down.svg", lg = "/src/assets/icons-processed/Refund_ring_down.svg", ig = "/src/assets/icons-processed/Regroup.svg", dg = "/src/assets/icons-processed/Size_down.svg", gg = "/src/assets/icons-processed/Size_right_up.svg", pg = "/src/assets/icons-processed/Sort list.svg", vg = "/src/assets/icons-processed/Sort list_alt.svg", Ig = "/src/assets/icons-processed/Sort.svg", fg = "/src/assets/icons-processed/Sort_arrow.svg", mg = "/src/assets/icons-processed/Sort_down.svg", ug = "/src/assets/icons-processed/Sort_up.svg", Cg = "/src/assets/icons-processed/Sort_up_alt.svg", Gg = "/src/assets/icons-processed/Up.svg", _g = "/src/assets/icons-processed/Upload.svg", hg = "/src/assets/icons-processed/group_add.svg", Sg = "/src/assets/icons-processed/group_share.svg", kg = "/src/assets/icons-processed/thumb_down.svg", Ag = "/src/assets/icons-processed/thumb_up.svg", bg = "/src/assets/icons-processed/Broken_heart.svg", Bg = "/src/assets/icons-processed/Star.svg", Fg = "/src/assets/icons-processed/Credit card.svg", Tg = "/src/assets/icons-processed/Edit.svg", Dg = "/src/assets/icons-processed/Edit2.svg", yg = "/src/assets/icons-processed/Edit_alt.svg", xg = "/src/assets/icons-processed/Text.svg", Pg = "/src/assets/icons-processed/typo.svg", Lg = "/src/assets/icons-processed/File.svg", wg = "/src/assets/icons-processed/File_dock.svg", Rg = "/src/assets/icons-processed/File_dock_add.svg", Mg = "/src/assets/icons-processed/File_dock_search.svg", Wg = "/src/assets/icons-processed/Folder_file.svg", Ng = "/src/assets/icons-processed/Folder_file_alt.svg", Eg = "/src/assets/icons-processed/Map-1.svg", Ug = "/src/assets/icons-processed/Map.svg", zg = "/src/assets/icons-processed/world.svg", Hg = "/src/assets/icons-processed/world_2.svg", Og = "/src/assets/icons-processed/world_alt.svg", $g = "/src/assets/icons-processed/Play.svg", Vg = "/src/assets/icons-processed/Sound.svg", qg = "/src/assets/icons-processed/Stop_and_play.svg", Kg = "/src/assets/icons-processed/Video.svg", Xg = "/src/assets/icons-processed/Video_file.svg", jg = "/src/assets/icons-processed/sound_max.svg", Jg = "/src/assets/icons-processed/sound_min.svg", Qg = "/src/assets/icons-processed/sound_mute.svg", Yg = "/src/assets/icons-processed/Setting_alt_line.svg", Zg = "/src/assets/icons-processed/Setting_line.svg", sp = "/src/assets/icons-processed/Setting_vert.svg", ep = "/src/assets/icons-processed/Widget-1.svg", op = "/src/assets/icons-processed/Widget.svg", cp = "/src/assets/icons-processed/Widget_add.svg", np = "/src/assets/icons-processed/Widget_alt-1.svg", rp = "/src/assets/icons-processed/Widget_alt.svg", tp = "/src/assets/icons-processed/table_settings.svg", ap = "/src/assets/icons-processed/Shop.svg", lp = "/src/assets/icons-processed/Ticket.svg", ip = "/src/assets/icons-processed/Ticket_alt.svg", dp = "/src/assets/icons-processed/Ticket_use.svg", gp = "/src/assets/icons-processed/Wallet.svg", pp = "/src/assets/icons-processed/Wallet_alt.svg", vp = "/src/assets/icons-processed/Storm.svg", Ip = "/src/assets/icons-processed/Sun-1.svg", fp = "/src/assets/icons-processed/Sun.svg", mp = "/src/assets/icons-processed/Sunlight.svg", up = "/src/assets/icons-processed/User.svg", Cp = "/src/assets/icons-processed/User_add.svg", Gp = "/src/assets/icons-processed/User_add_alt.svg", _p = "/src/assets/icons-processed/User_alt.svg", hp = "/src/assets/icons-processed/User_box.svg", Sp = "/src/assets/icons-processed/User_cicrle.svg", kp = "/src/assets/icons-processed/User_scan.svg", Ap = "none", bp = "0 1px 2px 0 rgba(0, 0, 0, 0.05)", Bp = "0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06)", Fp = "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)", Tp = "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)", Dp = "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)", yp = "0px", xp = "4px", Pp = "8px", Lp = "12px", wp = "16px", Rp = "20px", Mp = "24px", Wp = "32px", Np = "40px", Ep = "48px", Up = "64px", zp = "80px", Hp = "96px", Op = "128px", $p = "Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif", Vp = "'JetBrains Mono', 'Fira Code', Consolas, monospace", qp = "12px", Kp = "14px", Xp = "16px", jp = "18px", Jp = "20px", Qp = "24px", Yp = "30px", Zp = "36px", sv = "48px", ev = "300", ov = "400", cv = "500", nv = "600", rv = "700", tv = "1.25", av = "1.5", lv = "1.75", iv = "/src/assets/logos/club-employes/logo.svg", dv = "/src/assets/logos/club-employes/logo-small.svg", gv = "/src/assets/logos/club-employes/logo-white.svg", pv = "/src/assets/logos/club-employes/logo-small-white.svg", vv = "#fafbfe", Iv = "#f6f8fe", fv = "#f2f5fe", mv = "#e9eefe", uv = "#c9d6fb", Cv = "#93aef8", Gv = "#275cf1", _v = "#FAFAFЕ", hv = "#f5f6f8", Sv = "#f0f1f4", kv = "#e7e8ed", Av = "#c2c6d1", bv = "#858ea4", Bv = "#0b1c48", Fv = "#fffcfa", Tv = "#fff9f6", Dv = "#fff6f2", yv = "#fef0e9", xv = "#fcd8c8", Pv = "#f9b191", Lv = "#f36222", wv = "#eff6ff", Rv = "#dbeafe", Mv = "#bfdbfe", Wv = "#93c5fd", Nv = "#60a5fa", Ev = "#3b82f6", Uv = "#2563eb", zv = "#1d4ed8", Hv = "#1e40af", Ov = "#1e3a8a", $v = "#fafbfe", Vv = "#ffffff", qv = "#00000080", Kv = "#111827", Xv = "#4b5563", jv = "#9ca3af", Jv = "#ffffff", Qv = "#e5e7eb", Yv = "#f3f4f6", Zv = "#d1d5db", s0 = "#f8fafc", e0 = "#e2e8f0", o0 = "#90a1b9", c0 = "#45556c", n0 = "#1d293d", r0 = "#020618", t0 = "#e8fcf2", a0 = "#a4f4cf", l0 = "#00d492", i0 = "#0a9c55", d0 = "#006045", g0 = "#002c22", p0 = "#fff5db", v0 = "#ffd6a8", I0 = "#ff8904", f0 = "#f54900", m0 = "#9f2d00", u0 = "#441306", C0 = "#ffefe8", G0 = "#ffc9c9", _0 = "#ff6467", h0 = "#cf2a2a", S0 = "#9f0712", k0 = "#460809", A0 = "#ff6467", b0 = "#ffefe8", B0 = "#00d492", F0 = "#e8fcf2", T0 = "#ff8904", D0 = "#fff5db";
319
+ mode: "dark"
320
+ }, M = {
321
+ BRAND: "utopia-theme-brand",
322
+ MODE: "utopia-theme-mode"
323
+ }, Z = () => {
324
+ if (typeof window > "u") return "club-employes";
325
+ const n = localStorage.getItem(M.BRAND);
326
+ return n === "club-employes" || n === "gifteo" ? n : "club-employes";
327
+ }, ee = () => {
328
+ if (typeof window > "u") return "light";
329
+ const n = localStorage.getItem(M.MODE);
330
+ return n === "light" || n === "dark" ? n : "light";
331
+ }, te = (n) => {
332
+ typeof window < "u" && localStorage.setItem(M.BRAND, n);
333
+ }, oe = (n) => {
334
+ typeof window < "u" && localStorage.setItem(M.MODE, n);
335
+ }, f = C(Z()), b = C(ee()), _ = {
336
+ "club-employes": {
337
+ light: Y,
338
+ dark: J,
339
+ name: "Club Employés"
340
+ },
341
+ gifteo: {
342
+ light: Q,
343
+ dark: X,
344
+ name: "Gifteo"
345
+ }
346
+ };
347
+ function ne() {
348
+ const n = u(() => _[f.value][b.value]), t = u(() => _[f.value].name);
349
+ k(f, (e) => {
350
+ te(e);
351
+ }, { immediate: !1 }), k(b, (e) => {
352
+ oe(e);
353
+ }, { immediate: !1 });
354
+ const o = () => {
355
+ f.value = f.value === "club-employes" ? "gifteo" : "club-employes";
356
+ }, r = () => {
357
+ b.value = b.value === "light" ? "dark" : "light";
358
+ }, l = (e) => {
359
+ f.value = e;
360
+ }, d = (e) => {
361
+ b.value = e;
362
+ }, a = u(() => Object.keys(_).map((e) => ({
363
+ key: e,
364
+ name: _[e].name
365
+ })));
366
+ return {
367
+ // State
368
+ currentTheme: n,
369
+ currentBrand: u(() => f.value),
370
+ currentMode: u(() => b.value),
371
+ currentBrandName: t,
372
+ availableBrands: a,
373
+ // Actions
374
+ toggleBrand: o,
375
+ toggleMode: r,
376
+ setBrand: l,
377
+ setMode: d
378
+ };
379
+ }
380
+ function de() {
381
+ const { currentBrand: n, currentMode: t } = ne(), o = (i) => {
382
+ try {
383
+ const c = `--assets-logos-${i}-small`, p = getComputedStyle(document.documentElement).getPropertyValue(c).trim();
384
+ return p && p.startsWith("url(") && p.endsWith(")") ? p.slice(4, -1).replace(/['"`]/g, "") : null;
385
+ } catch (s) {
386
+ return console.warn("Erreur lors de la récupération du logo pour le favicon:", s), null;
387
+ }
388
+ }, r = (i) => i, l = (i) => {
389
+ try {
390
+ const s = document.querySelector('link[rel="icon"]');
391
+ s && s.remove();
392
+ const c = document.createElement("link");
393
+ c.rel = "icon", c.type = "image/svg+xml", c.href = i, document.head.appendChild(c);
394
+ } catch (s) {
395
+ console.warn("Erreur lors de la mise à jour du favicon:", s);
396
+ }
397
+ }, d = u(() => {
398
+ const i = o(n.value);
399
+ return i ? r(i) : "/favicon.ico";
400
+ }), a = () => {
401
+ const i = d.value;
402
+ i && l(i);
403
+ };
404
+ let e = null;
405
+ return z(() => {
406
+ setTimeout(a, 50), e = k(
407
+ [n, t],
408
+ () => {
409
+ a();
410
+ },
411
+ { immediate: !1 }
412
+ );
413
+ }), F(() => {
414
+ e && e();
415
+ }), {
416
+ faviconUrl: d,
417
+ refreshFavicon: a,
418
+ updateFavicon: l
419
+ };
420
+ }
205
421
  export {
206
- q as AssetsLogosClubEmployesDefault,
207
- K as AssetsLogosClubEmployesSmall,
208
- j as AssetsLogosClubEmployesSmallWhite,
209
- X as AssetsLogosClubEmployesWhite,
210
- J as AssetsLogosGifteoDefault,
211
- Q as AssetsLogosGifteoSmall,
212
- Z as AssetsLogosGifteoSmallWhite,
213
- Y as AssetsLogosGifteoWhite,
214
- ts as BorderRadiusBase,
215
- ds as BorderRadiusFull,
216
- ls as BorderRadiusLg,
217
- as as BorderRadiusMd,
218
- ns as BorderRadiusNone,
219
- rs as BorderRadiusSm,
220
- is as BorderRadiusXl,
221
- ss as BorderWidth0,
222
- es as BorderWidth1,
223
- os as BorderWidth2,
224
- cs as BorderWidth4,
225
- U as Button,
226
- ve as ColorBackground100,
227
- Ie as ColorBackground200,
228
- fe as ColorBackground300,
229
- me as ColorBackground400,
230
- pe as ColorBackground50,
231
- ue as ColorBackground500,
232
- Ce as ColorBackground600,
233
- Ge as ColorBackground700,
234
- _e as ColorBackground800,
235
- he as ColorBackground900,
236
- Se as ColorBackground950,
237
- no as ColorBlue100,
238
- ro as ColorBlue200,
239
- oo as ColorBlue25,
240
- to as ColorBlue300,
241
- ao as ColorBlue400,
242
- co as ColorBlue50,
243
- lo as ColorBlue500,
244
- io as ColorBlue600,
245
- go as ColorBlue700,
246
- po as ColorBlue800,
247
- vo as ColorBlue900,
248
- Io as ColorBlue950,
249
- ic as ColorBrandAccent100,
250
- dc as ColorBrandAccent200,
251
- ac as ColorBrandAccent25,
252
- gc as ColorBrandAccent300,
253
- pc as ColorBrandAccent400,
254
- lc as ColorBrandAccent50,
255
- vc as ColorBrandAccent500,
256
- jo as ColorBrandPrimary100,
257
- Jo as ColorBrandPrimary200,
258
- Ko as ColorBrandPrimary25,
259
- Qo as ColorBrandPrimary300,
260
- Yo as ColorBrandPrimary400,
261
- Xo as ColorBrandPrimary50,
262
- Zo as ColorBrandPrimary500,
263
- oc as ColorBrandSecondary100,
264
- cc as ColorBrandSecondary200,
265
- sc as ColorBrandSecondary25,
266
- nc as ColorBrandSecondary300,
267
- rc as ColorBrandSecondary400,
268
- ec as ColorBrandSecondary50,
269
- tc as ColorBrandSecondary500,
270
- qe as ColorDanger100,
271
- Ke as ColorDanger200,
272
- Xe as ColorDanger300,
273
- je as ColorDanger400,
274
- Ve as ColorDanger50,
275
- Je as ColorDanger500,
276
- Qe as ColorDanger600,
277
- Ye as ColorDanger700,
278
- Ze as ColorDanger800,
279
- so as ColorDanger900,
280
- eo as ColorDanger950,
281
- Vs as ColorDangerDark100,
282
- qs as ColorDangerDark200,
283
- Ks as ColorDangerDark300,
284
- Xs as ColorDangerDark400,
285
- $s as ColorDangerDark50,
286
- js as ColorDangerDark500,
287
- Js as ColorDangerDark600,
288
- Qs as ColorDangerDark700,
289
- Ys as ColorDangerDark800,
290
- Zs as ColorDangerDark900,
291
- se as ColorDangerDark950,
292
- Mo as ColorNeutral100,
293
- Wo as ColorNeutral200,
294
- No as ColorNeutral300,
295
- Eo as ColorNeutral400,
296
- Ro as ColorNeutral50,
297
- Uo as ColorNeutral500,
298
- zo as ColorNeutral600,
299
- Ho as ColorNeutral700,
300
- Oo as ColorNeutral800,
301
- $o as ColorNeutral900,
302
- qo as ColorNeutralBlack,
303
- Vo as ColorNeutralWhite,
304
- To as ColorProductECheckLight,
305
- Fo as ColorProductECheckPrimary,
306
- So as ColorProductETicketLight,
307
- ho as ColorProductETicketPrimary,
308
- mo as ColorProductExclusiveSaleLight,
309
- fo as ColorProductExclusiveSalePrimary,
310
- Bo as ColorProductGiftCardLight,
311
- bo as ColorProductGiftCardPrimary,
312
- Ao as ColorProductMemberCardLight,
313
- ko as ColorProductMemberCardPrimary,
314
- _o as ColorProductPhysicalProductLight,
315
- Go as ColorProductPhysicalProductPrimary,
316
- Co as ColorProductPromoCodeLight,
317
- uo as ColorProductPromoCodePrimary,
318
- xo as ColorSemanticAttentionBackground,
319
- Do as ColorSemanticAttentionPrimary,
320
- yo as ColorSemanticAttentionSecondary,
321
- wo as ColorSemanticSuccessBackground,
322
- Po as ColorSemanticSuccessPrimary,
323
- Lo as ColorSemanticSuccessSecondary,
324
- oe as ColorSlate100,
325
- ce as ColorSlate200,
326
- ne as ColorSlate300,
327
- re as ColorSlate400,
328
- ee as ColorSlate50,
329
- te as ColorSlate500,
330
- ae as ColorSlate600,
331
- le as ColorSlate700,
332
- ie as ColorSlate800,
333
- de as ColorSlate900,
334
- ge as ColorSlate950,
335
- ps as ColorSlateDark100,
336
- vs as ColorSlateDark200,
337
- Is as ColorSlateDark300,
338
- fs as ColorSlateDark400,
339
- gs as ColorSlateDark50,
340
- ms as ColorSlateDark500,
341
- us as ColorSlateDark600,
342
- Cs as ColorSlateDark700,
343
- Gs as ColorSlateDark800,
344
- _s as ColorSlateDark900,
345
- hs as ColorSlateDark950,
346
- Ae as ColorSucceed100,
347
- be as ColorSucceed200,
348
- Be as ColorSucceed300,
349
- Fe as ColorSucceed400,
350
- ke as ColorSucceed50,
351
- Te as ColorSucceed500,
352
- De as ColorSucceed600,
353
- ye as ColorSucceed700,
354
- xe as ColorSucceed800,
355
- Pe as ColorSucceed900,
356
- Le as ColorSucceed950,
357
- ks as ColorSucceedDark100,
358
- As as ColorSucceedDark200,
359
- bs as ColorSucceedDark300,
360
- Bs as ColorSucceedDark400,
361
- Ss as ColorSucceedDark50,
362
- Fs as ColorSucceedDark500,
363
- Ts as ColorSucceedDark600,
364
- Ds as ColorSucceedDark700,
365
- ys as ColorSucceedDark800,
366
- xs as ColorSucceedDark900,
367
- Ps as ColorSucceedDark950,
368
- Re as ColorWarning100,
369
- Me as ColorWarning200,
370
- We as ColorWarning300,
371
- Ne as ColorWarning400,
372
- we as ColorWarning50,
373
- Ee as ColorWarning500,
374
- Ue as ColorWarning600,
375
- ze as ColorWarning700,
376
- He as ColorWarning800,
377
- Oe as ColorWarning900,
378
- $e as ColorWarning950,
379
- ws as ColorWarningDark100,
380
- Rs as ColorWarningDark200,
381
- Ms as ColorWarningDark300,
382
- Ws as ColorWarningDark400,
383
- Ls as ColorWarningDark50,
384
- Ns as ColorWarningDark500,
385
- Es as ColorWarningDark600,
386
- Us as ColorWarningDark700,
387
- zs as ColorWarningDark800,
388
- Hs as ColorWarningDark900,
389
- Os as ColorWarningDark950,
390
- Vp as FontFamilyMono,
391
- $p as FontFamilySans,
392
- av as FontLineHeightNormal,
393
- lv as FontLineHeightRelaxed,
394
- tv as FontLineHeightTight,
395
- Qp as FontSize2xl,
396
- Yp as FontSize3xl,
397
- Zp as FontSize4xl,
398
- sv as FontSize5xl,
399
- Xp as FontSizeBase,
400
- jp as FontSizeLg,
401
- Kp as FontSizeSm,
402
- Jp as FontSizeXl,
403
- qp as FontSizeXs,
404
- rv as FontWeightBold,
405
- ev as FontWeightLight,
406
- cv as FontWeightMedium,
407
- ov as FontWeightNormal,
408
- nv as FontWeightSemibold,
409
- z as Icon,
410
- ap as IconsCommerceShop,
411
- lp as IconsCommerceTicket,
412
- ip as IconsCommerceTicketAlt,
413
- dp as IconsCommerceTicketUse,
414
- gp as IconsCommerceWallet,
415
- pp as IconsCommerceWalletAlt,
416
- bg as IconsFeedbackBrokenHeart,
417
- Bg as IconsFeedbackStar,
418
- Lg as IconsFilesFile,
419
- wg as IconsFilesFileDock,
420
- Rg as IconsFilesFileDockAdd,
421
- Mg as IconsFilesFileDockSearch,
422
- Wg as IconsFilesFolderFile,
423
- Ng as IconsFilesFolderFileAlt,
424
- Ic as IconsGeneral11,
425
- fc as IconsGeneral3dBox,
426
- mc as IconsGeneralAddRound,
427
- uc as IconsGeneralAddRoundDuotone,
428
- Cc as IconsGeneralAddRoundFill,
429
- Gc as IconsGeneralAlarm,
430
- _c as IconsGeneralAngry,
431
- hc as IconsGeneralArchiveAltBig,
432
- Sc as IconsGeneralArchiveAltSmall,
433
- kc as IconsGeneralArchiveAltSmallAdd,
434
- Ac as IconsGeneralArchiveAltSmallLock,
435
- bc as IconsGeneralArchiveAltSmallSecureLight,
436
- Bc as IconsGeneralArchiveExport,
437
- Fc as IconsGeneralArchiveImport,
438
- Tc as IconsGeneralArchiveLoad,
439
- Dc as IconsGeneralArchivePlane,
440
- xc as IconsGeneralArhive,
441
- yc as IconsGeneralArhive1,
442
- Pc as IconsGeneralArhiveAltAdd,
443
- Lc as IconsGeneralArhiveAltAddList,
444
- wc as IconsGeneralArhiveAltExport,
445
- Rc as IconsGeneralArhivesAlt,
446
- Mc as IconsGeneralAtom,
447
- Wc as IconsGeneralAtomAlt,
448
- Nc as IconsGeneralBack,
449
- Ec as IconsGeneralBag,
450
- Uc as IconsGeneralBagAlt,
451
- Oc as IconsGeneralBasket,
452
- zc as IconsGeneralBasket1,
453
- Hc as IconsGeneralBasket2,
454
- $c as IconsGeneralBasketAlt,
455
- Vc as IconsGeneralBasketAlt3,
456
- Gi as IconsGeneralBatteryFull,
457
- _i as IconsGeneralBatteryLow,
458
- qc as IconsGeneralBed,
459
- Kc as IconsGeneralBell,
460
- Xc as IconsGeneralBellPin,
461
- jc as IconsGeneralBlank,
462
- Jc as IconsGeneralBlankAlt,
463
- Qc as IconsGeneralBlood,
464
- Yc as IconsGeneralBloodAdd,
465
- Zc as IconsGeneralBloodMinus,
466
- sn as IconsGeneralBook,
467
- en as IconsGeneralBookCheck,
468
- on as IconsGeneralBookOpen,
469
- cn as IconsGeneralBookOpenAlt,
470
- nn as IconsGeneralBookmark,
471
- rn as IconsGeneralBox,
472
- tn as IconsGeneralBoxAlt,
473
- an as IconsGeneralBoxOpen,
474
- hi as IconsGeneralBoxRefreshAltRight,
475
- Si as IconsGeneralBoxRefreshRight,
476
- ln as IconsGeneralBoxes,
477
- dn as IconsGeneralBubble,
478
- gn as IconsGeneralBug,
479
- vn as IconsGeneralCake,
480
- In as IconsGeneralCalendar,
481
- fn as IconsGeneralCalendarAdd,
482
- mn as IconsGeneralCalories,
483
- un as IconsGeneralCamera,
484
- Cn as IconsGeneralCancel,
485
- Gn as IconsGeneralCancelDuotoneLine,
486
- ki as IconsGeneralCandlestick,
487
- _n as IconsGeneralCarbs,
488
- hn as IconsGeneralCenterPick,
489
- Sn as IconsGeneralCenterPickAlt,
490
- kn as IconsGeneralChart,
491
- An as IconsGeneralChartAlt,
492
- bn as IconsGeneralChartPin,
493
- Bn as IconsGeneralChat,
494
- Fn as IconsGeneralChatAlt,
495
- Tn as IconsGeneralChatAlt2,
496
- Dn as IconsGeneralChatAlt3,
497
- xn as IconsGeneralChatAltAdd,
498
- yn as IconsGeneralChatAltAdd1,
499
- Ln as IconsGeneralChatPlus,
500
- Pn as IconsGeneralChatPlus1,
501
- wn as IconsGeneralChatSearch,
502
- Rn as IconsGeneralCheckRing,
503
- Ai as IconsGeneralCheckRingRound,
504
- Mn as IconsGeneralCheckedRound,
505
- Wn as IconsGeneralChemistry,
506
- Nn as IconsGeneralChield,
507
- En as IconsGeneralChieldAlt,
508
- Un as IconsGeneralChieldCheck,
509
- bi as IconsGeneralCircleLeft,
510
- Bi as IconsGeneralCircleRight,
511
- Fi as IconsGeneralCircleRightAlt,
512
- Ti as IconsGeneralCloseRing,
513
- Di as IconsGeneralCloseRingDuotone,
514
- yi as IconsGeneralCloseRingFill,
515
- zn as IconsGeneralCloseRound,
516
- Hn as IconsGeneralCloseRoundDuotone,
517
- On as IconsGeneralCloseRoundFill,
518
- $n as IconsGeneralCloud,
519
- Vn as IconsGeneralCloudAlt,
520
- xi as IconsGeneralCocktail,
521
- qn as IconsGeneralCollapse,
522
- Pi as IconsGeneralColorPicker,
523
- Li as IconsGeneralComment,
524
- Kn as IconsGeneralCompasMini,
525
- Xn as IconsGeneralCompass,
526
- jn as IconsGeneralCompassAlt,
527
- Jn as IconsGeneralCompassNorthFill,
528
- Qn as IconsGeneralCopy,
529
- Yn as IconsGeneralCopyAlt,
530
- Zn as IconsGeneralCovert,
531
- pn as IconsGeneralCpu,
532
- sr as IconsGeneralCritical,
533
- wi as IconsGeneralDarhboard,
534
- Ri as IconsGeneralDarhboardAlt,
535
- er as IconsGeneralDataBank,
536
- or as IconsGeneralDatabase,
537
- cr as IconsGeneralDateRange,
538
- nr as IconsGeneralDateToday,
539
- Mi as IconsGeneralDelAlt,
540
- rr as IconsGeneralDesk,
541
- tr as IconsGeneralDeskAlt,
542
- Wi as IconsGeneralDesktop,
543
- ar as IconsGeneralDimond,
544
- lr as IconsGeneralDimondAlt,
545
- ir as IconsGeneralDirection,
546
- dr as IconsGeneralDirectionAlt,
547
- gr as IconsGeneralDirectionAlt2,
548
- pr as IconsGeneralDirectionAlt3,
549
- vr as IconsGeneralDna,
550
- Ir as IconsGeneralDone,
551
- fr as IconsGeneralDoneAllAltRound,
552
- mr as IconsGeneralDoneAllRound,
553
- ur as IconsGeneralDoneRingRound,
554
- Cr as IconsGeneralDoneRound,
555
- Gr as IconsGeneralDot3,
556
- Ni as IconsGeneralDoughnutChart,
557
- Ei as IconsGeneralDrink,
558
- _r as IconsGeneralEMail,
559
- Ad as IconsGeneralEuro,
560
- hr as IconsGeneralExpandLeft,
561
- Sr as IconsGeneralExpandLeftDouble,
562
- kr as IconsGeneralExpandLeftStop,
563
- Ar as IconsGeneralExpandRight,
564
- br as IconsGeneralExpandRightDouble,
565
- Br as IconsGeneralExpandRightStop,
566
- Fr as IconsGeneralExpandTopStop,
567
- Tr as IconsGeneralExport,
568
- Dr as IconsGeneralExternal,
569
- yr as IconsGeneralEye,
570
- Ui as IconsGeneralFaceId,
571
- xr as IconsGeneralFat,
572
- Pr as IconsGeneralFavorite,
573
- Lr as IconsGeneralFavorites,
574
- wr as IconsGeneralFilter,
575
- Mr as IconsGeneralFilterAlt,
576
- Rr as IconsGeneralFilterAlt1,
577
- Wr as IconsGeneralFilterBig,
578
- Nr as IconsGeneralFilterBigAlt,
579
- zr as IconsGeneralFire,
580
- Er as IconsGeneralFire1,
581
- Ur as IconsGeneralFire2,
582
- Hr as IconsGeneralFlag,
583
- Or as IconsGeneralFlagAlt,
584
- $r as IconsGeneralFlagFinish,
585
- Vr as IconsGeneralFlagFinishAlt,
586
- zi as IconsGeneralFlash,
587
- qr as IconsGeneralFlask,
588
- Kr as IconsGeneralFlaskAlt,
589
- Xr as IconsGeneralFolder,
590
- jr as IconsGeneralFolderAdd,
591
- Jr as IconsGeneralFolderAlt,
592
- Qr as IconsGeneralFolderCheck,
593
- Yr as IconsGeneralFolderCopy,
594
- Zr as IconsGeneralFolderDel,
595
- st as IconsGeneralFolderDublicate,
596
- et as IconsGeneralFolderLine,
597
- ot as IconsGeneralFolderOpen,
598
- ct as IconsGeneralFolderOpenAlt,
599
- nt as IconsGeneralFolderSearch,
600
- rt as IconsGeneralFolderSend,
601
- tt as IconsGeneralFolders,
602
- at as IconsGeneralFoldersLine,
603
- lt as IconsGeneralForm,
604
- dt as IconsGeneralFrame,
605
- it as IconsGeneralFrame11934,
606
- vt as IconsGeneralFull,
607
- gt as IconsGeneralFull1,
608
- pt as IconsGeneralFull2,
609
- mt as IconsGeneralFullAlt,
610
- ft as IconsGeneralFullAlt1,
611
- It as IconsGeneralFullScreenCorner,
612
- Ct as IconsGeneralGamepad,
613
- ut as IconsGeneralGift,
614
- Hi as IconsGeneralGiftAlt,
615
- Gt as IconsGeneralGlass,
616
- _t as IconsGeneralGlasses,
617
- Oi as IconsGeneralGlobe,
618
- ht as IconsGeneralGpsFixed,
619
- Vi as IconsGeneralHappy,
620
- $i as IconsGeneralHappy1,
621
- St as IconsGeneralHeadphonesFill,
622
- kt as IconsGeneralHhourglassMoveLight,
623
- qi as IconsGeneralHideEye,
624
- At as IconsGeneralHome,
625
- bt as IconsGeneralHorizontalSwitch,
626
- Bt as IconsGeneralHorizontalTopLeftMain,
627
- Ft as IconsGeneralHorizontalTopRightMain,
628
- Tt as IconsGeneralHourglass,
629
- Ki as IconsGeneralHumidity,
630
- Xi as IconsGeneralIceCream,
631
- ji as IconsGeneralIceCream1,
632
- yt as IconsGeneralImg,
633
- xt as IconsGeneralImgAlt,
634
- Pt as IconsGeneralImgBox,
635
- Lt as IconsGeneralImgLoadBox,
636
- wt as IconsGeneralImgOutBox,
637
- Rt as IconsGeneralImgRol,
638
- Mt as IconsGeneralImport,
639
- Wt as IconsGeneralIn,
640
- Et as IconsGeneralInfo,
641
- Nt as IconsGeneralInfo1,
642
- Ut as IconsGeneralInfoAlt,
643
- Ji as IconsGeneralInsta,
644
- Dt as IconsGeneralIto,
645
- zt as IconsGeneralKey,
646
- Ht as IconsGeneralKeyAlt,
647
- Ot as IconsGeneralKnife,
648
- $t as IconsGeneralLable,
649
- Vt as IconsGeneralLamp,
650
- qt as IconsGeneralLayers,
651
- Xt as IconsGeneralLessRoundDuotone,
652
- Kt as IconsGeneralLessScreenCorner,
653
- Qi as IconsGeneralLightning,
654
- Yi as IconsGeneralLightningAlt,
655
- Zi as IconsGeneralLightningRing,
656
- jt as IconsGeneralLine,
657
- Jt as IconsGeneralLineAlt,
658
- Qt as IconsGeneralLineIn,
659
- Yt as IconsGeneralLineInAlt,
660
- Zt as IconsGeneralLineOut,
661
- sa as IconsGeneralLineOutAlt,
662
- sd as IconsGeneralLink,
663
- od as IconsGeneralLinkAlt,
664
- ed as IconsGeneralLinkAlt1,
665
- ea as IconsGeneralLoadCircle,
666
- oa as IconsGeneralLoadCircleFill,
667
- ca as IconsGeneralLoadList,
668
- na as IconsGeneralLoadListAlt,
669
- ra as IconsGeneralLock,
670
- ta as IconsGeneralLockAlt,
671
- aa as IconsGeneralLol,
672
- la as IconsGeneralMask,
673
- ia as IconsGeneralMaterials,
674
- cd as IconsGeneralMdIcon,
675
- da as IconsGeneralMeatballsMenu,
676
- pa as IconsGeneralMenu,
677
- ga as IconsGeneralMenu1,
678
- va as IconsGeneralMessage,
679
- Ia as IconsGeneralMessageAlt,
680
- fa as IconsGeneralMessageOpen,
681
- ma as IconsGeneralMic,
682
- ua as IconsGeneralMicAlt,
683
- nd as IconsGeneralMobile,
684
- Ca as IconsGeneralMolecule,
685
- Ga as IconsGeneralMoney,
686
- _a as IconsGeneralMoon,
687
- ha as IconsGeneralMoonAlt,
688
- Sa as IconsGeneralMortarboard,
689
- ka as IconsGeneralMortarboardAlt,
690
- Aa as IconsGeneralMortarboardAlt2,
691
- ba as IconsGeneralMouse,
692
- Ba as IconsGeneralMove,
693
- Fa as IconsGeneralMoveAlt,
694
- Ta as IconsGeneralMoveObject,
695
- Da as IconsGeneralMusic,
696
- xa as IconsGeneralNavigate,
697
- Pa as IconsGeneralNesting,
698
- La as IconsGeneralNews,
699
- ya as IconsGeneralNfc,
700
- rd as IconsGeneralNotebook,
701
- td as IconsGeneralOil,
702
- wa as IconsGeneralOnButton,
703
- Ra as IconsGeneralOrange,
704
- Ma as IconsGeneralOrder,
705
- Wa as IconsGeneralOut,
706
- ad as IconsGeneralPackage,
707
- ld as IconsGeneralPackageBox,
708
- id as IconsGeneralPackageBoxAlt,
709
- dd as IconsGeneralPackageBoxClose,
710
- gd as IconsGeneralPackageCar,
711
- pd as IconsGeneralPackageFavourite,
712
- vd as IconsGeneralPackageFavouriteAlt,
713
- Id as IconsGeneralPackageSearch,
714
- Na as IconsGeneralPaper,
715
- Ea as IconsGeneralPaperAlt,
716
- fd as IconsGeneralPaperClip,
717
- Ua as IconsGeneralPass,
718
- za as IconsGeneralPassword,
719
- md as IconsGeneralPhone,
720
- ud as IconsGeneralPieChart,
721
- Cd as IconsGeneralPil,
722
- Gd as IconsGeneralPils,
723
- Oa as IconsGeneralPin,
724
- Ha as IconsGeneralPin1,
725
- $a as IconsGeneralPinAlt,
726
- Va as IconsGeneralPined,
727
- qa as IconsGeneralPipe,
728
- Ka as IconsGeneralPipette,
729
- Xa as IconsGeneralPizza,
730
- ja as IconsGeneralPointers,
731
- _d as IconsGeneralPool,
732
- Ja as IconsGeneralPressure,
733
- Qa as IconsGeneralPrint,
734
- Ya as IconsGeneralProgress,
735
- Za as IconsGeneralProtein,
736
- hd as IconsGeneralPyramidChart,
737
- sl as IconsGeneralQuestion,
738
- el as IconsGeneralRain,
739
- ol as IconsGeneralReduce,
740
- cl as IconsGeneralRefresh,
741
- nl as IconsGeneralRefresh2,
742
- tl as IconsGeneralRefundBack,
743
- rl as IconsGeneralRefundForward,
744
- al as IconsGeneralRefundRingBack,
745
- ll as IconsGeneralRefundRingForward,
746
- il as IconsGeneralRefundRingTop,
747
- dl as IconsGeneralRefundTop,
748
- gl as IconsGeneralRemove,
749
- pl as IconsGeneralReturn,
750
- vl as IconsGeneralRing,
751
- Il as IconsGeneralRingMove,
752
- fl as IconsGeneralRoad,
753
- ml as IconsGeneralRoadAlt,
754
- ul as IconsGeneralRoadFinish,
755
- Cl as IconsGeneralRofl,
756
- Gl as IconsGeneralRoll,
757
- _l as IconsGeneralRollAlt,
758
- hl as IconsGeneralRoot,
759
- Sl as IconsGeneralSad,
760
- kl as IconsGeneralSadAlt,
761
- Al as IconsGeneralSadAlt2,
762
- bl as IconsGeneralSave,
763
- Bl as IconsGeneralScan,
764
- Fl as IconsGeneralScanAlt,
765
- Tl as IconsGeneralScanAlt2,
766
- Dl as IconsGeneralSearch,
767
- yl as IconsGeneralSearchAlt,
768
- xl as IconsGeneralSend,
769
- Pl as IconsGeneralSendHor,
770
- Ll as IconsGeneralSertificate,
771
- wl as IconsGeneralServer,
772
- Rl as IconsGeneralSignInCircle,
773
- Ml as IconsGeneralSignInSqure,
774
- Wl as IconsGeneralSignOutBis,
775
- Nl as IconsGeneralSignOutCircle,
776
- El as IconsGeneralSignOutSqure,
777
- Ul as IconsGeneralSpeed,
778
- zl as IconsGeneralSpeedAlt,
779
- Hl as IconsGeneralSquare,
780
- Ol as IconsGeneralStackframe,
781
- $l as IconsGeneralStat,
782
- Vl as IconsGeneralStatus,
783
- ql as IconsGeneralStatusList,
784
- Sd as IconsGeneralStethoscope,
785
- Kl as IconsGeneralStop,
786
- Xl as IconsGeneralSubttasks,
787
- jl as IconsGeneralSubttasksAlt,
788
- kd as IconsGeneralSuitcase,
789
- Jl as IconsGeneralTable,
790
- Ql as IconsGeneralTablet,
791
- Yl as IconsGeneralTarget,
792
- si as IconsGeneralTemperature,
793
- Zl as IconsGeneralTemperature1,
794
- ei as IconsGeneralTie,
795
- oi as IconsGeneralTooth,
796
- ci as IconsGeneralTransger,
797
- ni as IconsGeneralTrash,
798
- ri as IconsGeneralTree,
799
- ti as IconsGeneralTrophy,
800
- ai as IconsGeneralTumer,
801
- li as IconsGeneralTurbine,
802
- di as IconsGeneralUnlock,
803
- ii as IconsGeneralUnlock1,
804
- gi as IconsGeneralVector,
805
- pi as IconsGeneralVerticalSwitch,
806
- vi as IconsGeneralVerticalSwitchAlt,
807
- Ii as IconsGeneralVerticalSwitchLong,
808
- fi as IconsGeneralWater,
809
- mi as IconsGeneralWaterfall,
810
- ui as IconsGeneralWinter,
811
- Ci as IconsGeneralWow,
812
- Ug as IconsLocationMap,
813
- Eg as IconsLocationMap1,
814
- zg as IconsLocationWorld,
815
- Hg as IconsLocationWorld2,
816
- Og as IconsLocationWorldAlt,
817
- $g as IconsMediaPlay,
818
- Vg as IconsMediaSound,
819
- jg as IconsMediaSoundMax,
820
- Jg as IconsMediaSoundMin,
821
- Qg as IconsMediaSoundMute,
822
- qg as IconsMediaStopAndPlay,
823
- Kg as IconsMediaVideo,
824
- Xg as IconsMediaVideoFile,
825
- Rd as IconsNavigationArhivesGroupDocks,
826
- Md as IconsNavigationArrowAltLdown,
827
- Wd as IconsNavigationArrowAltLeft,
828
- Nd as IconsNavigationArrowAltLright,
829
- Ed as IconsNavigationArrowAltLtop,
830
- Ud as IconsNavigationArrowDownLong,
831
- zd as IconsNavigationArrowLeftLong,
832
- Hd as IconsNavigationArrowRightLong,
833
- Od as IconsNavigationArrowTopLong,
834
- $d as IconsNavigationColumUp,
835
- Vd as IconsNavigationDown,
836
- qd as IconsNavigationDownload,
837
- Kd as IconsNavigationDownloadCircle,
838
- Xd as IconsNavigationDownloadCircleFill,
839
- jd as IconsNavigationExpandDown,
840
- Jd as IconsNavigationExpandDownDouble,
841
- Qd as IconsNavigationExpandDownStop,
842
- Yd as IconsNavigationExpandUp,
843
- Zd as IconsNavigationExpandUpDouble,
844
- sg as IconsNavigationFolderUp,
845
- eg as IconsNavigationFoldersGroup,
846
- og as IconsNavigationGroup,
847
- hg as IconsNavigationGroupAdd,
848
- cg as IconsNavigationGroupScan,
849
- Sg as IconsNavigationGroupShare,
850
- ng as IconsNavigationHorizontalDownLeftMain,
851
- rg as IconsNavigationHorizontalDownRightMain,
852
- tg as IconsNavigationLineUp,
853
- ag as IconsNavigationRefundDown,
854
- lg as IconsNavigationRefundRingDown,
855
- ig as IconsNavigationRegroup,
856
- dg as IconsNavigationSizeDown,
857
- gg as IconsNavigationSizeRightUp,
858
- Ig as IconsNavigationSort,
859
- fg as IconsNavigationSortArrow,
860
- mg as IconsNavigationSortDown,
861
- pg as IconsNavigationSortList,
862
- vg as IconsNavigationSortListAlt,
863
- ug as IconsNavigationSortUp,
864
- Cg as IconsNavigationSortUpAlt,
865
- kg as IconsNavigationThumbDown,
866
- Ag as IconsNavigationThumbUp,
867
- Gg as IconsNavigationUp,
868
- _g as IconsNavigationUpload,
869
- Yg as IconsSettingsSettingAltLine,
870
- Zg as IconsSettingsSettingLine,
871
- sp as IconsSettingsSettingVert,
872
- tp as IconsSettingsTableSettings,
873
- op as IconsSettingsWidget,
874
- ep as IconsSettingsWidget1,
875
- cp as IconsSettingsWidgetAdd,
876
- rp as IconsSettingsWidgetAlt,
877
- np as IconsSettingsWidgetAlt1,
878
- Fg as IconsTextCreditCard,
879
- Tg as IconsTextEdit,
880
- Dg as IconsTextEdit2,
881
- yg as IconsTextEditAlt,
882
- xg as IconsTextText,
883
- Pg as IconsTextTypo,
884
- bd as IconsTimeAlarmclock,
885
- Bd as IconsTimeClock,
886
- Fd as IconsTimeJumpTime,
887
- Td as IconsTimeTime,
888
- Dd as IconsTimeTimeAtack,
889
- yd as IconsTimeTimeDelLight,
890
- xd as IconsTimeTimeProgress,
891
- Pd as IconsTimeTimeSleep,
892
- Ld as IconsTimeWatch,
893
- wd as IconsTimeWatchAlt,
894
- up as IconsUsersUser,
895
- Cp as IconsUsersUserAdd,
896
- Gp as IconsUsersUserAddAlt,
897
- _p as IconsUsersUserAlt,
898
- hp as IconsUsersUserBox,
899
- Sp as IconsUsersUserCicrle,
900
- kp as IconsUsersUserScan,
901
- vp as IconsWeatherStorm,
902
- fp as IconsWeatherSun,
903
- Ip as IconsWeatherSun1,
904
- mp as IconsWeatherSunlight,
905
- Bp as ShadowBase,
906
- Tp as ShadowLg,
907
- Fp as ShadowMd,
908
- Ap as ShadowNone,
909
- bp as ShadowSm,
910
- Dp as ShadowXl,
911
- yp as Spacing0,
912
- xp as Spacing1,
913
- Np as Spacing10,
914
- Ep as Spacing12,
915
- Up as Spacing16,
916
- Pp as Spacing2,
917
- zp as Spacing20,
918
- Hp as Spacing24,
919
- Lp as Spacing3,
920
- Op as Spacing32,
921
- wp as Spacing4,
922
- Rp as Spacing5,
923
- Mp as Spacing6,
924
- Wp as Spacing8,
925
- iv as ThemeAssetsLogoDefault,
926
- dv as ThemeAssetsLogoSmall,
927
- pv as ThemeAssetsLogoSmallWhite,
928
- gv as ThemeAssetsLogoWhite,
929
- Qv as ThemeColorsBorderDefault,
930
- Yv as ThemeColorsBorderMuted,
931
- Zv as ThemeColorsBorderStrong,
932
- Dv as ThemeColorsBrandAccent100,
933
- yv as ThemeColorsBrandAccent200,
934
- Fv as ThemeColorsBrandAccent25,
935
- xv as ThemeColorsBrandAccent300,
936
- Pv as ThemeColorsBrandAccent400,
937
- Tv as ThemeColorsBrandAccent50,
938
- Lv as ThemeColorsBrandAccent500,
939
- fv as ThemeColorsBrandPrimary100,
940
- mv as ThemeColorsBrandPrimary200,
941
- vv as ThemeColorsBrandPrimary25,
942
- uv as ThemeColorsBrandPrimary300,
943
- Cv as ThemeColorsBrandPrimary400,
944
- Iv as ThemeColorsBrandPrimary50,
945
- Gv as ThemeColorsBrandPrimary500,
946
- Sv as ThemeColorsBrandSecondary100,
947
- kv as ThemeColorsBrandSecondary200,
948
- _v as ThemeColorsBrandSecondary25,
949
- Av as ThemeColorsBrandSecondary300,
950
- bv as ThemeColorsBrandSecondary400,
951
- hv as ThemeColorsBrandSecondary50,
952
- Bv as ThemeColorsBrandSecondary500,
953
- G0 as ThemeColorsCommonDanger200,
954
- _0 as ThemeColorsCommonDanger400,
955
- C0 as ThemeColorsCommonDanger50,
956
- h0 as ThemeColorsCommonDanger600,
957
- S0 as ThemeColorsCommonDanger800,
958
- k0 as ThemeColorsCommonDanger950,
959
- e0 as ThemeColorsCommonSlate200,
960
- o0 as ThemeColorsCommonSlate400,
961
- s0 as ThemeColorsCommonSlate50,
962
- c0 as ThemeColorsCommonSlate600,
963
- n0 as ThemeColorsCommonSlate800,
964
- r0 as ThemeColorsCommonSlate950,
965
- a0 as ThemeColorsCommonSucceed200,
966
- l0 as ThemeColorsCommonSucceed400,
967
- t0 as ThemeColorsCommonSucceed50,
968
- i0 as ThemeColorsCommonSucceed600,
969
- d0 as ThemeColorsCommonSucceed800,
970
- g0 as ThemeColorsCommonSucceed950,
971
- v0 as ThemeColorsCommonWarning200,
972
- I0 as ThemeColorsCommonWarning400,
973
- p0 as ThemeColorsCommonWarning50,
974
- f0 as ThemeColorsCommonWarning600,
975
- m0 as ThemeColorsCommonWarning800,
976
- u0 as ThemeColorsCommonWarning950,
977
- Rv as ThemeColorsPrimary100,
978
- Mv as ThemeColorsPrimary200,
979
- Wv as ThemeColorsPrimary300,
980
- Nv as ThemeColorsPrimary400,
981
- wv as ThemeColorsPrimary50,
982
- Ev as ThemeColorsPrimary500,
983
- Uv as ThemeColorsPrimary600,
984
- zv as ThemeColorsPrimary700,
985
- Hv as ThemeColorsPrimary800,
986
- Ov as ThemeColorsPrimary900,
987
- A0 as ThemeColorsStateError,
988
- b0 as ThemeColorsStateErrorBackground,
989
- B0 as ThemeColorsStateSuccess,
990
- F0 as ThemeColorsStateSuccessBackground,
991
- T0 as ThemeColorsStateWarning,
992
- D0 as ThemeColorsStateWarningBackground,
993
- $v as ThemeColorsSurfaceBackground,
994
- Vv as ThemeColorsSurfaceCard,
995
- qv as ThemeColorsSurfaceOverlay,
996
- Jv as ThemeColorsTextInverse,
997
- jv as ThemeColorsTextMuted,
998
- Kv as ThemeColorsTextPrimary,
999
- Xv as ThemeColorsTextSecondary,
1000
- E as ThemeProvider,
1001
- O as clubEmployesDark,
1002
- H as clubEmployesLight,
1003
- V as gifteoDark,
1004
- $ as gifteoLight
422
+ re as Badge,
423
+ le as Button,
424
+ ie as Icon,
425
+ ce as Logo,
426
+ ae as ThemeProvider,
427
+ J as clubEmployesDark,
428
+ Y as clubEmployesLight,
429
+ X as gifteoDark,
430
+ Q as gifteoLight,
431
+ de as useFavicon,
432
+ ne as useTheme
1005
433
  };