ode-explorer 1.4.3 → 1.4.9
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 +2063 -1988
- package/dist/version.txt +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -96,8 +96,8 @@ function _mergeNamespaces(n2, m2) {
|
|
|
96
96
|
fetch(link.href, fetchOpts);
|
|
97
97
|
}
|
|
98
98
|
})();
|
|
99
|
-
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
|
100
|
-
function getDefaultExportFromCjs(x2) {
|
|
99
|
+
var commonjsGlobal$1 = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
|
100
|
+
function getDefaultExportFromCjs$1(x2) {
|
|
101
101
|
return x2 && x2.__esModule && Object.prototype.hasOwnProperty.call(x2, "default") ? x2["default"] : x2;
|
|
102
102
|
}
|
|
103
103
|
function getAugmentedNamespace(n2) {
|
|
@@ -415,7 +415,7 @@ react_production_min.version = "18.2.0";
|
|
|
415
415
|
react.exports = react_production_min;
|
|
416
416
|
}
|
|
417
417
|
var reactExports = react.exports;
|
|
418
|
-
const React$2 = /* @__PURE__ */ getDefaultExportFromCjs(reactExports);
|
|
418
|
+
const React$2 = /* @__PURE__ */ getDefaultExportFromCjs$1(reactExports);
|
|
419
419
|
const React$3 = /* @__PURE__ */ _mergeNamespaces({
|
|
420
420
|
__proto__: null,
|
|
421
421
|
default: React$2
|
|
@@ -2993,7 +2993,7 @@ function requireBrowserPonyfill() {
|
|
|
2993
2993
|
return browserPonyfill.exports;
|
|
2994
2994
|
hasRequiredBrowserPonyfill = 1;
|
|
2995
2995
|
(function(module, exports) {
|
|
2996
|
-
var __global__ = typeof globalThis !== "undefined" && globalThis || typeof self !== "undefined" && self || typeof commonjsGlobal !== "undefined" && commonjsGlobal;
|
|
2996
|
+
var __global__ = typeof globalThis !== "undefined" && globalThis || typeof self !== "undefined" && self || typeof commonjsGlobal$1 !== "undefined" && commonjsGlobal$1;
|
|
2997
2997
|
var __globalThis__ = function() {
|
|
2998
2998
|
function F2() {
|
|
2999
2999
|
this.fetch = false;
|
|
@@ -3514,8 +3514,8 @@ function requireBrowserPonyfill() {
|
|
|
3514
3514
|
(function(module, exports) {
|
|
3515
3515
|
var fetchApi2;
|
|
3516
3516
|
if (typeof fetch === "function") {
|
|
3517
|
-
if (typeof commonjsGlobal !== "undefined" && commonjsGlobal.fetch) {
|
|
3518
|
-
fetchApi2 = commonjsGlobal.fetch;
|
|
3517
|
+
if (typeof commonjsGlobal$1 !== "undefined" && commonjsGlobal$1.fetch) {
|
|
3518
|
+
fetchApi2 = commonjsGlobal$1.fetch;
|
|
3519
3519
|
} else if (typeof window !== "undefined" && window.fetch) {
|
|
3520
3520
|
fetchApi2 = window.fetch;
|
|
3521
3521
|
} else {
|
|
@@ -3531,7 +3531,7 @@ function requireBrowserPonyfill() {
|
|
|
3531
3531
|
}
|
|
3532
3532
|
})(getFetch$1, getFetch$1.exports);
|
|
3533
3533
|
var getFetchExports = getFetch$1.exports;
|
|
3534
|
-
const getFetch = /* @__PURE__ */ getDefaultExportFromCjs(getFetchExports);
|
|
3534
|
+
const getFetch = /* @__PURE__ */ getDefaultExportFromCjs$1(getFetchExports);
|
|
3535
3535
|
const fetchNode = /* @__PURE__ */ _mergeNamespaces({
|
|
3536
3536
|
__proto__: null,
|
|
3537
3537
|
default: getFetch
|
|
@@ -4100,6 +4100,12 @@ const usePrevious = (value, ignore) => {
|
|
|
4100
4100
|
}, [value, ignore]);
|
|
4101
4101
|
return ref2.current;
|
|
4102
4102
|
};
|
|
4103
|
+
function alwaysNewT(i18n, language, namespace, keyPrefix) {
|
|
4104
|
+
return i18n.getFixedT(language, namespace, keyPrefix);
|
|
4105
|
+
}
|
|
4106
|
+
function useMemoizedT(i18n, language, namespace, keyPrefix) {
|
|
4107
|
+
return reactExports.useCallback(alwaysNewT(i18n, language, namespace, keyPrefix), [i18n, language, namespace, keyPrefix]);
|
|
4108
|
+
}
|
|
4103
4109
|
function useTranslation(ns) {
|
|
4104
4110
|
let props = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
4105
4111
|
const {
|
|
@@ -4143,9 +4149,9 @@ function useTranslation(ns) {
|
|
|
4143
4149
|
if (i18n.reportNamespaces.addUsedNamespaces)
|
|
4144
4150
|
i18n.reportNamespaces.addUsedNamespaces(namespaces);
|
|
4145
4151
|
const ready = (i18n.isInitialized || i18n.initializedStoreOnce) && namespaces.every((n2) => hasLoadedNamespace(n2, i18n, i18nOptions));
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4152
|
+
const memoGetT = useMemoizedT(i18n, props.lng || null, i18nOptions.nsMode === "fallback" ? namespaces : namespaces[0], keyPrefix);
|
|
4153
|
+
const getT = () => memoGetT;
|
|
4154
|
+
const getNewT = () => alwaysNewT(i18n, props.lng || null, i18nOptions.nsMode === "fallback" ? namespaces : namespaces[0], keyPrefix);
|
|
4149
4155
|
const [t2, setT] = reactExports.useState(getT);
|
|
4150
4156
|
let joinedNS = namespaces.join();
|
|
4151
4157
|
if (props.lng)
|
|
@@ -4162,21 +4168,21 @@ function useTranslation(ns) {
|
|
|
4162
4168
|
if (props.lng) {
|
|
4163
4169
|
loadLanguages(i18n, props.lng, namespaces, () => {
|
|
4164
4170
|
if (isMounted.current)
|
|
4165
|
-
setT(
|
|
4171
|
+
setT(getNewT);
|
|
4166
4172
|
});
|
|
4167
4173
|
} else {
|
|
4168
4174
|
loadNamespaces(i18n, namespaces, () => {
|
|
4169
4175
|
if (isMounted.current)
|
|
4170
|
-
setT(
|
|
4176
|
+
setT(getNewT);
|
|
4171
4177
|
});
|
|
4172
4178
|
}
|
|
4173
4179
|
}
|
|
4174
4180
|
if (ready && previousJoinedNS && previousJoinedNS !== joinedNS && isMounted.current) {
|
|
4175
|
-
setT(
|
|
4181
|
+
setT(getNewT);
|
|
4176
4182
|
}
|
|
4177
4183
|
function boundReset() {
|
|
4178
4184
|
if (isMounted.current)
|
|
4179
|
-
setT(
|
|
4185
|
+
setT(getNewT);
|
|
4180
4186
|
}
|
|
4181
4187
|
if (bindI18n && i18n)
|
|
4182
4188
|
i18n.on(bindI18n, boundReset);
|
|
@@ -4190,13 +4196,11 @@ function useTranslation(ns) {
|
|
|
4190
4196
|
bindI18nStore.split(" ").forEach((e2) => i18n.store.off(e2, boundReset));
|
|
4191
4197
|
};
|
|
4192
4198
|
}, [i18n, joinedNS]);
|
|
4193
|
-
const isInitial = reactExports.useRef(true);
|
|
4194
4199
|
reactExports.useEffect(() => {
|
|
4195
|
-
if (isMounted.current &&
|
|
4200
|
+
if (isMounted.current && ready) {
|
|
4196
4201
|
setT(getT);
|
|
4197
4202
|
}
|
|
4198
|
-
|
|
4199
|
-
}, [i18n, keyPrefix]);
|
|
4203
|
+
}, [i18n, keyPrefix, ready]);
|
|
4200
4204
|
const ret = [t2, i18n, ready];
|
|
4201
4205
|
ret.t = t2;
|
|
4202
4206
|
ret.i18n = i18n;
|
|
@@ -6650,1413 +6654,637 @@ function useInfiniteQuery(options, queryClient2) {
|
|
|
6650
6654
|
InfiniteQueryObserver
|
|
6651
6655
|
);
|
|
6652
6656
|
}
|
|
6653
|
-
|
|
6654
|
-
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
})
|
|
6658
|
-
|
|
6659
|
-
|
|
6660
|
-
|
|
6661
|
-
|
|
6662
|
-
|
|
6663
|
-
|
|
6664
|
-
|
|
6665
|
-
|
|
6666
|
-
|
|
6667
|
-
|
|
6668
|
-
|
|
6669
|
-
|
|
6670
|
-
|
|
6671
|
-
|
|
6672
|
-
|
|
6673
|
-
|
|
6674
|
-
|
|
6675
|
-
|
|
6676
|
-
|
|
6677
|
-
|
|
6678
|
-
|
|
6679
|
-
|
|
6680
|
-
|
|
6681
|
-
|
|
6682
|
-
|
|
6683
|
-
|
|
6684
|
-
|
|
6685
|
-
|
|
6686
|
-
|
|
6687
|
-
|
|
6688
|
-
|
|
6689
|
-
|
|
6690
|
-
|
|
6691
|
-
|
|
6692
|
-
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
6697
|
-
|
|
6698
|
-
|
|
6699
|
-
|
|
6700
|
-
|
|
6701
|
-
|
|
6702
|
-
|
|
6703
|
-
|
|
6704
|
-
|
|
6705
|
-
|
|
6706
|
-
|
|
6707
|
-
|
|
6708
|
-
|
|
6709
|
-
|
|
6710
|
-
|
|
6711
|
-
|
|
6712
|
-
|
|
6713
|
-
|
|
6714
|
-
|
|
6715
|
-
|
|
6716
|
-
|
|
6717
|
-
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
|
|
6721
|
-
|
|
6722
|
-
|
|
6723
|
-
|
|
6724
|
-
|
|
6725
|
-
|
|
6726
|
-
|
|
6727
|
-
|
|
6728
|
-
|
|
6729
|
-
|
|
6730
|
-
|
|
6731
|
-
|
|
6732
|
-
|
|
6733
|
-
|
|
6734
|
-
|
|
6735
|
-
|
|
6736
|
-
|
|
6737
|
-
|
|
6738
|
-
|
|
6739
|
-
|
|
6740
|
-
|
|
6741
|
-
|
|
6742
|
-
|
|
6743
|
-
|
|
6744
|
-
|
|
6745
|
-
|
|
6746
|
-
|
|
6747
|
-
|
|
6748
|
-
|
|
6749
|
-
|
|
6750
|
-
|
|
6657
|
+
var dayjs_min = { exports: {} };
|
|
6658
|
+
(function(module, exports) {
|
|
6659
|
+
!function(t2, e2) {
|
|
6660
|
+
module.exports = e2();
|
|
6661
|
+
}(commonjsGlobal$1, function() {
|
|
6662
|
+
var t2 = 1e3, e2 = 6e4, n2 = 36e5, r2 = "millisecond", i2 = "second", s2 = "minute", u2 = "hour", a2 = "day", o2 = "week", c6 = "month", f2 = "quarter", h2 = "year", d2 = "date", l2 = "Invalid Date", $2 = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y2 = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, M2 = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(t3) {
|
|
6663
|
+
var e3 = ["th", "st", "nd", "rd"], n3 = t3 % 100;
|
|
6664
|
+
return "[" + t3 + (e3[(n3 - 20) % 10] || e3[n3] || e3[0]) + "]";
|
|
6665
|
+
} }, m2 = function(t3, e3, n3) {
|
|
6666
|
+
var r3 = String(t3);
|
|
6667
|
+
return !r3 || r3.length >= e3 ? t3 : "" + Array(e3 + 1 - r3.length).join(n3) + t3;
|
|
6668
|
+
}, v2 = { s: m2, z: function(t3) {
|
|
6669
|
+
var e3 = -t3.utcOffset(), n3 = Math.abs(e3), r3 = Math.floor(n3 / 60), i3 = n3 % 60;
|
|
6670
|
+
return (e3 <= 0 ? "+" : "-") + m2(r3, 2, "0") + ":" + m2(i3, 2, "0");
|
|
6671
|
+
}, m: function t3(e3, n3) {
|
|
6672
|
+
if (e3.date() < n3.date())
|
|
6673
|
+
return -t3(n3, e3);
|
|
6674
|
+
var r3 = 12 * (n3.year() - e3.year()) + (n3.month() - e3.month()), i3 = e3.clone().add(r3, c6), s3 = n3 - i3 < 0, u3 = e3.clone().add(r3 + (s3 ? -1 : 1), c6);
|
|
6675
|
+
return +(-(r3 + (n3 - i3) / (s3 ? i3 - u3 : u3 - i3)) || 0);
|
|
6676
|
+
}, a: function(t3) {
|
|
6677
|
+
return t3 < 0 ? Math.ceil(t3) || 0 : Math.floor(t3);
|
|
6678
|
+
}, p: function(t3) {
|
|
6679
|
+
return { M: c6, y: h2, w: o2, d: a2, D: d2, h: u2, m: s2, s: i2, ms: r2, Q: f2 }[t3] || String(t3 || "").toLowerCase().replace(/s$/, "");
|
|
6680
|
+
}, u: function(t3) {
|
|
6681
|
+
return void 0 === t3;
|
|
6682
|
+
} }, g2 = "en", D2 = {};
|
|
6683
|
+
D2[g2] = M2;
|
|
6684
|
+
var p2 = "$isDayjsObject", S2 = function(t3) {
|
|
6685
|
+
return t3 instanceof _2 || !(!t3 || !t3[p2]);
|
|
6686
|
+
}, w2 = function t3(e3, n3, r3) {
|
|
6687
|
+
var i3;
|
|
6688
|
+
if (!e3)
|
|
6689
|
+
return g2;
|
|
6690
|
+
if ("string" == typeof e3) {
|
|
6691
|
+
var s3 = e3.toLowerCase();
|
|
6692
|
+
D2[s3] && (i3 = s3), n3 && (D2[s3] = n3, i3 = s3);
|
|
6693
|
+
var u3 = e3.split("-");
|
|
6694
|
+
if (!i3 && u3.length > 1)
|
|
6695
|
+
return t3(u3[0]);
|
|
6696
|
+
} else {
|
|
6697
|
+
var a3 = e3.name;
|
|
6698
|
+
D2[a3] = e3, i3 = a3;
|
|
6699
|
+
}
|
|
6700
|
+
return !r3 && i3 && (g2 = i3), i3 || !r3 && g2;
|
|
6701
|
+
}, O2 = function(t3, e3) {
|
|
6702
|
+
if (S2(t3))
|
|
6703
|
+
return t3.clone();
|
|
6704
|
+
var n3 = "object" == typeof e3 ? e3 : {};
|
|
6705
|
+
return n3.date = t3, n3.args = arguments, new _2(n3);
|
|
6706
|
+
}, b2 = v2;
|
|
6707
|
+
b2.l = w2, b2.i = S2, b2.w = function(t3, e3) {
|
|
6708
|
+
return O2(t3, { locale: e3.$L, utc: e3.$u, x: e3.$x, $offset: e3.$offset });
|
|
6709
|
+
};
|
|
6710
|
+
var _2 = function() {
|
|
6711
|
+
function M3(t3) {
|
|
6712
|
+
this.$L = w2(t3.locale, null, true), this.parse(t3), this.$x = this.$x || t3.x || {}, this[p2] = true;
|
|
6713
|
+
}
|
|
6714
|
+
var m3 = M3.prototype;
|
|
6715
|
+
return m3.parse = function(t3) {
|
|
6716
|
+
this.$d = function(t4) {
|
|
6717
|
+
var e3 = t4.date, n3 = t4.utc;
|
|
6718
|
+
if (null === e3)
|
|
6719
|
+
return /* @__PURE__ */ new Date(NaN);
|
|
6720
|
+
if (b2.u(e3))
|
|
6721
|
+
return /* @__PURE__ */ new Date();
|
|
6722
|
+
if (e3 instanceof Date)
|
|
6723
|
+
return new Date(e3);
|
|
6724
|
+
if ("string" == typeof e3 && !/Z$/i.test(e3)) {
|
|
6725
|
+
var r3 = e3.match($2);
|
|
6726
|
+
if (r3) {
|
|
6727
|
+
var i3 = r3[2] - 1 || 0, s3 = (r3[7] || "0").substring(0, 3);
|
|
6728
|
+
return n3 ? new Date(Date.UTC(r3[1], i3, r3[3] || 1, r3[4] || 0, r3[5] || 0, r3[6] || 0, s3)) : new Date(r3[1], i3, r3[3] || 1, r3[4] || 0, r3[5] || 0, r3[6] || 0, s3);
|
|
6729
|
+
}
|
|
6730
|
+
}
|
|
6731
|
+
return new Date(e3);
|
|
6732
|
+
}(t3), this.init();
|
|
6733
|
+
}, m3.init = function() {
|
|
6734
|
+
var t3 = this.$d;
|
|
6735
|
+
this.$y = t3.getFullYear(), this.$M = t3.getMonth(), this.$D = t3.getDate(), this.$W = t3.getDay(), this.$H = t3.getHours(), this.$m = t3.getMinutes(), this.$s = t3.getSeconds(), this.$ms = t3.getMilliseconds();
|
|
6736
|
+
}, m3.$utils = function() {
|
|
6737
|
+
return b2;
|
|
6738
|
+
}, m3.isValid = function() {
|
|
6739
|
+
return !(this.$d.toString() === l2);
|
|
6740
|
+
}, m3.isSame = function(t3, e3) {
|
|
6741
|
+
var n3 = O2(t3);
|
|
6742
|
+
return this.startOf(e3) <= n3 && n3 <= this.endOf(e3);
|
|
6743
|
+
}, m3.isAfter = function(t3, e3) {
|
|
6744
|
+
return O2(t3) < this.startOf(e3);
|
|
6745
|
+
}, m3.isBefore = function(t3, e3) {
|
|
6746
|
+
return this.endOf(e3) < O2(t3);
|
|
6747
|
+
}, m3.$g = function(t3, e3, n3) {
|
|
6748
|
+
return b2.u(t3) ? this[e3] : this.set(n3, t3);
|
|
6749
|
+
}, m3.unix = function() {
|
|
6750
|
+
return Math.floor(this.valueOf() / 1e3);
|
|
6751
|
+
}, m3.valueOf = function() {
|
|
6752
|
+
return this.$d.getTime();
|
|
6753
|
+
}, m3.startOf = function(t3, e3) {
|
|
6754
|
+
var n3 = this, r3 = !!b2.u(e3) || e3, f3 = b2.p(t3), l3 = function(t4, e4) {
|
|
6755
|
+
var i3 = b2.w(n3.$u ? Date.UTC(n3.$y, e4, t4) : new Date(n3.$y, e4, t4), n3);
|
|
6756
|
+
return r3 ? i3 : i3.endOf(a2);
|
|
6757
|
+
}, $3 = function(t4, e4) {
|
|
6758
|
+
return b2.w(n3.toDate()[t4].apply(n3.toDate("s"), (r3 ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(e4)), n3);
|
|
6759
|
+
}, y3 = this.$W, M4 = this.$M, m4 = this.$D, v3 = "set" + (this.$u ? "UTC" : "");
|
|
6760
|
+
switch (f3) {
|
|
6761
|
+
case h2:
|
|
6762
|
+
return r3 ? l3(1, 0) : l3(31, 11);
|
|
6763
|
+
case c6:
|
|
6764
|
+
return r3 ? l3(1, M4) : l3(0, M4 + 1);
|
|
6765
|
+
case o2:
|
|
6766
|
+
var g3 = this.$locale().weekStart || 0, D3 = (y3 < g3 ? y3 + 7 : y3) - g3;
|
|
6767
|
+
return l3(r3 ? m4 - D3 : m4 + (6 - D3), M4);
|
|
6768
|
+
case a2:
|
|
6769
|
+
case d2:
|
|
6770
|
+
return $3(v3 + "Hours", 0);
|
|
6771
|
+
case u2:
|
|
6772
|
+
return $3(v3 + "Minutes", 1);
|
|
6773
|
+
case s2:
|
|
6774
|
+
return $3(v3 + "Seconds", 2);
|
|
6775
|
+
case i2:
|
|
6776
|
+
return $3(v3 + "Milliseconds", 3);
|
|
6777
|
+
default:
|
|
6778
|
+
return this.clone();
|
|
6751
6779
|
}
|
|
6752
|
-
)
|
|
6753
|
-
|
|
6754
|
-
|
|
6755
|
-
{
|
|
6756
|
-
|
|
6757
|
-
|
|
6758
|
-
d
|
|
6759
|
-
|
|
6780
|
+
}, m3.endOf = function(t3) {
|
|
6781
|
+
return this.startOf(t3, false);
|
|
6782
|
+
}, m3.$set = function(t3, e3) {
|
|
6783
|
+
var n3, o3 = b2.p(t3), f3 = "set" + (this.$u ? "UTC" : ""), l3 = (n3 = {}, n3[a2] = f3 + "Date", n3[d2] = f3 + "Date", n3[c6] = f3 + "Month", n3[h2] = f3 + "FullYear", n3[u2] = f3 + "Hours", n3[s2] = f3 + "Minutes", n3[i2] = f3 + "Seconds", n3[r2] = f3 + "Milliseconds", n3)[o3], $3 = o3 === a2 ? this.$D + (e3 - this.$W) : e3;
|
|
6784
|
+
if (o3 === c6 || o3 === h2) {
|
|
6785
|
+
var y3 = this.clone().set(d2, 1);
|
|
6786
|
+
y3.$d[l3]($3), y3.init(), this.$d = y3.set(d2, Math.min(this.$D, y3.daysInMonth())).$d;
|
|
6787
|
+
} else
|
|
6788
|
+
l3 && this.$d[l3]($3);
|
|
6789
|
+
return this.init(), this;
|
|
6790
|
+
}, m3.set = function(t3, e3) {
|
|
6791
|
+
return this.clone().$set(t3, e3);
|
|
6792
|
+
}, m3.get = function(t3) {
|
|
6793
|
+
return this[b2.p(t3)]();
|
|
6794
|
+
}, m3.add = function(r3, f3) {
|
|
6795
|
+
var d3, l3 = this;
|
|
6796
|
+
r3 = Number(r3);
|
|
6797
|
+
var $3 = b2.p(f3), y3 = function(t3) {
|
|
6798
|
+
var e3 = O2(l3);
|
|
6799
|
+
return b2.w(e3.date(e3.date() + Math.round(t3 * r3)), l3);
|
|
6800
|
+
};
|
|
6801
|
+
if ($3 === c6)
|
|
6802
|
+
return this.set(c6, this.$M + r3);
|
|
6803
|
+
if ($3 === h2)
|
|
6804
|
+
return this.set(h2, this.$y + r3);
|
|
6805
|
+
if ($3 === a2)
|
|
6806
|
+
return y3(1);
|
|
6807
|
+
if ($3 === o2)
|
|
6808
|
+
return y3(7);
|
|
6809
|
+
var M4 = (d3 = {}, d3[s2] = e2, d3[u2] = n2, d3[i2] = t2, d3)[$3] || 1, m4 = this.$d.getTime() + r3 * M4;
|
|
6810
|
+
return b2.w(m4, this);
|
|
6811
|
+
}, m3.subtract = function(t3, e3) {
|
|
6812
|
+
return this.add(-1 * t3, e3);
|
|
6813
|
+
}, m3.format = function(t3) {
|
|
6814
|
+
var e3 = this, n3 = this.$locale();
|
|
6815
|
+
if (!this.isValid())
|
|
6816
|
+
return n3.invalidDate || l2;
|
|
6817
|
+
var r3 = t3 || "YYYY-MM-DDTHH:mm:ssZ", i3 = b2.z(this), s3 = this.$H, u3 = this.$m, a3 = this.$M, o3 = n3.weekdays, c7 = n3.months, f3 = n3.meridiem, h3 = function(t4, n4, i4, s4) {
|
|
6818
|
+
return t4 && (t4[n4] || t4(e3, r3)) || i4[n4].slice(0, s4);
|
|
6819
|
+
}, d3 = function(t4) {
|
|
6820
|
+
return b2.s(s3 % 12 || 12, t4, "0");
|
|
6821
|
+
}, $3 = f3 || function(t4, e4, n4) {
|
|
6822
|
+
var r4 = t4 < 12 ? "AM" : "PM";
|
|
6823
|
+
return n4 ? r4.toLowerCase() : r4;
|
|
6824
|
+
};
|
|
6825
|
+
return r3.replace(y2, function(t4, r4) {
|
|
6826
|
+
return r4 || function(t5) {
|
|
6827
|
+
switch (t5) {
|
|
6828
|
+
case "YY":
|
|
6829
|
+
return String(e3.$y).slice(-2);
|
|
6830
|
+
case "YYYY":
|
|
6831
|
+
return b2.s(e3.$y, 4, "0");
|
|
6832
|
+
case "M":
|
|
6833
|
+
return a3 + 1;
|
|
6834
|
+
case "MM":
|
|
6835
|
+
return b2.s(a3 + 1, 2, "0");
|
|
6836
|
+
case "MMM":
|
|
6837
|
+
return h3(n3.monthsShort, a3, c7, 3);
|
|
6838
|
+
case "MMMM":
|
|
6839
|
+
return h3(c7, a3);
|
|
6840
|
+
case "D":
|
|
6841
|
+
return e3.$D;
|
|
6842
|
+
case "DD":
|
|
6843
|
+
return b2.s(e3.$D, 2, "0");
|
|
6844
|
+
case "d":
|
|
6845
|
+
return String(e3.$W);
|
|
6846
|
+
case "dd":
|
|
6847
|
+
return h3(n3.weekdaysMin, e3.$W, o3, 2);
|
|
6848
|
+
case "ddd":
|
|
6849
|
+
return h3(n3.weekdaysShort, e3.$W, o3, 3);
|
|
6850
|
+
case "dddd":
|
|
6851
|
+
return o3[e3.$W];
|
|
6852
|
+
case "H":
|
|
6853
|
+
return String(s3);
|
|
6854
|
+
case "HH":
|
|
6855
|
+
return b2.s(s3, 2, "0");
|
|
6856
|
+
case "h":
|
|
6857
|
+
return d3(1);
|
|
6858
|
+
case "hh":
|
|
6859
|
+
return d3(2);
|
|
6860
|
+
case "a":
|
|
6861
|
+
return $3(s3, u3, true);
|
|
6862
|
+
case "A":
|
|
6863
|
+
return $3(s3, u3, false);
|
|
6864
|
+
case "m":
|
|
6865
|
+
return String(u3);
|
|
6866
|
+
case "mm":
|
|
6867
|
+
return b2.s(u3, 2, "0");
|
|
6868
|
+
case "s":
|
|
6869
|
+
return String(e3.$s);
|
|
6870
|
+
case "ss":
|
|
6871
|
+
return b2.s(e3.$s, 2, "0");
|
|
6872
|
+
case "SSS":
|
|
6873
|
+
return b2.s(e3.$ms, 3, "0");
|
|
6874
|
+
case "Z":
|
|
6875
|
+
return i3;
|
|
6876
|
+
}
|
|
6877
|
+
return null;
|
|
6878
|
+
}(t4) || i3.replace(":", "");
|
|
6879
|
+
});
|
|
6880
|
+
}, m3.utcOffset = function() {
|
|
6881
|
+
return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
|
|
6882
|
+
}, m3.diff = function(r3, d3, l3) {
|
|
6883
|
+
var $3, y3 = this, M4 = b2.p(d3), m4 = O2(r3), v3 = (m4.utcOffset() - this.utcOffset()) * e2, g3 = this - m4, D3 = function() {
|
|
6884
|
+
return b2.m(y3, m4);
|
|
6885
|
+
};
|
|
6886
|
+
switch (M4) {
|
|
6887
|
+
case h2:
|
|
6888
|
+
$3 = D3() / 12;
|
|
6889
|
+
break;
|
|
6890
|
+
case c6:
|
|
6891
|
+
$3 = D3();
|
|
6892
|
+
break;
|
|
6893
|
+
case f2:
|
|
6894
|
+
$3 = D3() / 3;
|
|
6895
|
+
break;
|
|
6896
|
+
case o2:
|
|
6897
|
+
$3 = (g3 - v3) / 6048e5;
|
|
6898
|
+
break;
|
|
6899
|
+
case a2:
|
|
6900
|
+
$3 = (g3 - v3) / 864e5;
|
|
6901
|
+
break;
|
|
6902
|
+
case u2:
|
|
6903
|
+
$3 = g3 / n2;
|
|
6904
|
+
break;
|
|
6905
|
+
case s2:
|
|
6906
|
+
$3 = g3 / e2;
|
|
6907
|
+
break;
|
|
6908
|
+
case i2:
|
|
6909
|
+
$3 = g3 / t2;
|
|
6910
|
+
break;
|
|
6911
|
+
default:
|
|
6912
|
+
$3 = g3;
|
|
6760
6913
|
}
|
|
6761
|
-
|
|
6762
|
-
|
|
6763
|
-
|
|
6764
|
-
|
|
6765
|
-
|
|
6766
|
-
|
|
6767
|
-
|
|
6768
|
-
|
|
6769
|
-
|
|
6770
|
-
|
|
6771
|
-
|
|
6772
|
-
|
|
6773
|
-
|
|
6774
|
-
|
|
6775
|
-
|
|
6776
|
-
|
|
6777
|
-
|
|
6778
|
-
|
|
6779
|
-
|
|
6780
|
-
|
|
6781
|
-
|
|
6782
|
-
|
|
6783
|
-
|
|
6784
|
-
|
|
6914
|
+
return l3 ? $3 : b2.a($3);
|
|
6915
|
+
}, m3.daysInMonth = function() {
|
|
6916
|
+
return this.endOf(c6).$D;
|
|
6917
|
+
}, m3.$locale = function() {
|
|
6918
|
+
return D2[this.$L];
|
|
6919
|
+
}, m3.locale = function(t3, e3) {
|
|
6920
|
+
if (!t3)
|
|
6921
|
+
return this.$L;
|
|
6922
|
+
var n3 = this.clone(), r3 = w2(t3, e3, true);
|
|
6923
|
+
return r3 && (n3.$L = r3), n3;
|
|
6924
|
+
}, m3.clone = function() {
|
|
6925
|
+
return b2.w(this.$d, this);
|
|
6926
|
+
}, m3.toDate = function() {
|
|
6927
|
+
return new Date(this.valueOf());
|
|
6928
|
+
}, m3.toJSON = function() {
|
|
6929
|
+
return this.isValid() ? this.toISOString() : null;
|
|
6930
|
+
}, m3.toISOString = function() {
|
|
6931
|
+
return this.$d.toISOString();
|
|
6932
|
+
}, m3.toString = function() {
|
|
6933
|
+
return this.$d.toUTCString();
|
|
6934
|
+
}, M3;
|
|
6935
|
+
}(), k2 = _2.prototype;
|
|
6936
|
+
return O2.prototype = k2, [["$ms", r2], ["$s", i2], ["$m", s2], ["$H", u2], ["$W", a2], ["$M", c6], ["$y", h2], ["$D", d2]].forEach(function(t3) {
|
|
6937
|
+
k2[t3[1]] = function(e3) {
|
|
6938
|
+
return this.$g(e3, t3[0], t3[1]);
|
|
6939
|
+
};
|
|
6940
|
+
}), O2.extend = function(t3, e3) {
|
|
6941
|
+
return t3.$i || (t3(e3, _2, O2), t3.$i = true), O2;
|
|
6942
|
+
}, O2.locale = w2, O2.isDayjs = S2, O2.unix = function(t3) {
|
|
6943
|
+
return O2(1e3 * t3);
|
|
6944
|
+
}, O2.en = D2[g2], O2.Ls = D2, O2.p = {}, O2;
|
|
6945
|
+
});
|
|
6946
|
+
})(dayjs_min);
|
|
6947
|
+
var dayjs_minExports = dayjs_min.exports;
|
|
6948
|
+
const dayjs = /* @__PURE__ */ getDefaultExportFromCjs$1(dayjs_minExports);
|
|
6949
|
+
var customParseFormat$1 = { exports: {} };
|
|
6950
|
+
(function(module, exports) {
|
|
6951
|
+
!function(e2, t2) {
|
|
6952
|
+
module.exports = t2();
|
|
6953
|
+
}(commonjsGlobal$1, function() {
|
|
6954
|
+
var e2 = { LTS: "h:mm:ss A", LT: "h:mm A", L: "MM/DD/YYYY", LL: "MMMM D, YYYY", LLL: "MMMM D, YYYY h:mm A", LLLL: "dddd, MMMM D, YYYY h:mm A" }, t2 = /(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|YYYY|YY?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g, n2 = /\d\d/, r2 = /\d\d?/, i2 = /\d*[^-_:/,()\s\d]+/, o2 = {}, s2 = function(e3) {
|
|
6955
|
+
return (e3 = +e3) + (e3 > 68 ? 1900 : 2e3);
|
|
6956
|
+
};
|
|
6957
|
+
var a2 = function(e3) {
|
|
6958
|
+
return function(t3) {
|
|
6959
|
+
this[e3] = +t3;
|
|
6960
|
+
};
|
|
6961
|
+
}, f2 = [/[+-]\d\d:?(\d\d)?|Z/, function(e3) {
|
|
6962
|
+
(this.zone || (this.zone = {})).offset = function(e4) {
|
|
6963
|
+
if (!e4)
|
|
6964
|
+
return 0;
|
|
6965
|
+
if ("Z" === e4)
|
|
6966
|
+
return 0;
|
|
6967
|
+
var t3 = e4.match(/([+-]|\d\d)/g), n3 = 60 * t3[1] + (+t3[2] || 0);
|
|
6968
|
+
return 0 === n3 ? 0 : "+" === t3[0] ? -n3 : n3;
|
|
6969
|
+
}(e3);
|
|
6970
|
+
}], h2 = function(e3) {
|
|
6971
|
+
var t3 = o2[e3];
|
|
6972
|
+
return t3 && (t3.indexOf ? t3 : t3.s.concat(t3.f));
|
|
6973
|
+
}, u2 = function(e3, t3) {
|
|
6974
|
+
var n3, r3 = o2.meridiem;
|
|
6975
|
+
if (r3) {
|
|
6976
|
+
for (var i3 = 1; i3 <= 24; i3 += 1)
|
|
6977
|
+
if (e3.indexOf(r3(i3, 0, t3)) > -1) {
|
|
6978
|
+
n3 = i3 > 12;
|
|
6979
|
+
break;
|
|
6980
|
+
}
|
|
6981
|
+
} else
|
|
6982
|
+
n3 = e3 === (t3 ? "pm" : "PM");
|
|
6983
|
+
return n3;
|
|
6984
|
+
}, d2 = { A: [i2, function(e3) {
|
|
6985
|
+
this.afternoon = u2(e3, false);
|
|
6986
|
+
}], a: [i2, function(e3) {
|
|
6987
|
+
this.afternoon = u2(e3, true);
|
|
6988
|
+
}], S: [/\d/, function(e3) {
|
|
6989
|
+
this.milliseconds = 100 * +e3;
|
|
6990
|
+
}], SS: [n2, function(e3) {
|
|
6991
|
+
this.milliseconds = 10 * +e3;
|
|
6992
|
+
}], SSS: [/\d{3}/, function(e3) {
|
|
6993
|
+
this.milliseconds = +e3;
|
|
6994
|
+
}], s: [r2, a2("seconds")], ss: [r2, a2("seconds")], m: [r2, a2("minutes")], mm: [r2, a2("minutes")], H: [r2, a2("hours")], h: [r2, a2("hours")], HH: [r2, a2("hours")], hh: [r2, a2("hours")], D: [r2, a2("day")], DD: [n2, a2("day")], Do: [i2, function(e3) {
|
|
6995
|
+
var t3 = o2.ordinal, n3 = e3.match(/\d+/);
|
|
6996
|
+
if (this.day = n3[0], t3)
|
|
6997
|
+
for (var r3 = 1; r3 <= 31; r3 += 1)
|
|
6998
|
+
t3(r3).replace(/\[|\]/g, "") === e3 && (this.day = r3);
|
|
6999
|
+
}], M: [r2, a2("month")], MM: [n2, a2("month")], MMM: [i2, function(e3) {
|
|
7000
|
+
var t3 = h2("months"), n3 = (h2("monthsShort") || t3.map(function(e4) {
|
|
7001
|
+
return e4.slice(0, 3);
|
|
7002
|
+
})).indexOf(e3) + 1;
|
|
7003
|
+
if (n3 < 1)
|
|
7004
|
+
throw new Error();
|
|
7005
|
+
this.month = n3 % 12 || n3;
|
|
7006
|
+
}], MMMM: [i2, function(e3) {
|
|
7007
|
+
var t3 = h2("months").indexOf(e3) + 1;
|
|
7008
|
+
if (t3 < 1)
|
|
7009
|
+
throw new Error();
|
|
7010
|
+
this.month = t3 % 12 || t3;
|
|
7011
|
+
}], Y: [/[+-]?\d+/, a2("year")], YY: [n2, function(e3) {
|
|
7012
|
+
this.year = s2(e3);
|
|
7013
|
+
}], YYYY: [/\d{4}/, a2("year")], Z: f2, ZZ: f2 };
|
|
7014
|
+
function c6(n3) {
|
|
7015
|
+
var r3, i3;
|
|
7016
|
+
r3 = n3, i3 = o2 && o2.formats;
|
|
7017
|
+
for (var s3 = (n3 = r3.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g, function(t3, n4, r4) {
|
|
7018
|
+
var o3 = r4 && r4.toUpperCase();
|
|
7019
|
+
return n4 || i3[r4] || e2[r4] || i3[o3].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g, function(e3, t4, n5) {
|
|
7020
|
+
return t4 || n5.slice(1);
|
|
7021
|
+
});
|
|
7022
|
+
})).match(t2), a3 = s3.length, f3 = 0; f3 < a3; f3 += 1) {
|
|
7023
|
+
var h3 = s3[f3], u3 = d2[h3], c7 = u3 && u3[0], l2 = u3 && u3[1];
|
|
7024
|
+
s3[f3] = l2 ? { regex: c7, parser: l2 } : h3.replace(/^\[|\]$/g, "");
|
|
7025
|
+
}
|
|
7026
|
+
return function(e3) {
|
|
7027
|
+
for (var t3 = {}, n4 = 0, r4 = 0; n4 < a3; n4 += 1) {
|
|
7028
|
+
var i4 = s3[n4];
|
|
7029
|
+
if ("string" == typeof i4)
|
|
7030
|
+
r4 += i4.length;
|
|
7031
|
+
else {
|
|
7032
|
+
var o3 = i4.regex, f4 = i4.parser, h4 = e3.slice(r4), u4 = o3.exec(h4)[0];
|
|
7033
|
+
f4.call(t3, u4), e3 = e3.replace(u4, "");
|
|
7034
|
+
}
|
|
6785
7035
|
}
|
|
6786
|
-
|
|
6787
|
-
|
|
6788
|
-
|
|
6789
|
-
|
|
6790
|
-
|
|
6791
|
-
|
|
6792
|
-
|
|
6793
|
-
}
|
|
6794
|
-
|
|
6795
|
-
|
|
6796
|
-
|
|
6797
|
-
|
|
6798
|
-
|
|
6799
|
-
|
|
6800
|
-
|
|
6801
|
-
|
|
6802
|
-
|
|
6803
|
-
|
|
6804
|
-
|
|
6805
|
-
|
|
6806
|
-
|
|
6807
|
-
|
|
6808
|
-
|
|
6809
|
-
|
|
6810
|
-
|
|
6811
|
-
|
|
6812
|
-
|
|
6813
|
-
|
|
6814
|
-
|
|
6815
|
-
|
|
6816
|
-
|
|
6817
|
-
|
|
6818
|
-
|
|
6819
|
-
|
|
6820
|
-
|
|
6821
|
-
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
|
|
6826
|
-
|
|
6827
|
-
|
|
6828
|
-
|
|
6829
|
-
|
|
6830
|
-
|
|
6831
|
-
|
|
6832
|
-
|
|
6833
|
-
|
|
6834
|
-
|
|
6835
|
-
|
|
6836
|
-
|
|
6837
|
-
|
|
6838
|
-
|
|
6839
|
-
|
|
6840
|
-
|
|
6841
|
-
|
|
6842
|
-
)
|
|
6843
|
-
|
|
6844
|
-
|
|
6845
|
-
|
|
6846
|
-
|
|
6847
|
-
|
|
6848
|
-
d
|
|
6849
|
-
|
|
6850
|
-
|
|
6851
|
-
|
|
6852
|
-
|
|
6853
|
-
|
|
6854
|
-
|
|
6855
|
-
|
|
6856
|
-
titleId,
|
|
6857
|
-
...props
|
|
6858
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
6859
|
-
"svg",
|
|
6860
|
-
{
|
|
6861
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6862
|
-
width: "24",
|
|
6863
|
-
height: "24",
|
|
6864
|
-
fill: "none",
|
|
6865
|
-
viewBox: "0 0 24 24",
|
|
6866
|
-
"aria-hidden": "true",
|
|
6867
|
-
"aria-labelledby": titleId,
|
|
6868
|
-
...props,
|
|
6869
|
-
children: [
|
|
6870
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
6871
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
6872
|
-
"path",
|
|
6873
|
-
{
|
|
6874
|
-
fill: "currentColor",
|
|
6875
|
-
fillRule: "evenodd",
|
|
6876
|
-
d: "M6.676 3c.284-.672.853-1 1.263-1h11.423c.566 0 1.438.628 1.438 1.923v13.154c0 1.056-.58 1.668-1.1 1.858V6.923C19.7 4.99 18.3 3 16.061 3zm-2.272.007C4.765 1.41 6.056 0 7.939 0h11.423C21.599 0 23 1.99 23 3.923v13.154c0 1.865-1.303 3.782-3.403 3.916C19.235 22.59 17.944 24 16.06 24H4.638C2.401 24 1 22.01 1 20.077V6.923c0-1.865 1.303-3.782 3.404-3.916M3.2 6.923C3.2 5.628 4.072 5 4.638 5h11.423c.567 0 1.439.628 1.439 1.923v13.154c0 1.295-.872 1.923-1.439 1.923H4.638c-.566 0-1.438-.628-1.438-1.923z",
|
|
6877
|
-
clipRule: "evenodd"
|
|
6878
|
-
}
|
|
6879
|
-
)
|
|
6880
|
-
]
|
|
6881
|
-
}
|
|
6882
|
-
), SvgCopy$1 = SvgCopy, SvgDelete = ({
|
|
6883
|
-
title,
|
|
6884
|
-
titleId,
|
|
6885
|
-
...props
|
|
6886
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
6887
|
-
"svg",
|
|
6888
|
-
{
|
|
6889
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6890
|
-
width: "24",
|
|
6891
|
-
height: "24",
|
|
6892
|
-
fill: "none",
|
|
6893
|
-
viewBox: "0 0 24 24",
|
|
6894
|
-
"aria-hidden": "true",
|
|
6895
|
-
"aria-labelledby": titleId,
|
|
6896
|
-
...props,
|
|
6897
|
-
children: [
|
|
6898
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
6899
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
6900
|
-
"path",
|
|
6901
|
-
{
|
|
6902
|
-
fill: "currentColor",
|
|
6903
|
-
fillRule: "evenodd",
|
|
6904
|
-
d: "M9.461 3.689a.96.96 0 0 1 .675-.28h3.819a.955.955 0 0 1 .954.955v.954H9.182v-.954c0-.254.1-.496.28-.675m7.357.675v.954h3.818a.955.955 0 0 1 0 1.91h-.954v12.408a2.864 2.864 0 0 1-2.864 2.864H7.273a2.864 2.864 0 0 1-2.864-2.864V7.227h-.954a.955.955 0 1 1 0-1.909h3.818v-.954A2.864 2.864 0 0 1 10.136 1.5h3.819a2.864 2.864 0 0 1 2.863 2.864m-10.5 2.863v12.41a.954.954 0 0 0 .955.954h9.545a.955.955 0 0 0 .955-.955V7.227zm3.818 2.864c.528 0 .955.427.955.955v5.727a.955.955 0 1 1-1.91 0v-5.727c0-.528.428-.955.955-.955m4.773 6.682v-5.727a.955.955 0 0 0-1.909 0v5.727a.955.955 0 1 0 1.91 0",
|
|
6905
|
-
clipRule: "evenodd"
|
|
6906
|
-
}
|
|
6907
|
-
)
|
|
6908
|
-
]
|
|
6909
|
-
}
|
|
6910
|
-
), SvgDelete$1 = SvgDelete, SvgEdit = ({
|
|
6911
|
-
title,
|
|
6912
|
-
titleId,
|
|
6913
|
-
...props
|
|
6914
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
6915
|
-
"svg",
|
|
6916
|
-
{
|
|
6917
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6918
|
-
width: "24",
|
|
6919
|
-
height: "24",
|
|
6920
|
-
fill: "none",
|
|
6921
|
-
viewBox: "0 0 24 24",
|
|
6922
|
-
"aria-hidden": "true",
|
|
6923
|
-
"aria-labelledby": titleId,
|
|
6924
|
-
...props,
|
|
6925
|
-
children: [
|
|
6926
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
6927
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
6928
|
-
"path",
|
|
6929
|
-
{
|
|
6930
|
-
fill: "currentColor",
|
|
6931
|
-
fillRule: "evenodd",
|
|
6932
|
-
d: "M1.879 3.879A3 3 0 0 1 4 3h7a1 1 0 1 1 0 2H4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-7a1 1 0 1 1 2 0v7a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V6a3 3 0 0 1 .879-2.121",
|
|
6933
|
-
clipRule: "evenodd"
|
|
6934
|
-
}
|
|
6935
|
-
),
|
|
6936
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
6937
|
-
"path",
|
|
6938
|
-
{
|
|
6939
|
-
fill: "currentColor",
|
|
6940
|
-
fillRule: "evenodd",
|
|
6941
|
-
d: "M20 2.879c-.297 0-.583.118-.793.328l-9.304 9.304-.529 2.115 2.115-.529 9.304-9.304A1.121 1.121 0 0 0 20 2.879m-2.207-1.086a3.121 3.121 0 0 1 4.414 4.414l-9.5 9.5a1 1 0 0 1-.464.263l-4 1a1 1 0 0 1-1.213-1.212l1-4a1 1 0 0 1 .263-.465z",
|
|
6942
|
-
clipRule: "evenodd"
|
|
6943
|
-
}
|
|
6944
|
-
)
|
|
6945
|
-
]
|
|
6946
|
-
}
|
|
6947
|
-
), SvgEdit$1 = SvgEdit, SvgError = ({
|
|
6948
|
-
title,
|
|
6949
|
-
titleId,
|
|
6950
|
-
...props
|
|
6951
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
6952
|
-
"svg",
|
|
6953
|
-
{
|
|
6954
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6955
|
-
width: "24",
|
|
6956
|
-
height: "24",
|
|
6957
|
-
fill: "none",
|
|
6958
|
-
viewBox: "0 0 24 24",
|
|
6959
|
-
"aria-hidden": "true",
|
|
6960
|
-
"aria-labelledby": titleId,
|
|
6961
|
-
...props,
|
|
6962
|
-
children: [
|
|
6963
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
6964
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
6965
|
-
"path",
|
|
6966
|
-
{
|
|
6967
|
-
fill: "currentColor",
|
|
6968
|
-
fillRule: "evenodd",
|
|
6969
|
-
d: "M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0m9-11C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1M8.293 15.707a1 1 0 0 1 0-1.414L10.586 12 8.293 9.707a1 1 0 0 1 1.414-1.414L12 10.586l2.293-2.293a1 1 0 1 1 1.414 1.414L13.414 12l2.293 2.293a1 1 0 0 1-1.414 1.414L12 13.414l-2.293 2.293a1 1 0 0 1-1.414 0",
|
|
6970
|
-
clipRule: "evenodd"
|
|
7036
|
+
return function(e4) {
|
|
7037
|
+
var t4 = e4.afternoon;
|
|
7038
|
+
if (void 0 !== t4) {
|
|
7039
|
+
var n5 = e4.hours;
|
|
7040
|
+
t4 ? n5 < 12 && (e4.hours += 12) : 12 === n5 && (e4.hours = 0), delete e4.afternoon;
|
|
7041
|
+
}
|
|
7042
|
+
}(t3), t3;
|
|
7043
|
+
};
|
|
7044
|
+
}
|
|
7045
|
+
return function(e3, t3, n3) {
|
|
7046
|
+
n3.p.customParseFormat = true, e3 && e3.parseTwoDigitYear && (s2 = e3.parseTwoDigitYear);
|
|
7047
|
+
var r3 = t3.prototype, i3 = r3.parse;
|
|
7048
|
+
r3.parse = function(e4) {
|
|
7049
|
+
var t4 = e4.date, r4 = e4.utc, s3 = e4.args;
|
|
7050
|
+
this.$u = r4;
|
|
7051
|
+
var a3 = s3[1];
|
|
7052
|
+
if ("string" == typeof a3) {
|
|
7053
|
+
var f3 = true === s3[2], h3 = true === s3[3], u3 = f3 || h3, d3 = s3[2];
|
|
7054
|
+
h3 && (d3 = s3[2]), o2 = this.$locale(), !f3 && d3 && (o2 = n3.Ls[d3]), this.$d = function(e5, t5, n4) {
|
|
7055
|
+
try {
|
|
7056
|
+
if (["x", "X"].indexOf(t5) > -1)
|
|
7057
|
+
return new Date(("X" === t5 ? 1e3 : 1) * e5);
|
|
7058
|
+
var r5 = c6(t5)(e5), i4 = r5.year, o3 = r5.month, s4 = r5.day, a4 = r5.hours, f4 = r5.minutes, h4 = r5.seconds, u4 = r5.milliseconds, d4 = r5.zone, l3 = /* @__PURE__ */ new Date(), m3 = s4 || (i4 || o3 ? 1 : l3.getDate()), M3 = i4 || l3.getFullYear(), Y2 = 0;
|
|
7059
|
+
i4 && !o3 || (Y2 = o3 > 0 ? o3 - 1 : l3.getMonth());
|
|
7060
|
+
var p2 = a4 || 0, v2 = f4 || 0, D2 = h4 || 0, g2 = u4 || 0;
|
|
7061
|
+
return d4 ? new Date(Date.UTC(M3, Y2, m3, p2, v2, D2, g2 + 60 * d4.offset * 1e3)) : n4 ? new Date(Date.UTC(M3, Y2, m3, p2, v2, D2, g2)) : new Date(M3, Y2, m3, p2, v2, D2, g2);
|
|
7062
|
+
} catch (e6) {
|
|
7063
|
+
return /* @__PURE__ */ new Date("");
|
|
7064
|
+
}
|
|
7065
|
+
}(t4, a3, r4), this.init(), d3 && true !== d3 && (this.$L = this.locale(d3).$L), u3 && t4 != this.format(a3) && (this.$d = /* @__PURE__ */ new Date("")), o2 = {};
|
|
7066
|
+
} else if (a3 instanceof Array)
|
|
7067
|
+
for (var l2 = a3.length, m2 = 1; m2 <= l2; m2 += 1) {
|
|
7068
|
+
s3[1] = a3[m2 - 1];
|
|
7069
|
+
var M2 = n3.apply(this, s3);
|
|
7070
|
+
if (M2.isValid()) {
|
|
7071
|
+
this.$d = M2.$d, this.$L = M2.$L, this.init();
|
|
7072
|
+
break;
|
|
7073
|
+
}
|
|
7074
|
+
m2 === l2 && (this.$d = /* @__PURE__ */ new Date(""));
|
|
7075
|
+
}
|
|
7076
|
+
else
|
|
7077
|
+
i3.call(this, e4);
|
|
7078
|
+
};
|
|
7079
|
+
};
|
|
7080
|
+
});
|
|
7081
|
+
})(customParseFormat$1);
|
|
7082
|
+
var customParseFormatExports = customParseFormat$1.exports;
|
|
7083
|
+
const customParseFormat = /* @__PURE__ */ getDefaultExportFromCjs$1(customParseFormatExports);
|
|
7084
|
+
var relativeTime$1 = { exports: {} };
|
|
7085
|
+
(function(module, exports) {
|
|
7086
|
+
!function(r2, e2) {
|
|
7087
|
+
module.exports = e2();
|
|
7088
|
+
}(commonjsGlobal$1, function() {
|
|
7089
|
+
return function(r2, e2, t2) {
|
|
7090
|
+
r2 = r2 || {};
|
|
7091
|
+
var n2 = e2.prototype, o2 = { future: "in %s", past: "%s ago", s: "a few seconds", m: "a minute", mm: "%d minutes", h: "an hour", hh: "%d hours", d: "a day", dd: "%d days", M: "a month", MM: "%d months", y: "a year", yy: "%d years" };
|
|
7092
|
+
function i2(r3, e3, t3, o3) {
|
|
7093
|
+
return n2.fromToBase(r3, e3, t3, o3);
|
|
7094
|
+
}
|
|
7095
|
+
t2.en.relativeTime = o2, n2.fromToBase = function(e3, n3, i3, d3, u2) {
|
|
7096
|
+
for (var f2, a2, s2, l2 = i3.$locale().relativeTime || o2, h2 = r2.thresholds || [{ l: "s", r: 44, d: "second" }, { l: "m", r: 89 }, { l: "mm", r: 44, d: "minute" }, { l: "h", r: 89 }, { l: "hh", r: 21, d: "hour" }, { l: "d", r: 35 }, { l: "dd", r: 25, d: "day" }, { l: "M", r: 45 }, { l: "MM", r: 10, d: "month" }, { l: "y", r: 17 }, { l: "yy", d: "year" }], m2 = h2.length, c6 = 0; c6 < m2; c6 += 1) {
|
|
7097
|
+
var y2 = h2[c6];
|
|
7098
|
+
y2.d && (f2 = d3 ? t2(e3).diff(i3, y2.d, true) : i3.diff(e3, y2.d, true));
|
|
7099
|
+
var p2 = (r2.rounding || Math.round)(Math.abs(f2));
|
|
7100
|
+
if (s2 = f2 > 0, p2 <= y2.r || !y2.r) {
|
|
7101
|
+
p2 <= 1 && c6 > 0 && (y2 = h2[c6 - 1]);
|
|
7102
|
+
var v2 = l2[y2.l];
|
|
7103
|
+
u2 && (p2 = u2("" + p2)), a2 = "string" == typeof v2 ? v2.replace("%d", p2) : v2(p2, n3, y2.l, s2);
|
|
7104
|
+
break;
|
|
7105
|
+
}
|
|
6971
7106
|
}
|
|
6972
|
-
|
|
6973
|
-
|
|
6974
|
-
|
|
6975
|
-
|
|
6976
|
-
|
|
6977
|
-
|
|
6978
|
-
|
|
6979
|
-
|
|
6980
|
-
|
|
6981
|
-
|
|
6982
|
-
|
|
6983
|
-
|
|
6984
|
-
|
|
6985
|
-
|
|
6986
|
-
|
|
6987
|
-
|
|
6988
|
-
|
|
6989
|
-
|
|
6990
|
-
|
|
6991
|
-
|
|
6992
|
-
|
|
6993
|
-
|
|
6994
|
-
|
|
6995
|
-
|
|
6996
|
-
|
|
6997
|
-
|
|
6998
|
-
|
|
7107
|
+
if (n3)
|
|
7108
|
+
return a2;
|
|
7109
|
+
var M2 = s2 ? l2.future : l2.past;
|
|
7110
|
+
return "function" == typeof M2 ? M2(a2) : M2.replace("%s", a2);
|
|
7111
|
+
}, n2.to = function(r3, e3) {
|
|
7112
|
+
return i2(r3, e3, this, true);
|
|
7113
|
+
}, n2.from = function(r3, e3) {
|
|
7114
|
+
return i2(r3, e3, this);
|
|
7115
|
+
};
|
|
7116
|
+
var d2 = function(r3) {
|
|
7117
|
+
return r3.$u ? t2.utc() : t2();
|
|
7118
|
+
};
|
|
7119
|
+
n2.toNow = function(r3) {
|
|
7120
|
+
return this.to(d2(this), r3);
|
|
7121
|
+
}, n2.fromNow = function(r3) {
|
|
7122
|
+
return this.from(d2(this), r3);
|
|
7123
|
+
};
|
|
7124
|
+
};
|
|
7125
|
+
});
|
|
7126
|
+
})(relativeTime$1);
|
|
7127
|
+
var relativeTimeExports = relativeTime$1.exports;
|
|
7128
|
+
const relativeTime = /* @__PURE__ */ getDefaultExportFromCjs$1(relativeTimeExports);
|
|
7129
|
+
var de$2 = { exports: {} };
|
|
7130
|
+
(function(module, exports) {
|
|
7131
|
+
!function(e2, n2) {
|
|
7132
|
+
module.exports = n2(dayjs_minExports);
|
|
7133
|
+
}(commonjsGlobal$1, function(e2) {
|
|
7134
|
+
function n2(e3) {
|
|
7135
|
+
return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
|
|
7136
|
+
}
|
|
7137
|
+
var t2 = n2(e2), a2 = { s: "ein paar Sekunden", m: ["eine Minute", "einer Minute"], mm: "%d Minuten", h: ["eine Stunde", "einer Stunde"], hh: "%d Stunden", d: ["ein Tag", "einem Tag"], dd: ["%d Tage", "%d Tagen"], M: ["ein Monat", "einem Monat"], MM: ["%d Monate", "%d Monaten"], y: ["ein Jahr", "einem Jahr"], yy: ["%d Jahre", "%d Jahren"] };
|
|
7138
|
+
function i2(e3, n3, t3) {
|
|
7139
|
+
var i3 = a2[t3];
|
|
7140
|
+
return Array.isArray(i3) && (i3 = i3[n3 ? 0 : 1]), i3.replace("%d", e3);
|
|
7141
|
+
}
|
|
7142
|
+
var r2 = { name: "de", weekdays: "Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"), weekdaysShort: "So._Mo._Di._Mi._Do._Fr._Sa.".split("_"), weekdaysMin: "So_Mo_Di_Mi_Do_Fr_Sa".split("_"), months: "Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"), monthsShort: "Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sept._Okt._Nov._Dez.".split("_"), ordinal: function(e3) {
|
|
7143
|
+
return e3 + ".";
|
|
7144
|
+
}, weekStart: 1, yearStart: 4, formats: { LTS: "HH:mm:ss", LT: "HH:mm", L: "DD.MM.YYYY", LL: "D. MMMM YYYY", LLL: "D. MMMM YYYY HH:mm", LLLL: "dddd, D. MMMM YYYY HH:mm" }, relativeTime: { future: "in %s", past: "vor %s", s: i2, m: i2, mm: i2, h: i2, hh: i2, d: i2, dd: i2, M: i2, MM: i2, y: i2, yy: i2 } };
|
|
7145
|
+
return t2.default.locale(r2, null, true), r2;
|
|
7146
|
+
});
|
|
7147
|
+
})(de$2);
|
|
7148
|
+
var es = { exports: {} };
|
|
7149
|
+
(function(module, exports) {
|
|
7150
|
+
!function(e2, o2) {
|
|
7151
|
+
module.exports = o2(dayjs_minExports);
|
|
7152
|
+
}(commonjsGlobal$1, function(e2) {
|
|
7153
|
+
function o2(e3) {
|
|
7154
|
+
return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
|
|
7155
|
+
}
|
|
7156
|
+
var s2 = o2(e2), d2 = { name: "es", monthsShort: "ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"), weekdays: "domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"), weekdaysShort: "dom._lun._mar._mié._jue._vie._sáb.".split("_"), weekdaysMin: "do_lu_ma_mi_ju_vi_sá".split("_"), months: "enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"), weekStart: 1, formats: { LT: "H:mm", LTS: "H:mm:ss", L: "DD/MM/YYYY", LL: "D [de] MMMM [de] YYYY", LLL: "D [de] MMMM [de] YYYY H:mm", LLLL: "dddd, D [de] MMMM [de] YYYY H:mm" }, relativeTime: { future: "en %s", past: "hace %s", s: "unos segundos", m: "un minuto", mm: "%d minutos", h: "una hora", hh: "%d horas", d: "un día", dd: "%d días", M: "un mes", MM: "%d meses", y: "un año", yy: "%d años" }, ordinal: function(e3) {
|
|
7157
|
+
return e3 + "º";
|
|
7158
|
+
} };
|
|
7159
|
+
return s2.default.locale(d2, null, true), d2;
|
|
7160
|
+
});
|
|
7161
|
+
})(es);
|
|
7162
|
+
var fr = { exports: {} };
|
|
7163
|
+
(function(module, exports) {
|
|
7164
|
+
!function(e2, n2) {
|
|
7165
|
+
module.exports = n2(dayjs_minExports);
|
|
7166
|
+
}(commonjsGlobal$1, function(e2) {
|
|
7167
|
+
function n2(e3) {
|
|
7168
|
+
return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
|
|
7169
|
+
}
|
|
7170
|
+
var t2 = n2(e2), i2 = { name: "fr", weekdays: "dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"), weekdaysShort: "dim._lun._mar._mer._jeu._ven._sam.".split("_"), weekdaysMin: "di_lu_ma_me_je_ve_sa".split("_"), months: "janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"), monthsShort: "janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"), weekStart: 1, yearStart: 4, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD/MM/YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY HH:mm", LLLL: "dddd D MMMM YYYY HH:mm" }, relativeTime: { future: "dans %s", past: "il y a %s", s: "quelques secondes", m: "une minute", mm: "%d minutes", h: "une heure", hh: "%d heures", d: "un jour", dd: "%d jours", M: "un mois", MM: "%d mois", y: "un an", yy: "%d ans" }, ordinal: function(e3) {
|
|
7171
|
+
return "" + e3 + (1 === e3 ? "er" : "");
|
|
7172
|
+
} };
|
|
7173
|
+
return t2.default.locale(i2, null, true), i2;
|
|
7174
|
+
});
|
|
7175
|
+
})(fr);
|
|
7176
|
+
var it = { exports: {} };
|
|
7177
|
+
(function(module, exports) {
|
|
7178
|
+
!function(e2, o2) {
|
|
7179
|
+
module.exports = o2(dayjs_minExports);
|
|
7180
|
+
}(commonjsGlobal$1, function(e2) {
|
|
7181
|
+
function o2(e3) {
|
|
7182
|
+
return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
|
|
7183
|
+
}
|
|
7184
|
+
var t2 = o2(e2), n2 = { name: "it", weekdays: "domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"), weekdaysShort: "dom_lun_mar_mer_gio_ven_sab".split("_"), weekdaysMin: "do_lu_ma_me_gi_ve_sa".split("_"), months: "gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"), weekStart: 1, monthsShort: "gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"), formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD/MM/YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY HH:mm", LLLL: "dddd D MMMM YYYY HH:mm" }, relativeTime: { future: "tra %s", past: "%s fa", s: "qualche secondo", m: "un minuto", mm: "%d minuti", h: "un' ora", hh: "%d ore", d: "un giorno", dd: "%d giorni", M: "un mese", MM: "%d mesi", y: "un anno", yy: "%d anni" }, ordinal: function(e3) {
|
|
7185
|
+
return e3 + "º";
|
|
7186
|
+
} };
|
|
7187
|
+
return t2.default.locale(n2, null, true), n2;
|
|
7188
|
+
});
|
|
7189
|
+
})(it);
|
|
7190
|
+
var pt = { exports: {} };
|
|
7191
|
+
(function(module, exports) {
|
|
7192
|
+
!function(e2, a2) {
|
|
7193
|
+
module.exports = a2(dayjs_minExports);
|
|
7194
|
+
}(commonjsGlobal$1, function(e2) {
|
|
7195
|
+
function a2(e3) {
|
|
7196
|
+
return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
|
|
7197
|
+
}
|
|
7198
|
+
var o2 = a2(e2), t2 = { name: "pt", weekdays: "domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"), weekdaysShort: "dom_seg_ter_qua_qui_sex_sab".split("_"), weekdaysMin: "Do_2ª_3ª_4ª_5ª_6ª_Sa".split("_"), months: "janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"), monthsShort: "jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"), ordinal: function(e3) {
|
|
7199
|
+
return e3 + "º";
|
|
7200
|
+
}, weekStart: 1, yearStart: 4, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD/MM/YYYY", LL: "D [de] MMMM [de] YYYY", LLL: "D [de] MMMM [de] YYYY [às] HH:mm", LLLL: "dddd, D [de] MMMM [de] YYYY [às] HH:mm" }, relativeTime: { future: "em %s", past: "há %s", s: "alguns segundos", m: "um minuto", mm: "%d minutos", h: "uma hora", hh: "%d horas", d: "um dia", dd: "%d dias", M: "um mês", MM: "%d meses", y: "um ano", yy: "%d anos" } };
|
|
7201
|
+
return o2.default.locale(t2, null, true), t2;
|
|
7202
|
+
});
|
|
7203
|
+
})(pt);
|
|
7204
|
+
var uaParser = { exports: {} };
|
|
7205
|
+
(function(module, exports) {
|
|
7206
|
+
(function(window2, undefined$12) {
|
|
7207
|
+
var LIBVERSION = "1.0.36", EMPTY = "", UNKNOWN = "?", FUNC_TYPE = "function", UNDEF_TYPE = "undefined", OBJ_TYPE = "object", STR_TYPE = "string", MAJOR = "major", MODEL = "model", NAME2 = "name", TYPE2 = "type", VENDOR = "vendor", VERSION = "version", ARCHITECTURE = "architecture", CONSOLE = "console", MOBILE = "mobile", TABLET = "tablet", SMARTTV = "smarttv", WEARABLE = "wearable", EMBEDDED = "embedded", UA_MAX_LENGTH = 350;
|
|
7208
|
+
var AMAZON = "Amazon", APPLE = "Apple", ASUS = "ASUS", BLACKBERRY = "BlackBerry", BROWSER = "Browser", CHROME = "Chrome", EDGE = "Edge", FIREFOX = "Firefox", GOOGLE = "Google", HUAWEI = "Huawei", LG = "LG", MICROSOFT = "Microsoft", MOTOROLA = "Motorola", OPERA = "Opera", SAMSUNG = "Samsung", SHARP = "Sharp", SONY = "Sony", XIAOMI = "Xiaomi", ZEBRA = "Zebra", FACEBOOK = "Facebook", CHROMIUM_OS = "Chromium OS", MAC_OS = "Mac OS";
|
|
7209
|
+
var extend2 = function(regexes2, extensions2) {
|
|
7210
|
+
var mergedRegexes = {};
|
|
7211
|
+
for (var i2 in regexes2) {
|
|
7212
|
+
if (extensions2[i2] && extensions2[i2].length % 2 === 0) {
|
|
7213
|
+
mergedRegexes[i2] = extensions2[i2].concat(regexes2[i2]);
|
|
7214
|
+
} else {
|
|
7215
|
+
mergedRegexes[i2] = regexes2[i2];
|
|
6999
7216
|
}
|
|
7000
|
-
|
|
7001
|
-
|
|
7002
|
-
|
|
7003
|
-
|
|
7004
|
-
|
|
7005
|
-
|
|
7006
|
-
|
|
7007
|
-
|
|
7008
|
-
|
|
7009
|
-
|
|
7010
|
-
|
|
7011
|
-
|
|
7012
|
-
|
|
7013
|
-
|
|
7014
|
-
|
|
7015
|
-
|
|
7016
|
-
|
|
7017
|
-
|
|
7018
|
-
|
|
7019
|
-
|
|
7020
|
-
|
|
7021
|
-
|
|
7022
|
-
|
|
7023
|
-
|
|
7024
|
-
|
|
7025
|
-
|
|
7026
|
-
|
|
7217
|
+
}
|
|
7218
|
+
return mergedRegexes;
|
|
7219
|
+
}, enumerize = function(arr2) {
|
|
7220
|
+
var enums = {};
|
|
7221
|
+
for (var i2 = 0; i2 < arr2.length; i2++) {
|
|
7222
|
+
enums[arr2[i2].toUpperCase()] = arr2[i2];
|
|
7223
|
+
}
|
|
7224
|
+
return enums;
|
|
7225
|
+
}, has2 = function(str1, str2) {
|
|
7226
|
+
return typeof str1 === STR_TYPE ? lowerize(str2).indexOf(lowerize(str1)) !== -1 : false;
|
|
7227
|
+
}, lowerize = function(str) {
|
|
7228
|
+
return str.toLowerCase();
|
|
7229
|
+
}, majorize = function(version) {
|
|
7230
|
+
return typeof version === STR_TYPE ? version.replace(/[^\d\.]/g, EMPTY).split(".")[0] : undefined$12;
|
|
7231
|
+
}, trim2 = function(str, len) {
|
|
7232
|
+
if (typeof str === STR_TYPE) {
|
|
7233
|
+
str = str.replace(/^\s\s*/, EMPTY);
|
|
7234
|
+
return typeof len === UNDEF_TYPE ? str : str.substring(0, UA_MAX_LENGTH);
|
|
7235
|
+
}
|
|
7236
|
+
};
|
|
7237
|
+
var rgxMapper = function(ua2, arrays) {
|
|
7238
|
+
var i2 = 0, j2, k2, p2, q2, matches, match;
|
|
7239
|
+
while (i2 < arrays.length && !matches) {
|
|
7240
|
+
var regex = arrays[i2], props = arrays[i2 + 1];
|
|
7241
|
+
j2 = k2 = 0;
|
|
7242
|
+
while (j2 < regex.length && !matches) {
|
|
7243
|
+
if (!regex[j2]) {
|
|
7244
|
+
break;
|
|
7245
|
+
}
|
|
7246
|
+
matches = regex[j2++].exec(ua2);
|
|
7247
|
+
if (!!matches) {
|
|
7248
|
+
for (p2 = 0; p2 < props.length; p2++) {
|
|
7249
|
+
match = matches[++k2];
|
|
7250
|
+
q2 = props[p2];
|
|
7251
|
+
if (typeof q2 === OBJ_TYPE && q2.length > 0) {
|
|
7252
|
+
if (q2.length === 2) {
|
|
7253
|
+
if (typeof q2[1] == FUNC_TYPE) {
|
|
7254
|
+
this[q2[0]] = q2[1].call(this, match);
|
|
7255
|
+
} else {
|
|
7256
|
+
this[q2[0]] = q2[1];
|
|
7257
|
+
}
|
|
7258
|
+
} else if (q2.length === 3) {
|
|
7259
|
+
if (typeof q2[1] === FUNC_TYPE && !(q2[1].exec && q2[1].test)) {
|
|
7260
|
+
this[q2[0]] = match ? q2[1].call(this, match, q2[2]) : undefined$12;
|
|
7261
|
+
} else {
|
|
7262
|
+
this[q2[0]] = match ? match.replace(q2[1], q2[2]) : undefined$12;
|
|
7263
|
+
}
|
|
7264
|
+
} else if (q2.length === 4) {
|
|
7265
|
+
this[q2[0]] = match ? q2[3].call(this, match.replace(q2[1], q2[2])) : undefined$12;
|
|
7266
|
+
}
|
|
7267
|
+
} else {
|
|
7268
|
+
this[q2] = match ? match : undefined$12;
|
|
7269
|
+
}
|
|
7270
|
+
}
|
|
7271
|
+
}
|
|
7027
7272
|
}
|
|
7028
|
-
|
|
7029
|
-
|
|
7030
|
-
|
|
7031
|
-
|
|
7032
|
-
|
|
7033
|
-
|
|
7034
|
-
|
|
7035
|
-
|
|
7036
|
-
|
|
7037
|
-
|
|
7038
|
-
|
|
7039
|
-
|
|
7040
|
-
height: "24",
|
|
7041
|
-
fill: "none",
|
|
7042
|
-
viewBox: "0 0 24 24",
|
|
7043
|
-
"aria-hidden": "true",
|
|
7044
|
-
"aria-labelledby": titleId,
|
|
7045
|
-
...props,
|
|
7046
|
-
children: [
|
|
7047
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7048
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7049
|
-
"path",
|
|
7050
|
-
{
|
|
7051
|
-
fill: "currentColor",
|
|
7052
|
-
fillRule: "evenodd",
|
|
7053
|
-
d: "M3.057 5.5A.057.057 0 0 0 3 5.557v13.03h18V7.875h-8.697a1 1 0 0 1-1-1c0-.759-.615-1.374-1.374-1.374zM1 5.557C1 4.42 1.92 3.5 3.057 3.5h6.872c1.515 0 2.797.999 3.223 2.374H21a2 2 0 0 1 2 2v10.714a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2z",
|
|
7054
|
-
clipRule: "evenodd"
|
|
7273
|
+
i2 += 2;
|
|
7274
|
+
}
|
|
7275
|
+
}, strMapper = function(str, map2) {
|
|
7276
|
+
for (var i2 in map2) {
|
|
7277
|
+
if (typeof map2[i2] === OBJ_TYPE && map2[i2].length > 0) {
|
|
7278
|
+
for (var j2 = 0; j2 < map2[i2].length; j2++) {
|
|
7279
|
+
if (has2(map2[i2][j2], str)) {
|
|
7280
|
+
return i2 === UNKNOWN ? undefined$12 : i2;
|
|
7281
|
+
}
|
|
7282
|
+
}
|
|
7283
|
+
} else if (has2(map2[i2], str)) {
|
|
7284
|
+
return i2 === UNKNOWN ? undefined$12 : i2;
|
|
7055
7285
|
}
|
|
7056
|
-
)
|
|
7057
|
-
]
|
|
7058
|
-
}
|
|
7059
|
-
), SvgFolder$1 = SvgFolder, SvgGlobe = ({
|
|
7060
|
-
title,
|
|
7061
|
-
titleId,
|
|
7062
|
-
...props
|
|
7063
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
7064
|
-
"svg",
|
|
7065
|
-
{
|
|
7066
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7067
|
-
width: "24",
|
|
7068
|
-
height: "24",
|
|
7069
|
-
fill: "none",
|
|
7070
|
-
viewBox: "0 0 24 24",
|
|
7071
|
-
"aria-hidden": "true",
|
|
7072
|
-
"aria-labelledby": titleId,
|
|
7073
|
-
...props,
|
|
7074
|
-
children: [
|
|
7075
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7076
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7077
|
-
"path",
|
|
7078
|
-
{
|
|
7079
|
-
fill: "currentColor",
|
|
7080
|
-
fillRule: "evenodd",
|
|
7081
|
-
d: "M9.726 3.29A9.01 9.01 0 0 0 3.055 11H7.05a16.3 16.3 0 0 1 2.676-7.71m4.548 0A16.3 16.3 0 0 1 16.95 11h3.995a9.01 9.01 0 0 0-6.67-7.71m.668 7.71A14.3 14.3 0 0 0 12 3.55 14.3 14.3 0 0 0 9.058 11zm-5.884 2h5.884A14.3 14.3 0 0 1 12 20.45 14.3 14.3 0 0 1 9.058 13M7.05 13H3.055a9.01 9.01 0 0 0 6.67 7.71A16.3 16.3 0 0 1 7.05 13m7.224 7.71A16.3 16.3 0 0 0 16.95 13h3.995a9.01 9.01 0 0 1-6.67 7.71M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11",
|
|
7082
|
-
clipRule: "evenodd"
|
|
7083
|
-
}
|
|
7084
|
-
)
|
|
7085
|
-
]
|
|
7086
|
-
}
|
|
7087
|
-
), SvgGlobe$1 = SvgGlobe, SvgInfoCircle = ({
|
|
7088
|
-
title,
|
|
7089
|
-
titleId,
|
|
7090
|
-
...props
|
|
7091
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
7092
|
-
"svg",
|
|
7093
|
-
{
|
|
7094
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7095
|
-
width: "24",
|
|
7096
|
-
height: "24",
|
|
7097
|
-
fill: "none",
|
|
7098
|
-
viewBox: "0 0 24 24",
|
|
7099
|
-
"aria-hidden": "true",
|
|
7100
|
-
"aria-labelledby": titleId,
|
|
7101
|
-
...props,
|
|
7102
|
-
children: [
|
|
7103
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7104
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7105
|
-
"path",
|
|
7106
|
-
{
|
|
7107
|
-
fill: "currentColor",
|
|
7108
|
-
fillRule: "evenodd",
|
|
7109
|
-
d: "M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12",
|
|
7110
|
-
clipRule: "evenodd"
|
|
7111
|
-
}
|
|
7112
|
-
),
|
|
7113
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7114
|
-
"path",
|
|
7115
|
-
{
|
|
7116
|
-
fill: "currentColor",
|
|
7117
|
-
fillRule: "evenodd",
|
|
7118
|
-
d: "M12.01 17a1 1 0 0 1-1-1v-5a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1M13.01 7.5a1 1 0 0 1-1 1H12a1 1 0 1 1 0-2h.01a1 1 0 0 1 1 1",
|
|
7119
|
-
clipRule: "evenodd"
|
|
7120
|
-
}
|
|
7121
|
-
)
|
|
7122
|
-
]
|
|
7123
|
-
}
|
|
7124
|
-
), SvgInfoCircle$1 = SvgInfoCircle, SvgLoader = ({
|
|
7125
|
-
title,
|
|
7126
|
-
titleId,
|
|
7127
|
-
...props
|
|
7128
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
7129
|
-
"svg",
|
|
7130
|
-
{
|
|
7131
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7132
|
-
width: "24",
|
|
7133
|
-
height: "24",
|
|
7134
|
-
fill: "none",
|
|
7135
|
-
viewBox: "0 0 24 24",
|
|
7136
|
-
"aria-hidden": "true",
|
|
7137
|
-
"aria-labelledby": titleId,
|
|
7138
|
-
...props,
|
|
7139
|
-
children: [
|
|
7140
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7141
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7142
|
-
"path",
|
|
7143
|
-
{
|
|
7144
|
-
fill: "currentColor",
|
|
7145
|
-
fillRule: "evenodd",
|
|
7146
|
-
d: "M16.672 5.558a7.96 7.96 0 0 0-9.841.397 7.95 7.95 0 0 0-1.908 9.66 7.964 7.964 0 0 0 8.949 4.12A7.95 7.95 0 0 0 19.962 12a1.021 1.021 0 1 1 2.045 0A9.994 9.994 0 0 1 7.83 21.083a10.01 10.01 0 0 1-5.634-11.027 9.99 9.99 0 0 1 9.402-8.048c2.244-.09 4.453.577 6.272 1.895a1.022 1.022 0 1 1-1.198 1.655",
|
|
7147
|
-
clipRule: "evenodd"
|
|
7148
|
-
}
|
|
7149
|
-
)
|
|
7150
|
-
]
|
|
7151
|
-
}
|
|
7152
|
-
), SvgLoader$1 = SvgLoader, SvgOptions = ({
|
|
7153
|
-
title,
|
|
7154
|
-
titleId,
|
|
7155
|
-
...props
|
|
7156
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
7157
|
-
"svg",
|
|
7158
|
-
{
|
|
7159
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7160
|
-
width: "24",
|
|
7161
|
-
height: "24",
|
|
7162
|
-
fill: "none",
|
|
7163
|
-
viewBox: "0 0 24 24",
|
|
7164
|
-
"aria-hidden": "true",
|
|
7165
|
-
"aria-labelledby": titleId,
|
|
7166
|
-
...props,
|
|
7167
|
-
children: [
|
|
7168
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7169
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("circle", { cx: 12, cy: 4, r: 2.5, fill: "currentColor" }),
|
|
7170
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("circle", { cx: 12, cy: 12, r: 2.5, fill: "currentColor" }),
|
|
7171
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("circle", { cx: 12, cy: 20, r: 2.5, fill: "currentColor" })
|
|
7172
|
-
]
|
|
7173
|
-
}
|
|
7174
|
-
), SvgOptions$1 = SvgOptions, SvgPlus = ({
|
|
7175
|
-
title,
|
|
7176
|
-
titleId,
|
|
7177
|
-
...props
|
|
7178
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
7179
|
-
"svg",
|
|
7180
|
-
{
|
|
7181
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7182
|
-
width: "24",
|
|
7183
|
-
height: "24",
|
|
7184
|
-
fill: "none",
|
|
7185
|
-
viewBox: "0 0 24 24",
|
|
7186
|
-
"aria-hidden": "true",
|
|
7187
|
-
"aria-labelledby": titleId,
|
|
7188
|
-
...props,
|
|
7189
|
-
children: [
|
|
7190
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7191
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7192
|
-
"path",
|
|
7193
|
-
{
|
|
7194
|
-
fill: "currentColor",
|
|
7195
|
-
fillRule: "evenodd",
|
|
7196
|
-
d: "M13 4a1 1 0 1 0-2 0v7H4a1 1 0 1 0 0 2h7v7a1 1 0 1 0 2 0v-7h7a1 1 0 1 0 0-2h-7z",
|
|
7197
|
-
clipRule: "evenodd"
|
|
7198
|
-
}
|
|
7199
|
-
)
|
|
7200
|
-
]
|
|
7201
|
-
}
|
|
7202
|
-
), SvgPlus$1 = SvgPlus, SvgRafterDown = ({
|
|
7203
|
-
title,
|
|
7204
|
-
titleId,
|
|
7205
|
-
...props
|
|
7206
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
7207
|
-
"svg",
|
|
7208
|
-
{
|
|
7209
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7210
|
-
width: "24",
|
|
7211
|
-
height: "24",
|
|
7212
|
-
fill: "none",
|
|
7213
|
-
viewBox: "0 0 24 24",
|
|
7214
|
-
"aria-hidden": "true",
|
|
7215
|
-
"aria-labelledby": titleId,
|
|
7216
|
-
...props,
|
|
7217
|
-
children: [
|
|
7218
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7219
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7220
|
-
"path",
|
|
7221
|
-
{
|
|
7222
|
-
fill: "currentColor",
|
|
7223
|
-
fillRule: "evenodd",
|
|
7224
|
-
d: "M4.012 7.871a1.5 1.5 0 0 1 2.117.141L12 14.722l5.871-6.71a1.5 1.5 0 1 1 2.258 1.976l-7 8a1.5 1.5 0 0 1-2.258 0l-7-8a1.5 1.5 0 0 1 .141-2.117",
|
|
7225
|
-
clipRule: "evenodd"
|
|
7226
|
-
}
|
|
7227
|
-
)
|
|
7228
|
-
]
|
|
7229
|
-
}
|
|
7230
|
-
), SvgRafterDown$1 = SvgRafterDown, SvgRafterRight = ({
|
|
7231
|
-
title,
|
|
7232
|
-
titleId,
|
|
7233
|
-
...props
|
|
7234
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
7235
|
-
"svg",
|
|
7236
|
-
{
|
|
7237
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7238
|
-
width: "24",
|
|
7239
|
-
height: "24",
|
|
7240
|
-
fill: "none",
|
|
7241
|
-
viewBox: "0 0 24 24",
|
|
7242
|
-
"aria-hidden": "true",
|
|
7243
|
-
"aria-labelledby": titleId,
|
|
7244
|
-
...props,
|
|
7245
|
-
children: [
|
|
7246
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7247
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7248
|
-
"path",
|
|
7249
|
-
{
|
|
7250
|
-
fill: "currentColor",
|
|
7251
|
-
fillRule: "evenodd",
|
|
7252
|
-
d: "M7.871 19.988a1.5 1.5 0 0 1 .141-2.117L14.722 12l-6.71-5.871A1.5 1.5 0 0 1 9.988 3.87l8 7a1.5 1.5 0 0 1 0 2.258l-8 7a1.5 1.5 0 0 1-2.117-.141",
|
|
7253
|
-
clipRule: "evenodd"
|
|
7254
|
-
}
|
|
7255
|
-
)
|
|
7256
|
-
]
|
|
7257
|
-
}
|
|
7258
|
-
), SvgRafterRight$1 = SvgRafterRight, SvgRafterUp = ({
|
|
7259
|
-
title,
|
|
7260
|
-
titleId,
|
|
7261
|
-
...props
|
|
7262
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
7263
|
-
"svg",
|
|
7264
|
-
{
|
|
7265
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7266
|
-
width: "24",
|
|
7267
|
-
height: "24",
|
|
7268
|
-
fill: "none",
|
|
7269
|
-
viewBox: "0 0 24 24",
|
|
7270
|
-
"aria-hidden": "true",
|
|
7271
|
-
"aria-labelledby": titleId,
|
|
7272
|
-
...props,
|
|
7273
|
-
children: [
|
|
7274
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7275
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7276
|
-
"path",
|
|
7277
|
-
{
|
|
7278
|
-
fill: "currentColor",
|
|
7279
|
-
fillRule: "evenodd",
|
|
7280
|
-
d: "M19.988 17.129a1.5 1.5 0 0 1-2.117-.141L12 10.278l-5.871 6.71a1.5 1.5 0 0 1-2.258-1.976l7-8a1.5 1.5 0 0 1 2.258 0l7 8a1.5 1.5 0 0 1-.141 2.117",
|
|
7281
|
-
clipRule: "evenodd"
|
|
7282
|
-
}
|
|
7283
|
-
)
|
|
7284
|
-
]
|
|
7285
|
-
}
|
|
7286
|
-
), SvgRafterUp$1 = SvgRafterUp, SvgSave = ({
|
|
7287
|
-
title,
|
|
7288
|
-
titleId,
|
|
7289
|
-
...props
|
|
7290
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
7291
|
-
"svg",
|
|
7292
|
-
{
|
|
7293
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7294
|
-
width: "24",
|
|
7295
|
-
height: "24",
|
|
7296
|
-
fill: "none",
|
|
7297
|
-
viewBox: "0 0 24 24",
|
|
7298
|
-
"aria-hidden": "true",
|
|
7299
|
-
"aria-labelledby": titleId,
|
|
7300
|
-
...props,
|
|
7301
|
-
children: [
|
|
7302
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7303
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7304
|
-
"path",
|
|
7305
|
-
{
|
|
7306
|
-
fill: "currentColor",
|
|
7307
|
-
fillRule: "evenodd",
|
|
7308
|
-
d: "M5 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h1v-7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7h1a1 1 0 0 0 1-1V8.414L15.586 4H8v3h7a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1V4zm2-2H5a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V8a1 1 0 0 0-.293-.707l-5-5A1 1 0 0 0 16 2zm1 12v6h8v-6z",
|
|
7309
|
-
clipRule: "evenodd"
|
|
7310
|
-
}
|
|
7311
|
-
)
|
|
7312
|
-
]
|
|
7313
|
-
}
|
|
7314
|
-
), SvgSave$1 = SvgSave, SvgSearch$2 = ({
|
|
7315
|
-
title,
|
|
7316
|
-
titleId,
|
|
7317
|
-
...props
|
|
7318
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
7319
|
-
"svg",
|
|
7320
|
-
{
|
|
7321
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7322
|
-
fill: "none",
|
|
7323
|
-
viewBox: "0 0 24 24",
|
|
7324
|
-
width: "24",
|
|
7325
|
-
height: "24",
|
|
7326
|
-
"aria-hidden": "true",
|
|
7327
|
-
"aria-labelledby": titleId,
|
|
7328
|
-
...props,
|
|
7329
|
-
children: [
|
|
7330
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7331
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7332
|
-
"path",
|
|
7333
|
-
{
|
|
7334
|
-
fill: "currentColor",
|
|
7335
|
-
fillRule: "evenodd",
|
|
7336
|
-
d: "M4 10a7 7 0 1 1 14 0 7 7 0 0 1-14 0m7-9a9 9 0 1 0 5.7 15.96 1 1 0 0 0 .24.4l4.35 4.35a1 1 0 0 0 1.42-1.42l-4.35-4.35a1 1 0 0 0-.4-.24A9 9 0 0 0 11 1",
|
|
7337
|
-
clipRule: "evenodd"
|
|
7338
|
-
}
|
|
7339
|
-
)
|
|
7340
|
-
]
|
|
7341
|
-
}
|
|
7342
|
-
), SvgSearch$1$1 = SvgSearch$2, SvgSuccessOutline = ({
|
|
7343
|
-
title,
|
|
7344
|
-
titleId,
|
|
7345
|
-
...props
|
|
7346
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
7347
|
-
"svg",
|
|
7348
|
-
{
|
|
7349
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7350
|
-
width: "24",
|
|
7351
|
-
height: "24",
|
|
7352
|
-
fill: "none",
|
|
7353
|
-
viewBox: "0 0 24 24",
|
|
7354
|
-
"aria-hidden": "true",
|
|
7355
|
-
"aria-labelledby": titleId,
|
|
7356
|
-
...props,
|
|
7357
|
-
children: [
|
|
7358
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7359
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7360
|
-
"path",
|
|
7361
|
-
{
|
|
7362
|
-
fill: "currentColor",
|
|
7363
|
-
fillRule: "evenodd",
|
|
7364
|
-
d: "M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12",
|
|
7365
|
-
clipRule: "evenodd"
|
|
7366
|
-
}
|
|
7367
|
-
),
|
|
7368
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7369
|
-
"path",
|
|
7370
|
-
{
|
|
7371
|
-
fill: "currentColor",
|
|
7372
|
-
fillRule: "evenodd",
|
|
7373
|
-
d: "M16.59 8.192a1 1 0 0 1 .218 1.397l-4.375 6a1 1 0 0 1-1.584.042L8.224 12.4a1 1 0 0 1 1.552-1.261l1.806 2.223 3.61-4.951a1 1 0 0 1 1.397-.219",
|
|
7374
|
-
clipRule: "evenodd"
|
|
7375
|
-
}
|
|
7376
|
-
)
|
|
7377
|
-
]
|
|
7378
|
-
}
|
|
7379
|
-
), SvgSuccessOutline$1 = SvgSuccessOutline, SvgUsers = ({
|
|
7380
|
-
title,
|
|
7381
|
-
titleId,
|
|
7382
|
-
...props
|
|
7383
|
-
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
7384
|
-
"svg",
|
|
7385
|
-
{
|
|
7386
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
7387
|
-
width: "24",
|
|
7388
|
-
height: "24",
|
|
7389
|
-
fill: "none",
|
|
7390
|
-
viewBox: "0 0 24 24",
|
|
7391
|
-
"aria-hidden": "true",
|
|
7392
|
-
"aria-labelledby": titleId,
|
|
7393
|
-
...props,
|
|
7394
|
-
children: [
|
|
7395
|
-
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
7396
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
7397
|
-
"g",
|
|
7398
|
-
{
|
|
7399
|
-
fill: "currentColor",
|
|
7400
|
-
fillRule: "evenodd",
|
|
7401
|
-
clipPath: "url(#users_svg__a)",
|
|
7402
|
-
clipRule: "evenodd",
|
|
7403
|
-
children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M19.055 12.803a1 1 0 0 1 1.272-.618c1.128.39 2.061 1.247 2.7 2.351.64 1.106.972 2.435.973 3.782V21a1 1 0 1 1-2 0v-2.681c0-1.03-.258-2.009-.704-2.782-.448-.773-1.034-1.258-1.623-1.462a1 1 0 0 1-.618-1.272M15.187 1.384a1 1 0 0 1 1.036-.962 5.129 5.129 0 0 1 2.11 9.71 1 1 0 1 1-.896-1.788 3.129 3.129 0 0 0-1.288-5.924 1 1 0 0 1-.962-1.036M1.505 15.694C2.481 14.622 3.825 14 5.25 14h8.5c1.424 0 2.769.622 3.744 1.694.974 1.068 1.506 2.498 1.506 3.973V22a1 1 0 1 1-2 0v-2.333c0-1.001-.363-1.945-.984-2.627-.618-.679-1.436-1.04-2.266-1.04h-8.5c-.83 0-1.648.361-2.266 1.04-.621.682-.984 1.626-.984 2.627V22a1 1 0 1 1-2 0v-2.333c0-1.475.533-2.905 1.505-3.974M9.5 3a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7M4 6.5a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0" })
|
|
7404
|
-
}
|
|
7405
|
-
),
|
|
7406
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("defs", { children: /* @__PURE__ */ jsxRuntimeExports.jsx("clipPath", { id: "users_svg__a", children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
7407
|
-
]
|
|
7408
|
-
}
|
|
7409
|
-
), SvgUsers$1 = SvgUsers;
|
|
7410
|
-
function r$3(e2) {
|
|
7411
|
-
var t2, f2, n2 = "";
|
|
7412
|
-
if ("string" == typeof e2 || "number" == typeof e2)
|
|
7413
|
-
n2 += e2;
|
|
7414
|
-
else if ("object" == typeof e2)
|
|
7415
|
-
if (Array.isArray(e2)) {
|
|
7416
|
-
var o2 = e2.length;
|
|
7417
|
-
for (t2 = 0; t2 < o2; t2++)
|
|
7418
|
-
e2[t2] && (f2 = r$3(e2[t2])) && (n2 && (n2 += " "), n2 += f2);
|
|
7419
|
-
} else
|
|
7420
|
-
for (f2 in e2)
|
|
7421
|
-
e2[f2] && (n2 && (n2 += " "), n2 += f2);
|
|
7422
|
-
return n2;
|
|
7423
|
-
}
|
|
7424
|
-
function clsx() {
|
|
7425
|
-
for (var e2, t2, f2 = 0, n2 = "", o2 = arguments.length; f2 < o2; f2++)
|
|
7426
|
-
(e2 = arguments[f2]) && (t2 = r$3(e2)) && (n2 && (n2 += " "), n2 += t2);
|
|
7427
|
-
return n2;
|
|
7428
|
-
}
|
|
7429
|
-
var dayjs_min = { exports: {} };
|
|
7430
|
-
(function(module, exports) {
|
|
7431
|
-
!function(t2, e2) {
|
|
7432
|
-
module.exports = e2();
|
|
7433
|
-
}(commonjsGlobal, function() {
|
|
7434
|
-
var t2 = 1e3, e2 = 6e4, n2 = 36e5, r2 = "millisecond", i2 = "second", s2 = "minute", u2 = "hour", a2 = "day", o2 = "week", c6 = "month", f2 = "quarter", h2 = "year", d2 = "date", l2 = "Invalid Date", $2 = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y2 = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, M2 = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(t3) {
|
|
7435
|
-
var e3 = ["th", "st", "nd", "rd"], n3 = t3 % 100;
|
|
7436
|
-
return "[" + t3 + (e3[(n3 - 20) % 10] || e3[n3] || e3[0]) + "]";
|
|
7437
|
-
} }, m2 = function(t3, e3, n3) {
|
|
7438
|
-
var r3 = String(t3);
|
|
7439
|
-
return !r3 || r3.length >= e3 ? t3 : "" + Array(e3 + 1 - r3.length).join(n3) + t3;
|
|
7440
|
-
}, v2 = { s: m2, z: function(t3) {
|
|
7441
|
-
var e3 = -t3.utcOffset(), n3 = Math.abs(e3), r3 = Math.floor(n3 / 60), i3 = n3 % 60;
|
|
7442
|
-
return (e3 <= 0 ? "+" : "-") + m2(r3, 2, "0") + ":" + m2(i3, 2, "0");
|
|
7443
|
-
}, m: function t3(e3, n3) {
|
|
7444
|
-
if (e3.date() < n3.date())
|
|
7445
|
-
return -t3(n3, e3);
|
|
7446
|
-
var r3 = 12 * (n3.year() - e3.year()) + (n3.month() - e3.month()), i3 = e3.clone().add(r3, c6), s3 = n3 - i3 < 0, u3 = e3.clone().add(r3 + (s3 ? -1 : 1), c6);
|
|
7447
|
-
return +(-(r3 + (n3 - i3) / (s3 ? i3 - u3 : u3 - i3)) || 0);
|
|
7448
|
-
}, a: function(t3) {
|
|
7449
|
-
return t3 < 0 ? Math.ceil(t3) || 0 : Math.floor(t3);
|
|
7450
|
-
}, p: function(t3) {
|
|
7451
|
-
return { M: c6, y: h2, w: o2, d: a2, D: d2, h: u2, m: s2, s: i2, ms: r2, Q: f2 }[t3] || String(t3 || "").toLowerCase().replace(/s$/, "");
|
|
7452
|
-
}, u: function(t3) {
|
|
7453
|
-
return void 0 === t3;
|
|
7454
|
-
} }, g2 = "en", D2 = {};
|
|
7455
|
-
D2[g2] = M2;
|
|
7456
|
-
var p2 = "$isDayjsObject", S2 = function(t3) {
|
|
7457
|
-
return t3 instanceof _2 || !(!t3 || !t3[p2]);
|
|
7458
|
-
}, w2 = function t3(e3, n3, r3) {
|
|
7459
|
-
var i3;
|
|
7460
|
-
if (!e3)
|
|
7461
|
-
return g2;
|
|
7462
|
-
if ("string" == typeof e3) {
|
|
7463
|
-
var s3 = e3.toLowerCase();
|
|
7464
|
-
D2[s3] && (i3 = s3), n3 && (D2[s3] = n3, i3 = s3);
|
|
7465
|
-
var u3 = e3.split("-");
|
|
7466
|
-
if (!i3 && u3.length > 1)
|
|
7467
|
-
return t3(u3[0]);
|
|
7468
|
-
} else {
|
|
7469
|
-
var a3 = e3.name;
|
|
7470
|
-
D2[a3] = e3, i3 = a3;
|
|
7471
7286
|
}
|
|
7472
|
-
return
|
|
7473
|
-
}, O2 = function(t3, e3) {
|
|
7474
|
-
if (S2(t3))
|
|
7475
|
-
return t3.clone();
|
|
7476
|
-
var n3 = "object" == typeof e3 ? e3 : {};
|
|
7477
|
-
return n3.date = t3, n3.args = arguments, new _2(n3);
|
|
7478
|
-
}, b2 = v2;
|
|
7479
|
-
b2.l = w2, b2.i = S2, b2.w = function(t3, e3) {
|
|
7480
|
-
return O2(t3, { locale: e3.$L, utc: e3.$u, x: e3.$x, $offset: e3.$offset });
|
|
7481
|
-
};
|
|
7482
|
-
var _2 = function() {
|
|
7483
|
-
function M3(t3) {
|
|
7484
|
-
this.$L = w2(t3.locale, null, true), this.parse(t3), this.$x = this.$x || t3.x || {}, this[p2] = true;
|
|
7485
|
-
}
|
|
7486
|
-
var m3 = M3.prototype;
|
|
7487
|
-
return m3.parse = function(t3) {
|
|
7488
|
-
this.$d = function(t4) {
|
|
7489
|
-
var e3 = t4.date, n3 = t4.utc;
|
|
7490
|
-
if (null === e3)
|
|
7491
|
-
return /* @__PURE__ */ new Date(NaN);
|
|
7492
|
-
if (b2.u(e3))
|
|
7493
|
-
return /* @__PURE__ */ new Date();
|
|
7494
|
-
if (e3 instanceof Date)
|
|
7495
|
-
return new Date(e3);
|
|
7496
|
-
if ("string" == typeof e3 && !/Z$/i.test(e3)) {
|
|
7497
|
-
var r3 = e3.match($2);
|
|
7498
|
-
if (r3) {
|
|
7499
|
-
var i3 = r3[2] - 1 || 0, s3 = (r3[7] || "0").substring(0, 3);
|
|
7500
|
-
return n3 ? new Date(Date.UTC(r3[1], i3, r3[3] || 1, r3[4] || 0, r3[5] || 0, r3[6] || 0, s3)) : new Date(r3[1], i3, r3[3] || 1, r3[4] || 0, r3[5] || 0, r3[6] || 0, s3);
|
|
7501
|
-
}
|
|
7502
|
-
}
|
|
7503
|
-
return new Date(e3);
|
|
7504
|
-
}(t3), this.init();
|
|
7505
|
-
}, m3.init = function() {
|
|
7506
|
-
var t3 = this.$d;
|
|
7507
|
-
this.$y = t3.getFullYear(), this.$M = t3.getMonth(), this.$D = t3.getDate(), this.$W = t3.getDay(), this.$H = t3.getHours(), this.$m = t3.getMinutes(), this.$s = t3.getSeconds(), this.$ms = t3.getMilliseconds();
|
|
7508
|
-
}, m3.$utils = function() {
|
|
7509
|
-
return b2;
|
|
7510
|
-
}, m3.isValid = function() {
|
|
7511
|
-
return !(this.$d.toString() === l2);
|
|
7512
|
-
}, m3.isSame = function(t3, e3) {
|
|
7513
|
-
var n3 = O2(t3);
|
|
7514
|
-
return this.startOf(e3) <= n3 && n3 <= this.endOf(e3);
|
|
7515
|
-
}, m3.isAfter = function(t3, e3) {
|
|
7516
|
-
return O2(t3) < this.startOf(e3);
|
|
7517
|
-
}, m3.isBefore = function(t3, e3) {
|
|
7518
|
-
return this.endOf(e3) < O2(t3);
|
|
7519
|
-
}, m3.$g = function(t3, e3, n3) {
|
|
7520
|
-
return b2.u(t3) ? this[e3] : this.set(n3, t3);
|
|
7521
|
-
}, m3.unix = function() {
|
|
7522
|
-
return Math.floor(this.valueOf() / 1e3);
|
|
7523
|
-
}, m3.valueOf = function() {
|
|
7524
|
-
return this.$d.getTime();
|
|
7525
|
-
}, m3.startOf = function(t3, e3) {
|
|
7526
|
-
var n3 = this, r3 = !!b2.u(e3) || e3, f3 = b2.p(t3), l3 = function(t4, e4) {
|
|
7527
|
-
var i3 = b2.w(n3.$u ? Date.UTC(n3.$y, e4, t4) : new Date(n3.$y, e4, t4), n3);
|
|
7528
|
-
return r3 ? i3 : i3.endOf(a2);
|
|
7529
|
-
}, $3 = function(t4, e4) {
|
|
7530
|
-
return b2.w(n3.toDate()[t4].apply(n3.toDate("s"), (r3 ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(e4)), n3);
|
|
7531
|
-
}, y3 = this.$W, M4 = this.$M, m4 = this.$D, v3 = "set" + (this.$u ? "UTC" : "");
|
|
7532
|
-
switch (f3) {
|
|
7533
|
-
case h2:
|
|
7534
|
-
return r3 ? l3(1, 0) : l3(31, 11);
|
|
7535
|
-
case c6:
|
|
7536
|
-
return r3 ? l3(1, M4) : l3(0, M4 + 1);
|
|
7537
|
-
case o2:
|
|
7538
|
-
var g3 = this.$locale().weekStart || 0, D3 = (y3 < g3 ? y3 + 7 : y3) - g3;
|
|
7539
|
-
return l3(r3 ? m4 - D3 : m4 + (6 - D3), M4);
|
|
7540
|
-
case a2:
|
|
7541
|
-
case d2:
|
|
7542
|
-
return $3(v3 + "Hours", 0);
|
|
7543
|
-
case u2:
|
|
7544
|
-
return $3(v3 + "Minutes", 1);
|
|
7545
|
-
case s2:
|
|
7546
|
-
return $3(v3 + "Seconds", 2);
|
|
7547
|
-
case i2:
|
|
7548
|
-
return $3(v3 + "Milliseconds", 3);
|
|
7549
|
-
default:
|
|
7550
|
-
return this.clone();
|
|
7551
|
-
}
|
|
7552
|
-
}, m3.endOf = function(t3) {
|
|
7553
|
-
return this.startOf(t3, false);
|
|
7554
|
-
}, m3.$set = function(t3, e3) {
|
|
7555
|
-
var n3, o3 = b2.p(t3), f3 = "set" + (this.$u ? "UTC" : ""), l3 = (n3 = {}, n3[a2] = f3 + "Date", n3[d2] = f3 + "Date", n3[c6] = f3 + "Month", n3[h2] = f3 + "FullYear", n3[u2] = f3 + "Hours", n3[s2] = f3 + "Minutes", n3[i2] = f3 + "Seconds", n3[r2] = f3 + "Milliseconds", n3)[o3], $3 = o3 === a2 ? this.$D + (e3 - this.$W) : e3;
|
|
7556
|
-
if (o3 === c6 || o3 === h2) {
|
|
7557
|
-
var y3 = this.clone().set(d2, 1);
|
|
7558
|
-
y3.$d[l3]($3), y3.init(), this.$d = y3.set(d2, Math.min(this.$D, y3.daysInMonth())).$d;
|
|
7559
|
-
} else
|
|
7560
|
-
l3 && this.$d[l3]($3);
|
|
7561
|
-
return this.init(), this;
|
|
7562
|
-
}, m3.set = function(t3, e3) {
|
|
7563
|
-
return this.clone().$set(t3, e3);
|
|
7564
|
-
}, m3.get = function(t3) {
|
|
7565
|
-
return this[b2.p(t3)]();
|
|
7566
|
-
}, m3.add = function(r3, f3) {
|
|
7567
|
-
var d3, l3 = this;
|
|
7568
|
-
r3 = Number(r3);
|
|
7569
|
-
var $3 = b2.p(f3), y3 = function(t3) {
|
|
7570
|
-
var e3 = O2(l3);
|
|
7571
|
-
return b2.w(e3.date(e3.date() + Math.round(t3 * r3)), l3);
|
|
7572
|
-
};
|
|
7573
|
-
if ($3 === c6)
|
|
7574
|
-
return this.set(c6, this.$M + r3);
|
|
7575
|
-
if ($3 === h2)
|
|
7576
|
-
return this.set(h2, this.$y + r3);
|
|
7577
|
-
if ($3 === a2)
|
|
7578
|
-
return y3(1);
|
|
7579
|
-
if ($3 === o2)
|
|
7580
|
-
return y3(7);
|
|
7581
|
-
var M4 = (d3 = {}, d3[s2] = e2, d3[u2] = n2, d3[i2] = t2, d3)[$3] || 1, m4 = this.$d.getTime() + r3 * M4;
|
|
7582
|
-
return b2.w(m4, this);
|
|
7583
|
-
}, m3.subtract = function(t3, e3) {
|
|
7584
|
-
return this.add(-1 * t3, e3);
|
|
7585
|
-
}, m3.format = function(t3) {
|
|
7586
|
-
var e3 = this, n3 = this.$locale();
|
|
7587
|
-
if (!this.isValid())
|
|
7588
|
-
return n3.invalidDate || l2;
|
|
7589
|
-
var r3 = t3 || "YYYY-MM-DDTHH:mm:ssZ", i3 = b2.z(this), s3 = this.$H, u3 = this.$m, a3 = this.$M, o3 = n3.weekdays, c7 = n3.months, f3 = n3.meridiem, h3 = function(t4, n4, i4, s4) {
|
|
7590
|
-
return t4 && (t4[n4] || t4(e3, r3)) || i4[n4].slice(0, s4);
|
|
7591
|
-
}, d3 = function(t4) {
|
|
7592
|
-
return b2.s(s3 % 12 || 12, t4, "0");
|
|
7593
|
-
}, $3 = f3 || function(t4, e4, n4) {
|
|
7594
|
-
var r4 = t4 < 12 ? "AM" : "PM";
|
|
7595
|
-
return n4 ? r4.toLowerCase() : r4;
|
|
7596
|
-
};
|
|
7597
|
-
return r3.replace(y2, function(t4, r4) {
|
|
7598
|
-
return r4 || function(t5) {
|
|
7599
|
-
switch (t5) {
|
|
7600
|
-
case "YY":
|
|
7601
|
-
return String(e3.$y).slice(-2);
|
|
7602
|
-
case "YYYY":
|
|
7603
|
-
return b2.s(e3.$y, 4, "0");
|
|
7604
|
-
case "M":
|
|
7605
|
-
return a3 + 1;
|
|
7606
|
-
case "MM":
|
|
7607
|
-
return b2.s(a3 + 1, 2, "0");
|
|
7608
|
-
case "MMM":
|
|
7609
|
-
return h3(n3.monthsShort, a3, c7, 3);
|
|
7610
|
-
case "MMMM":
|
|
7611
|
-
return h3(c7, a3);
|
|
7612
|
-
case "D":
|
|
7613
|
-
return e3.$D;
|
|
7614
|
-
case "DD":
|
|
7615
|
-
return b2.s(e3.$D, 2, "0");
|
|
7616
|
-
case "d":
|
|
7617
|
-
return String(e3.$W);
|
|
7618
|
-
case "dd":
|
|
7619
|
-
return h3(n3.weekdaysMin, e3.$W, o3, 2);
|
|
7620
|
-
case "ddd":
|
|
7621
|
-
return h3(n3.weekdaysShort, e3.$W, o3, 3);
|
|
7622
|
-
case "dddd":
|
|
7623
|
-
return o3[e3.$W];
|
|
7624
|
-
case "H":
|
|
7625
|
-
return String(s3);
|
|
7626
|
-
case "HH":
|
|
7627
|
-
return b2.s(s3, 2, "0");
|
|
7628
|
-
case "h":
|
|
7629
|
-
return d3(1);
|
|
7630
|
-
case "hh":
|
|
7631
|
-
return d3(2);
|
|
7632
|
-
case "a":
|
|
7633
|
-
return $3(s3, u3, true);
|
|
7634
|
-
case "A":
|
|
7635
|
-
return $3(s3, u3, false);
|
|
7636
|
-
case "m":
|
|
7637
|
-
return String(u3);
|
|
7638
|
-
case "mm":
|
|
7639
|
-
return b2.s(u3, 2, "0");
|
|
7640
|
-
case "s":
|
|
7641
|
-
return String(e3.$s);
|
|
7642
|
-
case "ss":
|
|
7643
|
-
return b2.s(e3.$s, 2, "0");
|
|
7644
|
-
case "SSS":
|
|
7645
|
-
return b2.s(e3.$ms, 3, "0");
|
|
7646
|
-
case "Z":
|
|
7647
|
-
return i3;
|
|
7648
|
-
}
|
|
7649
|
-
return null;
|
|
7650
|
-
}(t4) || i3.replace(":", "");
|
|
7651
|
-
});
|
|
7652
|
-
}, m3.utcOffset = function() {
|
|
7653
|
-
return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
|
|
7654
|
-
}, m3.diff = function(r3, d3, l3) {
|
|
7655
|
-
var $3, y3 = this, M4 = b2.p(d3), m4 = O2(r3), v3 = (m4.utcOffset() - this.utcOffset()) * e2, g3 = this - m4, D3 = function() {
|
|
7656
|
-
return b2.m(y3, m4);
|
|
7657
|
-
};
|
|
7658
|
-
switch (M4) {
|
|
7659
|
-
case h2:
|
|
7660
|
-
$3 = D3() / 12;
|
|
7661
|
-
break;
|
|
7662
|
-
case c6:
|
|
7663
|
-
$3 = D3();
|
|
7664
|
-
break;
|
|
7665
|
-
case f2:
|
|
7666
|
-
$3 = D3() / 3;
|
|
7667
|
-
break;
|
|
7668
|
-
case o2:
|
|
7669
|
-
$3 = (g3 - v3) / 6048e5;
|
|
7670
|
-
break;
|
|
7671
|
-
case a2:
|
|
7672
|
-
$3 = (g3 - v3) / 864e5;
|
|
7673
|
-
break;
|
|
7674
|
-
case u2:
|
|
7675
|
-
$3 = g3 / n2;
|
|
7676
|
-
break;
|
|
7677
|
-
case s2:
|
|
7678
|
-
$3 = g3 / e2;
|
|
7679
|
-
break;
|
|
7680
|
-
case i2:
|
|
7681
|
-
$3 = g3 / t2;
|
|
7682
|
-
break;
|
|
7683
|
-
default:
|
|
7684
|
-
$3 = g3;
|
|
7685
|
-
}
|
|
7686
|
-
return l3 ? $3 : b2.a($3);
|
|
7687
|
-
}, m3.daysInMonth = function() {
|
|
7688
|
-
return this.endOf(c6).$D;
|
|
7689
|
-
}, m3.$locale = function() {
|
|
7690
|
-
return D2[this.$L];
|
|
7691
|
-
}, m3.locale = function(t3, e3) {
|
|
7692
|
-
if (!t3)
|
|
7693
|
-
return this.$L;
|
|
7694
|
-
var n3 = this.clone(), r3 = w2(t3, e3, true);
|
|
7695
|
-
return r3 && (n3.$L = r3), n3;
|
|
7696
|
-
}, m3.clone = function() {
|
|
7697
|
-
return b2.w(this.$d, this);
|
|
7698
|
-
}, m3.toDate = function() {
|
|
7699
|
-
return new Date(this.valueOf());
|
|
7700
|
-
}, m3.toJSON = function() {
|
|
7701
|
-
return this.isValid() ? this.toISOString() : null;
|
|
7702
|
-
}, m3.toISOString = function() {
|
|
7703
|
-
return this.$d.toISOString();
|
|
7704
|
-
}, m3.toString = function() {
|
|
7705
|
-
return this.$d.toUTCString();
|
|
7706
|
-
}, M3;
|
|
7707
|
-
}(), k2 = _2.prototype;
|
|
7708
|
-
return O2.prototype = k2, [["$ms", r2], ["$s", i2], ["$m", s2], ["$H", u2], ["$W", a2], ["$M", c6], ["$y", h2], ["$D", d2]].forEach(function(t3) {
|
|
7709
|
-
k2[t3[1]] = function(e3) {
|
|
7710
|
-
return this.$g(e3, t3[0], t3[1]);
|
|
7711
|
-
};
|
|
7712
|
-
}), O2.extend = function(t3, e3) {
|
|
7713
|
-
return t3.$i || (t3(e3, _2, O2), t3.$i = true), O2;
|
|
7714
|
-
}, O2.locale = w2, O2.isDayjs = S2, O2.unix = function(t3) {
|
|
7715
|
-
return O2(1e3 * t3);
|
|
7716
|
-
}, O2.en = D2[g2], O2.Ls = D2, O2.p = {}, O2;
|
|
7717
|
-
});
|
|
7718
|
-
})(dayjs_min);
|
|
7719
|
-
var dayjs_minExports = dayjs_min.exports;
|
|
7720
|
-
const dayjs = /* @__PURE__ */ getDefaultExportFromCjs(dayjs_minExports);
|
|
7721
|
-
var customParseFormat$1 = { exports: {} };
|
|
7722
|
-
(function(module, exports) {
|
|
7723
|
-
!function(e2, t2) {
|
|
7724
|
-
module.exports = t2();
|
|
7725
|
-
}(commonjsGlobal, function() {
|
|
7726
|
-
var e2 = { LTS: "h:mm:ss A", LT: "h:mm A", L: "MM/DD/YYYY", LL: "MMMM D, YYYY", LLL: "MMMM D, YYYY h:mm A", LLLL: "dddd, MMMM D, YYYY h:mm A" }, t2 = /(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|YYYY|YY?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g, n2 = /\d\d/, r2 = /\d\d?/, i2 = /\d*[^-_:/,()\s\d]+/, o2 = {}, s2 = function(e3) {
|
|
7727
|
-
return (e3 = +e3) + (e3 > 68 ? 1900 : 2e3);
|
|
7728
|
-
};
|
|
7729
|
-
var a2 = function(e3) {
|
|
7730
|
-
return function(t3) {
|
|
7731
|
-
this[e3] = +t3;
|
|
7732
|
-
};
|
|
7733
|
-
}, f2 = [/[+-]\d\d:?(\d\d)?|Z/, function(e3) {
|
|
7734
|
-
(this.zone || (this.zone = {})).offset = function(e4) {
|
|
7735
|
-
if (!e4)
|
|
7736
|
-
return 0;
|
|
7737
|
-
if ("Z" === e4)
|
|
7738
|
-
return 0;
|
|
7739
|
-
var t3 = e4.match(/([+-]|\d\d)/g), n3 = 60 * t3[1] + (+t3[2] || 0);
|
|
7740
|
-
return 0 === n3 ? 0 : "+" === t3[0] ? -n3 : n3;
|
|
7741
|
-
}(e3);
|
|
7742
|
-
}], h2 = function(e3) {
|
|
7743
|
-
var t3 = o2[e3];
|
|
7744
|
-
return t3 && (t3.indexOf ? t3 : t3.s.concat(t3.f));
|
|
7745
|
-
}, u2 = function(e3, t3) {
|
|
7746
|
-
var n3, r3 = o2.meridiem;
|
|
7747
|
-
if (r3) {
|
|
7748
|
-
for (var i3 = 1; i3 <= 24; i3 += 1)
|
|
7749
|
-
if (e3.indexOf(r3(i3, 0, t3)) > -1) {
|
|
7750
|
-
n3 = i3 > 12;
|
|
7751
|
-
break;
|
|
7752
|
-
}
|
|
7753
|
-
} else
|
|
7754
|
-
n3 = e3 === (t3 ? "pm" : "PM");
|
|
7755
|
-
return n3;
|
|
7756
|
-
}, d2 = { A: [i2, function(e3) {
|
|
7757
|
-
this.afternoon = u2(e3, false);
|
|
7758
|
-
}], a: [i2, function(e3) {
|
|
7759
|
-
this.afternoon = u2(e3, true);
|
|
7760
|
-
}], S: [/\d/, function(e3) {
|
|
7761
|
-
this.milliseconds = 100 * +e3;
|
|
7762
|
-
}], SS: [n2, function(e3) {
|
|
7763
|
-
this.milliseconds = 10 * +e3;
|
|
7764
|
-
}], SSS: [/\d{3}/, function(e3) {
|
|
7765
|
-
this.milliseconds = +e3;
|
|
7766
|
-
}], s: [r2, a2("seconds")], ss: [r2, a2("seconds")], m: [r2, a2("minutes")], mm: [r2, a2("minutes")], H: [r2, a2("hours")], h: [r2, a2("hours")], HH: [r2, a2("hours")], hh: [r2, a2("hours")], D: [r2, a2("day")], DD: [n2, a2("day")], Do: [i2, function(e3) {
|
|
7767
|
-
var t3 = o2.ordinal, n3 = e3.match(/\d+/);
|
|
7768
|
-
if (this.day = n3[0], t3)
|
|
7769
|
-
for (var r3 = 1; r3 <= 31; r3 += 1)
|
|
7770
|
-
t3(r3).replace(/\[|\]/g, "") === e3 && (this.day = r3);
|
|
7771
|
-
}], M: [r2, a2("month")], MM: [n2, a2("month")], MMM: [i2, function(e3) {
|
|
7772
|
-
var t3 = h2("months"), n3 = (h2("monthsShort") || t3.map(function(e4) {
|
|
7773
|
-
return e4.slice(0, 3);
|
|
7774
|
-
})).indexOf(e3) + 1;
|
|
7775
|
-
if (n3 < 1)
|
|
7776
|
-
throw new Error();
|
|
7777
|
-
this.month = n3 % 12 || n3;
|
|
7778
|
-
}], MMMM: [i2, function(e3) {
|
|
7779
|
-
var t3 = h2("months").indexOf(e3) + 1;
|
|
7780
|
-
if (t3 < 1)
|
|
7781
|
-
throw new Error();
|
|
7782
|
-
this.month = t3 % 12 || t3;
|
|
7783
|
-
}], Y: [/[+-]?\d+/, a2("year")], YY: [n2, function(e3) {
|
|
7784
|
-
this.year = s2(e3);
|
|
7785
|
-
}], YYYY: [/\d{4}/, a2("year")], Z: f2, ZZ: f2 };
|
|
7786
|
-
function c6(n3) {
|
|
7787
|
-
var r3, i3;
|
|
7788
|
-
r3 = n3, i3 = o2 && o2.formats;
|
|
7789
|
-
for (var s3 = (n3 = r3.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g, function(t3, n4, r4) {
|
|
7790
|
-
var o3 = r4 && r4.toUpperCase();
|
|
7791
|
-
return n4 || i3[r4] || e2[r4] || i3[o3].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g, function(e3, t4, n5) {
|
|
7792
|
-
return t4 || n5.slice(1);
|
|
7793
|
-
});
|
|
7794
|
-
})).match(t2), a3 = s3.length, f3 = 0; f3 < a3; f3 += 1) {
|
|
7795
|
-
var h3 = s3[f3], u3 = d2[h3], c7 = u3 && u3[0], l2 = u3 && u3[1];
|
|
7796
|
-
s3[f3] = l2 ? { regex: c7, parser: l2 } : h3.replace(/^\[|\]$/g, "");
|
|
7797
|
-
}
|
|
7798
|
-
return function(e3) {
|
|
7799
|
-
for (var t3 = {}, n4 = 0, r4 = 0; n4 < a3; n4 += 1) {
|
|
7800
|
-
var i4 = s3[n4];
|
|
7801
|
-
if ("string" == typeof i4)
|
|
7802
|
-
r4 += i4.length;
|
|
7803
|
-
else {
|
|
7804
|
-
var o3 = i4.regex, f4 = i4.parser, h4 = e3.slice(r4), u4 = o3.exec(h4)[0];
|
|
7805
|
-
f4.call(t3, u4), e3 = e3.replace(u4, "");
|
|
7806
|
-
}
|
|
7807
|
-
}
|
|
7808
|
-
return function(e4) {
|
|
7809
|
-
var t4 = e4.afternoon;
|
|
7810
|
-
if (void 0 !== t4) {
|
|
7811
|
-
var n5 = e4.hours;
|
|
7812
|
-
t4 ? n5 < 12 && (e4.hours += 12) : 12 === n5 && (e4.hours = 0), delete e4.afternoon;
|
|
7813
|
-
}
|
|
7814
|
-
}(t3), t3;
|
|
7815
|
-
};
|
|
7816
|
-
}
|
|
7817
|
-
return function(e3, t3, n3) {
|
|
7818
|
-
n3.p.customParseFormat = true, e3 && e3.parseTwoDigitYear && (s2 = e3.parseTwoDigitYear);
|
|
7819
|
-
var r3 = t3.prototype, i3 = r3.parse;
|
|
7820
|
-
r3.parse = function(e4) {
|
|
7821
|
-
var t4 = e4.date, r4 = e4.utc, s3 = e4.args;
|
|
7822
|
-
this.$u = r4;
|
|
7823
|
-
var a3 = s3[1];
|
|
7824
|
-
if ("string" == typeof a3) {
|
|
7825
|
-
var f3 = true === s3[2], h3 = true === s3[3], u3 = f3 || h3, d3 = s3[2];
|
|
7826
|
-
h3 && (d3 = s3[2]), o2 = this.$locale(), !f3 && d3 && (o2 = n3.Ls[d3]), this.$d = function(e5, t5, n4) {
|
|
7827
|
-
try {
|
|
7828
|
-
if (["x", "X"].indexOf(t5) > -1)
|
|
7829
|
-
return new Date(("X" === t5 ? 1e3 : 1) * e5);
|
|
7830
|
-
var r5 = c6(t5)(e5), i4 = r5.year, o3 = r5.month, s4 = r5.day, a4 = r5.hours, f4 = r5.minutes, h4 = r5.seconds, u4 = r5.milliseconds, d4 = r5.zone, l3 = /* @__PURE__ */ new Date(), m3 = s4 || (i4 || o3 ? 1 : l3.getDate()), M3 = i4 || l3.getFullYear(), Y2 = 0;
|
|
7831
|
-
i4 && !o3 || (Y2 = o3 > 0 ? o3 - 1 : l3.getMonth());
|
|
7832
|
-
var p2 = a4 || 0, v2 = f4 || 0, D2 = h4 || 0, g2 = u4 || 0;
|
|
7833
|
-
return d4 ? new Date(Date.UTC(M3, Y2, m3, p2, v2, D2, g2 + 60 * d4.offset * 1e3)) : n4 ? new Date(Date.UTC(M3, Y2, m3, p2, v2, D2, g2)) : new Date(M3, Y2, m3, p2, v2, D2, g2);
|
|
7834
|
-
} catch (e6) {
|
|
7835
|
-
return /* @__PURE__ */ new Date("");
|
|
7836
|
-
}
|
|
7837
|
-
}(t4, a3, r4), this.init(), d3 && true !== d3 && (this.$L = this.locale(d3).$L), u3 && t4 != this.format(a3) && (this.$d = /* @__PURE__ */ new Date("")), o2 = {};
|
|
7838
|
-
} else if (a3 instanceof Array)
|
|
7839
|
-
for (var l2 = a3.length, m2 = 1; m2 <= l2; m2 += 1) {
|
|
7840
|
-
s3[1] = a3[m2 - 1];
|
|
7841
|
-
var M2 = n3.apply(this, s3);
|
|
7842
|
-
if (M2.isValid()) {
|
|
7843
|
-
this.$d = M2.$d, this.$L = M2.$L, this.init();
|
|
7844
|
-
break;
|
|
7845
|
-
}
|
|
7846
|
-
m2 === l2 && (this.$d = /* @__PURE__ */ new Date(""));
|
|
7847
|
-
}
|
|
7848
|
-
else
|
|
7849
|
-
i3.call(this, e4);
|
|
7850
|
-
};
|
|
7851
|
-
};
|
|
7852
|
-
});
|
|
7853
|
-
})(customParseFormat$1);
|
|
7854
|
-
var customParseFormatExports = customParseFormat$1.exports;
|
|
7855
|
-
const customParseFormat = /* @__PURE__ */ getDefaultExportFromCjs(customParseFormatExports);
|
|
7856
|
-
var relativeTime$1 = { exports: {} };
|
|
7857
|
-
(function(module, exports) {
|
|
7858
|
-
!function(r2, e2) {
|
|
7859
|
-
module.exports = e2();
|
|
7860
|
-
}(commonjsGlobal, function() {
|
|
7861
|
-
return function(r2, e2, t2) {
|
|
7862
|
-
r2 = r2 || {};
|
|
7863
|
-
var n2 = e2.prototype, o2 = { future: "in %s", past: "%s ago", s: "a few seconds", m: "a minute", mm: "%d minutes", h: "an hour", hh: "%d hours", d: "a day", dd: "%d days", M: "a month", MM: "%d months", y: "a year", yy: "%d years" };
|
|
7864
|
-
function i2(r3, e3, t3, o3) {
|
|
7865
|
-
return n2.fromToBase(r3, e3, t3, o3);
|
|
7866
|
-
}
|
|
7867
|
-
t2.en.relativeTime = o2, n2.fromToBase = function(e3, n3, i3, d3, u2) {
|
|
7868
|
-
for (var f2, a2, s2, l2 = i3.$locale().relativeTime || o2, h2 = r2.thresholds || [{ l: "s", r: 44, d: "second" }, { l: "m", r: 89 }, { l: "mm", r: 44, d: "minute" }, { l: "h", r: 89 }, { l: "hh", r: 21, d: "hour" }, { l: "d", r: 35 }, { l: "dd", r: 25, d: "day" }, { l: "M", r: 45 }, { l: "MM", r: 10, d: "month" }, { l: "y", r: 17 }, { l: "yy", d: "year" }], m2 = h2.length, c6 = 0; c6 < m2; c6 += 1) {
|
|
7869
|
-
var y2 = h2[c6];
|
|
7870
|
-
y2.d && (f2 = d3 ? t2(e3).diff(i3, y2.d, true) : i3.diff(e3, y2.d, true));
|
|
7871
|
-
var p2 = (r2.rounding || Math.round)(Math.abs(f2));
|
|
7872
|
-
if (s2 = f2 > 0, p2 <= y2.r || !y2.r) {
|
|
7873
|
-
p2 <= 1 && c6 > 0 && (y2 = h2[c6 - 1]);
|
|
7874
|
-
var v2 = l2[y2.l];
|
|
7875
|
-
u2 && (p2 = u2("" + p2)), a2 = "string" == typeof v2 ? v2.replace("%d", p2) : v2(p2, n3, y2.l, s2);
|
|
7876
|
-
break;
|
|
7877
|
-
}
|
|
7878
|
-
}
|
|
7879
|
-
if (n3)
|
|
7880
|
-
return a2;
|
|
7881
|
-
var M2 = s2 ? l2.future : l2.past;
|
|
7882
|
-
return "function" == typeof M2 ? M2(a2) : M2.replace("%s", a2);
|
|
7883
|
-
}, n2.to = function(r3, e3) {
|
|
7884
|
-
return i2(r3, e3, this, true);
|
|
7885
|
-
}, n2.from = function(r3, e3) {
|
|
7886
|
-
return i2(r3, e3, this);
|
|
7887
|
-
};
|
|
7888
|
-
var d2 = function(r3) {
|
|
7889
|
-
return r3.$u ? t2.utc() : t2();
|
|
7890
|
-
};
|
|
7891
|
-
n2.toNow = function(r3) {
|
|
7892
|
-
return this.to(d2(this), r3);
|
|
7893
|
-
}, n2.fromNow = function(r3) {
|
|
7894
|
-
return this.from(d2(this), r3);
|
|
7895
|
-
};
|
|
7896
|
-
};
|
|
7897
|
-
});
|
|
7898
|
-
})(relativeTime$1);
|
|
7899
|
-
var relativeTimeExports = relativeTime$1.exports;
|
|
7900
|
-
const relativeTime = /* @__PURE__ */ getDefaultExportFromCjs(relativeTimeExports);
|
|
7901
|
-
var de$2 = { exports: {} };
|
|
7902
|
-
(function(module, exports) {
|
|
7903
|
-
!function(e2, n2) {
|
|
7904
|
-
module.exports = n2(dayjs_minExports);
|
|
7905
|
-
}(commonjsGlobal, function(e2) {
|
|
7906
|
-
function n2(e3) {
|
|
7907
|
-
return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
|
|
7908
|
-
}
|
|
7909
|
-
var t2 = n2(e2), a2 = { s: "ein paar Sekunden", m: ["eine Minute", "einer Minute"], mm: "%d Minuten", h: ["eine Stunde", "einer Stunde"], hh: "%d Stunden", d: ["ein Tag", "einem Tag"], dd: ["%d Tage", "%d Tagen"], M: ["ein Monat", "einem Monat"], MM: ["%d Monate", "%d Monaten"], y: ["ein Jahr", "einem Jahr"], yy: ["%d Jahre", "%d Jahren"] };
|
|
7910
|
-
function i2(e3, n3, t3) {
|
|
7911
|
-
var i3 = a2[t3];
|
|
7912
|
-
return Array.isArray(i3) && (i3 = i3[n3 ? 0 : 1]), i3.replace("%d", e3);
|
|
7913
|
-
}
|
|
7914
|
-
var r2 = { name: "de", weekdays: "Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag".split("_"), weekdaysShort: "So._Mo._Di._Mi._Do._Fr._Sa.".split("_"), weekdaysMin: "So_Mo_Di_Mi_Do_Fr_Sa".split("_"), months: "Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember".split("_"), monthsShort: "Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sept._Okt._Nov._Dez.".split("_"), ordinal: function(e3) {
|
|
7915
|
-
return e3 + ".";
|
|
7916
|
-
}, weekStart: 1, yearStart: 4, formats: { LTS: "HH:mm:ss", LT: "HH:mm", L: "DD.MM.YYYY", LL: "D. MMMM YYYY", LLL: "D. MMMM YYYY HH:mm", LLLL: "dddd, D. MMMM YYYY HH:mm" }, relativeTime: { future: "in %s", past: "vor %s", s: i2, m: i2, mm: i2, h: i2, hh: i2, d: i2, dd: i2, M: i2, MM: i2, y: i2, yy: i2 } };
|
|
7917
|
-
return t2.default.locale(r2, null, true), r2;
|
|
7918
|
-
});
|
|
7919
|
-
})(de$2);
|
|
7920
|
-
var es = { exports: {} };
|
|
7921
|
-
(function(module, exports) {
|
|
7922
|
-
!function(e2, o2) {
|
|
7923
|
-
module.exports = o2(dayjs_minExports);
|
|
7924
|
-
}(commonjsGlobal, function(e2) {
|
|
7925
|
-
function o2(e3) {
|
|
7926
|
-
return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
|
|
7927
|
-
}
|
|
7928
|
-
var s2 = o2(e2), d2 = { name: "es", monthsShort: "ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic".split("_"), weekdays: "domingo_lunes_martes_miércoles_jueves_viernes_sábado".split("_"), weekdaysShort: "dom._lun._mar._mié._jue._vie._sáb.".split("_"), weekdaysMin: "do_lu_ma_mi_ju_vi_sá".split("_"), months: "enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre".split("_"), weekStart: 1, formats: { LT: "H:mm", LTS: "H:mm:ss", L: "DD/MM/YYYY", LL: "D [de] MMMM [de] YYYY", LLL: "D [de] MMMM [de] YYYY H:mm", LLLL: "dddd, D [de] MMMM [de] YYYY H:mm" }, relativeTime: { future: "en %s", past: "hace %s", s: "unos segundos", m: "un minuto", mm: "%d minutos", h: "una hora", hh: "%d horas", d: "un día", dd: "%d días", M: "un mes", MM: "%d meses", y: "un año", yy: "%d años" }, ordinal: function(e3) {
|
|
7929
|
-
return e3 + "º";
|
|
7930
|
-
} };
|
|
7931
|
-
return s2.default.locale(d2, null, true), d2;
|
|
7932
|
-
});
|
|
7933
|
-
})(es);
|
|
7934
|
-
var pt = { exports: {} };
|
|
7935
|
-
(function(module, exports) {
|
|
7936
|
-
!function(e2, a2) {
|
|
7937
|
-
module.exports = a2(dayjs_minExports);
|
|
7938
|
-
}(commonjsGlobal, function(e2) {
|
|
7939
|
-
function a2(e3) {
|
|
7940
|
-
return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
|
|
7941
|
-
}
|
|
7942
|
-
var o2 = a2(e2), t2 = { name: "pt", weekdays: "domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado".split("_"), weekdaysShort: "dom_seg_ter_qua_qui_sex_sab".split("_"), weekdaysMin: "Do_2ª_3ª_4ª_5ª_6ª_Sa".split("_"), months: "janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro".split("_"), monthsShort: "jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez".split("_"), ordinal: function(e3) {
|
|
7943
|
-
return e3 + "º";
|
|
7944
|
-
}, weekStart: 1, yearStart: 4, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD/MM/YYYY", LL: "D [de] MMMM [de] YYYY", LLL: "D [de] MMMM [de] YYYY [às] HH:mm", LLLL: "dddd, D [de] MMMM [de] YYYY [às] HH:mm" }, relativeTime: { future: "em %s", past: "há %s", s: "alguns segundos", m: "um minuto", mm: "%d minutos", h: "uma hora", hh: "%d horas", d: "um dia", dd: "%d dias", M: "um mês", MM: "%d meses", y: "um ano", yy: "%d anos" } };
|
|
7945
|
-
return o2.default.locale(t2, null, true), t2;
|
|
7946
|
-
});
|
|
7947
|
-
})(pt);
|
|
7948
|
-
var fr = { exports: {} };
|
|
7949
|
-
(function(module, exports) {
|
|
7950
|
-
!function(e2, n2) {
|
|
7951
|
-
module.exports = n2(dayjs_minExports);
|
|
7952
|
-
}(commonjsGlobal, function(e2) {
|
|
7953
|
-
function n2(e3) {
|
|
7954
|
-
return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
|
|
7955
|
-
}
|
|
7956
|
-
var t2 = n2(e2), i2 = { name: "fr", weekdays: "dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi".split("_"), weekdaysShort: "dim._lun._mar._mer._jeu._ven._sam.".split("_"), weekdaysMin: "di_lu_ma_me_je_ve_sa".split("_"), months: "janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre".split("_"), monthsShort: "janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.".split("_"), weekStart: 1, yearStart: 4, formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD/MM/YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY HH:mm", LLLL: "dddd D MMMM YYYY HH:mm" }, relativeTime: { future: "dans %s", past: "il y a %s", s: "quelques secondes", m: "une minute", mm: "%d minutes", h: "une heure", hh: "%d heures", d: "un jour", dd: "%d jours", M: "un mois", MM: "%d mois", y: "un an", yy: "%d ans" }, ordinal: function(e3) {
|
|
7957
|
-
return "" + e3 + (1 === e3 ? "er" : "");
|
|
7958
|
-
} };
|
|
7959
|
-
return t2.default.locale(i2, null, true), i2;
|
|
7960
|
-
});
|
|
7961
|
-
})(fr);
|
|
7962
|
-
var it = { exports: {} };
|
|
7963
|
-
(function(module, exports) {
|
|
7964
|
-
!function(e2, o2) {
|
|
7965
|
-
module.exports = o2(dayjs_minExports);
|
|
7966
|
-
}(commonjsGlobal, function(e2) {
|
|
7967
|
-
function o2(e3) {
|
|
7968
|
-
return e3 && "object" == typeof e3 && "default" in e3 ? e3 : { default: e3 };
|
|
7969
|
-
}
|
|
7970
|
-
var t2 = o2(e2), n2 = { name: "it", weekdays: "domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato".split("_"), weekdaysShort: "dom_lun_mar_mer_gio_ven_sab".split("_"), weekdaysMin: "do_lu_ma_me_gi_ve_sa".split("_"), months: "gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre".split("_"), weekStart: 1, monthsShort: "gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic".split("_"), formats: { LT: "HH:mm", LTS: "HH:mm:ss", L: "DD/MM/YYYY", LL: "D MMMM YYYY", LLL: "D MMMM YYYY HH:mm", LLLL: "dddd D MMMM YYYY HH:mm" }, relativeTime: { future: "tra %s", past: "%s fa", s: "qualche secondo", m: "un minuto", mm: "%d minuti", h: "un' ora", hh: "%d ore", d: "un giorno", dd: "%d giorni", M: "un mese", MM: "%d mesi", y: "un anno", yy: "%d anni" }, ordinal: function(e3) {
|
|
7971
|
-
return e3 + "º";
|
|
7972
|
-
} };
|
|
7973
|
-
return t2.default.locale(n2, null, true), n2;
|
|
7974
|
-
});
|
|
7975
|
-
})(it);
|
|
7976
|
-
var uaParser = { exports: {} };
|
|
7977
|
-
(function(module, exports) {
|
|
7978
|
-
(function(window2, undefined$12) {
|
|
7979
|
-
var LIBVERSION = "1.0.36", EMPTY = "", UNKNOWN = "?", FUNC_TYPE = "function", UNDEF_TYPE = "undefined", OBJ_TYPE = "object", STR_TYPE = "string", MAJOR = "major", MODEL = "model", NAME2 = "name", TYPE2 = "type", VENDOR = "vendor", VERSION = "version", ARCHITECTURE = "architecture", CONSOLE = "console", MOBILE = "mobile", TABLET = "tablet", SMARTTV = "smarttv", WEARABLE = "wearable", EMBEDDED = "embedded", UA_MAX_LENGTH = 350;
|
|
7980
|
-
var AMAZON = "Amazon", APPLE = "Apple", ASUS = "ASUS", BLACKBERRY = "BlackBerry", BROWSER = "Browser", CHROME = "Chrome", EDGE = "Edge", FIREFOX = "Firefox", GOOGLE = "Google", HUAWEI = "Huawei", LG = "LG", MICROSOFT = "Microsoft", MOTOROLA = "Motorola", OPERA = "Opera", SAMSUNG = "Samsung", SHARP = "Sharp", SONY = "Sony", XIAOMI = "Xiaomi", ZEBRA = "Zebra", FACEBOOK = "Facebook", CHROMIUM_OS = "Chromium OS", MAC_OS = "Mac OS";
|
|
7981
|
-
var extend2 = function(regexes2, extensions2) {
|
|
7982
|
-
var mergedRegexes = {};
|
|
7983
|
-
for (var i2 in regexes2) {
|
|
7984
|
-
if (extensions2[i2] && extensions2[i2].length % 2 === 0) {
|
|
7985
|
-
mergedRegexes[i2] = extensions2[i2].concat(regexes2[i2]);
|
|
7986
|
-
} else {
|
|
7987
|
-
mergedRegexes[i2] = regexes2[i2];
|
|
7988
|
-
}
|
|
7989
|
-
}
|
|
7990
|
-
return mergedRegexes;
|
|
7991
|
-
}, enumerize = function(arr2) {
|
|
7992
|
-
var enums = {};
|
|
7993
|
-
for (var i2 = 0; i2 < arr2.length; i2++) {
|
|
7994
|
-
enums[arr2[i2].toUpperCase()] = arr2[i2];
|
|
7995
|
-
}
|
|
7996
|
-
return enums;
|
|
7997
|
-
}, has2 = function(str1, str2) {
|
|
7998
|
-
return typeof str1 === STR_TYPE ? lowerize(str2).indexOf(lowerize(str1)) !== -1 : false;
|
|
7999
|
-
}, lowerize = function(str) {
|
|
8000
|
-
return str.toLowerCase();
|
|
8001
|
-
}, majorize = function(version) {
|
|
8002
|
-
return typeof version === STR_TYPE ? version.replace(/[^\d\.]/g, EMPTY).split(".")[0] : undefined$12;
|
|
8003
|
-
}, trim2 = function(str, len) {
|
|
8004
|
-
if (typeof str === STR_TYPE) {
|
|
8005
|
-
str = str.replace(/^\s\s*/, EMPTY);
|
|
8006
|
-
return typeof len === UNDEF_TYPE ? str : str.substring(0, UA_MAX_LENGTH);
|
|
8007
|
-
}
|
|
8008
|
-
};
|
|
8009
|
-
var rgxMapper = function(ua2, arrays) {
|
|
8010
|
-
var i2 = 0, j2, k2, p2, q2, matches, match;
|
|
8011
|
-
while (i2 < arrays.length && !matches) {
|
|
8012
|
-
var regex = arrays[i2], props = arrays[i2 + 1];
|
|
8013
|
-
j2 = k2 = 0;
|
|
8014
|
-
while (j2 < regex.length && !matches) {
|
|
8015
|
-
if (!regex[j2]) {
|
|
8016
|
-
break;
|
|
8017
|
-
}
|
|
8018
|
-
matches = regex[j2++].exec(ua2);
|
|
8019
|
-
if (!!matches) {
|
|
8020
|
-
for (p2 = 0; p2 < props.length; p2++) {
|
|
8021
|
-
match = matches[++k2];
|
|
8022
|
-
q2 = props[p2];
|
|
8023
|
-
if (typeof q2 === OBJ_TYPE && q2.length > 0) {
|
|
8024
|
-
if (q2.length === 2) {
|
|
8025
|
-
if (typeof q2[1] == FUNC_TYPE) {
|
|
8026
|
-
this[q2[0]] = q2[1].call(this, match);
|
|
8027
|
-
} else {
|
|
8028
|
-
this[q2[0]] = q2[1];
|
|
8029
|
-
}
|
|
8030
|
-
} else if (q2.length === 3) {
|
|
8031
|
-
if (typeof q2[1] === FUNC_TYPE && !(q2[1].exec && q2[1].test)) {
|
|
8032
|
-
this[q2[0]] = match ? q2[1].call(this, match, q2[2]) : undefined$12;
|
|
8033
|
-
} else {
|
|
8034
|
-
this[q2[0]] = match ? match.replace(q2[1], q2[2]) : undefined$12;
|
|
8035
|
-
}
|
|
8036
|
-
} else if (q2.length === 4) {
|
|
8037
|
-
this[q2[0]] = match ? q2[3].call(this, match.replace(q2[1], q2[2])) : undefined$12;
|
|
8038
|
-
}
|
|
8039
|
-
} else {
|
|
8040
|
-
this[q2] = match ? match : undefined$12;
|
|
8041
|
-
}
|
|
8042
|
-
}
|
|
8043
|
-
}
|
|
8044
|
-
}
|
|
8045
|
-
i2 += 2;
|
|
8046
|
-
}
|
|
8047
|
-
}, strMapper = function(str, map2) {
|
|
8048
|
-
for (var i2 in map2) {
|
|
8049
|
-
if (typeof map2[i2] === OBJ_TYPE && map2[i2].length > 0) {
|
|
8050
|
-
for (var j2 = 0; j2 < map2[i2].length; j2++) {
|
|
8051
|
-
if (has2(map2[i2][j2], str)) {
|
|
8052
|
-
return i2 === UNKNOWN ? undefined$12 : i2;
|
|
8053
|
-
}
|
|
8054
|
-
}
|
|
8055
|
-
} else if (has2(map2[i2], str)) {
|
|
8056
|
-
return i2 === UNKNOWN ? undefined$12 : i2;
|
|
8057
|
-
}
|
|
8058
|
-
}
|
|
8059
|
-
return str;
|
|
7287
|
+
return str;
|
|
8060
7288
|
};
|
|
8061
7289
|
var oldSafariMap = {
|
|
8062
7290
|
"1.0": "/8",
|
|
@@ -9143,468 +8371,1244 @@ var uaParser = { exports: {} };
|
|
|
9143
8371
|
if (_isSelfNav && !_device[TYPE2] && _uach && _uach.mobile) {
|
|
9144
8372
|
_device[TYPE2] = MOBILE;
|
|
9145
8373
|
}
|
|
9146
|
-
if (_isSelfNav && _device[MODEL] == "Macintosh" && _navigator && typeof _navigator.standalone !== UNDEF_TYPE && _navigator.maxTouchPoints && _navigator.maxTouchPoints > 2) {
|
|
9147
|
-
_device[MODEL] = "iPad";
|
|
9148
|
-
_device[TYPE2] = TABLET;
|
|
8374
|
+
if (_isSelfNav && _device[MODEL] == "Macintosh" && _navigator && typeof _navigator.standalone !== UNDEF_TYPE && _navigator.maxTouchPoints && _navigator.maxTouchPoints > 2) {
|
|
8375
|
+
_device[MODEL] = "iPad";
|
|
8376
|
+
_device[TYPE2] = TABLET;
|
|
8377
|
+
}
|
|
8378
|
+
return _device;
|
|
8379
|
+
};
|
|
8380
|
+
this.getEngine = function() {
|
|
8381
|
+
var _engine = {};
|
|
8382
|
+
_engine[NAME2] = undefined$12;
|
|
8383
|
+
_engine[VERSION] = undefined$12;
|
|
8384
|
+
rgxMapper.call(_engine, _ua, _rgxmap.engine);
|
|
8385
|
+
return _engine;
|
|
8386
|
+
};
|
|
8387
|
+
this.getOS = function() {
|
|
8388
|
+
var _os = {};
|
|
8389
|
+
_os[NAME2] = undefined$12;
|
|
8390
|
+
_os[VERSION] = undefined$12;
|
|
8391
|
+
rgxMapper.call(_os, _ua, _rgxmap.os);
|
|
8392
|
+
if (_isSelfNav && !_os[NAME2] && _uach && _uach.platform != "Unknown") {
|
|
8393
|
+
_os[NAME2] = _uach.platform.replace(/chrome os/i, CHROMIUM_OS).replace(/macos/i, MAC_OS);
|
|
8394
|
+
}
|
|
8395
|
+
return _os;
|
|
8396
|
+
};
|
|
8397
|
+
this.getResult = function() {
|
|
8398
|
+
return {
|
|
8399
|
+
ua: this.getUA(),
|
|
8400
|
+
browser: this.getBrowser(),
|
|
8401
|
+
engine: this.getEngine(),
|
|
8402
|
+
os: this.getOS(),
|
|
8403
|
+
device: this.getDevice(),
|
|
8404
|
+
cpu: this.getCPU()
|
|
8405
|
+
};
|
|
8406
|
+
};
|
|
8407
|
+
this.getUA = function() {
|
|
8408
|
+
return _ua;
|
|
8409
|
+
};
|
|
8410
|
+
this.setUA = function(ua3) {
|
|
8411
|
+
_ua = typeof ua3 === STR_TYPE && ua3.length > UA_MAX_LENGTH ? trim2(ua3, UA_MAX_LENGTH) : ua3;
|
|
8412
|
+
return this;
|
|
8413
|
+
};
|
|
8414
|
+
this.setUA(_ua);
|
|
8415
|
+
return this;
|
|
8416
|
+
};
|
|
8417
|
+
UAParser.VERSION = LIBVERSION;
|
|
8418
|
+
UAParser.BROWSER = enumerize([NAME2, VERSION, MAJOR]);
|
|
8419
|
+
UAParser.CPU = enumerize([ARCHITECTURE]);
|
|
8420
|
+
UAParser.DEVICE = enumerize([MODEL, VENDOR, TYPE2, CONSOLE, MOBILE, SMARTTV, TABLET, WEARABLE, EMBEDDED]);
|
|
8421
|
+
UAParser.ENGINE = UAParser.OS = enumerize([NAME2, VERSION]);
|
|
8422
|
+
{
|
|
8423
|
+
if (module.exports) {
|
|
8424
|
+
exports = module.exports = UAParser;
|
|
8425
|
+
}
|
|
8426
|
+
exports.UAParser = UAParser;
|
|
8427
|
+
}
|
|
8428
|
+
var $2 = typeof window2 !== UNDEF_TYPE && (window2.jQuery || window2.Zepto);
|
|
8429
|
+
if ($2 && !$2.ua) {
|
|
8430
|
+
var parser = new UAParser();
|
|
8431
|
+
$2.ua = parser.getResult();
|
|
8432
|
+
$2.ua.get = function() {
|
|
8433
|
+
return parser.getUA();
|
|
8434
|
+
};
|
|
8435
|
+
$2.ua.set = function(ua2) {
|
|
8436
|
+
parser.setUA(ua2);
|
|
8437
|
+
var result = parser.getResult();
|
|
8438
|
+
for (var prop in result) {
|
|
8439
|
+
$2.ua[prop] = result[prop];
|
|
8440
|
+
}
|
|
8441
|
+
};
|
|
8442
|
+
}
|
|
8443
|
+
})(typeof window === "object" ? window : commonjsGlobal$1);
|
|
8444
|
+
})(uaParser, uaParser.exports);
|
|
8445
|
+
let e$2 = { data: "" }, t$3 = (t2) => "object" == typeof window ? ((t2 ? t2.querySelector("#_goober") : window._goober) || Object.assign((t2 || document.head).appendChild(document.createElement("style")), { innerHTML: " ", id: "_goober" })).firstChild : t2 || e$2, l$2 = /(?:([\u0080-\uFFFF\w-%@]+) *:? *([^{;]+?);|([^;}{]*?) *{)|(}\s*)/g, a$1 = /\/\*[^]*?\*\/| +/g, n$4 = /\n+/g, o$1 = (e2, t2) => {
|
|
8446
|
+
let r2 = "", l2 = "", a2 = "";
|
|
8447
|
+
for (let n2 in e2) {
|
|
8448
|
+
let c6 = e2[n2];
|
|
8449
|
+
"@" == n2[0] ? "i" == n2[1] ? r2 = n2 + " " + c6 + ";" : l2 += "f" == n2[1] ? o$1(c6, n2) : n2 + "{" + o$1(c6, "k" == n2[1] ? "" : t2) + "}" : "object" == typeof c6 ? l2 += o$1(c6, t2 ? t2.replace(/([^,])+/g, (e3) => n2.replace(/(^:.*)|([^,])+/g, (t3) => /&/.test(t3) ? t3.replace(/&/g, e3) : e3 ? e3 + " " + t3 : t3)) : n2) : null != c6 && (n2 = /^--/.test(n2) ? n2 : n2.replace(/[A-Z]/g, "-$&").toLowerCase(), a2 += o$1.p ? o$1.p(n2, c6) : n2 + ":" + c6 + ";");
|
|
8450
|
+
}
|
|
8451
|
+
return r2 + (t2 && a2 ? t2 + "{" + a2 + "}" : a2) + l2;
|
|
8452
|
+
}, c$1 = {}, s$1 = (e2) => {
|
|
8453
|
+
if ("object" == typeof e2) {
|
|
8454
|
+
let t2 = "";
|
|
8455
|
+
for (let r2 in e2)
|
|
8456
|
+
t2 += r2 + s$1(e2[r2]);
|
|
8457
|
+
return t2;
|
|
8458
|
+
}
|
|
8459
|
+
return e2;
|
|
8460
|
+
}, i$2 = (e2, t2, r2, i2, p2) => {
|
|
8461
|
+
let u2 = s$1(e2), d2 = c$1[u2] || (c$1[u2] = ((e3) => {
|
|
8462
|
+
let t3 = 0, r3 = 11;
|
|
8463
|
+
for (; t3 < e3.length; )
|
|
8464
|
+
r3 = 101 * r3 + e3.charCodeAt(t3++) >>> 0;
|
|
8465
|
+
return "go" + r3;
|
|
8466
|
+
})(u2));
|
|
8467
|
+
if (!c$1[d2]) {
|
|
8468
|
+
let t3 = u2 !== e2 ? e2 : ((e3) => {
|
|
8469
|
+
let t4, r3, o2 = [{}];
|
|
8470
|
+
for (; t4 = l$2.exec(e3.replace(a$1, "")); )
|
|
8471
|
+
t4[4] ? o2.shift() : t4[3] ? (r3 = t4[3].replace(n$4, " ").trim(), o2.unshift(o2[0][r3] = o2[0][r3] || {})) : o2[0][t4[1]] = t4[2].replace(n$4, " ").trim();
|
|
8472
|
+
return o2[0];
|
|
8473
|
+
})(e2);
|
|
8474
|
+
c$1[d2] = o$1(p2 ? { ["@keyframes " + d2]: t3 } : t3, r2 ? "" : "." + d2);
|
|
8475
|
+
}
|
|
8476
|
+
let f2 = r2 && c$1.g ? c$1.g : null;
|
|
8477
|
+
return r2 && (c$1.g = c$1[d2]), ((e3, t3, r3, l2) => {
|
|
8478
|
+
l2 ? t3.data = t3.data.replace(l2, e3) : -1 === t3.data.indexOf(e3) && (t3.data = r3 ? e3 + t3.data : t3.data + e3);
|
|
8479
|
+
})(c$1[d2], t2, i2, f2), d2;
|
|
8480
|
+
}, p$4 = (e2, t2, r2) => e2.reduce((e3, l2, a2) => {
|
|
8481
|
+
let n2 = t2[a2];
|
|
8482
|
+
if (n2 && n2.call) {
|
|
8483
|
+
let e4 = n2(r2), t3 = e4 && e4.props && e4.props.className || /^go/.test(e4) && e4;
|
|
8484
|
+
n2 = t3 ? "." + t3 : e4 && "object" == typeof e4 ? e4.props ? "" : o$1(e4, "") : false === e4 ? "" : e4;
|
|
8485
|
+
}
|
|
8486
|
+
return e3 + l2 + (null == n2 ? "" : n2);
|
|
8487
|
+
}, "");
|
|
8488
|
+
function u$4(e2) {
|
|
8489
|
+
let r2 = this || {}, l2 = e2.call ? e2(r2.p) : e2;
|
|
8490
|
+
return i$2(l2.unshift ? l2.raw ? p$4(l2, [].slice.call(arguments, 1), r2.p) : l2.reduce((e3, t2) => Object.assign(e3, t2 && t2.call ? t2(r2.p) : t2), {}) : l2, t$3(r2.target), r2.g, r2.o, r2.k);
|
|
8491
|
+
}
|
|
8492
|
+
let d$1, f$1, g$1;
|
|
8493
|
+
u$4.bind({ g: 1 });
|
|
8494
|
+
let h$4 = u$4.bind({ k: 1 });
|
|
8495
|
+
function m$3(e2, t2, r2, l2) {
|
|
8496
|
+
o$1.p = t2, d$1 = e2, f$1 = r2, g$1 = l2;
|
|
8497
|
+
}
|
|
8498
|
+
function j$1(e2, t2) {
|
|
8499
|
+
let r2 = this || {};
|
|
8500
|
+
return function() {
|
|
8501
|
+
let l2 = arguments;
|
|
8502
|
+
function a2(n2, o2) {
|
|
8503
|
+
let c6 = Object.assign({}, n2), s2 = c6.className || a2.className;
|
|
8504
|
+
r2.p = Object.assign({ theme: f$1 && f$1() }, c6), r2.o = / *go\d+/.test(s2), c6.className = u$4.apply(r2, l2) + (s2 ? " " + s2 : "");
|
|
8505
|
+
let i2 = e2;
|
|
8506
|
+
return e2[0] && (i2 = c6.as || e2, delete c6.as), g$1 && i2[0] && g$1(c6), d$1(i2, c6);
|
|
8507
|
+
}
|
|
8508
|
+
return a2;
|
|
8509
|
+
};
|
|
8510
|
+
}
|
|
8511
|
+
var W$2 = (e2) => typeof e2 == "function", T$1 = (e2, t2) => W$2(e2) ? e2(t2) : e2;
|
|
8512
|
+
var U$1 = /* @__PURE__ */ (() => {
|
|
8513
|
+
let e2 = 0;
|
|
8514
|
+
return () => (++e2).toString();
|
|
8515
|
+
})(), b$1 = /* @__PURE__ */ (() => {
|
|
8516
|
+
let e2;
|
|
8517
|
+
return () => {
|
|
8518
|
+
if (e2 === void 0 && typeof window < "u") {
|
|
8519
|
+
let t2 = matchMedia("(prefers-reduced-motion: reduce)");
|
|
8520
|
+
e2 = !t2 || t2.matches;
|
|
8521
|
+
}
|
|
8522
|
+
return e2;
|
|
8523
|
+
};
|
|
8524
|
+
})();
|
|
8525
|
+
var Q$1 = 20;
|
|
8526
|
+
var S$2 = /* @__PURE__ */ new Map(), X$1 = 1e3, $$1 = (e2) => {
|
|
8527
|
+
if (S$2.has(e2))
|
|
8528
|
+
return;
|
|
8529
|
+
let t2 = setTimeout(() => {
|
|
8530
|
+
S$2.delete(e2), u$3({ type: 4, toastId: e2 });
|
|
8531
|
+
}, X$1);
|
|
8532
|
+
S$2.set(e2, t2);
|
|
8533
|
+
}, J = (e2) => {
|
|
8534
|
+
let t2 = S$2.get(e2);
|
|
8535
|
+
t2 && clearTimeout(t2);
|
|
8536
|
+
}, v$3 = (e2, t2) => {
|
|
8537
|
+
switch (t2.type) {
|
|
8538
|
+
case 0:
|
|
8539
|
+
return { ...e2, toasts: [t2.toast, ...e2.toasts].slice(0, Q$1) };
|
|
8540
|
+
case 1:
|
|
8541
|
+
return t2.toast.id && J(t2.toast.id), { ...e2, toasts: e2.toasts.map((r2) => r2.id === t2.toast.id ? { ...r2, ...t2.toast } : r2) };
|
|
8542
|
+
case 2:
|
|
8543
|
+
let { toast: o2 } = t2;
|
|
8544
|
+
return e2.toasts.find((r2) => r2.id === o2.id) ? v$3(e2, { type: 1, toast: o2 }) : v$3(e2, { type: 0, toast: o2 });
|
|
8545
|
+
case 3:
|
|
8546
|
+
let { toastId: s2 } = t2;
|
|
8547
|
+
return s2 ? $$1(s2) : e2.toasts.forEach((r2) => {
|
|
8548
|
+
$$1(r2.id);
|
|
8549
|
+
}), { ...e2, toasts: e2.toasts.map((r2) => r2.id === s2 || s2 === void 0 ? { ...r2, visible: false } : r2) };
|
|
8550
|
+
case 4:
|
|
8551
|
+
return t2.toastId === void 0 ? { ...e2, toasts: [] } : { ...e2, toasts: e2.toasts.filter((r2) => r2.id !== t2.toastId) };
|
|
8552
|
+
case 5:
|
|
8553
|
+
return { ...e2, pausedAt: t2.time };
|
|
8554
|
+
case 6:
|
|
8555
|
+
let a2 = t2.time - (e2.pausedAt || 0);
|
|
8556
|
+
return { ...e2, pausedAt: void 0, toasts: e2.toasts.map((r2) => ({ ...r2, pauseDuration: r2.pauseDuration + a2 })) };
|
|
8557
|
+
}
|
|
8558
|
+
}, A$1 = [], P$1 = { toasts: [], pausedAt: void 0 }, u$3 = (e2) => {
|
|
8559
|
+
P$1 = v$3(P$1, e2), A$1.forEach((t2) => {
|
|
8560
|
+
t2(P$1);
|
|
8561
|
+
});
|
|
8562
|
+
}, Y$1 = { blank: 4e3, error: 4e3, success: 2e3, loading: 1 / 0, custom: 4e3 }, I$1 = (e2 = {}) => {
|
|
8563
|
+
let [t2, o2] = reactExports.useState(P$1);
|
|
8564
|
+
reactExports.useEffect(() => (A$1.push(o2), () => {
|
|
8565
|
+
let a2 = A$1.indexOf(o2);
|
|
8566
|
+
a2 > -1 && A$1.splice(a2, 1);
|
|
8567
|
+
}), [t2]);
|
|
8568
|
+
let s2 = t2.toasts.map((a2) => {
|
|
8569
|
+
var r2, c6;
|
|
8570
|
+
return { ...e2, ...e2[a2.type], ...a2, duration: a2.duration || ((r2 = e2[a2.type]) == null ? void 0 : r2.duration) || (e2 == null ? void 0 : e2.duration) || Y$1[a2.type], style: { ...e2.style, ...(c6 = e2[a2.type]) == null ? void 0 : c6.style, ...a2.style } };
|
|
8571
|
+
});
|
|
8572
|
+
return { ...t2, toasts: s2 };
|
|
8573
|
+
};
|
|
8574
|
+
var G$1 = (e2, t2 = "blank", o2) => ({ createdAt: Date.now(), visible: true, type: t2, ariaProps: { role: "status", "aria-live": "polite" }, message: e2, pauseDuration: 0, ...o2, id: (o2 == null ? void 0 : o2.id) || U$1() }), h$3 = (e2) => (t2, o2) => {
|
|
8575
|
+
let s2 = G$1(t2, e2, o2);
|
|
8576
|
+
return u$3({ type: 2, toast: s2 }), s2.id;
|
|
8577
|
+
}, n$3 = (e2, t2) => h$3("blank")(e2, t2);
|
|
8578
|
+
n$3.error = h$3("error");
|
|
8579
|
+
n$3.success = h$3("success");
|
|
8580
|
+
n$3.loading = h$3("loading");
|
|
8581
|
+
n$3.custom = h$3("custom");
|
|
8582
|
+
n$3.dismiss = (e2) => {
|
|
8583
|
+
u$3({ type: 3, toastId: e2 });
|
|
8584
|
+
};
|
|
8585
|
+
n$3.remove = (e2) => u$3({ type: 4, toastId: e2 });
|
|
8586
|
+
n$3.promise = (e2, t2, o2) => {
|
|
8587
|
+
let s2 = n$3.loading(t2.loading, { ...o2, ...o2 == null ? void 0 : o2.loading });
|
|
8588
|
+
return e2.then((a2) => (n$3.success(T$1(t2.success, a2), { id: s2, ...o2, ...o2 == null ? void 0 : o2.success }), a2)).catch((a2) => {
|
|
8589
|
+
n$3.error(T$1(t2.error, a2), { id: s2, ...o2, ...o2 == null ? void 0 : o2.error });
|
|
8590
|
+
}), e2;
|
|
8591
|
+
};
|
|
8592
|
+
var Z$1 = (e2, t2) => {
|
|
8593
|
+
u$3({ type: 1, toast: { id: e2, height: t2 } });
|
|
8594
|
+
}, ee$1 = () => {
|
|
8595
|
+
u$3({ type: 5, time: Date.now() });
|
|
8596
|
+
}, D$1 = (e2) => {
|
|
8597
|
+
let { toasts: t2, pausedAt: o2 } = I$1(e2);
|
|
8598
|
+
reactExports.useEffect(() => {
|
|
8599
|
+
if (o2)
|
|
8600
|
+
return;
|
|
8601
|
+
let r2 = Date.now(), c6 = t2.map((i2) => {
|
|
8602
|
+
if (i2.duration === 1 / 0)
|
|
8603
|
+
return;
|
|
8604
|
+
let d2 = (i2.duration || 0) + i2.pauseDuration - (r2 - i2.createdAt);
|
|
8605
|
+
if (d2 < 0) {
|
|
8606
|
+
i2.visible && n$3.dismiss(i2.id);
|
|
8607
|
+
return;
|
|
8608
|
+
}
|
|
8609
|
+
return setTimeout(() => n$3.dismiss(i2.id), d2);
|
|
8610
|
+
});
|
|
8611
|
+
return () => {
|
|
8612
|
+
c6.forEach((i2) => i2 && clearTimeout(i2));
|
|
8613
|
+
};
|
|
8614
|
+
}, [t2, o2]);
|
|
8615
|
+
let s2 = reactExports.useCallback(() => {
|
|
8616
|
+
o2 && u$3({ type: 6, time: Date.now() });
|
|
8617
|
+
}, [o2]), a2 = reactExports.useCallback((r2, c6) => {
|
|
8618
|
+
let { reverseOrder: i2 = false, gutter: d2 = 8, defaultPosition: p2 } = c6 || {}, g2 = t2.filter((m2) => (m2.position || p2) === (r2.position || p2) && m2.height), E2 = g2.findIndex((m2) => m2.id === r2.id), x2 = g2.filter((m2, R2) => R2 < E2 && m2.visible).length;
|
|
8619
|
+
return g2.filter((m2) => m2.visible).slice(...i2 ? [x2 + 1] : [0, x2]).reduce((m2, R2) => m2 + (R2.height || 0) + d2, 0);
|
|
8620
|
+
}, [t2]);
|
|
8621
|
+
return { toasts: t2, handlers: { updateHeight: Z$1, startPause: ee$1, endPause: s2, calculateOffset: a2 } };
|
|
8622
|
+
};
|
|
8623
|
+
var oe$1 = h$4`
|
|
8624
|
+
from {
|
|
8625
|
+
transform: scale(0) rotate(45deg);
|
|
8626
|
+
opacity: 0;
|
|
8627
|
+
}
|
|
8628
|
+
to {
|
|
8629
|
+
transform: scale(1) rotate(45deg);
|
|
8630
|
+
opacity: 1;
|
|
8631
|
+
}`, re$1 = h$4`
|
|
8632
|
+
from {
|
|
8633
|
+
transform: scale(0);
|
|
8634
|
+
opacity: 0;
|
|
8635
|
+
}
|
|
8636
|
+
to {
|
|
8637
|
+
transform: scale(1);
|
|
8638
|
+
opacity: 1;
|
|
8639
|
+
}`, se$1 = h$4`
|
|
8640
|
+
from {
|
|
8641
|
+
transform: scale(0) rotate(90deg);
|
|
8642
|
+
opacity: 0;
|
|
8643
|
+
}
|
|
8644
|
+
to {
|
|
8645
|
+
transform: scale(1) rotate(90deg);
|
|
8646
|
+
opacity: 1;
|
|
8647
|
+
}`, _ = j$1("div")`
|
|
8648
|
+
width: 20px;
|
|
8649
|
+
opacity: 0;
|
|
8650
|
+
height: 20px;
|
|
8651
|
+
border-radius: 10px;
|
|
8652
|
+
background: ${(e2) => e2.primary || "#ff4b4b"};
|
|
8653
|
+
position: relative;
|
|
8654
|
+
transform: rotate(45deg);
|
|
8655
|
+
|
|
8656
|
+
animation: ${oe$1} 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
|
|
8657
|
+
forwards;
|
|
8658
|
+
animation-delay: 100ms;
|
|
8659
|
+
|
|
8660
|
+
&:after,
|
|
8661
|
+
&:before {
|
|
8662
|
+
content: '';
|
|
8663
|
+
animation: ${re$1} 0.15s ease-out forwards;
|
|
8664
|
+
animation-delay: 150ms;
|
|
8665
|
+
position: absolute;
|
|
8666
|
+
border-radius: 3px;
|
|
8667
|
+
opacity: 0;
|
|
8668
|
+
background: ${(e2) => e2.secondary || "#fff"};
|
|
8669
|
+
bottom: 9px;
|
|
8670
|
+
left: 4px;
|
|
8671
|
+
height: 2px;
|
|
8672
|
+
width: 12px;
|
|
8673
|
+
}
|
|
8674
|
+
|
|
8675
|
+
&:before {
|
|
8676
|
+
animation: ${se$1} 0.15s ease-out forwards;
|
|
8677
|
+
animation-delay: 180ms;
|
|
8678
|
+
transform: rotate(90deg);
|
|
8679
|
+
}
|
|
8680
|
+
`;
|
|
8681
|
+
var ne$1 = h$4`
|
|
8682
|
+
from {
|
|
8683
|
+
transform: rotate(0deg);
|
|
8684
|
+
}
|
|
8685
|
+
to {
|
|
8686
|
+
transform: rotate(360deg);
|
|
8687
|
+
}
|
|
8688
|
+
`, V$1 = j$1("div")`
|
|
8689
|
+
width: 12px;
|
|
8690
|
+
height: 12px;
|
|
8691
|
+
box-sizing: border-box;
|
|
8692
|
+
border: 2px solid;
|
|
8693
|
+
border-radius: 100%;
|
|
8694
|
+
border-color: ${(e2) => e2.secondary || "#e0e0e0"};
|
|
8695
|
+
border-right-color: ${(e2) => e2.primary || "#616161"};
|
|
8696
|
+
animation: ${ne$1} 1s linear infinite;
|
|
8697
|
+
`;
|
|
8698
|
+
var pe$1 = h$4`
|
|
8699
|
+
from {
|
|
8700
|
+
transform: scale(0) rotate(45deg);
|
|
8701
|
+
opacity: 0;
|
|
8702
|
+
}
|
|
8703
|
+
to {
|
|
8704
|
+
transform: scale(1) rotate(45deg);
|
|
8705
|
+
opacity: 1;
|
|
8706
|
+
}`, de$1 = h$4`
|
|
8707
|
+
0% {
|
|
8708
|
+
height: 0;
|
|
8709
|
+
width: 0;
|
|
8710
|
+
opacity: 0;
|
|
8711
|
+
}
|
|
8712
|
+
40% {
|
|
8713
|
+
height: 0;
|
|
8714
|
+
width: 6px;
|
|
8715
|
+
opacity: 1;
|
|
8716
|
+
}
|
|
8717
|
+
100% {
|
|
8718
|
+
opacity: 1;
|
|
8719
|
+
height: 10px;
|
|
8720
|
+
}`, w$2 = j$1("div")`
|
|
8721
|
+
width: 20px;
|
|
8722
|
+
opacity: 0;
|
|
8723
|
+
height: 20px;
|
|
8724
|
+
border-radius: 10px;
|
|
8725
|
+
background: ${(e2) => e2.primary || "#61d345"};
|
|
8726
|
+
position: relative;
|
|
8727
|
+
transform: rotate(45deg);
|
|
8728
|
+
|
|
8729
|
+
animation: ${pe$1} 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
|
|
8730
|
+
forwards;
|
|
8731
|
+
animation-delay: 100ms;
|
|
8732
|
+
&:after {
|
|
8733
|
+
content: '';
|
|
8734
|
+
box-sizing: border-box;
|
|
8735
|
+
animation: ${de$1} 0.2s ease-out forwards;
|
|
8736
|
+
opacity: 0;
|
|
8737
|
+
animation-delay: 200ms;
|
|
8738
|
+
position: absolute;
|
|
8739
|
+
border-right: 2px solid;
|
|
8740
|
+
border-bottom: 2px solid;
|
|
8741
|
+
border-color: ${(e2) => e2.secondary || "#fff"};
|
|
8742
|
+
bottom: 6px;
|
|
8743
|
+
left: 6px;
|
|
8744
|
+
height: 10px;
|
|
8745
|
+
width: 6px;
|
|
8746
|
+
}
|
|
8747
|
+
`;
|
|
8748
|
+
var ue$1 = j$1("div")`
|
|
8749
|
+
position: absolute;
|
|
8750
|
+
`, le$1 = j$1("div")`
|
|
8751
|
+
position: relative;
|
|
8752
|
+
display: flex;
|
|
8753
|
+
justify-content: center;
|
|
8754
|
+
align-items: center;
|
|
8755
|
+
min-width: 20px;
|
|
8756
|
+
min-height: 20px;
|
|
8757
|
+
`, Te$1 = h$4`
|
|
8758
|
+
from {
|
|
8759
|
+
transform: scale(0.6);
|
|
8760
|
+
opacity: 0.4;
|
|
8761
|
+
}
|
|
8762
|
+
to {
|
|
8763
|
+
transform: scale(1);
|
|
8764
|
+
opacity: 1;
|
|
8765
|
+
}`, fe$1 = j$1("div")`
|
|
8766
|
+
position: relative;
|
|
8767
|
+
transform: scale(0.6);
|
|
8768
|
+
opacity: 0.4;
|
|
8769
|
+
min-width: 20px;
|
|
8770
|
+
animation: ${Te$1} 0.3s 0.12s cubic-bezier(0.175, 0.885, 0.32, 1.275)
|
|
8771
|
+
forwards;
|
|
8772
|
+
`, M$2 = ({ toast: e2 }) => {
|
|
8773
|
+
let { icon: t2, type: o2, iconTheme: s2 } = e2;
|
|
8774
|
+
return t2 !== void 0 ? typeof t2 == "string" ? reactExports.createElement(fe$1, null, t2) : t2 : o2 === "blank" ? null : reactExports.createElement(le$1, null, reactExports.createElement(V$1, { ...s2 }), o2 !== "loading" && reactExports.createElement(ue$1, null, o2 === "error" ? reactExports.createElement(_, { ...s2 }) : reactExports.createElement(w$2, { ...s2 })));
|
|
8775
|
+
};
|
|
8776
|
+
var ye$1 = (e2) => `
|
|
8777
|
+
0% {transform: translate3d(0,${e2 * -200}%,0) scale(.6); opacity:.5;}
|
|
8778
|
+
100% {transform: translate3d(0,0,0) scale(1); opacity:1;}
|
|
8779
|
+
`, ge$1 = (e2) => `
|
|
8780
|
+
0% {transform: translate3d(0,0,-1px) scale(1); opacity:1;}
|
|
8781
|
+
100% {transform: translate3d(0,${e2 * -150}%,-1px) scale(.6); opacity:0;}
|
|
8782
|
+
`, he$1 = "0%{opacity:0;} 100%{opacity:1;}", xe$1 = "0%{opacity:1;} 100%{opacity:0;}", be$1 = j$1("div")`
|
|
8783
|
+
display: flex;
|
|
8784
|
+
align-items: center;
|
|
8785
|
+
background: #fff;
|
|
8786
|
+
color: #363636;
|
|
8787
|
+
line-height: 1.3;
|
|
8788
|
+
will-change: transform;
|
|
8789
|
+
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05);
|
|
8790
|
+
max-width: 350px;
|
|
8791
|
+
pointer-events: auto;
|
|
8792
|
+
padding: 8px 10px;
|
|
8793
|
+
border-radius: 8px;
|
|
8794
|
+
`, Se$1 = j$1("div")`
|
|
8795
|
+
display: flex;
|
|
8796
|
+
justify-content: center;
|
|
8797
|
+
margin: 4px 10px;
|
|
8798
|
+
color: inherit;
|
|
8799
|
+
flex: 1 1 auto;
|
|
8800
|
+
white-space: pre-line;
|
|
8801
|
+
`, Ae$1 = (e2, t2) => {
|
|
8802
|
+
let s2 = e2.includes("top") ? 1 : -1, [a2, r2] = b$1() ? [he$1, xe$1] : [ye$1(s2), ge$1(s2)];
|
|
8803
|
+
return { animation: t2 ? `${h$4(a2)} 0.35s cubic-bezier(.21,1.02,.73,1) forwards` : `${h$4(r2)} 0.4s forwards cubic-bezier(.06,.71,.55,1)` };
|
|
8804
|
+
}, F = reactExports.memo(({ toast: e2, position: t2, style: o2, children: s2 }) => {
|
|
8805
|
+
let a2 = e2.height ? Ae$1(e2.position || t2 || "top-center", e2.visible) : { opacity: 0 }, r2 = reactExports.createElement(M$2, { toast: e2 }), c6 = reactExports.createElement(Se$1, { ...e2.ariaProps }, T$1(e2.message, e2));
|
|
8806
|
+
return reactExports.createElement(be$1, { className: e2.className, style: { ...a2, ...o2, ...e2.style } }, typeof s2 == "function" ? s2({ icon: r2, message: c6 }) : reactExports.createElement(reactExports.Fragment, null, r2, c6));
|
|
8807
|
+
});
|
|
8808
|
+
m$3(reactExports.createElement);
|
|
8809
|
+
var Ee$1 = ({ id: e2, className: t2, style: o2, onHeightUpdate: s2, children: a2 }) => {
|
|
8810
|
+
let r2 = reactExports.useCallback((c6) => {
|
|
8811
|
+
if (c6) {
|
|
8812
|
+
let i2 = () => {
|
|
8813
|
+
let d2 = c6.getBoundingClientRect().height;
|
|
8814
|
+
s2(e2, d2);
|
|
8815
|
+
};
|
|
8816
|
+
i2(), new MutationObserver(i2).observe(c6, { subtree: true, childList: true, characterData: true });
|
|
8817
|
+
}
|
|
8818
|
+
}, [e2, s2]);
|
|
8819
|
+
return reactExports.createElement("div", { ref: r2, className: t2, style: o2 }, a2);
|
|
8820
|
+
}, Re$1 = (e2, t2) => {
|
|
8821
|
+
let o2 = e2.includes("top"), s2 = o2 ? { top: 0 } : { bottom: 0 }, a2 = e2.includes("center") ? { justifyContent: "center" } : e2.includes("right") ? { justifyContent: "flex-end" } : {};
|
|
8822
|
+
return { left: 0, right: 0, display: "flex", position: "absolute", transition: b$1() ? void 0 : "all 230ms cubic-bezier(.21,1.02,.73,1)", transform: `translateY(${t2 * (o2 ? 1 : -1)}px)`, ...s2, ...a2 };
|
|
8823
|
+
}, ve$1 = u$4`
|
|
8824
|
+
z-index: 9999;
|
|
8825
|
+
> * {
|
|
8826
|
+
pointer-events: auto;
|
|
8827
|
+
}
|
|
8828
|
+
`, O$1 = 16, Ie$1 = ({ reverseOrder: e2, position: t2 = "top-center", toastOptions: o2, gutter: s2, children: a2, containerStyle: r2, containerClassName: c6 }) => {
|
|
8829
|
+
let { toasts: i2, handlers: d2 } = D$1(o2);
|
|
8830
|
+
return reactExports.createElement("div", { style: { position: "fixed", zIndex: 9999, top: O$1, left: O$1, right: O$1, bottom: O$1, pointerEvents: "none", ...r2 }, className: c6, onMouseEnter: d2.startPause, onMouseLeave: d2.endPause }, i2.map((p2) => {
|
|
8831
|
+
let g2 = p2.position || t2, E2 = d2.calculateOffset(p2, { reverseOrder: e2, gutter: s2, defaultPosition: t2 }), x2 = Re$1(g2, E2);
|
|
8832
|
+
return reactExports.createElement(Ee$1, { id: p2.id, key: p2.id, onHeightUpdate: d2.updateHeight, className: p2.visible ? ve$1 : "", style: x2 }, p2.type === "custom" ? T$1(p2.message, p2) : a2 ? a2(p2) : reactExports.createElement(F, { toast: p2, position: g2 }));
|
|
8833
|
+
}));
|
|
8834
|
+
};
|
|
8835
|
+
var _t = n$3;
|
|
8836
|
+
const SvgAlertCircle = ({
|
|
8837
|
+
title,
|
|
8838
|
+
titleId,
|
|
8839
|
+
...props
|
|
8840
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
8841
|
+
"svg",
|
|
8842
|
+
{
|
|
8843
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8844
|
+
width: "24",
|
|
8845
|
+
height: "24",
|
|
8846
|
+
fill: "none",
|
|
8847
|
+
viewBox: "0 0 24 24",
|
|
8848
|
+
"aria-hidden": "true",
|
|
8849
|
+
"aria-labelledby": titleId,
|
|
8850
|
+
...props,
|
|
8851
|
+
children: [
|
|
8852
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
8853
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
8854
|
+
"path",
|
|
8855
|
+
{
|
|
8856
|
+
fill: "currentColor",
|
|
8857
|
+
fillRule: "evenodd",
|
|
8858
|
+
d: "M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12",
|
|
8859
|
+
clipRule: "evenodd"
|
|
8860
|
+
}
|
|
8861
|
+
),
|
|
8862
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
8863
|
+
"path",
|
|
8864
|
+
{
|
|
8865
|
+
fill: "currentColor",
|
|
8866
|
+
fillRule: "evenodd",
|
|
8867
|
+
d: "M12 6a1 1 0 0 1 1 1v5a1 1 0 1 1-2 0V7a1 1 0 0 1 1-1M11 16a1 1 0 0 1 1-1h.01a1 1 0 1 1 0 2H12a1 1 0 0 1-1-1",
|
|
8868
|
+
clipRule: "evenodd"
|
|
8869
|
+
}
|
|
8870
|
+
)
|
|
8871
|
+
]
|
|
8872
|
+
}
|
|
8873
|
+
), SvgAlertCircle$1 = SvgAlertCircle, SvgArrowLeft = ({
|
|
8874
|
+
title,
|
|
8875
|
+
titleId,
|
|
8876
|
+
...props
|
|
8877
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
8878
|
+
"svg",
|
|
8879
|
+
{
|
|
8880
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8881
|
+
width: "24",
|
|
8882
|
+
height: "24",
|
|
8883
|
+
fill: "none",
|
|
8884
|
+
viewBox: "0 0 24 24",
|
|
8885
|
+
"aria-hidden": "true",
|
|
8886
|
+
"aria-labelledby": titleId,
|
|
8887
|
+
...props,
|
|
8888
|
+
children: [
|
|
8889
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
8890
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
8891
|
+
"path",
|
|
8892
|
+
{
|
|
8893
|
+
fill: "currentColor",
|
|
8894
|
+
fillRule: "evenodd",
|
|
8895
|
+
d: "M4 12a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1",
|
|
8896
|
+
clipRule: "evenodd"
|
|
8897
|
+
}
|
|
8898
|
+
),
|
|
8899
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
8900
|
+
"path",
|
|
8901
|
+
{
|
|
8902
|
+
fill: "currentColor",
|
|
8903
|
+
fillRule: "evenodd",
|
|
8904
|
+
d: "M12.707 4.293a1 1 0 0 1 0 1.414L6.414 12l6.293 6.293a1 1 0 0 1-1.414 1.414l-7-7a1 1 0 0 1 0-1.414l7-7a1 1 0 0 1 1.414 0",
|
|
8905
|
+
clipRule: "evenodd"
|
|
8906
|
+
}
|
|
8907
|
+
)
|
|
8908
|
+
]
|
|
8909
|
+
}
|
|
8910
|
+
), SvgArrowLeft$1 = SvgArrowLeft, SvgArrowRight = ({
|
|
8911
|
+
title,
|
|
8912
|
+
titleId,
|
|
8913
|
+
...props
|
|
8914
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
8915
|
+
"svg",
|
|
8916
|
+
{
|
|
8917
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8918
|
+
width: "24",
|
|
8919
|
+
height: "24",
|
|
8920
|
+
fill: "none",
|
|
8921
|
+
viewBox: "0 0 24 24",
|
|
8922
|
+
"aria-hidden": "true",
|
|
8923
|
+
"aria-labelledby": titleId,
|
|
8924
|
+
...props,
|
|
8925
|
+
children: [
|
|
8926
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
8927
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
8928
|
+
"path",
|
|
8929
|
+
{
|
|
8930
|
+
fill: "currentColor",
|
|
8931
|
+
fillRule: "evenodd",
|
|
8932
|
+
d: "M4 12a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1",
|
|
8933
|
+
clipRule: "evenodd"
|
|
8934
|
+
}
|
|
8935
|
+
),
|
|
8936
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
8937
|
+
"path",
|
|
8938
|
+
{
|
|
8939
|
+
fill: "currentColor",
|
|
8940
|
+
fillRule: "evenodd",
|
|
8941
|
+
d: "M11.293 4.293a1 1 0 0 1 1.414 0l7 7a1 1 0 0 1 0 1.414l-7 7a1 1 0 0 1-1.414-1.414L17.586 12l-6.293-6.293a1 1 0 0 1 0-1.414",
|
|
8942
|
+
clipRule: "evenodd"
|
|
8943
|
+
}
|
|
8944
|
+
)
|
|
8945
|
+
]
|
|
8946
|
+
}
|
|
8947
|
+
), SvgArrowRight$1 = SvgArrowRight, SvgBookmark = ({
|
|
8948
|
+
title,
|
|
8949
|
+
titleId,
|
|
8950
|
+
...props
|
|
8951
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
8952
|
+
"svg",
|
|
8953
|
+
{
|
|
8954
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8955
|
+
viewBox: "0 0 24 24",
|
|
8956
|
+
width: "24",
|
|
8957
|
+
height: "24",
|
|
8958
|
+
"aria-hidden": "true",
|
|
8959
|
+
"aria-labelledby": titleId,
|
|
8960
|
+
...props,
|
|
8961
|
+
children: [
|
|
8962
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
8963
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
8964
|
+
"path",
|
|
8965
|
+
{
|
|
8966
|
+
fill: "currentColor",
|
|
8967
|
+
d: "M7 4a1 1 0 0 0-1 1v14.06l5.42-3.87a1 1 0 0 1 1.16 0L18 19.06V5a1 1 0 0 0-1-1zM4.88 2.88A3 3 0 0 1 7 2h10a3 3 0 0 1 3 3v16a1 1 0 0 1-1.58.81L12 17.23 5.58 21.8A1 1 0 0 1 4 21V5a3 3 0 0 1 .88-2.12"
|
|
8968
|
+
}
|
|
8969
|
+
)
|
|
8970
|
+
]
|
|
8971
|
+
}
|
|
8972
|
+
), SvgBookmark$1 = SvgBookmark, SvgBurgerMenu = ({
|
|
8973
|
+
title,
|
|
8974
|
+
titleId,
|
|
8975
|
+
...props
|
|
8976
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
8977
|
+
"svg",
|
|
8978
|
+
{
|
|
8979
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8980
|
+
width: "24",
|
|
8981
|
+
height: "24",
|
|
8982
|
+
fill: "none",
|
|
8983
|
+
viewBox: "0 0 24 24",
|
|
8984
|
+
"aria-hidden": "true",
|
|
8985
|
+
"aria-labelledby": titleId,
|
|
8986
|
+
...props,
|
|
8987
|
+
children: [
|
|
8988
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
8989
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
8990
|
+
"path",
|
|
8991
|
+
{
|
|
8992
|
+
fill: "currentColor",
|
|
8993
|
+
fillRule: "evenodd",
|
|
8994
|
+
d: "M21 5c0 .828-.711 1.5-1.588 1.5H4.588C3.711 6.5 3 5.828 3 5s.711-1.5 1.588-1.5h14.824C20.289 3.5 21 4.172 21 5M21 12c0 .828-.711 1.5-1.588 1.5H4.588C3.711 13.5 3 12.828 3 12s.711-1.5 1.588-1.5h14.824c.877 0 1.588.672 1.588 1.5M21 19c0 .828-.711 1.5-1.588 1.5H4.588C3.711 20.5 3 19.828 3 19s.711-1.5 1.588-1.5h14.824c.877 0 1.588.672 1.588 1.5",
|
|
8995
|
+
clipRule: "evenodd"
|
|
8996
|
+
}
|
|
8997
|
+
)
|
|
8998
|
+
]
|
|
8999
|
+
}
|
|
9000
|
+
), SvgBurgerMenu$1 = SvgBurgerMenu, SvgClose = ({
|
|
9001
|
+
title,
|
|
9002
|
+
titleId,
|
|
9003
|
+
...props
|
|
9004
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9005
|
+
"svg",
|
|
9006
|
+
{
|
|
9007
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9008
|
+
width: "24",
|
|
9009
|
+
height: "24",
|
|
9010
|
+
fill: "none",
|
|
9011
|
+
viewBox: "0 0 24 24",
|
|
9012
|
+
"aria-hidden": "true",
|
|
9013
|
+
"aria-labelledby": titleId,
|
|
9014
|
+
...props,
|
|
9015
|
+
children: [
|
|
9016
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9017
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9018
|
+
"path",
|
|
9019
|
+
{
|
|
9020
|
+
fill: "currentColor",
|
|
9021
|
+
fillRule: "evenodd",
|
|
9022
|
+
d: "M4.222 4.222a1.1 1.1 0 0 1 1.556 0l14 14a1.1 1.1 0 1 1-1.556 1.556l-14-14a1.1 1.1 0 0 1 0-1.556",
|
|
9023
|
+
clipRule: "evenodd"
|
|
9024
|
+
}
|
|
9025
|
+
),
|
|
9026
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9027
|
+
"path",
|
|
9028
|
+
{
|
|
9029
|
+
fill: "currentColor",
|
|
9030
|
+
fillRule: "evenodd",
|
|
9031
|
+
d: "M19.778 4.222a1.1 1.1 0 0 1 0 1.556l-14 14a1.1 1.1 0 1 1-1.556-1.556l14-14a1.1 1.1 0 0 1 1.556 0",
|
|
9032
|
+
clipRule: "evenodd"
|
|
9033
|
+
}
|
|
9034
|
+
)
|
|
9035
|
+
]
|
|
9036
|
+
}
|
|
9037
|
+
), SvgClose$1 = SvgClose, SvgCopy = ({
|
|
9038
|
+
title,
|
|
9039
|
+
titleId,
|
|
9040
|
+
...props
|
|
9041
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9042
|
+
"svg",
|
|
9043
|
+
{
|
|
9044
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9045
|
+
width: "24",
|
|
9046
|
+
height: "24",
|
|
9047
|
+
fill: "none",
|
|
9048
|
+
viewBox: "0 0 24 24",
|
|
9049
|
+
"aria-hidden": "true",
|
|
9050
|
+
"aria-labelledby": titleId,
|
|
9051
|
+
...props,
|
|
9052
|
+
children: [
|
|
9053
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9054
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9055
|
+
"path",
|
|
9056
|
+
{
|
|
9057
|
+
fill: "currentColor",
|
|
9058
|
+
fillRule: "evenodd",
|
|
9059
|
+
d: "M6.676 3c.284-.672.853-1 1.263-1h11.423c.566 0 1.438.628 1.438 1.923v13.154c0 1.056-.58 1.668-1.1 1.858V6.923C19.7 4.99 18.3 3 16.061 3zm-2.272.007C4.765 1.41 6.056 0 7.939 0h11.423C21.599 0 23 1.99 23 3.923v13.154c0 1.865-1.303 3.782-3.403 3.916C19.235 22.59 17.944 24 16.06 24H4.638C2.401 24 1 22.01 1 20.077V6.923c0-1.865 1.303-3.782 3.404-3.916M3.2 6.923C3.2 5.628 4.072 5 4.638 5h11.423c.567 0 1.439.628 1.439 1.923v13.154c0 1.295-.872 1.923-1.439 1.923H4.638c-.566 0-1.438-.628-1.438-1.923z",
|
|
9060
|
+
clipRule: "evenodd"
|
|
9061
|
+
}
|
|
9062
|
+
)
|
|
9063
|
+
]
|
|
9064
|
+
}
|
|
9065
|
+
), SvgCopy$1 = SvgCopy, SvgDelete = ({
|
|
9066
|
+
title,
|
|
9067
|
+
titleId,
|
|
9068
|
+
...props
|
|
9069
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9070
|
+
"svg",
|
|
9071
|
+
{
|
|
9072
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9073
|
+
width: "24",
|
|
9074
|
+
height: "24",
|
|
9075
|
+
fill: "none",
|
|
9076
|
+
viewBox: "0 0 24 24",
|
|
9077
|
+
"aria-hidden": "true",
|
|
9078
|
+
"aria-labelledby": titleId,
|
|
9079
|
+
...props,
|
|
9080
|
+
children: [
|
|
9081
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9082
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9083
|
+
"path",
|
|
9084
|
+
{
|
|
9085
|
+
fill: "currentColor",
|
|
9086
|
+
fillRule: "evenodd",
|
|
9087
|
+
d: "M9.461 3.689a.96.96 0 0 1 .675-.28h3.819a.955.955 0 0 1 .954.955v.954H9.182v-.954c0-.254.1-.496.28-.675m7.357.675v.954h3.818a.955.955 0 0 1 0 1.91h-.954v12.408a2.864 2.864 0 0 1-2.864 2.864H7.273a2.864 2.864 0 0 1-2.864-2.864V7.227h-.954a.955.955 0 1 1 0-1.909h3.818v-.954A2.864 2.864 0 0 1 10.136 1.5h3.819a2.864 2.864 0 0 1 2.863 2.864m-10.5 2.863v12.41a.954.954 0 0 0 .955.954h9.545a.955.955 0 0 0 .955-.955V7.227zm3.818 2.864c.528 0 .955.427.955.955v5.727a.955.955 0 1 1-1.91 0v-5.727c0-.528.428-.955.955-.955m4.773 6.682v-5.727a.955.955 0 0 0-1.909 0v5.727a.955.955 0 1 0 1.91 0",
|
|
9088
|
+
clipRule: "evenodd"
|
|
9089
|
+
}
|
|
9090
|
+
)
|
|
9091
|
+
]
|
|
9092
|
+
}
|
|
9093
|
+
), SvgDelete$1 = SvgDelete, SvgEdit = ({
|
|
9094
|
+
title,
|
|
9095
|
+
titleId,
|
|
9096
|
+
...props
|
|
9097
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9098
|
+
"svg",
|
|
9099
|
+
{
|
|
9100
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9101
|
+
width: "24",
|
|
9102
|
+
height: "24",
|
|
9103
|
+
fill: "none",
|
|
9104
|
+
viewBox: "0 0 24 24",
|
|
9105
|
+
"aria-hidden": "true",
|
|
9106
|
+
"aria-labelledby": titleId,
|
|
9107
|
+
...props,
|
|
9108
|
+
children: [
|
|
9109
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9110
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9111
|
+
"path",
|
|
9112
|
+
{
|
|
9113
|
+
fill: "currentColor",
|
|
9114
|
+
fillRule: "evenodd",
|
|
9115
|
+
d: "M1.879 3.879A3 3 0 0 1 4 3h7a1 1 0 1 1 0 2H4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-7a1 1 0 1 1 2 0v7a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V6a3 3 0 0 1 .879-2.121",
|
|
9116
|
+
clipRule: "evenodd"
|
|
9117
|
+
}
|
|
9118
|
+
),
|
|
9119
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9120
|
+
"path",
|
|
9121
|
+
{
|
|
9122
|
+
fill: "currentColor",
|
|
9123
|
+
fillRule: "evenodd",
|
|
9124
|
+
d: "M20 2.879c-.297 0-.583.118-.793.328l-9.304 9.304-.529 2.115 2.115-.529 9.304-9.304A1.121 1.121 0 0 0 20 2.879m-2.207-1.086a3.121 3.121 0 0 1 4.414 4.414l-9.5 9.5a1 1 0 0 1-.464.263l-4 1a1 1 0 0 1-1.213-1.212l1-4a1 1 0 0 1 .263-.465z",
|
|
9125
|
+
clipRule: "evenodd"
|
|
9126
|
+
}
|
|
9127
|
+
)
|
|
9128
|
+
]
|
|
9129
|
+
}
|
|
9130
|
+
), SvgEdit$1 = SvgEdit, SvgError = ({
|
|
9131
|
+
title,
|
|
9132
|
+
titleId,
|
|
9133
|
+
...props
|
|
9134
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9135
|
+
"svg",
|
|
9136
|
+
{
|
|
9137
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9138
|
+
width: "24",
|
|
9139
|
+
height: "24",
|
|
9140
|
+
fill: "none",
|
|
9141
|
+
viewBox: "0 0 24 24",
|
|
9142
|
+
"aria-hidden": "true",
|
|
9143
|
+
"aria-labelledby": titleId,
|
|
9144
|
+
...props,
|
|
9145
|
+
children: [
|
|
9146
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9147
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9148
|
+
"path",
|
|
9149
|
+
{
|
|
9150
|
+
fill: "currentColor",
|
|
9151
|
+
fillRule: "evenodd",
|
|
9152
|
+
d: "M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0m9-11C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1M8.293 15.707a1 1 0 0 1 0-1.414L10.586 12 8.293 9.707a1 1 0 0 1 1.414-1.414L12 10.586l2.293-2.293a1 1 0 1 1 1.414 1.414L13.414 12l2.293 2.293a1 1 0 0 1-1.414 1.414L12 13.414l-2.293 2.293a1 1 0 0 1-1.414 0",
|
|
9153
|
+
clipRule: "evenodd"
|
|
9154
|
+
}
|
|
9155
|
+
)
|
|
9156
|
+
]
|
|
9157
|
+
}
|
|
9158
|
+
), SvgError$1 = SvgError, SvgFiles = ({
|
|
9159
|
+
title,
|
|
9160
|
+
titleId,
|
|
9161
|
+
...props
|
|
9162
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9163
|
+
"svg",
|
|
9164
|
+
{
|
|
9165
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9166
|
+
fill: "none",
|
|
9167
|
+
viewBox: "0 0 24 24",
|
|
9168
|
+
width: "24",
|
|
9169
|
+
height: "24",
|
|
9170
|
+
"aria-hidden": "true",
|
|
9171
|
+
"aria-labelledby": titleId,
|
|
9172
|
+
...props,
|
|
9173
|
+
children: [
|
|
9174
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9175
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9176
|
+
"path",
|
|
9177
|
+
{
|
|
9178
|
+
fill: "currentColor",
|
|
9179
|
+
fillRule: "evenodd",
|
|
9180
|
+
d: "M20.91 9.14v1.27H8.25a4.7 4.7 0 0 0-3.86 1.98L1.5 16.53V6.4a2.3 2.3 0 0 1 .77-1.69A2.68 2.68 0 0 1 4.11 4h3.73a2.68 2.68 0 0 1 1.84.71c.25.22.45.48.58.77s.2.6.2.92v.34h7.84c.7.01 1.35.27 1.84.71.49.45.76 1.06.77 1.7ZM8.25 11.92h14.47c.63 0 1 .68.64 1.18l-3.52 5.04a3.13 3.13 0 0 1-2.57 1.32H2.79c-.62 0-.99-.68-.64-1.18l3.53-5.04a3.13 3.13 0 0 1 2.57-1.32",
|
|
9181
|
+
clipRule: "evenodd"
|
|
9149
9182
|
}
|
|
9150
|
-
|
|
9151
|
-
|
|
9152
|
-
|
|
9153
|
-
|
|
9154
|
-
|
|
9155
|
-
|
|
9156
|
-
|
|
9157
|
-
|
|
9158
|
-
|
|
9159
|
-
|
|
9160
|
-
|
|
9161
|
-
|
|
9162
|
-
|
|
9163
|
-
|
|
9164
|
-
|
|
9165
|
-
|
|
9183
|
+
)
|
|
9184
|
+
]
|
|
9185
|
+
}
|
|
9186
|
+
), SvgFiles$1 = SvgFiles, SvgFilter = ({
|
|
9187
|
+
title,
|
|
9188
|
+
titleId,
|
|
9189
|
+
...props
|
|
9190
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9191
|
+
"svg",
|
|
9192
|
+
{
|
|
9193
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9194
|
+
width: "24",
|
|
9195
|
+
height: "24",
|
|
9196
|
+
fill: "none",
|
|
9197
|
+
viewBox: "0 0 24 24",
|
|
9198
|
+
"aria-hidden": "true",
|
|
9199
|
+
"aria-labelledby": titleId,
|
|
9200
|
+
...props,
|
|
9201
|
+
children: [
|
|
9202
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9203
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9204
|
+
"path",
|
|
9205
|
+
{
|
|
9206
|
+
fill: "currentColor",
|
|
9207
|
+
fillRule: "evenodd",
|
|
9208
|
+
d: "M1.093 2.58A1 1 0 0 1 2 2h20a1 1 0 0 1 .764 1.646L15 12.826V21a1 1 0 0 1-1.447.894l-4-2A1 1 0 0 1 9 19v-6.174l-7.764-9.18a1 1 0 0 1-.143-1.067M4.155 4l6.609 7.814a1 1 0 0 1 .236.646v5.922l2 1V12.46a1 1 0 0 1 .236-.646L19.845 4z",
|
|
9209
|
+
clipRule: "evenodd"
|
|
9166
9210
|
}
|
|
9167
|
-
|
|
9168
|
-
|
|
9169
|
-
|
|
9170
|
-
|
|
9171
|
-
|
|
9172
|
-
|
|
9173
|
-
|
|
9174
|
-
|
|
9175
|
-
|
|
9176
|
-
|
|
9177
|
-
|
|
9178
|
-
|
|
9179
|
-
|
|
9180
|
-
|
|
9181
|
-
|
|
9182
|
-
|
|
9183
|
-
|
|
9184
|
-
|
|
9185
|
-
|
|
9186
|
-
|
|
9187
|
-
|
|
9188
|
-
|
|
9189
|
-
|
|
9190
|
-
|
|
9191
|
-
|
|
9192
|
-
|
|
9193
|
-
|
|
9194
|
-
{
|
|
9195
|
-
if (module.exports) {
|
|
9196
|
-
exports = module.exports = UAParser;
|
|
9197
|
-
}
|
|
9198
|
-
exports.UAParser = UAParser;
|
|
9199
|
-
}
|
|
9200
|
-
var $2 = typeof window2 !== UNDEF_TYPE && (window2.jQuery || window2.Zepto);
|
|
9201
|
-
if ($2 && !$2.ua) {
|
|
9202
|
-
var parser = new UAParser();
|
|
9203
|
-
$2.ua = parser.getResult();
|
|
9204
|
-
$2.ua.get = function() {
|
|
9205
|
-
return parser.getUA();
|
|
9206
|
-
};
|
|
9207
|
-
$2.ua.set = function(ua2) {
|
|
9208
|
-
parser.setUA(ua2);
|
|
9209
|
-
var result = parser.getResult();
|
|
9210
|
-
for (var prop in result) {
|
|
9211
|
-
$2.ua[prop] = result[prop];
|
|
9211
|
+
)
|
|
9212
|
+
]
|
|
9213
|
+
}
|
|
9214
|
+
), SvgFilter$1 = SvgFilter, SvgFolder = ({
|
|
9215
|
+
title,
|
|
9216
|
+
titleId,
|
|
9217
|
+
...props
|
|
9218
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9219
|
+
"svg",
|
|
9220
|
+
{
|
|
9221
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9222
|
+
width: "24",
|
|
9223
|
+
height: "24",
|
|
9224
|
+
fill: "none",
|
|
9225
|
+
viewBox: "0 0 24 24",
|
|
9226
|
+
"aria-hidden": "true",
|
|
9227
|
+
"aria-labelledby": titleId,
|
|
9228
|
+
...props,
|
|
9229
|
+
children: [
|
|
9230
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9231
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9232
|
+
"path",
|
|
9233
|
+
{
|
|
9234
|
+
fill: "currentColor",
|
|
9235
|
+
fillRule: "evenodd",
|
|
9236
|
+
d: "M3.057 5.5A.057.057 0 0 0 3 5.557v13.03h18V7.875h-8.697a1 1 0 0 1-1-1c0-.759-.615-1.374-1.374-1.374zM1 5.557C1 4.42 1.92 3.5 3.057 3.5h6.872c1.515 0 2.797.999 3.223 2.374H21a2 2 0 0 1 2 2v10.714a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2z",
|
|
9237
|
+
clipRule: "evenodd"
|
|
9212
9238
|
}
|
|
9213
|
-
|
|
9214
|
-
|
|
9215
|
-
})(typeof window === "object" ? window : commonjsGlobal);
|
|
9216
|
-
})(uaParser, uaParser.exports);
|
|
9217
|
-
let e$2 = { data: "" }, t$3 = (t2) => "object" == typeof window ? ((t2 ? t2.querySelector("#_goober") : window._goober) || Object.assign((t2 || document.head).appendChild(document.createElement("style")), { innerHTML: " ", id: "_goober" })).firstChild : t2 || e$2, l$2 = /(?:([\u0080-\uFFFF\w-%@]+) *:? *([^{;]+?);|([^;}{]*?) *{)|(}\s*)/g, a$1 = /\/\*[^]*?\*\/| +/g, n$4 = /\n+/g, o$1 = (e2, t2) => {
|
|
9218
|
-
let r2 = "", l2 = "", a2 = "";
|
|
9219
|
-
for (let n2 in e2) {
|
|
9220
|
-
let c6 = e2[n2];
|
|
9221
|
-
"@" == n2[0] ? "i" == n2[1] ? r2 = n2 + " " + c6 + ";" : l2 += "f" == n2[1] ? o$1(c6, n2) : n2 + "{" + o$1(c6, "k" == n2[1] ? "" : t2) + "}" : "object" == typeof c6 ? l2 += o$1(c6, t2 ? t2.replace(/([^,])+/g, (e3) => n2.replace(/(^:.*)|([^,])+/g, (t3) => /&/.test(t3) ? t3.replace(/&/g, e3) : e3 ? e3 + " " + t3 : t3)) : n2) : null != c6 && (n2 = /^--/.test(n2) ? n2 : n2.replace(/[A-Z]/g, "-$&").toLowerCase(), a2 += o$1.p ? o$1.p(n2, c6) : n2 + ":" + c6 + ";");
|
|
9239
|
+
)
|
|
9240
|
+
]
|
|
9222
9241
|
}
|
|
9223
|
-
|
|
9224
|
-
|
|
9225
|
-
|
|
9226
|
-
|
|
9227
|
-
|
|
9228
|
-
|
|
9229
|
-
|
|
9242
|
+
), SvgFolder$1 = SvgFolder, SvgGlobe = ({
|
|
9243
|
+
title,
|
|
9244
|
+
titleId,
|
|
9245
|
+
...props
|
|
9246
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9247
|
+
"svg",
|
|
9248
|
+
{
|
|
9249
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9250
|
+
width: "24",
|
|
9251
|
+
height: "24",
|
|
9252
|
+
fill: "none",
|
|
9253
|
+
viewBox: "0 0 24 24",
|
|
9254
|
+
"aria-hidden": "true",
|
|
9255
|
+
"aria-labelledby": titleId,
|
|
9256
|
+
...props,
|
|
9257
|
+
children: [
|
|
9258
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9259
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9260
|
+
"path",
|
|
9261
|
+
{
|
|
9262
|
+
fill: "currentColor",
|
|
9263
|
+
fillRule: "evenodd",
|
|
9264
|
+
d: "M9.726 3.29A9.01 9.01 0 0 0 3.055 11H7.05a16.3 16.3 0 0 1 2.676-7.71m4.548 0A16.3 16.3 0 0 1 16.95 11h3.995a9.01 9.01 0 0 0-6.67-7.71m.668 7.71A14.3 14.3 0 0 0 12 3.55 14.3 14.3 0 0 0 9.058 11zm-5.884 2h5.884A14.3 14.3 0 0 1 12 20.45 14.3 14.3 0 0 1 9.058 13M7.05 13H3.055a9.01 9.01 0 0 0 6.67 7.71A16.3 16.3 0 0 1 7.05 13m7.224 7.71A16.3 16.3 0 0 0 16.95 13h3.995a9.01 9.01 0 0 1-6.67 7.71M12 23c6.075 0 11-4.925 11-11S18.075 1 12 1 1 5.925 1 12s4.925 11 11 11",
|
|
9265
|
+
clipRule: "evenodd"
|
|
9266
|
+
}
|
|
9267
|
+
)
|
|
9268
|
+
]
|
|
9230
9269
|
}
|
|
9231
|
-
|
|
9232
|
-
|
|
9233
|
-
|
|
9234
|
-
|
|
9235
|
-
|
|
9236
|
-
|
|
9237
|
-
|
|
9238
|
-
|
|
9239
|
-
|
|
9240
|
-
|
|
9241
|
-
|
|
9242
|
-
|
|
9243
|
-
|
|
9244
|
-
|
|
9245
|
-
|
|
9246
|
-
|
|
9270
|
+
), SvgGlobe$1 = SvgGlobe, SvgInfoCircle = ({
|
|
9271
|
+
title,
|
|
9272
|
+
titleId,
|
|
9273
|
+
...props
|
|
9274
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9275
|
+
"svg",
|
|
9276
|
+
{
|
|
9277
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9278
|
+
width: "24",
|
|
9279
|
+
height: "24",
|
|
9280
|
+
fill: "none",
|
|
9281
|
+
viewBox: "0 0 24 24",
|
|
9282
|
+
"aria-hidden": "true",
|
|
9283
|
+
"aria-labelledby": titleId,
|
|
9284
|
+
...props,
|
|
9285
|
+
children: [
|
|
9286
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9287
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9288
|
+
"path",
|
|
9289
|
+
{
|
|
9290
|
+
fill: "currentColor",
|
|
9291
|
+
fillRule: "evenodd",
|
|
9292
|
+
d: "M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12",
|
|
9293
|
+
clipRule: "evenodd"
|
|
9294
|
+
}
|
|
9295
|
+
),
|
|
9296
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9297
|
+
"path",
|
|
9298
|
+
{
|
|
9299
|
+
fill: "currentColor",
|
|
9300
|
+
fillRule: "evenodd",
|
|
9301
|
+
d: "M12.01 17a1 1 0 0 1-1-1v-5a1 1 0 1 1 2 0v5a1 1 0 0 1-1 1M13.01 7.5a1 1 0 0 1-1 1H12a1 1 0 1 1 0-2h.01a1 1 0 0 1 1 1",
|
|
9302
|
+
clipRule: "evenodd"
|
|
9303
|
+
}
|
|
9304
|
+
)
|
|
9305
|
+
]
|
|
9247
9306
|
}
|
|
9248
|
-
|
|
9249
|
-
|
|
9250
|
-
|
|
9251
|
-
|
|
9252
|
-
}
|
|
9253
|
-
|
|
9254
|
-
|
|
9255
|
-
|
|
9256
|
-
|
|
9307
|
+
), SvgInfoCircle$1 = SvgInfoCircle, SvgLoader = ({
|
|
9308
|
+
title,
|
|
9309
|
+
titleId,
|
|
9310
|
+
...props
|
|
9311
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9312
|
+
"svg",
|
|
9313
|
+
{
|
|
9314
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9315
|
+
width: "24",
|
|
9316
|
+
height: "24",
|
|
9317
|
+
fill: "none",
|
|
9318
|
+
viewBox: "0 0 24 24",
|
|
9319
|
+
"aria-hidden": "true",
|
|
9320
|
+
"aria-labelledby": titleId,
|
|
9321
|
+
...props,
|
|
9322
|
+
children: [
|
|
9323
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9324
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9325
|
+
"path",
|
|
9326
|
+
{
|
|
9327
|
+
fill: "currentColor",
|
|
9328
|
+
fillRule: "evenodd",
|
|
9329
|
+
d: "M16.672 5.558a7.96 7.96 0 0 0-9.841.397 7.95 7.95 0 0 0-1.908 9.66 7.964 7.964 0 0 0 8.949 4.12A7.95 7.95 0 0 0 19.962 12a1.021 1.021 0 1 1 2.045 0A9.994 9.994 0 0 1 7.83 21.083a10.01 10.01 0 0 1-5.634-11.027 9.99 9.99 0 0 1 9.402-8.048c2.244-.09 4.453.577 6.272 1.895a1.022 1.022 0 1 1-1.198 1.655",
|
|
9330
|
+
clipRule: "evenodd"
|
|
9331
|
+
}
|
|
9332
|
+
)
|
|
9333
|
+
]
|
|
9257
9334
|
}
|
|
9258
|
-
|
|
9259
|
-
|
|
9260
|
-
|
|
9261
|
-
|
|
9262
|
-
|
|
9263
|
-
|
|
9264
|
-
|
|
9265
|
-
|
|
9266
|
-
|
|
9267
|
-
|
|
9268
|
-
|
|
9269
|
-
|
|
9270
|
-
|
|
9271
|
-
|
|
9272
|
-
|
|
9273
|
-
|
|
9274
|
-
|
|
9275
|
-
|
|
9276
|
-
|
|
9277
|
-
|
|
9278
|
-
|
|
9279
|
-
}
|
|
9280
|
-
return a2;
|
|
9281
|
-
};
|
|
9282
|
-
}
|
|
9283
|
-
var W$2 = (e2) => typeof e2 == "function", T$1 = (e2, t2) => W$2(e2) ? e2(t2) : e2;
|
|
9284
|
-
var U$1 = /* @__PURE__ */ (() => {
|
|
9285
|
-
let e2 = 0;
|
|
9286
|
-
return () => (++e2).toString();
|
|
9287
|
-
})(), b$1 = /* @__PURE__ */ (() => {
|
|
9288
|
-
let e2;
|
|
9289
|
-
return () => {
|
|
9290
|
-
if (e2 === void 0 && typeof window < "u") {
|
|
9291
|
-
let t2 = matchMedia("(prefers-reduced-motion: reduce)");
|
|
9292
|
-
e2 = !t2 || t2.matches;
|
|
9293
|
-
}
|
|
9294
|
-
return e2;
|
|
9295
|
-
};
|
|
9296
|
-
})();
|
|
9297
|
-
var Q$1 = 20;
|
|
9298
|
-
var S$2 = /* @__PURE__ */ new Map(), X$1 = 1e3, $$1 = (e2) => {
|
|
9299
|
-
if (S$2.has(e2))
|
|
9300
|
-
return;
|
|
9301
|
-
let t2 = setTimeout(() => {
|
|
9302
|
-
S$2.delete(e2), u$3({ type: 4, toastId: e2 });
|
|
9303
|
-
}, X$1);
|
|
9304
|
-
S$2.set(e2, t2);
|
|
9305
|
-
}, J = (e2) => {
|
|
9306
|
-
let t2 = S$2.get(e2);
|
|
9307
|
-
t2 && clearTimeout(t2);
|
|
9308
|
-
}, v$3 = (e2, t2) => {
|
|
9309
|
-
switch (t2.type) {
|
|
9310
|
-
case 0:
|
|
9311
|
-
return { ...e2, toasts: [t2.toast, ...e2.toasts].slice(0, Q$1) };
|
|
9312
|
-
case 1:
|
|
9313
|
-
return t2.toast.id && J(t2.toast.id), { ...e2, toasts: e2.toasts.map((r2) => r2.id === t2.toast.id ? { ...r2, ...t2.toast } : r2) };
|
|
9314
|
-
case 2:
|
|
9315
|
-
let { toast: o2 } = t2;
|
|
9316
|
-
return e2.toasts.find((r2) => r2.id === o2.id) ? v$3(e2, { type: 1, toast: o2 }) : v$3(e2, { type: 0, toast: o2 });
|
|
9317
|
-
case 3:
|
|
9318
|
-
let { toastId: s2 } = t2;
|
|
9319
|
-
return s2 ? $$1(s2) : e2.toasts.forEach((r2) => {
|
|
9320
|
-
$$1(r2.id);
|
|
9321
|
-
}), { ...e2, toasts: e2.toasts.map((r2) => r2.id === s2 || s2 === void 0 ? { ...r2, visible: false } : r2) };
|
|
9322
|
-
case 4:
|
|
9323
|
-
return t2.toastId === void 0 ? { ...e2, toasts: [] } : { ...e2, toasts: e2.toasts.filter((r2) => r2.id !== t2.toastId) };
|
|
9324
|
-
case 5:
|
|
9325
|
-
return { ...e2, pausedAt: t2.time };
|
|
9326
|
-
case 6:
|
|
9327
|
-
let a2 = t2.time - (e2.pausedAt || 0);
|
|
9328
|
-
return { ...e2, pausedAt: void 0, toasts: e2.toasts.map((r2) => ({ ...r2, pauseDuration: r2.pauseDuration + a2 })) };
|
|
9335
|
+
), SvgLoader$1 = SvgLoader, SvgOptions = ({
|
|
9336
|
+
title,
|
|
9337
|
+
titleId,
|
|
9338
|
+
...props
|
|
9339
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9340
|
+
"svg",
|
|
9341
|
+
{
|
|
9342
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9343
|
+
width: "24",
|
|
9344
|
+
height: "24",
|
|
9345
|
+
fill: "none",
|
|
9346
|
+
viewBox: "0 0 24 24",
|
|
9347
|
+
"aria-hidden": "true",
|
|
9348
|
+
"aria-labelledby": titleId,
|
|
9349
|
+
...props,
|
|
9350
|
+
children: [
|
|
9351
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9352
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("circle", { cx: 12, cy: 4, r: 2.5, fill: "currentColor" }),
|
|
9353
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("circle", { cx: 12, cy: 12, r: 2.5, fill: "currentColor" }),
|
|
9354
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("circle", { cx: 12, cy: 20, r: 2.5, fill: "currentColor" })
|
|
9355
|
+
]
|
|
9329
9356
|
}
|
|
9330
|
-
|
|
9331
|
-
|
|
9332
|
-
|
|
9333
|
-
|
|
9334
|
-
}
|
|
9335
|
-
|
|
9336
|
-
|
|
9337
|
-
|
|
9338
|
-
|
|
9339
|
-
|
|
9340
|
-
|
|
9341
|
-
|
|
9342
|
-
|
|
9343
|
-
|
|
9344
|
-
|
|
9345
|
-
|
|
9346
|
-
|
|
9347
|
-
|
|
9348
|
-
|
|
9349
|
-
|
|
9350
|
-
|
|
9351
|
-
|
|
9352
|
-
|
|
9353
|
-
|
|
9354
|
-
|
|
9355
|
-
|
|
9356
|
-
|
|
9357
|
-
n$3.remove = (e2) => u$3({ type: 4, toastId: e2 });
|
|
9358
|
-
n$3.promise = (e2, t2, o2) => {
|
|
9359
|
-
let s2 = n$3.loading(t2.loading, { ...o2, ...o2 == null ? void 0 : o2.loading });
|
|
9360
|
-
return e2.then((a2) => (n$3.success(T$1(t2.success, a2), { id: s2, ...o2, ...o2 == null ? void 0 : o2.success }), a2)).catch((a2) => {
|
|
9361
|
-
n$3.error(T$1(t2.error, a2), { id: s2, ...o2, ...o2 == null ? void 0 : o2.error });
|
|
9362
|
-
}), e2;
|
|
9363
|
-
};
|
|
9364
|
-
var Z$1 = (e2, t2) => {
|
|
9365
|
-
u$3({ type: 1, toast: { id: e2, height: t2 } });
|
|
9366
|
-
}, ee$1 = () => {
|
|
9367
|
-
u$3({ type: 5, time: Date.now() });
|
|
9368
|
-
}, D$1 = (e2) => {
|
|
9369
|
-
let { toasts: t2, pausedAt: o2 } = I$1(e2);
|
|
9370
|
-
reactExports.useEffect(() => {
|
|
9371
|
-
if (o2)
|
|
9372
|
-
return;
|
|
9373
|
-
let r2 = Date.now(), c6 = t2.map((i2) => {
|
|
9374
|
-
if (i2.duration === 1 / 0)
|
|
9375
|
-
return;
|
|
9376
|
-
let d2 = (i2.duration || 0) + i2.pauseDuration - (r2 - i2.createdAt);
|
|
9377
|
-
if (d2 < 0) {
|
|
9378
|
-
i2.visible && n$3.dismiss(i2.id);
|
|
9379
|
-
return;
|
|
9380
|
-
}
|
|
9381
|
-
return setTimeout(() => n$3.dismiss(i2.id), d2);
|
|
9382
|
-
});
|
|
9383
|
-
return () => {
|
|
9384
|
-
c6.forEach((i2) => i2 && clearTimeout(i2));
|
|
9385
|
-
};
|
|
9386
|
-
}, [t2, o2]);
|
|
9387
|
-
let s2 = reactExports.useCallback(() => {
|
|
9388
|
-
o2 && u$3({ type: 6, time: Date.now() });
|
|
9389
|
-
}, [o2]), a2 = reactExports.useCallback((r2, c6) => {
|
|
9390
|
-
let { reverseOrder: i2 = false, gutter: d2 = 8, defaultPosition: p2 } = c6 || {}, g2 = t2.filter((m2) => (m2.position || p2) === (r2.position || p2) && m2.height), E2 = g2.findIndex((m2) => m2.id === r2.id), x2 = g2.filter((m2, R2) => R2 < E2 && m2.visible).length;
|
|
9391
|
-
return g2.filter((m2) => m2.visible).slice(...i2 ? [x2 + 1] : [0, x2]).reduce((m2, R2) => m2 + (R2.height || 0) + d2, 0);
|
|
9392
|
-
}, [t2]);
|
|
9393
|
-
return { toasts: t2, handlers: { updateHeight: Z$1, startPause: ee$1, endPause: s2, calculateOffset: a2 } };
|
|
9394
|
-
};
|
|
9395
|
-
var oe$1 = h$4`
|
|
9396
|
-
from {
|
|
9397
|
-
transform: scale(0) rotate(45deg);
|
|
9398
|
-
opacity: 0;
|
|
9399
|
-
}
|
|
9400
|
-
to {
|
|
9401
|
-
transform: scale(1) rotate(45deg);
|
|
9402
|
-
opacity: 1;
|
|
9403
|
-
}`, re$1 = h$4`
|
|
9404
|
-
from {
|
|
9405
|
-
transform: scale(0);
|
|
9406
|
-
opacity: 0;
|
|
9407
|
-
}
|
|
9408
|
-
to {
|
|
9409
|
-
transform: scale(1);
|
|
9410
|
-
opacity: 1;
|
|
9411
|
-
}`, se$1 = h$4`
|
|
9412
|
-
from {
|
|
9413
|
-
transform: scale(0) rotate(90deg);
|
|
9414
|
-
opacity: 0;
|
|
9415
|
-
}
|
|
9416
|
-
to {
|
|
9417
|
-
transform: scale(1) rotate(90deg);
|
|
9418
|
-
opacity: 1;
|
|
9419
|
-
}`, _ = j$1("div")`
|
|
9420
|
-
width: 20px;
|
|
9421
|
-
opacity: 0;
|
|
9422
|
-
height: 20px;
|
|
9423
|
-
border-radius: 10px;
|
|
9424
|
-
background: ${(e2) => e2.primary || "#ff4b4b"};
|
|
9425
|
-
position: relative;
|
|
9426
|
-
transform: rotate(45deg);
|
|
9427
|
-
|
|
9428
|
-
animation: ${oe$1} 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
|
|
9429
|
-
forwards;
|
|
9430
|
-
animation-delay: 100ms;
|
|
9431
|
-
|
|
9432
|
-
&:after,
|
|
9433
|
-
&:before {
|
|
9434
|
-
content: '';
|
|
9435
|
-
animation: ${re$1} 0.15s ease-out forwards;
|
|
9436
|
-
animation-delay: 150ms;
|
|
9437
|
-
position: absolute;
|
|
9438
|
-
border-radius: 3px;
|
|
9439
|
-
opacity: 0;
|
|
9440
|
-
background: ${(e2) => e2.secondary || "#fff"};
|
|
9441
|
-
bottom: 9px;
|
|
9442
|
-
left: 4px;
|
|
9443
|
-
height: 2px;
|
|
9444
|
-
width: 12px;
|
|
9357
|
+
), SvgOptions$1 = SvgOptions, SvgPlus = ({
|
|
9358
|
+
title,
|
|
9359
|
+
titleId,
|
|
9360
|
+
...props
|
|
9361
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9362
|
+
"svg",
|
|
9363
|
+
{
|
|
9364
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9365
|
+
width: "24",
|
|
9366
|
+
height: "24",
|
|
9367
|
+
fill: "none",
|
|
9368
|
+
viewBox: "0 0 24 24",
|
|
9369
|
+
"aria-hidden": "true",
|
|
9370
|
+
"aria-labelledby": titleId,
|
|
9371
|
+
...props,
|
|
9372
|
+
children: [
|
|
9373
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9374
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9375
|
+
"path",
|
|
9376
|
+
{
|
|
9377
|
+
fill: "currentColor",
|
|
9378
|
+
fillRule: "evenodd",
|
|
9379
|
+
d: "M13 4a1 1 0 1 0-2 0v7H4a1 1 0 1 0 0 2h7v7a1 1 0 1 0 2 0v-7h7a1 1 0 1 0 0-2h-7z",
|
|
9380
|
+
clipRule: "evenodd"
|
|
9381
|
+
}
|
|
9382
|
+
)
|
|
9383
|
+
]
|
|
9445
9384
|
}
|
|
9446
|
-
|
|
9447
|
-
|
|
9448
|
-
|
|
9449
|
-
|
|
9450
|
-
|
|
9385
|
+
), SvgPlus$1 = SvgPlus, SvgRafterDown = ({
|
|
9386
|
+
title,
|
|
9387
|
+
titleId,
|
|
9388
|
+
...props
|
|
9389
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9390
|
+
"svg",
|
|
9391
|
+
{
|
|
9392
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9393
|
+
width: "24",
|
|
9394
|
+
height: "24",
|
|
9395
|
+
fill: "none",
|
|
9396
|
+
viewBox: "0 0 24 24",
|
|
9397
|
+
"aria-hidden": "true",
|
|
9398
|
+
"aria-labelledby": titleId,
|
|
9399
|
+
...props,
|
|
9400
|
+
children: [
|
|
9401
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9402
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9403
|
+
"path",
|
|
9404
|
+
{
|
|
9405
|
+
fill: "currentColor",
|
|
9406
|
+
fillRule: "evenodd",
|
|
9407
|
+
d: "M4.012 7.871a1.5 1.5 0 0 1 2.117.141L12 14.722l5.871-6.71a1.5 1.5 0 1 1 2.258 1.976l-7 8a1.5 1.5 0 0 1-2.258 0l-7-8a1.5 1.5 0 0 1 .141-2.117",
|
|
9408
|
+
clipRule: "evenodd"
|
|
9409
|
+
}
|
|
9410
|
+
)
|
|
9411
|
+
]
|
|
9451
9412
|
}
|
|
9452
|
-
|
|
9453
|
-
|
|
9454
|
-
|
|
9455
|
-
|
|
9413
|
+
), SvgRafterDown$1 = SvgRafterDown, SvgRafterRight = ({
|
|
9414
|
+
title,
|
|
9415
|
+
titleId,
|
|
9416
|
+
...props
|
|
9417
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9418
|
+
"svg",
|
|
9419
|
+
{
|
|
9420
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9421
|
+
width: "24",
|
|
9422
|
+
height: "24",
|
|
9423
|
+
fill: "none",
|
|
9424
|
+
viewBox: "0 0 24 24",
|
|
9425
|
+
"aria-hidden": "true",
|
|
9426
|
+
"aria-labelledby": titleId,
|
|
9427
|
+
...props,
|
|
9428
|
+
children: [
|
|
9429
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9430
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9431
|
+
"path",
|
|
9432
|
+
{
|
|
9433
|
+
fill: "currentColor",
|
|
9434
|
+
fillRule: "evenodd",
|
|
9435
|
+
d: "M7.871 19.988a1.5 1.5 0 0 1 .141-2.117L14.722 12l-6.71-5.871A1.5 1.5 0 0 1 9.988 3.87l8 7a1.5 1.5 0 0 1 0 2.258l-8 7a1.5 1.5 0 0 1-2.117-.141",
|
|
9436
|
+
clipRule: "evenodd"
|
|
9437
|
+
}
|
|
9438
|
+
)
|
|
9439
|
+
]
|
|
9456
9440
|
}
|
|
9457
|
-
|
|
9458
|
-
|
|
9441
|
+
), SvgRafterRight$1 = SvgRafterRight, SvgRafterUp = ({
|
|
9442
|
+
title,
|
|
9443
|
+
titleId,
|
|
9444
|
+
...props
|
|
9445
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9446
|
+
"svg",
|
|
9447
|
+
{
|
|
9448
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9449
|
+
width: "24",
|
|
9450
|
+
height: "24",
|
|
9451
|
+
fill: "none",
|
|
9452
|
+
viewBox: "0 0 24 24",
|
|
9453
|
+
"aria-hidden": "true",
|
|
9454
|
+
"aria-labelledby": titleId,
|
|
9455
|
+
...props,
|
|
9456
|
+
children: [
|
|
9457
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9458
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9459
|
+
"path",
|
|
9460
|
+
{
|
|
9461
|
+
fill: "currentColor",
|
|
9462
|
+
fillRule: "evenodd",
|
|
9463
|
+
d: "M19.988 17.129a1.5 1.5 0 0 1-2.117-.141L12 10.278l-5.871 6.71a1.5 1.5 0 0 1-2.258-1.976l7-8a1.5 1.5 0 0 1 2.258 0l7 8a1.5 1.5 0 0 1-.141 2.117",
|
|
9464
|
+
clipRule: "evenodd"
|
|
9465
|
+
}
|
|
9466
|
+
)
|
|
9467
|
+
]
|
|
9459
9468
|
}
|
|
9460
|
-
|
|
9461
|
-
|
|
9462
|
-
|
|
9463
|
-
|
|
9464
|
-
|
|
9465
|
-
|
|
9466
|
-
|
|
9467
|
-
|
|
9468
|
-
|
|
9469
|
-
|
|
9470
|
-
|
|
9471
|
-
|
|
9472
|
-
|
|
9473
|
-
|
|
9474
|
-
|
|
9475
|
-
|
|
9476
|
-
|
|
9477
|
-
|
|
9478
|
-
|
|
9479
|
-
|
|
9480
|
-
|
|
9481
|
-
|
|
9482
|
-
|
|
9483
|
-
|
|
9484
|
-
|
|
9485
|
-
|
|
9486
|
-
|
|
9487
|
-
opacity: 1;
|
|
9488
|
-
}
|
|
9489
|
-
100% {
|
|
9490
|
-
opacity: 1;
|
|
9491
|
-
height: 10px;
|
|
9492
|
-
}`, w$2 = j$1("div")`
|
|
9493
|
-
width: 20px;
|
|
9494
|
-
opacity: 0;
|
|
9495
|
-
height: 20px;
|
|
9496
|
-
border-radius: 10px;
|
|
9497
|
-
background: ${(e2) => e2.primary || "#61d345"};
|
|
9498
|
-
position: relative;
|
|
9499
|
-
transform: rotate(45deg);
|
|
9500
|
-
|
|
9501
|
-
animation: ${pe$1} 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275)
|
|
9502
|
-
forwards;
|
|
9503
|
-
animation-delay: 100ms;
|
|
9504
|
-
&:after {
|
|
9505
|
-
content: '';
|
|
9506
|
-
box-sizing: border-box;
|
|
9507
|
-
animation: ${de$1} 0.2s ease-out forwards;
|
|
9508
|
-
opacity: 0;
|
|
9509
|
-
animation-delay: 200ms;
|
|
9510
|
-
position: absolute;
|
|
9511
|
-
border-right: 2px solid;
|
|
9512
|
-
border-bottom: 2px solid;
|
|
9513
|
-
border-color: ${(e2) => e2.secondary || "#fff"};
|
|
9514
|
-
bottom: 6px;
|
|
9515
|
-
left: 6px;
|
|
9516
|
-
height: 10px;
|
|
9517
|
-
width: 6px;
|
|
9469
|
+
), SvgRafterUp$1 = SvgRafterUp, SvgSave = ({
|
|
9470
|
+
title,
|
|
9471
|
+
titleId,
|
|
9472
|
+
...props
|
|
9473
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9474
|
+
"svg",
|
|
9475
|
+
{
|
|
9476
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9477
|
+
width: "24",
|
|
9478
|
+
height: "24",
|
|
9479
|
+
fill: "none",
|
|
9480
|
+
viewBox: "0 0 24 24",
|
|
9481
|
+
"aria-hidden": "true",
|
|
9482
|
+
"aria-labelledby": titleId,
|
|
9483
|
+
...props,
|
|
9484
|
+
children: [
|
|
9485
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9486
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9487
|
+
"path",
|
|
9488
|
+
{
|
|
9489
|
+
fill: "currentColor",
|
|
9490
|
+
fillRule: "evenodd",
|
|
9491
|
+
d: "M5 4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h1v-7a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v7h1a1 1 0 0 0 1-1V8.414L15.586 4H8v3h7a1 1 0 1 1 0 2H7a1 1 0 0 1-1-1V4zm2-2H5a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V8a1 1 0 0 0-.293-.707l-5-5A1 1 0 0 0 16 2zm1 12v6h8v-6z",
|
|
9492
|
+
clipRule: "evenodd"
|
|
9493
|
+
}
|
|
9494
|
+
)
|
|
9495
|
+
]
|
|
9518
9496
|
}
|
|
9519
|
-
|
|
9520
|
-
|
|
9521
|
-
|
|
9522
|
-
|
|
9523
|
-
|
|
9524
|
-
|
|
9525
|
-
|
|
9526
|
-
|
|
9527
|
-
|
|
9528
|
-
|
|
9529
|
-
|
|
9530
|
-
|
|
9531
|
-
|
|
9532
|
-
|
|
9533
|
-
|
|
9534
|
-
|
|
9535
|
-
|
|
9536
|
-
|
|
9537
|
-
|
|
9538
|
-
|
|
9539
|
-
|
|
9540
|
-
|
|
9541
|
-
|
|
9542
|
-
|
|
9543
|
-
|
|
9544
|
-
|
|
9545
|
-
|
|
9546
|
-
return t2 !== void 0 ? typeof t2 == "string" ? reactExports.createElement(fe$1, null, t2) : t2 : o2 === "blank" ? null : reactExports.createElement(le$1, null, reactExports.createElement(V$1, { ...s2 }), o2 !== "loading" && reactExports.createElement(ue$1, null, o2 === "error" ? reactExports.createElement(_, { ...s2 }) : reactExports.createElement(w$2, { ...s2 })));
|
|
9547
|
-
};
|
|
9548
|
-
var ye$1 = (e2) => `
|
|
9549
|
-
0% {transform: translate3d(0,${e2 * -200}%,0) scale(.6); opacity:.5;}
|
|
9550
|
-
100% {transform: translate3d(0,0,0) scale(1); opacity:1;}
|
|
9551
|
-
`, ge$1 = (e2) => `
|
|
9552
|
-
0% {transform: translate3d(0,0,-1px) scale(1); opacity:1;}
|
|
9553
|
-
100% {transform: translate3d(0,${e2 * -150}%,-1px) scale(.6); opacity:0;}
|
|
9554
|
-
`, he$1 = "0%{opacity:0;} 100%{opacity:1;}", xe$1 = "0%{opacity:1;} 100%{opacity:0;}", be$1 = j$1("div")`
|
|
9555
|
-
display: flex;
|
|
9556
|
-
align-items: center;
|
|
9557
|
-
background: #fff;
|
|
9558
|
-
color: #363636;
|
|
9559
|
-
line-height: 1.3;
|
|
9560
|
-
will-change: transform;
|
|
9561
|
-
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05);
|
|
9562
|
-
max-width: 350px;
|
|
9563
|
-
pointer-events: auto;
|
|
9564
|
-
padding: 8px 10px;
|
|
9565
|
-
border-radius: 8px;
|
|
9566
|
-
`, Se$1 = j$1("div")`
|
|
9567
|
-
display: flex;
|
|
9568
|
-
justify-content: center;
|
|
9569
|
-
margin: 4px 10px;
|
|
9570
|
-
color: inherit;
|
|
9571
|
-
flex: 1 1 auto;
|
|
9572
|
-
white-space: pre-line;
|
|
9573
|
-
`, Ae$1 = (e2, t2) => {
|
|
9574
|
-
let s2 = e2.includes("top") ? 1 : -1, [a2, r2] = b$1() ? [he$1, xe$1] : [ye$1(s2), ge$1(s2)];
|
|
9575
|
-
return { animation: t2 ? `${h$4(a2)} 0.35s cubic-bezier(.21,1.02,.73,1) forwards` : `${h$4(r2)} 0.4s forwards cubic-bezier(.06,.71,.55,1)` };
|
|
9576
|
-
}, F = reactExports.memo(({ toast: e2, position: t2, style: o2, children: s2 }) => {
|
|
9577
|
-
let a2 = e2.height ? Ae$1(e2.position || t2 || "top-center", e2.visible) : { opacity: 0 }, r2 = reactExports.createElement(M$2, { toast: e2 }), c6 = reactExports.createElement(Se$1, { ...e2.ariaProps }, T$1(e2.message, e2));
|
|
9578
|
-
return reactExports.createElement(be$1, { className: e2.className, style: { ...a2, ...o2, ...e2.style } }, typeof s2 == "function" ? s2({ icon: r2, message: c6 }) : reactExports.createElement(reactExports.Fragment, null, r2, c6));
|
|
9579
|
-
});
|
|
9580
|
-
m$3(reactExports.createElement);
|
|
9581
|
-
var Ee$1 = ({ id: e2, className: t2, style: o2, onHeightUpdate: s2, children: a2 }) => {
|
|
9582
|
-
let r2 = reactExports.useCallback((c6) => {
|
|
9583
|
-
if (c6) {
|
|
9584
|
-
let i2 = () => {
|
|
9585
|
-
let d2 = c6.getBoundingClientRect().height;
|
|
9586
|
-
s2(e2, d2);
|
|
9587
|
-
};
|
|
9588
|
-
i2(), new MutationObserver(i2).observe(c6, { subtree: true, childList: true, characterData: true });
|
|
9589
|
-
}
|
|
9590
|
-
}, [e2, s2]);
|
|
9591
|
-
return reactExports.createElement("div", { ref: r2, className: t2, style: o2 }, a2);
|
|
9592
|
-
}, Re$1 = (e2, t2) => {
|
|
9593
|
-
let o2 = e2.includes("top"), s2 = o2 ? { top: 0 } : { bottom: 0 }, a2 = e2.includes("center") ? { justifyContent: "center" } : e2.includes("right") ? { justifyContent: "flex-end" } : {};
|
|
9594
|
-
return { left: 0, right: 0, display: "flex", position: "absolute", transition: b$1() ? void 0 : "all 230ms cubic-bezier(.21,1.02,.73,1)", transform: `translateY(${t2 * (o2 ? 1 : -1)}px)`, ...s2, ...a2 };
|
|
9595
|
-
}, ve$1 = u$4`
|
|
9596
|
-
z-index: 9999;
|
|
9597
|
-
> * {
|
|
9598
|
-
pointer-events: auto;
|
|
9497
|
+
), SvgSave$1 = SvgSave, SvgSearch$2 = ({
|
|
9498
|
+
title,
|
|
9499
|
+
titleId,
|
|
9500
|
+
...props
|
|
9501
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9502
|
+
"svg",
|
|
9503
|
+
{
|
|
9504
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9505
|
+
fill: "none",
|
|
9506
|
+
viewBox: "0 0 24 24",
|
|
9507
|
+
width: "24",
|
|
9508
|
+
height: "24",
|
|
9509
|
+
"aria-hidden": "true",
|
|
9510
|
+
"aria-labelledby": titleId,
|
|
9511
|
+
...props,
|
|
9512
|
+
children: [
|
|
9513
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9514
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9515
|
+
"path",
|
|
9516
|
+
{
|
|
9517
|
+
fill: "currentColor",
|
|
9518
|
+
fillRule: "evenodd",
|
|
9519
|
+
d: "M4 10a7 7 0 1 1 14 0 7 7 0 0 1-14 0m7-9a9 9 0 1 0 5.7 15.96 1 1 0 0 0 .24.4l4.35 4.35a1 1 0 0 0 1.42-1.42l-4.35-4.35a1 1 0 0 0-.4-.24A9 9 0 0 0 11 1",
|
|
9520
|
+
clipRule: "evenodd"
|
|
9521
|
+
}
|
|
9522
|
+
)
|
|
9523
|
+
]
|
|
9599
9524
|
}
|
|
9600
|
-
|
|
9601
|
-
|
|
9602
|
-
|
|
9603
|
-
|
|
9604
|
-
|
|
9605
|
-
|
|
9606
|
-
|
|
9607
|
-
|
|
9525
|
+
), SvgSearch$1$1 = SvgSearch$2, SvgSuccessOutline = ({
|
|
9526
|
+
title,
|
|
9527
|
+
titleId,
|
|
9528
|
+
...props
|
|
9529
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9530
|
+
"svg",
|
|
9531
|
+
{
|
|
9532
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9533
|
+
width: "24",
|
|
9534
|
+
height: "24",
|
|
9535
|
+
fill: "none",
|
|
9536
|
+
viewBox: "0 0 24 24",
|
|
9537
|
+
"aria-hidden": "true",
|
|
9538
|
+
"aria-labelledby": titleId,
|
|
9539
|
+
...props,
|
|
9540
|
+
children: [
|
|
9541
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9542
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9543
|
+
"path",
|
|
9544
|
+
{
|
|
9545
|
+
fill: "currentColor",
|
|
9546
|
+
fillRule: "evenodd",
|
|
9547
|
+
d: "M12 3a9 9 0 1 0 0 18 9 9 0 0 0 0-18M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12",
|
|
9548
|
+
clipRule: "evenodd"
|
|
9549
|
+
}
|
|
9550
|
+
),
|
|
9551
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9552
|
+
"path",
|
|
9553
|
+
{
|
|
9554
|
+
fill: "currentColor",
|
|
9555
|
+
fillRule: "evenodd",
|
|
9556
|
+
d: "M16.59 8.192a1 1 0 0 1 .218 1.397l-4.375 6a1 1 0 0 1-1.584.042L8.224 12.4a1 1 0 0 1 1.552-1.261l1.806 2.223 3.61-4.951a1 1 0 0 1 1.397-.219",
|
|
9557
|
+
clipRule: "evenodd"
|
|
9558
|
+
}
|
|
9559
|
+
)
|
|
9560
|
+
]
|
|
9561
|
+
}
|
|
9562
|
+
), SvgSuccessOutline$1 = SvgSuccessOutline, SvgUsers = ({
|
|
9563
|
+
title,
|
|
9564
|
+
titleId,
|
|
9565
|
+
...props
|
|
9566
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsxs(
|
|
9567
|
+
"svg",
|
|
9568
|
+
{
|
|
9569
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9570
|
+
width: "24",
|
|
9571
|
+
height: "24",
|
|
9572
|
+
fill: "none",
|
|
9573
|
+
viewBox: "0 0 24 24",
|
|
9574
|
+
"aria-hidden": "true",
|
|
9575
|
+
"aria-labelledby": titleId,
|
|
9576
|
+
...props,
|
|
9577
|
+
children: [
|
|
9578
|
+
title ? /* @__PURE__ */ jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null,
|
|
9579
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
9580
|
+
"g",
|
|
9581
|
+
{
|
|
9582
|
+
fill: "currentColor",
|
|
9583
|
+
fillRule: "evenodd",
|
|
9584
|
+
clipPath: "url(#users_svg__a)",
|
|
9585
|
+
clipRule: "evenodd",
|
|
9586
|
+
children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { d: "M19.055 12.803a1 1 0 0 1 1.272-.618c1.128.39 2.061 1.247 2.7 2.351.64 1.106.972 2.435.973 3.782V21a1 1 0 1 1-2 0v-2.681c0-1.03-.258-2.009-.704-2.782-.448-.773-1.034-1.258-1.623-1.462a1 1 0 0 1-.618-1.272M15.187 1.384a1 1 0 0 1 1.036-.962 5.129 5.129 0 0 1 2.11 9.71 1 1 0 1 1-.896-1.788 3.129 3.129 0 0 0-1.288-5.924 1 1 0 0 1-.962-1.036M1.505 15.694C2.481 14.622 3.825 14 5.25 14h8.5c1.424 0 2.769.622 3.744 1.694.974 1.068 1.506 2.498 1.506 3.973V22a1 1 0 1 1-2 0v-2.333c0-1.001-.363-1.945-.984-2.627-.618-.679-1.436-1.04-2.266-1.04h-8.5c-.83 0-1.648.361-2.266 1.04-.621.682-.984 1.626-.984 2.627V22a1 1 0 1 1-2 0v-2.333c0-1.475.533-2.905 1.505-3.974M9.5 3a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7M4 6.5a5.5 5.5 0 1 1 11 0 5.5 5.5 0 0 1-11 0" })
|
|
9587
|
+
}
|
|
9588
|
+
),
|
|
9589
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("defs", { children: /* @__PURE__ */ jsxRuntimeExports.jsx("clipPath", { id: "users_svg__a", children: /* @__PURE__ */ jsxRuntimeExports.jsx("path", { fill: "#fff", d: "M0 0h24v24H0z" }) }) })
|
|
9590
|
+
]
|
|
9591
|
+
}
|
|
9592
|
+
), SvgUsers$1 = SvgUsers;
|
|
9593
|
+
function r$3(e2) {
|
|
9594
|
+
var t2, f2, n2 = "";
|
|
9595
|
+
if ("string" == typeof e2 || "number" == typeof e2)
|
|
9596
|
+
n2 += e2;
|
|
9597
|
+
else if ("object" == typeof e2)
|
|
9598
|
+
if (Array.isArray(e2)) {
|
|
9599
|
+
var o2 = e2.length;
|
|
9600
|
+
for (t2 = 0; t2 < o2; t2++)
|
|
9601
|
+
e2[t2] && (f2 = r$3(e2[t2])) && (n2 && (n2 += " "), n2 += f2);
|
|
9602
|
+
} else
|
|
9603
|
+
for (f2 in e2)
|
|
9604
|
+
e2[f2] && (n2 && (n2 += " "), n2 += f2);
|
|
9605
|
+
return n2;
|
|
9606
|
+
}
|
|
9607
|
+
function clsx() {
|
|
9608
|
+
for (var e2, t2, f2 = 0, n2 = "", o2 = arguments.length; f2 < o2; f2++)
|
|
9609
|
+
(e2 = arguments[f2]) && (t2 = r$3(e2)) && (n2 && (n2 += " "), n2 += t2);
|
|
9610
|
+
return n2;
|
|
9611
|
+
}
|
|
9608
9612
|
var reactDom = { exports: {} };
|
|
9609
9613
|
var reactDom_production_min = {};
|
|
9610
9614
|
var scheduler = { exports: {} };
|
|
@@ -18713,7 +18717,7 @@ async function detectOverflow$1(state, options) {
|
|
|
18713
18717
|
right: (elementClientRect.right - clippingClientRect.right + paddingObject.right) / offsetScale.x
|
|
18714
18718
|
};
|
|
18715
18719
|
}
|
|
18716
|
-
const flip$
|
|
18720
|
+
const flip$4 = function(options) {
|
|
18717
18721
|
if (options === void 0) {
|
|
18718
18722
|
options = {};
|
|
18719
18723
|
}
|
|
@@ -18845,7 +18849,7 @@ async function convertValueToCoords(state, options) {
|
|
|
18845
18849
|
y: crossAxis * crossAxisMulti
|
|
18846
18850
|
};
|
|
18847
18851
|
}
|
|
18848
|
-
const offset$
|
|
18852
|
+
const offset$4 = function(options) {
|
|
18849
18853
|
if (options === void 0) {
|
|
18850
18854
|
options = 0;
|
|
18851
18855
|
}
|
|
@@ -18875,7 +18879,7 @@ const offset$3 = function(options) {
|
|
|
18875
18879
|
}
|
|
18876
18880
|
};
|
|
18877
18881
|
};
|
|
18878
|
-
const size$
|
|
18882
|
+
const size$2 = function(options) {
|
|
18879
18883
|
if (options === void 0) {
|
|
18880
18884
|
options = {};
|
|
18881
18885
|
}
|
|
@@ -18911,16 +18915,16 @@ const size$1 = function(options) {
|
|
|
18911
18915
|
widthSide = side;
|
|
18912
18916
|
heightSide = alignment === "end" ? "top" : "bottom";
|
|
18913
18917
|
}
|
|
18914
|
-
const
|
|
18915
|
-
const
|
|
18918
|
+
const maximumClippingHeight = height - overflow.top - overflow.bottom;
|
|
18919
|
+
const maximumClippingWidth = width - overflow.left - overflow.right;
|
|
18920
|
+
const overflowAvailableHeight = min$1(height - overflow[heightSide], maximumClippingHeight);
|
|
18921
|
+
const overflowAvailableWidth = min$1(width - overflow[widthSide], maximumClippingWidth);
|
|
18916
18922
|
const noShift = !state.middlewareData.shift;
|
|
18917
18923
|
let availableHeight = overflowAvailableHeight;
|
|
18918
18924
|
let availableWidth = overflowAvailableWidth;
|
|
18919
18925
|
if (isYAxis) {
|
|
18920
|
-
const maximumClippingWidth = width - overflow.left - overflow.right;
|
|
18921
18926
|
availableWidth = alignment || noShift ? min$1(overflowAvailableWidth, maximumClippingWidth) : maximumClippingWidth;
|
|
18922
18927
|
} else {
|
|
18923
|
-
const maximumClippingHeight = height - overflow.top - overflow.bottom;
|
|
18924
18928
|
availableHeight = alignment || noShift ? min$1(overflowAvailableHeight, maximumClippingHeight) : maximumClippingHeight;
|
|
18925
18929
|
}
|
|
18926
18930
|
if (noShift && !alignment) {
|
|
@@ -19187,10 +19191,10 @@ function getBoundingClientRect$1(element, includeScale, isFixedStrategy, offsetP
|
|
|
19187
19191
|
});
|
|
19188
19192
|
}
|
|
19189
19193
|
const topLayerSelectors = [":popover-open", ":modal"];
|
|
19190
|
-
function isTopLayer(
|
|
19194
|
+
function isTopLayer(element) {
|
|
19191
19195
|
return topLayerSelectors.some((selector) => {
|
|
19192
19196
|
try {
|
|
19193
|
-
return
|
|
19197
|
+
return element.matches(selector);
|
|
19194
19198
|
} catch (e2) {
|
|
19195
19199
|
return false;
|
|
19196
19200
|
}
|
|
@@ -19356,7 +19360,7 @@ function getClippingRect$1(_ref) {
|
|
|
19356
19360
|
rootBoundary,
|
|
19357
19361
|
strategy
|
|
19358
19362
|
} = _ref;
|
|
19359
|
-
const elementClippingAncestors = boundary === "clippingAncestors" ? getClippingElementAncestors(element, this._c) : [].concat(boundary);
|
|
19363
|
+
const elementClippingAncestors = boundary === "clippingAncestors" ? isTopLayer(element) ? [] : getClippingElementAncestors(element, this._c) : [].concat(boundary);
|
|
19360
19364
|
const clippingAncestors = [...elementClippingAncestors, rootBoundary];
|
|
19361
19365
|
const firstClippingAncestor = clippingAncestors[0];
|
|
19362
19366
|
const clippingRect = clippingAncestors.reduce((accRect, clippingAncestor) => {
|
|
@@ -19415,6 +19419,9 @@ function getRectRelativeToOffsetParent(element, offsetParent, strategy) {
|
|
|
19415
19419
|
height: rect.height
|
|
19416
19420
|
};
|
|
19417
19421
|
}
|
|
19422
|
+
function isStaticPositioned(element) {
|
|
19423
|
+
return getComputedStyle$3(element).position === "static";
|
|
19424
|
+
}
|
|
19418
19425
|
function getTrueOffsetParent$1(element, polyfill2) {
|
|
19419
19426
|
if (!isHTMLElement$1(element) || getComputedStyle$3(element).position === "fixed") {
|
|
19420
19427
|
return null;
|
|
@@ -19425,18 +19432,28 @@ function getTrueOffsetParent$1(element, polyfill2) {
|
|
|
19425
19432
|
return element.offsetParent;
|
|
19426
19433
|
}
|
|
19427
19434
|
function getOffsetParent$1(element, polyfill2) {
|
|
19428
|
-
const
|
|
19429
|
-
if (
|
|
19430
|
-
return
|
|
19435
|
+
const win = getWindow$2(element);
|
|
19436
|
+
if (isTopLayer(element)) {
|
|
19437
|
+
return win;
|
|
19438
|
+
}
|
|
19439
|
+
if (!isHTMLElement$1(element)) {
|
|
19440
|
+
let svgOffsetParent = getParentNode$1(element);
|
|
19441
|
+
while (svgOffsetParent && !isLastTraversableNode(svgOffsetParent)) {
|
|
19442
|
+
if (isElement$2(svgOffsetParent) && !isStaticPositioned(svgOffsetParent)) {
|
|
19443
|
+
return svgOffsetParent;
|
|
19444
|
+
}
|
|
19445
|
+
svgOffsetParent = getParentNode$1(svgOffsetParent);
|
|
19446
|
+
}
|
|
19447
|
+
return win;
|
|
19431
19448
|
}
|
|
19432
19449
|
let offsetParent = getTrueOffsetParent$1(element, polyfill2);
|
|
19433
|
-
while (offsetParent && isTableElement$1(offsetParent) &&
|
|
19450
|
+
while (offsetParent && isTableElement$1(offsetParent) && isStaticPositioned(offsetParent)) {
|
|
19434
19451
|
offsetParent = getTrueOffsetParent$1(offsetParent, polyfill2);
|
|
19435
19452
|
}
|
|
19436
|
-
if (offsetParent && (
|
|
19437
|
-
return
|
|
19453
|
+
if (offsetParent && isLastTraversableNode(offsetParent) && isStaticPositioned(offsetParent) && !isContainingBlock(offsetParent)) {
|
|
19454
|
+
return win;
|
|
19438
19455
|
}
|
|
19439
|
-
return offsetParent || getContainingBlock$1(element) ||
|
|
19456
|
+
return offsetParent || getContainingBlock$1(element) || win;
|
|
19440
19457
|
}
|
|
19441
19458
|
const getElementRects = async function(data) {
|
|
19442
19459
|
const getOffsetParentFn = this.getOffsetParent || getOffsetParent$1;
|
|
@@ -19605,9 +19622,9 @@ function autoUpdate(reference2, floating, update2, options) {
|
|
|
19605
19622
|
}
|
|
19606
19623
|
};
|
|
19607
19624
|
}
|
|
19608
|
-
const offset$
|
|
19609
|
-
const flip$
|
|
19610
|
-
const size = size$
|
|
19625
|
+
const offset$3 = offset$4;
|
|
19626
|
+
const flip$3 = flip$4;
|
|
19627
|
+
const size$1 = size$2;
|
|
19611
19628
|
const computePosition = (reference2, floating, options) => {
|
|
19612
19629
|
const cache = /* @__PURE__ */ new Map();
|
|
19613
19630
|
const mergedOptions = {
|
|
@@ -19838,6 +19855,18 @@ function useFloating$1(options) {
|
|
|
19838
19855
|
floatingStyles
|
|
19839
19856
|
}), [data, update2, refs, elements, floatingStyles]);
|
|
19840
19857
|
}
|
|
19858
|
+
const offset$2 = (options, deps) => ({
|
|
19859
|
+
...offset$3(options),
|
|
19860
|
+
options: [options, deps]
|
|
19861
|
+
});
|
|
19862
|
+
const flip$2 = (options, deps) => ({
|
|
19863
|
+
...flip$3(options),
|
|
19864
|
+
options: [options, deps]
|
|
19865
|
+
});
|
|
19866
|
+
const size = (options, deps) => ({
|
|
19867
|
+
...size$1(options),
|
|
19868
|
+
options: [options, deps]
|
|
19869
|
+
});
|
|
19841
19870
|
var index = typeof document !== "undefined" ? reactExports.useLayoutEffect : reactExports.useEffect;
|
|
19842
19871
|
let serverHandoffComplete = false;
|
|
19843
19872
|
let count = 0;
|
|
@@ -25051,7 +25080,7 @@ var reactFastCompare = function isEqual(a2, b2) {
|
|
|
25051
25080
|
throw error;
|
|
25052
25081
|
}
|
|
25053
25082
|
};
|
|
25054
|
-
const isEqual2 = /* @__PURE__ */ getDefaultExportFromCjs(reactFastCompare);
|
|
25083
|
+
const isEqual2 = /* @__PURE__ */ getDefaultExportFromCjs$1(reactFastCompare);
|
|
25055
25084
|
var EMPTY_MODIFIERS = [];
|
|
25056
25085
|
var usePopper = function usePopper2(referenceElement, popperElement, options) {
|
|
25057
25086
|
if (options === void 0) {
|
|
@@ -30682,7 +30711,7 @@ var lib$2 = {};
|
|
|
30682
30711
|
exports.Doctype = ElementType.Doctype;
|
|
30683
30712
|
})(lib$2);
|
|
30684
30713
|
var node = {};
|
|
30685
|
-
var __extends = commonjsGlobal && commonjsGlobal.__extends || /* @__PURE__ */ function() {
|
|
30714
|
+
var __extends = commonjsGlobal$1 && commonjsGlobal$1.__extends || /* @__PURE__ */ function() {
|
|
30686
30715
|
var extendStatics = function(d2, b2) {
|
|
30687
30716
|
extendStatics = Object.setPrototypeOf || { __proto__: [] } instanceof Array && function(d3, b3) {
|
|
30688
30717
|
d3.__proto__ = b3;
|
|
@@ -30703,7 +30732,7 @@ var __extends = commonjsGlobal && commonjsGlobal.__extends || /* @__PURE__ */ fu
|
|
|
30703
30732
|
d2.prototype = b2 === null ? Object.create(b2) : (__.prototype = b2.prototype, new __());
|
|
30704
30733
|
};
|
|
30705
30734
|
}();
|
|
30706
|
-
var __assign = commonjsGlobal && commonjsGlobal.__assign || function() {
|
|
30735
|
+
var __assign = commonjsGlobal$1 && commonjsGlobal$1.__assign || function() {
|
|
30707
30736
|
__assign = Object.assign || function(t2) {
|
|
30708
30737
|
for (var s2, i2 = 1, n2 = arguments.length; i2 < n2; i2++) {
|
|
30709
30738
|
s2 = arguments[i2];
|
|
@@ -31113,7 +31142,7 @@ function cloneChildren(childs) {
|
|
|
31113
31142
|
return children;
|
|
31114
31143
|
}
|
|
31115
31144
|
(function(exports) {
|
|
31116
|
-
var __createBinding = commonjsGlobal && commonjsGlobal.__createBinding || (Object.create ? function(o2, m2, k2, k22) {
|
|
31145
|
+
var __createBinding = commonjsGlobal$1 && commonjsGlobal$1.__createBinding || (Object.create ? function(o2, m2, k2, k22) {
|
|
31117
31146
|
if (k22 === void 0)
|
|
31118
31147
|
k22 = k2;
|
|
31119
31148
|
var desc = Object.getOwnPropertyDescriptor(m2, k2);
|
|
@@ -31128,7 +31157,7 @@ function cloneChildren(childs) {
|
|
|
31128
31157
|
k22 = k2;
|
|
31129
31158
|
o2[k22] = m2[k2];
|
|
31130
31159
|
});
|
|
31131
|
-
var __exportStar = commonjsGlobal && commonjsGlobal.__exportStar || function(m2, exports2) {
|
|
31160
|
+
var __exportStar = commonjsGlobal$1 && commonjsGlobal$1.__exportStar || function(m2, exports2) {
|
|
31132
31161
|
for (var p2 in m2)
|
|
31133
31162
|
if (p2 !== "default" && !Object.prototype.hasOwnProperty.call(exports2, p2))
|
|
31134
31163
|
__createBinding(exports2, m2, p2);
|
|
@@ -32681,7 +32710,7 @@ var camelCase = function(property, options) {
|
|
|
32681
32710
|
};
|
|
32682
32711
|
utilities$3.camelCase = camelCase;
|
|
32683
32712
|
(function(exports) {
|
|
32684
|
-
var __importDefault = commonjsGlobal && commonjsGlobal.__importDefault || function(mod) {
|
|
32713
|
+
var __importDefault = commonjsGlobal$1 && commonjsGlobal$1.__importDefault || function(mod) {
|
|
32685
32714
|
return mod && mod.__esModule ? mod : { "default": mod };
|
|
32686
32715
|
};
|
|
32687
32716
|
exports.__esModule = true;
|
|
@@ -32946,7 +32975,7 @@ HTMLReactParser.ProcessingInstruction = domhandler.ProcessingInstruction;
|
|
|
32946
32975
|
HTMLReactParser.Text = domhandler.Text;
|
|
32947
32976
|
var htmlReactParser = HTMLReactParser;
|
|
32948
32977
|
HTMLReactParser.default = HTMLReactParser;
|
|
32949
|
-
const HTMLReactParser$1 = /* @__PURE__ */ getDefaultExportFromCjs(htmlReactParser);
|
|
32978
|
+
const HTMLReactParser$1 = /* @__PURE__ */ getDefaultExportFromCjs$1(htmlReactParser);
|
|
32950
32979
|
var domToReact = HTMLReactParser$1.domToReact;
|
|
32951
32980
|
HTMLReactParser$1.htmlToDOM;
|
|
32952
32981
|
var attributesToProps2 = HTMLReactParser$1.attributesToProps;
|
|
@@ -37395,7 +37424,7 @@ var eventemitter3 = { exports: {} };
|
|
|
37395
37424
|
}
|
|
37396
37425
|
})(eventemitter3);
|
|
37397
37426
|
var eventemitter3Exports = eventemitter3.exports;
|
|
37398
|
-
const EventEmitter2 = /* @__PURE__ */ getDefaultExportFromCjs(eventemitter3Exports);
|
|
37427
|
+
const EventEmitter2 = /* @__PURE__ */ getDefaultExportFromCjs$1(eventemitter3Exports);
|
|
37399
37428
|
var earcut$2 = { exports: {} };
|
|
37400
37429
|
earcut$2.exports = earcut;
|
|
37401
37430
|
earcut$2.exports.default = earcut;
|
|
@@ -37857,7 +37886,7 @@ earcut.flatten = function(data) {
|
|
|
37857
37886
|
return result;
|
|
37858
37887
|
};
|
|
37859
37888
|
var earcutExports = earcut$2.exports;
|
|
37860
|
-
const earcut$1 = /* @__PURE__ */ getDefaultExportFromCjs(earcutExports);
|
|
37889
|
+
const earcut$1 = /* @__PURE__ */ getDefaultExportFromCjs$1(earcutExports);
|
|
37861
37890
|
var punycode$1 = { exports: {} };
|
|
37862
37891
|
/*! https://mths.be/punycode v1.4.1 by @mathias */
|
|
37863
37892
|
punycode$1.exports;
|
|
@@ -37865,7 +37894,7 @@ punycode$1.exports;
|
|
|
37865
37894
|
(function(root2) {
|
|
37866
37895
|
var freeExports = exports && !exports.nodeType && exports;
|
|
37867
37896
|
var freeModule = module && !module.nodeType && module;
|
|
37868
|
-
var freeGlobal = typeof commonjsGlobal == "object" && commonjsGlobal;
|
|
37897
|
+
var freeGlobal = typeof commonjsGlobal$1 == "object" && commonjsGlobal$1;
|
|
37869
37898
|
if (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal || freeGlobal.self === freeGlobal) {
|
|
37870
37899
|
root2 = freeGlobal;
|
|
37871
37900
|
}
|
|
@@ -38097,7 +38126,7 @@ punycode$1.exports;
|
|
|
38097
38126
|
} else {
|
|
38098
38127
|
root2.punycode = punycode2;
|
|
38099
38128
|
}
|
|
38100
|
-
})(commonjsGlobal);
|
|
38129
|
+
})(commonjsGlobal$1);
|
|
38101
38130
|
})(punycode$1, punycode$1.exports);
|
|
38102
38131
|
var punycodeExports = punycode$1.exports;
|
|
38103
38132
|
var esErrors = Error;
|
|
@@ -38952,7 +38981,7 @@ var objectInspect = function inspect_(obj, options, depth, seen2) {
|
|
|
38952
38981
|
if (typeof window !== "undefined" && obj === window) {
|
|
38953
38982
|
return "{ [object Window] }";
|
|
38954
38983
|
}
|
|
38955
|
-
if (obj === commonjsGlobal) {
|
|
38984
|
+
if (obj === commonjsGlobal$1) {
|
|
38956
38985
|
return "{ [object globalThis] }";
|
|
38957
38986
|
}
|
|
38958
38987
|
if (!isDate(obj) && !isRegExp$1(obj)) {
|
|
@@ -62410,36 +62439,6 @@ function useConf({
|
|
|
62410
62439
|
suspense: true
|
|
62411
62440
|
});
|
|
62412
62441
|
}
|
|
62413
|
-
function usePreferences(name) {
|
|
62414
|
-
return {
|
|
62415
|
-
getPreference: async () => await odeServices.conf().getPreference(name),
|
|
62416
|
-
savePreference: async (value) => await odeServices.conf().savePreference(name, JSON.stringify(value))
|
|
62417
|
-
};
|
|
62418
|
-
}
|
|
62419
|
-
function useCookiesConsent() {
|
|
62420
|
-
const [showCookiesConsent, setShowCookiesConsent] = reactExports.useState(false), {
|
|
62421
|
-
getPreference,
|
|
62422
|
-
savePreference
|
|
62423
|
-
} = usePreferences("rgpdCookies");
|
|
62424
|
-
return reactExports.useEffect(() => {
|
|
62425
|
-
(async () => {
|
|
62426
|
-
const res = await getPreference();
|
|
62427
|
-
setShowCookiesConsent(res === null ? true : res.showInfoTip);
|
|
62428
|
-
})();
|
|
62429
|
-
}, []), {
|
|
62430
|
-
showCookiesConsent,
|
|
62431
|
-
handleConsultCookies: () => {
|
|
62432
|
-
document.location.href = "/userbook/mon-compte", savePreference({
|
|
62433
|
-
showInfoTip: false
|
|
62434
|
-
}), setShowCookiesConsent(false);
|
|
62435
|
-
},
|
|
62436
|
-
handleCloseCookiesConsent: () => {
|
|
62437
|
-
savePreference({
|
|
62438
|
-
showInfoTip: false
|
|
62439
|
-
}), setShowCookiesConsent(false);
|
|
62440
|
-
}
|
|
62441
|
-
};
|
|
62442
|
-
}
|
|
62443
62442
|
function useSession() {
|
|
62444
62443
|
return useQuery({
|
|
62445
62444
|
queryKey: ["session"],
|
|
@@ -62456,11 +62455,7 @@ function OdeClientProvider({
|
|
|
62456
62455
|
t: t2
|
|
62457
62456
|
} = useTranslation(), translatedAppCode = t2(appCode), sessionQuery = useSession(), confQuery = useConf({
|
|
62458
62457
|
appCode
|
|
62459
|
-
}),
|
|
62460
|
-
showCookiesConsent,
|
|
62461
|
-
handleConsultCookies,
|
|
62462
|
-
handleCloseCookiesConsent
|
|
62463
|
-
} = useCookiesConsent(), init2 = (confQuery == null ? void 0 : confQuery.isSuccess) && (sessionQuery == null ? void 0 : sessionQuery.isSuccess);
|
|
62458
|
+
}), init2 = (confQuery == null ? void 0 : confQuery.isSuccess) && (sessionQuery == null ? void 0 : sessionQuery.isSuccess);
|
|
62464
62459
|
reactExports.useEffect(() => {
|
|
62465
62460
|
var _a2, _b2;
|
|
62466
62461
|
(_b2 = document.querySelector("html")) == null || _b2.setAttribute("lang", ((_a2 = sessionQuery == null ? void 0 : sessionQuery.data) == null ? void 0 : _a2.currentLanguage) || "fr");
|
|
@@ -62482,10 +62477,7 @@ function OdeClientProvider({
|
|
|
62482
62477
|
userProfile: (_f2 = sessionQuery == null ? void 0 : sessionQuery.data) == null ? void 0 : _f2.userProfile
|
|
62483
62478
|
};
|
|
62484
62479
|
}, [appCode, confQuery, init2, sessionQuery]);
|
|
62485
|
-
return /* @__PURE__ */ jsxRuntimeExports.
|
|
62486
|
-
children,
|
|
62487
|
-
showCookiesConsent && /* @__PURE__ */ jsxRuntimeExports.jsx(Alert$1, { type: "info", className: "m-12", isConfirm: true, position: "bottom-right", button: /* @__PURE__ */ jsxRuntimeExports.jsx(Button$1, { color: "tertiary", variant: "ghost", onClick: handleConsultCookies, children: t2("rgpd.cookies.banner.button.consult") }), onClose: handleCloseCookiesConsent, children: t2("rgpd.cookies.banner.text1") })
|
|
62488
|
-
] });
|
|
62480
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsx(OdeClientContext.Provider, { value: values, children });
|
|
62489
62481
|
}
|
|
62490
62482
|
function useOdeClient() {
|
|
62491
62483
|
const context2 = reactExports.useContext(OdeClientContext);
|
|
@@ -62546,7 +62538,18 @@ function useBookmark() {
|
|
|
62546
62538
|
return set2.add(el2.displayName), !duplicate;
|
|
62547
62539
|
});
|
|
62548
62540
|
}
|
|
62549
|
-
const
|
|
62541
|
+
const isActionAvailable = (workflow, actions) => {
|
|
62542
|
+
const found = actions == null ? void 0 : actions.filter((action) => action.id === workflow && action.available);
|
|
62543
|
+
return found && found.length > 0;
|
|
62544
|
+
}, libraryMaps = {
|
|
62545
|
+
blog: "Blog",
|
|
62546
|
+
mindmap: "MindMap",
|
|
62547
|
+
scrapbook: "ScrapBook",
|
|
62548
|
+
collaborativewall: "CollaborativeWall",
|
|
62549
|
+
timelinegenerator: "TimelineGenerator",
|
|
62550
|
+
wiki: "Wiki",
|
|
62551
|
+
exercizer: "Exercizer"
|
|
62552
|
+
}, MockedDataContext = /* @__PURE__ */ reactExports.createContext(null);
|
|
62550
62553
|
function useMockedData() {
|
|
62551
62554
|
return reactExports.useContext(MockedDataContext);
|
|
62552
62555
|
}
|
|
@@ -62560,18 +62563,6 @@ function setRef(val, ...refs) {
|
|
|
62560
62563
|
typeof ref2 == "function" ? ref2(val) : ref2 != null && (ref2.current = val);
|
|
62561
62564
|
});
|
|
62562
62565
|
}
|
|
62563
|
-
const isActionAvailable = (workflow, actions) => {
|
|
62564
|
-
const found = actions == null ? void 0 : actions.filter((action) => action.id === workflow && action.available);
|
|
62565
|
-
return found && found.length > 0;
|
|
62566
|
-
}, libraryMaps = {
|
|
62567
|
-
blog: "Blog",
|
|
62568
|
-
mindmap: "MindMap",
|
|
62569
|
-
scrapbook: "ScrapBook",
|
|
62570
|
-
collaborativewall: "CollaborativeWall",
|
|
62571
|
-
timelinegenerator: "TimelineGenerator",
|
|
62572
|
-
wiki: "Wiki",
|
|
62573
|
-
exercizer: "Exercizer"
|
|
62574
|
-
};
|
|
62575
62566
|
function useHasWorkflow(workflow) {
|
|
62576
62567
|
const mock = useMockedData(), [state, setState] = reactExports.useState();
|
|
62577
62568
|
return reactExports.useEffect(() => {
|
|
@@ -62625,8 +62616,38 @@ const useConversation = () => {
|
|
|
62625
62616
|
zimbraWorkflow
|
|
62626
62617
|
};
|
|
62627
62618
|
}, useConversation$1 = useConversation;
|
|
62619
|
+
var commonjsGlobal = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
|
|
62620
|
+
function getDefaultExportFromCjs(x2) {
|
|
62621
|
+
return x2 && x2.__esModule && Object.prototype.hasOwnProperty.call(x2, "default") ? x2.default : x2;
|
|
62622
|
+
}
|
|
62623
|
+
var localizedFormat$1 = { exports: {} };
|
|
62624
|
+
(function(module, exports) {
|
|
62625
|
+
(function(e2, t2) {
|
|
62626
|
+
module.exports = t2();
|
|
62627
|
+
})(commonjsGlobal, function() {
|
|
62628
|
+
var e2 = { LTS: "h:mm:ss A", LT: "h:mm A", L: "MM/DD/YYYY", LL: "MMMM D, YYYY", LLL: "MMMM D, YYYY h:mm A", LLLL: "dddd, MMMM D, YYYY h:mm A" };
|
|
62629
|
+
return function(t2, o2, n2) {
|
|
62630
|
+
var r2 = o2.prototype, i2 = r2.format;
|
|
62631
|
+
n2.en.formats = e2, r2.format = function(t22) {
|
|
62632
|
+
t22 === void 0 && (t22 = "YYYY-MM-DDTHH:mm:ssZ");
|
|
62633
|
+
var o22 = this.$locale().formats, n22 = function(t3, o3) {
|
|
62634
|
+
return t3.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g, function(t4, n3, r22) {
|
|
62635
|
+
var i22 = r22 && r22.toUpperCase();
|
|
62636
|
+
return n3 || o3[r22] || e2[r22] || o3[i22].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g, function(e22, t5, o4) {
|
|
62637
|
+
return t5 || o4.slice(1);
|
|
62638
|
+
});
|
|
62639
|
+
});
|
|
62640
|
+
}(t22, o22 === void 0 ? {} : o22);
|
|
62641
|
+
return i2.call(this, n22);
|
|
62642
|
+
};
|
|
62643
|
+
};
|
|
62644
|
+
});
|
|
62645
|
+
})(localizedFormat$1);
|
|
62646
|
+
var localizedFormatExports = localizedFormat$1.exports;
|
|
62647
|
+
const localizedFormat = /* @__PURE__ */ getDefaultExportFromCjs(localizedFormatExports);
|
|
62628
62648
|
dayjs.extend(relativeTime);
|
|
62629
62649
|
dayjs.extend(customParseFormat);
|
|
62650
|
+
dayjs.extend(localizedFormat);
|
|
62630
62651
|
const DEFAULT_EVENTS = ["mousedown", "touchstart"];
|
|
62631
62652
|
function useClickOutside(handler, events2, nodes) {
|
|
62632
62653
|
const ref2 = reactExports.useRef();
|
|
@@ -63267,11 +63288,11 @@ const Image$1 = /* @__PURE__ */ reactExports.forwardRef(({
|
|
|
63267
63288
|
t: t2
|
|
63268
63289
|
} = useTranslation();
|
|
63269
63290
|
return /* @__PURE__ */ jsxRuntimeExports.jsx(BreadcrumbNav$1, { app, ref: ref2, className: "mw-100", children: /* @__PURE__ */ jsxRuntimeExports.jsx(BreadcrumbList$1, { className: "gap-12 mw-100", children: name ? /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [
|
|
63270
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(BreadcrumbItem$1, { children: /* @__PURE__ */ jsxRuntimeExports.jsx("a", { href: app == null ? void 0 : app.address, className: "d-flex", children: /* @__PURE__ */ jsxRuntimeExports.jsx(AppIcon$1, { app, size: "40" }) }) }),
|
|
63291
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(BreadcrumbItem$1, { children: /* @__PURE__ */ jsxRuntimeExports.jsx("a", { href: app == null ? void 0 : app.address, className: "d-flex", "aria-label": t2(app == null ? void 0 : app.displayName), children: /* @__PURE__ */ jsxRuntimeExports.jsx(AppIcon$1, { app, size: "40" }) }) }),
|
|
63271
63292
|
/* @__PURE__ */ jsxRuntimeExports.jsx(BreadcrumbItem$1, { children: /* @__PURE__ */ jsxRuntimeExports.jsx(SvgRafterRight$1, { color: "var(--edifice-gray-600)", width: 20, height: 20 }) }),
|
|
63272
63293
|
/* @__PURE__ */ jsxRuntimeExports.jsx(BreadcrumbItem$1, { className: "text-truncate", children: /* @__PURE__ */ jsxRuntimeExports.jsx(Heading$1, { level: "h1", headingStyle: "h3", className: "text-truncate", children: name }) })
|
|
63273
63294
|
] }) : /* @__PURE__ */ jsxRuntimeExports.jsxs(BreadcrumbItem$1, { className: "gap-12 d-flex align-items-center", children: [
|
|
63274
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx("a", { href: app == null ? void 0 : app.address, className: "d-flex", children: /* @__PURE__ */ jsxRuntimeExports.jsx(AppIcon$1, { app, size: "40" }) }),
|
|
63295
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("a", { href: app == null ? void 0 : app.address, className: "d-flex", "aria-label": t2(app == null ? void 0 : app.displayName), children: /* @__PURE__ */ jsxRuntimeExports.jsx(AppIcon$1, { app, size: "40" }) }),
|
|
63275
63296
|
/* @__PURE__ */ jsxRuntimeExports.jsx(Heading$1, { level: "h1", headingStyle: "h3", className: "d-none d-md-flex", children: t2(app == null ? void 0 : app.displayName) })
|
|
63276
63297
|
] }) }) });
|
|
63277
63298
|
}), Breadcrumb$1 = Breadcrumb, CardBody = ({
|
|
@@ -63326,7 +63347,7 @@ const Image$1 = /* @__PURE__ */ reactExports.forwardRef(({
|
|
|
63326
63347
|
children,
|
|
63327
63348
|
className
|
|
63328
63349
|
}) => {
|
|
63329
|
-
const title = clsx("card-title body text-break text-truncate text-truncate-
|
|
63350
|
+
const title = clsx("card-title body text-break text-truncate text-truncate-2", className);
|
|
63330
63351
|
return /* @__PURE__ */ jsxRuntimeExports.jsx("h3", { className: title, children: /* @__PURE__ */ jsxRuntimeExports.jsx("strong", { children }) });
|
|
63331
63352
|
}, CardTitle$1 = CardTitle, CardUser = ({
|
|
63332
63353
|
userSrc,
|
|
@@ -63471,7 +63492,7 @@ const Image$1 = /* @__PURE__ */ reactExports.forwardRef(({
|
|
|
63471
63492
|
return /* @__PURE__ */ jsxRuntimeExports.jsx("input", { ref: ref2, id: id2, className: classes2, type: type2, placeholder, required: isRequired, readOnly: isReadOnly, ...restProps });
|
|
63472
63493
|
}), Input$1 = Input, Label = /* @__PURE__ */ reactExports.forwardRef(({
|
|
63473
63494
|
leftIcon,
|
|
63474
|
-
optionalText
|
|
63495
|
+
optionalText,
|
|
63475
63496
|
requiredText = "*",
|
|
63476
63497
|
children,
|
|
63477
63498
|
className
|
|
@@ -63480,7 +63501,9 @@ const Image$1 = /* @__PURE__ */ reactExports.forwardRef(({
|
|
|
63480
63501
|
id: id2,
|
|
63481
63502
|
isOptional,
|
|
63482
63503
|
isRequired
|
|
63483
|
-
} = useFormControl(),
|
|
63504
|
+
} = useFormControl(), {
|
|
63505
|
+
t: t2
|
|
63506
|
+
} = useTranslation(), classes2 = clsx("form-label", {
|
|
63484
63507
|
"has-icon": leftIcon
|
|
63485
63508
|
}, className), optionalState = isOptional && !isRequired, requiredState = isRequired && !isOptional;
|
|
63486
63509
|
return reactExports.useEffect(() => {
|
|
@@ -63491,7 +63514,7 @@ const Image$1 = /* @__PURE__ */ reactExports.forwardRef(({
|
|
|
63491
63514
|
children,
|
|
63492
63515
|
optionalState && /* @__PURE__ */ jsxRuntimeExports.jsxs("em", { className: "optional", children: [
|
|
63493
63516
|
"- ",
|
|
63494
|
-
optionalText
|
|
63517
|
+
optionalText ?? t2("explorer.optional")
|
|
63495
63518
|
] }),
|
|
63496
63519
|
requiredState && /* @__PURE__ */ jsxRuntimeExports.jsx("em", { className: "required", children: requiredText })
|
|
63497
63520
|
] });
|
|
@@ -63578,8 +63601,8 @@ const Image$1 = /* @__PURE__ */ reactExports.forwardRef(({
|
|
|
63578
63601
|
onMenuItemKeyDown,
|
|
63579
63602
|
onMenuItemMouseEnter,
|
|
63580
63603
|
onMenuItemClick
|
|
63581
|
-
} = itemProps, handleOnClick = () => {
|
|
63582
|
-
onClick2 == null || onClick2(), type2 === "action" && onMenuItemClick();
|
|
63604
|
+
} = itemProps, handleOnClick = (event) => {
|
|
63605
|
+
onClick2 == null || onClick2(event), type2 === "action" && onMenuItemClick();
|
|
63583
63606
|
}, id2 = reactExports.useId(), dropdownItem = clsx("dropdown-item", {
|
|
63584
63607
|
focus: isFocused === id2
|
|
63585
63608
|
});
|
|
@@ -63836,7 +63859,7 @@ const ImagePicker = /* @__PURE__ */ reactExports.forwardRef(({
|
|
|
63836
63859
|
] }),
|
|
63837
63860
|
/* @__PURE__ */ jsxRuntimeExports.jsxs(FormControl$1.Label, { children: [
|
|
63838
63861
|
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "visually-hidden", children: label }),
|
|
63839
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(Input$1, { accept: "image
|
|
63862
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(Input$1, { accept: "image/jpeg, image/png", hidden: true, onChange: handleOnChange, ref: inputRef, size: "sm", type: "file" }),
|
|
63840
63863
|
preview ? /* @__PURE__ */ jsxRuntimeExports.jsx(Avatar$1, { alt: "", src: preview, size: "xl" }) : /* @__PURE__ */ jsxRuntimeExports.jsx(AppIcon$1, { app, iconFit: "ratio", size: "160", variant: "rounded" })
|
|
63841
63864
|
] })
|
|
63842
63865
|
] });
|
|
@@ -64042,13 +64065,13 @@ const TextArea = /* @__PURE__ */ reactExports.forwardRef(({
|
|
|
64042
64065
|
"form-control-plaintext": isReadOnly,
|
|
64043
64066
|
"no-validation-icon": noValidationIcon
|
|
64044
64067
|
}, className);
|
|
64045
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsx("textarea", { ref: ref2, id: id2, className: classes2, placeholder, required: isRequired, readOnly: isReadOnly, ...restProps });
|
|
64068
|
+
return /* @__PURE__ */ jsxRuntimeExports.jsx(jsxRuntimeExports.Fragment, { children: /* @__PURE__ */ jsxRuntimeExports.jsx("textarea", { ref: ref2, id: id2, className: classes2, placeholder, required: isRequired, readOnly: isReadOnly, ...restProps }) });
|
|
64046
64069
|
}), TextArea$1 = TextArea;
|
|
64047
64070
|
function useTreeItemEvents(nodeId, label, expanded, setExpanded, onItemSelect, onItemFold, onItemUnfold, onItemFocus, onItemBlur) {
|
|
64048
64071
|
const handleItemClick = (event) => {
|
|
64049
|
-
event.preventDefault(), onItemSelect == null || onItemSelect(nodeId), event.stopPropagation();
|
|
64072
|
+
event.preventDefault(), onItemSelect == null || onItemSelect(nodeId), itemFoldUnfold(), event.stopPropagation();
|
|
64050
64073
|
}, handleItemKeyDown = (event) => {
|
|
64051
|
-
(event.code === "Enter" || event.code === "Space") && (event.preventDefault(), onItemSelect == null || onItemSelect(nodeId), event.stopPropagation());
|
|
64074
|
+
(event.code === "Enter" || event.code === "Space") && (event.preventDefault(), onItemSelect == null || onItemSelect(nodeId), itemFoldUnfold(), event.stopPropagation());
|
|
64052
64075
|
}, itemFoldUnfold = () => {
|
|
64053
64076
|
setExpanded(!expanded), expanded ? onItemFold == null || onItemFold(nodeId) : onItemUnfold == null || onItemUnfold(nodeId);
|
|
64054
64077
|
};
|
|
@@ -64102,8 +64125,8 @@ const TreeItem = (props) => {
|
|
|
64102
64125
|
const rafterSize = section ? 16 : 12, renderItem = () => /* @__PURE__ */ jsxRuntimeExports.jsx("li", { id: `listitem_${nodeId}`, role: "treeitem", "aria-selected": selected, "aria-expanded": expanded, children: /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { children: [
|
|
64103
64126
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "action-container d-flex align-items-center gap-8 px-2", children: [
|
|
64104
64127
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: `py-8 ${Array.isArray(children) ? null : "invisible"}`, tabIndex: 0, role: "button", onClick: handleItemFoldUnfoldClick, onKeyDown: handleItemFoldUnfoldKeyDown, "aria-label": t2("foldUnfold"), children: [
|
|
64105
|
-
Array.isArray(children) && !expanded && /* @__PURE__ */ jsxRuntimeExports.jsx(SvgRafterRight$1, { title: t2("foldUnfold"), width: rafterSize, height: rafterSize }),
|
|
64106
|
-
Array.isArray(children) && expanded && /* @__PURE__ */ jsxRuntimeExports.jsx(SvgRafterDown$1, { title: t2("foldUnfold"), width: rafterSize, height: rafterSize }),
|
|
64128
|
+
Array.isArray(children) && !!children.length && !expanded && /* @__PURE__ */ jsxRuntimeExports.jsx(SvgRafterRight$1, { title: t2("foldUnfold"), width: rafterSize, height: rafterSize }),
|
|
64129
|
+
Array.isArray(children) && !!children.length && expanded && /* @__PURE__ */ jsxRuntimeExports.jsx(SvgRafterDown$1, { title: t2("foldUnfold"), width: rafterSize, height: rafterSize }),
|
|
64107
64130
|
!Array.isArray(children) && /* @__PURE__ */ jsxRuntimeExports.jsx(SvgRafterRight$1, { title: t2("foldUnfold"), width: rafterSize, height: rafterSize, "aria-hidden": "true" })
|
|
64108
64131
|
] }),
|
|
64109
64132
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { tabIndex: 0, role: "button", className: "flex-fill d-flex align-items-center text-truncate gap-8 py-8", onClick: handleItemClick, onKeyDown: handleItemKeyDown, onFocus: handleItemFocus, onBlur: handleItemBlur, children: [
|
|
@@ -64438,6 +64461,18 @@ const TreeItem = (props) => {
|
|
|
64438
64461
|
}, {
|
|
64439
64462
|
value: "bpr.subjectArea.technology",
|
|
64440
64463
|
label: t2("bpr.subjectArea.technology")
|
|
64464
|
+
}, {
|
|
64465
|
+
value: "bpr.subjectArea.Arabic",
|
|
64466
|
+
label: t2("bpr.subjectArea.Arabic")
|
|
64467
|
+
}, {
|
|
64468
|
+
value: "bpr.subjectArea.Chinese",
|
|
64469
|
+
label: t2("bpr.subjectArea.Chinese")
|
|
64470
|
+
}, {
|
|
64471
|
+
value: "bpr.subjectArea.NaturalSciences",
|
|
64472
|
+
label: t2("bpr.subjectArea.NaturalSciences")
|
|
64473
|
+
}, {
|
|
64474
|
+
value: "bpr.subjectArea.SocioEmotionalEducation",
|
|
64475
|
+
label: t2("bpr.subjectArea.SocioEmotionalEducation")
|
|
64441
64476
|
}, {
|
|
64442
64477
|
value: "bpr.other",
|
|
64443
64478
|
label: t2("bpr.other")
|
|
@@ -64695,7 +64730,10 @@ function PublishModal$2({
|
|
|
64695
64730
|
] })
|
|
64696
64731
|
] }), document.getElementById("portal")) : /* @__PURE__ */ jsxRuntimeExports.jsx(LoadingScreen$1, {});
|
|
64697
64732
|
}
|
|
64698
|
-
const
|
|
64733
|
+
const TextareaCounter = ({
|
|
64734
|
+
content,
|
|
64735
|
+
maxLength
|
|
64736
|
+
}) => /* @__PURE__ */ jsxRuntimeExports.jsx("p", { className: "small text-gray-700 p-2 text-end", children: content ? `${content.length} / ${maxLength}` : "" }), useThumb = ({
|
|
64699
64737
|
isUpdating,
|
|
64700
64738
|
selectedResource
|
|
64701
64739
|
}) => {
|
|
@@ -64707,11 +64745,13 @@ const useThumb = ({
|
|
|
64707
64745
|
handleDeleteImage: () => setThumbnail(""),
|
|
64708
64746
|
handleUploadImage: (file) => setThumbnail(file)
|
|
64709
64747
|
};
|
|
64710
|
-
}, ResourceModal$1 = ({
|
|
64748
|
+
}, DEFAULT_INPUT_MAX_LENGTH = 60, DEFAULT_TEXTAREA_MAX_LENGTH = 400, ResourceModal$1 = ({
|
|
64711
64749
|
isOpen,
|
|
64712
64750
|
onCancel,
|
|
64713
64751
|
onSuccess,
|
|
64714
64752
|
children,
|
|
64753
|
+
inputMaxLength = DEFAULT_INPUT_MAX_LENGTH,
|
|
64754
|
+
textareaMaxLength = DEFAULT_TEXTAREA_MAX_LENGTH,
|
|
64715
64755
|
...props
|
|
64716
64756
|
}) => {
|
|
64717
64757
|
const {
|
|
@@ -64745,7 +64785,7 @@ const useThumb = ({
|
|
|
64745
64785
|
} = useThumb({
|
|
64746
64786
|
isUpdating,
|
|
64747
64787
|
selectedResource: isUpdating ? resource : void 0
|
|
64748
|
-
}), onSubmit = async function(formData) {
|
|
64788
|
+
}), watchedDescription = watch("description"), onSubmit = async function(formData) {
|
|
64749
64789
|
var _a2, _b2;
|
|
64750
64790
|
try {
|
|
64751
64791
|
const data = {
|
|
@@ -64803,15 +64843,20 @@ const useThumb = ({
|
|
|
64803
64843
|
/* @__PURE__ */ jsxRuntimeExports.jsx(Label$1, { children: t2("title") }),
|
|
64804
64844
|
/* @__PURE__ */ jsxRuntimeExports.jsx(Input$1, { type: "text", defaultValue: isUpdating ? resource == null ? void 0 : resource.name : "", ...register("title", {
|
|
64805
64845
|
required: true,
|
|
64846
|
+
maxLength: inputMaxLength,
|
|
64806
64847
|
pattern: {
|
|
64807
64848
|
value: /[^ ]/,
|
|
64808
64849
|
message: "invalid title"
|
|
64809
64850
|
}
|
|
64810
|
-
}), placeholder: t2("explorer.resource.editModal.title.placeholder"), size: "md", "aria-required": true })
|
|
64851
|
+
}), placeholder: t2("explorer.resource.editModal.title.placeholder"), size: "md", "aria-required": true, maxLength: inputMaxLength })
|
|
64811
64852
|
] }),
|
|
64812
64853
|
/* @__PURE__ */ jsxRuntimeExports.jsxs(FormControl$1, { id: "description", isOptional: true, children: [
|
|
64813
64854
|
/* @__PURE__ */ jsxRuntimeExports.jsx(Label$1, { children: t2("description") }),
|
|
64814
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(TextArea$1, { defaultValue:
|
|
64855
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx(TextArea$1, { defaultValue: (resource == null ? void 0 : resource.description) || "", ...register("description", {
|
|
64856
|
+
required: false,
|
|
64857
|
+
maxLength: textareaMaxLength
|
|
64858
|
+
}), placeholder: t2("explorer.resource.editModal.description.placeholder"), size: "md", maxLength: textareaMaxLength }),
|
|
64859
|
+
watchedDescription && /* @__PURE__ */ jsxRuntimeExports.jsx(TextareaCounter, { content: watchedDescription, maxLength: textareaMaxLength })
|
|
64815
64860
|
] })
|
|
64816
64861
|
] })
|
|
64817
64862
|
] }),
|
|
@@ -65948,6 +65993,36 @@ const useShareMutation = ({
|
|
|
65948
65993
|
}) => await odeServices.share().saveRights(application, resourceId, rights),
|
|
65949
65994
|
...options
|
|
65950
65995
|
}), useShareMutation$1 = useShareMutation;
|
|
65996
|
+
function usePreferences(name) {
|
|
65997
|
+
return {
|
|
65998
|
+
getPreference: async () => await odeServices.conf().getPreference(name),
|
|
65999
|
+
savePreference: async (value) => await odeServices.conf().savePreference(name, JSON.stringify(value))
|
|
66000
|
+
};
|
|
66001
|
+
}
|
|
66002
|
+
function useCookiesConsent() {
|
|
66003
|
+
const [showCookiesConsent, setShowCookiesConsent] = reactExports.useState(false), {
|
|
66004
|
+
getPreference,
|
|
66005
|
+
savePreference
|
|
66006
|
+
} = usePreferences("rgpdCookies");
|
|
66007
|
+
return reactExports.useEffect(() => {
|
|
66008
|
+
(async () => {
|
|
66009
|
+
const res = await getPreference();
|
|
66010
|
+
setShowCookiesConsent(res === null ? true : res.showInfoTip);
|
|
66011
|
+
})();
|
|
66012
|
+
}, []), {
|
|
66013
|
+
showCookiesConsent,
|
|
66014
|
+
handleConsultCookies: () => {
|
|
66015
|
+
document.location.href = "/userbook/mon-compte", savePreference({
|
|
66016
|
+
showInfoTip: false
|
|
66017
|
+
}), setShowCookiesConsent(false);
|
|
66018
|
+
},
|
|
66019
|
+
handleCloseCookiesConsent: () => {
|
|
66020
|
+
savePreference({
|
|
66021
|
+
showInfoTip: false
|
|
66022
|
+
}), setShowCookiesConsent(false);
|
|
66023
|
+
}
|
|
66024
|
+
};
|
|
66025
|
+
}
|
|
65951
66026
|
function Badge({
|
|
65952
66027
|
children
|
|
65953
66028
|
}) {
|
|
@@ -66260,31 +66335,31 @@ const SearchEngine = () => {
|
|
|
66260
66335
|
] }) })
|
|
66261
66336
|
] })
|
|
66262
66337
|
] }) }) });
|
|
66263
|
-
}, Header$2 = Header$1
|
|
66264
|
-
function Main({
|
|
66265
|
-
children,
|
|
66266
|
-
className,
|
|
66267
|
-
...restProps
|
|
66268
|
-
}) {
|
|
66269
|
-
const classes2 = clsx("container-fluid", className);
|
|
66270
|
-
return /* @__PURE__ */ jsxRuntimeExports.jsx("main", { className: classes2, ...restProps, children });
|
|
66271
|
-
}
|
|
66272
|
-
const Layout = ({
|
|
66338
|
+
}, Header$2 = Header$1, Layout = ({
|
|
66273
66339
|
children,
|
|
66340
|
+
headless = false,
|
|
66274
66341
|
...restProps
|
|
66275
66342
|
}) => {
|
|
66276
66343
|
const {
|
|
66277
66344
|
theme
|
|
66278
|
-
} = useOdeTheme()
|
|
66345
|
+
} = useOdeTheme(), {
|
|
66346
|
+
t: t2
|
|
66347
|
+
} = useTranslation(), {
|
|
66348
|
+
showCookiesConsent,
|
|
66349
|
+
handleConsultCookies,
|
|
66350
|
+
handleCloseCookiesConsent
|
|
66351
|
+
} = useCookiesConsent(), classes2 = clsx("d-flex flex-column bg-white", {
|
|
66352
|
+
"container-fluid": !headless,
|
|
66353
|
+
"rounded-4 border": (theme == null ? void 0 : theme.is1d) && !headless,
|
|
66354
|
+
"mt-24": (theme == null ? void 0 : theme.is1d) && !headless
|
|
66355
|
+
}), renderHeader = headless ? null : /* @__PURE__ */ jsxRuntimeExports.jsx(Header$2, { is1d: theme == null ? void 0 : theme.is1d, src: theme == null ? void 0 : theme.basePath }), renderCookies = showCookiesConsent && /* @__PURE__ */ jsxRuntimeExports.jsx(Alert$1, { type: "info", className: "m-12", isConfirm: true, position: "bottom-right", button: /* @__PURE__ */ jsxRuntimeExports.jsx(Button$1, { color: "tertiary", variant: "ghost", onClick: handleConsultCookies, children: t2("rgpd.cookies.banner.button.consult") }), onClose: handleCloseCookiesConsent, children: t2("rgpd.cookies.banner.text1") }), renderToaster = /* @__PURE__ */ jsxRuntimeExports.jsx(Ie$1, { containerClassName: "toaster-container", toastOptions: {
|
|
66356
|
+
position: "top-right"
|
|
66357
|
+
} });
|
|
66279
66358
|
return /* @__PURE__ */ jsxRuntimeExports.jsxs(jsxRuntimeExports.Fragment, { children: [
|
|
66280
|
-
|
|
66281
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
66282
|
-
|
|
66283
|
-
|
|
66284
|
-
}), ...restProps, children }),
|
|
66285
|
-
/* @__PURE__ */ jsxRuntimeExports.jsx(Ie$1, { toastOptions: {
|
|
66286
|
-
position: "top-right"
|
|
66287
|
-
} })
|
|
66359
|
+
renderHeader,
|
|
66360
|
+
/* @__PURE__ */ jsxRuntimeExports.jsx("main", { className: classes2, ...restProps, children }),
|
|
66361
|
+
renderToaster,
|
|
66362
|
+
renderCookies
|
|
66288
66363
|
] });
|
|
66289
66364
|
}, Layout$1 = Layout;
|
|
66290
66365
|
const scriptRel = "modulepreload";
|
|
@@ -66510,7 +66585,7 @@ withSelector_production_min.useSyncExternalStoreWithSelector = function(a2, b2,
|
|
|
66510
66585
|
withSelector.exports = withSelector_production_min;
|
|
66511
66586
|
}
|
|
66512
66587
|
var withSelectorExports = withSelector.exports;
|
|
66513
|
-
const useSyncExternalStoreExports = /* @__PURE__ */ getDefaultExportFromCjs(withSelectorExports);
|
|
66588
|
+
const useSyncExternalStoreExports = /* @__PURE__ */ getDefaultExportFromCjs$1(withSelectorExports);
|
|
66514
66589
|
var define_import_meta_env_default = { BASE_URL: "/", MODE: "production", DEV: false, PROD: true, SSR: false };
|
|
66515
66590
|
const { useDebugValue } = React$2;
|
|
66516
66591
|
const { useSyncExternalStoreWithSelector } = useSyncExternalStoreExports;
|