@latte-macchiat-io/latte-vanilla-components 0.0.172 → 0.0.173
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/Actions/Actions.css.ts +1 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.es.js +738 -737
- package/dist/types/components/ToRemove/ToRemove.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/utils/theme.css.d.ts +165 -9
- package/dist/utils/theme.css.ts +28 -30
- package/package.json +1 -1
- package/src/components/Actions/Actions.css.ts +1 -1
- package/src/utils/theme.css.ts +28 -30
- package/dist/theme/default.css.ts +0 -9
- package/src/theme/default.css.ts +0 -9
package/dist/index.es.js
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
import { createSprinkles as
|
2
|
-
import { createThemeContract as
|
3
|
-
import { jsx as
|
4
|
-
import * as
|
5
|
-
import
|
6
|
-
import { recipe as
|
7
|
-
const e =
|
1
|
+
import { createSprinkles as at, defineProperties as it } from "@vanilla-extract/sprinkles";
|
2
|
+
import { createThemeContract as ot, style as k, keyframes as We } from "@vanilla-extract/css";
|
3
|
+
import { jsx as g, jsxs as be, Fragment as rt } from "react/jsx-runtime";
|
4
|
+
import * as Te from "react";
|
5
|
+
import st, { forwardRef as ce, useState as Ce, useEffect as we, useRef as Le, useMemo as lt } from "react";
|
6
|
+
import { recipe as se } from "@vanilla-extract/recipes";
|
7
|
+
const e = ot({
|
8
8
|
colors: {
|
9
9
|
primary: null,
|
10
10
|
secondary: null,
|
@@ -82,7 +82,7 @@ const e = rt({
|
|
82
82
|
footer: {
|
83
83
|
height: null
|
84
84
|
}
|
85
|
-
}),
|
85
|
+
}), pe = {
|
86
86
|
colors: {
|
87
87
|
primary: "#FF7377",
|
88
88
|
secondary: "#FCEFE6",
|
@@ -160,7 +160,7 @@ const e = rt({
|
|
160
160
|
footer: {
|
161
161
|
height: "80px"
|
162
162
|
}
|
163
|
-
},
|
163
|
+
}, ye = {
|
164
164
|
colors: {
|
165
165
|
primary: "#1a73e8",
|
166
166
|
secondary: "#374151",
|
@@ -238,44 +238,44 @@ const e = rt({
|
|
238
238
|
footer: {
|
239
239
|
height: "80px"
|
240
240
|
}
|
241
|
-
},
|
242
|
-
...
|
241
|
+
}, Ta = (t) => ({
|
242
|
+
...pe,
|
243
243
|
...t,
|
244
244
|
colors: {
|
245
|
-
...
|
245
|
+
...pe.colors,
|
246
246
|
...t.colors
|
247
247
|
},
|
248
248
|
space: {
|
249
|
-
...
|
249
|
+
...pe.space,
|
250
250
|
...t.space
|
251
251
|
},
|
252
252
|
radii: {
|
253
|
-
...
|
253
|
+
...pe.radii,
|
254
254
|
...t.radii
|
255
255
|
},
|
256
256
|
fonts: {
|
257
|
-
...
|
257
|
+
...pe.fonts,
|
258
258
|
...t.fonts
|
259
259
|
},
|
260
260
|
fontSizes: {
|
261
|
-
...
|
261
|
+
...pe.fontSizes,
|
262
262
|
...t.fontSizes
|
263
263
|
},
|
264
264
|
lineHeights: {
|
265
|
-
...
|
265
|
+
...pe.lineHeights,
|
266
266
|
...t.lineHeights
|
267
267
|
},
|
268
268
|
shadows: {
|
269
|
-
...
|
269
|
+
...pe.shadows,
|
270
270
|
...t.shadows
|
271
271
|
}
|
272
|
-
}),
|
272
|
+
}), Ea = () => e, Wa = (t = !1) => t ? ye : pe, Ba = () => {
|
273
273
|
const t = document.documentElement, o = t.getAttribute("data-theme") === "dark" ? null : "dark";
|
274
274
|
return o ? t.setAttribute("data-theme", o) : t.removeAttribute("data-theme"), o === "dark";
|
275
|
-
},
|
275
|
+
}, ja = (t) => {
|
276
276
|
const a = document.documentElement;
|
277
277
|
t === "dark" ? a.setAttribute("data-theme", "dark") : a.removeAttribute("data-theme");
|
278
|
-
},
|
278
|
+
}, Aa = () => typeof window > "u" ? "light" : document.documentElement.getAttribute("data-theme") === "dark" ? "dark" : "light", Re = {
|
279
279
|
mobile: 0,
|
280
280
|
sm: 640,
|
281
281
|
md: 768,
|
@@ -283,13 +283,13 @@ const e = rt({
|
|
283
283
|
xl: 1280,
|
284
284
|
"2xl": 1536
|
285
285
|
}, te = {
|
286
|
-
mobile: `screen and (min-width: ${
|
287
|
-
sm: `screen and (min-width: ${
|
288
|
-
md: `screen and (min-width: ${
|
289
|
-
lg: `screen and (min-width: ${
|
290
|
-
xl: `screen and (min-width: ${
|
291
|
-
"2xl": `screen and (min-width: ${
|
292
|
-
},
|
286
|
+
mobile: `screen and (min-width: ${Re.mobile}px)`,
|
287
|
+
sm: `screen and (min-width: ${Re.sm}px)`,
|
288
|
+
md: `screen and (min-width: ${Re.md}px)`,
|
289
|
+
lg: `screen and (min-width: ${Re.lg}px)`,
|
290
|
+
xl: `screen and (min-width: ${Re.xl}px)`,
|
291
|
+
"2xl": `screen and (min-width: ${Re["2xl"]}px)`
|
292
|
+
}, ct = it({
|
293
293
|
conditions: {
|
294
294
|
mobile: {},
|
295
295
|
sm: { "@media": te.sm },
|
@@ -354,21 +354,21 @@ const e = rt({
|
|
354
354
|
overflowX: ["visible", "hidden", "scroll", "auto"],
|
355
355
|
overflowY: ["visible", "hidden", "scroll", "auto"]
|
356
356
|
}
|
357
|
-
}),
|
358
|
-
function
|
357
|
+
}), de = at(ct);
|
358
|
+
function Qe(t) {
|
359
359
|
var a, o, l = "";
|
360
360
|
if (typeof t == "string" || typeof t == "number") l += t;
|
361
361
|
else if (typeof t == "object") if (Array.isArray(t)) {
|
362
362
|
var n = t.length;
|
363
|
-
for (a = 0; a < n; a++) t[a] && (o =
|
363
|
+
for (a = 0; a < n; a++) t[a] && (o = Qe(t[a])) && (l && (l += " "), l += o);
|
364
364
|
} else for (o in t) t[o] && (l && (l += " "), l += o);
|
365
365
|
return l;
|
366
366
|
}
|
367
|
-
function
|
368
|
-
for (var t, a, o = 0, l = "", n = arguments.length; o < n; o++) (t = arguments[o]) && (a =
|
367
|
+
function re() {
|
368
|
+
for (var t, a, o = 0, l = "", n = arguments.length; o < n; o++) (t = arguments[o]) && (a = Qe(t)) && (l && (l += " "), l += a);
|
369
369
|
return l;
|
370
370
|
}
|
371
|
-
const
|
371
|
+
const dt = se({
|
372
372
|
base: {
|
373
373
|
display: "inline-flex",
|
374
374
|
alignItems: "center",
|
@@ -470,7 +470,7 @@ const ut = le({
|
|
470
470
|
variant: "primary",
|
471
471
|
size: "md"
|
472
472
|
}
|
473
|
-
}), He =
|
473
|
+
}), He = ce(
|
474
474
|
({
|
475
475
|
variant: t,
|
476
476
|
size: a,
|
@@ -502,11 +502,11 @@ const ut = le({
|
|
502
502
|
minWidth: r,
|
503
503
|
maxWidth: c,
|
504
504
|
minHeight: m,
|
505
|
-
position:
|
505
|
+
position: h,
|
506
506
|
top: V,
|
507
507
|
bottom: z,
|
508
|
-
left:
|
509
|
-
right:
|
508
|
+
left: v,
|
509
|
+
right: y,
|
510
510
|
zIndex: w,
|
511
511
|
fontSize: D,
|
512
512
|
fontFamily: O,
|
@@ -525,13 +525,13 @@ const ut = le({
|
|
525
525
|
overflowX: I,
|
526
526
|
overflowY: J,
|
527
527
|
...L
|
528
|
-
},
|
528
|
+
}, ne) => /* @__PURE__ */ g(
|
529
529
|
"button",
|
530
530
|
{
|
531
|
-
ref:
|
532
|
-
className:
|
533
|
-
|
534
|
-
|
531
|
+
ref: ne,
|
532
|
+
className: re(
|
533
|
+
dt({ variant: t, size: a, fullWidth: o }),
|
534
|
+
de({
|
535
535
|
margin: f,
|
536
536
|
marginTop: x,
|
537
537
|
marginBottom: S,
|
@@ -553,11 +553,11 @@ const ut = le({
|
|
553
553
|
minWidth: r,
|
554
554
|
maxWidth: c,
|
555
555
|
minHeight: m,
|
556
|
-
position:
|
556
|
+
position: h,
|
557
557
|
top: V,
|
558
558
|
bottom: z,
|
559
|
-
left:
|
560
|
-
right:
|
559
|
+
left: v,
|
560
|
+
right: y,
|
561
561
|
zIndex: w,
|
562
562
|
fontSize: D,
|
563
563
|
fontFamily: O,
|
@@ -586,7 +586,7 @@ const ut = le({
|
|
586
586
|
)
|
587
587
|
);
|
588
588
|
He.displayName = "Button";
|
589
|
-
const
|
589
|
+
const ut = k({
|
590
590
|
width: "100%",
|
591
591
|
display: "flex",
|
592
592
|
flexDirection: "column",
|
@@ -609,8 +609,8 @@ const pt = k({
|
|
609
609
|
paddingRight: e.space.xl
|
610
610
|
}
|
611
611
|
}
|
612
|
-
}),
|
613
|
-
base:
|
612
|
+
}), pt = se({
|
613
|
+
base: ut,
|
614
614
|
variants: {
|
615
615
|
align: {
|
616
616
|
left: {
|
@@ -675,7 +675,7 @@ const pt = k({
|
|
675
675
|
isFullHeight: !1,
|
676
676
|
spacing: "md"
|
677
677
|
}
|
678
|
-
}),
|
678
|
+
}), Fa = ce(
|
679
679
|
({
|
680
680
|
children: t,
|
681
681
|
align: a,
|
@@ -707,11 +707,11 @@ const pt = k({
|
|
707
707
|
minWidth: r,
|
708
708
|
maxWidth: c,
|
709
709
|
minHeight: m,
|
710
|
-
position:
|
710
|
+
position: h,
|
711
711
|
top: V,
|
712
712
|
bottom: z,
|
713
|
-
left:
|
714
|
-
right:
|
713
|
+
left: v,
|
714
|
+
right: y,
|
715
715
|
zIndex: w,
|
716
716
|
fontSize: D,
|
717
717
|
fontFamily: O,
|
@@ -730,13 +730,13 @@ const pt = k({
|
|
730
730
|
overflowX: I,
|
731
731
|
overflowY: J,
|
732
732
|
...L
|
733
|
-
},
|
733
|
+
}, ne) => /* @__PURE__ */ g(
|
734
734
|
u,
|
735
735
|
{
|
736
|
-
ref:
|
737
|
-
className:
|
738
|
-
|
739
|
-
|
736
|
+
ref: ne,
|
737
|
+
className: re(
|
738
|
+
pt({ align: a, isDark: o, isFullHeight: l, spacing: n }),
|
739
|
+
de({
|
740
740
|
margin: f,
|
741
741
|
marginTop: x,
|
742
742
|
marginBottom: S,
|
@@ -758,11 +758,11 @@ const pt = k({
|
|
758
758
|
minWidth: r,
|
759
759
|
maxWidth: c,
|
760
760
|
minHeight: m,
|
761
|
-
position:
|
761
|
+
position: h,
|
762
762
|
top: V,
|
763
763
|
bottom: z,
|
764
|
-
left:
|
765
|
-
right:
|
764
|
+
left: v,
|
765
|
+
right: y,
|
766
766
|
zIndex: w,
|
767
767
|
fontSize: D,
|
768
768
|
fontFamily: O,
|
@@ -788,7 +788,7 @@ const pt = k({
|
|
788
788
|
children: t
|
789
789
|
}
|
790
790
|
)
|
791
|
-
),
|
791
|
+
), mt = k({
|
792
792
|
display: "flex",
|
793
793
|
flexDirection: "column",
|
794
794
|
alignItems: "center",
|
@@ -802,8 +802,8 @@ const pt = k({
|
|
802
802
|
backgroundColor: e.colors.background,
|
803
803
|
color: e.colors.text,
|
804
804
|
fontFamily: e.fonts.body
|
805
|
-
}),
|
806
|
-
base:
|
805
|
+
}), ft = se({
|
806
|
+
base: mt,
|
807
807
|
variants: {
|
808
808
|
centered: {
|
809
809
|
true: {
|
@@ -839,7 +839,7 @@ const pt = k({
|
|
839
839
|
fullWidth: !1,
|
840
840
|
noPadding: !1
|
841
841
|
}
|
842
|
-
}),
|
842
|
+
}), gt = ce(
|
843
843
|
({
|
844
844
|
children: t,
|
845
845
|
centered: a,
|
@@ -871,11 +871,11 @@ const pt = k({
|
|
871
871
|
maxWidth: r,
|
872
872
|
minHeight: c,
|
873
873
|
position: m,
|
874
|
-
top:
|
874
|
+
top: h,
|
875
875
|
bottom: V,
|
876
876
|
left: z,
|
877
|
-
right:
|
878
|
-
zIndex:
|
877
|
+
right: v,
|
878
|
+
zIndex: y,
|
879
879
|
fontSize: w,
|
880
880
|
fontFamily: D,
|
881
881
|
lineHeight: O,
|
@@ -893,13 +893,13 @@ const pt = k({
|
|
893
893
|
overflowX: Z,
|
894
894
|
overflowY: I,
|
895
895
|
...J
|
896
|
-
}, L) => /* @__PURE__ */
|
896
|
+
}, L) => /* @__PURE__ */ g(
|
897
897
|
n,
|
898
898
|
{
|
899
899
|
ref: L,
|
900
|
-
className:
|
901
|
-
|
902
|
-
|
900
|
+
className: re(
|
901
|
+
ft({ centered: a, fullWidth: o, noPadding: l }),
|
902
|
+
de({
|
903
903
|
margin: d,
|
904
904
|
marginTop: f,
|
905
905
|
marginBottom: x,
|
@@ -922,11 +922,11 @@ const pt = k({
|
|
922
922
|
maxWidth: r,
|
923
923
|
minHeight: c,
|
924
924
|
position: m,
|
925
|
-
top:
|
925
|
+
top: h,
|
926
926
|
bottom: V,
|
927
927
|
left: z,
|
928
|
-
right:
|
929
|
-
zIndex:
|
928
|
+
right: v,
|
929
|
+
zIndex: y,
|
930
930
|
fontSize: w,
|
931
931
|
fontFamily: D,
|
932
932
|
lineHeight: O,
|
@@ -952,8 +952,8 @@ const pt = k({
|
|
952
952
|
}
|
953
953
|
)
|
954
954
|
);
|
955
|
-
|
956
|
-
const
|
955
|
+
gt.displayName = "Main";
|
956
|
+
const ht = k({
|
957
957
|
display: "flex",
|
958
958
|
alignItems: "center",
|
959
959
|
justifyContent: "space-between",
|
@@ -990,8 +990,8 @@ const xt = k({
|
|
990
990
|
// transform: 'translateY(-1px)',
|
991
991
|
// },
|
992
992
|
// },
|
993
|
-
}),
|
994
|
-
base:
|
993
|
+
}), xt = se({
|
994
|
+
base: ht,
|
995
995
|
variants: {
|
996
996
|
// position: {
|
997
997
|
// relative: {
|
@@ -1045,10 +1045,10 @@ const xt = k({
|
|
1045
1045
|
variant: "default",
|
1046
1046
|
size: "md"
|
1047
1047
|
}
|
1048
|
-
}),
|
1048
|
+
}), bt = k({
|
1049
1049
|
height: e.header.height,
|
1050
1050
|
width: "100%"
|
1051
|
-
}), vt =
|
1051
|
+
}), vt = ce(
|
1052
1052
|
({
|
1053
1053
|
children: t,
|
1054
1054
|
position: a,
|
@@ -1081,11 +1081,11 @@ const xt = k({
|
|
1081
1081
|
flex: r,
|
1082
1082
|
width: c,
|
1083
1083
|
height: m,
|
1084
|
-
minWidth:
|
1084
|
+
minWidth: h,
|
1085
1085
|
maxWidth: V,
|
1086
1086
|
minHeight: z,
|
1087
|
-
zIndex:
|
1088
|
-
fontSize:
|
1087
|
+
zIndex: v,
|
1088
|
+
fontSize: y,
|
1089
1089
|
fontFamily: w,
|
1090
1090
|
lineHeight: D,
|
1091
1091
|
textAlign: O,
|
@@ -1103,15 +1103,15 @@ const xt = k({
|
|
1103
1103
|
overflowY: Z,
|
1104
1104
|
...I
|
1105
1105
|
}, J) => {
|
1106
|
-
const [L,
|
1107
|
-
return /* @__PURE__ */ be(
|
1106
|
+
const [L, ne] = Ce(!1), ie = a || (n ? "fixed" : "relative");
|
1107
|
+
return /* @__PURE__ */ be(rt, { children: [
|
1108
1108
|
/* @__PURE__ */ be(
|
1109
1109
|
f,
|
1110
1110
|
{
|
1111
1111
|
ref: J,
|
1112
|
-
className:
|
1113
|
-
|
1114
|
-
|
1112
|
+
className: re(
|
1113
|
+
xt({ variant: o, size: l }),
|
1114
|
+
de({
|
1115
1115
|
margin: T,
|
1116
1116
|
marginTop: H,
|
1117
1117
|
marginBottom: E,
|
@@ -1130,11 +1130,11 @@ const xt = k({
|
|
1130
1130
|
flex: r,
|
1131
1131
|
width: c,
|
1132
1132
|
height: m,
|
1133
|
-
minWidth:
|
1133
|
+
minWidth: h,
|
1134
1134
|
maxWidth: V,
|
1135
1135
|
minHeight: z,
|
1136
|
-
zIndex:
|
1137
|
-
fontSize:
|
1136
|
+
zIndex: v,
|
1137
|
+
fontSize: y,
|
1138
1138
|
fontFamily: w,
|
1139
1139
|
lineHeight: D,
|
1140
1140
|
textAlign: O,
|
@@ -1156,22 +1156,22 @@ const xt = k({
|
|
1156
1156
|
),
|
1157
1157
|
...I,
|
1158
1158
|
children: [
|
1159
|
-
p && /* @__PURE__ */
|
1159
|
+
p && /* @__PURE__ */ g("div", { className: re("header-overlay", L && "header-overlay--open"), children: p }),
|
1160
1160
|
t,
|
1161
1161
|
!u && /* @__PURE__ */ be(
|
1162
1162
|
"button",
|
1163
1163
|
{
|
1164
1164
|
type: "button",
|
1165
1165
|
className: "header-nav-toggle",
|
1166
|
-
onClick: () =>
|
1166
|
+
onClick: () => ne(!L),
|
1167
1167
|
"aria-expanded": L,
|
1168
1168
|
"aria-label": "Toggle navigation",
|
1169
1169
|
children: [
|
1170
|
-
/* @__PURE__ */
|
1170
|
+
/* @__PURE__ */ g("span", { className: "sr-only", children: "Toggle navigation" }),
|
1171
1171
|
/* @__PURE__ */ be("div", { className: `hamburger ${L ? "hamburger--open" : ""}`, children: [
|
1172
|
-
/* @__PURE__ */
|
1173
|
-
/* @__PURE__ */
|
1174
|
-
/* @__PURE__ */
|
1172
|
+
/* @__PURE__ */ g("span", {}),
|
1173
|
+
/* @__PURE__ */ g("span", {}),
|
1174
|
+
/* @__PURE__ */ g("span", {})
|
1175
1175
|
] })
|
1176
1176
|
]
|
1177
1177
|
}
|
@@ -1179,12 +1179,12 @@ const xt = k({
|
|
1179
1179
|
]
|
1180
1180
|
}
|
1181
1181
|
),
|
1182
|
-
(ie === "fixed" || n) && /* @__PURE__ */
|
1182
|
+
(ie === "fixed" || n) && /* @__PURE__ */ g("div", { className: bt })
|
1183
1183
|
] });
|
1184
1184
|
}
|
1185
1185
|
);
|
1186
1186
|
vt.displayName = "Header";
|
1187
|
-
const
|
1187
|
+
const yt = k({
|
1188
1188
|
display: "flex",
|
1189
1189
|
alignItems: "center",
|
1190
1190
|
justifyContent: "space-between",
|
@@ -1223,8 +1223,8 @@ const wt = k({
|
|
1223
1223
|
// transform: 'translateY(-1px)',
|
1224
1224
|
// },
|
1225
1225
|
// },
|
1226
|
-
}),
|
1227
|
-
base:
|
1226
|
+
}), wt = se({
|
1227
|
+
base: yt,
|
1228
1228
|
variants: {
|
1229
1229
|
variant: {
|
1230
1230
|
default: {
|
@@ -1278,7 +1278,7 @@ const wt = k({
|
|
1278
1278
|
size: "md",
|
1279
1279
|
layout: "horizontal"
|
1280
1280
|
}
|
1281
|
-
}),
|
1281
|
+
}), St = ce(
|
1282
1282
|
({
|
1283
1283
|
children: t,
|
1284
1284
|
variant: a,
|
@@ -1310,11 +1310,11 @@ const wt = k({
|
|
1310
1310
|
maxWidth: r,
|
1311
1311
|
minHeight: c,
|
1312
1312
|
position: m,
|
1313
|
-
top:
|
1313
|
+
top: h,
|
1314
1314
|
bottom: V,
|
1315
1315
|
left: z,
|
1316
|
-
right:
|
1317
|
-
zIndex:
|
1316
|
+
right: v,
|
1317
|
+
zIndex: y,
|
1318
1318
|
fontSize: w,
|
1319
1319
|
fontFamily: D,
|
1320
1320
|
lineHeight: O,
|
@@ -1332,13 +1332,13 @@ const wt = k({
|
|
1332
1332
|
overflowX: Z,
|
1333
1333
|
overflowY: I,
|
1334
1334
|
...J
|
1335
|
-
}, L) => /* @__PURE__ */
|
1335
|
+
}, L) => /* @__PURE__ */ g(
|
1336
1336
|
n,
|
1337
1337
|
{
|
1338
1338
|
ref: L,
|
1339
|
-
className:
|
1340
|
-
|
1341
|
-
|
1339
|
+
className: re(
|
1340
|
+
wt({ variant: a, size: o, layout: l }),
|
1341
|
+
de({
|
1342
1342
|
margin: d,
|
1343
1343
|
marginTop: f,
|
1344
1344
|
marginBottom: x,
|
@@ -1361,11 +1361,11 @@ const wt = k({
|
|
1361
1361
|
maxWidth: r,
|
1362
1362
|
minHeight: c,
|
1363
1363
|
position: m,
|
1364
|
-
top:
|
1364
|
+
top: h,
|
1365
1365
|
bottom: V,
|
1366
1366
|
left: z,
|
1367
|
-
right:
|
1368
|
-
zIndex:
|
1367
|
+
right: v,
|
1368
|
+
zIndex: y,
|
1369
1369
|
fontSize: w,
|
1370
1370
|
fontFamily: D,
|
1371
1371
|
lineHeight: O,
|
@@ -1391,8 +1391,8 @@ const wt = k({
|
|
1391
1391
|
}
|
1392
1392
|
)
|
1393
1393
|
);
|
1394
|
-
|
1395
|
-
const
|
1394
|
+
St.displayName = "Footer";
|
1395
|
+
const Ct = k({
|
1396
1396
|
display: "flex",
|
1397
1397
|
alignItems: "center",
|
1398
1398
|
gap: e.space.md,
|
@@ -1429,8 +1429,8 @@ const zt = k({
|
|
1429
1429
|
// color: themeContract.colors.background,
|
1430
1430
|
// },
|
1431
1431
|
// },
|
1432
|
-
}),
|
1433
|
-
base:
|
1432
|
+
}), zt = se({
|
1433
|
+
base: Ct,
|
1434
1434
|
variants: {
|
1435
1435
|
orientation: {
|
1436
1436
|
horizontal: {
|
@@ -1498,7 +1498,7 @@ const zt = k({
|
|
1498
1498
|
variant: "default",
|
1499
1499
|
justify: "start"
|
1500
1500
|
}
|
1501
|
-
}),
|
1501
|
+
}), kt = ce(
|
1502
1502
|
({
|
1503
1503
|
children: t,
|
1504
1504
|
orientation: a,
|
@@ -1530,11 +1530,11 @@ const zt = k({
|
|
1530
1530
|
maxWidth: r,
|
1531
1531
|
minHeight: c,
|
1532
1532
|
position: m,
|
1533
|
-
top:
|
1533
|
+
top: h,
|
1534
1534
|
bottom: V,
|
1535
1535
|
left: z,
|
1536
|
-
right:
|
1537
|
-
zIndex:
|
1536
|
+
right: v,
|
1537
|
+
zIndex: y,
|
1538
1538
|
fontSize: w,
|
1539
1539
|
fontFamily: D,
|
1540
1540
|
lineHeight: O,
|
@@ -1552,13 +1552,13 @@ const zt = k({
|
|
1552
1552
|
overflowX: Z,
|
1553
1553
|
overflowY: I,
|
1554
1554
|
...J
|
1555
|
-
}, L) => /* @__PURE__ */
|
1555
|
+
}, L) => /* @__PURE__ */ g(
|
1556
1556
|
n,
|
1557
1557
|
{
|
1558
1558
|
ref: L,
|
1559
|
-
className:
|
1560
|
-
|
1561
|
-
|
1559
|
+
className: re(
|
1560
|
+
zt({ orientation: a, variant: o, justify: l }),
|
1561
|
+
de({
|
1562
1562
|
margin: d,
|
1563
1563
|
marginTop: f,
|
1564
1564
|
marginBottom: x,
|
@@ -1581,11 +1581,11 @@ const zt = k({
|
|
1581
1581
|
maxWidth: r,
|
1582
1582
|
minHeight: c,
|
1583
1583
|
position: m,
|
1584
|
-
top:
|
1584
|
+
top: h,
|
1585
1585
|
bottom: V,
|
1586
1586
|
left: z,
|
1587
|
-
right:
|
1588
|
-
zIndex:
|
1587
|
+
right: v,
|
1588
|
+
zIndex: y,
|
1589
1589
|
fontSize: w,
|
1590
1590
|
fontFamily: D,
|
1591
1591
|
lineHeight: O,
|
@@ -1611,8 +1611,8 @@ const zt = k({
|
|
1611
1611
|
}
|
1612
1612
|
)
|
1613
1613
|
);
|
1614
|
-
|
1615
|
-
const
|
1614
|
+
kt.displayName = "Nav";
|
1615
|
+
const Rt = k({
|
1616
1616
|
display: "inline-block",
|
1617
1617
|
verticalAlign: "middle",
|
1618
1618
|
fill: "currentColor",
|
@@ -1622,8 +1622,8 @@ const Vt = k({
|
|
1622
1622
|
k({
|
1623
1623
|
transition: "fill 0.3s ease-in-out"
|
1624
1624
|
});
|
1625
|
-
const
|
1626
|
-
base:
|
1625
|
+
const Vt = se({
|
1626
|
+
base: Rt,
|
1627
1627
|
variants: {
|
1628
1628
|
size: {
|
1629
1629
|
xs: {
|
@@ -1702,7 +1702,7 @@ const Nt = le({
|
|
1702
1702
|
// color: 'current',
|
1703
1703
|
interactive: !1
|
1704
1704
|
}
|
1705
|
-
}),
|
1705
|
+
}), Nt = {
|
1706
1706
|
caret: "M8.12 9.29 12 13.17l3.88-3.88c.39-.39 1.02-.39 1.41 0 .39.39.39 1.02 0 1.41l-4.59 4.59c-.39.39-1.02.39-1.41 0L6.7 10.7a.9959.9959 0 0 1 0-1.41c.39-.38 1.03-.39 1.42 0",
|
1707
1707
|
close: "M18.3 5.71a.996.996 0 0 0-1.41 0L12 10.59 7.11 5.7a.996.996 0 0 0-1.41 0c-.39.39-.39 1.02 0 1.41L10.59 12 5.7 16.89c-.39.39-.39 1.02 0 1.41s1.02.39 1.41 0L12 13.41l4.89 4.89c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L13.41 12l4.89-4.89c.38-.38.38-1.02 0-1.4",
|
1708
1708
|
arrowBack: "M19 11H7.83l4.88-4.88c.39-.39.39-1.03 0-1.42a.996.996 0 0 0-1.41 0l-6.59 6.59c-.39.39-.39 1.02 0 1.41l6.59 6.59c.39.39 1.02.39 1.41 0s.39-1.02 0-1.41L7.83 13H19c.55 0 1-.45 1-1s-.45-1-1-1",
|
@@ -1721,7 +1721,7 @@ const Nt = le({
|
|
1721
1721
|
socialTiktok: "M21,2H3A1,1,0,0,0,2,3V21a1,1,0,0,0,1,1H21a1,1,0,0,0,1-1V3A1,1,0,0,0,21,2Zm-3.281,8.725h0c-.109.011-.219.016-.328.017A3.571,3.571,0,0,1,14.4,9.129v5.493a4.061,4.061,0,1,1-4.06-4.06c.085,0,.167.008.251.013v2a2.067,2.067,0,1,0-.251,4.119A2.123,2.123,0,0,0,12.5,14.649l.02-9.331h1.914A3.564,3.564,0,0,0,17.719,8.5Z",
|
1722
1722
|
socialX: "M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z",
|
1723
1723
|
socialYoutube: "M10 15l5.19-3L10 9v6m11.56-7.83c.13.47.22 1.1.28 1.9.07.8.1 1.49.1 2.09L22 12c0 2.19-.16 3.8-.44 4.83-.25.9-.83 1.48-1.73 1.73-.47.13-1.33.22-2.65.28-1.3.07-2.49.1-3.59.1L12 19c-4.19 0-6.8-.16-7.83-.44-.9-.25-1.48-.83-1.73-1.73-.13-.47-.22-1.1-.28-1.9-.07-.8-.1-1.49-.1-2.09L2 12c0-2.19.16-3.8.44-4.83.25-.9.83-1.48 1.73-1.73.47-.13 1.33-.22 2.65-.28 1.3-.07 2.49-.1 3.59-.1L12 5c4.19 0 6.8.16 7.83.44.9.25 1.48.83 1.73 1.73z"
|
1724
|
-
},
|
1724
|
+
}, Se = ce(
|
1725
1725
|
({
|
1726
1726
|
icon: t,
|
1727
1727
|
iconPath: a,
|
@@ -1753,11 +1753,11 @@ const Nt = le({
|
|
1753
1753
|
width: r,
|
1754
1754
|
height: c,
|
1755
1755
|
minWidth: m,
|
1756
|
-
maxWidth:
|
1756
|
+
maxWidth: h,
|
1757
1757
|
minHeight: V,
|
1758
1758
|
position: z,
|
1759
|
-
top:
|
1760
|
-
bottom:
|
1759
|
+
top: v,
|
1760
|
+
bottom: y,
|
1761
1761
|
left: w,
|
1762
1762
|
right: D,
|
1763
1763
|
zIndex: O,
|
@@ -1776,22 +1776,22 @@ const Nt = le({
|
|
1776
1776
|
overflow: I,
|
1777
1777
|
overflowX: J,
|
1778
1778
|
overflowY: L,
|
1779
|
-
...
|
1779
|
+
...ne
|
1780
1780
|
}, ie) => {
|
1781
|
-
const oe = a || (t ?
|
1781
|
+
const oe = a || (t ? Nt[t] : ""), ae = n ? {
|
1782
1782
|
width: `${n}px`,
|
1783
1783
|
height: `${n}px`
|
1784
1784
|
} : {}, fe = u ? {
|
1785
1785
|
fill: u
|
1786
1786
|
} : {};
|
1787
|
-
return /* @__PURE__ */
|
1787
|
+
return /* @__PURE__ */ g(
|
1788
1788
|
"svg",
|
1789
1789
|
{
|
1790
1790
|
ref: ie,
|
1791
1791
|
viewBox: d,
|
1792
|
-
className:
|
1793
|
-
|
1794
|
-
|
1792
|
+
className: re(
|
1793
|
+
Vt({ size: n ? void 0 : o, interactive: p }),
|
1794
|
+
de({
|
1795
1795
|
margin: S,
|
1796
1796
|
marginTop: T,
|
1797
1797
|
marginBottom: H,
|
@@ -1811,11 +1811,11 @@ const Nt = le({
|
|
1811
1811
|
width: r,
|
1812
1812
|
height: c,
|
1813
1813
|
minWidth: m,
|
1814
|
-
maxWidth:
|
1814
|
+
maxWidth: h,
|
1815
1815
|
minHeight: V,
|
1816
1816
|
position: z,
|
1817
|
-
top:
|
1818
|
-
bottom:
|
1817
|
+
top: v,
|
1818
|
+
bottom: y,
|
1819
1819
|
left: w,
|
1820
1820
|
right: D,
|
1821
1821
|
zIndex: O,
|
@@ -1838,19 +1838,19 @@ const Nt = le({
|
|
1838
1838
|
f,
|
1839
1839
|
x
|
1840
1840
|
),
|
1841
|
-
style:
|
1842
|
-
"aria-hidden": !
|
1843
|
-
...
|
1844
|
-
children: /* @__PURE__ */
|
1841
|
+
style: ae,
|
1842
|
+
"aria-hidden": !ne["aria-label"] && !ne["aria-labelledby"],
|
1843
|
+
...ne,
|
1844
|
+
children: /* @__PURE__ */ g("path", { className: a, d: oe, style: fe })
|
1845
1845
|
}
|
1846
1846
|
);
|
1847
1847
|
}
|
1848
1848
|
);
|
1849
|
-
|
1850
|
-
const
|
1849
|
+
Se.displayName = "Icon";
|
1850
|
+
const It = We({
|
1851
1851
|
from: { opacity: "0" },
|
1852
1852
|
to: { opacity: "1" }
|
1853
|
-
}),
|
1853
|
+
}), Tt = We({
|
1854
1854
|
from: {
|
1855
1855
|
opacity: "0",
|
1856
1856
|
transform: "translate(-50%, -60%) scale(0.95)"
|
@@ -1859,7 +1859,7 @@ const Tt = We({
|
|
1859
1859
|
opacity: "1",
|
1860
1860
|
transform: "translate(-50%, -50%) scale(1)"
|
1861
1861
|
}
|
1862
|
-
}),
|
1862
|
+
}), Et = k({
|
1863
1863
|
position: "fixed",
|
1864
1864
|
top: 0,
|
1865
1865
|
left: 0,
|
@@ -1868,13 +1868,13 @@ const Tt = We({
|
|
1868
1868
|
zIndex: 50,
|
1869
1869
|
backgroundColor: "rgba(0, 0, 0, 0.5)",
|
1870
1870
|
backdropFilter: "blur(4px)",
|
1871
|
-
animation: `${
|
1871
|
+
animation: `${It} 0.2s ease-out`,
|
1872
1872
|
display: "flex",
|
1873
1873
|
alignItems: "center",
|
1874
1874
|
justifyContent: "center",
|
1875
1875
|
padding: e.space.md,
|
1876
1876
|
overflowY: "auto"
|
1877
|
-
}),
|
1877
|
+
}), Wt = k({
|
1878
1878
|
position: "relative",
|
1879
1879
|
backgroundColor: e.colors.background,
|
1880
1880
|
borderRadius: e.radii.lg,
|
@@ -1884,7 +1884,7 @@ const Tt = We({
|
|
1884
1884
|
maxWidth: "90vw",
|
1885
1885
|
width: "100%",
|
1886
1886
|
overflowY: "auto",
|
1887
|
-
animation: `${
|
1887
|
+
animation: `${Tt} 0.3s ease-out`,
|
1888
1888
|
"@media": {
|
1889
1889
|
[te.sm]: {
|
1890
1890
|
maxWidth: "500px"
|
@@ -1896,7 +1896,7 @@ const Tt = We({
|
|
1896
1896
|
maxWidth: "800px"
|
1897
1897
|
}
|
1898
1898
|
}
|
1899
|
-
}),
|
1899
|
+
}), Bt = k({
|
1900
1900
|
position: "absolute",
|
1901
1901
|
top: e.space.md,
|
1902
1902
|
right: e.space.md,
|
@@ -1922,8 +1922,8 @@ const Tt = We({
|
|
1922
1922
|
// outlineColor: themeContract.colors.primary,
|
1923
1923
|
// outlineOffset: '2px',
|
1924
1924
|
// },
|
1925
|
-
}),
|
1926
|
-
base:
|
1925
|
+
}), jt = se({
|
1926
|
+
base: Et,
|
1927
1927
|
variants: {
|
1928
1928
|
size: {
|
1929
1929
|
sm: {},
|
@@ -1959,8 +1959,8 @@ const Tt = We({
|
|
1959
1959
|
size: "md",
|
1960
1960
|
centered: !0
|
1961
1961
|
}
|
1962
|
-
}),
|
1963
|
-
base:
|
1962
|
+
}), At = se({
|
1963
|
+
base: Wt,
|
1964
1964
|
variants: {
|
1965
1965
|
size: {
|
1966
1966
|
sm: {
|
@@ -2020,7 +2020,7 @@ const Tt = We({
|
|
2020
2020
|
size: "md",
|
2021
2021
|
align: "left"
|
2022
2022
|
}
|
2023
|
-
}),
|
2023
|
+
}), Ft = ce(
|
2024
2024
|
({
|
2025
2025
|
children: t,
|
2026
2026
|
isOpen: a,
|
@@ -2052,11 +2052,11 @@ const Tt = We({
|
|
2052
2052
|
flex: r,
|
2053
2053
|
width: c,
|
2054
2054
|
height: m,
|
2055
|
-
minWidth:
|
2055
|
+
minWidth: h,
|
2056
2056
|
maxWidth: V,
|
2057
2057
|
minHeight: z,
|
2058
|
-
position:
|
2059
|
-
top:
|
2058
|
+
position: v,
|
2059
|
+
top: y,
|
2060
2060
|
bottom: w,
|
2061
2061
|
left: D,
|
2062
2062
|
right: O,
|
@@ -2075,21 +2075,21 @@ const Tt = We({
|
|
2075
2075
|
boxShadow: I,
|
2076
2076
|
opacity: J,
|
2077
2077
|
overflow: L,
|
2078
|
-
overflowX:
|
2078
|
+
overflowX: ne,
|
2079
2079
|
overflowY: ie,
|
2080
2080
|
...oe
|
2081
|
-
},
|
2082
|
-
const [fe, me] =
|
2083
|
-
|
2081
|
+
}, ae) => {
|
2082
|
+
const [fe, me] = Ce(a);
|
2083
|
+
we(() => {
|
2084
2084
|
if (a)
|
2085
2085
|
me(!0), document.body.style.overflow = "hidden";
|
2086
2086
|
else {
|
2087
2087
|
const xe = setTimeout(() => me(!1), 300);
|
2088
2088
|
return document.body.style.overflow = "", () => clearTimeout(xe);
|
2089
2089
|
}
|
2090
|
-
}, [a]),
|
2091
|
-
const xe = (
|
2092
|
-
u &&
|
2090
|
+
}, [a]), we(() => {
|
2091
|
+
const xe = (ue) => {
|
2092
|
+
u && ue.key === "Escape" && o && o();
|
2093
2093
|
};
|
2094
2094
|
if (a)
|
2095
2095
|
return document.addEventListener("keydown", xe), () => document.removeEventListener("keydown", xe);
|
@@ -2097,13 +2097,13 @@ const Tt = We({
|
|
2097
2097
|
const he = (xe) => {
|
2098
2098
|
n && xe.target === xe.currentTarget && o && o();
|
2099
2099
|
};
|
2100
|
-
return fe ? /* @__PURE__ */
|
2100
|
+
return fe ? /* @__PURE__ */ g(
|
2101
2101
|
"div",
|
2102
2102
|
{
|
2103
|
-
ref:
|
2104
|
-
className:
|
2105
|
-
|
2106
|
-
|
2103
|
+
ref: ae,
|
2104
|
+
className: re(
|
2105
|
+
jt({ size: d, centered: f }),
|
2106
|
+
de({
|
2107
2107
|
margin: T,
|
2108
2108
|
marginTop: H,
|
2109
2109
|
marginBottom: E,
|
@@ -2122,11 +2122,11 @@ const Tt = We({
|
|
2122
2122
|
flex: r,
|
2123
2123
|
width: c,
|
2124
2124
|
height: m,
|
2125
|
-
minWidth:
|
2125
|
+
minWidth: h,
|
2126
2126
|
maxWidth: V,
|
2127
2127
|
minHeight: z,
|
2128
|
-
position:
|
2129
|
-
top:
|
2128
|
+
position: v,
|
2129
|
+
top: y,
|
2130
2130
|
bottom: w,
|
2131
2131
|
left: D,
|
2132
2132
|
right: O,
|
@@ -2145,7 +2145,7 @@ const Tt = We({
|
|
2145
2145
|
boxShadow: I,
|
2146
2146
|
opacity: J,
|
2147
2147
|
overflow: L,
|
2148
|
-
overflowX:
|
2148
|
+
overflowX: ne,
|
2149
2149
|
overflowY: ie
|
2150
2150
|
}),
|
2151
2151
|
x,
|
@@ -2158,8 +2158,8 @@ const Tt = We({
|
|
2158
2158
|
children: /* @__PURE__ */ be(
|
2159
2159
|
"div",
|
2160
2160
|
{
|
2161
|
-
className:
|
2162
|
-
|
2161
|
+
className: re(
|
2162
|
+
At({
|
2163
2163
|
size: p.size || d,
|
2164
2164
|
align: p.align
|
2165
2165
|
}),
|
@@ -2167,7 +2167,7 @@ const Tt = We({
|
|
2167
2167
|
p.className
|
2168
2168
|
),
|
2169
2169
|
children: [
|
2170
|
-
l && o && /* @__PURE__ */
|
2170
|
+
l && o && /* @__PURE__ */ g("button", { type: "button", className: Bt, onClick: o, "aria-label": "Close modal", children: /* @__PURE__ */ g(Se, { icon: "close", size: "sm" }) }),
|
2171
2171
|
t
|
2172
2172
|
]
|
2173
2173
|
}
|
@@ -2176,8 +2176,8 @@ const Tt = We({
|
|
2176
2176
|
) : null;
|
2177
2177
|
}
|
2178
2178
|
);
|
2179
|
-
|
2180
|
-
const
|
2179
|
+
Ft.displayName = "Modal";
|
2180
|
+
const $t = k({
|
2181
2181
|
display: "inline-block"
|
2182
2182
|
// selectors: {
|
2183
2183
|
// '& img': {
|
@@ -2194,8 +2194,8 @@ const Dt = k({
|
|
2194
2194
|
// fill: 'currentColor',
|
2195
2195
|
// },
|
2196
2196
|
// },
|
2197
|
-
}),
|
2198
|
-
base:
|
2197
|
+
}), Dt = se({
|
2198
|
+
base: $t,
|
2199
2199
|
variants: {
|
2200
2200
|
size: {
|
2201
2201
|
xs: {
|
@@ -2260,7 +2260,7 @@ const Dt = k({
|
|
2260
2260
|
variant: "default",
|
2261
2261
|
responsive: !0
|
2262
2262
|
}
|
2263
|
-
}),
|
2263
|
+
}), Ot = ce(
|
2264
2264
|
({
|
2265
2265
|
children: t,
|
2266
2266
|
size: a,
|
@@ -2292,11 +2292,11 @@ const Dt = k({
|
|
2292
2292
|
minWidth: r,
|
2293
2293
|
maxWidth: c,
|
2294
2294
|
minHeight: m,
|
2295
|
-
position:
|
2295
|
+
position: h,
|
2296
2296
|
top: V,
|
2297
2297
|
bottom: z,
|
2298
|
-
left:
|
2299
|
-
right:
|
2298
|
+
left: v,
|
2299
|
+
right: y,
|
2300
2300
|
zIndex: w,
|
2301
2301
|
fontSize: D,
|
2302
2302
|
fontFamily: O,
|
@@ -2315,13 +2315,13 @@ const Dt = k({
|
|
2315
2315
|
overflowX: I,
|
2316
2316
|
overflowY: J,
|
2317
2317
|
...L
|
2318
|
-
},
|
2318
|
+
}, ne) => /* @__PURE__ */ g(
|
2319
2319
|
"div",
|
2320
2320
|
{
|
2321
|
-
ref:
|
2322
|
-
className:
|
2323
|
-
|
2324
|
-
|
2321
|
+
ref: ne,
|
2322
|
+
className: re(
|
2323
|
+
Dt({ size: a, variant: u ? "link" : o, responsive: l }),
|
2324
|
+
de({
|
2325
2325
|
margin: f,
|
2326
2326
|
marginTop: x,
|
2327
2327
|
marginBottom: S,
|
@@ -2343,11 +2343,11 @@ const Dt = k({
|
|
2343
2343
|
minWidth: r,
|
2344
2344
|
maxWidth: c,
|
2345
2345
|
minHeight: m,
|
2346
|
-
position:
|
2346
|
+
position: h,
|
2347
2347
|
top: V,
|
2348
2348
|
bottom: z,
|
2349
|
-
left:
|
2350
|
-
right:
|
2349
|
+
left: v,
|
2350
|
+
right: y,
|
2351
2351
|
zIndex: w,
|
2352
2352
|
fontSize: D,
|
2353
2353
|
fontFamily: O,
|
@@ -2374,8 +2374,8 @@ const Dt = k({
|
|
2374
2374
|
}
|
2375
2375
|
)
|
2376
2376
|
);
|
2377
|
-
|
2378
|
-
const
|
2377
|
+
Ot.displayName = "Logo";
|
2378
|
+
const Mt = k({
|
2379
2379
|
display: "flex",
|
2380
2380
|
flexDirection: "column",
|
2381
2381
|
alignItems: "flex-start",
|
@@ -2392,7 +2392,7 @@ const Lt = k({
|
|
2392
2392
|
gap: e.space.xl
|
2393
2393
|
}
|
2394
2394
|
}
|
2395
|
-
}),
|
2395
|
+
}), Lt = {
|
2396
2396
|
1: k({
|
2397
2397
|
"@media": {
|
2398
2398
|
[te.md]: {
|
@@ -2441,8 +2441,8 @@ const Lt = k({
|
|
2441
2441
|
}
|
2442
2442
|
}
|
2443
2443
|
})
|
2444
|
-
},
|
2445
|
-
base:
|
2444
|
+
}, Ht = se({
|
2445
|
+
base: Mt,
|
2446
2446
|
variants: {
|
2447
2447
|
align: {
|
2448
2448
|
left: {
|
@@ -2543,7 +2543,7 @@ const Lt = k({
|
|
2543
2543
|
reverse: !1,
|
2544
2544
|
alignItems: "stretch"
|
2545
2545
|
}
|
2546
|
-
}),
|
2546
|
+
}), Pt = ce(
|
2547
2547
|
({
|
2548
2548
|
children: t,
|
2549
2549
|
columns: a,
|
@@ -2575,11 +2575,11 @@ const Lt = k({
|
|
2575
2575
|
width: r,
|
2576
2576
|
height: c,
|
2577
2577
|
minWidth: m,
|
2578
|
-
maxWidth:
|
2578
|
+
maxWidth: h,
|
2579
2579
|
minHeight: V,
|
2580
2580
|
position: z,
|
2581
|
-
top:
|
2582
|
-
bottom:
|
2581
|
+
top: v,
|
2582
|
+
bottom: y,
|
2583
2583
|
left: w,
|
2584
2584
|
right: D,
|
2585
2585
|
zIndex: O,
|
@@ -2598,17 +2598,17 @@ const Lt = k({
|
|
2598
2598
|
opacity: I,
|
2599
2599
|
overflow: J,
|
2600
2600
|
overflowX: L,
|
2601
|
-
overflowY:
|
2601
|
+
overflowY: ne,
|
2602
2602
|
...ie
|
2603
2603
|
}, oe) => {
|
2604
|
-
const
|
2605
|
-
return /* @__PURE__ */
|
2604
|
+
const ae = Array.isArray(t) ? t : [t];
|
2605
|
+
return /* @__PURE__ */ g(
|
2606
2606
|
d,
|
2607
2607
|
{
|
2608
2608
|
ref: oe,
|
2609
|
-
className:
|
2610
|
-
|
2611
|
-
|
2609
|
+
className: re(
|
2610
|
+
Ht({ align: o, spacing: l, wrap: n, reverse: u, alignItems: p }),
|
2611
|
+
de({
|
2612
2612
|
margin: S,
|
2613
2613
|
marginTop: T,
|
2614
2614
|
marginBottom: H,
|
@@ -2628,11 +2628,11 @@ const Lt = k({
|
|
2628
2628
|
width: r,
|
2629
2629
|
height: c,
|
2630
2630
|
minWidth: m,
|
2631
|
-
maxWidth:
|
2631
|
+
maxWidth: h,
|
2632
2632
|
minHeight: V,
|
2633
2633
|
position: z,
|
2634
|
-
top:
|
2635
|
-
bottom:
|
2634
|
+
top: v,
|
2635
|
+
bottom: y,
|
2636
2636
|
left: w,
|
2637
2637
|
right: D,
|
2638
2638
|
zIndex: O,
|
@@ -2651,19 +2651,19 @@ const Lt = k({
|
|
2651
2651
|
opacity: I,
|
2652
2652
|
overflow: J,
|
2653
2653
|
overflowX: L,
|
2654
|
-
overflowY:
|
2654
|
+
overflowY: ne
|
2655
2655
|
}),
|
2656
2656
|
f,
|
2657
2657
|
x
|
2658
2658
|
),
|
2659
2659
|
...ie,
|
2660
|
-
children: a && a.length > 0 ?
|
2660
|
+
children: a && a.length > 0 ? ae.map((fe, me) => /* @__PURE__ */ g("div", { className: re(a[me] && Lt[a[me]]), children: fe }, me)) : t
|
2661
2661
|
}
|
2662
2662
|
);
|
2663
2663
|
}
|
2664
2664
|
);
|
2665
|
-
|
2666
|
-
const
|
2665
|
+
Pt.displayName = "Columns";
|
2666
|
+
const Ut = k({
|
2667
2667
|
display: "flex",
|
2668
2668
|
flexWrap: "wrap",
|
2669
2669
|
gap: e.space.sm,
|
@@ -2675,8 +2675,8 @@ const _t = k({
|
|
2675
2675
|
paddingTop: e.space.md
|
2676
2676
|
}
|
2677
2677
|
}
|
2678
|
-
}),
|
2679
|
-
base:
|
2678
|
+
}), _t = se({
|
2679
|
+
base: Ut,
|
2680
2680
|
variants: {
|
2681
2681
|
align: {
|
2682
2682
|
left: {
|
@@ -2761,7 +2761,7 @@ const _t = k({
|
|
2761
2761
|
wrap: !0,
|
2762
2762
|
fullWidth: !1
|
2763
2763
|
}
|
2764
|
-
}),
|
2764
|
+
}), Yt = ce(
|
2765
2765
|
({
|
2766
2766
|
children: t,
|
2767
2767
|
align: a,
|
@@ -2793,11 +2793,11 @@ const _t = k({
|
|
2793
2793
|
height: r,
|
2794
2794
|
minWidth: c,
|
2795
2795
|
maxWidth: m,
|
2796
|
-
minHeight:
|
2796
|
+
minHeight: h,
|
2797
2797
|
position: V,
|
2798
2798
|
top: z,
|
2799
|
-
bottom:
|
2800
|
-
left:
|
2799
|
+
bottom: v,
|
2800
|
+
left: y,
|
2801
2801
|
right: w,
|
2802
2802
|
zIndex: D,
|
2803
2803
|
fontSize: O,
|
@@ -2816,14 +2816,14 @@ const _t = k({
|
|
2816
2816
|
overflow: I,
|
2817
2817
|
overflowX: J,
|
2818
2818
|
overflowY: L,
|
2819
|
-
...
|
2820
|
-
}, ie) => /* @__PURE__ */
|
2819
|
+
...ne
|
2820
|
+
}, ie) => /* @__PURE__ */ g(
|
2821
2821
|
p,
|
2822
2822
|
{
|
2823
2823
|
ref: ie,
|
2824
|
-
className:
|
2825
|
-
|
2826
|
-
|
2824
|
+
className: re(
|
2825
|
+
_t({ align: a, direction: o, spacing: l, wrap: n, fullWidth: u }),
|
2826
|
+
de({
|
2827
2827
|
margin: x,
|
2828
2828
|
marginTop: S,
|
2829
2829
|
marginBottom: T,
|
@@ -2844,11 +2844,11 @@ const _t = k({
|
|
2844
2844
|
height: r,
|
2845
2845
|
minWidth: c,
|
2846
2846
|
maxWidth: m,
|
2847
|
-
minHeight:
|
2847
|
+
minHeight: h,
|
2848
2848
|
position: V,
|
2849
2849
|
top: z,
|
2850
|
-
bottom:
|
2851
|
-
left:
|
2850
|
+
bottom: v,
|
2851
|
+
left: y,
|
2852
2852
|
right: w,
|
2853
2853
|
zIndex: D,
|
2854
2854
|
fontSize: O,
|
@@ -2871,35 +2871,35 @@ const _t = k({
|
|
2871
2871
|
d,
|
2872
2872
|
f
|
2873
2873
|
),
|
2874
|
-
...
|
2874
|
+
...ne,
|
2875
2875
|
children: t
|
2876
2876
|
}
|
2877
2877
|
)
|
2878
2878
|
);
|
2879
|
-
|
2879
|
+
Yt.displayName = "Actions";
|
2880
2880
|
We({
|
2881
2881
|
"0%": { transform: "translateX(0)" },
|
2882
2882
|
"100%": { transform: "translateX(var(--slide-offset))" }
|
2883
2883
|
});
|
2884
|
-
const
|
2884
|
+
const Xt = k({
|
2885
2885
|
position: "relative",
|
2886
2886
|
overflow: "hidden",
|
2887
2887
|
width: "100%"
|
2888
|
-
}),
|
2888
|
+
}), qt = k({
|
2889
2889
|
width: "100%",
|
2890
2890
|
position: "relative"
|
2891
|
-
}),
|
2891
|
+
}), Gt = k({
|
2892
2892
|
display: "flex",
|
2893
2893
|
position: "relative",
|
2894
2894
|
transition: "transform 0.3s ease-in-out",
|
2895
2895
|
willChange: "transform"
|
2896
|
-
}),
|
2896
|
+
}), Kt = k({
|
2897
2897
|
width: "100%",
|
2898
2898
|
display: "flex",
|
2899
2899
|
position: "relative",
|
2900
2900
|
alignItems: "stretch",
|
2901
2901
|
flexShrink: 0
|
2902
|
-
}),
|
2902
|
+
}), Zt = k({
|
2903
2903
|
position: "absolute",
|
2904
2904
|
bottom: 0,
|
2905
2905
|
left: 0,
|
@@ -2949,7 +2949,7 @@ const qt = k({
|
|
2949
2949
|
// color: themeContract.colors.text,
|
2950
2950
|
// },
|
2951
2951
|
// },
|
2952
|
-
}),
|
2952
|
+
}), Jt = k({
|
2953
2953
|
display: "flex",
|
2954
2954
|
alignItems: "center",
|
2955
2955
|
justifyContent: "center",
|
@@ -2960,7 +2960,7 @@ const qt = k({
|
|
2960
2960
|
marginTop: e.space.xl
|
2961
2961
|
}
|
2962
2962
|
}
|
2963
|
-
}),
|
2963
|
+
}), Qt = k({
|
2964
2964
|
width: "12px",
|
2965
2965
|
height: "12px",
|
2966
2966
|
borderRadius: e.radii.full,
|
@@ -2983,8 +2983,8 @@ const qt = k({
|
|
2983
2983
|
height: "16px"
|
2984
2984
|
}
|
2985
2985
|
}
|
2986
|
-
}),
|
2987
|
-
base:
|
2986
|
+
}), en = se({
|
2987
|
+
base: Xt,
|
2988
2988
|
variants: {
|
2989
2989
|
fullWidth: {
|
2990
2990
|
true: {
|
@@ -3014,16 +3014,16 @@ const qt = k({
|
|
3014
3014
|
defaultVariants: {
|
3015
3015
|
fullWidth: !1
|
3016
3016
|
}
|
3017
|
-
}),
|
3017
|
+
}), tn = k({
|
3018
3018
|
backgroundColor: e.colors.primary,
|
3019
3019
|
pointerEvents: "none",
|
3020
3020
|
opacity: 1
|
3021
|
-
}),
|
3022
|
-
const [t, a] =
|
3021
|
+
}), nn = () => {
|
3022
|
+
const [t, a] = Ce({
|
3023
3023
|
width: void 0,
|
3024
3024
|
height: void 0
|
3025
3025
|
});
|
3026
|
-
return
|
3026
|
+
return we(() => {
|
3027
3027
|
const o = () => {
|
3028
3028
|
a({
|
3029
3029
|
width: window.innerWidth,
|
@@ -3032,7 +3032,7 @@ const qt = k({
|
|
3032
3032
|
};
|
3033
3033
|
return window.addEventListener("resize", o), o(), () => window.removeEventListener("resize", o);
|
3034
3034
|
}, []), t;
|
3035
|
-
},
|
3035
|
+
}, an = ce(
|
3036
3036
|
({
|
3037
3037
|
data: t,
|
3038
3038
|
itemsPerView: a = 1,
|
@@ -3064,11 +3064,11 @@ const qt = k({
|
|
3064
3064
|
width: r,
|
3065
3065
|
height: c,
|
3066
3066
|
minWidth: m,
|
3067
|
-
maxWidth:
|
3067
|
+
maxWidth: h,
|
3068
3068
|
minHeight: V,
|
3069
3069
|
position: z,
|
3070
|
-
top:
|
3071
|
-
bottom:
|
3070
|
+
top: v,
|
3071
|
+
bottom: y,
|
3072
3072
|
left: w,
|
3073
3073
|
right: D,
|
3074
3074
|
zIndex: O,
|
@@ -3087,61 +3087,61 @@ const qt = k({
|
|
3087
3087
|
opacity: I,
|
3088
3088
|
overflow: J,
|
3089
3089
|
overflowX: L,
|
3090
|
-
overflowY:
|
3090
|
+
overflowY: ne,
|
3091
3091
|
...ie
|
3092
3092
|
}, oe) => {
|
3093
|
-
const { width:
|
3094
|
-
|
3095
|
-
|
3096
|
-
}, [Be, je, a]),
|
3097
|
-
const
|
3098
|
-
if (
|
3099
|
-
const ge =
|
3100
|
-
xe((ge -
|
3093
|
+
const { width: ae } = nn(), [fe, me] = Ce(0), [he, xe] = Ce(0), [ue, ve] = Ce(a), ze = Le(null), ke = Le(null), Be = ae !== void 0 && ae > Re.md, je = ae !== void 0 && ae > Re.lg;
|
3094
|
+
we(() => {
|
3095
|
+
ve(je ? a : Be ? Math.max(1, Math.floor(a / 2)) : 1);
|
3096
|
+
}, [Be, je, a]), we(() => {
|
3097
|
+
const le = () => {
|
3098
|
+
if (ze.current) {
|
3099
|
+
const ge = ze.current.getBoundingClientRect().width, Ne = (ue - 1) * p;
|
3100
|
+
xe((ge - Ne) / ue);
|
3101
3101
|
}
|
3102
3102
|
};
|
3103
|
-
return
|
3104
|
-
}, [
|
3103
|
+
return le(), window.addEventListener("resize", le), () => window.removeEventListener("resize", le);
|
3104
|
+
}, [ue, p]), we(() => {
|
3105
3105
|
if (!n) return;
|
3106
|
-
const
|
3106
|
+
const le = setInterval(() => {
|
3107
3107
|
me((ge) => {
|
3108
|
-
const
|
3109
|
-
return ge >=
|
3108
|
+
const Ne = Math.max(0, t.length - ue);
|
3109
|
+
return ge >= Ne ? 0 : ge + 1;
|
3110
3110
|
});
|
3111
3111
|
}, u);
|
3112
|
-
return () => clearInterval(
|
3113
|
-
}, [n, u, t.length,
|
3114
|
-
const
|
3115
|
-
if (!
|
3116
|
-
let ge = 0,
|
3112
|
+
return () => clearInterval(le);
|
3113
|
+
}, [n, u, t.length, ue]), we(() => {
|
3114
|
+
const le = ze.current;
|
3115
|
+
if (!le) return;
|
3116
|
+
let ge = 0, Ne = 0;
|
3117
3117
|
const _e = (Fe) => {
|
3118
3118
|
ge = Fe.changedTouches[0].screenX;
|
3119
3119
|
}, Ye = (Fe) => {
|
3120
|
-
|
3120
|
+
Ne = Fe.changedTouches[0].screenX, nt();
|
3121
3121
|
}, nt = () => {
|
3122
|
-
const Xe = ge -
|
3123
|
-
Math.abs(Xe) > 100 && (Xe > 0 ? Ae() :
|
3122
|
+
const Xe = ge - Ne;
|
3123
|
+
Math.abs(Xe) > 100 && (Xe > 0 ? Ae() : Ve());
|
3124
3124
|
};
|
3125
|
-
return
|
3126
|
-
|
3125
|
+
return le.addEventListener("touchstart", _e, { passive: !0 }), le.addEventListener("touchend", Ye, { passive: !0 }), () => {
|
3126
|
+
le.removeEventListener("touchstart", _e), le.removeEventListener("touchend", Ye);
|
3127
3127
|
};
|
3128
3128
|
}, []);
|
3129
|
-
const
|
3130
|
-
me((
|
3129
|
+
const Ve = () => {
|
3130
|
+
me((le) => Math.max(0, le - 1));
|
3131
3131
|
}, Ae = () => {
|
3132
|
-
const
|
3133
|
-
me((ge) => Math.min(
|
3134
|
-
}, Oe = (
|
3135
|
-
const ge = Math.max(0, t.length -
|
3136
|
-
me(Math.min(
|
3137
|
-
}, Me = -(fe * (he + p)),
|
3132
|
+
const le = Math.max(0, t.length - ue);
|
3133
|
+
me((ge) => Math.min(le, ge + 1));
|
3134
|
+
}, Oe = (le) => {
|
3135
|
+
const ge = Math.max(0, t.length - ue);
|
3136
|
+
me(Math.min(le, ge));
|
3137
|
+
}, Me = -(fe * (he + p)), Ie = Math.max(0, t.length - ue);
|
3138
3138
|
return /* @__PURE__ */ be(
|
3139
3139
|
f,
|
3140
3140
|
{
|
3141
3141
|
ref: oe,
|
3142
|
-
className:
|
3143
|
-
|
3144
|
-
|
3142
|
+
className: re(
|
3143
|
+
en({ fullWidth: d }),
|
3144
|
+
de({
|
3145
3145
|
margin: T,
|
3146
3146
|
marginTop: H,
|
3147
3147
|
marginBottom: E,
|
@@ -3160,11 +3160,11 @@ const qt = k({
|
|
3160
3160
|
width: r,
|
3161
3161
|
height: c,
|
3162
3162
|
minWidth: m,
|
3163
|
-
maxWidth:
|
3163
|
+
maxWidth: h,
|
3164
3164
|
minHeight: V,
|
3165
3165
|
position: z,
|
3166
|
-
top:
|
3167
|
-
bottom:
|
3166
|
+
top: v,
|
3167
|
+
bottom: y,
|
3168
3168
|
left: w,
|
3169
3169
|
right: D,
|
3170
3170
|
zIndex: O,
|
@@ -3183,34 +3183,34 @@ const qt = k({
|
|
3183
3183
|
opacity: I,
|
3184
3184
|
overflow: J,
|
3185
3185
|
overflowX: L,
|
3186
|
-
overflowY:
|
3186
|
+
overflowY: ne
|
3187
3187
|
}),
|
3188
3188
|
x,
|
3189
3189
|
S
|
3190
3190
|
),
|
3191
3191
|
...ie,
|
3192
3192
|
children: [
|
3193
|
-
/* @__PURE__ */
|
3193
|
+
/* @__PURE__ */ g("div", { ref: ze, className: qt, children: /* @__PURE__ */ g(
|
3194
3194
|
"div",
|
3195
3195
|
{
|
3196
|
-
ref:
|
3197
|
-
className:
|
3196
|
+
ref: ke,
|
3197
|
+
className: Gt,
|
3198
3198
|
style: {
|
3199
3199
|
transform: `translateX(${Me}px)`,
|
3200
3200
|
gap: `${p}px`
|
3201
3201
|
},
|
3202
|
-
children: t.map((
|
3202
|
+
children: t.map((le, ge) => /* @__PURE__ */ g("div", { className: Kt, style: { width: `${he}px` }, children: le }, ge))
|
3203
3203
|
}
|
3204
3204
|
) }),
|
3205
|
-
o && /* @__PURE__ */ be("div", { className:
|
3206
|
-
/* @__PURE__ */
|
3207
|
-
/* @__PURE__ */
|
3205
|
+
o && /* @__PURE__ */ be("div", { className: Zt, children: [
|
3206
|
+
/* @__PURE__ */ g("button", { type: "button", className: qe, onClick: Ve, disabled: fe === 0, "aria-label": "Previous slide", children: /* @__PURE__ */ g(Se, { icon: "arrowBack", size: "md" }) }),
|
3207
|
+
/* @__PURE__ */ g("button", { type: "button", className: qe, onClick: Ae, disabled: fe >= Ie, "aria-label": "Next slide", children: /* @__PURE__ */ g(Se, { icon: "arrowForward", size: "md" }) })
|
3208
3208
|
] }),
|
3209
|
-
l && /* @__PURE__ */
|
3209
|
+
l && /* @__PURE__ */ g("div", { className: Jt, children: Array.from({ length: Ie + 1 }, (le, ge) => /* @__PURE__ */ g(
|
3210
3210
|
"button",
|
3211
3211
|
{
|
3212
3212
|
type: "button",
|
3213
|
-
className:
|
3213
|
+
className: re(Qt, ge === fe && tn),
|
3214
3214
|
onClick: () => Oe(ge),
|
3215
3215
|
"aria-label": `Go to slide ${ge + 1}`
|
3216
3216
|
},
|
@@ -3221,11 +3221,11 @@ const qt = k({
|
|
3221
3221
|
);
|
3222
3222
|
}
|
3223
3223
|
);
|
3224
|
-
|
3225
|
-
const
|
3224
|
+
an.displayName = "Carousel";
|
3225
|
+
const on = We({
|
3226
3226
|
from: { opacity: "0" },
|
3227
3227
|
to: { opacity: "1" }
|
3228
|
-
}),
|
3228
|
+
}), rn = We({
|
3229
3229
|
from: {
|
3230
3230
|
opacity: "0",
|
3231
3231
|
transform: "translateY(100%)"
|
@@ -3234,14 +3234,14 @@ const oa = We({
|
|
3234
3234
|
opacity: "1",
|
3235
3235
|
transform: "translateY(0)"
|
3236
3236
|
}
|
3237
|
-
}),
|
3237
|
+
}), sn = k({
|
3238
3238
|
position: "fixed",
|
3239
3239
|
top: 0,
|
3240
3240
|
left: 0,
|
3241
3241
|
right: 0,
|
3242
3242
|
bottom: 0,
|
3243
3243
|
zIndex: 100,
|
3244
|
-
animation: `${
|
3244
|
+
animation: `${on} 0.3s ease-out`,
|
3245
3245
|
"::before": {
|
3246
3246
|
content: '""',
|
3247
3247
|
position: "fixed",
|
@@ -3253,7 +3253,7 @@ const oa = We({
|
|
3253
3253
|
backdropFilter: "blur(2px)",
|
3254
3254
|
opacity: 0.8
|
3255
3255
|
}
|
3256
|
-
}),
|
3256
|
+
}), ln = k({
|
3257
3257
|
// position: 'fixed',
|
3258
3258
|
bottom: e.space.md,
|
3259
3259
|
right: e.space.md,
|
@@ -3267,7 +3267,7 @@ const oa = We({
|
|
3267
3267
|
padding: e.space.lg,
|
3268
3268
|
width: "300px",
|
3269
3269
|
maxWidth: "calc(100vw - 32px)",
|
3270
|
-
animation: `${
|
3270
|
+
animation: `${rn} 0.3s ease-out`,
|
3271
3271
|
"@media": {
|
3272
3272
|
[te.sm]: {
|
3273
3273
|
width: "400px"
|
@@ -3277,7 +3277,7 @@ const oa = We({
|
|
3277
3277
|
padding: e.space.xl
|
3278
3278
|
}
|
3279
3279
|
}
|
3280
|
-
}),
|
3280
|
+
}), cn = k({
|
3281
3281
|
display: "flex",
|
3282
3282
|
alignItems: "center",
|
3283
3283
|
justifyContent: "flex-end",
|
@@ -3289,8 +3289,8 @@ const oa = We({
|
|
3289
3289
|
flexWrap: "nowrap"
|
3290
3290
|
}
|
3291
3291
|
}
|
3292
|
-
}),
|
3293
|
-
base:
|
3292
|
+
}), dn = se({
|
3293
|
+
base: sn,
|
3294
3294
|
variants: {
|
3295
3295
|
// position: {
|
3296
3296
|
// 'bottom-right': {},
|
@@ -3365,7 +3365,7 @@ const oa = We({
|
|
3365
3365
|
variant: "modal"
|
3366
3366
|
}
|
3367
3367
|
});
|
3368
|
-
function
|
3368
|
+
function un(t) {
|
3369
3369
|
const a = t + "=", l = decodeURIComponent(document.cookie).split(";");
|
3370
3370
|
for (let n = 0; n < l.length; n++) {
|
3371
3371
|
let u = l[n];
|
@@ -3382,7 +3382,7 @@ function Ge(t, a, o) {
|
|
3382
3382
|
const n = "expires=" + l.toUTCString();
|
3383
3383
|
document.cookie = t + "=" + a + ";" + n + ";path=/";
|
3384
3384
|
}
|
3385
|
-
const
|
3385
|
+
const pn = ce(
|
3386
3386
|
({
|
3387
3387
|
children: t,
|
3388
3388
|
variant: a,
|
@@ -3414,11 +3414,11 @@ const pa = de(
|
|
3414
3414
|
width: r,
|
3415
3415
|
height: c,
|
3416
3416
|
minWidth: m,
|
3417
|
-
maxWidth:
|
3417
|
+
maxWidth: h,
|
3418
3418
|
minHeight: V,
|
3419
3419
|
zIndex: z,
|
3420
|
-
fontSize:
|
3421
|
-
fontFamily:
|
3420
|
+
fontSize: v,
|
3421
|
+
fontFamily: y,
|
3422
3422
|
lineHeight: w,
|
3423
3423
|
textAlign: D,
|
3424
3424
|
fontWeight: O,
|
@@ -3435,7 +3435,7 @@ const pa = de(
|
|
3435
3435
|
overflowY: G,
|
3436
3436
|
...Z
|
3437
3437
|
}, I) => {
|
3438
|
-
const [J, L] =
|
3438
|
+
const [J, L] = Ce(!1), ne = () => {
|
3439
3439
|
L(!1), Ge(o, "true", l), d && typeof window < "u" && typeof window.gtag < "u" && window.gtag("consent", "update", {
|
3440
3440
|
analytics_storage: "granted"
|
3441
3441
|
}), n?.();
|
@@ -3444,21 +3444,21 @@ const pa = de(
|
|
3444
3444
|
analytics_storage: "denied"
|
3445
3445
|
}), u?.();
|
3446
3446
|
};
|
3447
|
-
return
|
3448
|
-
const oe =
|
3449
|
-
if (
|
3447
|
+
return we(() => {
|
3448
|
+
const oe = un(o), ae = oe !== "true" && oe !== "false", fe = oe === "true";
|
3449
|
+
if (ae && L(!0), d && typeof window < "u" && typeof window.gtag < "u") {
|
3450
3450
|
const me = fe ? "granted" : "denied";
|
3451
3451
|
window.gtag("consent", "update", {
|
3452
3452
|
analytics_storage: me
|
3453
3453
|
});
|
3454
3454
|
}
|
3455
|
-
}, [o, d]), J ? /* @__PURE__ */
|
3455
|
+
}, [o, d]), J ? /* @__PURE__ */ g(
|
3456
3456
|
"div",
|
3457
3457
|
{
|
3458
3458
|
ref: I,
|
3459
|
-
className:
|
3460
|
-
|
3461
|
-
|
3459
|
+
className: re(
|
3460
|
+
dn({ variant: a }),
|
3461
|
+
de({
|
3462
3462
|
margin: S,
|
3463
3463
|
marginTop: T,
|
3464
3464
|
marginBottom: H,
|
@@ -3478,11 +3478,11 @@ const pa = de(
|
|
3478
3478
|
width: r,
|
3479
3479
|
height: c,
|
3480
3480
|
minWidth: m,
|
3481
|
-
maxWidth:
|
3481
|
+
maxWidth: h,
|
3482
3482
|
minHeight: V,
|
3483
3483
|
zIndex: z,
|
3484
|
-
fontSize:
|
3485
|
-
fontFamily:
|
3484
|
+
fontSize: v,
|
3485
|
+
fontFamily: y,
|
3486
3486
|
lineHeight: w,
|
3487
3487
|
textAlign: D,
|
3488
3488
|
fontWeight: O,
|
@@ -3505,22 +3505,22 @@ const pa = de(
|
|
3505
3505
|
"aria-modal": "true",
|
3506
3506
|
"aria-labelledby": "consent-title",
|
3507
3507
|
...Z,
|
3508
|
-
children: /* @__PURE__ */ be("div", { className:
|
3508
|
+
children: /* @__PURE__ */ be("div", { className: ln, children: [
|
3509
3509
|
t,
|
3510
|
-
/* @__PURE__ */ be("div", { className:
|
3511
|
-
/* @__PURE__ */
|
3512
|
-
/* @__PURE__ */
|
3510
|
+
/* @__PURE__ */ be("div", { className: cn, children: [
|
3511
|
+
/* @__PURE__ */ g(He, { variant: "outline", size: "sm", onClick: ie, children: p?.actions.reject || "Reject" }),
|
3512
|
+
/* @__PURE__ */ g(He, { variant: "primary", size: "sm", onClick: ne, children: p?.actions.accept || "Accept" })
|
3513
3513
|
] })
|
3514
3514
|
] })
|
3515
3515
|
}
|
3516
3516
|
) : null;
|
3517
3517
|
}
|
3518
3518
|
);
|
3519
|
-
|
3520
|
-
function
|
3519
|
+
pn.displayName = "ConsentCookie";
|
3520
|
+
function mn(t) {
|
3521
3521
|
return t && t.__esModule && Object.prototype.hasOwnProperty.call(t, "default") ? t.default : t;
|
3522
3522
|
}
|
3523
|
-
function
|
3523
|
+
function fn(t) {
|
3524
3524
|
if (Object.prototype.hasOwnProperty.call(t, "__esModule")) return t;
|
3525
3525
|
var a = t.default;
|
3526
3526
|
if (typeof a == "function") {
|
@@ -3544,12 +3544,12 @@ function fa(t) {
|
|
3544
3544
|
});
|
3545
3545
|
}), o;
|
3546
3546
|
}
|
3547
|
-
var
|
3547
|
+
var Ee = {}, De = function() {
|
3548
3548
|
return De = Object.assign || function(t) {
|
3549
3549
|
for (var a, o = 1, l = arguments.length; o < l; o++) for (var n in a = arguments[o]) Object.prototype.hasOwnProperty.call(a, n) && (t[n] = a[n]);
|
3550
3550
|
return t;
|
3551
3551
|
}, De.apply(this, arguments);
|
3552
|
-
},
|
3552
|
+
}, gn = (function() {
|
3553
3553
|
function t(a, o, l) {
|
3554
3554
|
var n = this;
|
3555
3555
|
this.endVal = o, this.options = l, this.version = "2.8.0", this.defaults = { startVal: 0, decimalPlaces: 0, duration: 2, useEasing: !0, useGrouping: !0, useIndianSeparators: !1, smartEasingThreshold: 999, smartEasingAmount: 333, separator: ",", decimal: ".", prefix: "", suffix: "", enableScrollSpy: !1, scrollSpyDelay: 200, scrollSpyOnce: !1 }, this.finalEndVal = null, this.useEasing = !0, this.countDown = !1, this.error = "", this.startVal = 0, this.paused = !0, this.once = !1, this.count = function(u) {
|
@@ -3622,28 +3622,28 @@ var Te = {}, De = function() {
|
|
3622
3622
|
this.startTime = null, this.duration = 1e3 * Number(this.options.duration), this.remaining = this.duration;
|
3623
3623
|
}, t;
|
3624
3624
|
})();
|
3625
|
-
const
|
3625
|
+
const hn = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
3626
3626
|
__proto__: null,
|
3627
|
-
CountUp:
|
3628
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
3627
|
+
CountUp: gn
|
3628
|
+
}, Symbol.toStringTag, { value: "Module" })), xn = /* @__PURE__ */ fn(hn);
|
3629
3629
|
var Ke;
|
3630
|
-
function
|
3631
|
-
if (Ke) return
|
3632
|
-
Ke = 1, Object.defineProperty(
|
3633
|
-
var t =
|
3630
|
+
function bn() {
|
3631
|
+
if (Ke) return Ee;
|
3632
|
+
Ke = 1, Object.defineProperty(Ee, "__esModule", { value: !0 });
|
3633
|
+
var t = st, a = xn;
|
3634
3634
|
function o(s, i) {
|
3635
3635
|
var r = s == null ? null : typeof Symbol < "u" && s[Symbol.iterator] || s["@@iterator"];
|
3636
3636
|
if (r != null) {
|
3637
|
-
var c, m,
|
3637
|
+
var c, m, h, V, z = [], v = !0, y = !1;
|
3638
3638
|
try {
|
3639
|
-
if (
|
3639
|
+
if (h = (r = r.call(s)).next, i !== 0) for (; !(v = (c = h.call(r)).done) && (z.push(c.value), z.length !== i); v = !0) ;
|
3640
3640
|
} catch (w) {
|
3641
|
-
|
3641
|
+
y = !0, m = w;
|
3642
3642
|
} finally {
|
3643
3643
|
try {
|
3644
|
-
if (!
|
3644
|
+
if (!v && r.return != null && (V = r.return(), Object(V) !== V)) return;
|
3645
3645
|
} finally {
|
3646
|
-
if (
|
3646
|
+
if (y) throw m;
|
3647
3647
|
}
|
3648
3648
|
}
|
3649
3649
|
return z;
|
@@ -3704,18 +3704,18 @@ function ba() {
|
|
3704
3704
|
}
|
3705
3705
|
function x(s, i) {
|
3706
3706
|
if (s == null) return {};
|
3707
|
-
var r = {}, c = Object.keys(s), m,
|
3708
|
-
for (
|
3709
|
-
m = c[
|
3707
|
+
var r = {}, c = Object.keys(s), m, h;
|
3708
|
+
for (h = 0; h < c.length; h++)
|
3709
|
+
m = c[h], !(i.indexOf(m) >= 0) && (r[m] = s[m]);
|
3710
3710
|
return r;
|
3711
3711
|
}
|
3712
3712
|
function S(s, i) {
|
3713
3713
|
if (s == null) return {};
|
3714
3714
|
var r = x(s, i), c, m;
|
3715
3715
|
if (Object.getOwnPropertySymbols) {
|
3716
|
-
var
|
3717
|
-
for (m = 0; m <
|
3718
|
-
c =
|
3716
|
+
var h = Object.getOwnPropertySymbols(s);
|
3717
|
+
for (m = 0; m < h.length; m++)
|
3718
|
+
c = h[m], !(i.indexOf(c) >= 0) && Object.prototype.propertyIsEnumerable.call(s, c) && (r[c] = s[c]);
|
3719
3719
|
}
|
3720
3720
|
return r;
|
3721
3721
|
}
|
@@ -3754,15 +3754,15 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
3754
3754
|
}, []);
|
3755
3755
|
}
|
3756
3756
|
var B = function(i, r) {
|
3757
|
-
var c = r.decimal, m = r.decimals,
|
3757
|
+
var c = r.decimal, m = r.decimals, h = r.duration, V = r.easingFn, z = r.end, v = r.formattingFn, y = r.numerals, w = r.prefix, D = r.separator, O = r.start, U = r.suffix, _ = r.useEasing, j = r.useGrouping, N = r.useIndianSeparators, Y = r.enableScrollSpy, R = r.scrollSpyDelay, X = r.scrollSpyOnce, A = r.plugin;
|
3758
3758
|
return new a.CountUp(i, z, {
|
3759
3759
|
startVal: O,
|
3760
|
-
duration:
|
3760
|
+
duration: h,
|
3761
3761
|
decimal: c,
|
3762
3762
|
decimalPlaces: m,
|
3763
3763
|
easingFn: V,
|
3764
|
-
formattingFn:
|
3765
|
-
numerals:
|
3764
|
+
formattingFn: v,
|
3765
|
+
numerals: y,
|
3766
3766
|
separator: D,
|
3767
3767
|
prefix: w,
|
3768
3768
|
suffix: U,
|
@@ -3794,7 +3794,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
3794
3794
|
return L !== void 0;
|
3795
3795
|
})), c = t.useMemo(function() {
|
3796
3796
|
return n(n({}, K), r);
|
3797
|
-
}, [i]), m = c.ref,
|
3797
|
+
}, [i]), m = c.ref, h = c.startOnMount, V = c.enableReinitialize, z = c.delay, v = c.onEnd, y = c.onStart, w = c.onPauseResume, D = c.onReset, O = c.onUpdate, U = S(c, $), _ = t.useRef(), j = t.useRef(), N = t.useRef(!1), Y = b(function() {
|
3798
3798
|
return B(typeof m == "string" ? m : m.current, U);
|
3799
3799
|
}), R = b(function(I) {
|
3800
3800
|
var J = _.current;
|
@@ -3805,7 +3805,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
3805
3805
|
}), X = b(function() {
|
3806
3806
|
var I = function() {
|
3807
3807
|
return R(!0).start(function() {
|
3808
|
-
|
3808
|
+
v?.({
|
3809
3809
|
pauseResume: A,
|
3810
3810
|
reset: F,
|
3811
3811
|
start: G,
|
@@ -3813,7 +3813,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
3813
3813
|
});
|
3814
3814
|
});
|
3815
3815
|
};
|
3816
|
-
z && z > 0 ? j.current = setTimeout(I, z * 1e3) : I(),
|
3816
|
+
z && z > 0 ? j.current = setTimeout(I, z * 1e3) : I(), y?.({
|
3817
3817
|
pauseResume: A,
|
3818
3818
|
reset: F,
|
3819
3819
|
update: q
|
@@ -3839,7 +3839,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
3839
3839
|
}), G = b(function() {
|
3840
3840
|
F(), X();
|
3841
3841
|
}), Z = b(function(I) {
|
3842
|
-
|
3842
|
+
h && (I && F(), X());
|
3843
3843
|
});
|
3844
3844
|
return t.useEffect(function() {
|
3845
3845
|
N.current ? V && Z(!0) : (N.current = !0, Z());
|
@@ -3855,9 +3855,9 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
3855
3855
|
getCountUp: R
|
3856
3856
|
};
|
3857
3857
|
}, Q = ["className", "redraw", "containerProps", "children", "style"], ee = function(i) {
|
3858
|
-
var r = i.className, c = i.redraw, m = i.containerProps,
|
3859
|
-
ref:
|
3860
|
-
startOnMount: typeof
|
3858
|
+
var r = i.className, c = i.redraw, m = i.containerProps, h = i.children, V = i.style, z = S(i, Q), v = t.useRef(null), y = t.useRef(!1), w = P(n(n({}, z), {}, {
|
3859
|
+
ref: v,
|
3860
|
+
startOnMount: typeof h != "function" || i.delay === 0,
|
3861
3861
|
// component manually restarts
|
3862
3862
|
enableReinitialize: !1
|
3863
3863
|
})), D = w.start, O = w.reset, U = w.update, _ = w.pauseResume, j = w.getCountUp, N = b(function() {
|
@@ -3865,7 +3865,7 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
3865
3865
|
}), Y = b(function(A) {
|
3866
3866
|
i.preserveValue || O(), U(A);
|
3867
3867
|
}), R = b(function() {
|
3868
|
-
if (typeof i.children == "function" && !(
|
3868
|
+
if (typeof i.children == "function" && !(v.current instanceof Element)) {
|
3869
3869
|
console.error(`Couldn't find attached element to hook the CountUp instance into! Try to attach "containerRef" from the render prop to a an Element, eg. <span ref={containerRef} />.`);
|
3870
3870
|
return;
|
3871
3871
|
}
|
@@ -3874,17 +3874,17 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
3874
3874
|
t.useEffect(function() {
|
3875
3875
|
R();
|
3876
3876
|
}, [R]), t.useEffect(function() {
|
3877
|
-
|
3877
|
+
y.current && Y(i.end);
|
3878
3878
|
}, [i.end, Y]);
|
3879
3879
|
var X = c && i;
|
3880
3880
|
return t.useEffect(function() {
|
3881
|
-
c &&
|
3881
|
+
c && y.current && N();
|
3882
3882
|
}, [N, c, X]), t.useEffect(function() {
|
3883
|
-
!c &&
|
3883
|
+
!c && y.current && N();
|
3884
3884
|
}, [N, c, i.start, i.suffix, i.prefix, i.duration, i.separator, i.decimals, i.decimal, i.className, i.formattingFn]), t.useEffect(function() {
|
3885
|
-
|
3886
|
-
}, []), typeof
|
3887
|
-
countUpRef:
|
3885
|
+
y.current = !0;
|
3886
|
+
}, []), typeof h == "function" ? h({
|
3887
|
+
countUpRef: v,
|
3888
3888
|
start: D,
|
3889
3889
|
reset: O,
|
3890
3890
|
update: U,
|
@@ -3892,25 +3892,25 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho
|
|
3892
3892
|
getCountUp: j
|
3893
3893
|
}) : /* @__PURE__ */ t.createElement("span", f({
|
3894
3894
|
className: r,
|
3895
|
-
ref:
|
3895
|
+
ref: v,
|
3896
3896
|
style: V
|
3897
3897
|
}, m), typeof i.start < "u" ? j().formattingFn(i.start) : "");
|
3898
3898
|
};
|
3899
|
-
return
|
3899
|
+
return Ee.default = ee, Ee.useCountUp = P, Ee;
|
3900
3900
|
}
|
3901
|
-
var
|
3902
|
-
const
|
3903
|
-
var Pe = /* @__PURE__ */ new Map(), $e = /* @__PURE__ */ new WeakMap(), Ze = 0,
|
3904
|
-
function
|
3901
|
+
var vn = bn();
|
3902
|
+
const yn = /* @__PURE__ */ mn(vn);
|
3903
|
+
var Pe = /* @__PURE__ */ new Map(), $e = /* @__PURE__ */ new WeakMap(), Ze = 0, wn = void 0;
|
3904
|
+
function Sn(t) {
|
3905
3905
|
return t ? ($e.has(t) || (Ze += 1, $e.set(t, Ze.toString())), $e.get(t)) : "0";
|
3906
3906
|
}
|
3907
|
-
function
|
3907
|
+
function Cn(t) {
|
3908
3908
|
return Object.keys(t).sort().filter(
|
3909
3909
|
(a) => t[a] !== void 0
|
3910
|
-
).map((a) => `${a}_${a === "root" ?
|
3910
|
+
).map((a) => `${a}_${a === "root" ? Sn(t.root) : t[a]}`).toString();
|
3911
3911
|
}
|
3912
|
-
function
|
3913
|
-
const a =
|
3912
|
+
function zn(t) {
|
3913
|
+
const a = Cn(t);
|
3914
3914
|
let o = Pe.get(a);
|
3915
3915
|
if (!o) {
|
3916
3916
|
const l = /* @__PURE__ */ new Map();
|
@@ -3932,7 +3932,7 @@ function za(t) {
|
|
3932
3932
|
}
|
3933
3933
|
return o;
|
3934
3934
|
}
|
3935
|
-
function
|
3935
|
+
function kn(t, a, o = {}, l = wn) {
|
3936
3936
|
if (typeof window.IntersectionObserver > "u" && l !== void 0) {
|
3937
3937
|
const f = t.getBoundingClientRect();
|
3938
3938
|
return a(l, {
|
@@ -3946,12 +3946,12 @@ function ka(t, a, o = {}, l = wa) {
|
|
3946
3946
|
}), () => {
|
3947
3947
|
};
|
3948
3948
|
}
|
3949
|
-
const { id: n, observer: u, elements: p } =
|
3949
|
+
const { id: n, observer: u, elements: p } = zn(o), d = p.get(t) || [];
|
3950
3950
|
return p.has(t) || p.set(t, d), d.push(a), u.observe(t), function() {
|
3951
3951
|
d.splice(d.indexOf(a), 1), d.length === 0 && (p.delete(t), u.unobserve(t)), p.size === 0 && (u.disconnect(), Pe.delete(n));
|
3952
3952
|
};
|
3953
3953
|
}
|
3954
|
-
function
|
3954
|
+
function Rn({
|
3955
3955
|
threshold: t,
|
3956
3956
|
delay: a,
|
3957
3957
|
trackVisibility: o,
|
@@ -3964,15 +3964,15 @@ function Ra({
|
|
3964
3964
|
onChange: x
|
3965
3965
|
} = {}) {
|
3966
3966
|
var S;
|
3967
|
-
const [T, H] =
|
3967
|
+
const [T, H] = Te.useState(null), E = Te.useRef(x), [C, M] = Te.useState({
|
3968
3968
|
inView: !!d,
|
3969
3969
|
entry: void 0
|
3970
3970
|
});
|
3971
|
-
E.current = x,
|
3971
|
+
E.current = x, Te.useEffect(
|
3972
3972
|
() => {
|
3973
3973
|
if (p || !T) return;
|
3974
3974
|
let $;
|
3975
|
-
return $ =
|
3975
|
+
return $ = kn(
|
3976
3976
|
T,
|
3977
3977
|
(K, P) => {
|
3978
3978
|
M({
|
@@ -4009,7 +4009,7 @@ function Ra({
|
|
4009
4009
|
a
|
4010
4010
|
]
|
4011
4011
|
);
|
4012
|
-
const W = (S = C.entry) == null ? void 0 : S.target, b =
|
4012
|
+
const W = (S = C.entry) == null ? void 0 : S.target, b = Te.useRef(void 0);
|
4013
4013
|
!T && W && !u && !p && b.current !== W && (b.current = W, M({
|
4014
4014
|
inView: !!d,
|
4015
4015
|
entry: void 0
|
@@ -4017,13 +4017,13 @@ function Ra({
|
|
4017
4017
|
const B = [H, C.inView, C.entry];
|
4018
4018
|
return B.ref = B[0], B.inView = B[1], B.entry = B[2], B;
|
4019
4019
|
}
|
4020
|
-
const
|
4020
|
+
const Vn = k({
|
4021
4021
|
display: "flex",
|
4022
4022
|
flexDirection: "column",
|
4023
4023
|
alignItems: "center",
|
4024
4024
|
textAlign: "center",
|
4025
4025
|
color: e.colors.text
|
4026
|
-
}),
|
4026
|
+
}), Nn = k({
|
4027
4027
|
fontSize: e.fontSizes.lg,
|
4028
4028
|
paddingBottom: e.space.md,
|
4029
4029
|
fontWeight: "400",
|
@@ -4048,7 +4048,7 @@ const Va = k({
|
|
4048
4048
|
// },
|
4049
4049
|
// },
|
4050
4050
|
// },
|
4051
|
-
}),
|
4051
|
+
}), In = k({
|
4052
4052
|
fontSize: e.fontSizes.md,
|
4053
4053
|
color: e.colors.textSecondary,
|
4054
4054
|
lineHeight: e.lineHeights.normal,
|
@@ -4058,8 +4058,8 @@ const Va = k({
|
|
4058
4058
|
fontSize: e.fontSizes.lg
|
4059
4059
|
}
|
4060
4060
|
}
|
4061
|
-
}),
|
4062
|
-
base:
|
4061
|
+
}), Tn = se({
|
4062
|
+
base: Vn,
|
4063
4063
|
variants: {
|
4064
4064
|
size: {
|
4065
4065
|
sm: {
|
@@ -4154,7 +4154,7 @@ const Va = k({
|
|
4154
4154
|
align: "center"
|
4155
4155
|
// color: 'default',
|
4156
4156
|
}
|
4157
|
-
}),
|
4157
|
+
}), En = ce(
|
4158
4158
|
({
|
4159
4159
|
value: t,
|
4160
4160
|
label: a,
|
@@ -4186,11 +4186,11 @@ const Va = k({
|
|
4186
4186
|
display: r,
|
4187
4187
|
flexDirection: c,
|
4188
4188
|
justifyContent: m,
|
4189
|
-
flexWrap:
|
4189
|
+
flexWrap: h,
|
4190
4190
|
flex: V,
|
4191
4191
|
width: z,
|
4192
|
-
height:
|
4193
|
-
minWidth:
|
4192
|
+
height: v,
|
4193
|
+
minWidth: y,
|
4194
4194
|
maxWidth: w,
|
4195
4195
|
minHeight: D,
|
4196
4196
|
position: O,
|
@@ -4209,26 +4209,26 @@ const Va = k({
|
|
4209
4209
|
borderWidth: I,
|
4210
4210
|
borderStyle: J,
|
4211
4211
|
borderColor: L,
|
4212
|
-
boxShadow:
|
4212
|
+
boxShadow: ne,
|
4213
4213
|
opacity: ie,
|
4214
4214
|
overflow: oe,
|
4215
|
-
overflowX:
|
4215
|
+
overflowX: ae,
|
4216
4216
|
overflowY: fe,
|
4217
4217
|
...me
|
4218
4218
|
}, he) => {
|
4219
|
-
const [xe,
|
4219
|
+
const [xe, ue] = Rn({
|
4220
4220
|
threshold: u,
|
4221
4221
|
triggerOnce: !0
|
4222
4222
|
});
|
4223
4223
|
return /* @__PURE__ */ be(
|
4224
4224
|
H,
|
4225
4225
|
{
|
4226
|
-
ref: (
|
4227
|
-
xe(
|
4226
|
+
ref: (ve) => {
|
4227
|
+
xe(ve), he && (typeof he == "function" ? he(ve) : he.current = ve);
|
4228
4228
|
},
|
4229
|
-
className:
|
4230
|
-
|
4231
|
-
|
4229
|
+
className: re(
|
4230
|
+
Tn({ size: f, variant: x, align: S }),
|
4231
|
+
de({
|
4232
4232
|
margin: M,
|
4233
4233
|
marginTop: W,
|
4234
4234
|
marginBottom: b,
|
@@ -4243,11 +4243,11 @@ const Va = k({
|
|
4243
4243
|
display: r,
|
4244
4244
|
flexDirection: c,
|
4245
4245
|
justifyContent: m,
|
4246
|
-
flexWrap:
|
4246
|
+
flexWrap: h,
|
4247
4247
|
flex: V,
|
4248
4248
|
width: z,
|
4249
|
-
height:
|
4250
|
-
minWidth:
|
4249
|
+
height: v,
|
4250
|
+
minWidth: y,
|
4251
4251
|
maxWidth: w,
|
4252
4252
|
minHeight: D,
|
4253
4253
|
position: O,
|
@@ -4266,10 +4266,10 @@ const Va = k({
|
|
4266
4266
|
borderWidth: I,
|
4267
4267
|
borderStyle: J,
|
4268
4268
|
borderColor: L,
|
4269
|
-
boxShadow:
|
4269
|
+
boxShadow: ne,
|
4270
4270
|
opacity: ie,
|
4271
4271
|
overflow: oe,
|
4272
|
-
overflowX:
|
4272
|
+
overflowX: ae,
|
4273
4273
|
overflowY: fe
|
4274
4274
|
}),
|
4275
4275
|
E,
|
@@ -4277,19 +4277,19 @@ const Va = k({
|
|
4277
4277
|
),
|
4278
4278
|
...me,
|
4279
4279
|
children: [
|
4280
|
-
/* @__PURE__ */ be("div", { className:
|
4280
|
+
/* @__PURE__ */ be("div", { className: Nn, children: [
|
4281
4281
|
l,
|
4282
|
-
/* @__PURE__ */
|
4282
|
+
/* @__PURE__ */ g("span", { children: /* @__PURE__ */ g(yn, { end: ue ? t : 0, duration: n, separator: p, decimals: d }) }),
|
4283
4283
|
o
|
4284
4284
|
] }),
|
4285
|
-
/* @__PURE__ */
|
4285
|
+
/* @__PURE__ */ g("p", { className: In, children: a })
|
4286
4286
|
]
|
4287
4287
|
}
|
4288
4288
|
);
|
4289
4289
|
}
|
4290
4290
|
);
|
4291
|
-
|
4292
|
-
const
|
4291
|
+
En.displayName = "KeyNumber";
|
4292
|
+
const Wn = k({
|
4293
4293
|
display: "flex",
|
4294
4294
|
alignItems: "center",
|
4295
4295
|
gap: e.space.md,
|
@@ -4298,7 +4298,7 @@ const Wa = k({
|
|
4298
4298
|
gap: e.space.lg
|
4299
4299
|
}
|
4300
4300
|
}
|
4301
|
-
}),
|
4301
|
+
}), Bn = k({
|
4302
4302
|
display: "flex",
|
4303
4303
|
alignItems: "center",
|
4304
4304
|
justifyContent: "center",
|
@@ -4319,8 +4319,8 @@ const Wa = k({
|
|
4319
4319
|
// ':active': {
|
4320
4320
|
// transform: 'translateY(0) scale(1.05)',
|
4321
4321
|
// },
|
4322
|
-
}),
|
4323
|
-
base:
|
4322
|
+
}), jn = se({
|
4323
|
+
base: Wn,
|
4324
4324
|
variants: {
|
4325
4325
|
orientation: {
|
4326
4326
|
horizontal: {
|
@@ -4389,7 +4389,7 @@ const Wa = k({
|
|
4389
4389
|
size: "md",
|
4390
4390
|
variant: "default"
|
4391
4391
|
}
|
4392
|
-
}),
|
4392
|
+
}), An = ce(
|
4393
4393
|
({
|
4394
4394
|
links: t,
|
4395
4395
|
iconSize: a = "md",
|
@@ -4421,11 +4421,11 @@ const Wa = k({
|
|
4421
4421
|
minWidth: r,
|
4422
4422
|
maxWidth: c,
|
4423
4423
|
minHeight: m,
|
4424
|
-
position:
|
4424
|
+
position: h,
|
4425
4425
|
top: V,
|
4426
4426
|
bottom: z,
|
4427
|
-
left:
|
4428
|
-
right:
|
4427
|
+
left: v,
|
4428
|
+
right: y,
|
4429
4429
|
zIndex: w,
|
4430
4430
|
fontSize: D,
|
4431
4431
|
fontFamily: O,
|
@@ -4444,7 +4444,7 @@ const Wa = k({
|
|
4444
4444
|
overflowX: I,
|
4445
4445
|
overflowY: J,
|
4446
4446
|
...L
|
4447
|
-
},
|
4447
|
+
}, ne) => {
|
4448
4448
|
const ie = (oe) => ({
|
4449
4449
|
instagram: "socialInstagram",
|
4450
4450
|
linkedIn: "socialLinkedIn",
|
@@ -4455,13 +4455,13 @@ const Wa = k({
|
|
4455
4455
|
youtube: "socialYoutube",
|
4456
4456
|
tiktok: "socialTiktok"
|
4457
4457
|
})[oe];
|
4458
|
-
return /* @__PURE__ */
|
4458
|
+
return /* @__PURE__ */ g(
|
4459
4459
|
u,
|
4460
4460
|
{
|
4461
|
-
ref:
|
4462
|
-
className:
|
4463
|
-
|
4464
|
-
|
4461
|
+
ref: ne,
|
4462
|
+
className: re(
|
4463
|
+
jn({ orientation: o, size: l, variant: n }),
|
4464
|
+
de({
|
4465
4465
|
margin: f,
|
4466
4466
|
marginTop: x,
|
4467
4467
|
marginBottom: S,
|
@@ -4483,11 +4483,11 @@ const Wa = k({
|
|
4483
4483
|
minWidth: r,
|
4484
4484
|
maxWidth: c,
|
4485
4485
|
minHeight: m,
|
4486
|
-
position:
|
4486
|
+
position: h,
|
4487
4487
|
top: V,
|
4488
4488
|
bottom: z,
|
4489
|
-
left:
|
4490
|
-
right:
|
4489
|
+
left: v,
|
4490
|
+
right: y,
|
4491
4491
|
zIndex: w,
|
4492
4492
|
fontSize: D,
|
4493
4493
|
fontFamily: O,
|
@@ -4512,24 +4512,24 @@ const Wa = k({
|
|
4512
4512
|
role: "navigation",
|
4513
4513
|
"aria-label": "Social media links",
|
4514
4514
|
...L,
|
4515
|
-
children: t.map((oe,
|
4515
|
+
children: t.map((oe, ae) => /* @__PURE__ */ g(
|
4516
4516
|
"a",
|
4517
4517
|
{
|
4518
4518
|
href: oe.url,
|
4519
4519
|
target: "_blank",
|
4520
4520
|
rel: "noopener noreferrer",
|
4521
|
-
className:
|
4521
|
+
className: Bn,
|
4522
4522
|
"aria-label": oe.label || `Visit our ${oe.name} page`,
|
4523
|
-
children: /* @__PURE__ */
|
4523
|
+
children: /* @__PURE__ */ g(Se, { icon: ie(oe.name), size: a, "aria-hidden": "true" })
|
4524
4524
|
},
|
4525
|
-
`${oe.name}-${
|
4525
|
+
`${oe.name}-${ae}`
|
4526
4526
|
))
|
4527
4527
|
}
|
4528
4528
|
);
|
4529
4529
|
}
|
4530
4530
|
);
|
4531
|
-
|
4532
|
-
const
|
4531
|
+
An.displayName = "NavSocial";
|
4532
|
+
const Fn = k({
|
4533
4533
|
display: "flex",
|
4534
4534
|
alignItems: "center",
|
4535
4535
|
gap: e.space.md,
|
@@ -4560,8 +4560,8 @@ const Fa = k({
|
|
4560
4560
|
// outlineOffset: '2px',
|
4561
4561
|
// },
|
4562
4562
|
// },
|
4563
|
-
}), $
|
4564
|
-
base:
|
4563
|
+
}), $n = se({
|
4564
|
+
base: Fn,
|
4565
4565
|
variants: {
|
4566
4566
|
orientation: {
|
4567
4567
|
horizontal: {
|
@@ -4633,7 +4633,7 @@ const Fa = k({
|
|
4633
4633
|
variant: "default",
|
4634
4634
|
align: "left"
|
4635
4635
|
}
|
4636
|
-
}),
|
4636
|
+
}), Dn = ce(
|
4637
4637
|
({
|
4638
4638
|
children: t,
|
4639
4639
|
orientation: a,
|
@@ -4665,11 +4665,11 @@ const Fa = k({
|
|
4665
4665
|
minWidth: r,
|
4666
4666
|
maxWidth: c,
|
4667
4667
|
minHeight: m,
|
4668
|
-
position:
|
4668
|
+
position: h,
|
4669
4669
|
top: V,
|
4670
4670
|
bottom: z,
|
4671
|
-
left:
|
4672
|
-
right:
|
4671
|
+
left: v,
|
4672
|
+
right: y,
|
4673
4673
|
zIndex: w,
|
4674
4674
|
fontSize: D,
|
4675
4675
|
fontFamily: O,
|
@@ -4688,13 +4688,13 @@ const Fa = k({
|
|
4688
4688
|
overflowX: I,
|
4689
4689
|
overflowY: J,
|
4690
4690
|
...L
|
4691
|
-
},
|
4691
|
+
}, ne) => /* @__PURE__ */ g(
|
4692
4692
|
u,
|
4693
4693
|
{
|
4694
|
-
ref:
|
4695
|
-
className:
|
4696
|
-
$
|
4697
|
-
|
4694
|
+
ref: ne,
|
4695
|
+
className: re(
|
4696
|
+
$n({ orientation: a, size: o, variant: l, align: n }),
|
4697
|
+
de({
|
4698
4698
|
margin: f,
|
4699
4699
|
marginTop: x,
|
4700
4700
|
marginBottom: S,
|
@@ -4716,11 +4716,11 @@ const Fa = k({
|
|
4716
4716
|
minWidth: r,
|
4717
4717
|
maxWidth: c,
|
4718
4718
|
minHeight: m,
|
4719
|
-
position:
|
4719
|
+
position: h,
|
4720
4720
|
top: V,
|
4721
4721
|
bottom: z,
|
4722
|
-
left:
|
4723
|
-
right:
|
4722
|
+
left: v,
|
4723
|
+
right: y,
|
4724
4724
|
zIndex: w,
|
4725
4725
|
fontSize: D,
|
4726
4726
|
fontFamily: O,
|
@@ -4749,12 +4749,12 @@ const Fa = k({
|
|
4749
4749
|
}
|
4750
4750
|
)
|
4751
4751
|
);
|
4752
|
-
|
4753
|
-
const
|
4752
|
+
Dn.displayName = "NavLegal";
|
4753
|
+
const On = k({
|
4754
4754
|
position: "relative",
|
4755
4755
|
display: "inline-flex",
|
4756
4756
|
alignItems: "center"
|
4757
|
-
}),
|
4757
|
+
}), Mn = k({
|
4758
4758
|
appearance: "none",
|
4759
4759
|
background: "transparent",
|
4760
4760
|
border: `1px solid ${e.colors.border}`,
|
@@ -4781,7 +4781,7 @@ const Oa = k({
|
|
4781
4781
|
// opacity: '0.5',
|
4782
4782
|
// cursor: 'not-allowed',
|
4783
4783
|
// },
|
4784
|
-
}),
|
4784
|
+
}), Ln = k({
|
4785
4785
|
position: "absolute",
|
4786
4786
|
right: e.space.sm,
|
4787
4787
|
top: "50%",
|
@@ -4795,8 +4795,8 @@ const Oa = k({
|
|
4795
4795
|
// transform: 'translateY(-50%) rotate(180deg)',
|
4796
4796
|
// },
|
4797
4797
|
// },
|
4798
|
-
}),
|
4799
|
-
base:
|
4798
|
+
}), Hn = se({
|
4799
|
+
base: On,
|
4800
4800
|
variants: {
|
4801
4801
|
variant: {
|
4802
4802
|
default: {},
|
@@ -4850,7 +4850,7 @@ const Oa = k({
|
|
4850
4850
|
variant: "default",
|
4851
4851
|
size: "md"
|
4852
4852
|
}
|
4853
|
-
}),
|
4853
|
+
}), Pn = ce(
|
4854
4854
|
({
|
4855
4855
|
locales: t,
|
4856
4856
|
currentLocale: a,
|
@@ -4882,11 +4882,11 @@ const Oa = k({
|
|
4882
4882
|
height: r,
|
4883
4883
|
minWidth: c,
|
4884
4884
|
maxWidth: m,
|
4885
|
-
minHeight:
|
4885
|
+
minHeight: h,
|
4886
4886
|
position: V,
|
4887
4887
|
top: z,
|
4888
|
-
bottom:
|
4889
|
-
left:
|
4888
|
+
bottom: v,
|
4889
|
+
left: y,
|
4890
4890
|
right: w,
|
4891
4891
|
zIndex: D,
|
4892
4892
|
fontSize: O,
|
@@ -4905,18 +4905,18 @@ const Oa = k({
|
|
4905
4905
|
overflow: I,
|
4906
4906
|
overflowX: J,
|
4907
4907
|
overflowY: L,
|
4908
|
-
...
|
4908
|
+
...ne
|
4909
4909
|
}, ie) => {
|
4910
|
-
const oe = (
|
4911
|
-
o(
|
4910
|
+
const oe = (ae) => {
|
4911
|
+
o(ae.target.value);
|
4912
4912
|
};
|
4913
4913
|
return /* @__PURE__ */ be(
|
4914
4914
|
"div",
|
4915
4915
|
{
|
4916
4916
|
ref: ie,
|
4917
|
-
className:
|
4918
|
-
|
4919
|
-
|
4917
|
+
className: re(
|
4918
|
+
Hn({ variant: u, size: p }),
|
4919
|
+
de({
|
4920
4920
|
margin: x,
|
4921
4921
|
marginTop: S,
|
4922
4922
|
marginBottom: T,
|
@@ -4937,11 +4937,11 @@ const Oa = k({
|
|
4937
4937
|
height: r,
|
4938
4938
|
minWidth: c,
|
4939
4939
|
maxWidth: m,
|
4940
|
-
minHeight:
|
4940
|
+
minHeight: h,
|
4941
4941
|
position: V,
|
4942
4942
|
top: z,
|
4943
|
-
bottom:
|
4944
|
-
left:
|
4943
|
+
bottom: v,
|
4944
|
+
left: y,
|
4945
4945
|
right: w,
|
4946
4946
|
zIndex: D,
|
4947
4947
|
fontSize: O,
|
@@ -4964,34 +4964,34 @@ const Oa = k({
|
|
4964
4964
|
d,
|
4965
4965
|
f
|
4966
4966
|
),
|
4967
|
-
...
|
4967
|
+
...ne,
|
4968
4968
|
children: [
|
4969
4969
|
/* @__PURE__ */ be(
|
4970
4970
|
"select",
|
4971
4971
|
{
|
4972
|
-
className:
|
4972
|
+
className: Mn,
|
4973
4973
|
value: a,
|
4974
4974
|
onChange: oe,
|
4975
4975
|
disabled: l,
|
4976
4976
|
"aria-label": "Switch language",
|
4977
4977
|
children: [
|
4978
|
-
n && /* @__PURE__ */
|
4979
|
-
t.map((
|
4978
|
+
n && /* @__PURE__ */ g("option", { value: "", disabled: !0, children: n }),
|
4979
|
+
t.map((ae) => /* @__PURE__ */ g("option", { value: ae.code, disabled: ae.code === a, children: ae.label || ae.name }, ae.code))
|
4980
4980
|
]
|
4981
4981
|
}
|
4982
4982
|
),
|
4983
|
-
/* @__PURE__ */
|
4983
|
+
/* @__PURE__ */ g("div", { className: Ln, children: /* @__PURE__ */ g(Se, { icon: "caret", size: "sm" }) })
|
4984
4984
|
]
|
4985
4985
|
}
|
4986
4986
|
);
|
4987
4987
|
}
|
4988
4988
|
);
|
4989
|
-
|
4990
|
-
const
|
4989
|
+
Pn.displayName = "LanguageSwitcher";
|
4990
|
+
const Un = k({
|
4991
4991
|
position: "relative",
|
4992
4992
|
overflow: "hidden",
|
4993
4993
|
backgroundColor: e.colors.background
|
4994
|
-
}),
|
4994
|
+
}), _n = k({
|
4995
4995
|
top: "50%",
|
4996
4996
|
left: "50%",
|
4997
4997
|
width: "auto",
|
@@ -4999,7 +4999,7 @@ const Ua = k({
|
|
4999
4999
|
minHeight: "100%",
|
5000
5000
|
position: "absolute",
|
5001
5001
|
transform: "translate(-50%, -50%)"
|
5002
|
-
}),
|
5002
|
+
}), Yn = k({
|
5003
5003
|
top: 0,
|
5004
5004
|
left: 0,
|
5005
5005
|
width: "100%",
|
@@ -5014,13 +5014,13 @@ const Ua = k({
|
|
5014
5014
|
// pointerEvents: 'none',
|
5015
5015
|
// },
|
5016
5016
|
// },
|
5017
|
-
}),
|
5017
|
+
}), Xn = k({
|
5018
5018
|
width: "100%",
|
5019
5019
|
height: "100%",
|
5020
5020
|
minWidth: "100%",
|
5021
5021
|
minHeight: "100%",
|
5022
5022
|
objectFit: "cover"
|
5023
|
-
}),
|
5023
|
+
}), qn = k({
|
5024
5024
|
position: "absolute",
|
5025
5025
|
top: "50%",
|
5026
5026
|
left: "50%",
|
@@ -5073,7 +5073,7 @@ const Ua = k({
|
|
5073
5073
|
// outlineColor: themeContract.colors.primary,
|
5074
5074
|
// outlineOffset: '2px',
|
5075
5075
|
// },
|
5076
|
-
}),
|
5076
|
+
}), Gn = k([
|
5077
5077
|
Ue,
|
5078
5078
|
{
|
5079
5079
|
top: e.space.md,
|
@@ -5089,7 +5089,7 @@ const Ua = k({
|
|
5089
5089
|
}
|
5090
5090
|
}
|
5091
5091
|
}
|
5092
|
-
]),
|
5092
|
+
]), Kn = k([
|
5093
5093
|
Ue,
|
5094
5094
|
{
|
5095
5095
|
bottom: e.space.md,
|
@@ -5105,7 +5105,7 @@ const Ua = k({
|
|
5105
5105
|
}
|
5106
5106
|
}
|
5107
5107
|
}
|
5108
|
-
]),
|
5108
|
+
]), Zn = k([
|
5109
5109
|
Ue,
|
5110
5110
|
{
|
5111
5111
|
bottom: e.space.md,
|
@@ -5121,8 +5121,8 @@ const Ua = k({
|
|
5121
5121
|
}
|
5122
5122
|
}
|
5123
5123
|
}
|
5124
|
-
]),
|
5125
|
-
base:
|
5124
|
+
]), Jn = se({
|
5125
|
+
base: Un,
|
5126
5126
|
variants: {
|
5127
5127
|
size: {
|
5128
5128
|
sm: {
|
@@ -5161,7 +5161,7 @@ const Ua = k({
|
|
5161
5161
|
size: "md",
|
5162
5162
|
aspectRatio: "16:9"
|
5163
5163
|
}
|
5164
|
-
}),
|
5164
|
+
}), et = ce(
|
5165
5165
|
({
|
5166
5166
|
video: t,
|
5167
5167
|
poster: a,
|
@@ -5193,11 +5193,11 @@ const Ua = k({
|
|
5193
5193
|
display: r,
|
5194
5194
|
flexDirection: c,
|
5195
5195
|
justifyContent: m,
|
5196
|
-
flexWrap:
|
5196
|
+
flexWrap: h,
|
5197
5197
|
flex: V,
|
5198
5198
|
width: z,
|
5199
|
-
height:
|
5200
|
-
minWidth:
|
5199
|
+
height: v,
|
5200
|
+
minWidth: y,
|
5201
5201
|
maxWidth: w,
|
5202
5202
|
minHeight: D,
|
5203
5203
|
position: O,
|
@@ -5216,42 +5216,42 @@ const Ua = k({
|
|
5216
5216
|
borderRadius: I,
|
5217
5217
|
borderWidth: J,
|
5218
5218
|
borderStyle: L,
|
5219
|
-
borderColor:
|
5219
|
+
borderColor: ne,
|
5220
5220
|
boxShadow: ie,
|
5221
5221
|
opacity: oe,
|
5222
|
-
overflow:
|
5222
|
+
overflow: ae,
|
5223
5223
|
overflowX: fe,
|
5224
5224
|
overflowY: me,
|
5225
5225
|
...he
|
5226
5226
|
}, xe) => {
|
5227
|
-
const
|
5228
|
-
f && f(),
|
5229
|
-
},
|
5230
|
-
x && x(),
|
5227
|
+
const ue = Le(null), [ve, ze] = Ce(!1), [ke, Be] = Ce(o || l), je = () => {
|
5228
|
+
f && f(), ue.current?.play(), ze(!0);
|
5229
|
+
}, Ve = () => {
|
5230
|
+
x && x(), ue.current?.pause(), ze(!1);
|
5231
5231
|
}, Ae = () => {
|
5232
|
-
|
5232
|
+
ue.current?.pause(), ze(!1);
|
5233
5233
|
}, Oe = () => {
|
5234
|
-
const
|
5235
|
-
Be(
|
5234
|
+
const le = !ke;
|
5235
|
+
Be(le), ue.current && (ue.current.muted = le);
|
5236
5236
|
}, Me = () => {
|
5237
|
-
S && S(),
|
5238
|
-
},
|
5239
|
-
|
5237
|
+
S && S(), Ve();
|
5238
|
+
}, Ie = (le) => {
|
5239
|
+
le.key === "Escape" && Ve();
|
5240
5240
|
};
|
5241
|
-
return
|
5242
|
-
window.removeEventListener("keydown",
|
5243
|
-
}), []),
|
5244
|
-
|
5245
|
-
}, [
|
5241
|
+
return we(() => (window.addEventListener("keydown", Ie), () => {
|
5242
|
+
window.removeEventListener("keydown", Ie);
|
5243
|
+
}), []), we(() => {
|
5244
|
+
ue.current && (ue.current.muted = ke);
|
5245
|
+
}, [ke]), /* @__PURE__ */ be(
|
5246
5246
|
"div",
|
5247
5247
|
{
|
5248
5248
|
ref: xe,
|
5249
|
-
className:
|
5250
|
-
|
5249
|
+
className: re(
|
5250
|
+
Jn({
|
5251
5251
|
size: p ? "fullWidth" : T,
|
5252
5252
|
aspectRatio: H
|
5253
5253
|
}),
|
5254
|
-
|
5254
|
+
de({
|
5255
5255
|
margin: M,
|
5256
5256
|
marginTop: W,
|
5257
5257
|
marginBottom: b,
|
@@ -5266,11 +5266,11 @@ const Ua = k({
|
|
5266
5266
|
display: r,
|
5267
5267
|
flexDirection: c,
|
5268
5268
|
justifyContent: m,
|
5269
|
-
flexWrap:
|
5269
|
+
flexWrap: h,
|
5270
5270
|
flex: V,
|
5271
5271
|
width: z,
|
5272
|
-
height:
|
5273
|
-
minWidth:
|
5272
|
+
height: v,
|
5273
|
+
minWidth: y,
|
5274
5274
|
maxWidth: w,
|
5275
5275
|
minHeight: D,
|
5276
5276
|
position: O,
|
@@ -5289,10 +5289,10 @@ const Ua = k({
|
|
5289
5289
|
borderRadius: I,
|
5290
5290
|
borderWidth: J,
|
5291
5291
|
borderStyle: L,
|
5292
|
-
borderColor:
|
5292
|
+
borderColor: ne,
|
5293
5293
|
boxShadow: ie,
|
5294
5294
|
opacity: oe,
|
5295
|
-
overflow:
|
5295
|
+
overflow: ae,
|
5296
5296
|
overflowX: fe,
|
5297
5297
|
overflowY: me
|
5298
5298
|
}),
|
@@ -5301,19 +5301,19 @@ const Ua = k({
|
|
5301
5301
|
),
|
5302
5302
|
...he,
|
5303
5303
|
children: [
|
5304
|
-
/* @__PURE__ */
|
5305
|
-
a && /* @__PURE__ */
|
5306
|
-
!u && !o && /* @__PURE__ */
|
5307
|
-
d && /* @__PURE__ */
|
5308
|
-
|
5309
|
-
n && /* @__PURE__ */
|
5304
|
+
/* @__PURE__ */ g("video", { ref: ue, className: _n, playsInline: !0, muted: ke, autoPlay: o, onEnded: Me, children: /* @__PURE__ */ g("source", { src: t, type: "video/mp4" }) }),
|
5305
|
+
a && /* @__PURE__ */ g("div", { className: Yn, "data-playing": ve, children: /* @__PURE__ */ g("img", { src: a, alt: "Video poster", className: Xn, sizes: "2560" }) }),
|
5306
|
+
!u && !o && /* @__PURE__ */ g("button", { className: qn, "data-playing": ve, onClick: je, "aria-label": "Play video", type: "button", children: /* @__PURE__ */ g(Se, { icon: "play", size: "lg" }) }),
|
5307
|
+
d && /* @__PURE__ */ g("button", { className: Gn, onClick: Ve, "aria-label": "Close video", type: "button", children: /* @__PURE__ */ g(Se, { icon: "close", size: "md" }) }),
|
5308
|
+
ve && n && /* @__PURE__ */ g("button", { className: Kn, onClick: Ae, "aria-label": "Pause video", type: "button", children: /* @__PURE__ */ g(Se, { icon: "pause", size: "md" }) }),
|
5309
|
+
n && /* @__PURE__ */ g("button", { className: Zn, onClick: Oe, "aria-label": ke ? "Unmute video" : "Mute video", type: "button", children: /* @__PURE__ */ g(Se, { icon: ke ? "volumeMute" : "volumeUp", size: "md" }) })
|
5310
5310
|
]
|
5311
5311
|
}
|
5312
5312
|
);
|
5313
5313
|
}
|
5314
5314
|
);
|
5315
|
-
|
5316
|
-
const
|
5315
|
+
et.displayName = "Video";
|
5316
|
+
const Qn = k({
|
5317
5317
|
height: 0,
|
5318
5318
|
width: "100vw",
|
5319
5319
|
overflow: "hidden",
|
@@ -5330,8 +5330,8 @@ const Qa = k({
|
|
5330
5330
|
marginRight: "calc(-50vw + 50%)"
|
5331
5331
|
}
|
5332
5332
|
}
|
5333
|
-
}),
|
5334
|
-
base:
|
5333
|
+
}), ea = se({
|
5334
|
+
base: Qn,
|
5335
5335
|
variants: {
|
5336
5336
|
aspectRatio: {
|
5337
5337
|
"16:9": {
|
@@ -5351,7 +5351,7 @@ const Qa = k({
|
|
5351
5351
|
defaultVariants: {
|
5352
5352
|
aspectRatio: "16:9"
|
5353
5353
|
}
|
5354
|
-
}),
|
5354
|
+
}), ta = ce(
|
5355
5355
|
({
|
5356
5356
|
video: t,
|
5357
5357
|
poster: a,
|
@@ -5383,11 +5383,11 @@ const Qa = k({
|
|
5383
5383
|
flex: r,
|
5384
5384
|
width: c,
|
5385
5385
|
height: m,
|
5386
|
-
minWidth:
|
5386
|
+
minWidth: h,
|
5387
5387
|
maxWidth: V,
|
5388
5388
|
minHeight: z,
|
5389
|
-
position:
|
5390
|
-
top:
|
5389
|
+
position: v,
|
5390
|
+
top: y,
|
5391
5391
|
bottom: w,
|
5392
5392
|
left: D,
|
5393
5393
|
right: O,
|
@@ -5406,16 +5406,16 @@ const Qa = k({
|
|
5406
5406
|
boxShadow: I,
|
5407
5407
|
opacity: J,
|
5408
5408
|
overflow: L,
|
5409
|
-
overflowX:
|
5409
|
+
overflowX: ne,
|
5410
5410
|
overflowY: ie,
|
5411
5411
|
...oe
|
5412
|
-
},
|
5412
|
+
}, ae) => /* @__PURE__ */ g(
|
5413
5413
|
"div",
|
5414
5414
|
{
|
5415
|
-
ref:
|
5416
|
-
className:
|
5417
|
-
|
5418
|
-
|
5415
|
+
ref: ae,
|
5416
|
+
className: re(
|
5417
|
+
ea({ aspectRatio: f }),
|
5418
|
+
de({
|
5419
5419
|
margin: T,
|
5420
5420
|
marginTop: H,
|
5421
5421
|
marginBottom: E,
|
@@ -5434,11 +5434,11 @@ const Qa = k({
|
|
5434
5434
|
flex: r,
|
5435
5435
|
width: c,
|
5436
5436
|
height: m,
|
5437
|
-
minWidth:
|
5437
|
+
minWidth: h,
|
5438
5438
|
maxWidth: V,
|
5439
5439
|
minHeight: z,
|
5440
|
-
position:
|
5441
|
-
top:
|
5440
|
+
position: v,
|
5441
|
+
top: y,
|
5442
5442
|
bottom: w,
|
5443
5443
|
left: D,
|
5444
5444
|
right: O,
|
@@ -5457,15 +5457,15 @@ const Qa = k({
|
|
5457
5457
|
boxShadow: I,
|
5458
5458
|
opacity: J,
|
5459
5459
|
overflow: L,
|
5460
|
-
overflowX:
|
5460
|
+
overflowX: ne,
|
5461
5461
|
overflowY: ie
|
5462
5462
|
}),
|
5463
5463
|
x,
|
5464
5464
|
S
|
5465
5465
|
),
|
5466
5466
|
...oe,
|
5467
|
-
children: /* @__PURE__ */
|
5468
|
-
|
5467
|
+
children: /* @__PURE__ */ g(
|
5468
|
+
et,
|
5469
5469
|
{
|
5470
5470
|
video: t,
|
5471
5471
|
poster: a,
|
@@ -5482,12 +5482,12 @@ const Qa = k({
|
|
5482
5482
|
}
|
5483
5483
|
)
|
5484
5484
|
);
|
5485
|
-
|
5486
|
-
const
|
5485
|
+
ta.displayName = "VideoFullWidth";
|
5486
|
+
const na = k({
|
5487
5487
|
width: "100%",
|
5488
5488
|
backgroundColor: "transparent"
|
5489
|
-
}),
|
5490
|
-
base:
|
5489
|
+
}), aa = se({
|
5490
|
+
base: na,
|
5491
5491
|
variants: {
|
5492
5492
|
spacing: {
|
5493
5493
|
none: {
|
@@ -5536,7 +5536,7 @@ const an = k({
|
|
5536
5536
|
spacing: "md",
|
5537
5537
|
layout: "stacked"
|
5538
5538
|
}
|
5539
|
-
}),
|
5539
|
+
}), ia = ce(
|
5540
5540
|
({
|
5541
5541
|
children: t,
|
5542
5542
|
spacing: a,
|
@@ -5568,11 +5568,11 @@ const an = k({
|
|
5568
5568
|
position: r,
|
5569
5569
|
top: c,
|
5570
5570
|
bottom: m,
|
5571
|
-
left:
|
5571
|
+
left: h,
|
5572
5572
|
right: V,
|
5573
5573
|
zIndex: z,
|
5574
|
-
fontSize:
|
5575
|
-
fontFamily:
|
5574
|
+
fontSize: v,
|
5575
|
+
fontFamily: y,
|
5576
5576
|
lineHeight: w,
|
5577
5577
|
textAlign: D,
|
5578
5578
|
fontWeight: O,
|
@@ -5588,13 +5588,13 @@ const an = k({
|
|
5588
5588
|
overflowX: q,
|
5589
5589
|
overflowY: G,
|
5590
5590
|
...Z
|
5591
|
-
}, I) => /* @__PURE__ */
|
5591
|
+
}, I) => /* @__PURE__ */ g(
|
5592
5592
|
"form",
|
5593
5593
|
{
|
5594
5594
|
ref: I,
|
5595
|
-
className:
|
5596
|
-
|
5597
|
-
|
5595
|
+
className: re(
|
5596
|
+
aa({ spacing: a, layout: o }),
|
5597
|
+
de({
|
5598
5598
|
margin: u,
|
5599
5599
|
marginTop: p,
|
5600
5600
|
marginBottom: d,
|
@@ -5619,11 +5619,11 @@ const an = k({
|
|
5619
5619
|
position: r,
|
5620
5620
|
top: c,
|
5621
5621
|
bottom: m,
|
5622
|
-
left:
|
5622
|
+
left: h,
|
5623
5623
|
right: V,
|
5624
5624
|
zIndex: z,
|
5625
|
-
fontSize:
|
5626
|
-
fontFamily:
|
5625
|
+
fontSize: v,
|
5626
|
+
fontFamily: y,
|
5627
5627
|
lineHeight: w,
|
5628
5628
|
textAlign: D,
|
5629
5629
|
fontWeight: O,
|
@@ -5647,12 +5647,12 @@ const an = k({
|
|
5647
5647
|
}
|
5648
5648
|
)
|
5649
5649
|
);
|
5650
|
-
|
5651
|
-
const
|
5650
|
+
ia.displayName = "Form";
|
5651
|
+
const oa = k({
|
5652
5652
|
display: "flex",
|
5653
5653
|
width: "100%"
|
5654
|
-
}),
|
5655
|
-
base:
|
5654
|
+
}), ra = se({
|
5655
|
+
base: oa,
|
5656
5656
|
variants: {
|
5657
5657
|
align: {
|
5658
5658
|
left: {
|
@@ -5707,7 +5707,7 @@ const rn = k({
|
|
5707
5707
|
variant: "default",
|
5708
5708
|
spacing: "sm"
|
5709
5709
|
}
|
5710
|
-
}),
|
5710
|
+
}), sa = ce(
|
5711
5711
|
({
|
5712
5712
|
children: t,
|
5713
5713
|
align: a,
|
@@ -5739,11 +5739,11 @@ const rn = k({
|
|
5739
5739
|
minWidth: r,
|
5740
5740
|
maxWidth: c,
|
5741
5741
|
minHeight: m,
|
5742
|
-
position:
|
5742
|
+
position: h,
|
5743
5743
|
top: V,
|
5744
5744
|
bottom: z,
|
5745
|
-
left:
|
5746
|
-
right:
|
5745
|
+
left: v,
|
5746
|
+
right: y,
|
5747
5747
|
zIndex: w,
|
5748
5748
|
fontSize: D,
|
5749
5749
|
fontFamily: O,
|
@@ -5762,15 +5762,15 @@ const rn = k({
|
|
5762
5762
|
overflowX: I,
|
5763
5763
|
overflowY: J,
|
5764
5764
|
...L
|
5765
|
-
},
|
5765
|
+
}, ne) => {
|
5766
5766
|
let ie = o;
|
5767
|
-
return n && (ie = "actions"), u && (ie = "message"), /* @__PURE__ */
|
5767
|
+
return n && (ie = "actions"), u && (ie = "message"), /* @__PURE__ */ g(
|
5768
5768
|
"div",
|
5769
5769
|
{
|
5770
|
-
ref:
|
5771
|
-
className:
|
5772
|
-
|
5773
|
-
|
5770
|
+
ref: ne,
|
5771
|
+
className: re(
|
5772
|
+
ra({ align: a, variant: ie, spacing: l }),
|
5773
|
+
de({
|
5774
5774
|
margin: f,
|
5775
5775
|
marginTop: x,
|
5776
5776
|
marginBottom: S,
|
@@ -5792,11 +5792,11 @@ const rn = k({
|
|
5792
5792
|
minWidth: r,
|
5793
5793
|
maxWidth: c,
|
5794
5794
|
minHeight: m,
|
5795
|
-
position:
|
5795
|
+
position: h,
|
5796
5796
|
top: V,
|
5797
5797
|
bottom: z,
|
5798
|
-
left:
|
5799
|
-
right:
|
5798
|
+
left: v,
|
5799
|
+
right: y,
|
5800
5800
|
zIndex: w,
|
5801
5801
|
fontSize: D,
|
5802
5802
|
fontFamily: O,
|
@@ -5824,13 +5824,13 @@ const rn = k({
|
|
5824
5824
|
);
|
5825
5825
|
}
|
5826
5826
|
);
|
5827
|
-
|
5828
|
-
const
|
5827
|
+
sa.displayName = "Row";
|
5828
|
+
const la = k({
|
5829
5829
|
display: "flex",
|
5830
5830
|
flexDirection: "column",
|
5831
5831
|
width: "100%",
|
5832
5832
|
gap: e.space.xs
|
5833
|
-
}),
|
5833
|
+
}), ca = k({
|
5834
5834
|
fontFamily: e.fonts.body,
|
5835
5835
|
fontSize: e.fontSizes.sm,
|
5836
5836
|
fontWeight: e.fontWeights.medium,
|
@@ -5846,7 +5846,7 @@ const cn = k({
|
|
5846
5846
|
// },
|
5847
5847
|
// },
|
5848
5848
|
// },
|
5849
|
-
}),
|
5849
|
+
}), tt = k({
|
5850
5850
|
appearance: "none",
|
5851
5851
|
backgroundColor: e.colors.background,
|
5852
5852
|
border: `1px solid ${e.colors.border}`,
|
@@ -5885,13 +5885,13 @@ const cn = k({
|
|
5885
5885
|
// borderColor: themeContract.colors.error,
|
5886
5886
|
// },
|
5887
5887
|
// },
|
5888
|
-
}),
|
5889
|
-
|
5888
|
+
}), da = k([
|
5889
|
+
tt,
|
5890
5890
|
{
|
5891
5891
|
resize: "vertical",
|
5892
5892
|
minHeight: "80px"
|
5893
5893
|
}
|
5894
|
-
]),
|
5894
|
+
]), ua = k({
|
5895
5895
|
display: "flex",
|
5896
5896
|
flexDirection: "column",
|
5897
5897
|
gap: e.space.xs
|
@@ -5900,8 +5900,8 @@ const cn = k({
|
|
5900
5900
|
fontSize: e.fontSizes.xs,
|
5901
5901
|
lineHeight: e.lineHeights.tight,
|
5902
5902
|
fontFamily: e.fonts.body
|
5903
|
-
}),
|
5904
|
-
base:
|
5903
|
+
}), pa = se({
|
5904
|
+
base: la,
|
5905
5905
|
variants: {
|
5906
5906
|
size: {
|
5907
5907
|
sm: {
|
@@ -5934,7 +5934,7 @@ const cn = k({
|
|
5934
5934
|
defaultVariants: {
|
5935
5935
|
size: "md"
|
5936
5936
|
}
|
5937
|
-
}),
|
5937
|
+
}), ma = ce(
|
5938
5938
|
({
|
5939
5939
|
name: t,
|
5940
5940
|
label: a,
|
@@ -5966,11 +5966,11 @@ const cn = k({
|
|
5966
5966
|
justifyContent: r,
|
5967
5967
|
flexWrap: c,
|
5968
5968
|
flex: m,
|
5969
|
-
width:
|
5969
|
+
width: h,
|
5970
5970
|
height: V,
|
5971
5971
|
minWidth: z,
|
5972
|
-
maxWidth:
|
5973
|
-
minHeight:
|
5972
|
+
maxWidth: v,
|
5973
|
+
minHeight: y,
|
5974
5974
|
position: w,
|
5975
5975
|
top: D,
|
5976
5976
|
bottom: O,
|
@@ -5989,20 +5989,20 @@ const cn = k({
|
|
5989
5989
|
borderStyle: I,
|
5990
5990
|
borderColor: J,
|
5991
5991
|
boxShadow: L,
|
5992
|
-
opacity:
|
5992
|
+
opacity: ne,
|
5993
5993
|
overflow: ie,
|
5994
5994
|
overflowX: oe,
|
5995
|
-
overflowY:
|
5995
|
+
overflowY: ae,
|
5996
5996
|
...fe
|
5997
5997
|
}, me) => {
|
5998
|
-
const he =
|
5998
|
+
const he = lt(() => d ? Array.isArray(d) ? d.length > 0 : !!d : !1, [d]), xe = f === "textarea";
|
5999
5999
|
return /* @__PURE__ */ be(
|
6000
6000
|
"div",
|
6001
6001
|
{
|
6002
6002
|
ref: me,
|
6003
|
-
className:
|
6004
|
-
|
6005
|
-
|
6003
|
+
className: re(
|
6004
|
+
pa({ size: S }),
|
6005
|
+
de({
|
6006
6006
|
margin: E,
|
6007
6007
|
marginTop: C,
|
6008
6008
|
marginBottom: M,
|
@@ -6019,11 +6019,11 @@ const cn = k({
|
|
6019
6019
|
justifyContent: r,
|
6020
6020
|
flexWrap: c,
|
6021
6021
|
flex: m,
|
6022
|
-
width:
|
6022
|
+
width: h,
|
6023
6023
|
height: V,
|
6024
6024
|
minWidth: z,
|
6025
|
-
maxWidth:
|
6026
|
-
minHeight:
|
6025
|
+
maxWidth: v,
|
6026
|
+
minHeight: y,
|
6027
6027
|
position: w,
|
6028
6028
|
top: D,
|
6029
6029
|
bottom: O,
|
@@ -6042,18 +6042,18 @@ const cn = k({
|
|
6042
6042
|
borderStyle: I,
|
6043
6043
|
borderColor: J,
|
6044
6044
|
boxShadow: L,
|
6045
|
-
opacity:
|
6045
|
+
opacity: ne,
|
6046
6046
|
overflow: ie,
|
6047
6047
|
overflowX: oe,
|
6048
|
-
overflowY:
|
6048
|
+
overflowY: ae
|
6049
6049
|
}),
|
6050
6050
|
T,
|
6051
6051
|
H
|
6052
6052
|
),
|
6053
6053
|
...fe,
|
6054
6054
|
children: [
|
6055
|
-
a && /* @__PURE__ */
|
6056
|
-
xe ? /* @__PURE__ */
|
6055
|
+
a && /* @__PURE__ */ g("label", { htmlFor: t, className: ca, "data-required": u, children: a }),
|
6056
|
+
xe ? /* @__PURE__ */ g(
|
6057
6057
|
"textarea",
|
6058
6058
|
{
|
6059
6059
|
id: t,
|
@@ -6062,12 +6062,12 @@ const cn = k({
|
|
6062
6062
|
value: o,
|
6063
6063
|
disabled: n,
|
6064
6064
|
placeholder: p,
|
6065
|
-
className:
|
6065
|
+
className: da,
|
6066
6066
|
onChange: x,
|
6067
6067
|
"data-error": he,
|
6068
6068
|
required: u
|
6069
6069
|
}
|
6070
|
-
) : /* @__PURE__ */
|
6070
|
+
) : /* @__PURE__ */ g(
|
6071
6071
|
"input",
|
6072
6072
|
{
|
6073
6073
|
id: t,
|
@@ -6076,20 +6076,20 @@ const cn = k({
|
|
6076
6076
|
value: o,
|
6077
6077
|
disabled: n,
|
6078
6078
|
placeholder: p,
|
6079
|
-
className:
|
6079
|
+
className: tt,
|
6080
6080
|
onChange: x,
|
6081
6081
|
"data-error": he,
|
6082
6082
|
required: u
|
6083
6083
|
}
|
6084
6084
|
),
|
6085
|
-
he && /* @__PURE__ */
|
6085
|
+
he && /* @__PURE__ */ g("div", { className: ua, children: Array.isArray(d) ? d.map((ue, ve) => /* @__PURE__ */ g("span", { className: Je, children: ue }, ve)) : /* @__PURE__ */ g("span", { className: Je, children: d }) })
|
6086
6086
|
]
|
6087
6087
|
}
|
6088
6088
|
);
|
6089
6089
|
}
|
6090
6090
|
);
|
6091
|
-
|
6092
|
-
const
|
6091
|
+
ma.displayName = "TextField";
|
6092
|
+
const fa = k({
|
6093
6093
|
fontFamily: e.fonts.body,
|
6094
6094
|
fontSize: e.fontSizes.sm,
|
6095
6095
|
fontWeight: e.fontWeights.medium,
|
@@ -6108,8 +6108,8 @@ const gn = k({
|
|
6108
6108
|
// },
|
6109
6109
|
// },
|
6110
6110
|
// },
|
6111
|
-
}),
|
6112
|
-
base:
|
6111
|
+
}), ga = se({
|
6112
|
+
base: fa,
|
6113
6113
|
variants: {
|
6114
6114
|
size: {
|
6115
6115
|
sm: {
|
@@ -6135,7 +6135,7 @@ const gn = k({
|
|
6135
6135
|
size: "md",
|
6136
6136
|
variant: "default"
|
6137
6137
|
}
|
6138
|
-
}),
|
6138
|
+
}), ha = ce(
|
6139
6139
|
({
|
6140
6140
|
label: t,
|
6141
6141
|
name: a,
|
@@ -6167,11 +6167,11 @@ const gn = k({
|
|
6167
6167
|
maxWidth: r,
|
6168
6168
|
minHeight: c,
|
6169
6169
|
position: m,
|
6170
|
-
top:
|
6170
|
+
top: h,
|
6171
6171
|
bottom: V,
|
6172
6172
|
left: z,
|
6173
|
-
right:
|
6174
|
-
zIndex:
|
6173
|
+
right: v,
|
6174
|
+
zIndex: y,
|
6175
6175
|
fontSize: w,
|
6176
6176
|
fontFamily: D,
|
6177
6177
|
lineHeight: O,
|
@@ -6189,14 +6189,14 @@ const gn = k({
|
|
6189
6189
|
overflowX: Z,
|
6190
6190
|
overflowY: I,
|
6191
6191
|
...J
|
6192
|
-
}, L) => /* @__PURE__ */
|
6192
|
+
}, L) => /* @__PURE__ */ g(
|
6193
6193
|
"label",
|
6194
6194
|
{
|
6195
6195
|
ref: L,
|
6196
6196
|
htmlFor: a,
|
6197
|
-
className:
|
6198
|
-
|
6199
|
-
|
6197
|
+
className: re(
|
6198
|
+
ga({ size: l, variant: n }),
|
6199
|
+
de({
|
6200
6200
|
margin: d,
|
6201
6201
|
marginTop: f,
|
6202
6202
|
marginBottom: x,
|
@@ -6219,11 +6219,11 @@ const gn = k({
|
|
6219
6219
|
maxWidth: r,
|
6220
6220
|
minHeight: c,
|
6221
6221
|
position: m,
|
6222
|
-
top:
|
6222
|
+
top: h,
|
6223
6223
|
bottom: V,
|
6224
6224
|
left: z,
|
6225
|
-
right:
|
6226
|
-
zIndex:
|
6225
|
+
right: v,
|
6226
|
+
zIndex: y,
|
6227
6227
|
fontSize: w,
|
6228
6228
|
fontFamily: D,
|
6229
6229
|
lineHeight: O,
|
@@ -6250,8 +6250,8 @@ const gn = k({
|
|
6250
6250
|
}
|
6251
6251
|
)
|
6252
6252
|
);
|
6253
|
-
|
6254
|
-
const
|
6253
|
+
ha.displayName = "Label";
|
6254
|
+
const xa = k({
|
6255
6255
|
appearance: "none",
|
6256
6256
|
backgroundColor: e.colors.background,
|
6257
6257
|
border: `1px solid ${e.colors.border}`,
|
@@ -6295,8 +6295,8 @@ const bn = k({
|
|
6295
6295
|
// WebkitBoxShadow: `0 0 0px 1000px ${themeContract.colors.background} inset`,
|
6296
6296
|
// },
|
6297
6297
|
// },
|
6298
|
-
}),
|
6299
|
-
base:
|
6298
|
+
}), ba = se({
|
6299
|
+
base: xa,
|
6300
6300
|
variants: {
|
6301
6301
|
size: {
|
6302
6302
|
sm: {
|
@@ -6339,7 +6339,7 @@ const bn = k({
|
|
6339
6339
|
size: "md",
|
6340
6340
|
variant: "default"
|
6341
6341
|
}
|
6342
|
-
}),
|
6342
|
+
}), va = ce(
|
6343
6343
|
({
|
6344
6344
|
name: t,
|
6345
6345
|
type: a = "text",
|
@@ -6371,11 +6371,11 @@ const bn = k({
|
|
6371
6371
|
maxWidth: r,
|
6372
6372
|
minHeight: c,
|
6373
6373
|
position: m,
|
6374
|
-
top:
|
6374
|
+
top: h,
|
6375
6375
|
bottom: V,
|
6376
6376
|
left: z,
|
6377
|
-
right:
|
6378
|
-
zIndex:
|
6377
|
+
right: v,
|
6378
|
+
zIndex: y,
|
6379
6379
|
fontSize: w,
|
6380
6380
|
fontFamily: D,
|
6381
6381
|
lineHeight: O,
|
@@ -6393,16 +6393,16 @@ const bn = k({
|
|
6393
6393
|
overflowX: Z,
|
6394
6394
|
overflowY: I,
|
6395
6395
|
...J
|
6396
|
-
}, L) => /* @__PURE__ */
|
6396
|
+
}, L) => /* @__PURE__ */ g(
|
6397
6397
|
"input",
|
6398
6398
|
{
|
6399
6399
|
ref: L,
|
6400
6400
|
id: t,
|
6401
6401
|
name: t,
|
6402
6402
|
type: a,
|
6403
|
-
className:
|
6404
|
-
|
6405
|
-
|
6403
|
+
className: re(
|
6404
|
+
ba({ size: l, variant: n }),
|
6405
|
+
de({
|
6406
6406
|
margin: d,
|
6407
6407
|
marginTop: f,
|
6408
6408
|
marginBottom: x,
|
@@ -6425,11 +6425,11 @@ const bn = k({
|
|
6425
6425
|
maxWidth: r,
|
6426
6426
|
minHeight: c,
|
6427
6427
|
position: m,
|
6428
|
-
top:
|
6428
|
+
top: h,
|
6429
6429
|
bottom: V,
|
6430
6430
|
left: z,
|
6431
|
-
right:
|
6432
|
-
zIndex:
|
6431
|
+
right: v,
|
6432
|
+
zIndex: y,
|
6433
6433
|
fontSize: w,
|
6434
6434
|
fontFamily: D,
|
6435
6435
|
lineHeight: O,
|
@@ -6455,8 +6455,8 @@ const bn = k({
|
|
6455
6455
|
}
|
6456
6456
|
)
|
6457
6457
|
);
|
6458
|
-
|
6459
|
-
const
|
6458
|
+
va.displayName = "Input";
|
6459
|
+
const ya = k({
|
6460
6460
|
appearance: "none",
|
6461
6461
|
backgroundColor: e.colors.background,
|
6462
6462
|
border: `1px solid ${e.colors.border}`,
|
@@ -6498,8 +6498,8 @@ const wn = k({
|
|
6498
6498
|
borderColor: e.colors.error
|
6499
6499
|
}
|
6500
6500
|
}
|
6501
|
-
}),
|
6502
|
-
base:
|
6501
|
+
}), wa = se({
|
6502
|
+
base: ya,
|
6503
6503
|
variants: {
|
6504
6504
|
size: {
|
6505
6505
|
sm: {
|
@@ -6559,7 +6559,7 @@ const wn = k({
|
|
6559
6559
|
variant: "default",
|
6560
6560
|
resize: "vertical"
|
6561
6561
|
}
|
6562
|
-
}),
|
6562
|
+
}), Sa = ce(
|
6563
6563
|
({
|
6564
6564
|
name: t,
|
6565
6565
|
hasError: a = !1,
|
@@ -6591,11 +6591,11 @@ const wn = k({
|
|
6591
6591
|
maxWidth: r,
|
6592
6592
|
minHeight: c,
|
6593
6593
|
position: m,
|
6594
|
-
top:
|
6594
|
+
top: h,
|
6595
6595
|
bottom: V,
|
6596
6596
|
left: z,
|
6597
|
-
right:
|
6598
|
-
zIndex:
|
6597
|
+
right: v,
|
6598
|
+
zIndex: y,
|
6599
6599
|
fontSize: w,
|
6600
6600
|
fontFamily: D,
|
6601
6601
|
lineHeight: O,
|
@@ -6613,15 +6613,15 @@ const wn = k({
|
|
6613
6613
|
overflowX: Z,
|
6614
6614
|
overflowY: I,
|
6615
6615
|
...J
|
6616
|
-
}, L) => /* @__PURE__ */
|
6616
|
+
}, L) => /* @__PURE__ */ g(
|
6617
6617
|
"textarea",
|
6618
6618
|
{
|
6619
6619
|
ref: L,
|
6620
6620
|
id: t,
|
6621
6621
|
name: t,
|
6622
|
-
className:
|
6623
|
-
|
6624
|
-
|
6622
|
+
className: re(
|
6623
|
+
wa({ size: o, variant: l, resize: n }),
|
6624
|
+
de({
|
6625
6625
|
margin: d,
|
6626
6626
|
marginTop: f,
|
6627
6627
|
marginBottom: x,
|
@@ -6644,11 +6644,11 @@ const wn = k({
|
|
6644
6644
|
maxWidth: r,
|
6645
6645
|
minHeight: c,
|
6646
6646
|
position: m,
|
6647
|
-
top:
|
6647
|
+
top: h,
|
6648
6648
|
bottom: V,
|
6649
6649
|
left: z,
|
6650
|
-
right:
|
6651
|
-
zIndex:
|
6650
|
+
right: v,
|
6651
|
+
zIndex: y,
|
6652
6652
|
fontSize: w,
|
6653
6653
|
fontFamily: D,
|
6654
6654
|
lineHeight: O,
|
@@ -6674,138 +6674,139 @@ const wn = k({
|
|
6674
6674
|
}
|
6675
6675
|
)
|
6676
6676
|
);
|
6677
|
-
|
6678
|
-
const
|
6677
|
+
Sa.displayName = "Textarea";
|
6678
|
+
const $a = () => /* @__PURE__ */ g("div", { children: "ToRemove" }), Ca = (t = {}) => ({
|
6679
6679
|
colors: {
|
6680
|
-
...
|
6681
|
-
...
|
6680
|
+
...pe.colors,
|
6681
|
+
...t.colors
|
6682
6682
|
},
|
6683
6683
|
space: {
|
6684
|
-
...
|
6685
|
-
...
|
6684
|
+
...pe.space,
|
6685
|
+
...t.space
|
6686
6686
|
},
|
6687
6687
|
radii: {
|
6688
|
-
...
|
6689
|
-
...
|
6688
|
+
...pe.radii,
|
6689
|
+
...t.radii
|
6690
6690
|
},
|
6691
6691
|
fonts: {
|
6692
|
-
...
|
6693
|
-
...
|
6692
|
+
...pe.fonts,
|
6693
|
+
...t.fonts
|
6694
6694
|
},
|
6695
|
-
maxWidth:
|
6695
|
+
maxWidth: t.maxWidth || `${pe.maxWidth}px`,
|
6696
6696
|
fontSizes: {
|
6697
|
-
...
|
6698
|
-
...
|
6697
|
+
...pe.fontSizes,
|
6698
|
+
...t.fontSizes
|
6699
6699
|
},
|
6700
6700
|
fontWeights: {
|
6701
|
-
...
|
6702
|
-
...
|
6701
|
+
...pe.fontWeights,
|
6702
|
+
...t.fontWeights
|
6703
6703
|
},
|
6704
6704
|
lineHeights: {
|
6705
|
-
...
|
6706
|
-
...
|
6705
|
+
...pe.lineHeights,
|
6706
|
+
...t.lineHeights
|
6707
6707
|
},
|
6708
6708
|
shadows: {
|
6709
|
-
...
|
6710
|
-
...
|
6709
|
+
...pe.shadows,
|
6710
|
+
...t.shadows
|
6711
6711
|
},
|
6712
6712
|
section: {
|
6713
|
-
...
|
6714
|
-
...
|
6713
|
+
...pe.section,
|
6714
|
+
...t.section
|
6715
6715
|
},
|
6716
6716
|
header: {
|
6717
|
-
...
|
6718
|
-
...
|
6717
|
+
...pe.header,
|
6718
|
+
...t.header
|
6719
6719
|
},
|
6720
6720
|
footer: {
|
6721
|
-
...
|
6722
|
-
...
|
6721
|
+
...pe.footer,
|
6722
|
+
...t.footer
|
6723
6723
|
}
|
6724
|
-
}),
|
6724
|
+
}), za = (t = {}) => ({
|
6725
6725
|
colors: {
|
6726
|
-
...
|
6727
|
-
...
|
6726
|
+
...ye.colors,
|
6727
|
+
...t.colors
|
6728
6728
|
},
|
6729
6729
|
space: {
|
6730
|
-
...
|
6731
|
-
...
|
6730
|
+
...ye.space,
|
6731
|
+
...t.space
|
6732
6732
|
},
|
6733
6733
|
radii: {
|
6734
|
-
...
|
6735
|
-
...
|
6734
|
+
...ye.radii,
|
6735
|
+
...t.radii
|
6736
6736
|
},
|
6737
6737
|
fonts: {
|
6738
|
-
...
|
6739
|
-
...
|
6738
|
+
...ye.fonts,
|
6739
|
+
...t.fonts
|
6740
6740
|
},
|
6741
|
-
maxWidth:
|
6741
|
+
maxWidth: t.maxWidth || `${ye.maxWidth}px`,
|
6742
6742
|
fontSizes: {
|
6743
|
-
...
|
6744
|
-
...
|
6743
|
+
...ye.fontSizes,
|
6744
|
+
...t.fontSizes
|
6745
6745
|
},
|
6746
6746
|
fontWeights: {
|
6747
|
-
...
|
6748
|
-
...
|
6747
|
+
...ye.fontWeights,
|
6748
|
+
...t.fontWeights
|
6749
6749
|
},
|
6750
6750
|
lineHeights: {
|
6751
|
-
...
|
6752
|
-
...
|
6751
|
+
...ye.lineHeights,
|
6752
|
+
...t.lineHeights
|
6753
6753
|
},
|
6754
6754
|
shadows: {
|
6755
|
-
...
|
6756
|
-
...
|
6755
|
+
...ye.shadows,
|
6756
|
+
...t.shadows
|
6757
6757
|
},
|
6758
6758
|
section: {
|
6759
|
-
...
|
6760
|
-
...
|
6759
|
+
...ye.section,
|
6760
|
+
...t.section
|
6761
6761
|
},
|
6762
6762
|
header: {
|
6763
|
-
...
|
6764
|
-
...
|
6763
|
+
...ye.header,
|
6764
|
+
...t.header
|
6765
6765
|
},
|
6766
6766
|
footer: {
|
6767
|
-
...
|
6768
|
-
...
|
6767
|
+
...ye.footer,
|
6768
|
+
...t.footer
|
6769
6769
|
}
|
6770
|
-
}),
|
6770
|
+
}), Da = (t = {}) => Ca(t), Oa = (t = {}) => za(t);
|
6771
6771
|
export {
|
6772
|
-
|
6772
|
+
Yt as Actions,
|
6773
6773
|
He as Button,
|
6774
|
-
|
6775
|
-
|
6776
|
-
|
6777
|
-
|
6778
|
-
|
6774
|
+
an as Carousel,
|
6775
|
+
Pt as Columns,
|
6776
|
+
pn as ConsentCookie,
|
6777
|
+
St as Footer,
|
6778
|
+
ia as Form,
|
6779
6779
|
vt as Header,
|
6780
|
-
|
6781
|
-
|
6782
|
-
|
6783
|
-
|
6784
|
-
|
6785
|
-
|
6786
|
-
|
6787
|
-
|
6788
|
-
|
6789
|
-
|
6790
|
-
|
6791
|
-
|
6792
|
-
|
6793
|
-
|
6794
|
-
|
6795
|
-
|
6796
|
-
|
6797
|
-
|
6798
|
-
|
6799
|
-
|
6800
|
-
|
6801
|
-
|
6802
|
-
|
6803
|
-
|
6804
|
-
|
6805
|
-
|
6780
|
+
Se as Icon,
|
6781
|
+
va as Input,
|
6782
|
+
En as KeyNumber,
|
6783
|
+
ha as Label,
|
6784
|
+
Pn as LanguageSwitcher,
|
6785
|
+
Ot as Logo,
|
6786
|
+
gt as Main,
|
6787
|
+
Ft as Modal,
|
6788
|
+
kt as Nav,
|
6789
|
+
Dn as NavLegal,
|
6790
|
+
An as NavSocial,
|
6791
|
+
sa as Row,
|
6792
|
+
Fa as Section,
|
6793
|
+
ma as TextField,
|
6794
|
+
Sa as Textarea,
|
6795
|
+
$a as ToRemove,
|
6796
|
+
et as Video,
|
6797
|
+
ta as VideoFullWidth,
|
6798
|
+
ye as baseDarkTheme,
|
6799
|
+
pe as baseLightTheme,
|
6800
|
+
Re as breakpoints,
|
6801
|
+
Oa as createDarkTheme,
|
6802
|
+
Da as createLightTheme,
|
6803
|
+
Ta as createThemeOverride,
|
6804
|
+
Aa as getCurrentTheme,
|
6805
|
+
Ea as getThemeContract,
|
6806
|
+
Wa as getThemeValues,
|
6806
6807
|
te as queries,
|
6807
|
-
|
6808
|
-
|
6808
|
+
ja as setTheme,
|
6809
|
+
de as sprinkles,
|
6809
6810
|
e as themeContract,
|
6810
|
-
|
6811
|
+
Ba as toggleTheme
|
6811
6812
|
};
|