@gardenfi/garden-book 0.1.99 → 0.1.100-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/atoms/Container/Container.d.ts +13 -0
- package/dist/components/atoms/Container/Container.stories.d.ts +7 -0
- package/dist/components/atoms/Icons/APIIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/BlogIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/BrandKitIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/ConsoleIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/CopyrightsIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/DiscordIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/DraftIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/OtterSecIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/SDKIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/StakeIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/XIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/XSolidIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/ZellicIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/index.d.ts +13 -0
- package/dist/components/atoms/index.d.ts +2 -1
- package/dist/style.css +1 -1
- package/dist/ui.cjs.js +7 -7
- package/dist/ui.es.js +837 -433
- package/dist/ui.umd.js +7 -7
- package/package.json +1 -1
package/dist/ui.es.js
CHANGED
|
@@ -371,7 +371,7 @@ function isImage(e) {
|
|
|
371
371
|
return imageRegex.test(e);
|
|
372
372
|
}
|
|
373
373
|
function getDefaultConfig() {
|
|
374
|
-
const e = fromTheme("colors"), t = fromTheme("spacing"), i = fromTheme("blur"), n = fromTheme("brightness"), s = fromTheme("borderColor"), a = fromTheme("borderRadius"), o = fromTheme("borderSpacing"), l = fromTheme("borderWidth"), c = fromTheme("contrast"), f = fromTheme("grayscale"), u = fromTheme("hueRotate"), p = fromTheme("invert"), d = fromTheme("gap"), b = fromTheme("gradientColorStops"), C = fromTheme("gradientColorStopPositions"), g = fromTheme("inset"), E = fromTheme("margin"), m = fromTheme("opacity"), x = fromTheme("padding"), y = fromTheme("saturate"), S = fromTheme("scale"), T = fromTheme("sepia"), M = fromTheme("skew"), L = fromTheme("space"), V = fromTheme("translate"), k = () => ["auto", "contain", "none"], U = () => ["auto", "hidden", "clip", "visible", "scroll"],
|
|
374
|
+
const e = fromTheme("colors"), t = fromTheme("spacing"), i = fromTheme("blur"), n = fromTheme("brightness"), s = fromTheme("borderColor"), a = fromTheme("borderRadius"), o = fromTheme("borderSpacing"), l = fromTheme("borderWidth"), c = fromTheme("contrast"), f = fromTheme("grayscale"), u = fromTheme("hueRotate"), p = fromTheme("invert"), d = fromTheme("gap"), b = fromTheme("gradientColorStops"), C = fromTheme("gradientColorStopPositions"), g = fromTheme("inset"), E = fromTheme("margin"), m = fromTheme("opacity"), x = fromTheme("padding"), y = fromTheme("saturate"), S = fromTheme("scale"), T = fromTheme("sepia"), M = fromTheme("skew"), L = fromTheme("space"), V = fromTheme("translate"), k = () => ["auto", "contain", "none"], U = () => ["auto", "hidden", "clip", "visible", "scroll"], z = () => ["auto", isArbitraryValue, t], B = () => [isArbitraryValue, t], G = () => ["", isLength, isArbitraryLength], q = () => ["auto", isNumber, isArbitraryValue], H = () => ["bottom", "center", "left", "left-bottom", "left-top", "right", "right-bottom", "right-top", "top"], _ = () => ["solid", "dashed", "dotted", "double", "none"], R = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], P = () => ["start", "end", "center", "between", "around", "evenly", "stretch"], A = () => ["", "0", isArbitraryValue], F = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], I = () => [isNumber, isArbitraryNumber], W = () => [isNumber, isArbitraryValue];
|
|
375
375
|
return {
|
|
376
376
|
cacheSize: 500,
|
|
377
377
|
separator: ":",
|
|
@@ -383,7 +383,7 @@ function getDefaultConfig() {
|
|
|
383
383
|
borderColor: [e],
|
|
384
384
|
borderRadius: ["none", "", "full", isTshirtSize, isArbitraryValue],
|
|
385
385
|
borderSpacing: B(),
|
|
386
|
-
borderWidth:
|
|
386
|
+
borderWidth: G(),
|
|
387
387
|
contrast: I(),
|
|
388
388
|
grayscale: A(),
|
|
389
389
|
hueRotate: W(),
|
|
@@ -391,8 +391,8 @@ function getDefaultConfig() {
|
|
|
391
391
|
gap: B(),
|
|
392
392
|
gradientColorStops: [e],
|
|
393
393
|
gradientColorStopPositions: [isPercent, isArbitraryLength],
|
|
394
|
-
inset:
|
|
395
|
-
margin:
|
|
394
|
+
inset: z(),
|
|
395
|
+
margin: z(),
|
|
396
396
|
opacity: I(),
|
|
397
397
|
padding: B(),
|
|
398
398
|
saturate: I(),
|
|
@@ -494,7 +494,7 @@ function getDefaultConfig() {
|
|
|
494
494
|
* @see https://tailwindcss.com/docs/object-position
|
|
495
495
|
*/
|
|
496
496
|
"object-position": [{
|
|
497
|
-
object: [...
|
|
497
|
+
object: [...H(), isArbitraryValue]
|
|
498
498
|
}],
|
|
499
499
|
/**
|
|
500
500
|
* Overflow
|
|
@@ -624,7 +624,7 @@ function getDefaultConfig() {
|
|
|
624
624
|
* @see https://tailwindcss.com/docs/flex-basis
|
|
625
625
|
*/
|
|
626
626
|
basis: [{
|
|
627
|
-
basis:
|
|
627
|
+
basis: z()
|
|
628
628
|
}],
|
|
629
629
|
/**
|
|
630
630
|
* Flex Direction
|
|
@@ -1303,7 +1303,7 @@ function getDefaultConfig() {
|
|
|
1303
1303
|
* @see https://tailwindcss.com/docs/background-position
|
|
1304
1304
|
*/
|
|
1305
1305
|
"bg-position": [{
|
|
1306
|
-
bg: [...
|
|
1306
|
+
bg: [...H(), isArbitraryPosition]
|
|
1307
1307
|
}],
|
|
1308
1308
|
/**
|
|
1309
1309
|
* Background Repeat
|
|
@@ -1689,7 +1689,7 @@ function getDefaultConfig() {
|
|
|
1689
1689
|
* @see https://tailwindcss.com/docs/ring-width
|
|
1690
1690
|
*/
|
|
1691
1691
|
"ring-w": [{
|
|
1692
|
-
ring:
|
|
1692
|
+
ring: G()
|
|
1693
1693
|
}],
|
|
1694
1694
|
/**
|
|
1695
1695
|
* Ring Width Inset
|
|
@@ -2688,10 +2688,10 @@ var lottie$1 = { exports: {} };
|
|
|
2688
2688
|
function l() {
|
|
2689
2689
|
n || (n = o(function(b) {
|
|
2690
2690
|
function C() {
|
|
2691
|
-
function E(
|
|
2692
|
-
var R, P, A =
|
|
2691
|
+
function E(H, _) {
|
|
2692
|
+
var R, P, A = H.length, F, I, W, K;
|
|
2693
2693
|
for (P = 0; P < A; P += 1)
|
|
2694
|
-
if (R =
|
|
2694
|
+
if (R = H[P], "ks" in R && !R.completed) {
|
|
2695
2695
|
if (R.completed = !0, R.hasMask) {
|
|
2696
2696
|
var X = R.masksProperties;
|
|
2697
2697
|
for (I = X.length, F = 0; F < I; F += 1)
|
|
@@ -2701,50 +2701,50 @@ var lottie$1 = { exports: {} };
|
|
|
2701
2701
|
for (K = X[F].pt.k.length, W = 0; W < K; W += 1)
|
|
2702
2702
|
X[F].pt.k[W].s && T(X[F].pt.k[W].s[0]), X[F].pt.k[W].e && T(X[F].pt.k[W].e[0]);
|
|
2703
2703
|
}
|
|
2704
|
-
R.ty === 0 ? (R.layers = y(R.refId, _), E(R.layers, _)) : R.ty === 4 ? S(R.shapes) : R.ty === 5 &&
|
|
2704
|
+
R.ty === 0 ? (R.layers = y(R.refId, _), E(R.layers, _)) : R.ty === 4 ? S(R.shapes) : R.ty === 5 && G(R);
|
|
2705
2705
|
}
|
|
2706
2706
|
}
|
|
2707
|
-
function m(
|
|
2708
|
-
if (
|
|
2709
|
-
var R = 0, P =
|
|
2707
|
+
function m(H, _) {
|
|
2708
|
+
if (H) {
|
|
2709
|
+
var R = 0, P = H.length;
|
|
2710
2710
|
for (R = 0; R < P; R += 1)
|
|
2711
|
-
|
|
2711
|
+
H[R].t === 1 && (H[R].data.layers = y(H[R].data.refId, _), E(H[R].data.layers, _));
|
|
2712
2712
|
}
|
|
2713
2713
|
}
|
|
2714
|
-
function x(
|
|
2714
|
+
function x(H, _) {
|
|
2715
2715
|
for (var R = 0, P = _.length; R < P; ) {
|
|
2716
|
-
if (_[R].id ===
|
|
2716
|
+
if (_[R].id === H)
|
|
2717
2717
|
return _[R];
|
|
2718
2718
|
R += 1;
|
|
2719
2719
|
}
|
|
2720
2720
|
return null;
|
|
2721
2721
|
}
|
|
2722
|
-
function y(
|
|
2723
|
-
var R = x(
|
|
2722
|
+
function y(H, _) {
|
|
2723
|
+
var R = x(H, _);
|
|
2724
2724
|
return R ? R.layers.__used ? JSON.parse(JSON.stringify(R.layers)) : (R.layers.__used = !0, R.layers) : null;
|
|
2725
2725
|
}
|
|
2726
|
-
function S(
|
|
2727
|
-
var _, R =
|
|
2726
|
+
function S(H) {
|
|
2727
|
+
var _, R = H.length, P, A;
|
|
2728
2728
|
for (_ = R - 1; _ >= 0; _ -= 1)
|
|
2729
|
-
if (
|
|
2730
|
-
if (
|
|
2731
|
-
T(
|
|
2729
|
+
if (H[_].ty === "sh")
|
|
2730
|
+
if (H[_].ks.k.i)
|
|
2731
|
+
T(H[_].ks.k);
|
|
2732
2732
|
else
|
|
2733
|
-
for (A =
|
|
2734
|
-
|
|
2735
|
-
else
|
|
2733
|
+
for (A = H[_].ks.k.length, P = 0; P < A; P += 1)
|
|
2734
|
+
H[_].ks.k[P].s && T(H[_].ks.k[P].s[0]), H[_].ks.k[P].e && T(H[_].ks.k[P].e[0]);
|
|
2735
|
+
else H[_].ty === "gr" && S(H[_].it);
|
|
2736
2736
|
}
|
|
2737
|
-
function T(
|
|
2738
|
-
var _, R =
|
|
2737
|
+
function T(H) {
|
|
2738
|
+
var _, R = H.i.length;
|
|
2739
2739
|
for (_ = 0; _ < R; _ += 1)
|
|
2740
|
-
|
|
2740
|
+
H.i[_][0] += H.v[_][0], H.i[_][1] += H.v[_][1], H.o[_][0] += H.v[_][0], H.o[_][1] += H.v[_][1];
|
|
2741
2741
|
}
|
|
2742
|
-
function M(
|
|
2742
|
+
function M(H, _) {
|
|
2743
2743
|
var R = _ ? _.split(".") : [100, 100, 100];
|
|
2744
|
-
return
|
|
2744
|
+
return H[0] > R[0] ? !0 : R[0] > H[0] ? !1 : H[1] > R[1] ? !0 : R[1] > H[1] ? !1 : H[2] > R[2] ? !0 : R[2] > H[2] ? !1 : null;
|
|
2745
2745
|
}
|
|
2746
2746
|
var L = /* @__PURE__ */ function() {
|
|
2747
|
-
var
|
|
2747
|
+
var H = [4, 4, 14];
|
|
2748
2748
|
function _(P) {
|
|
2749
2749
|
var A = P.t.d;
|
|
2750
2750
|
P.t.d = {
|
|
@@ -2760,16 +2760,16 @@ var lottie$1 = { exports: {} };
|
|
|
2760
2760
|
P[A].ty === 5 && _(P[A]);
|
|
2761
2761
|
}
|
|
2762
2762
|
return function(P) {
|
|
2763
|
-
if (M(
|
|
2763
|
+
if (M(H, P.v) && (R(P.layers), P.assets)) {
|
|
2764
2764
|
var A, F = P.assets.length;
|
|
2765
2765
|
for (A = 0; A < F; A += 1)
|
|
2766
2766
|
P.assets[A].layers && R(P.assets[A].layers);
|
|
2767
2767
|
}
|
|
2768
2768
|
};
|
|
2769
2769
|
}(), V = /* @__PURE__ */ function() {
|
|
2770
|
-
var
|
|
2770
|
+
var H = [4, 7, 99];
|
|
2771
2771
|
return function(_) {
|
|
2772
|
-
if (_.chars && !M(
|
|
2772
|
+
if (_.chars && !M(H, _.v)) {
|
|
2773
2773
|
var R, P = _.chars.length;
|
|
2774
2774
|
for (R = 0; R < P; R += 1) {
|
|
2775
2775
|
var A = _.chars[R];
|
|
@@ -2831,7 +2831,7 @@ var lottie$1 = { exports: {} };
|
|
|
2831
2831
|
}
|
|
2832
2832
|
};
|
|
2833
2833
|
}(), k = /* @__PURE__ */ function() {
|
|
2834
|
-
var
|
|
2834
|
+
var H = [5, 7, 15];
|
|
2835
2835
|
function _(P) {
|
|
2836
2836
|
var A = P.t.p;
|
|
2837
2837
|
typeof A.a == "number" && (A.a = {
|
|
@@ -2851,14 +2851,14 @@ var lottie$1 = { exports: {} };
|
|
|
2851
2851
|
P[A].ty === 5 && _(P[A]);
|
|
2852
2852
|
}
|
|
2853
2853
|
return function(P) {
|
|
2854
|
-
if (M(
|
|
2854
|
+
if (M(H, P.v) && (R(P.layers), P.assets)) {
|
|
2855
2855
|
var A, F = P.assets.length;
|
|
2856
2856
|
for (A = 0; A < F; A += 1)
|
|
2857
2857
|
P.assets[A].layers && R(P.assets[A].layers);
|
|
2858
2858
|
}
|
|
2859
2859
|
};
|
|
2860
2860
|
}(), U = /* @__PURE__ */ function() {
|
|
2861
|
-
var
|
|
2861
|
+
var H = [4, 1, 9];
|
|
2862
2862
|
function _(P) {
|
|
2863
2863
|
var A, F = P.length, I, W;
|
|
2864
2864
|
for (A = 0; A < F; A += 1)
|
|
@@ -2877,14 +2877,14 @@ var lottie$1 = { exports: {} };
|
|
|
2877
2877
|
P[A].ty === 4 && _(P[A].shapes);
|
|
2878
2878
|
}
|
|
2879
2879
|
return function(P) {
|
|
2880
|
-
if (M(
|
|
2880
|
+
if (M(H, P.v) && (R(P.layers), P.assets)) {
|
|
2881
2881
|
var A, F = P.assets.length;
|
|
2882
2882
|
for (A = 0; A < F; A += 1)
|
|
2883
2883
|
P.assets[A].layers && R(P.assets[A].layers);
|
|
2884
2884
|
}
|
|
2885
2885
|
};
|
|
2886
|
-
}(),
|
|
2887
|
-
var
|
|
2886
|
+
}(), z = /* @__PURE__ */ function() {
|
|
2887
|
+
var H = [4, 4, 18];
|
|
2888
2888
|
function _(P) {
|
|
2889
2889
|
var A, F = P.length, I, W;
|
|
2890
2890
|
for (A = F - 1; A >= 0; A -= 1)
|
|
@@ -2912,21 +2912,21 @@ var lottie$1 = { exports: {} };
|
|
|
2912
2912
|
}
|
|
2913
2913
|
}
|
|
2914
2914
|
return function(P) {
|
|
2915
|
-
if (M(
|
|
2915
|
+
if (M(H, P.v) && (R(P.layers), P.assets)) {
|
|
2916
2916
|
var A, F = P.assets.length;
|
|
2917
2917
|
for (A = 0; A < F; A += 1)
|
|
2918
2918
|
P.assets[A].layers && R(P.assets[A].layers);
|
|
2919
2919
|
}
|
|
2920
2920
|
};
|
|
2921
2921
|
}();
|
|
2922
|
-
function B(
|
|
2923
|
-
|
|
2922
|
+
function B(H) {
|
|
2923
|
+
H.__complete || (U(H), L(H), V(H), k(H), z(H), E(H.layers, H.assets), m(H.chars, H.assets), H.__complete = !0);
|
|
2924
2924
|
}
|
|
2925
|
-
function
|
|
2926
|
-
|
|
2925
|
+
function G(H) {
|
|
2926
|
+
H.t.a.length === 0 && "m" in H.t.p;
|
|
2927
2927
|
}
|
|
2928
2928
|
var q = {};
|
|
2929
|
-
return q.completeData = B, q.checkColors = U, q.checkChars = V, q.checkPathProperties = k, q.checkShapes =
|
|
2929
|
+
return q.completeData = B, q.checkColors = U, q.checkChars = V, q.checkPathProperties = k, q.checkShapes = z, q.completeLayers = E, q;
|
|
2930
2930
|
}
|
|
2931
2931
|
if (a.dataManager || (a.dataManager = C()), a.assetLoader || (a.assetLoader = /* @__PURE__ */ function() {
|
|
2932
2932
|
function E(x) {
|
|
@@ -3581,13 +3581,13 @@ var lottie$1 = { exports: {} };
|
|
|
3581
3581
|
function U() {
|
|
3582
3582
|
!o && s && a && (window.requestAnimationFrame(x), a = !1);
|
|
3583
3583
|
}
|
|
3584
|
-
function
|
|
3584
|
+
function z() {
|
|
3585
3585
|
o = !0;
|
|
3586
3586
|
}
|
|
3587
3587
|
function B() {
|
|
3588
3588
|
o = !1, U();
|
|
3589
3589
|
}
|
|
3590
|
-
function
|
|
3590
|
+
function G(_, R) {
|
|
3591
3591
|
var P;
|
|
3592
3592
|
for (P = 0; P < n; P += 1)
|
|
3593
3593
|
t[P].animation.setVolume(_, R);
|
|
@@ -3597,12 +3597,12 @@ var lottie$1 = { exports: {} };
|
|
|
3597
3597
|
for (R = 0; R < n; R += 1)
|
|
3598
3598
|
t[R].animation.mute(_);
|
|
3599
3599
|
}
|
|
3600
|
-
function
|
|
3600
|
+
function H(_) {
|
|
3601
3601
|
var R;
|
|
3602
3602
|
for (R = 0; R < n; R += 1)
|
|
3603
3603
|
t[R].animation.unmute(_);
|
|
3604
3604
|
}
|
|
3605
|
-
return e.registerAnimation = c, e.loadAnimation = b, e.setSpeed = C, e.setDirection = g, e.play = E, e.pause = y, e.stop = T, e.togglePause = M, e.searchAnimations = V, e.resize = k, e.goToAndStop = S, e.destroy = L, e.freeze =
|
|
3605
|
+
return e.registerAnimation = c, e.loadAnimation = b, e.setSpeed = C, e.setDirection = g, e.play = E, e.pause = y, e.stop = T, e.togglePause = M, e.searchAnimations = V, e.resize = k, e.goToAndStop = S, e.destroy = L, e.freeze = z, e.unfreeze = B, e.setVolume = G, e.mute = q, e.unmute = H, e.getRegisteredAnimations = f, e;
|
|
3606
3606
|
}(), BezierFactory = function() {
|
|
3607
3607
|
var e = {};
|
|
3608
3608
|
e.getBezierEasing = i;
|
|
@@ -3670,8 +3670,8 @@ var lottie$1 = { exports: {} };
|
|
|
3670
3670
|
for (var S = this._p[0], T = this._p[2], M = this._mSampleValues, L = 0, V = 1, k = l - 1; V !== k && M[V] <= y; ++V)
|
|
3671
3671
|
L += c;
|
|
3672
3672
|
--V;
|
|
3673
|
-
var U = (y - M[V]) / (M[V + 1] - M[V]),
|
|
3674
|
-
return B >= s ? E(y,
|
|
3673
|
+
var U = (y - M[V]) / (M[V + 1] - M[V]), z = L + U * c, B = C(z, S, T);
|
|
3674
|
+
return B >= s ? E(y, z, S, T) : B === 0 ? z : g(y, L, L + c, S, T);
|
|
3675
3675
|
}
|
|
3676
3676
|
}, e;
|
|
3677
3677
|
}(), pooling = /* @__PURE__ */ function() {
|
|
@@ -3760,13 +3760,13 @@ var lottie$1 = { exports: {} };
|
|
|
3760
3760
|
return function(b, C, g, E) {
|
|
3761
3761
|
var m = (b[0] + "_" + b[1] + "_" + C[0] + "_" + C[1] + "_" + g[0] + "_" + g[1] + "_" + E[0] + "_" + E[1]).replace(/\./g, "p");
|
|
3762
3762
|
if (!d[m]) {
|
|
3763
|
-
var x = getDefaultCurveSegments(), y, S, T, M, L, V = 0, k, U,
|
|
3763
|
+
var x = getDefaultCurveSegments(), y, S, T, M, L, V = 0, k, U, z = null;
|
|
3764
3764
|
b.length === 2 && (b[0] !== C[0] || b[1] !== C[1]) && t(b[0], b[1], C[0], C[1], b[0] + g[0], b[1] + g[1]) && t(b[0], b[1], C[0], C[1], C[0] + E[0], C[1] + E[1]) && (x = 2);
|
|
3765
3765
|
var B = new a(x);
|
|
3766
3766
|
for (T = g.length, y = 0; y < x; y += 1) {
|
|
3767
3767
|
for (U = createSizedArray(T), L = y / (x - 1), k = 0, S = 0; S < T; S += 1)
|
|
3768
|
-
M = bmPow(1 - L, 3) * b[S] + 3 * bmPow(1 - L, 2) * L * (b[S] + g[S]) + 3 * (1 - L) * bmPow(L, 2) * (C[S] + E[S]) + bmPow(L, 3) * C[S], U[S] = M,
|
|
3769
|
-
k = bmSqrt(k), V += k, B.points[y] = new o(k, U),
|
|
3768
|
+
M = bmPow(1 - L, 3) * b[S] + 3 * bmPow(1 - L, 2) * L * (b[S] + g[S]) + 3 * (1 - L) * bmPow(L, 2) * (C[S] + E[S]) + bmPow(L, 3) * C[S], U[S] = M, z !== null && (k += bmPow(U[S] - z[S], 2));
|
|
3769
|
+
k = bmSqrt(k), V += k, B.points[y] = new o(k, U), z = U;
|
|
3770
3770
|
}
|
|
3771
3771
|
B.segmentLength = V, d[m] = B;
|
|
3772
3772
|
}
|
|
@@ -3794,9 +3794,9 @@ var lottie$1 = { exports: {} };
|
|
|
3794
3794
|
E < 0 ? E = 0 : E > 1 && (E = 1);
|
|
3795
3795
|
var y = c(E, x);
|
|
3796
3796
|
m = m > 1 ? 1 : m;
|
|
3797
|
-
var S = c(m, x), T, M = d.length, L = 1 - y, V = 1 - S, k = L * L * L, U = y * L * L * 3,
|
|
3797
|
+
var S = c(m, x), T, M = d.length, L = 1 - y, V = 1 - S, k = L * L * L, U = y * L * L * 3, z = y * y * L * 3, B = y * y * y, G = L * L * V, q = y * L * V + L * y * V + L * L * S, H = y * y * V + L * y * S + y * L * S, _ = y * y * S, R = L * V * V, P = y * V * V + L * S * V + L * V * S, A = y * S * V + L * S * S + y * V * S, F = y * S * S, I = V * V * V, W = S * V * V + V * S * V + V * V * S, K = S * S * V + V * S * S + S * V * S, X = S * S * S;
|
|
3798
3798
|
for (T = 0; T < M; T += 1)
|
|
3799
|
-
u[T * 4] = e.round((k * d[T] + U * C[T] +
|
|
3799
|
+
u[T * 4] = e.round((k * d[T] + U * C[T] + z * g[T] + B * b[T]) * 1e3) / 1e3, u[T * 4 + 1] = e.round((G * d[T] + q * C[T] + H * g[T] + _ * b[T]) * 1e3) / 1e3, u[T * 4 + 2] = e.round((R * d[T] + P * C[T] + A * g[T] + F * b[T]) * 1e3) / 1e3, u[T * 4 + 3] = e.round((I * d[T] + W * C[T] + K * g[T] + X * b[T]) * 1e3) / 1e3;
|
|
3800
3800
|
return u;
|
|
3801
3801
|
}
|
|
3802
3802
|
return {
|
|
@@ -3850,19 +3850,19 @@ var lottie$1 = { exports: {} };
|
|
|
3850
3850
|
t._lastPoint = g, t._lastAddedLength = V - S.points[g].partialLength, t._lastKeyframeIndex = a;
|
|
3851
3851
|
}
|
|
3852
3852
|
} else {
|
|
3853
|
-
var k, U,
|
|
3853
|
+
var k, U, z, B, G;
|
|
3854
3854
|
if (o = c.s.length, y = f.s || c.e, this.sh && c.h !== 1)
|
|
3855
3855
|
if (e >= m)
|
|
3856
3856
|
n[0] = y[0], n[1] = y[1], n[2] = y[2];
|
|
3857
3857
|
else if (e <= x)
|
|
3858
3858
|
n[0] = c.s[0], n[1] = c.s[1], n[2] = c.s[2];
|
|
3859
3859
|
else {
|
|
3860
|
-
var q = createQuaternion(c.s),
|
|
3861
|
-
quaternionToEuler(n, slerp(q,
|
|
3860
|
+
var q = createQuaternion(c.s), H = createQuaternion(y), _ = (e - x) / (m - x);
|
|
3861
|
+
quaternionToEuler(n, slerp(q, H, _));
|
|
3862
3862
|
}
|
|
3863
3863
|
else
|
|
3864
3864
|
for (a = 0; a < o; a += 1)
|
|
3865
|
-
c.h !== 1 && (e >= m ? b = 1 : e < x ? b = 0 : (c.o.x.constructor === Array ? (u.__fnct || (u.__fnct = []), u.__fnct[a] ? E = u.__fnct[a] : (k = c.o.x[a] === void 0 ? c.o.x[0] : c.o.x[a], U = c.o.y[a] === void 0 ? c.o.y[0] : c.o.y[a],
|
|
3865
|
+
c.h !== 1 && (e >= m ? b = 1 : e < x ? b = 0 : (c.o.x.constructor === Array ? (u.__fnct || (u.__fnct = []), u.__fnct[a] ? E = u.__fnct[a] : (k = c.o.x[a] === void 0 ? c.o.x[0] : c.o.x[a], U = c.o.y[a] === void 0 ? c.o.y[0] : c.o.y[a], z = c.i.x[a] === void 0 ? c.i.x[0] : c.i.x[a], B = c.i.y[a] === void 0 ? c.i.y[0] : c.i.y[a], E = BezierFactory.getBezierEasing(k, U, z, B).get, u.__fnct[a] = E)) : u.__fnct ? E = u.__fnct : (k = c.o.x, U = c.o.y, z = c.i.x, B = c.i.y, E = BezierFactory.getBezierEasing(k, U, z, B).get, c.keyframeMetadata = E), b = E((e - x) / (m - x)))), y = f.s || c.e, G = c.h === 1 ? c.s[a] : c.s[a] + (y[a] - c.s[a]) * b, this.propType === "multidimensional" ? n[a] = G : n = G;
|
|
3866
3866
|
}
|
|
3867
3867
|
return t.lastIndex = s, n;
|
|
3868
3868
|
}
|
|
@@ -4083,15 +4083,15 @@ var lottie$1 = { exports: {} };
|
|
|
4083
4083
|
}(), ShapePropertyFactory = function() {
|
|
4084
4084
|
var e = -999999;
|
|
4085
4085
|
function t(m, x, y) {
|
|
4086
|
-
var S = y.lastIndex, T, M, L, V, k, U,
|
|
4086
|
+
var S = y.lastIndex, T, M, L, V, k, U, z, B, G, q = this.keyframes;
|
|
4087
4087
|
if (m < q[0].t - this.offsetTime)
|
|
4088
4088
|
T = q[0].s[0], L = !0, S = 0;
|
|
4089
4089
|
else if (m >= q[q.length - 1].t - this.offsetTime)
|
|
4090
4090
|
T = q[q.length - 1].s ? q[q.length - 1].s[0] : q[q.length - 2].e[0], L = !0;
|
|
4091
4091
|
else {
|
|
4092
|
-
for (var
|
|
4093
|
-
|
|
4094
|
-
if (F = this.keyframesMetadata[
|
|
4092
|
+
for (var H = S, _ = q.length - 1, R = !0, P, A, F; R && (P = q[H], A = q[H + 1], !(A.t - this.offsetTime > m)); )
|
|
4093
|
+
H < _ - 1 ? H += 1 : R = !1;
|
|
4094
|
+
if (F = this.keyframesMetadata[H] || {}, L = P.h === 1, S = H, !L) {
|
|
4095
4095
|
if (m >= A.t - this.offsetTime)
|
|
4096
4096
|
B = 1;
|
|
4097
4097
|
else if (m < P.t - this.offsetTime)
|
|
@@ -4104,9 +4104,9 @@ var lottie$1 = { exports: {} };
|
|
|
4104
4104
|
}
|
|
4105
4105
|
T = P.s[0];
|
|
4106
4106
|
}
|
|
4107
|
-
for (U = x._length,
|
|
4108
|
-
for (k = 0; k <
|
|
4109
|
-
|
|
4107
|
+
for (U = x._length, z = T.i[0].length, y.lastIndex = S, V = 0; V < U; V += 1)
|
|
4108
|
+
for (k = 0; k < z; k += 1)
|
|
4109
|
+
G = L ? T.i[V][k] : T.i[V][k] + (M.i[V][k] - T.i[V][k]) * B, x.i[V][k] = G, G = L ? T.o[V][k] : T.o[V][k] + (M.o[V][k] - T.o[V][k]) * B, x.o[V][k] = G, G = L ? T.v[V][k] : T.v[V][k] + (M.v[V][k] - T.v[V][k]) * B, x.v[V][k] = G;
|
|
4110
4110
|
}
|
|
4111
4111
|
function i() {
|
|
4112
4112
|
var m = this.comp.renderedFrame - this.offsetTime, x = this.keyframes[0].t - this.offsetTime, y = this.keyframes[this.keyframes.length - 1].t - this.offsetTime, S = this._caching.lastFrame;
|
|
@@ -4189,20 +4189,20 @@ var lottie$1 = { exports: {} };
|
|
|
4189
4189
|
this.elem.globalData.frameId !== this.frameId && (this.frameId = this.elem.globalData.frameId, this.iterateDynamicProperties(), this._mdf && this.convertToPath());
|
|
4190
4190
|
},
|
|
4191
4191
|
convertStarToPath: function() {
|
|
4192
|
-
var y = Math.floor(this.pt.v) * 2, S = Math.PI * 2 / y, T = !0, M = this.or.v, L = this.ir.v, V = this.os.v, k = this.is.v, U = 2 * Math.PI * M / (y * 2),
|
|
4192
|
+
var y = Math.floor(this.pt.v) * 2, S = Math.PI * 2 / y, T = !0, M = this.or.v, L = this.ir.v, V = this.os.v, k = this.is.v, U = 2 * Math.PI * M / (y * 2), z = 2 * Math.PI * L / (y * 2), B, G, q, H, _ = -Math.PI / 2;
|
|
4193
4193
|
_ += this.r.v;
|
|
4194
4194
|
var R = this.data.d === 3 ? -1 : 1;
|
|
4195
4195
|
for (this.v._length = 0, B = 0; B < y; B += 1) {
|
|
4196
|
-
|
|
4197
|
-
var P =
|
|
4198
|
-
P += +this.p.v[0], A += +this.p.v[1], this.v.setTripleAt(P, A, P - F *
|
|
4196
|
+
G = T ? M : L, q = T ? V : k, H = T ? U : z;
|
|
4197
|
+
var P = G * Math.cos(_), A = G * Math.sin(_), F = P === 0 && A === 0 ? 0 : A / Math.sqrt(P * P + A * A), I = P === 0 && A === 0 ? 0 : -P / Math.sqrt(P * P + A * A);
|
|
4198
|
+
P += +this.p.v[0], A += +this.p.v[1], this.v.setTripleAt(P, A, P - F * H * q * R, A - I * H * q * R, P + F * H * q * R, A + I * H * q * R, B, !0), T = !T, _ += S * R;
|
|
4199
4199
|
}
|
|
4200
4200
|
},
|
|
4201
4201
|
convertPolygonToPath: function() {
|
|
4202
4202
|
var y = Math.floor(this.pt.v), S = Math.PI * 2 / y, T = this.or.v, M = this.os.v, L = 2 * Math.PI * T / (y * 4), V, k = -Math.PI * 0.5, U = this.data.d === 3 ? -1 : 1;
|
|
4203
4203
|
for (k += this.r.v, this.v._length = 0, V = 0; V < y; V += 1) {
|
|
4204
|
-
var
|
|
4205
|
-
|
|
4204
|
+
var z = T * Math.cos(k), B = T * Math.sin(k), G = z === 0 && B === 0 ? 0 : B / Math.sqrt(z * z + B * B), q = z === 0 && B === 0 ? 0 : -z / Math.sqrt(z * z + B * B);
|
|
4205
|
+
z += +this.p.v[0], B += +this.p.v[1], this.v.setTripleAt(z, B, z - G * L * M * U, B - q * L * M * U, z + G * L * M * U, B + q * L * M * U, V, !0), k += S * U;
|
|
4206
4206
|
}
|
|
4207
4207
|
this.paths.length = 0, this.paths[0] = this.v;
|
|
4208
4208
|
}
|
|
@@ -4352,7 +4352,7 @@ var lottie$1 = { exports: {} };
|
|
|
4352
4352
|
var A = this.getInverseMatrix();
|
|
4353
4353
|
return A.applyToPointArray(P[0], P[1], P[2] || 0);
|
|
4354
4354
|
}
|
|
4355
|
-
function
|
|
4355
|
+
function z(P) {
|
|
4356
4356
|
var A, F = P.length, I = [];
|
|
4357
4357
|
for (A = 0; A < F; A += 1)
|
|
4358
4358
|
I[A] = U(P[A]);
|
|
@@ -4368,7 +4368,7 @@ var lottie$1 = { exports: {} };
|
|
|
4368
4368
|
}
|
|
4369
4369
|
return I;
|
|
4370
4370
|
}
|
|
4371
|
-
function
|
|
4371
|
+
function G(P, A, F) {
|
|
4372
4372
|
var I;
|
|
4373
4373
|
return this.isIdentity() ? I = [P, A, F] : I = [P * this.props[0] + A * this.props[4] + F * this.props[8] + this.props[12], P * this.props[1] + A * this.props[5] + F * this.props[9] + this.props[13], P * this.props[2] + A * this.props[6] + F * this.props[10] + this.props[14]], I;
|
|
4374
4374
|
}
|
|
@@ -4378,7 +4378,7 @@ var lottie$1 = { exports: {} };
|
|
|
4378
4378
|
var F = this.props;
|
|
4379
4379
|
return Math.round((P * F[0] + A * F[4] + F[12]) * 100) / 100 + "," + Math.round((P * F[1] + A * F[5] + F[13]) * 100) / 100;
|
|
4380
4380
|
}
|
|
4381
|
-
function
|
|
4381
|
+
function H() {
|
|
4382
4382
|
for (var P = 0, A = this.props, F = "matrix3d(", I = 1e4; P < 16; )
|
|
4383
4383
|
F += n(A[P] * I) / I, F += P === 15 ? ")" : ",", P += 1;
|
|
4384
4384
|
return F;
|
|
@@ -4392,7 +4392,7 @@ var lottie$1 = { exports: {} };
|
|
|
4392
4392
|
return "matrix(" + A + "," + F + "," + I + "," + W + "," + K + "," + X + ")";
|
|
4393
4393
|
}
|
|
4394
4394
|
return function() {
|
|
4395
|
-
this.reset = s, this.rotate = a, this.rotateX = o, this.rotateY = l, this.rotateZ = c, this.skew = u, this.skewFromAxis = p, this.shear = f, this.scale = d, this.setTransform = b, this.translate = C, this.transform = g, this.multiply = E, this.applyToPoint = T, this.applyToX = M, this.applyToY = L, this.applyToZ = V, this.applyToPointArray =
|
|
4395
|
+
this.reset = s, this.rotate = a, this.rotateX = o, this.rotateY = l, this.rotateZ = c, this.skew = u, this.skewFromAxis = p, this.shear = f, this.scale = d, this.setTransform = b, this.translate = C, this.transform = g, this.multiply = E, this.applyToPoint = T, this.applyToX = M, this.applyToY = L, this.applyToZ = V, this.applyToPointArray = G, this.applyToTriplePoints = B, this.applyToPointStringified = q, this.toCSS = H, this.to2dCSS = R, this.clone = y, this.cloneFromProps = S, this.equals = x, this.inversePoints = z, this.inversePoint = U, this.getInverseMatrix = k, this._t = this.transform, this.isIdentity = m, this._identity = !0, this._identityCalculated = !1, this.props = createTypedArray("float32", 16), this.reset();
|
|
4396
4396
|
};
|
|
4397
4397
|
}();
|
|
4398
4398
|
function _typeof$3(e) {
|
|
@@ -5363,7 +5363,7 @@ var lottie$1 = { exports: {} };
|
|
|
5363
5363
|
function U(_) {
|
|
5364
5364
|
return k(_.substr(0, 2)) && k(_.substr(2, 2));
|
|
5365
5365
|
}
|
|
5366
|
-
function
|
|
5366
|
+
function z(_) {
|
|
5367
5367
|
return i.indexOf(_) !== -1;
|
|
5368
5368
|
}
|
|
5369
5369
|
function B(_, R) {
|
|
@@ -5378,23 +5378,23 @@ var lottie$1 = { exports: {} };
|
|
|
5378
5378
|
}
|
|
5379
5379
|
return T(_.substr(R, 2)) === s;
|
|
5380
5380
|
}
|
|
5381
|
-
function
|
|
5381
|
+
function G() {
|
|
5382
5382
|
this.isLoaded = !0;
|
|
5383
5383
|
}
|
|
5384
5384
|
var q = function() {
|
|
5385
5385
|
this.fonts = [], this.chars = null, this.typekitLoaded = 0, this.isLoaded = !1, this._warned = !1, this.initTime = Date.now(), this.setIsLoadedBinded = this.setIsLoaded.bind(this), this.checkLoadedFontsBinded = this.checkLoadedFonts.bind(this);
|
|
5386
5386
|
};
|
|
5387
|
-
q.isModifier = M, q.isZeroWidthJoiner = L, q.isFlagEmoji = U, q.isRegionalCode = k, q.isCombinedCharacter =
|
|
5388
|
-
var
|
|
5387
|
+
q.isModifier = M, q.isZeroWidthJoiner = L, q.isFlagEmoji = U, q.isRegionalCode = k, q.isCombinedCharacter = z, q.isRegionalFlag = B, q.isVariationSelector = V, q.BLACK_FLAG_CODE_POINT = n;
|
|
5388
|
+
var H = {
|
|
5389
5389
|
addChars: m,
|
|
5390
5390
|
addFonts: E,
|
|
5391
5391
|
getCharData: x,
|
|
5392
5392
|
getFontByName: S,
|
|
5393
5393
|
measureText: y,
|
|
5394
5394
|
checkLoadedFonts: C,
|
|
5395
|
-
setIsLoaded:
|
|
5395
|
+
setIsLoaded: G
|
|
5396
5396
|
};
|
|
5397
|
-
return q.prototype =
|
|
5397
|
+
return q.prototype = H, q;
|
|
5398
5398
|
}();
|
|
5399
5399
|
function SlotManager(e) {
|
|
5400
5400
|
this.animationData = e;
|
|
@@ -6394,13 +6394,13 @@ var lottie$1 = { exports: {} };
|
|
|
6394
6394
|
if (p.t === 1)
|
|
6395
6395
|
(d.e._mdf || b) && (C.setAttribute("x2", m[0]), C.setAttribute("y2", m[1]), g && !d.g._collapsable && (d.of.setAttribute("x2", m[0]), d.of.setAttribute("y2", m[1])));
|
|
6396
6396
|
else {
|
|
6397
|
-
var
|
|
6398
|
-
if ((d.s._mdf || d.e._mdf || b) && (
|
|
6399
|
-
|
|
6400
|
-
var B = Math.atan2(m[1] - E[1], m[0] - E[0]),
|
|
6401
|
-
|
|
6402
|
-
var q =
|
|
6403
|
-
C.setAttribute("fx",
|
|
6397
|
+
var z;
|
|
6398
|
+
if ((d.s._mdf || d.e._mdf || b) && (z = Math.sqrt(Math.pow(E[0] - m[0], 2) + Math.pow(E[1] - m[1], 2)), C.setAttribute("r", z), g && !d.g._collapsable && d.of.setAttribute("r", z)), d.e._mdf || d.h._mdf || d.a._mdf || b) {
|
|
6399
|
+
z || (z = Math.sqrt(Math.pow(E[0] - m[0], 2) + Math.pow(E[1] - m[1], 2)));
|
|
6400
|
+
var B = Math.atan2(m[1] - E[1], m[0] - E[0]), G = d.h.v;
|
|
6401
|
+
G >= 1 ? G = 0.99 : G <= -1 && (G = -0.99);
|
|
6402
|
+
var q = z * G, H = Math.cos(B + d.a.v) * q + E[0], _ = Math.sin(B + d.a.v) * q + E[1];
|
|
6403
|
+
C.setAttribute("fx", H), C.setAttribute("fy", _), g && !d.g._collapsable && (d.of.setAttribute("fx", H), d.of.setAttribute("fy", _));
|
|
6404
6404
|
}
|
|
6405
6405
|
}
|
|
6406
6406
|
}
|
|
@@ -6593,17 +6593,17 @@ var lottie$1 = { exports: {} };
|
|
|
6593
6593
|
e.fWeight = T.weight, e.fStyle = T.style, e.finalSize = e.s, e.finalText = this.buildFinalText(e.t), a = e.finalText.length, e.finalLineHeight = e.lh;
|
|
6594
6594
|
var M = e.tr / 1e3 * e.finalSize, L;
|
|
6595
6595
|
if (e.sz)
|
|
6596
|
-
for (var V = !0, k = e.sz[0], U = e.sz[1],
|
|
6597
|
-
B = this.buildFinalText(e.t),
|
|
6598
|
-
var
|
|
6596
|
+
for (var V = !0, k = e.sz[0], U = e.sz[1], z, B; V; ) {
|
|
6597
|
+
B = this.buildFinalText(e.t), z = 0, C = 0, a = B.length, M = e.tr / 1e3 * e.finalSize;
|
|
6598
|
+
var G = -1;
|
|
6599
6599
|
for (s = 0; s < a; s += 1)
|
|
6600
|
-
L = B[s].charCodeAt(0), o = !1, B[s] === " " ?
|
|
6601
|
-
|
|
6600
|
+
L = B[s].charCodeAt(0), o = !1, B[s] === " " ? G = s : (L === 13 || L === 3) && (C = 0, o = !0, z += e.finalLineHeight || e.finalSize * 1.2), t.chars ? (y = t.getCharData(B[s], x.fStyle, x.fFamily), S = o ? 0 : y.w * e.finalSize / 100) : S = t.measureText(B[s], e.f, e.finalSize), C + S > k && B[s] !== " " ? (G === -1 ? a += 1 : s = G, z += e.finalLineHeight || e.finalSize * 1.2, B.splice(s, G === s ? 1 : 0, "\r"), G = -1, C = 0) : (C += S, C += M);
|
|
6601
|
+
z += x.ascent * e.finalSize / 100, this.canResize && e.finalSize > this.minimumFontSize && U < z ? (e.finalSize -= 1, e.finalLineHeight = e.finalSize * e.lh / e.s) : (e.finalText = B, a = e.finalText.length, V = !1);
|
|
6602
6602
|
}
|
|
6603
6603
|
C = -M, S = 0;
|
|
6604
|
-
var q = 0,
|
|
6604
|
+
var q = 0, H;
|
|
6605
6605
|
for (s = 0; s < a; s += 1)
|
|
6606
|
-
if (o = !1,
|
|
6606
|
+
if (o = !1, H = e.finalText[s], L = H.charCodeAt(0), L === 13 || L === 3 ? (q = 0, b.push(C), g = C > g ? C : g, C = -2 * M, c = "", o = !0, d += 1) : c = H, t.chars ? (y = t.getCharData(H, x.fStyle, t.getFontByName(e.f).fFamily), S = o ? 0 : y.w * e.finalSize / 100) : S = t.measureText(c, e.f, e.finalSize), H === " " ? q += S + M : (C += S + M + q, q = 0), n.push({
|
|
6607
6607
|
l: S,
|
|
6608
6608
|
an: S,
|
|
6609
6609
|
add: u,
|
|
@@ -6773,26 +6773,26 @@ var lottie$1 = { exports: {} };
|
|
|
6773
6773
|
}, TextAnimatorProperty.prototype.getMeasures = function(e, t) {
|
|
6774
6774
|
if (this.lettersChangedFlag = t, !(!this._mdf && !this._isFirstFrame && !t && (!this._hasMaskedPath || !this._pathData.m._mdf))) {
|
|
6775
6775
|
this._isFirstFrame = !1;
|
|
6776
|
-
var i = this._moreOptions.alignment.v, n = this._animatorsData, s = this._textData, a = this.mHelper, o = this._renderType, l = this.renderedLetters.length, c, f, u, p, d = e.l, b, C, g, E, m, x, y, S, T, M, L, V, k, U,
|
|
6776
|
+
var i = this._moreOptions.alignment.v, n = this._animatorsData, s = this._textData, a = this.mHelper, o = this._renderType, l = this.renderedLetters.length, c, f, u, p, d = e.l, b, C, g, E, m, x, y, S, T, M, L, V, k, U, z;
|
|
6777
6777
|
if (this._hasMaskedPath) {
|
|
6778
|
-
if (
|
|
6779
|
-
var B =
|
|
6778
|
+
if (z = this._pathData.m, !this._pathData.n || this._pathData._mdf) {
|
|
6779
|
+
var B = z.v;
|
|
6780
6780
|
this._pathData.r.v && (B = B.reverse()), b = {
|
|
6781
6781
|
tLength: 0,
|
|
6782
6782
|
segments: []
|
|
6783
6783
|
}, p = B._length - 1;
|
|
6784
|
-
var
|
|
6784
|
+
var G;
|
|
6785
6785
|
for (V = 0, u = 0; u < p; u += 1)
|
|
6786
|
-
|
|
6787
|
-
u = p,
|
|
6786
|
+
G = bez.buildBezierData(B.v[u], B.v[u + 1], [B.o[u][0] - B.v[u][0], B.o[u][1] - B.v[u][1]], [B.i[u + 1][0] - B.v[u + 1][0], B.i[u + 1][1] - B.v[u + 1][1]]), b.tLength += G.segmentLength, b.segments.push(G), V += G.segmentLength;
|
|
6787
|
+
u = p, z.v.c && (G = bez.buildBezierData(B.v[u], B.v[0], [B.o[u][0] - B.v[u][0], B.o[u][1] - B.v[u][1]], [B.i[0][0] - B.v[0][0], B.i[0][1] - B.v[0][1]]), b.tLength += G.segmentLength, b.segments.push(G), V += G.segmentLength), this._pathData.pi = b;
|
|
6788
6788
|
}
|
|
6789
|
-
if (b = this._pathData.pi, C = this._pathData.f.v, y = 0, x = 1, E = 0, m = !0, M = b.segments, C < 0 &&
|
|
6789
|
+
if (b = this._pathData.pi, C = this._pathData.f.v, y = 0, x = 1, E = 0, m = !0, M = b.segments, C < 0 && z.v.c)
|
|
6790
6790
|
for (b.tLength < Math.abs(C) && (C = -Math.abs(C) % b.tLength), y = M.length - 1, T = M[y].points, x = T.length - 1; C < 0; )
|
|
6791
6791
|
C += T[x].partialLength, x -= 1, x < 0 && (y -= 1, T = M[y].points, x = T.length - 1);
|
|
6792
6792
|
T = M[y].points, S = T[x - 1], g = T[x], L = g.partialLength;
|
|
6793
6793
|
}
|
|
6794
6794
|
p = d.length, c = 0, f = 0;
|
|
6795
|
-
var q = e.finalSize * 1.2 * 0.714,
|
|
6795
|
+
var q = e.finalSize * 1.2 * 0.714, H = !0, _, R, P, A, F;
|
|
6796
6796
|
A = n.length;
|
|
6797
6797
|
var I, W = -1, K, X, ee, re = C, ce = y, fe = x, me = -1, de, se, ue, ie, Y, Te, Le, be, Ce = "", Pe = this.defaultPropsArray, ve;
|
|
6798
6798
|
if (e.j === 2 || e.j === 1) {
|
|
@@ -6812,7 +6812,7 @@ var lottie$1 = { exports: {} };
|
|
|
6812
6812
|
}
|
|
6813
6813
|
for (u = 0; u < p; u += 1) {
|
|
6814
6814
|
if (a.reset(), de = 1, d[u].n)
|
|
6815
|
-
c = 0, f += e.yOffset, f +=
|
|
6815
|
+
c = 0, f += e.yOffset, f += H ? 1 : 0, C = re, H = !1, this._hasMaskedPath && (y = ce, x = fe, T = M[y].points, S = T[x - 1], g = T[x], L = g.partialLength, E = 0), Ce = "", be = "", Te = "", ve = "", Pe = this.defaultPropsArray;
|
|
6816
6816
|
else {
|
|
6817
6817
|
if (this._hasMaskedPath) {
|
|
6818
6818
|
if (me !== d[u].line) {
|
|
@@ -6831,7 +6831,7 @@ var lottie$1 = { exports: {} };
|
|
|
6831
6831
|
for (P = 0; P < A; P += 1)
|
|
6832
6832
|
_ = n[P].a, _.p.propType && (R = n[P].s, I = R.getMult(d[u].anIndexes[P], s.a[P].s.totalChars), I.length ? Ee += _.p.v[0] * I[0] : Ee += _.p.v[0] * I), _.a.propType && (R = n[P].s, I = R.getMult(d[u].anIndexes[P], s.a[P].s.totalChars), I.length ? Ee += _.a.v[0] * I[0] : Ee += _.a.v[0] * I);
|
|
6833
6833
|
for (m = !0, this._pathData.a.v && (C = d[0].an * 0.5 + (V - this._pathData.f.v - d[0].an * 0.5 - d[d.length - 1].an * 0.5) * W / (p - 1), C += this._pathData.f.v); m; )
|
|
6834
|
-
E + L >= C + Ee || !T ? (k = (C + Ee - E) / g.partialLength, X = S.point[0] + (g.point[0] - S.point[0]) * k, ee = S.point[1] + (g.point[1] - S.point[1]) * k, a.translate(-i[0] * d[u].an * 5e-3, -(i[1] * q) * 0.01), m = !1) : T && (E += g.partialLength, x += 1, x >= T.length && (x = 0, y += 1, M[y] ? T = M[y].points :
|
|
6834
|
+
E + L >= C + Ee || !T ? (k = (C + Ee - E) / g.partialLength, X = S.point[0] + (g.point[0] - S.point[0]) * k, ee = S.point[1] + (g.point[1] - S.point[1]) * k, a.translate(-i[0] * d[u].an * 5e-3, -(i[1] * q) * 0.01), m = !1) : T && (E += g.partialLength, x += 1, x >= T.length && (x = 0, y += 1, M[y] ? T = M[y].points : z.v.c ? (x = 0, y = 0, T = M[y].points) : (E -= g.partialLength, T = null)), T && (S = g, g = T[x], L = g.partialLength));
|
|
6835
6835
|
K = d[u].an / 2 - d[u].add, a.translate(-K, 0, 0);
|
|
6836
6836
|
} else
|
|
6837
6837
|
K = d[u].an / 2 - d[u].add, a.translate(-K, 0, 0), a.translate(-i[0] * d[u].an * 5e-3, -i[1] * q * 0.01, 0);
|
|
@@ -8371,20 +8371,20 @@ var lottie$1 = { exports: {} };
|
|
|
8371
8371
|
entropy: !0
|
|
8372
8372
|
} : S || {};
|
|
8373
8373
|
var L = E(g(S.entropy ? [y, x(e)] : y === null ? m() : y, 3), M), V = new b(M), k = function() {
|
|
8374
|
-
for (var
|
|
8375
|
-
|
|
8376
|
-
for (;
|
|
8377
|
-
|
|
8378
|
-
return (
|
|
8374
|
+
for (var z = V.g(s), B = l, G = 0; z < c; )
|
|
8375
|
+
z = (z + G) * n, B *= n, G = V.g(1);
|
|
8376
|
+
for (; z >= f; )
|
|
8377
|
+
z /= 2, B /= 2, G >>>= 1;
|
|
8378
|
+
return (z + G) / B;
|
|
8379
8379
|
};
|
|
8380
8380
|
return k.int32 = function() {
|
|
8381
8381
|
return V.g(4) | 0;
|
|
8382
8382
|
}, k.quick = function() {
|
|
8383
8383
|
return V.g(4) / 4294967296;
|
|
8384
|
-
}, k.double = k, E(x(V.S), e), (S.pass || T || function(U,
|
|
8385
|
-
return
|
|
8384
|
+
}, k.double = k, E(x(V.S), e), (S.pass || T || function(U, z, B, G) {
|
|
8385
|
+
return G && (G.S && C(G, V), U.state = function() {
|
|
8386
8386
|
return C(V, {});
|
|
8387
|
-
}), B ? (t[o] = U,
|
|
8387
|
+
}), B ? (t[o] = U, z) : U;
|
|
8388
8388
|
})(k, L, "global" in S ? S.global : this == t, S.state);
|
|
8389
8389
|
}
|
|
8390
8390
|
t["seed" + o] = d;
|
|
@@ -8395,9 +8395,9 @@ var lottie$1 = { exports: {} };
|
|
|
8395
8395
|
for (L = 0; L < n; L++)
|
|
8396
8396
|
k[L] = k[V = u & V + y[L % T] + (S = k[L])], k[V] = S;
|
|
8397
8397
|
M.g = function(U) {
|
|
8398
|
-
for (var
|
|
8399
|
-
|
|
8400
|
-
return M.i =
|
|
8398
|
+
for (var z, B = 0, G = M.i, q = M.j, H = M.S; U--; )
|
|
8399
|
+
z = H[G = u & G + 1], B = B * n + H[u & (H[G] = H[q = u & q + z]) + (H[q] = z)];
|
|
8400
|
+
return M.i = G, M.j = q, B;
|
|
8401
8401
|
};
|
|
8402
8402
|
}
|
|
8403
8403
|
function C(y, S) {
|
|
@@ -9605,21 +9605,21 @@ var lottie$1 = { exports: {} };
|
|
|
9605
9605
|
if (L % 2 !== 0)
|
|
9606
9606
|
return this.getValueAtTime((x - (g - y) % x + y) / this.comp.globalData.frameRate, 0);
|
|
9607
9607
|
} else if (d === "offset") {
|
|
9608
|
-
var V = this.getValueAtTime(y / this.comp.globalData.frameRate, 0), k = this.getValueAtTime(m / this.comp.globalData.frameRate, 0), U = this.getValueAtTime(((g - y) % x + y) / this.comp.globalData.frameRate, 0),
|
|
9608
|
+
var V = this.getValueAtTime(y / this.comp.globalData.frameRate, 0), k = this.getValueAtTime(m / this.comp.globalData.frameRate, 0), U = this.getValueAtTime(((g - y) % x + y) / this.comp.globalData.frameRate, 0), z = Math.floor((g - y) / x);
|
|
9609
9609
|
if (this.pv.length) {
|
|
9610
9610
|
for (M = new Array(V.length), T = M.length, S = 0; S < T; S += 1)
|
|
9611
|
-
M[S] = (k[S] - V[S]) *
|
|
9611
|
+
M[S] = (k[S] - V[S]) * z + U[S];
|
|
9612
9612
|
return M;
|
|
9613
9613
|
}
|
|
9614
|
-
return (k - V) *
|
|
9614
|
+
return (k - V) * z + U;
|
|
9615
9615
|
} else if (d === "continue") {
|
|
9616
|
-
var B = this.getValueAtTime(m / this.comp.globalData.frameRate, 0),
|
|
9616
|
+
var B = this.getValueAtTime(m / this.comp.globalData.frameRate, 0), G = this.getValueAtTime((m - 1e-3) / this.comp.globalData.frameRate, 0);
|
|
9617
9617
|
if (this.pv.length) {
|
|
9618
9618
|
for (M = new Array(B.length), T = M.length, S = 0; S < T; S += 1)
|
|
9619
|
-
M[S] = B[S] + (B[S] -
|
|
9619
|
+
M[S] = B[S] + (B[S] - G[S]) * ((g - m) / this.comp.globalData.frameRate) / 5e-4;
|
|
9620
9620
|
return M;
|
|
9621
9621
|
}
|
|
9622
|
-
return B + (B -
|
|
9622
|
+
return B + (B - G) * ((g - m) / 1e-3);
|
|
9623
9623
|
}
|
|
9624
9624
|
return this.getValueAtTime(((g - y) % x + y) / this.comp.globalData.frameRate, 0);
|
|
9625
9625
|
}
|
|
@@ -9638,21 +9638,21 @@ var lottie$1 = { exports: {} };
|
|
|
9638
9638
|
if (L % 2 === 0)
|
|
9639
9639
|
return this.getValueAtTime(((m - g) % x + m) / this.comp.globalData.frameRate, 0);
|
|
9640
9640
|
} else if (d === "offset") {
|
|
9641
|
-
var V = this.getValueAtTime(m / this.comp.globalData.frameRate, 0), k = this.getValueAtTime(y / this.comp.globalData.frameRate, 0), U = this.getValueAtTime((x - (m - g) % x + m) / this.comp.globalData.frameRate, 0),
|
|
9641
|
+
var V = this.getValueAtTime(m / this.comp.globalData.frameRate, 0), k = this.getValueAtTime(y / this.comp.globalData.frameRate, 0), U = this.getValueAtTime((x - (m - g) % x + m) / this.comp.globalData.frameRate, 0), z = Math.floor((m - g) / x) + 1;
|
|
9642
9642
|
if (this.pv.length) {
|
|
9643
9643
|
for (M = new Array(V.length), T = M.length, S = 0; S < T; S += 1)
|
|
9644
|
-
M[S] = U[S] - (k[S] - V[S]) *
|
|
9644
|
+
M[S] = U[S] - (k[S] - V[S]) * z;
|
|
9645
9645
|
return M;
|
|
9646
9646
|
}
|
|
9647
|
-
return U - (k - V) *
|
|
9647
|
+
return U - (k - V) * z;
|
|
9648
9648
|
} else if (d === "continue") {
|
|
9649
|
-
var B = this.getValueAtTime(m / this.comp.globalData.frameRate, 0),
|
|
9649
|
+
var B = this.getValueAtTime(m / this.comp.globalData.frameRate, 0), G = this.getValueAtTime((m + 1e-3) / this.comp.globalData.frameRate, 0);
|
|
9650
9650
|
if (this.pv.length) {
|
|
9651
9651
|
for (M = new Array(B.length), T = M.length, S = 0; S < T; S += 1)
|
|
9652
|
-
M[S] = B[S] + (B[S] -
|
|
9652
|
+
M[S] = B[S] + (B[S] - G[S]) * (m - g) / 1e-3;
|
|
9653
9653
|
return M;
|
|
9654
9654
|
}
|
|
9655
|
-
return B + (B -
|
|
9655
|
+
return B + (B - G) * (m - g) / 1e-3;
|
|
9656
9656
|
}
|
|
9657
9657
|
return this.getValueAtTime((x - ((m - g) % x + m)) / this.comp.globalData.frameRate, 0);
|
|
9658
9658
|
}
|
|
@@ -10161,19 +10161,19 @@ var _excluded$1 = ["animationData", "loop", "autoplay", "initialSegment", "onCom
|
|
|
10161
10161
|
}, U = function() {
|
|
10162
10162
|
var W;
|
|
10163
10163
|
(W = M.current) === null || W === void 0 || W.pause();
|
|
10164
|
-
},
|
|
10164
|
+
}, z = function(W) {
|
|
10165
10165
|
var K;
|
|
10166
10166
|
(K = M.current) === null || K === void 0 || K.setSpeed(W);
|
|
10167
10167
|
}, B = function(W, K) {
|
|
10168
10168
|
var X;
|
|
10169
10169
|
(X = M.current) === null || X === void 0 || X.goToAndPlay(W, K);
|
|
10170
|
-
},
|
|
10170
|
+
}, G = function(W, K) {
|
|
10171
10171
|
var X;
|
|
10172
10172
|
(X = M.current) === null || X === void 0 || X.goToAndStop(W, K);
|
|
10173
10173
|
}, q = function(W) {
|
|
10174
10174
|
var K;
|
|
10175
10175
|
(K = M.current) === null || K === void 0 || K.setDirection(W);
|
|
10176
|
-
},
|
|
10176
|
+
}, H = function(W, K) {
|
|
10177
10177
|
var X;
|
|
10178
10178
|
(X = M.current) === null || X === void 0 || X.playSegments(W, K);
|
|
10179
10179
|
}, _ = function(W) {
|
|
@@ -10278,11 +10278,11 @@ var _excluded$1 = ["animationData", "loop", "autoplay", "initialSegment", "onCom
|
|
|
10278
10278
|
play: V,
|
|
10279
10279
|
stop: k,
|
|
10280
10280
|
pause: U,
|
|
10281
|
-
setSpeed:
|
|
10282
|
-
goToAndStop:
|
|
10281
|
+
setSpeed: z,
|
|
10282
|
+
goToAndStop: G,
|
|
10283
10283
|
goToAndPlay: B,
|
|
10284
10284
|
setDirection: q,
|
|
10285
|
-
playSegments:
|
|
10285
|
+
playSegments: H,
|
|
10286
10286
|
setSubframe: _,
|
|
10287
10287
|
getDuration: R,
|
|
10288
10288
|
destroy: P,
|
|
@@ -12709,12 +12709,12 @@ function useSnapPoints({ activeSnapPointProp: e, setActiveSnapPointProp: t, snap
|
|
|
12709
12709
|
var V;
|
|
12710
12710
|
return (V = i == null ? void 0 : i.map((k) => {
|
|
12711
12711
|
const U = typeof k == "string";
|
|
12712
|
-
let
|
|
12713
|
-
if (U && (
|
|
12714
|
-
const
|
|
12715
|
-
return d ? l === "bottom" ? L.height -
|
|
12712
|
+
let z = 0;
|
|
12713
|
+
if (U && (z = parseInt(k, 10)), isVertical(l)) {
|
|
12714
|
+
const G = U ? z : d ? k * L.height : 0;
|
|
12715
|
+
return d ? l === "bottom" ? L.height - G : -L.height + G : G;
|
|
12716
12716
|
}
|
|
12717
|
-
const B = U ?
|
|
12717
|
+
const B = U ? z : d ? k * L.width : 0;
|
|
12718
12718
|
return d ? l === "right" ? L.width - B : -L.width + B : B;
|
|
12719
12719
|
})) != null ? V : [];
|
|
12720
12720
|
}, [
|
|
@@ -12760,7 +12760,7 @@ function useSnapPoints({ activeSnapPointProp: e, setActiveSnapPointProp: t, snap
|
|
|
12760
12760
|
]);
|
|
12761
12761
|
function S({ draggedDistance: L, closeDrawer: V, velocity: k, dismissible: U }) {
|
|
12762
12762
|
if (a === void 0) return;
|
|
12763
|
-
const
|
|
12763
|
+
const z = l === "bottom" || l === "right" ? (x ?? 0) - L : (x ?? 0) + L, B = g === a - 1, G = g === 0, q = L > 0;
|
|
12764
12764
|
if (B && set(s.current, {
|
|
12765
12765
|
transition: `opacity ${TRANSITIONS.DURATION}s cubic-bezier(${TRANSITIONS.EASE.join(",")})`
|
|
12766
12766
|
}), !f && k > 2 && !q) {
|
|
@@ -12771,18 +12771,18 @@ function useSnapPoints({ activeSnapPointProp: e, setActiveSnapPointProp: t, snap
|
|
|
12771
12771
|
y(m[i.length - 1]);
|
|
12772
12772
|
return;
|
|
12773
12773
|
}
|
|
12774
|
-
const
|
|
12774
|
+
const H = m == null ? void 0 : m.reduce((R, P) => typeof R != "number" || typeof P != "number" ? R : Math.abs(P - z) < Math.abs(R - z) ? P : R), _ = isVertical(l) ? window.innerHeight : window.innerWidth;
|
|
12775
12775
|
if (k > VELOCITY_THRESHOLD && Math.abs(L) < _ * 0.4) {
|
|
12776
12776
|
const R = q ? 1 : -1;
|
|
12777
12777
|
if (R > 0 && C && i) {
|
|
12778
12778
|
y(m[i.length - 1]);
|
|
12779
12779
|
return;
|
|
12780
12780
|
}
|
|
12781
|
-
if (
|
|
12781
|
+
if (G && R < 0 && U && V(), g === null) return;
|
|
12782
12782
|
y(m[g + R]);
|
|
12783
12783
|
return;
|
|
12784
12784
|
}
|
|
12785
|
-
y(
|
|
12785
|
+
y(H);
|
|
12786
12786
|
}
|
|
12787
12787
|
function T({ draggedDistance: L }) {
|
|
12788
12788
|
if (x === null) return;
|
|
@@ -12798,8 +12798,8 @@ function useSnapPoints({ activeSnapPointProp: e, setActiveSnapPointProp: t, snap
|
|
|
12798
12798
|
return 0;
|
|
12799
12799
|
if (k && !V) return 1;
|
|
12800
12800
|
if (!E && !k) return null;
|
|
12801
|
-
const
|
|
12802
|
-
return k ? 1 -
|
|
12801
|
+
const z = k ? g + 1 : g - 1, B = k ? m[z] - m[z - 1] : m[z + 1] - m[z], G = L / Math.abs(B);
|
|
12802
|
+
return k ? 1 - G : G;
|
|
12803
12803
|
}
|
|
12804
12804
|
return {
|
|
12805
12805
|
isLastSnapPoint: C,
|
|
@@ -12923,9 +12923,9 @@ function usePositionFixed({ isOpen: e, modal: t, nested: i, hasBeenOpened: n, pr
|
|
|
12923
12923
|
restorePositionSetting: u
|
|
12924
12924
|
};
|
|
12925
12925
|
}
|
|
12926
|
-
function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s, snapPoints: a, shouldScaleBackground: o = !1, setBackgroundColorOnScale: l = !0, closeThreshold: c = CLOSE_THRESHOLD, scrollLockTimeout: f = SCROLL_LOCK_TIMEOUT, dismissible: u = !0, handleOnly: p = !1, fadeFromIndex: d = a && a.length - 1, activeSnapPoint: b, setActiveSnapPoint: C, fixed: g, modal: E = !0, onClose: m, nested: x, noBodyStyles: y = !1, direction: S = "bottom", defaultOpen: T = !1, disablePreventScroll: M = !0, snapToSequentialPoint: L = !1, preventScrollRestoration: V = !1, repositionInputs: k = !0, onAnimationEnd: U, container:
|
|
12927
|
-
var
|
|
12928
|
-
const [
|
|
12926
|
+
function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s, snapPoints: a, shouldScaleBackground: o = !1, setBackgroundColorOnScale: l = !0, closeThreshold: c = CLOSE_THRESHOLD, scrollLockTimeout: f = SCROLL_LOCK_TIMEOUT, dismissible: u = !0, handleOnly: p = !1, fadeFromIndex: d = a && a.length - 1, activeSnapPoint: b, setActiveSnapPoint: C, fixed: g, modal: E = !0, onClose: m, nested: x, noBodyStyles: y = !1, direction: S = "bottom", defaultOpen: T = !1, disablePreventScroll: M = !0, snapToSequentialPoint: L = !1, preventScrollRestoration: V = !1, repositionInputs: k = !0, onAnimationEnd: U, container: z, autoFocus: B = !1 }) {
|
|
12927
|
+
var G, q;
|
|
12928
|
+
const [H = !1, _] = useControllableState({
|
|
12929
12929
|
defaultProp: T,
|
|
12930
12930
|
prop: e,
|
|
12931
12931
|
onChange: (j) => {
|
|
@@ -12935,7 +12935,7 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
12935
12935
|
document.body.style.pointerEvents = "auto";
|
|
12936
12936
|
}), j || (document.body.style.pointerEvents = "auto");
|
|
12937
12937
|
}
|
|
12938
|
-
}), [R, P] = React__default.useState(!1), [A, F] = React__default.useState(!1), [I, W] = React__default.useState(!1), K = React__default.useRef(null), X = React__default.useRef(null), ee = React__default.useRef(null), re = React__default.useRef(null), ce = React__default.useRef(null), fe = React__default.useRef(!1), me = React__default.useRef(null), de = React__default.useRef(0), se = React__default.useRef(!1), ue = React__default.useRef(!T), ie = React__default.useRef(0), Y = React__default.useRef(null), Te = React__default.useRef(((
|
|
12938
|
+
}), [R, P] = React__default.useState(!1), [A, F] = React__default.useState(!1), [I, W] = React__default.useState(!1), K = React__default.useRef(null), X = React__default.useRef(null), ee = React__default.useRef(null), re = React__default.useRef(null), ce = React__default.useRef(null), fe = React__default.useRef(!1), me = React__default.useRef(null), de = React__default.useRef(0), se = React__default.useRef(!1), ue = React__default.useRef(!T), ie = React__default.useRef(0), Y = React__default.useRef(null), Te = React__default.useRef(((G = Y.current) == null ? void 0 : G.getBoundingClientRect().height) || 0), Le = React__default.useRef(((q = Y.current) == null ? void 0 : q.getBoundingClientRect().width) || 0), be = React__default.useRef(0), Ce = React__default.useCallback((j) => {
|
|
12939
12939
|
a && j === we.length - 1 && (X.current = /* @__PURE__ */ new Date());
|
|
12940
12940
|
}, []), { activeSnapPoint: Pe, activeSnapPointIndex: ve, setActiveSnapPoint: ye, onRelease: xe, snapPointsOffset: we, onDrag: Se, shouldFade: Ae, getPercentageDragged: Ee } = useSnapPoints({
|
|
12941
12941
|
snapPoints: a,
|
|
@@ -12946,14 +12946,14 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
12946
12946
|
overlayRef: K,
|
|
12947
12947
|
onSnapPointChange: Ce,
|
|
12948
12948
|
direction: S,
|
|
12949
|
-
container:
|
|
12949
|
+
container: z,
|
|
12950
12950
|
snapToSequentialPoint: L
|
|
12951
12951
|
});
|
|
12952
12952
|
usePreventScroll({
|
|
12953
|
-
isDisabled: !
|
|
12953
|
+
isDisabled: !H || A || !E || I || !R || !k || !M
|
|
12954
12954
|
});
|
|
12955
12955
|
const { restorePositionSetting: Me } = usePositionFixed({
|
|
12956
|
-
isOpen:
|
|
12956
|
+
isOpen: H,
|
|
12957
12957
|
modal: E,
|
|
12958
12958
|
nested: x ?? !1,
|
|
12959
12959
|
hasBeenOpened: R,
|
|
@@ -12964,15 +12964,15 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
12964
12964
|
return (window.innerWidth - WINDOW_TOP_OFFSET) / window.innerWidth;
|
|
12965
12965
|
}
|
|
12966
12966
|
function Re(j) {
|
|
12967
|
-
var O,
|
|
12968
|
-
!u && !a || Y.current && !Y.current.contains(j.target) || (Te.current = ((O = Y.current) == null ? void 0 : O.getBoundingClientRect().height) || 0, Le.current = ((
|
|
12967
|
+
var O, N;
|
|
12968
|
+
!u && !a || Y.current && !Y.current.contains(j.target) || (Te.current = ((O = Y.current) == null ? void 0 : O.getBoundingClientRect().height) || 0, Le.current = ((N = Y.current) == null ? void 0 : N.getBoundingClientRect().width) || 0, F(!0), ee.current = /* @__PURE__ */ new Date(), isIOS() && window.addEventListener("touchend", () => fe.current = !1, {
|
|
12969
12969
|
once: !0
|
|
12970
12970
|
}), j.target.setPointerCapture(j.pointerId), de.current = isVertical(S) ? j.pageY : j.pageX);
|
|
12971
12971
|
}
|
|
12972
12972
|
function Ie(j, O) {
|
|
12973
|
-
var
|
|
12973
|
+
var N;
|
|
12974
12974
|
let J = j;
|
|
12975
|
-
const Q = (
|
|
12975
|
+
const Q = (N = window.getSelection()) == null ? void 0 : N.toString(), te = Y.current ? getTranslate(Y.current, S) : null, ne = /* @__PURE__ */ new Date();
|
|
12976
12976
|
if (J.tagName === "SELECT" || J.hasAttribute("data-vaul-no-drag") || J.closest("[data-vaul-no-drag]"))
|
|
12977
12977
|
return !1;
|
|
12978
12978
|
if (S === "right" || S === "left")
|
|
@@ -12998,9 +12998,9 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
12998
12998
|
}
|
|
12999
12999
|
function Oe(j) {
|
|
13000
13000
|
if (Y.current && A) {
|
|
13001
|
-
const O = S === "bottom" || S === "right" ? 1 : -1,
|
|
13001
|
+
const O = S === "bottom" || S === "right" ? 1 : -1, N = (de.current - (isVertical(S) ? j.pageY : j.pageX)) * O, J = N > 0, Q = a && !u && !J;
|
|
13002
13002
|
if (Q && ve === 0) return;
|
|
13003
|
-
const te = Math.abs(
|
|
13003
|
+
const te = Math.abs(N), ne = document.querySelector("[data-vaul-drawer-wrapper]"), le = S === "bottom" || S === "top" ? Te.current : Le.current;
|
|
13004
13004
|
let ae = te / le;
|
|
13005
13005
|
const oe = Ee(te, J);
|
|
13006
13006
|
if (oe !== null && (ae = oe), Q && ae >= 1 || !fe.current && !Ie(j.target, J)) return;
|
|
@@ -13009,9 +13009,9 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
13009
13009
|
}), set(K.current, {
|
|
13010
13010
|
transition: "none"
|
|
13011
13011
|
}), a && Se({
|
|
13012
|
-
draggedDistance:
|
|
13012
|
+
draggedDistance: N
|
|
13013
13013
|
}), J && !a) {
|
|
13014
|
-
const he = dampenValue(
|
|
13014
|
+
const he = dampenValue(N), ge = Math.min(he * -1, 0) * O;
|
|
13015
13015
|
set(Y.current, {
|
|
13016
13016
|
transform: isVertical(S) ? `translate3d(0, ${ge}px, 0)` : `translate3d(${ge}px, 0, 0)`
|
|
13017
13017
|
});
|
|
@@ -13045,8 +13045,8 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
13045
13045
|
var j;
|
|
13046
13046
|
function O() {
|
|
13047
13047
|
if (!Y.current || !k) return;
|
|
13048
|
-
const
|
|
13049
|
-
if (isInput(
|
|
13048
|
+
const N = document.activeElement;
|
|
13049
|
+
if (isInput(N) || se.current) {
|
|
13050
13050
|
var J;
|
|
13051
13051
|
const Q = ((J = window.visualViewport) == null ? void 0 : J.height) || 0, te = window.innerHeight;
|
|
13052
13052
|
let ne = te - Q;
|
|
@@ -13066,8 +13066,8 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
13066
13066
|
}
|
|
13067
13067
|
}
|
|
13068
13068
|
return (j = window.visualViewport) == null || j.addEventListener("resize", O), () => {
|
|
13069
|
-
var
|
|
13070
|
-
return (
|
|
13069
|
+
var N;
|
|
13070
|
+
return (N = window.visualViewport) == null ? void 0 : N.removeEventListener("resize", O);
|
|
13071
13071
|
};
|
|
13072
13072
|
}, [
|
|
13073
13073
|
ve,
|
|
@@ -13088,7 +13088,7 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
13088
13088
|
}), set(K.current, {
|
|
13089
13089
|
transition: `opacity ${TRANSITIONS.DURATION}s cubic-bezier(${TRANSITIONS.EASE.join(",")})`,
|
|
13090
13090
|
opacity: "1"
|
|
13091
|
-
}), o && O && O > 0 &&
|
|
13091
|
+
}), o && O && O > 0 && H && set(j, {
|
|
13092
13092
|
borderRadius: `${BORDER_RADIUS}px`,
|
|
13093
13093
|
overflow: "hidden",
|
|
13094
13094
|
...isVertical(S) ? {
|
|
@@ -13111,7 +13111,7 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
13111
13111
|
Y.current.classList.remove(DRAG_CLASS), fe.current = !1, F(!1), re.current = /* @__PURE__ */ new Date();
|
|
13112
13112
|
const O = getTranslate(Y.current, S);
|
|
13113
13113
|
if (!j || !Ie(j.target, !1) || !O || Number.isNaN(O) || ee.current === null) return;
|
|
13114
|
-
const
|
|
13114
|
+
const N = re.current.getTime() - ee.current.getTime(), J = de.current - (isVertical(S) ? j.pageY : j.pageX), Q = Math.abs(J) / N;
|
|
13115
13115
|
if (Q > 0.05 && (W(!0), setTimeout(() => {
|
|
13116
13116
|
W(!1);
|
|
13117
13117
|
}, 200)), a) {
|
|
@@ -13141,18 +13141,18 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
13141
13141
|
}
|
|
13142
13142
|
s == null || s(j, !0), ke();
|
|
13143
13143
|
}
|
|
13144
|
-
React__default.useEffect(() => (
|
|
13144
|
+
React__default.useEffect(() => (H && (set(document.documentElement, {
|
|
13145
13145
|
scrollBehavior: "auto"
|
|
13146
13146
|
}), X.current = /* @__PURE__ */ new Date()), () => {
|
|
13147
13147
|
reset(document.documentElement, "scrollBehavior");
|
|
13148
13148
|
}), [
|
|
13149
|
-
|
|
13149
|
+
H
|
|
13150
13150
|
]);
|
|
13151
13151
|
function $(j) {
|
|
13152
|
-
const O = j ? (window.innerWidth - NESTED_DISPLACEMENT) / window.innerWidth : 1,
|
|
13152
|
+
const O = j ? (window.innerWidth - NESTED_DISPLACEMENT) / window.innerWidth : 1, N = j ? -NESTED_DISPLACEMENT : 0;
|
|
13153
13153
|
me.current && window.clearTimeout(me.current), set(Y.current, {
|
|
13154
13154
|
transition: `transform ${TRANSITIONS.DURATION}s cubic-bezier(${TRANSITIONS.EASE.join(",")})`,
|
|
13155
|
-
transform: isVertical(S) ? `scale(${O}) translate3d(0, ${
|
|
13155
|
+
transform: isVertical(S) ? `scale(${O}) translate3d(0, ${N}px, 0)` : `scale(${O}) translate3d(${N}px, 0, 0)`
|
|
13156
13156
|
}), !j && Y.current && (me.current = setTimeout(() => {
|
|
13157
13157
|
const J = getTranslate(Y.current, S);
|
|
13158
13158
|
set(Y.current, {
|
|
@@ -13163,14 +13163,14 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
13163
13163
|
}
|
|
13164
13164
|
function D(j, O) {
|
|
13165
13165
|
if (O < 0) return;
|
|
13166
|
-
const
|
|
13166
|
+
const N = (window.innerWidth - NESTED_DISPLACEMENT) / window.innerWidth, J = N + O * (1 - N), Q = -NESTED_DISPLACEMENT + O * NESTED_DISPLACEMENT;
|
|
13167
13167
|
set(Y.current, {
|
|
13168
13168
|
transform: isVertical(S) ? `scale(${J}) translate3d(0, ${Q}px, 0)` : `scale(${J}) translate3d(${Q}px, 0, 0)`,
|
|
13169
13169
|
transition: "none"
|
|
13170
13170
|
});
|
|
13171
13171
|
}
|
|
13172
|
-
function
|
|
13173
|
-
const
|
|
13172
|
+
function Z(j, O) {
|
|
13173
|
+
const N = isVertical(S) ? window.innerHeight : window.innerWidth, J = O ? (N - NESTED_DISPLACEMENT) / N : 1, Q = O ? -NESTED_DISPLACEMENT : 0;
|
|
13174
13174
|
O && set(Y.current, {
|
|
13175
13175
|
transition: `transform ${TRANSITIONS.DURATION}s cubic-bezier(${TRANSITIONS.EASE.join(",")})`,
|
|
13176
13176
|
transform: isVertical(S) ? `scale(${J}) translate3d(0, ${Q}px, 0)` : `scale(${J}) translate3d(${Q}px, 0, 0)`
|
|
@@ -13187,7 +13187,7 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
13187
13187
|
onOpenChange: (j) => {
|
|
13188
13188
|
!u && !j || (j ? P(!0) : Ve(!0), _(j));
|
|
13189
13189
|
},
|
|
13190
|
-
open:
|
|
13190
|
+
open: H
|
|
13191
13191
|
}, /* @__PURE__ */ React__default.createElement(DrawerContext.Provider, {
|
|
13192
13192
|
value: {
|
|
13193
13193
|
activeSnapPoint: Pe,
|
|
@@ -13202,13 +13202,13 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
13202
13202
|
dismissible: u,
|
|
13203
13203
|
shouldAnimate: ue,
|
|
13204
13204
|
handleOnly: p,
|
|
13205
|
-
isOpen:
|
|
13205
|
+
isOpen: H,
|
|
13206
13206
|
isDragging: A,
|
|
13207
13207
|
shouldFade: Ae,
|
|
13208
13208
|
closeDrawer: Ve,
|
|
13209
13209
|
onNestedDrag: D,
|
|
13210
13210
|
onNestedOpenChange: $,
|
|
13211
|
-
onNestedRelease:
|
|
13211
|
+
onNestedRelease: Z,
|
|
13212
13212
|
keyboardIsOpen: se,
|
|
13213
13213
|
modal: E,
|
|
13214
13214
|
snapPointsOffset: we,
|
|
@@ -13217,7 +13217,7 @@ function Root({ open: e, onOpenChange: t, children: i, onDrag: n, onRelease: s,
|
|
|
13217
13217
|
shouldScaleBackground: o,
|
|
13218
13218
|
setBackgroundColorOnScale: l,
|
|
13219
13219
|
noBodyStyles: y,
|
|
13220
|
-
container:
|
|
13220
|
+
container: z,
|
|
13221
13221
|
autoFocus: B
|
|
13222
13222
|
}
|
|
13223
13223
|
}, i));
|
|
@@ -13243,16 +13243,16 @@ Overlay.displayName = "Drawer.Overlay";
|
|
|
13243
13243
|
const Content = /* @__PURE__ */ React__default.forwardRef(function({ onPointerDownOutside: e, style: t, onOpenAutoFocus: i, ...n }, s) {
|
|
13244
13244
|
const { drawerRef: a, onPress: o, onRelease: l, onDrag: c, keyboardIsOpen: f, snapPointsOffset: u, activeSnapPointIndex: p, modal: d, isOpen: b, direction: C, snapPoints: g, container: E, handleOnly: m, shouldAnimate: x, autoFocus: y } = useDrawerContext(), [S, T] = React__default.useState(!1), M = useComposedRefs(s, a), L = React__default.useRef(null), V = React__default.useRef(null), k = React__default.useRef(!1), U = g && g.length > 0;
|
|
13245
13245
|
useScaleBackground();
|
|
13246
|
-
const
|
|
13246
|
+
const z = (G, q, H = 0) => {
|
|
13247
13247
|
if (k.current) return !0;
|
|
13248
|
-
const _ = Math.abs(
|
|
13248
|
+
const _ = Math.abs(G.y), R = Math.abs(G.x), P = R > _, A = [
|
|
13249
13249
|
"bottom",
|
|
13250
13250
|
"right"
|
|
13251
13251
|
].includes(q) ? 1 : -1;
|
|
13252
13252
|
if (q === "left" || q === "right") {
|
|
13253
|
-
if (!(
|
|
13253
|
+
if (!(G.x * A < 0) && R >= 0 && R <= H)
|
|
13254
13254
|
return P;
|
|
13255
|
-
} else if (!(
|
|
13255
|
+
} else if (!(G.y * A < 0) && _ >= 0 && _ <= H)
|
|
13256
13256
|
return !P;
|
|
13257
13257
|
return k.current = !0, !0;
|
|
13258
13258
|
};
|
|
@@ -13261,8 +13261,8 @@ const Content = /* @__PURE__ */ React__default.forwardRef(function({ onPointerDo
|
|
|
13261
13261
|
T(!0);
|
|
13262
13262
|
});
|
|
13263
13263
|
}, []);
|
|
13264
|
-
function B(
|
|
13265
|
-
L.current = null, k.current = !1, l(
|
|
13264
|
+
function B(G) {
|
|
13265
|
+
L.current = null, k.current = !1, l(G);
|
|
13266
13266
|
}
|
|
13267
13267
|
return /* @__PURE__ */ React__default.createElement(Content$1, {
|
|
13268
13268
|
"data-vaul-drawer-direction": C,
|
|
@@ -13277,44 +13277,44 @@ const Content = /* @__PURE__ */ React__default.forwardRef(function({ onPointerDo
|
|
|
13277
13277
|
"--snap-point-height": `${u[p ?? 0]}px`,
|
|
13278
13278
|
...t
|
|
13279
13279
|
} : t,
|
|
13280
|
-
onPointerDown: (
|
|
13281
|
-
m || (n.onPointerDown == null || n.onPointerDown.call(n,
|
|
13282
|
-
x:
|
|
13283
|
-
y:
|
|
13284
|
-
}, o(
|
|
13280
|
+
onPointerDown: (G) => {
|
|
13281
|
+
m || (n.onPointerDown == null || n.onPointerDown.call(n, G), L.current = {
|
|
13282
|
+
x: G.pageX,
|
|
13283
|
+
y: G.pageY
|
|
13284
|
+
}, o(G));
|
|
13285
13285
|
},
|
|
13286
|
-
onOpenAutoFocus: (
|
|
13287
|
-
i == null || i(
|
|
13286
|
+
onOpenAutoFocus: (G) => {
|
|
13287
|
+
i == null || i(G), y || G.preventDefault();
|
|
13288
13288
|
},
|
|
13289
|
-
onPointerDownOutside: (
|
|
13290
|
-
if (e == null || e(
|
|
13291
|
-
|
|
13289
|
+
onPointerDownOutside: (G) => {
|
|
13290
|
+
if (e == null || e(G), !d || G.defaultPrevented) {
|
|
13291
|
+
G.preventDefault();
|
|
13292
13292
|
return;
|
|
13293
13293
|
}
|
|
13294
13294
|
f.current && (f.current = !1);
|
|
13295
13295
|
},
|
|
13296
|
-
onFocusOutside: (
|
|
13296
|
+
onFocusOutside: (G) => {
|
|
13297
13297
|
if (!d) {
|
|
13298
|
-
|
|
13298
|
+
G.preventDefault();
|
|
13299
13299
|
return;
|
|
13300
13300
|
}
|
|
13301
13301
|
},
|
|
13302
|
-
onPointerMove: (
|
|
13303
|
-
if (V.current =
|
|
13304
|
-
const q =
|
|
13305
|
-
|
|
13306
|
-
x:
|
|
13302
|
+
onPointerMove: (G) => {
|
|
13303
|
+
if (V.current = G, m || (n.onPointerMove == null || n.onPointerMove.call(n, G), !L.current)) return;
|
|
13304
|
+
const q = G.pageY - L.current.y, H = G.pageX - L.current.x, _ = G.pointerType === "touch" ? 10 : 2;
|
|
13305
|
+
z({
|
|
13306
|
+
x: H,
|
|
13307
13307
|
y: q
|
|
13308
|
-
}, C, _) ? c(
|
|
13308
|
+
}, C, _) ? c(G) : (Math.abs(H) > _ || Math.abs(q) > _) && (L.current = null);
|
|
13309
13309
|
},
|
|
13310
|
-
onPointerUp: (
|
|
13311
|
-
n.onPointerUp == null || n.onPointerUp.call(n,
|
|
13310
|
+
onPointerUp: (G) => {
|
|
13311
|
+
n.onPointerUp == null || n.onPointerUp.call(n, G), L.current = null, k.current = !1, l(G);
|
|
13312
13312
|
},
|
|
13313
|
-
onPointerOut: (
|
|
13314
|
-
n.onPointerOut == null || n.onPointerOut.call(n,
|
|
13313
|
+
onPointerOut: (G) => {
|
|
13314
|
+
n.onPointerOut == null || n.onPointerOut.call(n, G), B(V.current);
|
|
13315
13315
|
},
|
|
13316
|
-
onContextMenu: (
|
|
13317
|
-
n.onContextMenu == null || n.onContextMenu.call(n,
|
|
13316
|
+
onContextMenu: (G) => {
|
|
13317
|
+
n.onContextMenu == null || n.onContextMenu.call(n, G), V.current && B(V.current);
|
|
13318
13318
|
}
|
|
13319
13319
|
});
|
|
13320
13320
|
});
|
|
@@ -13425,7 +13425,7 @@ const Drawer = {
|
|
|
13425
13425
|
/* @__PURE__ */ jsx("div", { className: "gf-mx-auto gf-mb-3 gf-h-1 gf-w-[60px] gf-rounded-full gf-bg-white/30" }),
|
|
13426
13426
|
/* @__PURE__ */ jsx("div", { className: "gf-scrollbar-hide gf-flex gf-max-h-[90vh] gf-flex-col gf-gap-5 gf-overflow-y-scroll", children: e })
|
|
13427
13427
|
] }) })
|
|
13428
|
-
] }), ArrowDownwardIcon = (e) => /* @__PURE__ */ jsx(
|
|
13428
|
+
] }), Container = ({ children: e, className: t, ...i }) => /* @__PURE__ */ jsx("div", { ...i, className: cn("gf-p-6 gf-rounded-2xl gf-w-fit", t), children: e }), ArrowDownwardIcon = (e) => /* @__PURE__ */ jsx(
|
|
13429
13429
|
"svg",
|
|
13430
13430
|
{
|
|
13431
13431
|
width: "12",
|
|
@@ -14601,6 +14601,405 @@ const Drawer = {
|
|
|
14601
14601
|
}
|
|
14602
14602
|
)
|
|
14603
14603
|
}
|
|
14604
|
+
), APIIcon = (e) => /* @__PURE__ */ jsxs(
|
|
14605
|
+
"svg",
|
|
14606
|
+
{
|
|
14607
|
+
width: "16",
|
|
14608
|
+
height: "16",
|
|
14609
|
+
viewBox: "0 0 16 16",
|
|
14610
|
+
fill: "none",
|
|
14611
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14612
|
+
...e,
|
|
14613
|
+
children: [
|
|
14614
|
+
/* @__PURE__ */ jsx(
|
|
14615
|
+
"mask",
|
|
14616
|
+
{
|
|
14617
|
+
id: "mask0_24315_24445",
|
|
14618
|
+
style: { maskType: "alpha" },
|
|
14619
|
+
maskUnits: "userSpaceOnUse",
|
|
14620
|
+
x: "0",
|
|
14621
|
+
y: "0",
|
|
14622
|
+
width: "16",
|
|
14623
|
+
height: "16",
|
|
14624
|
+
children: /* @__PURE__ */ jsx("rect", { width: "16", height: "16", fill: "#D9D9D9" })
|
|
14625
|
+
}
|
|
14626
|
+
),
|
|
14627
|
+
/* @__PURE__ */ jsx("g", { mask: "url(#mask0_24315_24445)", children: /* @__PURE__ */ jsx(
|
|
14628
|
+
"path",
|
|
14629
|
+
{
|
|
14630
|
+
d: "M9.51267 13V12H11.16C11.396 12 11.5949 11.9201 11.7568 11.7603C11.9188 11.6004 11.9998 11.4068 11.9998 11.1795V9.80767C11.9998 9.41111 12.1178 9.05556 12.3537 8.741C12.5896 8.42644 12.8968 8.20767 13.2755 8.08467V7.91533C12.8968 7.79233 12.5896 7.57356 12.3537 7.259C12.1178 6.94444 11.9998 6.58889 11.9998 6.19233V4.8205C11.9998 4.59317 11.9188 4.39956 11.7568 4.23967C11.5949 4.07989 11.396 4 11.16 4H9.51267V3H11.16C11.6729 3 12.1077 3.17733 12.4645 3.532C12.8214 3.88678 12.9998 4.31628 12.9998 4.8205V6.19233C12.9998 6.42822 13.0829 6.62611 13.2492 6.786C13.4154 6.94578 13.6186 7.02567 13.8588 7.02567H14.3332V8.97433H13.8588C13.6186 8.97433 13.4154 9.05422 13.2492 9.214C13.0829 9.37389 12.9998 9.57178 12.9998 9.80767V11.1795C12.9998 11.6837 12.8214 12.1132 12.4645 12.468C12.1077 12.8227 11.6729 13 11.16 13H9.51267ZM4.83967 13C4.33112 13 3.89734 12.8227 3.53834 12.468C3.17934 12.1132 2.99984 11.6837 2.99984 11.1795V9.80767C2.99984 9.57178 2.91673 9.37389 2.7505 9.214C2.58428 9.05422 2.38106 8.97433 2.14084 8.97433H1.6665V7.02567H2.14084C2.38106 7.02567 2.58428 6.94578 2.7505 6.786C2.91673 6.62611 2.99984 6.42822 2.99984 6.19233V4.8205C2.99984 4.31628 3.17934 3.88678 3.53834 3.532C3.89734 3.17733 4.33112 3 4.83967 3H6.49334V4H4.83967C4.608 4 4.41012 4.07989 4.246 4.23967C4.08189 4.39956 3.99984 4.59317 3.99984 4.8205V6.19233C3.99984 6.58889 3.88295 6.94444 3.64917 7.259C3.41539 7.57356 3.10706 7.79233 2.72417 7.91533V8.08467C3.10706 8.20767 3.41539 8.42644 3.64917 8.741C3.88295 9.05556 3.99984 9.41111 3.99984 9.80767V11.1795C3.99984 11.4068 4.08189 11.6004 4.246 11.7603C4.41012 11.9201 4.608 12 4.83967 12H6.49334V13H4.83967Z",
|
|
14631
|
+
fill: "#554B6A"
|
|
14632
|
+
}
|
|
14633
|
+
) })
|
|
14634
|
+
]
|
|
14635
|
+
}
|
|
14636
|
+
), BlogIcon = (e) => /* @__PURE__ */ jsxs(
|
|
14637
|
+
"svg",
|
|
14638
|
+
{
|
|
14639
|
+
width: "16",
|
|
14640
|
+
height: "16",
|
|
14641
|
+
viewBox: "0 0 16 16",
|
|
14642
|
+
fill: "none",
|
|
14643
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14644
|
+
...e,
|
|
14645
|
+
children: [
|
|
14646
|
+
/* @__PURE__ */ jsx(
|
|
14647
|
+
"mask",
|
|
14648
|
+
{
|
|
14649
|
+
id: "mask0_24315_24428",
|
|
14650
|
+
style: { maskType: "alpha" },
|
|
14651
|
+
maskUnits: "userSpaceOnUse",
|
|
14652
|
+
x: "0",
|
|
14653
|
+
y: "0",
|
|
14654
|
+
width: "16",
|
|
14655
|
+
height: "16",
|
|
14656
|
+
children: /* @__PURE__ */ jsx("rect", { width: "16", height: "16", fill: "#D9D9D9" })
|
|
14657
|
+
}
|
|
14658
|
+
),
|
|
14659
|
+
/* @__PURE__ */ jsx("g", { mask: "url(#mask0_24315_24428)", children: /* @__PURE__ */ jsx(
|
|
14660
|
+
"path",
|
|
14661
|
+
{
|
|
14662
|
+
d: "M4.83325 11.1677H9.16659V10.1677H4.83325V11.1677ZM4.83325 8.50102H11.1666V7.50102H4.83325V8.50102ZM4.83325 5.83435H11.1666V4.83435H4.83325V5.83435ZM3.53842 13.6677C3.20164 13.6677 2.91659 13.551 2.68325 13.3177C2.44992 13.0844 2.33325 12.7993 2.33325 12.4625V3.53952C2.33325 3.20274 2.44992 2.91768 2.68325 2.68435C2.91659 2.45102 3.20164 2.33435 3.53842 2.33435H12.4614C12.7982 2.33435 13.0833 2.45102 13.3166 2.68435C13.5499 2.91768 13.6666 3.20274 13.6666 3.53952V12.4625C13.6666 12.7993 13.5499 13.0844 13.3166 13.3177C13.0833 13.551 12.7982 13.6677 12.4614 13.6677H3.53842ZM3.53842 12.6677H12.4614C12.5128 12.6677 12.5598 12.6463 12.6024 12.6035C12.6452 12.5609 12.6666 12.5139 12.6666 12.4625V3.53952C12.6666 3.48818 12.6452 3.44118 12.6024 3.39852C12.5598 3.35574 12.5128 3.33435 12.4614 3.33435H3.53842C3.48709 3.33435 3.44009 3.35574 3.39742 3.39852C3.35464 3.44118 3.33325 3.48818 3.33325 3.53952V12.4625C3.33325 12.5139 3.35464 12.5609 3.39742 12.6035C3.44009 12.6463 3.48709 12.6677 3.53842 12.6677Z",
|
|
14663
|
+
fill: "#554B6A"
|
|
14664
|
+
}
|
|
14665
|
+
) })
|
|
14666
|
+
]
|
|
14667
|
+
}
|
|
14668
|
+
), BrandKitIcon = (e) => /* @__PURE__ */ jsxs(
|
|
14669
|
+
"svg",
|
|
14670
|
+
{
|
|
14671
|
+
width: "16",
|
|
14672
|
+
height: "16",
|
|
14673
|
+
viewBox: "0 0 16 16",
|
|
14674
|
+
fill: "none",
|
|
14675
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14676
|
+
...e,
|
|
14677
|
+
children: [
|
|
14678
|
+
/* @__PURE__ */ jsx(
|
|
14679
|
+
"mask",
|
|
14680
|
+
{
|
|
14681
|
+
id: "mask0_24315_24433",
|
|
14682
|
+
style: { maskType: "alpha" },
|
|
14683
|
+
maskUnits: "userSpaceOnUse",
|
|
14684
|
+
x: "0",
|
|
14685
|
+
y: "0",
|
|
14686
|
+
width: "16",
|
|
14687
|
+
height: "16",
|
|
14688
|
+
children: /* @__PURE__ */ jsx("rect", { width: "16", height: "16", fill: "#D9D9D9" })
|
|
14689
|
+
}
|
|
14690
|
+
),
|
|
14691
|
+
/* @__PURE__ */ jsx("g", { mask: "url(#mask0_24315_24433)", children: /* @__PURE__ */ jsx(
|
|
14692
|
+
"path",
|
|
14693
|
+
{
|
|
14694
|
+
d: "M5.58982 11.9796C5.67093 11.9864 5.7501 11.9915 5.82732 11.9949C5.90443 11.9984 5.98765 12.0001 6.07699 12.0001C6.17099 12.0001 6.25854 11.9984 6.33965 11.9949C6.42087 11.9915 6.50421 11.9864 6.58965 11.9796V13.0514C6.58965 13.1112 6.60893 13.1603 6.64749 13.1988C6.68593 13.2372 6.73504 13.2564 6.79482 13.2564H13.0513C13.1111 13.2564 13.1602 13.2372 13.1987 13.1988C13.2371 13.1603 13.2563 13.1112 13.2563 13.0514V6.79494C13.2563 6.73516 13.2371 6.68605 13.1987 6.64761C13.1602 6.60905 13.1111 6.58977 13.0513 6.58977H11.9795C11.9863 6.50433 11.9914 6.421 11.9948 6.33977C11.9983 6.25866 12 6.17111 12 6.07711C12 5.98777 11.9983 5.90455 11.9948 5.82744C11.9914 5.75022 11.9863 5.67105 11.9795 5.58994H13.0513C13.3827 5.58994 13.6663 5.70794 13.9023 5.94394C14.1383 6.17994 14.2563 6.46361 14.2563 6.79494V13.0514C14.2563 13.3828 14.1383 13.6664 13.9023 13.9024C13.6663 14.1384 13.3827 14.2564 13.0513 14.2564H6.79482C6.46349 14.2564 6.17982 14.1384 5.94382 13.9024C5.70782 13.6664 5.58982 13.3828 5.58982 13.0514V11.9796ZM6.07815 10.4103C4.87137 10.4103 3.84726 9.99 3.00582 9.14944C2.16437 8.30877 1.74365 7.28505 1.74365 6.07827C1.74365 4.8715 2.16393 3.84739 3.00449 3.00594C3.84515 2.1645 4.86887 1.74377 6.07565 1.74377C7.28243 1.74377 8.30654 2.16405 9.14799 3.00461C9.98943 3.84527 10.4102 4.869 10.4102 6.07577C10.4102 7.28255 9.98987 8.30666 9.14932 9.14811C8.30865 9.98955 7.28493 10.4103 6.07815 10.4103ZM6.07699 9.41044C6.99921 9.41044 7.78532 9.08544 8.43532 8.43544C9.08532 7.78544 9.41032 6.99933 9.41032 6.07711C9.41032 5.15489 9.08532 4.36877 8.43532 3.71877C7.78532 3.06877 6.99921 2.74377 6.07699 2.74377C5.15476 2.74377 4.36865 3.06877 3.71865 3.71877C3.06865 4.36877 2.74365 5.15489 2.74365 6.07711C2.74365 6.99933 3.06865 7.78544 3.71865 8.43544C4.36865 9.08544 5.15476 9.41044 6.07699 9.41044Z",
|
|
14695
|
+
fill: "#554B6A"
|
|
14696
|
+
}
|
|
14697
|
+
) })
|
|
14698
|
+
]
|
|
14699
|
+
}
|
|
14700
|
+
), ConsoleIcon = (e) => /* @__PURE__ */ jsx(
|
|
14701
|
+
"svg",
|
|
14702
|
+
{
|
|
14703
|
+
width: "24",
|
|
14704
|
+
height: "24",
|
|
14705
|
+
viewBox: "0 0 24 24",
|
|
14706
|
+
fill: "none",
|
|
14707
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14708
|
+
...e,
|
|
14709
|
+
children: /* @__PURE__ */ jsx(
|
|
14710
|
+
"path",
|
|
14711
|
+
{
|
|
14712
|
+
d: "M4 20C3.45 20 2.97917 19.8042 2.5875 19.4125C2.19583 19.0208 2 18.55 2 18V6C2 5.45 2.19583 4.97917 2.5875 4.5875C2.97917 4.19583 3.45 4 4 4H20C20.55 4 21.0208 4.19583 21.4125 4.5875C21.8042 4.97917 22 5.45 22 6V18C22 18.55 21.8042 19.0208 21.4125 19.4125C21.0208 19.8042 20.55 20 20 20H4ZM4 18H20V8H4V18ZM7.5 17L6.1 15.6L8.675 13L6.075 10.4L7.5 9L11.5 13L7.5 17ZM12 17V15H18V17H12Z",
|
|
14713
|
+
fill: "#554B6A"
|
|
14714
|
+
}
|
|
14715
|
+
)
|
|
14716
|
+
}
|
|
14717
|
+
), CopyrightsIcon = (e) => /* @__PURE__ */ jsx(
|
|
14718
|
+
"svg",
|
|
14719
|
+
{
|
|
14720
|
+
width: "12",
|
|
14721
|
+
height: "12",
|
|
14722
|
+
viewBox: "0 0 12 12",
|
|
14723
|
+
fill: "none",
|
|
14724
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14725
|
+
...e,
|
|
14726
|
+
children: /* @__PURE__ */ jsx(
|
|
14727
|
+
"path",
|
|
14728
|
+
{
|
|
14729
|
+
d: "M5 7.875H7C7.10625 7.875 7.19529 7.83904 7.26713 7.76713C7.33904 7.69529 7.375 7.60625 7.375 7.5V6.625H6.625V7.125H5.375V4.875H6.625V5.375H7.375V4.49987C7.375 4.39354 7.33904 4.3045 7.26713 4.23275C7.19529 4.16092 7.10625 4.125 7 4.125H5C4.89375 4.125 4.80471 4.16096 4.73288 4.23288C4.66096 4.30471 4.625 4.39375 4.625 4.5V7.5C4.625 7.60625 4.66096 7.69529 4.73288 7.76713C4.80471 7.83904 4.89375 7.875 5 7.875ZM6.00087 10.75C5.34387 10.75 4.72633 10.6253 4.14825 10.376C3.57017 10.1267 3.06733 9.78829 2.63975 9.36088C2.21217 8.93346 1.87362 8.43083 1.62412 7.853C1.37471 7.27517 1.25 6.65779 1.25 6.00087C1.25 5.34387 1.37467 4.72633 1.624 4.14825C1.87333 3.57017 2.21171 3.06733 2.63913 2.63975C3.06654 2.21217 3.56917 1.87362 4.147 1.62412C4.72483 1.37471 5.34221 1.25 5.99913 1.25C6.65613 1.25 7.27367 1.37467 7.85175 1.624C8.42983 1.87333 8.93267 2.21171 9.36025 2.63913C9.78783 3.06654 10.1264 3.56917 10.3759 4.147C10.6253 4.72483 10.75 5.34221 10.75 5.99913C10.75 6.65613 10.6253 7.27367 10.376 7.85175C10.1267 8.42983 9.78829 8.93267 9.36088 9.36025C8.93346 9.78783 8.43083 10.1264 7.853 10.3759C7.27517 10.6253 6.65779 10.75 6.00087 10.75ZM6 10C7.11667 10 8.0625 9.6125 8.8375 8.8375C9.6125 8.0625 10 7.11667 10 6C10 4.88333 9.6125 3.9375 8.8375 3.1625C8.0625 2.3875 7.11667 2 6 2C4.88333 2 3.9375 2.3875 3.1625 3.1625C2.3875 3.9375 2 4.88333 2 6C2 7.11667 2.3875 8.0625 3.1625 8.8375C3.9375 9.6125 4.88333 10 6 10Z",
|
|
14730
|
+
fill: "#554B6A"
|
|
14731
|
+
}
|
|
14732
|
+
)
|
|
14733
|
+
}
|
|
14734
|
+
), DiscordIcon = (e) => /* @__PURE__ */ jsx(
|
|
14735
|
+
"svg",
|
|
14736
|
+
{
|
|
14737
|
+
width: "24",
|
|
14738
|
+
height: "24",
|
|
14739
|
+
viewBox: "0 0 24 24",
|
|
14740
|
+
fill: "none",
|
|
14741
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14742
|
+
...e,
|
|
14743
|
+
children: /* @__PURE__ */ jsx(
|
|
14744
|
+
"path",
|
|
14745
|
+
{
|
|
14746
|
+
d: "M18.9419 5.29661C17.6473 4.69088 16.263 4.25066 14.8157 4C14.638 4.32134 14.4304 4.75355 14.2872 5.09738C12.7487 4.86601 11.2245 4.86601 9.7143 5.09738C9.57116 4.75355 9.3588 4.32134 9.17947 4C7.73067 4.25066 6.3448 4.6925 5.05016 5.29982C2.43887 9.24582 1.73099 13.0938 2.08493 16.8872C3.81688 18.1805 5.49534 18.9662 7.14548 19.4804C7.55291 18.9196 7.91628 18.3235 8.22931 17.6953C7.63313 17.4688 7.06211 17.1892 6.52256 16.8647C6.6657 16.7586 6.80571 16.6478 6.94098 16.5337C10.2318 18.0729 13.8074 18.0729 17.0589 16.5337C17.1958 16.6478 17.3358 16.7586 17.4774 16.8647C16.9362 17.1908 16.3637 17.4704 15.7675 17.697C16.0805 18.3235 16.4423 18.9212 16.8513 19.4819C18.503 18.9678 20.183 18.1822 21.915 16.8872C22.3303 12.4897 21.2056 8.67705 18.9419 5.29661ZM8.67765 14.5543C7.68977 14.5543 6.87963 13.632 6.87963 12.509C6.87963 11.3859 7.67247 10.4621 8.67765 10.4621C9.68285 10.4621 10.493 11.3843 10.4757 12.509C10.4772 13.632 9.68285 14.5543 8.67765 14.5543ZM15.3223 14.5543C14.3344 14.5543 13.5243 13.632 13.5243 12.509C13.5243 11.3859 14.3171 10.4621 15.3223 10.4621C16.3275 10.4621 17.1376 11.3843 17.1203 12.509C17.1203 13.632 16.3275 14.5543 15.3223 14.5543Z",
|
|
14747
|
+
fill: "#817A90"
|
|
14748
|
+
}
|
|
14749
|
+
)
|
|
14750
|
+
}
|
|
14751
|
+
), DraftIcon = (e) => /* @__PURE__ */ jsxs(
|
|
14752
|
+
"svg",
|
|
14753
|
+
{
|
|
14754
|
+
width: "16",
|
|
14755
|
+
height: "16",
|
|
14756
|
+
viewBox: "0 0 16 16",
|
|
14757
|
+
fill: "none",
|
|
14758
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14759
|
+
...e,
|
|
14760
|
+
children: [
|
|
14761
|
+
/* @__PURE__ */ jsx(
|
|
14762
|
+
"mask",
|
|
14763
|
+
{
|
|
14764
|
+
id: "mask0_24315_24440",
|
|
14765
|
+
style: { maskType: "alpha" },
|
|
14766
|
+
maskUnits: "userSpaceOnUse",
|
|
14767
|
+
x: "0",
|
|
14768
|
+
y: "0",
|
|
14769
|
+
width: "16",
|
|
14770
|
+
height: "16",
|
|
14771
|
+
children: /* @__PURE__ */ jsx("rect", { width: "16", height: "16", fill: "#D9D9D9" })
|
|
14772
|
+
}
|
|
14773
|
+
),
|
|
14774
|
+
/* @__PURE__ */ jsx("g", { mask: "url(#mask0_24315_24440)", children: /* @__PURE__ */ jsx(
|
|
14775
|
+
"path",
|
|
14776
|
+
{
|
|
14777
|
+
d: "M4.20517 14.3323C3.86839 14.3323 3.58333 14.2156 3.35 13.9823C3.11667 13.749 3 13.4639 3 13.1271V2.87082C3 2.53404 3.11667 2.24898 3.35 2.01565C3.58333 1.78232 3.86839 1.66565 4.20517 1.66565H9.5L13 5.16565V13.1271C13 13.4639 12.8833 13.749 12.65 13.9823C12.4167 14.2156 12.1316 14.3323 11.7948 14.3323H4.20517ZM9 5.66565V2.66565H4.20517C4.15383 2.66565 4.10683 2.68704 4.06417 2.72982C4.02139 2.77248 4 2.81948 4 2.87082V13.1271C4 13.1785 4.02139 13.2255 4.06417 13.2681C4.10683 13.3109 4.15383 13.3323 4.20517 13.3323H11.7948C11.8462 13.3323 11.8932 13.3109 11.9358 13.2681C11.9786 13.2255 12 13.1785 12 13.1271V5.66565H9Z",
|
|
14778
|
+
fill: "#554B6A"
|
|
14779
|
+
}
|
|
14780
|
+
) })
|
|
14781
|
+
]
|
|
14782
|
+
}
|
|
14783
|
+
), OtterSecIcon = (e) => /* @__PURE__ */ jsxs(
|
|
14784
|
+
"svg",
|
|
14785
|
+
{
|
|
14786
|
+
width: "44",
|
|
14787
|
+
height: "45",
|
|
14788
|
+
viewBox: "0 0 44 45",
|
|
14789
|
+
fill: "none",
|
|
14790
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14791
|
+
...e,
|
|
14792
|
+
children: [
|
|
14793
|
+
/* @__PURE__ */ jsx(
|
|
14794
|
+
"path",
|
|
14795
|
+
{
|
|
14796
|
+
d: "M14.1692 1.23502C14.3871 0.920224 14.7988 0.508569 15.0652 0.339064C15.3557 0.169559 16.058 0.0242684 16.6391 5.34058e-05C17.4867 5.34058e-05 17.8015 0.145344 18.4553 0.799149C19.2301 1.59825 19.2544 1.62246 21.8938 1.74354C23.3709 1.81618 25.1144 2.05833 25.7682 2.27627C26.4462 2.46999 27.5359 3.00272 28.2381 3.43859C28.9162 3.87446 30.0543 4.69777 30.7807 5.27893C31.6525 5.98117 32.5 6.44125 34.8488 7.02241L34.2677 8.16052C33.9529 8.81432 33.2749 9.71028 32.7663 10.1946C32.2336 10.6547 31.3861 11.1874 30.8534 11.3811C30.248 11.5748 29.4005 11.6233 27.2211 11.3811L26.9305 12.6645C26.761 13.3425 26.4462 14.1416 26.2525 14.408C25.8893 14.8681 25.8893 14.7712 26.0104 13.3667C26.083 12.5434 26.083 11.8654 26.0104 11.8654C25.9377 11.8654 25.5503 12.5434 25.1386 13.3667C24.6543 14.3596 24.3153 14.8197 24.17 14.6501C24.0247 14.5049 24.1942 13.8026 24.6785 12.7129C25.0902 11.7686 25.3566 10.9695 25.2597 10.8968C25.187 10.8242 23.9521 10.7273 22.5476 10.6789C20.562 10.6305 19.5934 10.7031 18.3826 11.0421C17.5109 11.2843 16.2033 11.8654 15.4768 12.3497C14.7504 12.834 13.6849 13.7784 13.1037 14.4322C12.5226 15.086 11.7961 16.1515 11.4813 16.8295C11.1423 17.4833 10.7065 18.6941 10.5127 19.4932C10.2948 20.2922 10.1253 21.9147 10.1011 23.1254C10.1011 24.8447 10.2222 25.6922 10.7307 27.1693C11.0697 28.2106 11.7235 29.6392 12.1594 30.3173C12.6194 31.0195 13.6123 32.1818 14.4114 32.8841C15.1862 33.6105 16.397 34.458 17.0508 34.7728C17.7288 35.0876 18.8669 35.5235 19.5934 35.7172C20.3198 35.9109 21.9422 36.0804 23.2256 36.0804C24.5332 36.0804 26.1556 35.9109 26.979 35.693C27.7781 35.4751 29.2067 34.9181 30.1269 34.4338C31.1682 33.8769 32.4273 32.9325 33.3959 31.9639C34.2677 31.0922 35.3089 29.7361 35.7448 28.937C36.1565 28.1379 36.6892 26.7819 36.8829 25.9101C37.1008 25.0384 37.2703 23.8276 37.2703 23.1738C37.2703 22.5442 37.1493 21.4546 37.004 20.7523C36.8587 20.0743 36.4712 18.9846 36.1565 18.3308C35.8417 17.7012 35.5269 17.1927 35.4542 17.1927C35.3816 17.1927 35.4058 18.2582 35.4784 19.5416C35.5753 20.9461 35.5269 22.52 35.3574 23.3676C35.2121 24.1667 34.7762 25.4743 34.3888 26.2734C33.9529 27.1693 33.1538 28.2348 32.2578 29.0581C31.2892 29.9783 30.2964 30.6321 29.0372 31.1648C28.0444 31.5765 26.7368 32.0123 26.1314 32.085C25.066 32.2303 25.0902 32.206 26.979 31.2859C28.1897 30.7047 29.4973 29.8088 30.4417 28.9128C31.4345 27.9926 32.2578 26.9514 32.7179 26.0312C33.2991 24.8689 33.4444 24.1424 33.5654 22.399C33.6623 20.825 33.5897 19.7111 33.2991 18.4035C33.0811 17.4107 32.6211 16.0062 32.3063 15.3282C31.9673 14.6259 31.7009 13.9963 31.7009 13.9237C31.7009 13.8511 31.943 13.8026 32.2578 13.8026C32.5484 13.8026 33.8318 14.0448 35.091 14.3838C36.3502 14.6986 37.9484 15.2313 38.6022 15.5461C39.2802 15.8851 40.1277 16.4905 40.5394 16.8779C40.951 17.2654 41.4595 17.9434 41.6775 18.4035C41.9196 18.8636 42.2102 19.9048 42.3555 20.7039C42.5734 21.8904 42.5492 22.52 42.2344 24.094C42.0165 25.2563 41.4353 26.8787 40.7815 28.2106C40.2004 29.3971 39.1349 31.0921 38.4327 31.9397C37.7304 32.8114 36.4955 34.0464 35.6964 34.7002C34.8973 35.3298 33.2506 36.3468 32.0641 36.928C30.8776 37.5091 28.9646 38.2114 27.8265 38.4777C26.4462 38.8167 24.9933 38.9863 23.3467 38.9863C21.7243 38.9863 20.2956 38.841 18.988 38.5019C17.9225 38.2356 16.2759 37.6302 15.3557 37.1701C14.4356 36.71 12.91 35.7657 11.9899 35.0634C11.0697 34.3612 9.78629 33.1262 9.13248 32.3271C8.50289 31.528 7.65537 30.2688 7.26793 29.5424C6.88049 28.8159 6.32354 27.3873 6.03296 26.3944C5.76659 25.4016 5.4518 23.6824 5.35494 22.5685C5.25808 21.4788 5.11279 20.5828 5.01593 20.5828C4.89485 20.5828 4.74956 21.0913 4.67692 21.7209C4.58006 22.3747 4.58006 23.9245 4.6527 25.1837C4.72535 26.4429 5.01593 28.259 5.28229 29.1792C5.57287 30.0993 6.15403 31.6491 6.61412 32.5693C7.07421 33.4894 7.99438 34.8939 8.62397 35.6446C9.25356 36.4195 10.3917 37.5091 11.1181 38.0661C11.8446 38.5988 13.3217 39.4706 14.3871 39.9791C15.4526 40.4876 17.3172 41.1414 18.5037 41.432C20.223 41.8678 21.3611 41.9889 23.831 41.9647C26.5189 41.9647 27.2938 41.8678 29.1099 41.3109C30.2722 40.9719 31.7977 40.3907 32.5 40.0517C33.178 39.6885 34.413 38.9378 35.2121 38.3809C36.0112 37.8239 37.3672 36.6132 38.2389 35.693C39.1107 34.7728 40.2246 33.3684 40.6847 32.5693C41.169 31.7702 41.8712 30.4383 42.2586 29.5908C42.6461 28.7675 43.0335 28.0653 43.1546 28.0895C43.2515 28.0895 43.1062 28.7675 42.864 29.615C42.5977 30.4383 42.2344 31.5522 42.0407 32.085C41.847 32.6177 41.3627 33.7074 40.951 34.5065C40.5636 35.3056 39.6918 36.6616 39.0623 37.5091C38.4085 38.3809 37.1008 39.7127 36.1807 40.4876C35.2605 41.2625 33.8318 42.2553 33.0327 42.6669C32.2336 43.0786 30.8049 43.684 29.8848 43.9988C28.9646 44.3136 27.318 44.6768 26.2525 44.8221C25.1144 44.9916 23.2014 45.04 21.6517 44.9674C20.0535 44.8705 18.0194 44.5799 16.5665 44.1925C15.2347 43.8535 13.1764 43.1028 11.9656 42.4974C10.7791 41.9163 9.03562 40.8508 8.11545 40.1486C7.19528 39.4463 5.83924 38.1629 5.11279 37.2912C4.38634 36.4195 3.36931 35.015 2.88501 34.1432C2.37649 33.2715 1.65004 31.6491 1.23838 30.511C0.850944 29.3729 0.390858 27.581 0.221353 26.5155C0.0276326 25.3532 -0.0450125 23.5371 0.0276326 21.9147C0.124493 19.6869 0.293998 18.8151 1.04466 16.5873C1.52896 15.1344 2.42492 13.1004 3.00608 12.1076C3.58724 11.1148 4.60427 9.68606 5.23386 8.91118C5.86345 8.16052 6.88049 7.11927 7.48586 6.58654C8.09124 6.07803 9.39885 5.10942 10.3917 4.47983C11.3845 3.82603 12.571 3.14801 13.0069 2.9785C13.4428 2.809 13.7818 2.4942 13.7818 2.22784C13.806 2.0099 13.9755 1.54982 14.1692 1.23502Z",
|
|
14797
|
+
fill: "#554B6A"
|
|
14798
|
+
}
|
|
14799
|
+
),
|
|
14800
|
+
/* @__PURE__ */ jsx(
|
|
14801
|
+
"path",
|
|
14802
|
+
{
|
|
14803
|
+
d: "M26.616 5.32809C26.8822 5.32825 27.1487 5.47389 27.1971 5.6191C27.2212 5.78849 27.2212 6.07828 27.1971 6.22359C27.1487 6.39301 26.8822 6.53886 26.616 6.53902C26.3498 6.53902 26.0834 6.41782 26.0105 6.29684C25.9379 6.17576 25.9379 5.88509 26.0105 5.69137C26.059 5.49766 26.3497 5.32809 26.616 5.32809Z",
|
|
14804
|
+
fill: "#F5F8FA"
|
|
14805
|
+
}
|
|
14806
|
+
)
|
|
14807
|
+
]
|
|
14808
|
+
}
|
|
14809
|
+
), SDKIcon = (e) => /* @__PURE__ */ jsxs(
|
|
14810
|
+
"svg",
|
|
14811
|
+
{
|
|
14812
|
+
width: "16",
|
|
14813
|
+
height: "16",
|
|
14814
|
+
viewBox: "0 0 16 16",
|
|
14815
|
+
fill: "none",
|
|
14816
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14817
|
+
...e,
|
|
14818
|
+
children: [
|
|
14819
|
+
/* @__PURE__ */ jsx(
|
|
14820
|
+
"mask",
|
|
14821
|
+
{
|
|
14822
|
+
id: "mask0_24315_24450",
|
|
14823
|
+
style: { maskType: "alpha" },
|
|
14824
|
+
maskUnits: "userSpaceOnUse",
|
|
14825
|
+
x: "0",
|
|
14826
|
+
y: "0",
|
|
14827
|
+
width: "16",
|
|
14828
|
+
height: "16",
|
|
14829
|
+
children: /* @__PURE__ */ jsx("rect", { width: "16", height: "16", fill: "#D9D9D9" })
|
|
14830
|
+
}
|
|
14831
|
+
),
|
|
14832
|
+
/* @__PURE__ */ jsx("g", { mask: "url(#mask0_24315_24450)", children: /* @__PURE__ */ jsx(
|
|
14833
|
+
"path",
|
|
14834
|
+
{
|
|
14835
|
+
d: "M3.53866 13.6667C3.20622 13.6667 2.92222 13.5489 2.68666 13.3135C2.45122 13.0779 2.3335 12.7939 2.3335 12.4615V4.5C2.3335 4.38289 2.34994 4.27306 2.38283 4.1705C2.41572 4.06794 2.46938 3.97267 2.54383 3.88467L3.46433 2.777C3.53866 2.68467 3.62366 2.61544 3.71933 2.56933C3.81511 2.52311 3.92155 2.5 4.03866 2.5H11.9617C12.0788 2.5 12.1852 2.52311 12.281 2.56933C12.3767 2.61544 12.4617 2.68467 12.536 2.777L13.4565 3.88467C13.5309 3.97267 13.5846 4.06794 13.6175 4.1705C13.6504 4.27306 13.6668 4.38289 13.6668 4.5V12.4615C13.6668 12.7939 13.5491 13.0779 13.3137 13.3135C13.0781 13.5489 12.7941 13.6667 12.4617 13.6667H3.53866ZM3.60016 4.16667H12.4002L11.8335 3.5H4.16683L3.60016 4.16667ZM3.53866 12.6667H12.4617C12.5216 12.6667 12.5707 12.6474 12.6092 12.609C12.6476 12.5706 12.6668 12.5214 12.6668 12.4615V5.16667H3.3335V12.4615C3.3335 12.5214 3.35272 12.5706 3.39116 12.609C3.42961 12.6474 3.47877 12.6667 3.53866 12.6667ZM9.70016 11.123L11.8232 9L9.70016 6.877L8.97716 7.6L10.3772 9L8.97716 10.4L9.70016 11.123ZM6.3335 11.123L7.0565 10.4L5.6565 9L7.0565 7.6L6.3335 6.877L4.2105 9L6.3335 11.123Z",
|
|
14836
|
+
fill: "#554B6A"
|
|
14837
|
+
}
|
|
14838
|
+
) })
|
|
14839
|
+
]
|
|
14840
|
+
}
|
|
14841
|
+
), StakeIcon = (e) => /* @__PURE__ */ jsxs(
|
|
14842
|
+
"svg",
|
|
14843
|
+
{
|
|
14844
|
+
width: "16",
|
|
14845
|
+
height: "16",
|
|
14846
|
+
viewBox: "0 0 16 16",
|
|
14847
|
+
fill: "none",
|
|
14848
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14849
|
+
...e,
|
|
14850
|
+
children: [
|
|
14851
|
+
/* @__PURE__ */ jsx(
|
|
14852
|
+
"mask",
|
|
14853
|
+
{
|
|
14854
|
+
id: "mask0_24315_24292",
|
|
14855
|
+
style: { maskType: "alpha" },
|
|
14856
|
+
maskUnits: "userSpaceOnUse",
|
|
14857
|
+
x: "0",
|
|
14858
|
+
y: "0",
|
|
14859
|
+
width: "16",
|
|
14860
|
+
height: "16",
|
|
14861
|
+
children: /* @__PURE__ */ jsx("rect", { width: "16", height: "16", fill: "#D9D9D9" })
|
|
14862
|
+
}
|
|
14863
|
+
),
|
|
14864
|
+
/* @__PURE__ */ jsx("g", { mask: "url(#mask0_24315_24292)", children: /* @__PURE__ */ jsx(
|
|
14865
|
+
"path",
|
|
14866
|
+
{
|
|
14867
|
+
d: "M10.001 13C8.60544 13 7.42306 12.5157 6.45383 11.5472C5.48461 10.5786 5 9.39656 5 8.001C5 6.60544 5.48428 5.42306 6.45283 4.45383C7.42139 3.48461 8.60344 3 9.999 3C11.3946 3 12.5769 3.48428 13.5462 4.45283C14.5154 5.42139 15 6.60344 15 7.999C15 9.39456 14.5157 10.5769 13.5472 11.5462C12.5786 12.5154 11.3966 13 10.001 13ZM4.66667 12.8205C3.57433 12.5307 2.69017 11.9391 2.01417 11.0455C1.33806 10.1519 1 9.13678 1 8C1 6.86322 1.33806 5.84806 2.01417 4.9545C2.69017 4.06094 3.57433 3.46928 4.66667 3.1795V4.23333C3.86667 4.51111 3.22222 4.99444 2.73333 5.68333C2.24444 6.37222 2 7.14444 2 8C2 8.85556 2.24444 9.62778 2.73333 10.3167C3.22222 11.0056 3.86667 11.4889 4.66667 11.7667V12.8205ZM10 12C11.1111 12 12.0556 11.6111 12.8333 10.8333C13.6111 10.0556 14 9.11111 14 8C14 6.88889 13.6111 5.94444 12.8333 5.16667C12.0556 4.38889 11.1111 4 10 4C8.88889 4 7.94444 4.38889 7.16667 5.16667C6.38889 5.94444 6 6.88889 6 8C6 9.11111 6.38889 10.0556 7.16667 10.8333C7.94444 11.6111 8.88889 12 10 12Z",
|
|
14868
|
+
fill: "#554B6A"
|
|
14869
|
+
}
|
|
14870
|
+
) })
|
|
14871
|
+
]
|
|
14872
|
+
}
|
|
14873
|
+
), XSolidIcon = (e) => /* @__PURE__ */ jsx(
|
|
14874
|
+
"svg",
|
|
14875
|
+
{
|
|
14876
|
+
width: "24",
|
|
14877
|
+
height: "24",
|
|
14878
|
+
viewBox: "0 0 24 24",
|
|
14879
|
+
fill: "none",
|
|
14880
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14881
|
+
...e,
|
|
14882
|
+
children: /* @__PURE__ */ jsx(
|
|
14883
|
+
"path",
|
|
14884
|
+
{
|
|
14885
|
+
d: "M3.81818 2C2.81364 2 2 2.81364 2 3.81818V20.1818C2 21.1864 2.81364 22 3.81818 22H20.1818C21.1864 22 22 21.1864 22 20.1818V3.81818C22 2.81364 21.1864 2 20.1818 2H3.81818ZM6.22585 6.54545H10.418L12.8647 10.0433L15.892 6.54545H17.2113L13.4577 10.892L18.0494 17.4545H13.8572L11.1424 13.5732L7.79013 17.4545H6.44957L10.5458 12.7227L6.22585 6.54545ZM8.25355 7.62145L14.3935 16.3732H16.0199L9.8782 7.62145H8.25355Z",
|
|
14886
|
+
fill: "#817A90"
|
|
14887
|
+
}
|
|
14888
|
+
)
|
|
14889
|
+
}
|
|
14890
|
+
), XIcon = (e) => /* @__PURE__ */ jsx(
|
|
14891
|
+
"svg",
|
|
14892
|
+
{
|
|
14893
|
+
width: "25",
|
|
14894
|
+
height: "24",
|
|
14895
|
+
viewBox: "0 0 25 24",
|
|
14896
|
+
fill: "none",
|
|
14897
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14898
|
+
...e,
|
|
14899
|
+
children: /* @__PURE__ */ jsx(
|
|
14900
|
+
"path",
|
|
14901
|
+
{
|
|
14902
|
+
d: "M17.6557 3.86523H20.4171L14.3858 10.757L21.481 20.1364H15.9269L11.5735 14.4493L6.5983 20.1364H3.83298L10.2828 12.7635L3.48096 3.86523H9.17587L13.1068 9.06341L17.6557 3.86523ZM16.6857 18.4858H18.215L8.34276 5.42977H6.69999L16.6857 18.4858Z",
|
|
14903
|
+
fill: "#554B6A"
|
|
14904
|
+
}
|
|
14905
|
+
)
|
|
14906
|
+
}
|
|
14907
|
+
), ZellicIcon = (e) => /* @__PURE__ */ jsxs(
|
|
14908
|
+
"svg",
|
|
14909
|
+
{
|
|
14910
|
+
width: "48",
|
|
14911
|
+
height: "43",
|
|
14912
|
+
viewBox: "0 0 48 43",
|
|
14913
|
+
fill: "none",
|
|
14914
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14915
|
+
...e,
|
|
14916
|
+
children: [
|
|
14917
|
+
/* @__PURE__ */ jsx(
|
|
14918
|
+
"path",
|
|
14919
|
+
{
|
|
14920
|
+
d: "M14.3948 0.654297V17.277L11.6504 15.6921V0.654297H14.3948Z",
|
|
14921
|
+
fill: "#554B6A"
|
|
14922
|
+
}
|
|
14923
|
+
),
|
|
14924
|
+
/* @__PURE__ */ jsx(
|
|
14925
|
+
"path",
|
|
14926
|
+
{
|
|
14927
|
+
d: "M19.8831 0.654297V20.4451L17.1387 18.8602V0.654297H19.8831Z",
|
|
14928
|
+
fill: "#554B6A"
|
|
14929
|
+
}
|
|
14930
|
+
),
|
|
14931
|
+
/* @__PURE__ */ jsx(
|
|
14932
|
+
"path",
|
|
14933
|
+
{
|
|
14934
|
+
d: "M1.37221 19.2656L15.7667 27.5761L13.0223 29.1611L0 21.6413L1.37221 19.2656Z",
|
|
14935
|
+
fill: "#554B6A"
|
|
14936
|
+
}
|
|
14937
|
+
),
|
|
14938
|
+
/* @__PURE__ */ jsx(
|
|
14939
|
+
"path",
|
|
14940
|
+
{
|
|
14941
|
+
d: "M4.11733 14.5117L21.2563 24.4071L18.5119 25.9921L2.74512 16.8891L4.11733 14.5117Z",
|
|
14942
|
+
fill: "#554B6A"
|
|
14943
|
+
}
|
|
14944
|
+
),
|
|
14945
|
+
/* @__PURE__ */ jsx(
|
|
14946
|
+
"path",
|
|
14947
|
+
{
|
|
14948
|
+
d: "M10.9775 39.8474L25.3721 31.5352V34.705L12.3498 42.223L10.9775 39.8474Z",
|
|
14949
|
+
fill: "#554B6A"
|
|
14950
|
+
}
|
|
14951
|
+
),
|
|
14952
|
+
/* @__PURE__ */ jsx(
|
|
14953
|
+
"path",
|
|
14954
|
+
{
|
|
14955
|
+
d: "M8.2334 35.0907L25.3724 25.1953V28.3651L9.60561 37.4681L8.2334 35.0907Z",
|
|
14956
|
+
fill: "#554B6A"
|
|
14957
|
+
}
|
|
14958
|
+
),
|
|
14959
|
+
/* @__PURE__ */ jsx(
|
|
14960
|
+
"path",
|
|
14961
|
+
{
|
|
14962
|
+
d: "M33.6055 41.8181V25.1953L36.3499 26.7802V41.8181H33.6055Z",
|
|
14963
|
+
fill: "#554B6A"
|
|
14964
|
+
}
|
|
14965
|
+
),
|
|
14966
|
+
/* @__PURE__ */ jsx(
|
|
14967
|
+
"path",
|
|
14968
|
+
{
|
|
14969
|
+
d: "M28.1172 41.8201V22.0293L30.8616 23.6142V41.8201H28.1172Z",
|
|
14970
|
+
fill: "#554B6A"
|
|
14971
|
+
}
|
|
14972
|
+
),
|
|
14973
|
+
/* @__PURE__ */ jsx(
|
|
14974
|
+
"path",
|
|
14975
|
+
{
|
|
14976
|
+
d: "M46.6279 23.2118L32.2334 14.9013L34.9778 13.3164L48.0001 20.8362L46.6279 23.2118Z",
|
|
14977
|
+
fill: "#554B6A"
|
|
14978
|
+
}
|
|
14979
|
+
),
|
|
14980
|
+
/* @__PURE__ */ jsx(
|
|
14981
|
+
"path",
|
|
14982
|
+
{
|
|
14983
|
+
d: "M43.8831 27.9667L26.7441 18.0712L29.4886 16.4863L45.2553 25.5893L43.8831 27.9667Z",
|
|
14984
|
+
fill: "#554B6A"
|
|
14985
|
+
}
|
|
14986
|
+
),
|
|
14987
|
+
/* @__PURE__ */ jsx(
|
|
14988
|
+
"path",
|
|
14989
|
+
{
|
|
14990
|
+
d: "M37.0225 2.62566L22.6279 10.9379V7.76805L35.6503 0.25L37.0225 2.62566Z",
|
|
14991
|
+
fill: "#554B6A"
|
|
14992
|
+
}
|
|
14993
|
+
),
|
|
14994
|
+
/* @__PURE__ */ jsx(
|
|
14995
|
+
"path",
|
|
14996
|
+
{
|
|
14997
|
+
d: "M39.7669 7.38323L22.6279 17.2787V14.1088L38.3947 5.00586L39.7669 7.38323Z",
|
|
14998
|
+
fill: "#554B6A"
|
|
14999
|
+
}
|
|
15000
|
+
)
|
|
15001
|
+
]
|
|
15002
|
+
}
|
|
14604
15003
|
), ArbitrumLogo = (e) => /* @__PURE__ */ jsxs(
|
|
14605
15004
|
"svg",
|
|
14606
15005
|
{
|
|
@@ -14834,8 +15233,8 @@ const Drawer = {
|
|
|
14834
15233
|
"svg",
|
|
14835
15234
|
{
|
|
14836
15235
|
width: "116",
|
|
14837
|
-
height: "
|
|
14838
|
-
viewBox: "0 0 116
|
|
15236
|
+
height: "34",
|
|
15237
|
+
viewBox: "0 0 116 34",
|
|
14839
15238
|
...e,
|
|
14840
15239
|
fill: "none",
|
|
14841
15240
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -14843,59 +15242,50 @@ const Drawer = {
|
|
|
14843
15242
|
/* @__PURE__ */ jsx(
|
|
14844
15243
|
"path",
|
|
14845
15244
|
{
|
|
14846
|
-
|
|
14847
|
-
|
|
14848
|
-
d: "M15.9749 -0.000488281C20.2855 -0.000488281 23.925 2.87781 25.0823 6.82035C29.0731 7.9445 31.9989 11.6168 31.9989 15.9736C31.9989 20.315 29.0937 23.9768 25.1245 25.1149C23.9882 29.0906 20.3325 32.0004 15.9983 32.0004C11.6639 32.0004 8.00801 29.0902 6.87197 25.1142C2.90395 23.9753 -1.89408e-07 20.3141 0 15.9736C1.89291e-07 11.6363 2.89958 7.97742 6.86302 6.83561C8.01536 2.88524 11.6587 -0.000488281 15.9749 -0.000488281Z",
|
|
14849
|
-
fill: "#F7CFDB"
|
|
15245
|
+
d: "M103.691 10.6876H106.961V12.387C107.322 11.8549 107.871 11.4086 108.609 11.0481C109.365 10.6705 110.223 10.4816 111.184 10.4816C112.609 10.4816 113.768 10.9194 114.66 11.7948C115.553 12.6531 115.999 13.829 115.999 15.3224V23.665H112.729V16.0176C112.729 15.1936 112.497 14.5413 112.034 14.0607C111.588 13.5801 110.987 13.3397 110.232 13.3397C109.219 13.3397 108.421 13.7517 107.837 14.5757C107.253 15.3996 106.961 16.5497 106.961 18.026V23.665H103.691V10.6876Z",
|
|
15246
|
+
fill: "#39315B"
|
|
14850
15247
|
}
|
|
14851
15248
|
),
|
|
14852
15249
|
/* @__PURE__ */ jsx(
|
|
14853
15250
|
"path",
|
|
14854
15251
|
{
|
|
14855
|
-
d: "
|
|
14856
|
-
fill: "#
|
|
15252
|
+
d: "M96.0804 23.8709C94.7586 23.8709 93.5914 23.5877 92.5786 23.0212C91.5658 22.4548 90.7762 21.6651 90.2097 20.6524C89.6604 19.6396 89.3857 18.4809 89.3857 17.1763C89.3857 15.8889 89.669 14.7387 90.2354 13.726C90.8019 12.7132 91.5744 11.9236 92.5528 11.3571C93.5484 10.7734 94.6728 10.4816 95.9259 10.4816C97.179 10.4816 98.2862 10.7563 99.2475 11.3056C100.209 11.8377 100.947 12.5844 101.462 13.5457C101.994 14.507 102.26 15.5799 102.26 16.7643C102.26 17.1076 102.234 17.4767 102.183 17.8715H92.6301C92.7502 18.9186 93.1193 19.7254 93.7373 20.2919C94.3552 20.8583 95.1277 21.1416 96.0547 21.1416C96.7756 21.1416 97.3764 20.9871 97.8571 20.6781C98.3377 20.3691 98.6553 19.9486 98.8098 19.4164H102.054C101.814 20.7554 101.161 21.8368 100.097 22.6608C99.0329 23.4675 97.694 23.8709 96.0804 23.8709ZM98.8098 15.4769C98.7926 14.7387 98.5179 14.1465 97.9858 13.7002C97.4537 13.2367 96.767 13.005 95.9259 13.005C94.2437 13.005 93.1965 13.829 92.7846 15.4769H98.8098Z",
|
|
15253
|
+
fill: "#39315B"
|
|
14857
15254
|
}
|
|
14858
15255
|
),
|
|
14859
15256
|
/* @__PURE__ */ jsx(
|
|
14860
15257
|
"path",
|
|
14861
15258
|
{
|
|
14862
|
-
d: "
|
|
14863
|
-
fill: "#
|
|
15259
|
+
d: "M80.8408 23.8709C79.5705 23.8709 78.4547 23.5962 77.4934 23.0469C76.5321 22.4976 75.7854 21.7251 75.2533 20.7295C74.7211 19.7167 74.4551 18.5323 74.4551 17.1762C74.4551 15.8201 74.7211 14.6443 75.2533 13.6486C75.7854 12.6359 76.5321 11.8548 77.4934 11.3055C78.4547 10.7562 79.5705 10.4816 80.8408 10.4816C81.6647 10.4816 82.4372 10.6446 83.1581 10.9708C83.8791 11.2969 84.4112 11.7347 84.7545 12.284V5.43481H88.0504V23.6649H84.7545V22.0427C84.4112 22.592 83.8791 23.0383 83.1581 23.3816C82.4372 23.7078 81.6647 23.8709 80.8408 23.8709ZM77.7509 17.1762C77.7509 18.3263 78.0771 19.2704 78.7294 20.0086C79.3817 20.7295 80.2228 21.09 81.2527 21.09C82.2998 21.09 83.141 20.7295 83.7761 20.0086C84.4284 19.2704 84.7545 18.3263 84.7545 17.1762C84.7545 16.0089 84.4284 15.0648 83.7761 14.3439C83.141 13.6229 82.2998 13.2624 81.2527 13.2624C80.2228 13.2624 79.3817 13.6229 78.7294 14.3439C78.0771 15.0648 77.7509 16.0089 77.7509 17.1762Z",
|
|
15260
|
+
fill: "#39315B"
|
|
14864
15261
|
}
|
|
14865
15262
|
),
|
|
14866
15263
|
/* @__PURE__ */ jsx(
|
|
14867
15264
|
"path",
|
|
14868
15265
|
{
|
|
14869
|
-
d: "
|
|
14870
|
-
fill: "#
|
|
14871
|
-
}
|
|
14872
|
-
),
|
|
14873
|
-
/* @__PURE__ */ jsx(
|
|
14874
|
-
"path",
|
|
14875
|
-
{
|
|
14876
|
-
d: "M83.557 22.5464C80.1204 22.5464 78.0391 19.9182 78.0391 16.2238C78.0391 12.5046 80.1446 9.77716 83.6538 9.77716C85.469 9.77716 86.9937 10.5954 87.7923 12.0831V4H90.0431V22.2489H88.0101L87.8165 20.0421C87.0421 21.7034 85.4448 22.5464 83.557 22.5464ZM84.0169 20.4389C86.3402 20.4389 87.7681 18.6784 87.7681 16.1494C87.7681 13.6699 86.3402 11.8847 84.0169 11.8847C81.6935 11.8847 80.3382 13.6699 80.3382 16.1494C80.3382 18.6536 81.6935 20.4389 84.0169 20.4389Z",
|
|
14877
|
-
fill: "#554B6A"
|
|
15266
|
+
d: "M66.1152 10.6876H69.3853V12.4385C69.7458 11.8549 70.2694 11.3828 70.956 11.0224C71.6598 10.6619 72.4065 10.4816 73.1961 10.4816C73.7626 10.4816 74.2432 10.5675 74.638 10.7391V13.829C74.1059 13.623 73.5223 13.52 72.8871 13.52C71.8744 13.52 71.0332 13.9663 70.3638 14.8589C69.7115 15.7344 69.3853 17.0304 69.3853 18.747V23.665H66.1152V10.6876Z",
|
|
15267
|
+
fill: "#39315B"
|
|
14878
15268
|
}
|
|
14879
15269
|
),
|
|
14880
15270
|
/* @__PURE__ */ jsx(
|
|
14881
15271
|
"path",
|
|
14882
15272
|
{
|
|
14883
|
-
d: "
|
|
14884
|
-
fill: "#
|
|
15273
|
+
d: "M57.4172 23.8709C56.0611 23.8709 54.971 23.519 54.1471 22.8152C53.3231 22.1115 52.9111 21.1931 52.9111 20.0601C52.9111 18.7727 53.366 17.7857 54.2758 17.099C55.2028 16.3952 56.6447 15.9403 58.6016 15.7344L61.125 15.4769V15.1936C61.125 14.5242 60.9018 13.992 60.4555 13.5972C60.0092 13.2024 59.417 13.005 58.6788 13.005C57.9922 13.005 57.4257 13.1852 56.9794 13.5457C56.5503 13.9062 56.2928 14.4212 56.207 15.0906H52.9884C53.1085 14.2324 53.4175 13.4513 53.9153 12.7475C54.4303 12.0437 55.0912 11.4944 55.898 11.0996C56.7219 10.6876 57.6489 10.4816 58.6788 10.4816C60.3954 10.4816 61.7773 10.9365 62.8244 11.8463C63.8715 12.7389 64.395 14.0006 64.395 15.6314V23.665H61.125V22.017C60.8331 22.5492 60.3439 22.9955 59.6573 23.356C58.9707 23.6993 58.2239 23.8709 57.4172 23.8709ZM56.1297 19.9314C56.1297 20.3777 56.3014 20.7296 56.6447 20.9871C56.988 21.2446 57.4601 21.3733 58.0609 21.3733C58.9878 21.3733 59.726 21.0558 60.2753 20.4206C60.8417 19.7683 61.125 18.9701 61.125 18.026V17.82L58.7303 18.129C57.8205 18.232 57.1597 18.4294 56.7477 18.7212C56.3357 18.9959 56.1297 19.3993 56.1297 19.9314Z",
|
|
15274
|
+
fill: "#39315B"
|
|
14885
15275
|
}
|
|
14886
15276
|
),
|
|
14887
15277
|
/* @__PURE__ */ jsx(
|
|
14888
15278
|
"path",
|
|
14889
15279
|
{
|
|
14890
|
-
d: "
|
|
14891
|
-
fill: "#
|
|
15280
|
+
d: "M44.7926 28.5571C43.7284 28.5571 42.7671 28.3683 41.9088 27.9906C41.0505 27.6301 40.3553 27.1237 39.8231 26.4714C39.3082 25.8191 38.9906 25.0896 38.8704 24.2828H42.1148C42.2521 24.8321 42.5697 25.2612 43.0675 25.5702C43.5653 25.8792 44.1747 26.0337 44.8956 26.0337C45.8741 26.0337 46.6637 25.7762 47.2645 25.2612C47.8825 24.7634 48.1915 24.0425 48.1915 23.0984V21.3989C47.8138 21.9139 47.2903 22.3173 46.6208 22.6091C45.9513 22.901 45.2389 23.0469 44.4837 23.0469C43.2477 23.0469 42.1663 22.7894 41.2393 22.2744C40.3124 21.7594 39.6 21.0299 39.1022 20.0858C38.6044 19.1245 38.3555 18.0173 38.3555 16.7642C38.3555 15.4939 38.6044 14.3867 39.1022 13.4426C39.6 12.4985 40.3124 11.7689 41.2393 11.254C42.1663 10.739 43.2477 10.4815 44.4837 10.4815C45.2389 10.4815 45.9513 10.6274 46.6208 10.9192C47.2903 11.1939 47.8138 11.5801 48.1915 12.0779V10.6875H51.4615V22.7894C51.4615 23.991 51.1783 25.0209 50.6118 25.8792C50.0454 26.7547 49.2557 27.4156 48.243 27.8619C47.2473 28.3253 46.0972 28.5571 44.7926 28.5571ZM41.5226 16.7642C41.5226 17.8456 41.8315 18.7297 42.4495 19.4163C43.0675 20.0858 43.8743 20.4205 44.8699 20.4205C45.8483 20.4205 46.6465 20.0858 47.2645 19.4163C47.8825 18.7297 48.1915 17.8456 48.1915 16.7642C48.1915 15.6656 47.8825 14.7815 47.2645 14.1121C46.6465 13.4426 45.8483 13.1079 44.8699 13.1079C43.8743 13.1079 43.0675 13.4426 42.4495 14.1121C41.8315 14.7815 41.5226 15.6656 41.5226 16.7642Z",
|
|
15281
|
+
fill: "#39315B"
|
|
14892
15282
|
}
|
|
14893
15283
|
),
|
|
14894
15284
|
/* @__PURE__ */ jsx(
|
|
14895
15285
|
"path",
|
|
14896
15286
|
{
|
|
14897
|
-
d: "
|
|
14898
|
-
fill: "#
|
|
15287
|
+
d: "M16.082 0.917969C20.4673 0.917978 24.096 4.15212 24.7158 8.36523C28.9295 8.98456 32.1641 12.6144 32.1641 17C32.1641 21.3856 28.9294 25.0144 24.7158 25.6338C24.0964 29.8474 20.4676 33.082 16.082 33.082C11.6964 33.082 8.06659 29.8474 7.44727 25.6338C3.23415 25.014 8.43986e-06 21.3853 0 17C0 12.6147 3.23408 8.98495 7.44727 8.36523C8.06698 4.15205 11.6967 0.917969 16.082 0.917969ZM13.6289 8.75195V10.5752H11.1719V12.6904H12.2637V21.2256H11.1719V23.3408H13.6289V25.292H15.3008V23.3408H16.2432V25.292H17.9307V23.3213C18.1647 23.3104 18.3996 23.2931 18.5889 23.2676C19.6068 23.0974 20.4185 22.6838 21.0244 22.0273C21.6424 21.3587 21.9521 20.5444 21.9521 19.584C21.9521 18.8303 21.7157 18.1616 21.2432 17.5781C20.7706 16.9946 20.1823 16.6121 19.4795 16.4297C19.9884 16.2352 20.4191 15.8945 20.7705 15.4082C21.1219 14.9098 21.2978 14.3686 21.2979 13.7852C21.2978 12.9828 21.0486 12.3078 20.5518 11.7607C20.067 11.2016 19.4128 10.8372 18.5889 10.667C18.4039 10.6343 18.1676 10.6132 17.9307 10.5996V8.75195H16.2432V10.5752H15.3008V8.75195H13.6289ZM17.3896 17.6143C17.9954 17.6143 18.4922 17.7847 18.8799 18.125C19.2797 18.4532 19.4794 18.8788 19.4795 19.4014C19.4795 19.9363 19.2798 20.3744 18.8799 20.7148C18.4922 21.0552 17.9954 21.2255 17.3896 21.2256H14.7354V17.6143H17.3896ZM17.208 12.6904C17.7047 12.6905 18.1108 12.8308 18.4258 13.1104C18.7527 13.3777 18.9159 13.7241 18.916 14.1494C18.916 14.587 18.7528 14.946 18.4258 15.2256C18.1108 15.493 17.7047 15.6269 17.208 15.627H14.7354V12.6904H17.208Z",
|
|
15288
|
+
fill: "#39315B"
|
|
14899
15289
|
}
|
|
14900
15290
|
)
|
|
14901
15291
|
]
|
|
@@ -16497,41 +16887,41 @@ var build = { exports: {} };
|
|
|
16497
16887
|
return L || u.test(T) ? p(T.slice(2), L ? 2 : 8) : c.test(T) ? NaN : +T;
|
|
16498
16888
|
}
|
|
16499
16889
|
s.exports = function(T, M, L) {
|
|
16500
|
-
var V, k, U,
|
|
16890
|
+
var V, k, U, z, B, G, q = 0, H = !1, _ = !1, R = !0;
|
|
16501
16891
|
if (typeof T != "function") throw new TypeError("Expected a function");
|
|
16502
16892
|
function P(K) {
|
|
16503
16893
|
var X = V, ee = k;
|
|
16504
|
-
return V = k = void 0, q = K,
|
|
16894
|
+
return V = k = void 0, q = K, z = T.apply(ee, X);
|
|
16505
16895
|
}
|
|
16506
16896
|
function A(K) {
|
|
16507
|
-
var X = K -
|
|
16508
|
-
return
|
|
16897
|
+
var X = K - G;
|
|
16898
|
+
return G === void 0 || X >= M || X < 0 || _ && K - q >= U;
|
|
16509
16899
|
}
|
|
16510
16900
|
function F() {
|
|
16511
16901
|
var K = x();
|
|
16512
16902
|
if (A(K)) return I(K);
|
|
16513
16903
|
B = setTimeout(F, function(X) {
|
|
16514
|
-
var ee = M - (X -
|
|
16904
|
+
var ee = M - (X - G);
|
|
16515
16905
|
return _ ? m(ee, U - (X - q)) : ee;
|
|
16516
16906
|
}(K));
|
|
16517
16907
|
}
|
|
16518
16908
|
function I(K) {
|
|
16519
|
-
return B = void 0, R && V ? P(K) : (V = k = void 0,
|
|
16909
|
+
return B = void 0, R && V ? P(K) : (V = k = void 0, z);
|
|
16520
16910
|
}
|
|
16521
16911
|
function W() {
|
|
16522
16912
|
var K = x(), X = A(K);
|
|
16523
|
-
if (V = arguments, k = this,
|
|
16913
|
+
if (V = arguments, k = this, G = K, X) {
|
|
16524
16914
|
if (B === void 0) return function(ee) {
|
|
16525
|
-
return q = ee, B = setTimeout(F, M),
|
|
16526
|
-
}(
|
|
16527
|
-
if (_) return B = setTimeout(F, M), P(
|
|
16915
|
+
return q = ee, B = setTimeout(F, M), H ? P(ee) : z;
|
|
16916
|
+
}(G);
|
|
16917
|
+
if (_) return B = setTimeout(F, M), P(G);
|
|
16528
16918
|
}
|
|
16529
|
-
return B === void 0 && (B = setTimeout(F, M)),
|
|
16919
|
+
return B === void 0 && (B = setTimeout(F, M)), z;
|
|
16530
16920
|
}
|
|
16531
|
-
return M = S(M) || 0, y(L) && (
|
|
16532
|
-
B !== void 0 && clearTimeout(B), q = 0, V =
|
|
16921
|
+
return M = S(M) || 0, y(L) && (H = !!L.leading, U = (_ = "maxWait" in L) ? E(S(L.maxWait) || 0, M) : U, R = "trailing" in L ? !!L.trailing : R), W.cancel = function() {
|
|
16922
|
+
B !== void 0 && clearTimeout(B), q = 0, V = G = k = B = void 0;
|
|
16533
16923
|
}, W.flush = function() {
|
|
16534
|
-
return B === void 0 ?
|
|
16924
|
+
return B === void 0 ? z : I(x());
|
|
16535
16925
|
}, W;
|
|
16536
16926
|
};
|
|
16537
16927
|
}, 858: (s, a, o) => {
|
|
@@ -16544,10 +16934,10 @@ var build = { exports: {} };
|
|
|
16544
16934
|
}
|
|
16545
16935
|
function L(V) {
|
|
16546
16936
|
if (typeof V == "number") return V;
|
|
16547
|
-
if (function(
|
|
16548
|
-
return typeof
|
|
16937
|
+
if (function(z) {
|
|
16938
|
+
return typeof z == "symbol" || /* @__PURE__ */ function(B) {
|
|
16549
16939
|
return !!B && typeof B == "object";
|
|
16550
|
-
}(
|
|
16940
|
+
}(z) && x.call(z) == f;
|
|
16551
16941
|
}(V)) return c;
|
|
16552
16942
|
if (M(V)) {
|
|
16553
16943
|
var k = typeof V.valueOf == "function" ? V.valueOf() : V;
|
|
@@ -16559,14 +16949,14 @@ var build = { exports: {} };
|
|
|
16559
16949
|
return U || b.test(V) ? C(V.slice(2), U ? 2 : 8) : p.test(V) ? c : +V;
|
|
16560
16950
|
}
|
|
16561
16951
|
s.exports = function(V, k, U) {
|
|
16562
|
-
var
|
|
16952
|
+
var z = !0, B = !0;
|
|
16563
16953
|
if (typeof V != "function") throw new TypeError(l);
|
|
16564
|
-
return M(U) && (
|
|
16954
|
+
return M(U) && (z = "leading" in U ? !!U.leading : z, B = "trailing" in U ? !!U.trailing : B), function(G, q, H) {
|
|
16565
16955
|
var _, R, P, A, F, I, W = 0, K = !1, X = !1, ee = !0;
|
|
16566
|
-
if (typeof
|
|
16956
|
+
if (typeof G != "function") throw new TypeError(l);
|
|
16567
16957
|
function re(se) {
|
|
16568
16958
|
var ue = _, ie = R;
|
|
16569
|
-
return _ = R = void 0, W = se, A =
|
|
16959
|
+
return _ = R = void 0, W = se, A = G.apply(ie, ue);
|
|
16570
16960
|
}
|
|
16571
16961
|
function ce(se) {
|
|
16572
16962
|
var ue = se - I;
|
|
@@ -16593,12 +16983,12 @@ var build = { exports: {} };
|
|
|
16593
16983
|
}
|
|
16594
16984
|
return F === void 0 && (F = setTimeout(fe, q)), A;
|
|
16595
16985
|
}
|
|
16596
|
-
return q = L(q) || 0, M(
|
|
16986
|
+
return q = L(q) || 0, M(H) && (K = !!H.leading, P = (X = "maxWait" in H) ? y(L(H.maxWait) || 0, q) : P, ee = "trailing" in H ? !!H.trailing : ee), de.cancel = function() {
|
|
16597
16987
|
F !== void 0 && clearTimeout(F), W = 0, _ = I = R = F = void 0;
|
|
16598
16988
|
}, de.flush = function() {
|
|
16599
16989
|
return F === void 0 ? A : me(T());
|
|
16600
16990
|
}, de;
|
|
16601
|
-
}(V, k, { leading:
|
|
16991
|
+
}(V, k, { leading: z, maxWait: k, trailing: B });
|
|
16602
16992
|
};
|
|
16603
16993
|
}, 694: (s, a, o) => {
|
|
16604
16994
|
var l = o(925);
|
|
@@ -16662,46 +17052,46 @@ var build = { exports: {} };
|
|
|
16662
17052
|
}, c($);
|
|
16663
17053
|
}
|
|
16664
17054
|
function f($, D) {
|
|
16665
|
-
var
|
|
17055
|
+
var Z = Object.keys($);
|
|
16666
17056
|
if (Object.getOwnPropertySymbols) {
|
|
16667
17057
|
var j = Object.getOwnPropertySymbols($);
|
|
16668
17058
|
D && (j = j.filter(function(O) {
|
|
16669
17059
|
return Object.getOwnPropertyDescriptor($, O).enumerable;
|
|
16670
|
-
})),
|
|
17060
|
+
})), Z.push.apply(Z, j);
|
|
16671
17061
|
}
|
|
16672
|
-
return
|
|
17062
|
+
return Z;
|
|
16673
17063
|
}
|
|
16674
|
-
function u($, D,
|
|
16675
|
-
return (D = d(D)) in $ ? Object.defineProperty($, D, { value:
|
|
17064
|
+
function u($, D, Z) {
|
|
17065
|
+
return (D = d(D)) in $ ? Object.defineProperty($, D, { value: Z, enumerable: !0, configurable: !0, writable: !0 }) : $[D] = Z, $;
|
|
16676
17066
|
}
|
|
16677
17067
|
function p($, D) {
|
|
16678
|
-
for (var
|
|
16679
|
-
var j = D[
|
|
17068
|
+
for (var Z = 0; Z < D.length; Z++) {
|
|
17069
|
+
var j = D[Z];
|
|
16680
17070
|
j.enumerable = j.enumerable || !1, j.configurable = !0, "value" in j && (j.writable = !0), Object.defineProperty($, d(j.key), j);
|
|
16681
17071
|
}
|
|
16682
17072
|
}
|
|
16683
17073
|
function d($) {
|
|
16684
|
-
var D = function(
|
|
16685
|
-
if (c(
|
|
16686
|
-
var O =
|
|
17074
|
+
var D = function(Z, j) {
|
|
17075
|
+
if (c(Z) != "object" || !Z) return Z;
|
|
17076
|
+
var O = Z[Symbol.toPrimitive];
|
|
16687
17077
|
if (O !== void 0) {
|
|
16688
|
-
var
|
|
16689
|
-
if (c(
|
|
17078
|
+
var N = O.call(Z, "string");
|
|
17079
|
+
if (c(N) != "object") return N;
|
|
16690
17080
|
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
16691
17081
|
}
|
|
16692
|
-
return String(
|
|
17082
|
+
return String(Z);
|
|
16693
17083
|
}($);
|
|
16694
17084
|
return c(D) == "symbol" ? D : D + "";
|
|
16695
17085
|
}
|
|
16696
|
-
function b($, D,
|
|
17086
|
+
function b($, D, Z) {
|
|
16697
17087
|
return D = g(D), function(j, O) {
|
|
16698
17088
|
if (O && (c(O) == "object" || typeof O == "function")) return O;
|
|
16699
17089
|
if (O !== void 0) throw new TypeError("Derived constructors may only return object or undefined");
|
|
16700
|
-
return function(
|
|
16701
|
-
if (
|
|
16702
|
-
return
|
|
17090
|
+
return function(N) {
|
|
17091
|
+
if (N === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17092
|
+
return N;
|
|
16703
17093
|
}(j);
|
|
16704
|
-
}($, C() ? Reflect.construct(D,
|
|
17094
|
+
}($, C() ? Reflect.construct(D, Z || [], g($).constructor) : D.apply($, Z));
|
|
16705
17095
|
}
|
|
16706
17096
|
function C() {
|
|
16707
17097
|
try {
|
|
@@ -16719,8 +17109,8 @@ var build = { exports: {} };
|
|
|
16719
17109
|
}, g($);
|
|
16720
17110
|
}
|
|
16721
17111
|
function E($, D) {
|
|
16722
|
-
return E = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(
|
|
16723
|
-
return
|
|
17112
|
+
return E = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(Z, j) {
|
|
17113
|
+
return Z.__proto__ = j, Z;
|
|
16724
17114
|
}, E($, D);
|
|
16725
17115
|
}
|
|
16726
17116
|
var m = function($) {
|
|
@@ -16729,37 +17119,37 @@ var build = { exports: {} };
|
|
|
16729
17119
|
});
|
|
16730
17120
|
}, x = {}, y = function($) {
|
|
16731
17121
|
function D(O) {
|
|
16732
|
-
var
|
|
17122
|
+
var N;
|
|
16733
17123
|
if (function(Q, te) {
|
|
16734
17124
|
if (!(Q instanceof te)) throw new TypeError("Cannot call a class as a function");
|
|
16735
|
-
}(this, D), (
|
|
17125
|
+
}(this, D), (N = b(this, D, [O])).supportsObserver = !O.scrollPosition && O.useIntersectionObserver && l(), N.supportsObserver) {
|
|
16736
17126
|
var J = O.threshold;
|
|
16737
|
-
|
|
17127
|
+
N.observer = function(Q) {
|
|
16738
17128
|
return x[Q] = x[Q] || new IntersectionObserver(m, { rootMargin: Q + "px" }), x[Q];
|
|
16739
17129
|
}(J);
|
|
16740
17130
|
}
|
|
16741
|
-
return
|
|
17131
|
+
return N;
|
|
16742
17132
|
}
|
|
16743
|
-
return function(O,
|
|
16744
|
-
if (typeof
|
|
16745
|
-
O.prototype = Object.create(
|
|
16746
|
-
}(D, $),
|
|
17133
|
+
return function(O, N) {
|
|
17134
|
+
if (typeof N != "function" && N !== null) throw new TypeError("Super expression must either be null or a function");
|
|
17135
|
+
O.prototype = Object.create(N && N.prototype, { constructor: { value: O, writable: !0, configurable: !0 } }), Object.defineProperty(O, "prototype", { writable: !1 }), N && E(O, N);
|
|
17136
|
+
}(D, $), Z = D, j = [{ key: "componentDidMount", value: function() {
|
|
16747
17137
|
this.placeholder && this.observer && (this.placeholder.onVisible = this.props.onVisible, this.observer.observe(this.placeholder)), this.supportsObserver || this.updateVisibility();
|
|
16748
17138
|
} }, { key: "componentWillUnmount", value: function() {
|
|
16749
17139
|
this.observer && this.placeholder && this.observer.unobserve(this.placeholder);
|
|
16750
17140
|
} }, { key: "componentDidUpdate", value: function() {
|
|
16751
17141
|
this.supportsObserver || this.updateVisibility();
|
|
16752
17142
|
} }, { key: "getPlaceholderBoundingBox", value: function() {
|
|
16753
|
-
var O = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : this.props.scrollPosition,
|
|
16754
|
-
return { bottom: O.y +
|
|
17143
|
+
var O = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : this.props.scrollPosition, N = this.placeholder.getBoundingClientRect(), J = this.placeholder.style, Q = parseInt(J.getPropertyValue("margin-left"), 10) || 0, te = parseInt(J.getPropertyValue("margin-top"), 10) || 0;
|
|
17144
|
+
return { bottom: O.y + N.bottom + te, left: O.x + N.left + Q, right: O.x + N.right + Q, top: O.y + N.top + te };
|
|
16755
17145
|
} }, { key: "isPlaceholderInViewport", value: function() {
|
|
16756
17146
|
if (typeof window > "u" || !this.placeholder) return !1;
|
|
16757
|
-
var O = this.props,
|
|
17147
|
+
var O = this.props, N = O.scrollPosition, J = O.threshold, Q = this.getPlaceholderBoundingBox(N), te = N.y + window.innerHeight, ne = N.x, le = N.x + window.innerWidth, ae = N.y;
|
|
16758
17148
|
return ae - J <= Q.bottom && te + J >= Q.top && ne - J <= Q.right && le + J >= Q.left;
|
|
16759
17149
|
} }, { key: "updateVisibility", value: function() {
|
|
16760
17150
|
this.isPlaceholderInViewport() && this.props.onVisible();
|
|
16761
17151
|
} }, { key: "render", value: function() {
|
|
16762
|
-
var O = this,
|
|
17152
|
+
var O = this, N = this.props, J = N.className, Q = N.height, te = N.placeholder, ne = N.style, le = N.width;
|
|
16763
17153
|
if (te && typeof te.type != "function") return a().cloneElement(te, { ref: function(oe) {
|
|
16764
17154
|
return O.placeholder = oe;
|
|
16765
17155
|
} });
|
|
@@ -16777,8 +17167,8 @@ var build = { exports: {} };
|
|
|
16777
17167
|
return le !== void 0 && (ae.width = le), Q !== void 0 && (ae.height = Q), a().createElement("span", { className: J, ref: function(oe) {
|
|
16778
17168
|
return O.placeholder = oe;
|
|
16779
17169
|
}, style: ae }, te);
|
|
16780
|
-
} }], j && p(
|
|
16781
|
-
var
|
|
17170
|
+
} }], j && p(Z.prototype, j), Object.defineProperty(Z, "prototype", { writable: !1 }), Z;
|
|
17171
|
+
var Z, j;
|
|
16782
17172
|
}(a().Component);
|
|
16783
17173
|
y.propTypes = { onVisible: o.PropTypes.func.isRequired, className: o.PropTypes.string, height: o.PropTypes.oneOfType([o.PropTypes.number, o.PropTypes.string]), placeholder: o.PropTypes.element, threshold: o.PropTypes.number, useIntersectionObserver: o.PropTypes.bool, scrollPosition: o.PropTypes.shape({ x: o.PropTypes.number.isRequired, y: o.PropTypes.number.isRequired }), width: o.PropTypes.oneOfType([o.PropTypes.number, o.PropTypes.string]) }, y.defaultProps = { className: "", placeholder: null, threshold: 100, useIntersectionObserver: !0 };
|
|
16784
17174
|
const S = y;
|
|
@@ -16794,51 +17184,51 @@ var build = { exports: {} };
|
|
|
16794
17184
|
}
|
|
16795
17185
|
return window;
|
|
16796
17186
|
};
|
|
16797
|
-
function
|
|
16798
|
-
return
|
|
17187
|
+
function z($) {
|
|
17188
|
+
return z = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(D) {
|
|
16799
17189
|
return typeof D;
|
|
16800
17190
|
} : function(D) {
|
|
16801
17191
|
return D && typeof Symbol == "function" && D.constructor === Symbol && D !== Symbol.prototype ? "symbol" : typeof D;
|
|
16802
|
-
},
|
|
17192
|
+
}, z($);
|
|
16803
17193
|
}
|
|
16804
17194
|
var B = ["delayMethod", "delayTime"];
|
|
16805
|
-
function
|
|
16806
|
-
return
|
|
17195
|
+
function G() {
|
|
17196
|
+
return G = Object.assign ? Object.assign.bind() : function($) {
|
|
16807
17197
|
for (var D = 1; D < arguments.length; D++) {
|
|
16808
|
-
var
|
|
16809
|
-
for (var j in
|
|
17198
|
+
var Z = arguments[D];
|
|
17199
|
+
for (var j in Z) ({}).hasOwnProperty.call(Z, j) && ($[j] = Z[j]);
|
|
16810
17200
|
}
|
|
16811
17201
|
return $;
|
|
16812
|
-
},
|
|
17202
|
+
}, G.apply(null, arguments);
|
|
16813
17203
|
}
|
|
16814
17204
|
function q($, D) {
|
|
16815
|
-
for (var
|
|
16816
|
-
var j = D[
|
|
16817
|
-
j.enumerable = j.enumerable || !1, j.configurable = !0, "value" in j && (j.writable = !0), Object.defineProperty($,
|
|
17205
|
+
for (var Z = 0; Z < D.length; Z++) {
|
|
17206
|
+
var j = D[Z];
|
|
17207
|
+
j.enumerable = j.enumerable || !1, j.configurable = !0, "value" in j && (j.writable = !0), Object.defineProperty($, H(j.key), j);
|
|
16818
17208
|
}
|
|
16819
17209
|
}
|
|
16820
|
-
function
|
|
16821
|
-
var D = function(
|
|
16822
|
-
if (Z
|
|
16823
|
-
var O =
|
|
17210
|
+
function H($) {
|
|
17211
|
+
var D = function(Z, j) {
|
|
17212
|
+
if (z(Z) != "object" || !Z) return Z;
|
|
17213
|
+
var O = Z[Symbol.toPrimitive];
|
|
16824
17214
|
if (O !== void 0) {
|
|
16825
|
-
var
|
|
16826
|
-
if (
|
|
17215
|
+
var N = O.call(Z, "string");
|
|
17216
|
+
if (z(N) != "object") return N;
|
|
16827
17217
|
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
16828
17218
|
}
|
|
16829
|
-
return String(
|
|
17219
|
+
return String(Z);
|
|
16830
17220
|
}($);
|
|
16831
|
-
return
|
|
17221
|
+
return z(D) == "symbol" ? D : D + "";
|
|
16832
17222
|
}
|
|
16833
|
-
function _($, D,
|
|
16834
|
-
return D = A(D), R($, P() ? Reflect.construct(D,
|
|
17223
|
+
function _($, D, Z) {
|
|
17224
|
+
return D = A(D), R($, P() ? Reflect.construct(D, Z || [], A($).constructor) : D.apply($, Z));
|
|
16835
17225
|
}
|
|
16836
17226
|
function R($, D) {
|
|
16837
|
-
if (D && (
|
|
17227
|
+
if (D && (z(D) == "object" || typeof D == "function")) return D;
|
|
16838
17228
|
if (D !== void 0) throw new TypeError("Derived constructors may only return object or undefined");
|
|
16839
|
-
return function(
|
|
16840
|
-
if (
|
|
16841
|
-
return
|
|
17229
|
+
return function(Z) {
|
|
17230
|
+
if (Z === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17231
|
+
return Z;
|
|
16842
17232
|
}($);
|
|
16843
17233
|
}
|
|
16844
17234
|
function P() {
|
|
@@ -16857,8 +17247,8 @@ var build = { exports: {} };
|
|
|
16857
17247
|
}, A($);
|
|
16858
17248
|
}
|
|
16859
17249
|
function F($, D) {
|
|
16860
|
-
return F = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(
|
|
16861
|
-
return
|
|
17250
|
+
return F = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(Z, j) {
|
|
17251
|
+
return Z.__proto__ = j, Z;
|
|
16862
17252
|
}, F($, D);
|
|
16863
17253
|
}
|
|
16864
17254
|
var I = function() {
|
|
@@ -16867,7 +17257,7 @@ var build = { exports: {} };
|
|
|
16867
17257
|
return typeof window > "u" ? 0 : window.scrollY || window.pageYOffset;
|
|
16868
17258
|
};
|
|
16869
17259
|
const K = function($) {
|
|
16870
|
-
var D = function(
|
|
17260
|
+
var D = function(Z) {
|
|
16871
17261
|
function j(J) {
|
|
16872
17262
|
var Q;
|
|
16873
17263
|
if (function(ne, le) {
|
|
@@ -16879,7 +17269,7 @@ var build = { exports: {} };
|
|
|
16879
17269
|
return function(J, Q) {
|
|
16880
17270
|
if (typeof Q != "function" && Q !== null) throw new TypeError("Super expression must either be null or a function");
|
|
16881
17271
|
J.prototype = Object.create(Q && Q.prototype, { constructor: { value: J, writable: !0, configurable: !0 } }), Object.defineProperty(J, "prototype", { writable: !1 }), Q && F(J, Q);
|
|
16882
|
-
}(j,
|
|
17272
|
+
}(j, Z), O = j, N = [{ key: "componentDidMount", value: function() {
|
|
16883
17273
|
this.addListeners();
|
|
16884
17274
|
} }, { key: "componentWillUnmount", value: function() {
|
|
16885
17275
|
this.removeListeners();
|
|
@@ -16896,12 +17286,12 @@ var build = { exports: {} };
|
|
|
16896
17286
|
if (ne == null) return {};
|
|
16897
17287
|
var ae, oe, pe = function(ge, Fe) {
|
|
16898
17288
|
if (ge == null) return {};
|
|
16899
|
-
var
|
|
17289
|
+
var He = {};
|
|
16900
17290
|
for (var Be in ge) if ({}.hasOwnProperty.call(ge, Be)) {
|
|
16901
17291
|
if (Fe.indexOf(Be) >= 0) continue;
|
|
16902
|
-
|
|
17292
|
+
He[Be] = ge[Be];
|
|
16903
17293
|
}
|
|
16904
|
-
return
|
|
17294
|
+
return He;
|
|
16905
17295
|
}(ne, le);
|
|
16906
17296
|
if (Object.getOwnPropertySymbols) {
|
|
16907
17297
|
var he = Object.getOwnPropertySymbols(ne);
|
|
@@ -16909,9 +17299,9 @@ var build = { exports: {} };
|
|
|
16909
17299
|
}
|
|
16910
17300
|
return pe;
|
|
16911
17301
|
}(J, B)), te = this.useIntersectionObserver ? null : this.state.scrollPosition;
|
|
16912
|
-
return a().createElement($,
|
|
16913
|
-
} }],
|
|
16914
|
-
var O,
|
|
17302
|
+
return a().createElement($, G({ forwardRef: this.baseComponentRef, scrollPosition: te }, Q));
|
|
17303
|
+
} }], N && q(O.prototype, N), Object.defineProperty(O, "prototype", { writable: !1 }), O;
|
|
17304
|
+
var O, N;
|
|
16915
17305
|
}(a().Component);
|
|
16916
17306
|
return D.propTypes = { delayMethod: o.PropTypes.oneOf(["debounce", "throttle"]), delayTime: o.PropTypes.number, useIntersectionObserver: o.PropTypes.bool }, D.defaultProps = { delayMethod: "throttle", delayTime: 300, useIntersectionObserver: !0 }, D;
|
|
16917
17307
|
};
|
|
@@ -16923,33 +17313,33 @@ var build = { exports: {} };
|
|
|
16923
17313
|
}, X($);
|
|
16924
17314
|
}
|
|
16925
17315
|
function ee($, D) {
|
|
16926
|
-
for (var
|
|
16927
|
-
var j = D[
|
|
17316
|
+
for (var Z = 0; Z < D.length; Z++) {
|
|
17317
|
+
var j = D[Z];
|
|
16928
17318
|
j.enumerable = j.enumerable || !1, j.configurable = !0, "value" in j && (j.writable = !0), Object.defineProperty($, re(j.key), j);
|
|
16929
17319
|
}
|
|
16930
17320
|
}
|
|
16931
17321
|
function re($) {
|
|
16932
|
-
var D = function(
|
|
16933
|
-
if (X(
|
|
16934
|
-
var O =
|
|
17322
|
+
var D = function(Z, j) {
|
|
17323
|
+
if (X(Z) != "object" || !Z) return Z;
|
|
17324
|
+
var O = Z[Symbol.toPrimitive];
|
|
16935
17325
|
if (O !== void 0) {
|
|
16936
|
-
var
|
|
16937
|
-
if (X(
|
|
17326
|
+
var N = O.call(Z, "string");
|
|
17327
|
+
if (X(N) != "object") return N;
|
|
16938
17328
|
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
16939
17329
|
}
|
|
16940
|
-
return String(
|
|
17330
|
+
return String(Z);
|
|
16941
17331
|
}($);
|
|
16942
17332
|
return X(D) == "symbol" ? D : D + "";
|
|
16943
17333
|
}
|
|
16944
|
-
function ce($, D,
|
|
17334
|
+
function ce($, D, Z) {
|
|
16945
17335
|
return D = me(D), function(j, O) {
|
|
16946
17336
|
if (O && (X(O) == "object" || typeof O == "function")) return O;
|
|
16947
17337
|
if (O !== void 0) throw new TypeError("Derived constructors may only return object or undefined");
|
|
16948
|
-
return function(
|
|
16949
|
-
if (
|
|
16950
|
-
return
|
|
17338
|
+
return function(N) {
|
|
17339
|
+
if (N === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17340
|
+
return N;
|
|
16951
17341
|
}(j);
|
|
16952
|
-
}($, fe() ? Reflect.construct(D,
|
|
17342
|
+
}($, fe() ? Reflect.construct(D, Z || [], me($).constructor) : D.apply($, Z));
|
|
16953
17343
|
}
|
|
16954
17344
|
function fe() {
|
|
16955
17345
|
try {
|
|
@@ -16967,23 +17357,23 @@ var build = { exports: {} };
|
|
|
16967
17357
|
}, me($);
|
|
16968
17358
|
}
|
|
16969
17359
|
function de($, D) {
|
|
16970
|
-
return de = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(
|
|
16971
|
-
return
|
|
17360
|
+
return de = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(Z, j) {
|
|
17361
|
+
return Z.__proto__ = j, Z;
|
|
16972
17362
|
}, de($, D);
|
|
16973
17363
|
}
|
|
16974
17364
|
var se = function($) {
|
|
16975
17365
|
function D(O) {
|
|
16976
|
-
return function(
|
|
16977
|
-
if (!(
|
|
17366
|
+
return function(N, J) {
|
|
17367
|
+
if (!(N instanceof J)) throw new TypeError("Cannot call a class as a function");
|
|
16978
17368
|
}(this, D), ce(this, D, [O]);
|
|
16979
17369
|
}
|
|
16980
|
-
return function(O,
|
|
16981
|
-
if (typeof
|
|
16982
|
-
O.prototype = Object.create(
|
|
16983
|
-
}(D, $),
|
|
17370
|
+
return function(O, N) {
|
|
17371
|
+
if (typeof N != "function" && N !== null) throw new TypeError("Super expression must either be null or a function");
|
|
17372
|
+
O.prototype = Object.create(N && N.prototype, { constructor: { value: O, writable: !0, configurable: !0 } }), Object.defineProperty(O, "prototype", { writable: !1 }), N && de(O, N);
|
|
17373
|
+
}(D, $), Z = D, (j = [{ key: "render", value: function() {
|
|
16984
17374
|
return a().createElement(S, this.props);
|
|
16985
|
-
} }]) && ee(
|
|
16986
|
-
var
|
|
17375
|
+
} }]) && ee(Z.prototype, j), Object.defineProperty(Z, "prototype", { writable: !1 }), Z;
|
|
17376
|
+
var Z, j;
|
|
16987
17377
|
}(a().Component);
|
|
16988
17378
|
const ue = K(se);
|
|
16989
17379
|
function ie($) {
|
|
@@ -16994,33 +17384,33 @@ var build = { exports: {} };
|
|
|
16994
17384
|
}, ie($);
|
|
16995
17385
|
}
|
|
16996
17386
|
function Y($, D) {
|
|
16997
|
-
for (var
|
|
16998
|
-
var j = D[
|
|
17387
|
+
for (var Z = 0; Z < D.length; Z++) {
|
|
17388
|
+
var j = D[Z];
|
|
16999
17389
|
j.enumerable = j.enumerable || !1, j.configurable = !0, "value" in j && (j.writable = !0), Object.defineProperty($, Te(j.key), j);
|
|
17000
17390
|
}
|
|
17001
17391
|
}
|
|
17002
17392
|
function Te($) {
|
|
17003
|
-
var D = function(
|
|
17004
|
-
if (ie(
|
|
17005
|
-
var O =
|
|
17393
|
+
var D = function(Z, j) {
|
|
17394
|
+
if (ie(Z) != "object" || !Z) return Z;
|
|
17395
|
+
var O = Z[Symbol.toPrimitive];
|
|
17006
17396
|
if (O !== void 0) {
|
|
17007
|
-
var
|
|
17008
|
-
if (ie(
|
|
17397
|
+
var N = O.call(Z, "string");
|
|
17398
|
+
if (ie(N) != "object") return N;
|
|
17009
17399
|
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
17010
17400
|
}
|
|
17011
|
-
return String(
|
|
17401
|
+
return String(Z);
|
|
17012
17402
|
}($);
|
|
17013
17403
|
return ie(D) == "symbol" ? D : D + "";
|
|
17014
17404
|
}
|
|
17015
|
-
function Le($, D,
|
|
17405
|
+
function Le($, D, Z) {
|
|
17016
17406
|
return D = Ce(D), function(j, O) {
|
|
17017
17407
|
if (O && (ie(O) == "object" || typeof O == "function")) return O;
|
|
17018
17408
|
if (O !== void 0) throw new TypeError("Derived constructors may only return object or undefined");
|
|
17019
|
-
return function(
|
|
17020
|
-
if (
|
|
17021
|
-
return
|
|
17409
|
+
return function(N) {
|
|
17410
|
+
if (N === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17411
|
+
return N;
|
|
17022
17412
|
}(j);
|
|
17023
|
-
}($, be() ? Reflect.construct(D,
|
|
17413
|
+
}($, be() ? Reflect.construct(D, Z || [], Ce($).constructor) : D.apply($, Z));
|
|
17024
17414
|
}
|
|
17025
17415
|
function be() {
|
|
17026
17416
|
try {
|
|
@@ -17038,32 +17428,32 @@ var build = { exports: {} };
|
|
|
17038
17428
|
}, Ce($);
|
|
17039
17429
|
}
|
|
17040
17430
|
function Pe($, D) {
|
|
17041
|
-
return Pe = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(
|
|
17042
|
-
return
|
|
17431
|
+
return Pe = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(Z, j) {
|
|
17432
|
+
return Z.__proto__ = j, Z;
|
|
17043
17433
|
}, Pe($, D);
|
|
17044
17434
|
}
|
|
17045
17435
|
var ve = function($) {
|
|
17046
17436
|
function D(O) {
|
|
17047
|
-
var
|
|
17437
|
+
var N;
|
|
17048
17438
|
(function(le, ae) {
|
|
17049
17439
|
if (!(le instanceof ae)) throw new TypeError("Cannot call a class as a function");
|
|
17050
|
-
})(this, D),
|
|
17440
|
+
})(this, D), N = Le(this, D, [O]);
|
|
17051
17441
|
var J = O.afterLoad, Q = O.beforeLoad, te = O.scrollPosition, ne = O.visibleByDefault;
|
|
17052
|
-
return
|
|
17442
|
+
return N.state = { visible: ne }, ne && (Q(), J()), N.onVisible = N.onVisible.bind(N), N.isScrollTracked = !!(te && Number.isFinite(te.x) && te.x >= 0 && Number.isFinite(te.y) && te.y >= 0), N;
|
|
17053
17443
|
}
|
|
17054
|
-
return function(O,
|
|
17055
|
-
if (typeof
|
|
17056
|
-
O.prototype = Object.create(
|
|
17057
|
-
}(D, $),
|
|
17058
|
-
|
|
17444
|
+
return function(O, N) {
|
|
17445
|
+
if (typeof N != "function" && N !== null) throw new TypeError("Super expression must either be null or a function");
|
|
17446
|
+
O.prototype = Object.create(N && N.prototype, { constructor: { value: O, writable: !0, configurable: !0 } }), Object.defineProperty(O, "prototype", { writable: !1 }), N && Pe(O, N);
|
|
17447
|
+
}(D, $), Z = D, (j = [{ key: "componentDidUpdate", value: function(O, N) {
|
|
17448
|
+
N.visible !== this.state.visible && this.props.afterLoad();
|
|
17059
17449
|
} }, { key: "onVisible", value: function() {
|
|
17060
17450
|
this.props.beforeLoad(), this.setState({ visible: !0 });
|
|
17061
17451
|
} }, { key: "render", value: function() {
|
|
17062
17452
|
if (this.state.visible) return this.props.children;
|
|
17063
|
-
var O = this.props,
|
|
17064
|
-
return this.isScrollTracked || pe && l() ? a().createElement(S, { className:
|
|
17065
|
-
} }]) && Y(
|
|
17066
|
-
var
|
|
17453
|
+
var O = this.props, N = O.className, J = O.delayMethod, Q = O.delayTime, te = O.height, ne = O.placeholder, le = O.scrollPosition, ae = O.style, oe = O.threshold, pe = O.useIntersectionObserver, he = O.width;
|
|
17454
|
+
return this.isScrollTracked || pe && l() ? a().createElement(S, { className: N, height: te, onVisible: this.onVisible, placeholder: ne, scrollPosition: le, style: ae, threshold: oe, useIntersectionObserver: pe, width: he }) : a().createElement(ue, { className: N, delayMethod: J, delayTime: Q, height: te, onVisible: this.onVisible, placeholder: ne, style: ae, threshold: oe, width: he });
|
|
17455
|
+
} }]) && Y(Z.prototype, j), Object.defineProperty(Z, "prototype", { writable: !1 }), Z;
|
|
17456
|
+
var Z, j;
|
|
17067
17457
|
}(a().Component);
|
|
17068
17458
|
ve.propTypes = { afterLoad: o.PropTypes.func, beforeLoad: o.PropTypes.func, useIntersectionObserver: o.PropTypes.bool, visibleByDefault: o.PropTypes.bool }, ve.defaultProps = { afterLoad: function() {
|
|
17069
17459
|
return {};
|
|
@@ -17080,66 +17470,66 @@ var build = { exports: {} };
|
|
|
17080
17470
|
}
|
|
17081
17471
|
var we = ["afterLoad", "beforeLoad", "delayMethod", "delayTime", "effect", "placeholder", "placeholderSrc", "scrollPosition", "threshold", "useIntersectionObserver", "visibleByDefault", "wrapperClassName", "wrapperProps"];
|
|
17082
17472
|
function Se($, D) {
|
|
17083
|
-
var
|
|
17473
|
+
var Z = Object.keys($);
|
|
17084
17474
|
if (Object.getOwnPropertySymbols) {
|
|
17085
17475
|
var j = Object.getOwnPropertySymbols($);
|
|
17086
17476
|
D && (j = j.filter(function(O) {
|
|
17087
17477
|
return Object.getOwnPropertyDescriptor($, O).enumerable;
|
|
17088
|
-
})),
|
|
17478
|
+
})), Z.push.apply(Z, j);
|
|
17089
17479
|
}
|
|
17090
|
-
return
|
|
17480
|
+
return Z;
|
|
17091
17481
|
}
|
|
17092
17482
|
function Ae($) {
|
|
17093
17483
|
for (var D = 1; D < arguments.length; D++) {
|
|
17094
|
-
var
|
|
17095
|
-
D % 2 ? Se(Object(
|
|
17096
|
-
Ee($, j,
|
|
17097
|
-
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties($, Object.getOwnPropertyDescriptors(
|
|
17098
|
-
Object.defineProperty($, j, Object.getOwnPropertyDescriptor(
|
|
17484
|
+
var Z = arguments[D] != null ? arguments[D] : {};
|
|
17485
|
+
D % 2 ? Se(Object(Z), !0).forEach(function(j) {
|
|
17486
|
+
Ee($, j, Z[j]);
|
|
17487
|
+
}) : Object.getOwnPropertyDescriptors ? Object.defineProperties($, Object.getOwnPropertyDescriptors(Z)) : Se(Object(Z)).forEach(function(j) {
|
|
17488
|
+
Object.defineProperty($, j, Object.getOwnPropertyDescriptor(Z, j));
|
|
17099
17489
|
});
|
|
17100
17490
|
}
|
|
17101
17491
|
return $;
|
|
17102
17492
|
}
|
|
17103
|
-
function Ee($, D,
|
|
17104
|
-
return (D = Re(D)) in $ ? Object.defineProperty($, D, { value:
|
|
17493
|
+
function Ee($, D, Z) {
|
|
17494
|
+
return (D = Re(D)) in $ ? Object.defineProperty($, D, { value: Z, enumerable: !0, configurable: !0, writable: !0 }) : $[D] = Z, $;
|
|
17105
17495
|
}
|
|
17106
17496
|
function Me() {
|
|
17107
17497
|
return Me = Object.assign ? Object.assign.bind() : function($) {
|
|
17108
17498
|
for (var D = 1; D < arguments.length; D++) {
|
|
17109
|
-
var
|
|
17110
|
-
for (var j in
|
|
17499
|
+
var Z = arguments[D];
|
|
17500
|
+
for (var j in Z) ({}).hasOwnProperty.call(Z, j) && ($[j] = Z[j]);
|
|
17111
17501
|
}
|
|
17112
17502
|
return $;
|
|
17113
17503
|
}, Me.apply(null, arguments);
|
|
17114
17504
|
}
|
|
17115
17505
|
function _e($, D) {
|
|
17116
|
-
for (var
|
|
17117
|
-
var j = D[
|
|
17506
|
+
for (var Z = 0; Z < D.length; Z++) {
|
|
17507
|
+
var j = D[Z];
|
|
17118
17508
|
j.enumerable = j.enumerable || !1, j.configurable = !0, "value" in j && (j.writable = !0), Object.defineProperty($, Re(j.key), j);
|
|
17119
17509
|
}
|
|
17120
17510
|
}
|
|
17121
17511
|
function Re($) {
|
|
17122
|
-
var D = function(
|
|
17123
|
-
if (xe(
|
|
17124
|
-
var O =
|
|
17512
|
+
var D = function(Z, j) {
|
|
17513
|
+
if (xe(Z) != "object" || !Z) return Z;
|
|
17514
|
+
var O = Z[Symbol.toPrimitive];
|
|
17125
17515
|
if (O !== void 0) {
|
|
17126
|
-
var
|
|
17127
|
-
if (xe(
|
|
17516
|
+
var N = O.call(Z, "string");
|
|
17517
|
+
if (xe(N) != "object") return N;
|
|
17128
17518
|
throw new TypeError("@@toPrimitive must return a primitive value.");
|
|
17129
17519
|
}
|
|
17130
|
-
return String(
|
|
17520
|
+
return String(Z);
|
|
17131
17521
|
}($);
|
|
17132
17522
|
return xe(D) == "symbol" ? D : D + "";
|
|
17133
17523
|
}
|
|
17134
|
-
function Ie($, D,
|
|
17524
|
+
function Ie($, D, Z) {
|
|
17135
17525
|
return D = Ve(D), function(j, O) {
|
|
17136
17526
|
if (O && (xe(O) == "object" || typeof O == "function")) return O;
|
|
17137
17527
|
if (O !== void 0) throw new TypeError("Derived constructors may only return object or undefined");
|
|
17138
|
-
return function(
|
|
17139
|
-
if (
|
|
17140
|
-
return
|
|
17528
|
+
return function(N) {
|
|
17529
|
+
if (N === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
17530
|
+
return N;
|
|
17141
17531
|
}(j);
|
|
17142
|
-
}($, Oe() ? Reflect.construct(D,
|
|
17532
|
+
}($, Oe() ? Reflect.construct(D, Z || [], Ve($).constructor) : D.apply($, Z));
|
|
17143
17533
|
}
|
|
17144
17534
|
function Oe() {
|
|
17145
17535
|
try {
|
|
@@ -17157,27 +17547,27 @@ var build = { exports: {} };
|
|
|
17157
17547
|
}, Ve($);
|
|
17158
17548
|
}
|
|
17159
17549
|
function ke($, D) {
|
|
17160
|
-
return ke = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(
|
|
17161
|
-
return
|
|
17550
|
+
return ke = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function(Z, j) {
|
|
17551
|
+
return Z.__proto__ = j, Z;
|
|
17162
17552
|
}, ke($, D);
|
|
17163
17553
|
}
|
|
17164
17554
|
var De = function($) {
|
|
17165
17555
|
function D(O) {
|
|
17166
|
-
var
|
|
17556
|
+
var N;
|
|
17167
17557
|
return function(J, Q) {
|
|
17168
17558
|
if (!(J instanceof Q)) throw new TypeError("Cannot call a class as a function");
|
|
17169
|
-
}(this, D), (
|
|
17559
|
+
}(this, D), (N = Ie(this, D, [O])).state = { loaded: !1 }, N;
|
|
17170
17560
|
}
|
|
17171
|
-
return function(O,
|
|
17172
|
-
if (typeof
|
|
17173
|
-
O.prototype = Object.create(
|
|
17174
|
-
}(D, $),
|
|
17561
|
+
return function(O, N) {
|
|
17562
|
+
if (typeof N != "function" && N !== null) throw new TypeError("Super expression must either be null or a function");
|
|
17563
|
+
O.prototype = Object.create(N && N.prototype, { constructor: { value: O, writable: !0, configurable: !0 } }), Object.defineProperty(O, "prototype", { writable: !1 }), N && ke(O, N);
|
|
17564
|
+
}(D, $), Z = D, j = [{ key: "onImageLoad", value: function() {
|
|
17175
17565
|
var O = this;
|
|
17176
|
-
return this.state.loaded ? null : function(
|
|
17177
|
-
O.props.onLoad(
|
|
17566
|
+
return this.state.loaded ? null : function(N) {
|
|
17567
|
+
O.props.onLoad(N), O.props.afterLoad(), O.setState({ loaded: !0 });
|
|
17178
17568
|
};
|
|
17179
17569
|
} }, { key: "getImg", value: function() {
|
|
17180
|
-
var O = this.props,
|
|
17570
|
+
var O = this.props, N = (O.afterLoad, O.beforeLoad, O.delayMethod, O.delayTime, O.effect, O.placeholder, O.placeholderSrc, O.scrollPosition, O.threshold, O.useIntersectionObserver, O.visibleByDefault, O.wrapperClassName, O.wrapperProps, function(J, Q) {
|
|
17181
17571
|
if (J == null) return {};
|
|
17182
17572
|
var te, ne, le = function(oe, pe) {
|
|
17183
17573
|
if (oe == null) return {};
|
|
@@ -17194,18 +17584,18 @@ var build = { exports: {} };
|
|
|
17194
17584
|
}
|
|
17195
17585
|
return le;
|
|
17196
17586
|
}(O, we));
|
|
17197
|
-
return a().createElement("img", Me({},
|
|
17587
|
+
return a().createElement("img", Me({}, N, { onLoad: this.onImageLoad() }));
|
|
17198
17588
|
} }, { key: "getLazyLoadImage", value: function() {
|
|
17199
|
-
var O = this.props,
|
|
17200
|
-
return a().createElement(ye, { beforeLoad:
|
|
17589
|
+
var O = this.props, N = O.beforeLoad, J = O.className, Q = O.delayMethod, te = O.delayTime, ne = O.height, le = O.placeholder, ae = O.scrollPosition, oe = O.style, pe = O.threshold, he = O.useIntersectionObserver, ge = O.visibleByDefault, Fe = O.width;
|
|
17590
|
+
return a().createElement(ye, { beforeLoad: N, className: J, delayMethod: Q, delayTime: te, height: ne, placeholder: le, scrollPosition: ae, style: oe, threshold: pe, useIntersectionObserver: he, visibleByDefault: ge, width: Fe }, this.getImg());
|
|
17201
17591
|
} }, { key: "getWrappedLazyLoadImage", value: function(O) {
|
|
17202
|
-
var
|
|
17592
|
+
var N = this.props, J = N.effect, Q = N.height, te = N.placeholderSrc, ne = N.width, le = N.wrapperClassName, ae = N.wrapperProps, oe = this.state.loaded, pe = oe ? " lazy-load-image-loaded" : "", he = oe || !te ? {} : { backgroundImage: "url(".concat(te, ")"), backgroundSize: "100% 100%" };
|
|
17203
17593
|
return a().createElement("span", Me({ className: le + " lazy-load-image-background " + J + pe, style: Ae(Ae({}, he), {}, { color: "transparent", display: "inline-block", height: Q, width: ne }) }, ae), O);
|
|
17204
17594
|
} }, { key: "render", value: function() {
|
|
17205
|
-
var O = this.props,
|
|
17206
|
-
return (
|
|
17207
|
-
} }], j && _e(
|
|
17208
|
-
var
|
|
17595
|
+
var O = this.props, N = O.effect, J = O.placeholderSrc, Q = O.visibleByDefault, te = O.wrapperClassName, ne = O.wrapperProps, le = this.getLazyLoadImage();
|
|
17596
|
+
return (N || J) && !Q || te || ne ? this.getWrappedLazyLoadImage(le) : le;
|
|
17597
|
+
} }], j && _e(Z.prototype, j), Object.defineProperty(Z, "prototype", { writable: !1 }), Z;
|
|
17598
|
+
var Z, j;
|
|
17209
17599
|
}(a().Component);
|
|
17210
17600
|
De.propTypes = { onLoad: o.PropTypes.func, afterLoad: o.PropTypes.func, beforeLoad: o.PropTypes.func, delayMethod: o.PropTypes.string, delayTime: o.PropTypes.number, effect: o.PropTypes.string, placeholderSrc: o.PropTypes.string, threshold: o.PropTypes.number, useIntersectionObserver: o.PropTypes.bool, visibleByDefault: o.PropTypes.bool, wrapperClassName: o.PropTypes.string, wrapperProps: o.PropTypes.object }, De.defaultProps = { onLoad: function() {
|
|
17211
17601
|
}, afterLoad: function() {
|
|
@@ -19256,24 +19646,24 @@ function createAnimationState(e) {
|
|
|
19256
19646
|
m === c && x.isActive && !M && S || // If we removed a higher-priority variant (i is in reverse order)
|
|
19257
19647
|
E > C && S, k = !1;
|
|
19258
19648
|
const U = Array.isArray(y) ? y : [y];
|
|
19259
|
-
let
|
|
19260
|
-
T === !1 && (
|
|
19261
|
-
const { prevResolvedValues: B = {} } = x,
|
|
19649
|
+
let z = U.reduce(s(m), {});
|
|
19650
|
+
T === !1 && (z = {});
|
|
19651
|
+
const { prevResolvedValues: B = {} } = x, G = {
|
|
19262
19652
|
...B,
|
|
19263
|
-
...
|
|
19653
|
+
...z
|
|
19264
19654
|
}, q = (R) => {
|
|
19265
19655
|
V = !0, d.has(R) && (k = !0, d.delete(R)), x.needsAnimating[R] = !0;
|
|
19266
19656
|
const P = e.getValue(R);
|
|
19267
19657
|
P && (P.liveStyle = !1);
|
|
19268
19658
|
};
|
|
19269
|
-
for (const R in
|
|
19270
|
-
const P =
|
|
19659
|
+
for (const R in G) {
|
|
19660
|
+
const P = z[R], A = B[R];
|
|
19271
19661
|
if (b.hasOwnProperty(R))
|
|
19272
19662
|
continue;
|
|
19273
19663
|
let F = !1;
|
|
19274
19664
|
isKeyframesTarget(P) && isKeyframesTarget(A) ? F = !shallowCompare(P, A) : F = P !== A, F ? P != null ? q(R) : d.add(R) : P !== void 0 && d.has(R) ? q(R) : x.protectedKeys[R] = !0;
|
|
19275
19665
|
}
|
|
19276
|
-
x.prevProp = y, x.prevResolvedValues =
|
|
19666
|
+
x.prevProp = y, x.prevResolvedValues = z, x.isActive && (b = { ...b, ...z }), n && e.blockInitialAnimation && (V = !1), V && (!(M && L) || k) && p.push(...U.map((R) => ({
|
|
19277
19667
|
animation: R,
|
|
19278
19668
|
options: { type: m }
|
|
19279
19669
|
})));
|
|
@@ -21946,6 +22336,7 @@ const createDomVisualElement = (e, t) => isSVGComponent(e) ? new SVGVisualElemen
|
|
|
21946
22336
|
}
|
|
21947
22337
|
);
|
|
21948
22338
|
export {
|
|
22339
|
+
APIIcon,
|
|
21949
22340
|
AddIcon,
|
|
21950
22341
|
ArbitrumLogo,
|
|
21951
22342
|
ArrowDownwardIcon,
|
|
@@ -21961,7 +22352,9 @@ export {
|
|
|
21961
22352
|
AssetChainLogos,
|
|
21962
22353
|
BTCLogo,
|
|
21963
22354
|
BlogCard,
|
|
22355
|
+
BlogIcon,
|
|
21964
22356
|
BottomSheet,
|
|
22357
|
+
BrandKitIcon,
|
|
21965
22358
|
Button,
|
|
21966
22359
|
Camelot,
|
|
21967
22360
|
CancelIcon,
|
|
@@ -21977,11 +22370,16 @@ export {
|
|
|
21977
22370
|
CodeBlockIcon,
|
|
21978
22371
|
Coinbase,
|
|
21979
22372
|
CompareArrowsIcon,
|
|
22373
|
+
ConsoleIcon,
|
|
22374
|
+
Container,
|
|
21980
22375
|
CopyIcon,
|
|
22376
|
+
CopyrightsIcon,
|
|
21981
22377
|
DLCBTC,
|
|
21982
22378
|
Debridge,
|
|
21983
22379
|
DeleteIcon,
|
|
22380
|
+
DiscordIcon,
|
|
21984
22381
|
Dodo,
|
|
22382
|
+
DraftIcon,
|
|
21985
22383
|
EditIcon,
|
|
21986
22384
|
EthereumLogo,
|
|
21987
22385
|
ExchangeIcon,
|
|
@@ -22015,6 +22413,7 @@ export {
|
|
|
22015
22413
|
Opacity,
|
|
22016
22414
|
OpenInFullIcon,
|
|
22017
22415
|
OpenInNewIcon,
|
|
22416
|
+
OtterSecIcon,
|
|
22018
22417
|
PageInfoIcon,
|
|
22019
22418
|
PancakeSwap,
|
|
22020
22419
|
PasskeyIcon,
|
|
@@ -22029,12 +22428,14 @@ export {
|
|
|
22029
22428
|
ReferralIcon,
|
|
22030
22429
|
RelayLinkIcon,
|
|
22031
22430
|
RemoveIcon,
|
|
22431
|
+
SDKIcon,
|
|
22032
22432
|
ScaleY,
|
|
22033
22433
|
SearchIcon,
|
|
22034
22434
|
Share,
|
|
22035
22435
|
Shine,
|
|
22036
22436
|
Sidebar,
|
|
22037
22437
|
Solv,
|
|
22438
|
+
StakeIcon,
|
|
22038
22439
|
StarIcon,
|
|
22039
22440
|
SwapHorizontalIcon,
|
|
22040
22441
|
SwellBTC,
|
|
@@ -22050,5 +22451,8 @@ export {
|
|
|
22050
22451
|
WalletConnect,
|
|
22051
22452
|
WalletIcon,
|
|
22052
22453
|
WalletIconRose,
|
|
22053
|
-
WarningIcon
|
|
22454
|
+
WarningIcon,
|
|
22455
|
+
XIcon,
|
|
22456
|
+
XSolidIcon,
|
|
22457
|
+
ZellicIcon
|
|
22054
22458
|
};
|