@redis-ui/styles 14.5.3 → 14.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1119 -600
- package/dist/index.umd.cjs +18 -18
- package/dist/themes/themeDark/theme/components/keyValueList.d.ts +3 -0
- package/dist/themes/themeDark/theme/components/slider.d.ts +3 -0
- package/dist/themes/themeDark2/theme/components/keyValueList.d.ts +3 -0
- package/dist/themes/themeDark2/theme/components/slider.d.ts +3 -0
- package/dist/themes/themeLight/theme/components/keyValueList.d.ts +3 -0
- package/dist/themes/themeLight/theme/components/slider.d.ts +3 -0
- package/dist/themes/themeLight2/theme/components/keyValueList.d.ts +3 -0
- package/dist/themes/themeLight2/theme/components/slider.d.ts +3 -0
- package/dist/themes/types/theme/components/button.types.d.ts +2 -1
- package/dist/themes/types/theme/components/index.d.ts +2 -0
- package/dist/themes/types/theme/components/keyValueList.types.d.ts +28 -0
- package/dist/themes/types/theme/components/slider.types.d.ts +38 -0
- package/dist/themes/types/theme/components/textButton.types.d.ts +1 -1
- package/dist/themes/types/theme/theme.types.d.ts +3 -1
- package/package.json +2 -5
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { useTheme as
|
|
2
|
-
import Er, { useCallback as
|
|
1
|
+
import { useTheme as Re, css as Po, ThemeProvider as ze, createGlobalStyle as We } from "styled-components";
|
|
2
|
+
import Er, { useCallback as zo, useRef as wr, useLayoutEffect as Sr, useEffect as No, useState as $r, createContext as Be, useMemo as Pe, useContext as Fe } from "react";
|
|
3
3
|
const lo = {
|
|
4
4
|
transparent: "#00000000",
|
|
5
5
|
neutral0: "#00000000",
|
|
@@ -205,7 +205,7 @@ const lo = {
|
|
|
205
205
|
color: lo.primary600
|
|
206
206
|
}
|
|
207
207
|
}
|
|
208
|
-
},
|
|
208
|
+
}, Le = {
|
|
209
209
|
sizes: {
|
|
210
210
|
L: {
|
|
211
211
|
size: "3rem",
|
|
@@ -258,7 +258,7 @@ const lo = {
|
|
|
258
258
|
}
|
|
259
259
|
}
|
|
260
260
|
}
|
|
261
|
-
},
|
|
261
|
+
}, Me = {
|
|
262
262
|
height: "7rem",
|
|
263
263
|
padding: "1.4rem 1.4rem 1.4rem 2.4rem",
|
|
264
264
|
separator: `1px solid ${t.semantic.color.border.neutral400}`,
|
|
@@ -280,7 +280,7 @@ const lo = {
|
|
|
280
280
|
accountNameColor: t.semantic.color.text.neutral100
|
|
281
281
|
}
|
|
282
282
|
}
|
|
283
|
-
},
|
|
283
|
+
}, He = {
|
|
284
284
|
trigger: {
|
|
285
285
|
borderRadius: "0.4rem",
|
|
286
286
|
height: "3.2rem",
|
|
@@ -323,17 +323,17 @@ const lo = {
|
|
|
323
323
|
color: t.semantic.color.text.neutral800
|
|
324
324
|
}
|
|
325
325
|
}
|
|
326
|
-
},
|
|
326
|
+
}, Te = {
|
|
327
327
|
dropdown: {
|
|
328
328
|
screenMarginHeight: "6px",
|
|
329
329
|
maxHeight: "50vh"
|
|
330
330
|
}
|
|
331
|
-
},
|
|
331
|
+
}, Rr = "1px", Ie = {
|
|
332
332
|
padding: `${t.core.space.space025} ${t.core.space.space050}`,
|
|
333
333
|
gap: t.core.space.space025,
|
|
334
334
|
borderRadius: "2px",
|
|
335
|
-
height: `calc(${t.core.space.space200} + ${
|
|
336
|
-
borderWidth:
|
|
335
|
+
height: `calc(${t.core.space.space200} + ${Rr} * 2)`,
|
|
336
|
+
borderWidth: Rr,
|
|
337
337
|
borderStyle: "solid",
|
|
338
338
|
variants: {
|
|
339
339
|
white: {
|
|
@@ -567,6 +567,27 @@ const lo = {
|
|
|
567
567
|
bgColor: "transparent",
|
|
568
568
|
textColor: t.semantic.color.text.secondary300
|
|
569
569
|
}
|
|
570
|
+
},
|
|
571
|
+
upsell: {
|
|
572
|
+
normal: {
|
|
573
|
+
bgGradient: `linear-gradient(316deg, ${t.semantic.color.background.discovery500} 0%, ${t.semantic.color.background.discovery400} 78%)`,
|
|
574
|
+
textColor: t.semantic.color.text.neutral100,
|
|
575
|
+
borderColor: t.semantic.color.border.discovery600
|
|
576
|
+
},
|
|
577
|
+
hover: {
|
|
578
|
+
bgGradient: `linear-gradient(316deg, ${t.semantic.color.background.discovery500} 0%, ${t.semantic.color.background.discovery500} 78%)`,
|
|
579
|
+
borderColor: t.semantic.color.border.discovery600
|
|
580
|
+
},
|
|
581
|
+
active: {
|
|
582
|
+
bgGradient: `linear-gradient(316deg, ${t.semantic.color.background.discovery600} 0%, ${t.semantic.color.background.discovery600} 78%)`,
|
|
583
|
+
borderColor: t.semantic.color.border.discovery700
|
|
584
|
+
},
|
|
585
|
+
disabled: {
|
|
586
|
+
bgGradient: "unset",
|
|
587
|
+
bgColor: t.semantic.color.background.neutral100,
|
|
588
|
+
borderColor: t.semantic.color.border.neutral200,
|
|
589
|
+
textColor: t.semantic.color.text.neutral400
|
|
590
|
+
}
|
|
570
591
|
}
|
|
571
592
|
}
|
|
572
593
|
}, _e = {
|
|
@@ -827,7 +848,7 @@ const lo = {
|
|
|
827
848
|
weekNumCell: {
|
|
828
849
|
fontSize: "1rem"
|
|
829
850
|
}
|
|
830
|
-
},
|
|
851
|
+
}, zr = {
|
|
831
852
|
aliceblue: [240, 248, 255],
|
|
832
853
|
antiquewhite: [250, 235, 215],
|
|
833
854
|
aqua: [0, 255, 255],
|
|
@@ -991,8 +1012,8 @@ function Ye(a) {
|
|
|
991
1012
|
if (typeof a == "number")
|
|
992
1013
|
return { space: "rgb", values: [a >>> 16, (a & 65280) >>> 8, a & 255], alpha: 1 };
|
|
993
1014
|
if (typeof a == "number") return { space: "rgb", values: [a >>> 16, (a & 65280) >>> 8, a & 255], alpha: 1 };
|
|
994
|
-
if (a = String(a).toLowerCase(),
|
|
995
|
-
i =
|
|
1015
|
+
if (a = String(a).toLowerCase(), zr[a])
|
|
1016
|
+
i = zr[a].slice(), l = "rgb";
|
|
996
1017
|
else if (a === "transparent")
|
|
997
1018
|
s = 0, l = "rgb", i = [0, 0, 0];
|
|
998
1019
|
else if (a[0] === "#") {
|
|
@@ -1010,10 +1031,10 @@ function Ye(a) {
|
|
|
1010
1031
|
var x = n[1];
|
|
1011
1032
|
l = x.replace(/a$/, "");
|
|
1012
1033
|
var k = l === "cmyk" ? 4 : l === "gray" ? 1 : 3;
|
|
1013
|
-
i = n[2].trim().split(/\s*[,\/]\s*|\s+/), l === "color" && (l = i.shift()), i = i.map(function(u,
|
|
1034
|
+
i = n[2].trim().split(/\s*[,\/]\s*|\s+/), l === "color" && (l = i.shift()), i = i.map(function(u, z) {
|
|
1014
1035
|
if (u[u.length - 1] === "%")
|
|
1015
|
-
return u = parseFloat(u) / 100,
|
|
1016
|
-
if (l[
|
|
1036
|
+
return u = parseFloat(u) / 100, z === 3 ? u : l === "rgb" ? u * 255 : l[0] === "h" || l[0] === "l" && !z ? u * 100 : l === "lab" ? u * 125 : l === "lch" ? z < 2 ? u * 150 : u * 360 : l[0] === "o" && !z ? u : l === "oklab" ? u * 0.4 : l === "oklch" ? z < 2 ? u * 0.4 : u * 360 : u;
|
|
1037
|
+
if (l[z] === "h" || z === 2 && l[l.length - 1] === "h") {
|
|
1017
1038
|
if (Wr[u] !== void 0) return Wr[u];
|
|
1018
1039
|
if (u.endsWith("deg")) return parseFloat(u);
|
|
1019
1040
|
if (u.endsWith("turn")) return parseFloat(u) * 360;
|
|
@@ -1035,14 +1056,14 @@ function Ue(a, n) {
|
|
|
1035
1056
|
var { space: i, values: s, alpha: l } = Ye(a);
|
|
1036
1057
|
return i[0] === "h" ? `${i}a(${s[0]}, ${s[1]}%, ${s[2]}%, ${n})` : `${i}a(${s}, ${n})`;
|
|
1037
1058
|
}
|
|
1038
|
-
function
|
|
1039
|
-
return
|
|
1059
|
+
function T() {
|
|
1060
|
+
return T = Object.assign ? Object.assign.bind() : function(a) {
|
|
1040
1061
|
for (var n = 1; n < arguments.length; n++) {
|
|
1041
1062
|
var i = arguments[n];
|
|
1042
1063
|
for (var s in i) ({}).hasOwnProperty.call(i, s) && (a[s] = i[s]);
|
|
1043
1064
|
}
|
|
1044
1065
|
return a;
|
|
1045
|
-
},
|
|
1066
|
+
}, T.apply(null, arguments);
|
|
1046
1067
|
}
|
|
1047
1068
|
function Ze(a) {
|
|
1048
1069
|
if (a === void 0) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
@@ -1371,8 +1392,8 @@ function Co(a, n, i, s) {
|
|
|
1371
1392
|
return s(i, i, i);
|
|
1372
1393
|
var l = (a % 360 + 360) % 360 / 60, m = (1 - Math.abs(2 * i - 1)) * n, g = m * (1 - Math.abs(l % 2 - 1)), C = 0, x = 0, k = 0;
|
|
1373
1394
|
l >= 0 && l < 1 ? (C = m, x = g) : l >= 1 && l < 2 ? (C = g, x = m) : l >= 2 && l < 3 ? (x = m, k = g) : l >= 3 && l < 4 ? (x = g, k = m) : l >= 4 && l < 5 ? (C = g, k = m) : l >= 5 && l < 6 && (C = m, k = g);
|
|
1374
|
-
var h = i - m / 2, S = C + h, u = x + h,
|
|
1375
|
-
return s(S, u,
|
|
1395
|
+
var h = i - m / 2, S = C + h, u = x + h, z = k + h;
|
|
1396
|
+
return s(S, u, z);
|
|
1376
1397
|
}
|
|
1377
1398
|
var Br = {
|
|
1378
1399
|
aliceblue: "f0f8ff",
|
|
@@ -1592,7 +1613,7 @@ function oo(a) {
|
|
|
1592
1613
|
}
|
|
1593
1614
|
var u = st.exec(n.substring(0, 50));
|
|
1594
1615
|
if (u) {
|
|
1595
|
-
var
|
|
1616
|
+
var z = parseInt("" + u[1], 10), xo = parseInt("" + u[2], 10) / 100, Lo = parseInt("" + u[3], 10) / 100, ho = "rgb(" + Co(z, xo, Lo) + ")", O = Do.exec(ho);
|
|
1596
1617
|
if (!O)
|
|
1597
1618
|
throw new N(4, n, ho);
|
|
1598
1619
|
return {
|
|
@@ -1721,7 +1742,7 @@ function I(a) {
|
|
|
1721
1742
|
function ft(a, n) {
|
|
1722
1743
|
if (n === "transparent") return n;
|
|
1723
1744
|
var i = U(n);
|
|
1724
|
-
return Z(
|
|
1745
|
+
return Z(T({}, i, {
|
|
1725
1746
|
hue: i.hue + parseFloat(a)
|
|
1726
1747
|
}));
|
|
1727
1748
|
}
|
|
@@ -1732,7 +1753,7 @@ function ao(a, n, i) {
|
|
|
1732
1753
|
function yt(a, n) {
|
|
1733
1754
|
if (n === "transparent") return n;
|
|
1734
1755
|
var i = U(n);
|
|
1735
|
-
return Z(
|
|
1756
|
+
return Z(T({}, i, {
|
|
1736
1757
|
lightness: ao(0, 1, i.lightness - parseFloat(a))
|
|
1737
1758
|
}));
|
|
1738
1759
|
}
|
|
@@ -1740,7 +1761,7 @@ var kt = I(yt), vt = kt;
|
|
|
1740
1761
|
function wt(a, n) {
|
|
1741
1762
|
if (n === "transparent") return n;
|
|
1742
1763
|
var i = U(n);
|
|
1743
|
-
return Z(
|
|
1764
|
+
return Z(T({}, i, {
|
|
1744
1765
|
saturation: ao(0, 1, i.saturation - parseFloat(a))
|
|
1745
1766
|
}));
|
|
1746
1767
|
}
|
|
@@ -1756,31 +1777,31 @@ function St(a) {
|
|
|
1756
1777
|
function $t(a, n) {
|
|
1757
1778
|
if (n === "transparent") return n;
|
|
1758
1779
|
var i = U(n);
|
|
1759
|
-
return Z(
|
|
1780
|
+
return Z(T({}, i, {
|
|
1760
1781
|
lightness: ao(0, 1, i.lightness + parseFloat(a))
|
|
1761
1782
|
}));
|
|
1762
1783
|
}
|
|
1763
|
-
var
|
|
1784
|
+
var Rt = I($t), zt = Rt;
|
|
1764
1785
|
function Wt(a, n, i) {
|
|
1765
1786
|
if (n === "transparent") return i;
|
|
1766
1787
|
if (i === "transparent") return n;
|
|
1767
1788
|
if (a === 0) return i;
|
|
1768
|
-
var s = oo(n), l =
|
|
1789
|
+
var s = oo(n), l = T({}, s, {
|
|
1769
1790
|
alpha: typeof s.alpha == "number" ? s.alpha : 1
|
|
1770
|
-
}), m = oo(i), g =
|
|
1791
|
+
}), m = oo(i), g = T({}, m, {
|
|
1771
1792
|
alpha: typeof m.alpha == "number" ? m.alpha : 1
|
|
1772
|
-
}), C = l.alpha - g.alpha, x = parseFloat(a) * 2 - 1, k = x * C === -1 ? x : x + C, h = 1 + x * C, S = (k / h + 1) / 2, u = 1 - S,
|
|
1793
|
+
}), C = l.alpha - g.alpha, x = parseFloat(a) * 2 - 1, k = x * C === -1 ? x : x + C, h = 1 + x * C, S = (k / h + 1) / 2, u = 1 - S, z = {
|
|
1773
1794
|
red: Math.floor(l.red * S + g.red * u),
|
|
1774
1795
|
green: Math.floor(l.green * S + g.green * u),
|
|
1775
1796
|
blue: Math.floor(l.blue * S + g.blue * u),
|
|
1776
1797
|
alpha: l.alpha * parseFloat(a) + g.alpha * (1 - parseFloat(a))
|
|
1777
1798
|
};
|
|
1778
|
-
return Fo(
|
|
1799
|
+
return Fo(z);
|
|
1779
1800
|
}
|
|
1780
1801
|
var Bt = I(Wt), _r = Bt;
|
|
1781
1802
|
function Pt(a, n) {
|
|
1782
1803
|
if (n === "transparent") return n;
|
|
1783
|
-
var i = oo(n), s = typeof i.alpha == "number" ? i.alpha : 1, l =
|
|
1804
|
+
var i = oo(n), s = typeof i.alpha == "number" ? i.alpha : 1, l = T({}, i, {
|
|
1784
1805
|
alpha: ao(0, 1, (s * 100 + parseFloat(a) * 100) / 100)
|
|
1785
1806
|
});
|
|
1786
1807
|
return Fo(l);
|
|
@@ -1789,63 +1810,63 @@ I(Pt);
|
|
|
1789
1810
|
function Ft(a, n) {
|
|
1790
1811
|
if (n === "transparent") return n;
|
|
1791
1812
|
var i = U(n);
|
|
1792
|
-
return Z(
|
|
1813
|
+
return Z(T({}, i, {
|
|
1793
1814
|
saturation: ao(0, 1, i.saturation + parseFloat(a))
|
|
1794
1815
|
}));
|
|
1795
1816
|
}
|
|
1796
1817
|
I(Ft);
|
|
1797
|
-
function
|
|
1798
|
-
return n === "transparent" ? n : Z(
|
|
1818
|
+
function Lt(a, n) {
|
|
1819
|
+
return n === "transparent" ? n : Z(T({}, U(n), {
|
|
1799
1820
|
hue: parseFloat(a)
|
|
1800
1821
|
}));
|
|
1801
1822
|
}
|
|
1802
|
-
I(
|
|
1803
|
-
function
|
|
1804
|
-
return n === "transparent" ? n : Z(
|
|
1823
|
+
I(Lt);
|
|
1824
|
+
function Mt(a, n) {
|
|
1825
|
+
return n === "transparent" ? n : Z(T({}, U(n), {
|
|
1805
1826
|
lightness: parseFloat(a)
|
|
1806
1827
|
}));
|
|
1807
1828
|
}
|
|
1808
|
-
I(
|
|
1809
|
-
function
|
|
1810
|
-
return n === "transparent" ? n : Z(
|
|
1829
|
+
I(Mt);
|
|
1830
|
+
function Ht(a, n) {
|
|
1831
|
+
return n === "transparent" ? n : Z(T({}, U(n), {
|
|
1811
1832
|
saturation: parseFloat(a)
|
|
1812
1833
|
}));
|
|
1813
1834
|
}
|
|
1814
|
-
I(
|
|
1815
|
-
function
|
|
1835
|
+
I(Ht);
|
|
1836
|
+
function Tt(a, n) {
|
|
1816
1837
|
return n === "transparent" ? n : _r(parseFloat(a), "rgb(0, 0, 0)", n);
|
|
1817
1838
|
}
|
|
1818
|
-
I(
|
|
1839
|
+
I(Tt);
|
|
1819
1840
|
function It(a, n) {
|
|
1820
1841
|
return n === "transparent" ? n : _r(parseFloat(a), "rgb(255, 255, 255)", n);
|
|
1821
1842
|
}
|
|
1822
1843
|
I(It);
|
|
1823
1844
|
function Et(a, n) {
|
|
1824
1845
|
if (n === "transparent") return n;
|
|
1825
|
-
var i = oo(n), s = typeof i.alpha == "number" ? i.alpha : 1, l =
|
|
1846
|
+
var i = oo(n), s = typeof i.alpha == "number" ? i.alpha : 1, l = T({}, i, {
|
|
1826
1847
|
alpha: ao(0, 1, +(s * 100 - parseFloat(a) * 100).toFixed(2) / 100)
|
|
1827
1848
|
});
|
|
1828
1849
|
return Fo(l);
|
|
1829
1850
|
}
|
|
1830
1851
|
I(Et);
|
|
1831
1852
|
const V = (a, n) => Ue(a, n);
|
|
1832
|
-
function
|
|
1853
|
+
function ci(a) {
|
|
1833
1854
|
const n = St(a), i = Math.max(Math.abs(n - 0.5) * 1.2, 0.3);
|
|
1834
|
-
return n < 0.5 ?
|
|
1855
|
+
return n < 0.5 ? zt(i, a) : vt(i, a);
|
|
1835
1856
|
}
|
|
1836
|
-
const
|
|
1857
|
+
const ii = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark), n), {
|
|
1837
1858
|
light: [],
|
|
1838
1859
|
dark: []
|
|
1839
|
-
}),
|
|
1860
|
+
}), li = (a) => a.flatMap((n) => Object.values(n)), Xt = (a) => a.reduce((n, i) => {
|
|
1840
1861
|
const s = n[i.name] || {};
|
|
1841
1862
|
return s[i.mode] = i, n[i.name] = s, n;
|
|
1842
1863
|
}, {}), Ot = (a) => a.reduce((n, i) => (n[i.mode].push(i), n), {
|
|
1843
1864
|
light: [],
|
|
1844
1865
|
dark: []
|
|
1845
|
-
}),
|
|
1866
|
+
}), si = (a) => ({
|
|
1846
1867
|
groupedByName: Xt(a),
|
|
1847
1868
|
groupedByMode: Ot(a)
|
|
1848
|
-
}),
|
|
1869
|
+
}), di = (a, n, i) => {
|
|
1849
1870
|
var l, m;
|
|
1850
1871
|
const s = a.groupedByName[n];
|
|
1851
1872
|
if (s)
|
|
@@ -2062,6 +2083,33 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2062
2083
|
}
|
|
2063
2084
|
}
|
|
2064
2085
|
}, Nt = {
|
|
2086
|
+
container: {
|
|
2087
|
+
borderRadius: "0.8rem",
|
|
2088
|
+
backgroundColor: t.semantic.color.background.neutral100,
|
|
2089
|
+
boxShadow: `0px 0px 0px 1px ${t.semantic.color.border.neutral600}`
|
|
2090
|
+
},
|
|
2091
|
+
headerRow: {
|
|
2092
|
+
minHeight: "5.6rem",
|
|
2093
|
+
bgColor: t.semantic.color.background.neutral100,
|
|
2094
|
+
separator: {
|
|
2095
|
+
color: t.semantic.color.border.neutral400,
|
|
2096
|
+
width: "1px"
|
|
2097
|
+
}
|
|
2098
|
+
},
|
|
2099
|
+
headerCell: {
|
|
2100
|
+
padding: "1rem 1.2rem",
|
|
2101
|
+
color: t.semantic.color.text.neutral800,
|
|
2102
|
+
separator: {
|
|
2103
|
+
color: t.semantic.color.border.neutral400,
|
|
2104
|
+
width: "1px",
|
|
2105
|
+
blockPadding: "1rem"
|
|
2106
|
+
}
|
|
2107
|
+
},
|
|
2108
|
+
bodyCell: {
|
|
2109
|
+
padding: "0.4rem 1.2rem",
|
|
2110
|
+
color: t.semantic.color.text.neutral700
|
|
2111
|
+
}
|
|
2112
|
+
}, qt = {
|
|
2065
2113
|
gap: "0.5rem",
|
|
2066
2114
|
margin: "0 0 0.2rem 0",
|
|
2067
2115
|
minHeight: "20px",
|
|
@@ -2082,7 +2130,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2082
2130
|
required: {
|
|
2083
2131
|
textColor: t.semantic.color.text.danger500
|
|
2084
2132
|
}
|
|
2085
|
-
},
|
|
2133
|
+
}, Yt = {
|
|
2086
2134
|
flexGroup: {
|
|
2087
2135
|
gap: {
|
|
2088
2136
|
XXS: t.core.space.space025,
|
|
@@ -2118,7 +2166,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2118
2166
|
XXL: t.core.space.space300
|
|
2119
2167
|
}
|
|
2120
2168
|
}
|
|
2121
|
-
},
|
|
2169
|
+
}, Ut = {
|
|
2122
2170
|
variants: {
|
|
2123
2171
|
block: {
|
|
2124
2172
|
sizes: {
|
|
@@ -2189,7 +2237,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2189
2237
|
}
|
|
2190
2238
|
}
|
|
2191
2239
|
}
|
|
2192
|
-
},
|
|
2240
|
+
}, Zt = {
|
|
2193
2241
|
size: "5rem",
|
|
2194
2242
|
gap: "0.5rem",
|
|
2195
2243
|
variants: {
|
|
@@ -2205,11 +2253,12 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2205
2253
|
},
|
|
2206
2254
|
inverse: {
|
|
2207
2255
|
bgColor: "rgba(255, 255, 255, 0.2)",
|
|
2256
|
+
// todo: REPLACE ONCE ADDED TO COLOR PALETTE
|
|
2208
2257
|
color: t.semantic.color.icon.neutral100,
|
|
2209
2258
|
textColor: t.semantic.color.icon.neutral100
|
|
2210
2259
|
}
|
|
2211
2260
|
}
|
|
2212
|
-
},
|
|
2261
|
+
}, Vt = {
|
|
2213
2262
|
dropDown: {
|
|
2214
2263
|
minWidth: "16rem",
|
|
2215
2264
|
maxWidth: "40rem",
|
|
@@ -2285,7 +2334,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2285
2334
|
}
|
|
2286
2335
|
}
|
|
2287
2336
|
}
|
|
2288
|
-
},
|
|
2337
|
+
}, Jt = {
|
|
2289
2338
|
header: {
|
|
2290
2339
|
height: "6.2rem",
|
|
2291
2340
|
paddingInline: "1.6rem",
|
|
@@ -2297,7 +2346,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2297
2346
|
gap: "0.8rem"
|
|
2298
2347
|
}
|
|
2299
2348
|
}
|
|
2300
|
-
},
|
|
2349
|
+
}, Kt = {
|
|
2301
2350
|
blockScreenMargin: "20px",
|
|
2302
2351
|
inlineScreenMargin: "20px",
|
|
2303
2352
|
inlinePadding: "4rem",
|
|
@@ -2327,9 +2376,9 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2327
2376
|
overlay: {
|
|
2328
2377
|
bgColor: "rgba(255, 255, 255, 0.9)"
|
|
2329
2378
|
}
|
|
2330
|
-
}, Kt = {
|
|
2331
|
-
iconColor: t.semantic.color.icon.neutral700
|
|
2332
2379
|
}, Qt = {
|
|
2380
|
+
iconColor: t.semantic.color.icon.neutral700
|
|
2381
|
+
}, oa = {
|
|
2333
2382
|
bgColor: t.semantic.color.background.neutral100,
|
|
2334
2383
|
shadow: t.core.shadow.shadow400,
|
|
2335
2384
|
borderRadius: "0.8rem",
|
|
@@ -2342,7 +2391,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2342
2391
|
height: "8px",
|
|
2343
2392
|
shadow: "rgba(0, 0, 0, 0.03) 0px 2px 1px"
|
|
2344
2393
|
}
|
|
2345
|
-
},
|
|
2394
|
+
}, ra = {
|
|
2346
2395
|
closeButton: {
|
|
2347
2396
|
iconColor: t.semantic.color.icon.neutral700
|
|
2348
2397
|
},
|
|
@@ -2361,7 +2410,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2361
2410
|
margin: "0 0 1.2rem 0",
|
|
2362
2411
|
padding: "1.6rem"
|
|
2363
2412
|
}
|
|
2364
|
-
},
|
|
2413
|
+
}, ea = {
|
|
2365
2414
|
textColor: t.semantic.color.text.primary600,
|
|
2366
2415
|
border: "solid 1px transparent",
|
|
2367
2416
|
colorGroups: [{
|
|
@@ -2391,7 +2440,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2391
2440
|
L: "4.4rem"
|
|
2392
2441
|
},
|
|
2393
2442
|
fontWeight: t.core.font.fontWeight.bold
|
|
2394
|
-
},
|
|
2443
|
+
}, ta = {
|
|
2395
2444
|
borderRadius: "1px",
|
|
2396
2445
|
textPosition: {
|
|
2397
2446
|
left: {
|
|
@@ -2445,7 +2494,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2445
2494
|
text: {
|
|
2446
2495
|
color: t.semantic.color.text.neutral800
|
|
2447
2496
|
}
|
|
2448
|
-
},
|
|
2497
|
+
}, aa = {
|
|
2449
2498
|
size: "1.8rem",
|
|
2450
2499
|
iconSize: "0.6rem",
|
|
2451
2500
|
padding: "0",
|
|
@@ -2493,7 +2542,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2493
2542
|
}
|
|
2494
2543
|
}
|
|
2495
2544
|
}
|
|
2496
|
-
},
|
|
2545
|
+
}, na = {
|
|
2497
2546
|
bgColor: t.semantic.color.background.neutral100,
|
|
2498
2547
|
shadow: `0px 0px 0px 1px ${t.semantic.color.border.neutral600}`,
|
|
2499
2548
|
borderRadius: "0.8rem",
|
|
@@ -2515,7 +2564,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2515
2564
|
gap: "0.8rem"
|
|
2516
2565
|
}
|
|
2517
2566
|
}
|
|
2518
|
-
},
|
|
2567
|
+
}, ca = {
|
|
2519
2568
|
width: "100%",
|
|
2520
2569
|
height: "fit-content",
|
|
2521
2570
|
bgColor: t.semantic.color.background.neutral100,
|
|
@@ -2564,7 +2613,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2564
2613
|
width: "1px",
|
|
2565
2614
|
color: t.semantic.color.border.neutral600
|
|
2566
2615
|
}
|
|
2567
|
-
},
|
|
2616
|
+
}, ia = {
|
|
2568
2617
|
padding: "0 1rem",
|
|
2569
2618
|
height: "3.6rem",
|
|
2570
2619
|
gap: "0.6rem",
|
|
@@ -2681,7 +2730,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2681
2730
|
textColor: {
|
|
2682
2731
|
disabled: t.semantic.color.text.neutral500
|
|
2683
2732
|
}
|
|
2684
|
-
}, j = (a, n) => `color-mix(in srgb-linear, ${a} ${n}%, transparent)`,
|
|
2733
|
+
}, j = (a, n) => `color-mix(in srgb-linear, ${a} ${n}%, transparent)`, la = {
|
|
2685
2734
|
sizes: {
|
|
2686
2735
|
S: {
|
|
2687
2736
|
borderRadius: "99rem",
|
|
@@ -2880,7 +2929,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2880
2929
|
}
|
|
2881
2930
|
}
|
|
2882
2931
|
}
|
|
2883
|
-
},
|
|
2932
|
+
}, sa = {
|
|
2884
2933
|
sizes: {
|
|
2885
2934
|
M: {
|
|
2886
2935
|
borderRadius: t.core.space.space100,
|
|
@@ -2920,7 +2969,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2920
2969
|
borderColor: t.semantic.color.border.attention300
|
|
2921
2970
|
}
|
|
2922
2971
|
}
|
|
2923
|
-
},
|
|
2972
|
+
}, da = {
|
|
2924
2973
|
variants: {
|
|
2925
2974
|
informative: {
|
|
2926
2975
|
iconColor: t.semantic.color.icon.informative600
|
|
@@ -2938,7 +2987,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
2938
2987
|
iconColor: t.semantic.color.icon.success600
|
|
2939
2988
|
}
|
|
2940
2989
|
}
|
|
2941
|
-
},
|
|
2990
|
+
}, ma = {
|
|
2942
2991
|
collapsed: {
|
|
2943
2992
|
bgColor: t.semantic.color.background.neutral300,
|
|
2944
2993
|
shadow: "none",
|
|
@@ -3045,7 +3094,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3045
3094
|
}
|
|
3046
3095
|
}
|
|
3047
3096
|
}
|
|
3048
|
-
},
|
|
3097
|
+
}, ba = {
|
|
3049
3098
|
card: {
|
|
3050
3099
|
gap: "2.4rem",
|
|
3051
3100
|
bgColor: t.semantic.color.background.neutral100,
|
|
@@ -3072,7 +3121,72 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3072
3121
|
grid: {
|
|
3073
3122
|
gap: "1.6rem"
|
|
3074
3123
|
}
|
|
3075
|
-
},
|
|
3124
|
+
}, ga = {
|
|
3125
|
+
gap: t.core.space.space150,
|
|
3126
|
+
controlsHeight: "2rem",
|
|
3127
|
+
track: {
|
|
3128
|
+
height: "0.4rem",
|
|
3129
|
+
states: {
|
|
3130
|
+
normal: {
|
|
3131
|
+
bgColor: t.semantic.color.background.secondary300
|
|
3132
|
+
},
|
|
3133
|
+
disabled: {
|
|
3134
|
+
bgColor: t.semantic.color.background.secondary300
|
|
3135
|
+
}
|
|
3136
|
+
}
|
|
3137
|
+
},
|
|
3138
|
+
range: {
|
|
3139
|
+
states: {
|
|
3140
|
+
normal: {
|
|
3141
|
+
bgColor: t.semantic.color.background.primary400
|
|
3142
|
+
},
|
|
3143
|
+
disabled: {
|
|
3144
|
+
bgColor: t.semantic.color.background.neutral500
|
|
3145
|
+
}
|
|
3146
|
+
}
|
|
3147
|
+
},
|
|
3148
|
+
thumb: {
|
|
3149
|
+
width: "2.4rem",
|
|
3150
|
+
height: "2.4rem",
|
|
3151
|
+
borderWidth: "0.8rem",
|
|
3152
|
+
borderRadius: "50%",
|
|
3153
|
+
states: {
|
|
3154
|
+
normal: {
|
|
3155
|
+
bgColor: t.semantic.color.background.secondary0,
|
|
3156
|
+
borderColor: t.semantic.color.background.primary400
|
|
3157
|
+
},
|
|
3158
|
+
disabled: {
|
|
3159
|
+
bgColor: t.semantic.color.background.secondary0,
|
|
3160
|
+
borderColor: t.semantic.color.background.neutral500
|
|
3161
|
+
}
|
|
3162
|
+
}
|
|
3163
|
+
},
|
|
3164
|
+
mark: {
|
|
3165
|
+
width: "0.4rem",
|
|
3166
|
+
height: "0.4rem",
|
|
3167
|
+
rangeStates: {
|
|
3168
|
+
inRange: {
|
|
3169
|
+
normal: {
|
|
3170
|
+
bgColor: t.semantic.color.background.primary100
|
|
3171
|
+
},
|
|
3172
|
+
disabled: {
|
|
3173
|
+
bgColor: t.semantic.color.background.secondary500
|
|
3174
|
+
}
|
|
3175
|
+
},
|
|
3176
|
+
outOfRange: {
|
|
3177
|
+
normal: {
|
|
3178
|
+
bgColor: t.semantic.color.background.secondary500
|
|
3179
|
+
},
|
|
3180
|
+
disabled: {
|
|
3181
|
+
bgColor: t.semantic.color.background.secondary500
|
|
3182
|
+
}
|
|
3183
|
+
}
|
|
3184
|
+
}
|
|
3185
|
+
},
|
|
3186
|
+
label: {
|
|
3187
|
+
offset: t.core.space.space200
|
|
3188
|
+
}
|
|
3189
|
+
}, ua = {
|
|
3076
3190
|
gap: "2.4rem",
|
|
3077
3191
|
step: {
|
|
3078
3192
|
gap: "0.8rem",
|
|
@@ -3119,7 +3233,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3119
3233
|
}
|
|
3120
3234
|
}
|
|
3121
3235
|
}
|
|
3122
|
-
},
|
|
3236
|
+
}, pa = {
|
|
3123
3237
|
width: "3.2rem",
|
|
3124
3238
|
height: "1.8rem",
|
|
3125
3239
|
padding: "0.2rem",
|
|
@@ -3171,7 +3285,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3171
3285
|
}
|
|
3172
3286
|
}
|
|
3173
3287
|
}
|
|
3174
|
-
},
|
|
3288
|
+
}, Ca = {
|
|
3175
3289
|
table: {
|
|
3176
3290
|
tableContainer: {
|
|
3177
3291
|
borderRadius: "0.8rem",
|
|
@@ -3259,7 +3373,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3259
3373
|
textColor: t.semantic.color.text.secondary800
|
|
3260
3374
|
}
|
|
3261
3375
|
}
|
|
3262
|
-
},
|
|
3376
|
+
}, xa = {
|
|
3263
3377
|
bgColor: "transparent",
|
|
3264
3378
|
padding: "1rem 1.6rem",
|
|
3265
3379
|
gap: "3.2rem",
|
|
@@ -3282,7 +3396,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3282
3396
|
actionsBar: {
|
|
3283
3397
|
gap: "1.6rem"
|
|
3284
3398
|
}
|
|
3285
|
-
},
|
|
3399
|
+
}, ha = {
|
|
3286
3400
|
variants: {
|
|
3287
3401
|
default: {
|
|
3288
3402
|
gap: "4rem",
|
|
@@ -3365,22 +3479,36 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3365
3479
|
}
|
|
3366
3480
|
}
|
|
3367
3481
|
}
|
|
3368
|
-
}, q = "transparent",
|
|
3482
|
+
}, q = "transparent", fa = {
|
|
3369
3483
|
layouts: {
|
|
3370
3484
|
block: {
|
|
3371
3485
|
sizes: {
|
|
3372
|
-
|
|
3486
|
+
medium: {
|
|
3373
3487
|
height: "2.6rem",
|
|
3374
3488
|
lineHeight: "1.9rem",
|
|
3375
3489
|
gap: "0.2rem",
|
|
3376
3490
|
padding: "0.4rem 0.6rem",
|
|
3377
3491
|
borderRadius: "0.4rem"
|
|
3492
|
+
},
|
|
3493
|
+
small: {
|
|
3494
|
+
height: "2.4rem",
|
|
3495
|
+
lineHeight: "1.9rem",
|
|
3496
|
+
gap: "0.2rem",
|
|
3497
|
+
padding: "0.4rem 0.6rem",
|
|
3498
|
+
borderRadius: "0.4rem"
|
|
3378
3499
|
}
|
|
3379
3500
|
}
|
|
3380
3501
|
},
|
|
3381
3502
|
inline: {
|
|
3382
3503
|
sizes: {
|
|
3383
|
-
|
|
3504
|
+
medium: {
|
|
3505
|
+
height: "unset",
|
|
3506
|
+
lineHeight: "inherit",
|
|
3507
|
+
gap: "0.2rem",
|
|
3508
|
+
padding: "0",
|
|
3509
|
+
borderRadius: "0"
|
|
3510
|
+
},
|
|
3511
|
+
small: {
|
|
3384
3512
|
height: "unset",
|
|
3385
3513
|
lineHeight: "inherit",
|
|
3386
3514
|
gap: "0.2rem",
|
|
@@ -3465,7 +3593,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3465
3593
|
}
|
|
3466
3594
|
}
|
|
3467
3595
|
}
|
|
3468
|
-
},
|
|
3596
|
+
}, ya = "data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M18%209C18%2013.9706%2013.9706%2018%209%2018C4.02944%2018%200%2013.9706%200%209C0%204.02944%204.02944%200%209%200C13.9706%200%2018%204.02944%2018%209Z'%20fill='%23FFCD01'/%3e%3cpath%20d='M17%209C17%2013.4183%2013.4183%2017%209%2017C4.58172%2017%201%2013.4183%201%209C1%204.58172%204.58172%201%209%201C13.4183%201%2017%204.58172%2017%209Z'%20fill='%23FFCD01'/%3e%3cpath%20d='M16.4185%2012C16.7935%2011.0736%2017%2010.0609%2017%209C17%208.3094%2016.9125%207.63924%2016.748%207H1.25203C1.08751%207.63924%201%208.3094%201%209C1%2010.0609%201.20651%2011.0736%201.58152%2012H16.4185Z'%20fill='%23FFBE01'/%3e%3cpath%20d='M3.70838%2015C2.78496%2014.185%202.05111%2013.1601%201.58152%2012H16.4185C15.9489%2013.1601%2015.2151%2014.185%2014.2917%2015H3.70838Z'%20fill='%23FFB001'/%3e%3cpath%20d='M14.2917%2015C12.8814%2016.2447%2011.0289%2017%209%2017C6.97111%2017%205.11864%2016.2447%203.70838%2015H14.2917Z'%20fill='%23FFA101'/%3e%3c/svg%3e", ka = {
|
|
3469
3597
|
width: "3.6rem",
|
|
3470
3598
|
height: "2.2rem",
|
|
3471
3599
|
padding: "0.1rem",
|
|
@@ -3474,12 +3602,12 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3474
3602
|
borderColor: t.semantic.color.border.neutral600,
|
|
3475
3603
|
bgColor: t.semantic.color.background.neutral300,
|
|
3476
3604
|
thumb: {
|
|
3477
|
-
icon: `url("${
|
|
3605
|
+
icon: `url("${ya}")`,
|
|
3478
3606
|
iconAspectRatio: "1/1",
|
|
3479
3607
|
borderRadius: "0",
|
|
3480
3608
|
bgColor: "transparent"
|
|
3481
3609
|
}
|
|
3482
|
-
},
|
|
3610
|
+
}, va = {
|
|
3483
3611
|
width: "clamp(400px, 33vw, 640px)",
|
|
3484
3612
|
padding: "12px max(12px, calc(20 * (100vw / 1920)))",
|
|
3485
3613
|
shadow: "0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05)",
|
|
@@ -3491,7 +3619,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3491
3619
|
toaster: {
|
|
3492
3620
|
gap: "2rem"
|
|
3493
3621
|
}
|
|
3494
|
-
}, wo = "transparent",
|
|
3622
|
+
}, wo = "transparent", wa = {
|
|
3495
3623
|
gap: "0.4rem",
|
|
3496
3624
|
height: "2.7rem",
|
|
3497
3625
|
lineHeight: "1.9rem",
|
|
@@ -3546,7 +3674,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3546
3674
|
minWidth: "2rem",
|
|
3547
3675
|
borderRadius: "99rem"
|
|
3548
3676
|
}
|
|
3549
|
-
},
|
|
3677
|
+
}, Sa = {
|
|
3550
3678
|
textColor: t.semantic.color.text.neutral800,
|
|
3551
3679
|
bgColor: t.semantic.color.background.neutral100,
|
|
3552
3680
|
shadow: t.core.shadow.shadow400,
|
|
@@ -3560,7 +3688,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3560
3688
|
height: "8px",
|
|
3561
3689
|
shadow: "rgba(0, 0, 0, 0.03) 0px 2px 1px"
|
|
3562
3690
|
}
|
|
3563
|
-
},
|
|
3691
|
+
}, $a = {
|
|
3564
3692
|
levelOffset: "1.8rem",
|
|
3565
3693
|
item: {
|
|
3566
3694
|
inlinePadding: "0.8rem 1.6rem",
|
|
@@ -3573,7 +3701,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3573
3701
|
iconColor: t.semantic.color.icon.neutral800,
|
|
3574
3702
|
gap: "0.4rem"
|
|
3575
3703
|
}
|
|
3576
|
-
},
|
|
3704
|
+
}, Ra = {
|
|
3577
3705
|
colors: {
|
|
3578
3706
|
primary: t.semantic.color.text.neutral800,
|
|
3579
3707
|
secondary: t.semantic.color.text.neutral700
|
|
@@ -3643,7 +3771,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3643
3771
|
semiBold: t.core.font.fontWeight.semiBold
|
|
3644
3772
|
}
|
|
3645
3773
|
}
|
|
3646
|
-
},
|
|
3774
|
+
}, za = {
|
|
3647
3775
|
gap: "1.6rem",
|
|
3648
3776
|
header: {
|
|
3649
3777
|
gap: "0.8rem"
|
|
@@ -3695,13 +3823,13 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3695
3823
|
borderColor: t.semantic.color.border.neutral300
|
|
3696
3824
|
}
|
|
3697
3825
|
}
|
|
3698
|
-
},
|
|
3826
|
+
}, Wa = {
|
|
3699
3827
|
bgColor: t.semantic.color.background.neutral100,
|
|
3700
3828
|
textColor: t.semantic.color.background.neutral700,
|
|
3701
3829
|
fontFamily: t.core.font.fontFamily.regular,
|
|
3702
3830
|
fontSize: t.core.font.fontSize.s14,
|
|
3703
3831
|
lineHeight: "1.4"
|
|
3704
|
-
},
|
|
3832
|
+
}, Ba = {
|
|
3705
3833
|
width: "0.5rem",
|
|
3706
3834
|
height: "0.5rem",
|
|
3707
3835
|
bgColor: t.semantic.color.background.secondary100,
|
|
@@ -3715,10 +3843,10 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3715
3843
|
mode: "light",
|
|
3716
3844
|
...t,
|
|
3717
3845
|
components: {
|
|
3718
|
-
actionIconButton:
|
|
3719
|
-
appBar:
|
|
3720
|
-
appSelectionMenu:
|
|
3721
|
-
autoComplete:
|
|
3846
|
+
actionIconButton: Le,
|
|
3847
|
+
appBar: Me,
|
|
3848
|
+
appSelectionMenu: He,
|
|
3849
|
+
autoComplete: Te,
|
|
3722
3850
|
badge: Ie,
|
|
3723
3851
|
banner: Ee,
|
|
3724
3852
|
boxSelectionGroup: Xe,
|
|
@@ -3735,44 +3863,46 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3735
3863
|
formField: jt,
|
|
3736
3864
|
iconButton: Dt,
|
|
3737
3865
|
input: Gt,
|
|
3738
|
-
|
|
3739
|
-
|
|
3740
|
-
|
|
3741
|
-
|
|
3742
|
-
|
|
3743
|
-
|
|
3744
|
-
|
|
3745
|
-
|
|
3746
|
-
|
|
3747
|
-
|
|
3748
|
-
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
3754
|
-
|
|
3755
|
-
|
|
3756
|
-
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3764
|
-
|
|
3765
|
-
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
|
|
3771
|
-
|
|
3866
|
+
keyValueList: Nt,
|
|
3867
|
+
label: qt,
|
|
3868
|
+
layouts: Yt,
|
|
3869
|
+
link: Ut,
|
|
3870
|
+
loader: Zt,
|
|
3871
|
+
menu: Vt,
|
|
3872
|
+
midBar: Jt,
|
|
3873
|
+
modal: Kt,
|
|
3874
|
+
moreInfoIcon: Qt,
|
|
3875
|
+
popover: oa,
|
|
3876
|
+
popupCard: ra,
|
|
3877
|
+
profileIcon: ea,
|
|
3878
|
+
progressBar: ta,
|
|
3879
|
+
radio: aa,
|
|
3880
|
+
searchBar: na,
|
|
3881
|
+
section: ca,
|
|
3882
|
+
select: ia,
|
|
3883
|
+
semanticButton: la,
|
|
3884
|
+
semanticContainer: sa,
|
|
3885
|
+
semanticIcon: da,
|
|
3886
|
+
sideBar: ma,
|
|
3887
|
+
skeleton: ba,
|
|
3888
|
+
slider: ga,
|
|
3889
|
+
stepper: ua,
|
|
3890
|
+
switchButton: pa,
|
|
3891
|
+
table: Ca,
|
|
3892
|
+
tableHeading: xa,
|
|
3893
|
+
tabs: ha,
|
|
3894
|
+
textButton: fa,
|
|
3895
|
+
themeModeSwitch: ka,
|
|
3896
|
+
toast: va,
|
|
3897
|
+
toggleButton: wa,
|
|
3898
|
+
tooltip: Sa,
|
|
3899
|
+
treeView: $a,
|
|
3900
|
+
typography: Ra,
|
|
3901
|
+
windowBar: za
|
|
3772
3902
|
},
|
|
3773
3903
|
globals: {
|
|
3774
|
-
body:
|
|
3775
|
-
scrollbar:
|
|
3904
|
+
body: Wa,
|
|
3905
|
+
scrollbar: Ba
|
|
3776
3906
|
}
|
|
3777
3907
|
}, so = {
|
|
3778
3908
|
transparent: "#00000000",
|
|
@@ -3979,7 +4109,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
3979
4109
|
color: so.primary200
|
|
3980
4110
|
}
|
|
3981
4111
|
}
|
|
3982
|
-
},
|
|
4112
|
+
}, Pa = {
|
|
3983
4113
|
sizes: {
|
|
3984
4114
|
L: {
|
|
3985
4115
|
size: "3rem",
|
|
@@ -4032,7 +4162,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4032
4162
|
}
|
|
4033
4163
|
}
|
|
4034
4164
|
}
|
|
4035
|
-
},
|
|
4165
|
+
}, Fa = {
|
|
4036
4166
|
height: "7rem",
|
|
4037
4167
|
padding: "1.4rem 1.4rem 1.4rem 2.4rem",
|
|
4038
4168
|
separator: `1px solid ${e.semantic.color.border.neutral400}`,
|
|
@@ -4054,7 +4184,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4054
4184
|
accountNameColor: e.semantic.color.text.neutral950
|
|
4055
4185
|
}
|
|
4056
4186
|
}
|
|
4057
|
-
},
|
|
4187
|
+
}, La = {
|
|
4058
4188
|
trigger: {
|
|
4059
4189
|
borderRadius: "0.4rem",
|
|
4060
4190
|
height: "3.2rem",
|
|
@@ -4097,12 +4227,12 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4097
4227
|
color: e.semantic.color.text.neutral800
|
|
4098
4228
|
}
|
|
4099
4229
|
}
|
|
4100
|
-
},
|
|
4230
|
+
}, Ma = {
|
|
4101
4231
|
dropdown: {
|
|
4102
4232
|
screenMarginHeight: "6px",
|
|
4103
4233
|
maxHeight: "50vh"
|
|
4104
4234
|
}
|
|
4105
|
-
}, Pr = "1px",
|
|
4235
|
+
}, Pr = "1px", Ha = {
|
|
4106
4236
|
padding: `${e.core.space.space025} ${e.core.space.space050}`,
|
|
4107
4237
|
gap: e.core.space.space025,
|
|
4108
4238
|
borderRadius: "2px",
|
|
@@ -4165,7 +4295,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4165
4295
|
iconColor: e.semantic.color.text.neutral500
|
|
4166
4296
|
}
|
|
4167
4297
|
}
|
|
4168
|
-
},
|
|
4298
|
+
}, Ta = {
|
|
4169
4299
|
sizes: {
|
|
4170
4300
|
S: {
|
|
4171
4301
|
gap: "0.8rem",
|
|
@@ -4183,7 +4313,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4183
4313
|
split: {
|
|
4184
4314
|
minWidth: "0.8rem"
|
|
4185
4315
|
}
|
|
4186
|
-
},
|
|
4316
|
+
}, Ia = {
|
|
4187
4317
|
gap: e.core.space.space300,
|
|
4188
4318
|
item: {
|
|
4189
4319
|
borderRadius: "4px",
|
|
@@ -4229,7 +4359,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4229
4359
|
defaultItem: {
|
|
4230
4360
|
gap: "0.4rem"
|
|
4231
4361
|
}
|
|
4232
|
-
},
|
|
4362
|
+
}, Ea = {
|
|
4233
4363
|
gap: "0.2rem",
|
|
4234
4364
|
sizes: {
|
|
4235
4365
|
small: {
|
|
@@ -4344,9 +4474,30 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4344
4474
|
borderColor: e.semantic.color.border.neutral600,
|
|
4345
4475
|
textColor: e.semantic.color.text.neutral600
|
|
4346
4476
|
}
|
|
4477
|
+
},
|
|
4478
|
+
upsell: {
|
|
4479
|
+
normal: {
|
|
4480
|
+
bgGradient: `linear-gradient(316deg, ${e.semantic.color.background.discovery500} 0%, ${e.semantic.color.background.discovery400} 78%)`,
|
|
4481
|
+
textColor: e.semantic.color.text.neutral100,
|
|
4482
|
+
borderColor: e.semantic.color.border.discovery600
|
|
4483
|
+
},
|
|
4484
|
+
hover: {
|
|
4485
|
+
bgGradient: `linear-gradient(316deg, ${e.semantic.color.background.discovery500} 0%, ${e.semantic.color.background.discovery500} 78%)`,
|
|
4486
|
+
borderColor: e.semantic.color.border.discovery600
|
|
4487
|
+
},
|
|
4488
|
+
active: {
|
|
4489
|
+
bgGradient: `linear-gradient(316deg, ${e.semantic.color.background.discovery600} 0%, ${e.semantic.color.background.discovery600} 78%)`,
|
|
4490
|
+
borderColor: e.semantic.color.border.discovery700
|
|
4491
|
+
},
|
|
4492
|
+
disabled: {
|
|
4493
|
+
bgGradient: "unset",
|
|
4494
|
+
bgColor: e.semantic.color.background.neutral100,
|
|
4495
|
+
borderColor: e.semantic.color.border.neutral200,
|
|
4496
|
+
textColor: e.semantic.color.text.neutral400
|
|
4497
|
+
}
|
|
4347
4498
|
}
|
|
4348
4499
|
}
|
|
4349
|
-
},
|
|
4500
|
+
}, Xa = {
|
|
4350
4501
|
borderRadius: "0.4rem",
|
|
4351
4502
|
border: `1px solid ${e.semantic.color.border.neutral600}`,
|
|
4352
4503
|
fontSize: "1.4rem",
|
|
@@ -4389,13 +4540,13 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4389
4540
|
}
|
|
4390
4541
|
}
|
|
4391
4542
|
}
|
|
4392
|
-
},
|
|
4543
|
+
}, Oa = {
|
|
4393
4544
|
width: "100%",
|
|
4394
4545
|
height: "fit-content",
|
|
4395
4546
|
bgColor: e.semantic.color.background.neutral100,
|
|
4396
4547
|
shadow: e.core.shadow.shadow4,
|
|
4397
4548
|
borderRadius: "0.8rem"
|
|
4398
|
-
},
|
|
4549
|
+
}, _a = {
|
|
4399
4550
|
width: "1.8rem",
|
|
4400
4551
|
height: "1.8rem",
|
|
4401
4552
|
padding: "0",
|
|
@@ -4459,7 +4610,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4459
4610
|
}
|
|
4460
4611
|
}
|
|
4461
4612
|
}
|
|
4462
|
-
},
|
|
4613
|
+
}, Aa = {
|
|
4463
4614
|
sizes: {
|
|
4464
4615
|
M: {
|
|
4465
4616
|
height: "2.8rem",
|
|
@@ -4516,7 +4667,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4516
4667
|
}
|
|
4517
4668
|
}
|
|
4518
4669
|
}
|
|
4519
|
-
},
|
|
4670
|
+
}, ja = {
|
|
4520
4671
|
sizes: {
|
|
4521
4672
|
M: {
|
|
4522
4673
|
gap: "0.8rem 5px"
|
|
@@ -4534,13 +4685,13 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4534
4685
|
gap: "0.4rem",
|
|
4535
4686
|
padding: "1.2rem 1.6rem"
|
|
4536
4687
|
}
|
|
4537
|
-
},
|
|
4688
|
+
}, Da = {
|
|
4538
4689
|
width: "2.7rem",
|
|
4539
4690
|
height: "2rem",
|
|
4540
4691
|
borderRadius: "5px",
|
|
4541
4692
|
borderWidth: "0.1px",
|
|
4542
4693
|
borderColor: e.semantic.color.border.neutral500
|
|
4543
|
-
},
|
|
4694
|
+
}, Ga = {
|
|
4544
4695
|
fontSize: e.core.font.fontSize.s14,
|
|
4545
4696
|
fontWeight: e.core.font.fontWeight.normal,
|
|
4546
4697
|
fontFamily: e.core.font.fontFamily.regular,
|
|
@@ -4604,7 +4755,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4604
4755
|
weekNumCell: {
|
|
4605
4756
|
fontSize: "1rem"
|
|
4606
4757
|
}
|
|
4607
|
-
},
|
|
4758
|
+
}, Na = {
|
|
4608
4759
|
shadow: `0 0 0.5px 1px ${e.semantic.color.border.neutral400}, -8px 0 16px 0 ${e.semantic.color.border.neutral100}`,
|
|
4609
4760
|
bgColor: e.semantic.color.background.neutral200,
|
|
4610
4761
|
sidePadding: "3.2rem",
|
|
@@ -4630,7 +4781,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4630
4781
|
overlay: {
|
|
4631
4782
|
bgColor: V(e.semantic.color.background.neutral200, 0.8)
|
|
4632
4783
|
}
|
|
4633
|
-
},
|
|
4784
|
+
}, qa = {
|
|
4634
4785
|
chipList: {
|
|
4635
4786
|
padding: "0.8rem 1.6rem",
|
|
4636
4787
|
border: `1px solid ${e.semantic.color.border.neutral400}`
|
|
@@ -4663,7 +4814,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4663
4814
|
padding: "0.8rem 1.6rem"
|
|
4664
4815
|
}
|
|
4665
4816
|
}
|
|
4666
|
-
},
|
|
4817
|
+
}, Ya = {
|
|
4667
4818
|
columnGap: "1.6rem",
|
|
4668
4819
|
group: {
|
|
4669
4820
|
rowGap: "1rem"
|
|
@@ -4677,7 +4828,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4677
4828
|
textColor: e.semantic.color.text.danger500
|
|
4678
4829
|
}
|
|
4679
4830
|
}
|
|
4680
|
-
},
|
|
4831
|
+
}, Ua = {
|
|
4681
4832
|
sizes: {
|
|
4682
4833
|
XXL: {
|
|
4683
4834
|
width: "3.2rem",
|
|
@@ -4721,7 +4872,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4721
4872
|
}
|
|
4722
4873
|
},
|
|
4723
4874
|
borderRadius: "0.4rem"
|
|
4724
|
-
},
|
|
4875
|
+
}, Za = {
|
|
4725
4876
|
padding: "0 0.8rem 0 1rem",
|
|
4726
4877
|
height: "3.6rem",
|
|
4727
4878
|
gap: "0.5rem",
|
|
@@ -4814,7 +4965,34 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4814
4965
|
textColor: e.semantic.color.text.danger500
|
|
4815
4966
|
}
|
|
4816
4967
|
}
|
|
4817
|
-
},
|
|
4968
|
+
}, Va = {
|
|
4969
|
+
container: {
|
|
4970
|
+
borderRadius: "0.8rem",
|
|
4971
|
+
backgroundColor: e.semantic.color.background.neutral100,
|
|
4972
|
+
boxShadow: `0px 0px 0px 1px ${e.semantic.color.border.neutral600}`
|
|
4973
|
+
},
|
|
4974
|
+
headerRow: {
|
|
4975
|
+
minHeight: "5.6rem",
|
|
4976
|
+
bgColor: e.semantic.color.background.neutral100,
|
|
4977
|
+
separator: {
|
|
4978
|
+
color: e.semantic.color.border.neutral400,
|
|
4979
|
+
width: "1px"
|
|
4980
|
+
}
|
|
4981
|
+
},
|
|
4982
|
+
headerCell: {
|
|
4983
|
+
padding: "1rem 1.2rem",
|
|
4984
|
+
color: e.semantic.color.text.neutral800,
|
|
4985
|
+
separator: {
|
|
4986
|
+
color: e.semantic.color.border.neutral400,
|
|
4987
|
+
width: "1px",
|
|
4988
|
+
blockPadding: "1rem"
|
|
4989
|
+
}
|
|
4990
|
+
},
|
|
4991
|
+
bodyCell: {
|
|
4992
|
+
padding: "0.4rem 1.2rem",
|
|
4993
|
+
color: e.semantic.color.text.neutral700
|
|
4994
|
+
}
|
|
4995
|
+
}, Ja = {
|
|
4818
4996
|
gap: "0.5rem",
|
|
4819
4997
|
margin: "0 0 0.2rem 0",
|
|
4820
4998
|
minHeight: "20px",
|
|
@@ -4835,7 +5013,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4835
5013
|
required: {
|
|
4836
5014
|
textColor: e.semantic.color.text.danger500
|
|
4837
5015
|
}
|
|
4838
|
-
},
|
|
5016
|
+
}, Ka = {
|
|
4839
5017
|
flexGroup: {
|
|
4840
5018
|
gap: {
|
|
4841
5019
|
XXS: e.core.space.space025,
|
|
@@ -4871,7 +5049,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4871
5049
|
XXL: e.core.space.space300
|
|
4872
5050
|
}
|
|
4873
5051
|
}
|
|
4874
|
-
},
|
|
5052
|
+
}, Qa = {
|
|
4875
5053
|
variants: {
|
|
4876
5054
|
block: {
|
|
4877
5055
|
sizes: {
|
|
@@ -4941,7 +5119,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4941
5119
|
}
|
|
4942
5120
|
}
|
|
4943
5121
|
}
|
|
4944
|
-
},
|
|
5122
|
+
}, on = {
|
|
4945
5123
|
size: "5rem",
|
|
4946
5124
|
gap: "0.5rem",
|
|
4947
5125
|
variants: {
|
|
@@ -4957,11 +5135,12 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
4957
5135
|
},
|
|
4958
5136
|
inverse: {
|
|
4959
5137
|
bgColor: "rgba(255, 255, 255, 0.2)",
|
|
5138
|
+
// todo: REPLACE ONCE ADDED TO COLOR PALETTE
|
|
4960
5139
|
color: e.semantic.color.icon.neutral100,
|
|
4961
5140
|
textColor: e.semantic.color.icon.neutral100
|
|
4962
5141
|
}
|
|
4963
5142
|
}
|
|
4964
|
-
},
|
|
5143
|
+
}, rn = {
|
|
4965
5144
|
dropDown: {
|
|
4966
5145
|
minWidth: "16rem",
|
|
4967
5146
|
maxWidth: "40rem",
|
|
@@ -5037,7 +5216,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5037
5216
|
}
|
|
5038
5217
|
}
|
|
5039
5218
|
}
|
|
5040
|
-
},
|
|
5219
|
+
}, en = {
|
|
5041
5220
|
header: {
|
|
5042
5221
|
height: "6.2rem",
|
|
5043
5222
|
paddingInline: "1.6rem",
|
|
@@ -5049,7 +5228,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5049
5228
|
gap: "0.8rem"
|
|
5050
5229
|
}
|
|
5051
5230
|
}
|
|
5052
|
-
},
|
|
5231
|
+
}, tn = {
|
|
5053
5232
|
blockScreenMargin: "20px",
|
|
5054
5233
|
inlineScreenMargin: "20px",
|
|
5055
5234
|
inlinePadding: "4rem",
|
|
@@ -5079,9 +5258,9 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5079
5258
|
overlay: {
|
|
5080
5259
|
bgColor: "rgba(0, 0, 0, 0.9)"
|
|
5081
5260
|
}
|
|
5082
|
-
},
|
|
5261
|
+
}, an = {
|
|
5083
5262
|
iconColor: e.semantic.color.icon.neutral700
|
|
5084
|
-
},
|
|
5263
|
+
}, nn = {
|
|
5085
5264
|
bgColor: e.semantic.color.background.neutral200,
|
|
5086
5265
|
shadow: `0 0 0.5px 1px ${e.semantic.color.border.neutral400}, 0 0 16px 8px ${e.semantic.color.border.neutral100}`,
|
|
5087
5266
|
borderRadius: "0.8rem",
|
|
@@ -5094,7 +5273,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5094
5273
|
height: "8px",
|
|
5095
5274
|
shadow: `${e.semantic.color.border.neutral400} 0px 1.5px`
|
|
5096
5275
|
}
|
|
5097
|
-
},
|
|
5276
|
+
}, cn = {
|
|
5098
5277
|
closeButton: {
|
|
5099
5278
|
iconColor: e.semantic.color.icon.neutral700
|
|
5100
5279
|
},
|
|
@@ -5113,7 +5292,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5113
5292
|
margin: "0 0 1.2rem 0",
|
|
5114
5293
|
padding: "1.6rem"
|
|
5115
5294
|
}
|
|
5116
|
-
},
|
|
5295
|
+
}, ln = {
|
|
5117
5296
|
textColor: e.semantic.color.text.neutral100,
|
|
5118
5297
|
border: "solid 1px transparent",
|
|
5119
5298
|
colorGroups: [{
|
|
@@ -5143,7 +5322,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5143
5322
|
L: "4.4rem"
|
|
5144
5323
|
},
|
|
5145
5324
|
fontWeight: e.core.font.fontWeight.bold
|
|
5146
|
-
},
|
|
5325
|
+
}, sn = {
|
|
5147
5326
|
borderRadius: "1px",
|
|
5148
5327
|
textPosition: {
|
|
5149
5328
|
left: {
|
|
@@ -5197,7 +5376,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5197
5376
|
text: {
|
|
5198
5377
|
color: e.semantic.color.text.neutral800
|
|
5199
5378
|
}
|
|
5200
|
-
},
|
|
5379
|
+
}, dn = {
|
|
5201
5380
|
size: "1.8rem",
|
|
5202
5381
|
iconSize: "0.6rem",
|
|
5203
5382
|
padding: "0",
|
|
@@ -5245,7 +5424,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5245
5424
|
}
|
|
5246
5425
|
}
|
|
5247
5426
|
}
|
|
5248
|
-
},
|
|
5427
|
+
}, mn = {
|
|
5249
5428
|
bgColor: e.semantic.color.background.neutral100,
|
|
5250
5429
|
shadow: `0px 0px 0px 1px ${e.semantic.color.border.neutral600}`,
|
|
5251
5430
|
borderRadius: "0.8rem",
|
|
@@ -5267,7 +5446,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5267
5446
|
gap: "0.8rem"
|
|
5268
5447
|
}
|
|
5269
5448
|
}
|
|
5270
|
-
},
|
|
5449
|
+
}, bn = {
|
|
5271
5450
|
width: "100%",
|
|
5272
5451
|
height: "fit-content",
|
|
5273
5452
|
bgColor: e.semantic.color.background.neutral100,
|
|
@@ -5316,7 +5495,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5316
5495
|
width: "1px",
|
|
5317
5496
|
color: e.semantic.color.border.neutral600
|
|
5318
5497
|
}
|
|
5319
|
-
},
|
|
5498
|
+
}, gn = {
|
|
5320
5499
|
padding: "0 1rem",
|
|
5321
5500
|
height: "3.6rem",
|
|
5322
5501
|
gap: "0.6rem",
|
|
@@ -5433,7 +5612,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5433
5612
|
textColor: {
|
|
5434
5613
|
disabled: e.semantic.color.text.neutral500
|
|
5435
5614
|
}
|
|
5436
|
-
}, G = (a, n) => `color-mix(in srgb-linear, ${a} ${n}%, transparent)`,
|
|
5615
|
+
}, G = (a, n) => `color-mix(in srgb-linear, ${a} ${n}%, transparent)`, un = {
|
|
5437
5616
|
sizes: {
|
|
5438
5617
|
S: {
|
|
5439
5618
|
borderRadius: "99rem",
|
|
@@ -5632,7 +5811,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5632
5811
|
}
|
|
5633
5812
|
}
|
|
5634
5813
|
}
|
|
5635
|
-
},
|
|
5814
|
+
}, pn = {
|
|
5636
5815
|
sizes: {
|
|
5637
5816
|
M: {
|
|
5638
5817
|
borderRadius: e.core.space.space100,
|
|
@@ -5672,7 +5851,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5672
5851
|
borderColor: e.semantic.color.border.attention300
|
|
5673
5852
|
}
|
|
5674
5853
|
}
|
|
5675
|
-
},
|
|
5854
|
+
}, Cn = {
|
|
5676
5855
|
variants: {
|
|
5677
5856
|
informative: {
|
|
5678
5857
|
iconColor: e.semantic.color.icon.informative600
|
|
@@ -5690,7 +5869,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5690
5869
|
iconColor: e.semantic.color.icon.success600
|
|
5691
5870
|
}
|
|
5692
5871
|
}
|
|
5693
|
-
},
|
|
5872
|
+
}, xn = {
|
|
5694
5873
|
collapsed: {
|
|
5695
5874
|
bgColor: e.semantic.color.background.neutral100,
|
|
5696
5875
|
shadow: "none",
|
|
@@ -5797,7 +5976,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5797
5976
|
}
|
|
5798
5977
|
}
|
|
5799
5978
|
}
|
|
5800
|
-
},
|
|
5979
|
+
}, hn = {
|
|
5801
5980
|
card: {
|
|
5802
5981
|
gap: "2.4rem",
|
|
5803
5982
|
bgColor: e.semantic.color.background.neutral100,
|
|
@@ -5824,9 +6003,74 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5824
6003
|
grid: {
|
|
5825
6004
|
gap: "1.6rem"
|
|
5826
6005
|
}
|
|
5827
|
-
},
|
|
5828
|
-
gap:
|
|
5829
|
-
|
|
6006
|
+
}, fn = {
|
|
6007
|
+
gap: e.core.space.space150,
|
|
6008
|
+
controlsHeight: "2rem",
|
|
6009
|
+
track: {
|
|
6010
|
+
height: "0.4rem",
|
|
6011
|
+
states: {
|
|
6012
|
+
normal: {
|
|
6013
|
+
bgColor: e.semantic.color.background.secondary800
|
|
6014
|
+
},
|
|
6015
|
+
disabled: {
|
|
6016
|
+
bgColor: e.semantic.color.background.secondary800
|
|
6017
|
+
}
|
|
6018
|
+
}
|
|
6019
|
+
},
|
|
6020
|
+
range: {
|
|
6021
|
+
states: {
|
|
6022
|
+
normal: {
|
|
6023
|
+
bgColor: e.semantic.color.background.primary400
|
|
6024
|
+
},
|
|
6025
|
+
disabled: {
|
|
6026
|
+
bgColor: e.semantic.color.background.neutral900
|
|
6027
|
+
}
|
|
6028
|
+
}
|
|
6029
|
+
},
|
|
6030
|
+
thumb: {
|
|
6031
|
+
width: "2.4rem",
|
|
6032
|
+
height: "2.4rem",
|
|
6033
|
+
borderWidth: "0.8rem",
|
|
6034
|
+
borderRadius: "50%",
|
|
6035
|
+
states: {
|
|
6036
|
+
normal: {
|
|
6037
|
+
bgColor: e.semantic.color.background.secondary0,
|
|
6038
|
+
borderColor: e.semantic.color.border.primary400
|
|
6039
|
+
},
|
|
6040
|
+
disabled: {
|
|
6041
|
+
bgColor: e.semantic.color.background.neutral600,
|
|
6042
|
+
borderColor: e.semantic.color.border.neutral900
|
|
6043
|
+
}
|
|
6044
|
+
}
|
|
6045
|
+
},
|
|
6046
|
+
mark: {
|
|
6047
|
+
width: "0.4rem",
|
|
6048
|
+
height: "0.4rem",
|
|
6049
|
+
rangeStates: {
|
|
6050
|
+
inRange: {
|
|
6051
|
+
normal: {
|
|
6052
|
+
bgColor: e.semantic.color.background.primary100
|
|
6053
|
+
},
|
|
6054
|
+
disabled: {
|
|
6055
|
+
bgColor: e.semantic.color.background.secondary600
|
|
6056
|
+
}
|
|
6057
|
+
},
|
|
6058
|
+
outOfRange: {
|
|
6059
|
+
normal: {
|
|
6060
|
+
bgColor: e.semantic.color.background.secondary600
|
|
6061
|
+
},
|
|
6062
|
+
disabled: {
|
|
6063
|
+
bgColor: e.semantic.color.background.secondary700
|
|
6064
|
+
}
|
|
6065
|
+
}
|
|
6066
|
+
}
|
|
6067
|
+
},
|
|
6068
|
+
label: {
|
|
6069
|
+
offset: e.core.space.space200
|
|
6070
|
+
}
|
|
6071
|
+
}, yn = {
|
|
6072
|
+
gap: "2.4rem",
|
|
6073
|
+
step: {
|
|
5830
6074
|
gap: "0.8rem",
|
|
5831
6075
|
indicator: {
|
|
5832
6076
|
size: "2rem"
|
|
@@ -5871,7 +6115,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5871
6115
|
}
|
|
5872
6116
|
}
|
|
5873
6117
|
}
|
|
5874
|
-
},
|
|
6118
|
+
}, kn = {
|
|
5875
6119
|
width: "3.2rem",
|
|
5876
6120
|
height: "1.8rem",
|
|
5877
6121
|
padding: "0.2rem",
|
|
@@ -5923,7 +6167,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
5923
6167
|
}
|
|
5924
6168
|
}
|
|
5925
6169
|
}
|
|
5926
|
-
},
|
|
6170
|
+
}, vn = {
|
|
5927
6171
|
table: {
|
|
5928
6172
|
tableContainer: {
|
|
5929
6173
|
borderRadius: "0.8rem",
|
|
@@ -6011,7 +6255,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6011
6255
|
textColor: e.semantic.color.text.neutral700
|
|
6012
6256
|
}
|
|
6013
6257
|
}
|
|
6014
|
-
},
|
|
6258
|
+
}, wn = {
|
|
6015
6259
|
bgColor: "transparent",
|
|
6016
6260
|
padding: "1rem 1.6rem",
|
|
6017
6261
|
gap: "3.2rem",
|
|
@@ -6034,7 +6278,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6034
6278
|
actionsBar: {
|
|
6035
6279
|
gap: "1.6rem"
|
|
6036
6280
|
}
|
|
6037
|
-
},
|
|
6281
|
+
}, Sn = {
|
|
6038
6282
|
variants: {
|
|
6039
6283
|
default: {
|
|
6040
6284
|
gap: "4rem",
|
|
@@ -6120,22 +6364,36 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6120
6364
|
}
|
|
6121
6365
|
}
|
|
6122
6366
|
}
|
|
6123
|
-
}, Y = "transparent",
|
|
6367
|
+
}, Y = "transparent", $n = {
|
|
6124
6368
|
layouts: {
|
|
6125
6369
|
block: {
|
|
6126
6370
|
sizes: {
|
|
6127
|
-
|
|
6371
|
+
medium: {
|
|
6128
6372
|
height: "2.6rem",
|
|
6129
6373
|
lineHeight: "1.9rem",
|
|
6130
6374
|
gap: "0.2rem",
|
|
6131
6375
|
padding: "0.4rem 0.6rem",
|
|
6132
6376
|
borderRadius: "0.4rem"
|
|
6377
|
+
},
|
|
6378
|
+
small: {
|
|
6379
|
+
height: "2.4rem",
|
|
6380
|
+
lineHeight: "1.9rem",
|
|
6381
|
+
gap: "0.2rem",
|
|
6382
|
+
padding: "0.4rem 0.6rem",
|
|
6383
|
+
borderRadius: "0.4rem"
|
|
6133
6384
|
}
|
|
6134
6385
|
}
|
|
6135
6386
|
},
|
|
6136
6387
|
inline: {
|
|
6137
6388
|
sizes: {
|
|
6138
|
-
|
|
6389
|
+
medium: {
|
|
6390
|
+
height: "unset",
|
|
6391
|
+
lineHeight: "inherit",
|
|
6392
|
+
gap: "0.2rem",
|
|
6393
|
+
padding: "0",
|
|
6394
|
+
borderRadius: "0"
|
|
6395
|
+
},
|
|
6396
|
+
small: {
|
|
6139
6397
|
height: "unset",
|
|
6140
6398
|
lineHeight: "inherit",
|
|
6141
6399
|
gap: "0.2rem",
|
|
@@ -6220,7 +6478,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6220
6478
|
}
|
|
6221
6479
|
}
|
|
6222
6480
|
}
|
|
6223
|
-
},
|
|
6481
|
+
}, Rn = "data:image/svg+xml,%3csvg%20width='18'%20height='18'%20viewBox='0%200%2018%2018'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M18%209C18%2013.9706%2013.9706%2018%209%2018C4.02944%2018%200%2013.9706%200%209C0%204.02944%204.02944%200%209%200C13.9706%200%2018%204.02944%2018%209Z'%20fill='%23F1F5FA'/%3e%3cpath%20d='M3%2014C7.97056%2014%2012%209.97056%2012%205C12%203.20867%2011.4767%201.53958%2010.5745%200.137268C10.0633%200.0470571%209.53713%200%209%200C4.02944%200%200%204.02944%200%209C0%2010.7913%200.523342%2012.4604%201.42547%2013.8627C1.93672%2013.9529%202.46287%2014%203%2014Z'%20fill='%23BDD0E7'/%3e%3cpath%20d='M2%2013C6.97056%2013%2011%208.97056%2011%204C11%202.58941%2010.6755%201.25461%2010.097%200.0661876C9.73747%200.0224918%209.37136%200%209%200C4.02944%200%200%204.02944%200%209C0%2010.4106%200.324521%2011.7454%200.902969%2012.9338C1.26253%2012.9775%201.62864%2013%202%2013Z'%20fill='%231C324D'/%3e%3cpath%20d='M7.10199%203.62067C7.04777%203.47308%206.90723%203.375%206.75%203.375C6.59277%203.375%206.45223%203.47308%206.39801%203.62067L6.25631%204.00631L5.87067%204.14801C5.72308%204.20223%205.625%204.34277%205.625%204.5C5.625%204.65723%205.72308%204.79777%205.87067%204.85199L6.25631%204.99369L6.39801%205.37933C6.45223%205.52692%206.59277%205.625%206.75%205.625C6.90723%205.625%207.04777%205.52692%207.10199%205.37933L7.24369%204.99369L7.62933%204.85199C7.77692%204.79777%207.875%204.65723%207.875%204.5C7.875%204.34277%207.77692%204.20223%207.62933%204.14801L7.24369%204.00631L7.10199%203.62067Z'%20fill='%23F1F5FA'/%3e%3cpath%20d='M4.47699%205.87067C4.42277%205.72308%204.28223%205.625%204.125%205.625C3.96777%205.625%203.82723%205.72308%203.77301%205.87067L3.32902%207.07902L2.12067%207.52301C1.97308%207.57723%201.875%207.71777%201.875%207.875C1.875%208.03223%201.97308%208.17277%202.12067%208.22699L3.32902%208.67098L3.77301%209.87933C3.82723%2010.0269%203.96777%2010.125%204.125%2010.125C4.28223%2010.125%204.42277%2010.0269%204.47699%209.87933L4.92098%208.67098L6.12933%208.22699C6.27692%208.17277%206.375%208.03223%206.375%207.875C6.375%207.71777%206.27692%207.57723%206.12933%207.52301L4.92098%207.07902L4.47699%205.87067Z'%20fill='%23F1F5FA'/%3e%3c/svg%3e", zn = {
|
|
6224
6482
|
width: "3.6rem",
|
|
6225
6483
|
height: "2.2rem",
|
|
6226
6484
|
padding: "0.1rem",
|
|
@@ -6229,12 +6487,12 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6229
6487
|
borderColor: e.semantic.color.border.neutral600,
|
|
6230
6488
|
bgColor: e.semantic.color.background.neutral300,
|
|
6231
6489
|
thumb: {
|
|
6232
|
-
icon: `url("${
|
|
6490
|
+
icon: `url("${Rn}")`,
|
|
6233
6491
|
iconAspectRatio: "1/1",
|
|
6234
6492
|
borderRadius: "0",
|
|
6235
6493
|
bgColor: "transparent"
|
|
6236
6494
|
}
|
|
6237
|
-
},
|
|
6495
|
+
}, Wn = {
|
|
6238
6496
|
width: "clamp(400px, 33vw, 640px)",
|
|
6239
6497
|
padding: "12px max(12px, calc(20 * (100vw / 1920)))",
|
|
6240
6498
|
shadow: "0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05)",
|
|
@@ -6246,7 +6504,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6246
6504
|
toaster: {
|
|
6247
6505
|
gap: "2rem"
|
|
6248
6506
|
}
|
|
6249
|
-
}, So = "transparent",
|
|
6507
|
+
}, So = "transparent", Bn = {
|
|
6250
6508
|
gap: "0.4rem",
|
|
6251
6509
|
height: "2.7rem",
|
|
6252
6510
|
lineHeight: "1.9rem",
|
|
@@ -6301,7 +6559,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6301
6559
|
minWidth: "2rem",
|
|
6302
6560
|
borderRadius: "99rem"
|
|
6303
6561
|
}
|
|
6304
|
-
},
|
|
6562
|
+
}, Pn = {
|
|
6305
6563
|
textColor: e.semantic.color.text.neutral800,
|
|
6306
6564
|
bgColor: e.semantic.color.background.neutral200,
|
|
6307
6565
|
shadow: `0 0 0.5px 1px ${e.semantic.color.border.neutral400}`,
|
|
@@ -6315,7 +6573,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6315
6573
|
height: "8px",
|
|
6316
6574
|
shadow: `${e.semantic.color.border.neutral400} 0px 1.5px`
|
|
6317
6575
|
}
|
|
6318
|
-
},
|
|
6576
|
+
}, Fn = {
|
|
6319
6577
|
levelOffset: "1.8rem",
|
|
6320
6578
|
item: {
|
|
6321
6579
|
inlinePadding: "0.8rem 1.6rem",
|
|
@@ -6328,7 +6586,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6328
6586
|
iconColor: e.semantic.color.icon.neutral800,
|
|
6329
6587
|
gap: "0.4rem"
|
|
6330
6588
|
}
|
|
6331
|
-
},
|
|
6589
|
+
}, Ln = {
|
|
6332
6590
|
colors: {
|
|
6333
6591
|
primary: e.semantic.color.text.neutral800,
|
|
6334
6592
|
secondary: e.semantic.color.text.neutral700
|
|
@@ -6398,7 +6656,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6398
6656
|
semiBold: e.core.font.fontWeight.semiBold
|
|
6399
6657
|
}
|
|
6400
6658
|
}
|
|
6401
|
-
},
|
|
6659
|
+
}, Mn = {
|
|
6402
6660
|
gap: "1.6rem",
|
|
6403
6661
|
header: {
|
|
6404
6662
|
gap: "0.8rem"
|
|
@@ -6450,13 +6708,13 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6450
6708
|
borderColor: e.semantic.color.border.neutral300
|
|
6451
6709
|
}
|
|
6452
6710
|
}
|
|
6453
|
-
},
|
|
6711
|
+
}, Hn = {
|
|
6454
6712
|
bgColor: e.semantic.color.background.neutral100,
|
|
6455
6713
|
textColor: e.semantic.color.background.neutral700,
|
|
6456
6714
|
fontFamily: e.core.font.fontFamily.regular,
|
|
6457
6715
|
fontSize: e.core.font.fontSize.s14,
|
|
6458
6716
|
lineHeight: "1.4"
|
|
6459
|
-
},
|
|
6717
|
+
}, Tn = {
|
|
6460
6718
|
width: "0.5rem",
|
|
6461
6719
|
height: "0.5rem",
|
|
6462
6720
|
bgColor: e.semantic.color.background.neutral100,
|
|
@@ -6465,69 +6723,71 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6465
6723
|
bgColor: e.semantic.color.background.neutral400,
|
|
6466
6724
|
borderRadius: "99rem"
|
|
6467
6725
|
}
|
|
6468
|
-
},
|
|
6726
|
+
}, In = {
|
|
6469
6727
|
name: "dark",
|
|
6470
6728
|
mode: "dark",
|
|
6471
6729
|
...e,
|
|
6472
6730
|
components: {
|
|
6473
|
-
actionIconButton:
|
|
6474
|
-
appBar:
|
|
6475
|
-
appSelectionMenu:
|
|
6476
|
-
autoComplete:
|
|
6477
|
-
badge:
|
|
6478
|
-
banner:
|
|
6479
|
-
boxSelectionGroup:
|
|
6480
|
-
button:
|
|
6481
|
-
buttonGroup:
|
|
6482
|
-
card:
|
|
6483
|
-
checkbox:
|
|
6484
|
-
chip:
|
|
6485
|
-
chipList:
|
|
6486
|
-
countryFlag:
|
|
6487
|
-
datePicker:
|
|
6488
|
-
drawer:
|
|
6489
|
-
filters:
|
|
6490
|
-
formField:
|
|
6491
|
-
iconButton:
|
|
6492
|
-
input:
|
|
6493
|
-
|
|
6494
|
-
|
|
6495
|
-
|
|
6496
|
-
|
|
6497
|
-
|
|
6498
|
-
|
|
6499
|
-
|
|
6500
|
-
|
|
6501
|
-
|
|
6502
|
-
|
|
6503
|
-
|
|
6504
|
-
|
|
6505
|
-
|
|
6506
|
-
|
|
6507
|
-
|
|
6508
|
-
|
|
6509
|
-
|
|
6510
|
-
|
|
6511
|
-
|
|
6512
|
-
|
|
6513
|
-
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
|
|
6517
|
-
|
|
6518
|
-
|
|
6519
|
-
|
|
6520
|
-
|
|
6521
|
-
|
|
6522
|
-
|
|
6523
|
-
|
|
6524
|
-
|
|
6525
|
-
|
|
6526
|
-
|
|
6731
|
+
actionIconButton: Pa,
|
|
6732
|
+
appBar: Fa,
|
|
6733
|
+
appSelectionMenu: La,
|
|
6734
|
+
autoComplete: Ma,
|
|
6735
|
+
badge: Ha,
|
|
6736
|
+
banner: Ta,
|
|
6737
|
+
boxSelectionGroup: Ia,
|
|
6738
|
+
button: Ea,
|
|
6739
|
+
buttonGroup: Xa,
|
|
6740
|
+
card: Oa,
|
|
6741
|
+
checkbox: _a,
|
|
6742
|
+
chip: Aa,
|
|
6743
|
+
chipList: ja,
|
|
6744
|
+
countryFlag: Da,
|
|
6745
|
+
datePicker: Ga,
|
|
6746
|
+
drawer: Na,
|
|
6747
|
+
filters: qa,
|
|
6748
|
+
formField: Ya,
|
|
6749
|
+
iconButton: Ua,
|
|
6750
|
+
input: Za,
|
|
6751
|
+
keyValueList: Va,
|
|
6752
|
+
label: Ja,
|
|
6753
|
+
layouts: Ka,
|
|
6754
|
+
link: Qa,
|
|
6755
|
+
loader: on,
|
|
6756
|
+
menu: rn,
|
|
6757
|
+
midBar: en,
|
|
6758
|
+
modal: tn,
|
|
6759
|
+
moreInfoIcon: an,
|
|
6760
|
+
popover: nn,
|
|
6761
|
+
popupCard: cn,
|
|
6762
|
+
profileIcon: ln,
|
|
6763
|
+
progressBar: sn,
|
|
6764
|
+
radio: dn,
|
|
6765
|
+
searchBar: mn,
|
|
6766
|
+
section: bn,
|
|
6767
|
+
select: gn,
|
|
6768
|
+
semanticButton: un,
|
|
6769
|
+
semanticContainer: pn,
|
|
6770
|
+
semanticIcon: Cn,
|
|
6771
|
+
sideBar: xn,
|
|
6772
|
+
skeleton: hn,
|
|
6773
|
+
slider: fn,
|
|
6774
|
+
stepper: yn,
|
|
6775
|
+
switchButton: kn,
|
|
6776
|
+
table: vn,
|
|
6777
|
+
tableHeading: wn,
|
|
6778
|
+
tabs: Sn,
|
|
6779
|
+
textButton: $n,
|
|
6780
|
+
themeModeSwitch: zn,
|
|
6781
|
+
toast: Wn,
|
|
6782
|
+
toggleButton: Bn,
|
|
6783
|
+
tooltip: Pn,
|
|
6784
|
+
treeView: Fn,
|
|
6785
|
+
typography: Ln,
|
|
6786
|
+
windowBar: Mn
|
|
6527
6787
|
},
|
|
6528
6788
|
globals: {
|
|
6529
|
-
body:
|
|
6530
|
-
scrollbar:
|
|
6789
|
+
body: Hn,
|
|
6790
|
+
scrollbar: Tn
|
|
6531
6791
|
}
|
|
6532
6792
|
}, mo = {
|
|
6533
6793
|
transparent: "#00000000",
|
|
@@ -6734,7 +6994,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6734
6994
|
color: mo.primary600
|
|
6735
6995
|
}
|
|
6736
6996
|
}
|
|
6737
|
-
},
|
|
6997
|
+
}, En = {
|
|
6738
6998
|
sizes: {
|
|
6739
6999
|
L: {
|
|
6740
7000
|
size: "3rem",
|
|
@@ -6787,7 +7047,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6787
7047
|
}
|
|
6788
7048
|
}
|
|
6789
7049
|
}
|
|
6790
|
-
},
|
|
7050
|
+
}, Xn = {
|
|
6791
7051
|
height: "7rem",
|
|
6792
7052
|
padding: "1.4rem 1.4rem 1.4rem 2.4rem",
|
|
6793
7053
|
separator: `1px solid ${o.semantic.color.border.secondary200}`,
|
|
@@ -6809,7 +7069,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6809
7069
|
accountNameColor: o.semantic.color.text.secondary950
|
|
6810
7070
|
}
|
|
6811
7071
|
}
|
|
6812
|
-
},
|
|
7072
|
+
}, On = {
|
|
6813
7073
|
trigger: {
|
|
6814
7074
|
borderRadius: "0.4rem",
|
|
6815
7075
|
height: "3.2rem",
|
|
@@ -6852,12 +7112,12 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6852
7112
|
color: o.semantic.color.text.neutral800
|
|
6853
7113
|
}
|
|
6854
7114
|
}
|
|
6855
|
-
},
|
|
7115
|
+
}, _n = {
|
|
6856
7116
|
dropdown: {
|
|
6857
7117
|
screenMarginHeight: "6px",
|
|
6858
7118
|
maxHeight: "50vh"
|
|
6859
7119
|
}
|
|
6860
|
-
}, Fr = "1px",
|
|
7120
|
+
}, Fr = "1px", An = {
|
|
6861
7121
|
padding: `${o.core.space.space025} ${o.core.space.space050}`,
|
|
6862
7122
|
gap: o.core.space.space025,
|
|
6863
7123
|
borderRadius: "2px",
|
|
@@ -6920,7 +7180,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6920
7180
|
iconColor: o.semantic.color.text.secondary800
|
|
6921
7181
|
}
|
|
6922
7182
|
}
|
|
6923
|
-
},
|
|
7183
|
+
}, jn = {
|
|
6924
7184
|
sizes: {
|
|
6925
7185
|
S: {
|
|
6926
7186
|
gap: "0.8rem",
|
|
@@ -6938,7 +7198,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6938
7198
|
split: {
|
|
6939
7199
|
minWidth: "0.8rem"
|
|
6940
7200
|
}
|
|
6941
|
-
},
|
|
7201
|
+
}, Dn = {
|
|
6942
7202
|
gap: o.core.space.space300,
|
|
6943
7203
|
item: {
|
|
6944
7204
|
borderRadius: "4px",
|
|
@@ -6993,7 +7253,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
6993
7253
|
defaultItem: {
|
|
6994
7254
|
gap: "0.4rem"
|
|
6995
7255
|
}
|
|
6996
|
-
},
|
|
7256
|
+
}, Gn = {
|
|
6997
7257
|
gap: "0.2rem",
|
|
6998
7258
|
sizes: {
|
|
6999
7259
|
small: {
|
|
@@ -7125,9 +7385,30 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7125
7385
|
borderColor: o.semantic.color.border.neutral200,
|
|
7126
7386
|
textColor: o.semantic.color.text.neutral400
|
|
7127
7387
|
}
|
|
7388
|
+
},
|
|
7389
|
+
upsell: {
|
|
7390
|
+
normal: {
|
|
7391
|
+
bgGradient: `linear-gradient(316deg, ${o.semantic.color.background.discovery500} 0%, ${o.semantic.color.background.discovery400} 78%)`,
|
|
7392
|
+
textColor: o.semantic.color.text.secondary0,
|
|
7393
|
+
borderColor: o.semantic.color.border.discovery600
|
|
7394
|
+
},
|
|
7395
|
+
hover: {
|
|
7396
|
+
bgGradient: `linear-gradient(316deg, ${o.semantic.color.background.discovery500} 0%, ${o.semantic.color.background.discovery500} 78%)`,
|
|
7397
|
+
borderColor: o.semantic.color.border.discovery600
|
|
7398
|
+
},
|
|
7399
|
+
active: {
|
|
7400
|
+
bgGradient: `linear-gradient(316deg, ${o.semantic.color.background.discovery600} 0%, ${o.semantic.color.background.discovery600} 78%)`,
|
|
7401
|
+
borderColor: o.semantic.color.border.discovery700
|
|
7402
|
+
},
|
|
7403
|
+
disabled: {
|
|
7404
|
+
bgGradient: "unset",
|
|
7405
|
+
bgColor: o.semantic.color.background.neutral100,
|
|
7406
|
+
borderColor: o.semantic.color.border.neutral200,
|
|
7407
|
+
textColor: o.semantic.color.text.neutral400
|
|
7408
|
+
}
|
|
7128
7409
|
}
|
|
7129
7410
|
}
|
|
7130
|
-
},
|
|
7411
|
+
}, Nn = {
|
|
7131
7412
|
borderRadius: "0.4rem",
|
|
7132
7413
|
border: `1px solid ${o.semantic.color.border.transparent}`,
|
|
7133
7414
|
fontSize: "1.4rem",
|
|
@@ -7170,13 +7451,13 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7170
7451
|
}
|
|
7171
7452
|
}
|
|
7172
7453
|
}
|
|
7173
|
-
},
|
|
7454
|
+
}, qn = {
|
|
7174
7455
|
width: "100%",
|
|
7175
7456
|
height: "fit-content",
|
|
7176
7457
|
bgColor: o.semantic.color.background.neutral100,
|
|
7177
7458
|
shadow: o.core.shadow.shadow4,
|
|
7178
7459
|
borderRadius: "0.8rem"
|
|
7179
|
-
},
|
|
7460
|
+
}, Yn = {
|
|
7180
7461
|
width: "1.8rem",
|
|
7181
7462
|
height: "1.8rem",
|
|
7182
7463
|
padding: "0",
|
|
@@ -7240,7 +7521,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7240
7521
|
}
|
|
7241
7522
|
}
|
|
7242
7523
|
}
|
|
7243
|
-
},
|
|
7524
|
+
}, Un = {
|
|
7244
7525
|
sizes: {
|
|
7245
7526
|
M: {
|
|
7246
7527
|
height: "2.8rem",
|
|
@@ -7297,7 +7578,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7297
7578
|
}
|
|
7298
7579
|
}
|
|
7299
7580
|
}
|
|
7300
|
-
},
|
|
7581
|
+
}, Zn = {
|
|
7301
7582
|
sizes: {
|
|
7302
7583
|
M: {
|
|
7303
7584
|
gap: "0.8rem 5px"
|
|
@@ -7315,13 +7596,13 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7315
7596
|
gap: "0.4rem",
|
|
7316
7597
|
padding: "1.2rem 1.6rem"
|
|
7317
7598
|
}
|
|
7318
|
-
},
|
|
7599
|
+
}, Vn = {
|
|
7319
7600
|
width: "2.7rem",
|
|
7320
7601
|
height: "2rem",
|
|
7321
7602
|
borderRadius: "5px",
|
|
7322
7603
|
borderWidth: "0.1px",
|
|
7323
7604
|
borderColor: o.semantic.color.border.secondary400
|
|
7324
|
-
},
|
|
7605
|
+
}, Jn = {
|
|
7325
7606
|
fontSize: o.core.font.fontSize.s14,
|
|
7326
7607
|
fontWeight: o.core.font.fontWeight.normal,
|
|
7327
7608
|
fontFamily: o.core.font.fontFamily.regular,
|
|
@@ -7385,7 +7666,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7385
7666
|
weekNumCell: {
|
|
7386
7667
|
fontSize: "1rem"
|
|
7387
7668
|
}
|
|
7388
|
-
},
|
|
7669
|
+
}, Kn = {
|
|
7389
7670
|
shadow: o.core.shadow.shadow500,
|
|
7390
7671
|
bgColor: o.semantic.color.background.neutral0,
|
|
7391
7672
|
sidePadding: "3.2rem",
|
|
@@ -7411,7 +7692,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7411
7692
|
overlay: {
|
|
7412
7693
|
bgColor: V(o.semantic.color.background.secondary0, 0.8)
|
|
7413
7694
|
}
|
|
7414
|
-
},
|
|
7695
|
+
}, Qn = {
|
|
7415
7696
|
chipList: {
|
|
7416
7697
|
padding: "0.8rem 1.6rem",
|
|
7417
7698
|
border: `1px solid ${o.semantic.color.border.secondary300}`
|
|
@@ -7444,7 +7725,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7444
7725
|
padding: "0.8rem 1.6rem"
|
|
7445
7726
|
}
|
|
7446
7727
|
}
|
|
7447
|
-
},
|
|
7728
|
+
}, oc = {
|
|
7448
7729
|
columnGap: "1.6rem",
|
|
7449
7730
|
group: {
|
|
7450
7731
|
rowGap: "1rem"
|
|
@@ -7458,7 +7739,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7458
7739
|
textColor: o.semantic.color.text.danger400
|
|
7459
7740
|
}
|
|
7460
7741
|
}
|
|
7461
|
-
},
|
|
7742
|
+
}, rc = {
|
|
7462
7743
|
sizes: {
|
|
7463
7744
|
XXL: {
|
|
7464
7745
|
width: "3.2rem",
|
|
@@ -7504,7 +7785,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7504
7785
|
}
|
|
7505
7786
|
},
|
|
7506
7787
|
borderRadius: "0.4rem"
|
|
7507
|
-
},
|
|
7788
|
+
}, ec = {
|
|
7508
7789
|
padding: "0 0.8rem 0 1rem",
|
|
7509
7790
|
height: "3.6rem",
|
|
7510
7791
|
gap: "0.5rem",
|
|
@@ -7598,7 +7879,34 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7598
7879
|
textColor: o.semantic.color.text.secondary600
|
|
7599
7880
|
}
|
|
7600
7881
|
}
|
|
7601
|
-
},
|
|
7882
|
+
}, tc = {
|
|
7883
|
+
container: {
|
|
7884
|
+
borderRadius: "0.8rem",
|
|
7885
|
+
backgroundColor: o.semantic.color.background.secondary0,
|
|
7886
|
+
boxShadow: `0px 0px 0px 1px ${o.semantic.color.border.secondary300}`
|
|
7887
|
+
},
|
|
7888
|
+
headerRow: {
|
|
7889
|
+
minHeight: "5.6rem",
|
|
7890
|
+
bgColor: o.semantic.color.background.secondary0,
|
|
7891
|
+
separator: {
|
|
7892
|
+
color: o.semantic.color.border.secondary300,
|
|
7893
|
+
width: "1px"
|
|
7894
|
+
}
|
|
7895
|
+
},
|
|
7896
|
+
headerCell: {
|
|
7897
|
+
padding: "1rem 1.2rem",
|
|
7898
|
+
color: o.semantic.color.text.secondary950,
|
|
7899
|
+
separator: {
|
|
7900
|
+
color: o.semantic.color.border.secondary300,
|
|
7901
|
+
width: "1px",
|
|
7902
|
+
blockPadding: "1rem"
|
|
7903
|
+
}
|
|
7904
|
+
},
|
|
7905
|
+
bodyCell: {
|
|
7906
|
+
padding: "0.4rem 1.2rem",
|
|
7907
|
+
color: o.semantic.color.text.secondary900
|
|
7908
|
+
}
|
|
7909
|
+
}, ac = {
|
|
7602
7910
|
gap: "0.5rem",
|
|
7603
7911
|
margin: "0 0 0.2rem 0",
|
|
7604
7912
|
minHeight: "20px",
|
|
@@ -7619,7 +7927,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7619
7927
|
required: {
|
|
7620
7928
|
textColor: o.semantic.color.text.danger500
|
|
7621
7929
|
}
|
|
7622
|
-
},
|
|
7930
|
+
}, nc = {
|
|
7623
7931
|
flexGroup: {
|
|
7624
7932
|
gap: {
|
|
7625
7933
|
XXS: o.core.space.space025,
|
|
@@ -7655,7 +7963,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7655
7963
|
XXL: o.core.space.space300
|
|
7656
7964
|
}
|
|
7657
7965
|
}
|
|
7658
|
-
},
|
|
7966
|
+
}, cc = {
|
|
7659
7967
|
variants: {
|
|
7660
7968
|
block: {
|
|
7661
7969
|
sizes: {
|
|
@@ -7724,7 +8032,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7724
8032
|
}
|
|
7725
8033
|
}
|
|
7726
8034
|
}
|
|
7727
|
-
},
|
|
8035
|
+
}, ic = {
|
|
7728
8036
|
size: "5rem",
|
|
7729
8037
|
gap: "0.5rem",
|
|
7730
8038
|
variants: {
|
|
@@ -7744,7 +8052,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7744
8052
|
textColor: o.semantic.color.icon.secondary0
|
|
7745
8053
|
}
|
|
7746
8054
|
}
|
|
7747
|
-
},
|
|
8055
|
+
}, lc = {
|
|
7748
8056
|
dropDown: {
|
|
7749
8057
|
minWidth: "16rem",
|
|
7750
8058
|
maxWidth: "40rem",
|
|
@@ -7820,7 +8128,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7820
8128
|
}
|
|
7821
8129
|
}
|
|
7822
8130
|
}
|
|
7823
|
-
},
|
|
8131
|
+
}, sc = {
|
|
7824
8132
|
header: {
|
|
7825
8133
|
height: "6.2rem",
|
|
7826
8134
|
paddingInline: "1.6rem",
|
|
@@ -7832,7 +8140,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7832
8140
|
gap: "0.8rem"
|
|
7833
8141
|
}
|
|
7834
8142
|
}
|
|
7835
|
-
},
|
|
8143
|
+
}, dc = {
|
|
7836
8144
|
blockScreenMargin: "20px",
|
|
7837
8145
|
inlineScreenMargin: "20px",
|
|
7838
8146
|
inlinePadding: "4rem",
|
|
@@ -7862,9 +8170,9 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7862
8170
|
overlay: {
|
|
7863
8171
|
bgColor: V(o.semantic.color.background.secondary0, 0.8)
|
|
7864
8172
|
}
|
|
7865
|
-
},
|
|
8173
|
+
}, mc = {
|
|
7866
8174
|
iconColor: o.semantic.color.icon.secondary600
|
|
7867
|
-
},
|
|
8175
|
+
}, bc = {
|
|
7868
8176
|
bgColor: o.semantic.color.background.neutral100,
|
|
7869
8177
|
shadow: o.core.shadow.shadow400,
|
|
7870
8178
|
borderRadius: "0.8rem",
|
|
@@ -7877,7 +8185,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7877
8185
|
height: "8px",
|
|
7878
8186
|
shadow: "rgba(0, 0, 0, 0.03) 0px 2px 1px"
|
|
7879
8187
|
}
|
|
7880
|
-
},
|
|
8188
|
+
}, gc = {
|
|
7881
8189
|
closeButton: {
|
|
7882
8190
|
iconColor: o.semantic.color.icon.neutral700
|
|
7883
8191
|
},
|
|
@@ -7896,7 +8204,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7896
8204
|
margin: "0 0 1.2rem 0",
|
|
7897
8205
|
padding: "1.6rem"
|
|
7898
8206
|
}
|
|
7899
|
-
},
|
|
8207
|
+
}, uc = {
|
|
7900
8208
|
textColor: o.semantic.color.text.secondary950,
|
|
7901
8209
|
border: "solid 1px transparent",
|
|
7902
8210
|
colorGroups: [{
|
|
@@ -7926,7 +8234,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7926
8234
|
L: "4.4rem"
|
|
7927
8235
|
},
|
|
7928
8236
|
fontWeight: o.core.font.fontWeight.bold
|
|
7929
|
-
},
|
|
8237
|
+
}, pc = {
|
|
7930
8238
|
borderRadius: "1px",
|
|
7931
8239
|
textPosition: {
|
|
7932
8240
|
left: {
|
|
@@ -7980,7 +8288,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
7980
8288
|
text: {
|
|
7981
8289
|
color: o.semantic.color.text.secondary950
|
|
7982
8290
|
}
|
|
7983
|
-
},
|
|
8291
|
+
}, Cc = {
|
|
7984
8292
|
size: "1.8rem",
|
|
7985
8293
|
iconSize: "0.6rem",
|
|
7986
8294
|
padding: "0",
|
|
@@ -8028,7 +8336,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8028
8336
|
}
|
|
8029
8337
|
}
|
|
8030
8338
|
}
|
|
8031
|
-
},
|
|
8339
|
+
}, xc = {
|
|
8032
8340
|
bgColor: o.semantic.color.background.secondary0,
|
|
8033
8341
|
shadow: `0px 0px 0px 1px ${o.semantic.color.border.secondary300}`,
|
|
8034
8342
|
borderRadius: "0.8rem",
|
|
@@ -8050,7 +8358,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8050
8358
|
gap: "0.8rem"
|
|
8051
8359
|
}
|
|
8052
8360
|
}
|
|
8053
|
-
},
|
|
8361
|
+
}, hc = {
|
|
8054
8362
|
width: "100%",
|
|
8055
8363
|
height: "fit-content",
|
|
8056
8364
|
bgColor: o.semantic.color.background.secondary0,
|
|
@@ -8099,7 +8407,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8099
8407
|
width: "1px",
|
|
8100
8408
|
color: o.semantic.color.border.secondary200
|
|
8101
8409
|
}
|
|
8102
|
-
},
|
|
8410
|
+
}, fc = {
|
|
8103
8411
|
padding: "0 1rem",
|
|
8104
8412
|
height: "3.6rem",
|
|
8105
8413
|
gap: "0.6rem",
|
|
@@ -8199,7 +8507,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8199
8507
|
}
|
|
8200
8508
|
}
|
|
8201
8509
|
}
|
|
8202
|
-
},
|
|
8510
|
+
}, yc = {
|
|
8203
8511
|
sizes: {
|
|
8204
8512
|
S: {
|
|
8205
8513
|
borderRadius: "99rem",
|
|
@@ -8446,7 +8754,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8446
8754
|
}
|
|
8447
8755
|
}
|
|
8448
8756
|
}
|
|
8449
|
-
},
|
|
8757
|
+
}, kc = {
|
|
8450
8758
|
sizes: {
|
|
8451
8759
|
M: {
|
|
8452
8760
|
borderRadius: o.core.space.space100,
|
|
@@ -8486,7 +8794,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8486
8794
|
borderColor: o.semantic.color.border.attention300
|
|
8487
8795
|
}
|
|
8488
8796
|
}
|
|
8489
|
-
},
|
|
8797
|
+
}, vc = {
|
|
8490
8798
|
variants: {
|
|
8491
8799
|
informative: {
|
|
8492
8800
|
iconColor: o.semantic.color.icon.informative600
|
|
@@ -8504,7 +8812,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8504
8812
|
iconColor: o.semantic.color.icon.success600
|
|
8505
8813
|
}
|
|
8506
8814
|
}
|
|
8507
|
-
},
|
|
8815
|
+
}, wc = {
|
|
8508
8816
|
collapsed: {
|
|
8509
8817
|
bgColor: o.semantic.color.background.secondary50,
|
|
8510
8818
|
shadow: "none",
|
|
@@ -8611,7 +8919,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8611
8919
|
}
|
|
8612
8920
|
}
|
|
8613
8921
|
}
|
|
8614
|
-
},
|
|
8922
|
+
}, Sc = {
|
|
8615
8923
|
card: {
|
|
8616
8924
|
gap: "2.4rem",
|
|
8617
8925
|
bgColor: o.semantic.color.background.neutral100,
|
|
@@ -8638,7 +8946,72 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8638
8946
|
grid: {
|
|
8639
8947
|
gap: "1.6rem"
|
|
8640
8948
|
}
|
|
8641
|
-
},
|
|
8949
|
+
}, $c = {
|
|
8950
|
+
gap: o.core.space.space150,
|
|
8951
|
+
controlsHeight: "2rem",
|
|
8952
|
+
track: {
|
|
8953
|
+
height: "0.4rem",
|
|
8954
|
+
states: {
|
|
8955
|
+
normal: {
|
|
8956
|
+
bgColor: o.semantic.color.background.secondary300
|
|
8957
|
+
},
|
|
8958
|
+
disabled: {
|
|
8959
|
+
bgColor: o.semantic.color.background.secondary300
|
|
8960
|
+
}
|
|
8961
|
+
}
|
|
8962
|
+
},
|
|
8963
|
+
range: {
|
|
8964
|
+
states: {
|
|
8965
|
+
normal: {
|
|
8966
|
+
bgColor: o.semantic.color.background.primary400
|
|
8967
|
+
},
|
|
8968
|
+
disabled: {
|
|
8969
|
+
bgColor: o.semantic.color.background.neutral500
|
|
8970
|
+
}
|
|
8971
|
+
}
|
|
8972
|
+
},
|
|
8973
|
+
thumb: {
|
|
8974
|
+
width: "2.4rem",
|
|
8975
|
+
height: "2.4rem",
|
|
8976
|
+
borderWidth: "0.8rem",
|
|
8977
|
+
borderRadius: "50%",
|
|
8978
|
+
states: {
|
|
8979
|
+
normal: {
|
|
8980
|
+
bgColor: o.semantic.color.background.secondary0,
|
|
8981
|
+
borderColor: o.semantic.color.background.primary400
|
|
8982
|
+
},
|
|
8983
|
+
disabled: {
|
|
8984
|
+
bgColor: o.semantic.color.background.secondary0,
|
|
8985
|
+
borderColor: o.semantic.color.background.neutral500
|
|
8986
|
+
}
|
|
8987
|
+
}
|
|
8988
|
+
},
|
|
8989
|
+
mark: {
|
|
8990
|
+
width: "0.4rem",
|
|
8991
|
+
height: "0.4rem",
|
|
8992
|
+
rangeStates: {
|
|
8993
|
+
inRange: {
|
|
8994
|
+
normal: {
|
|
8995
|
+
bgColor: o.semantic.color.background.primary100
|
|
8996
|
+
},
|
|
8997
|
+
disabled: {
|
|
8998
|
+
bgColor: o.semantic.color.background.secondary500
|
|
8999
|
+
}
|
|
9000
|
+
},
|
|
9001
|
+
outOfRange: {
|
|
9002
|
+
normal: {
|
|
9003
|
+
bgColor: o.semantic.color.background.secondary500
|
|
9004
|
+
},
|
|
9005
|
+
disabled: {
|
|
9006
|
+
bgColor: o.semantic.color.background.secondary500
|
|
9007
|
+
}
|
|
9008
|
+
}
|
|
9009
|
+
}
|
|
9010
|
+
},
|
|
9011
|
+
label: {
|
|
9012
|
+
offset: o.core.space.space200
|
|
9013
|
+
}
|
|
9014
|
+
}, Rc = {
|
|
8642
9015
|
gap: "2.4rem",
|
|
8643
9016
|
step: {
|
|
8644
9017
|
gap: "0.8rem",
|
|
@@ -8685,7 +9058,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8685
9058
|
}
|
|
8686
9059
|
}
|
|
8687
9060
|
}
|
|
8688
|
-
},
|
|
9061
|
+
}, zc = {
|
|
8689
9062
|
width: "3.2rem",
|
|
8690
9063
|
height: "1.8rem",
|
|
8691
9064
|
padding: "0.2rem",
|
|
@@ -8737,7 +9110,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8737
9110
|
}
|
|
8738
9111
|
}
|
|
8739
9112
|
}
|
|
8740
|
-
},
|
|
9113
|
+
}, Wc = {
|
|
8741
9114
|
table: {
|
|
8742
9115
|
tableContainer: {
|
|
8743
9116
|
borderRadius: "0.8rem",
|
|
@@ -8825,7 +9198,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8825
9198
|
textColor: o.semantic.color.text.secondary950
|
|
8826
9199
|
}
|
|
8827
9200
|
}
|
|
8828
|
-
},
|
|
9201
|
+
}, Bc = {
|
|
8829
9202
|
bgColor: "transparent",
|
|
8830
9203
|
padding: "1rem 1.6rem",
|
|
8831
9204
|
gap: "3.2rem",
|
|
@@ -8848,7 +9221,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8848
9221
|
actionsBar: {
|
|
8849
9222
|
gap: "1.6rem"
|
|
8850
9223
|
}
|
|
8851
|
-
},
|
|
9224
|
+
}, Pc = {
|
|
8852
9225
|
variants: {
|
|
8853
9226
|
default: {
|
|
8854
9227
|
gap: "4rem",
|
|
@@ -8931,22 +9304,36 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
8931
9304
|
}
|
|
8932
9305
|
}
|
|
8933
9306
|
}
|
|
8934
|
-
}, X = "transparent",
|
|
9307
|
+
}, X = "transparent", Fc = {
|
|
8935
9308
|
layouts: {
|
|
8936
9309
|
block: {
|
|
8937
9310
|
sizes: {
|
|
8938
|
-
|
|
9311
|
+
medium: {
|
|
8939
9312
|
height: "2.6rem",
|
|
8940
9313
|
lineHeight: "1.9rem",
|
|
8941
9314
|
gap: "0.2rem",
|
|
8942
9315
|
padding: "0.4rem 0.6rem",
|
|
8943
9316
|
borderRadius: "0.4rem"
|
|
9317
|
+
},
|
|
9318
|
+
small: {
|
|
9319
|
+
height: "2.4rem",
|
|
9320
|
+
lineHeight: "1.9rem",
|
|
9321
|
+
gap: "0.2rem",
|
|
9322
|
+
padding: "0.4rem 0.6rem",
|
|
9323
|
+
borderRadius: "0.4rem"
|
|
8944
9324
|
}
|
|
8945
9325
|
}
|
|
8946
9326
|
},
|
|
8947
9327
|
inline: {
|
|
8948
9328
|
sizes: {
|
|
8949
|
-
|
|
9329
|
+
medium: {
|
|
9330
|
+
height: "unset",
|
|
9331
|
+
lineHeight: "inherit",
|
|
9332
|
+
gap: "0.2rem",
|
|
9333
|
+
padding: "0",
|
|
9334
|
+
borderRadius: "0"
|
|
9335
|
+
},
|
|
9336
|
+
small: {
|
|
8950
9337
|
height: "unset",
|
|
8951
9338
|
lineHeight: "inherit",
|
|
8952
9339
|
gap: "0.2rem",
|
|
@@ -9038,7 +9425,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9038
9425
|
}
|
|
9039
9426
|
}
|
|
9040
9427
|
}
|
|
9041
|
-
},
|
|
9428
|
+
}, Lc = "data:image/svg+xml,%3csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_20208_3890)'%3e%3crect%20width='20'%20height='20'%20rx='10'%20fill='%23F9FAFA'%20/%3e%3cpath%20d='M13.0002%2010C13.0002%208.34315%2011.6571%207%2010.0002%207C8.34339%207%207.00024%208.34315%207.00024%2010C7.00024%2011.6569%208.34339%2013%2010.0002%2013C11.6571%2013%2013.0002%2011.6569%2013.0002%2010ZM14.0002%2010C14.0002%2012.2091%2012.2094%2014%2010.0002%2014C7.79111%2014%206.00024%2012.2091%206.00024%2010C6.00024%207.79086%207.79111%206%2010.0002%206C12.2094%206%2014.0002%207.79086%2014.0002%2010Z'%20fill='%23091A23'%20/%3e%3cpath%20d='M16.9998%209.5L17.1013%209.50977C17.329%209.55649%2017.4998%209.75847%2017.4998%2010C17.4998%2010.2415%2017.329%2010.4435%2017.1013%2010.4902L16.9998%2010.5H15.5457C15.2695%2010.5%2015.0457%2010.2761%2015.0457%2010C15.0457%209.72386%2015.2695%209.5%2015.5457%209.5H16.9998Z'%20fill='%23091A23'%20/%3e%3cpath%20d='M4.50024%209.5L4.60083%209.50977C4.82874%209.55634%205.00024%209.75833%205.00024%2010C5.00024%2010.2417%204.82874%2010.4437%204.60083%2010.4902L4.50024%2010.5H3.00024C2.7241%2010.5%202.50024%2010.2761%202.50024%2010C2.50024%209.72386%202.7241%209.5%203.00024%209.5H4.50024Z'%20fill='%23091A23'%20/%3e%3cpath%20d='M10.5002%2017L10.4905%2017.1006C10.444%2017.3286%2010.242%2017.5%2010.0002%2017.5C9.75852%2017.5%209.55653%2017.3286%209.51001%2017.1006L9.50024%2017V15.5C9.50024%2015.2239%209.7241%2015%2010.0002%2015C10.2764%2015%2010.5002%2015.2239%2010.5002%2015.5V17Z'%20fill='%23091A23'%20/%3e%3cpath%20d='M10.5002%204.5L10.4905%204.60059C10.444%204.82855%2010.242%205%2010.0002%205C9.75853%205%209.55654%204.82855%209.51001%204.60059L9.50024%204.5V3C9.50024%202.72386%209.7241%202.5%2010.0002%202.5C10.2764%202.5%2010.5002%202.72386%2010.5002%203V4.5Z'%20fill='%23091A23'%20/%3e%3cpath%20d='M14.6466%204.64655L14.7246%204.58233C14.9187%204.45395%2015.1827%204.4756%2015.3537%204.64655C15.5246%204.81751%2015.5463%205.08152%2015.4179%205.27563L15.3537%205.35366L14.3538%206.35355C14.1585%206.54882%2013.842%206.54882%2013.6467%206.35355C13.4514%206.15829%2013.4514%205.84171%2013.6467%205.64645L14.6466%204.64655Z'%20fill='%23091A23'%20/%3e%3cpath%20d='M5.64658%2013.6466L5.72461%2013.5823C5.91872%2013.4539%206.18274%2013.4756%206.35369%2013.6466C6.52464%2013.8175%206.5463%2014.0815%206.41791%2014.2756L6.35369%2014.3537L5.3538%2015.3536C5.15854%2015.5488%204.84195%2015.5488%204.64669%2015.3536C4.45143%2015.1583%204.45143%2014.8417%204.64669%2014.6464L5.64658%2013.6466Z'%20fill='%23091A23'%20/%3e%3cpath%20d='M15.3537%2014.6463L15.4179%2014.7244C15.5463%2014.9185%2015.5246%2015.1825%2015.3537%2015.3534C15.1827%2015.5244%2014.9187%2015.5461%2014.7246%2015.4177L14.6466%2015.3534L13.6467%2014.3536C13.4514%2014.1583%2013.4514%2013.8417%2013.6467%2013.6464C13.842%2013.4512%2014.1585%2013.4512%2014.3538%2013.6464L15.3537%2014.6463Z'%20fill='%23091A23'%20/%3e%3cpath%20d='M6.35369%205.64634L6.41791%205.72437C6.5463%205.91848%206.52464%206.18249%206.35369%206.35345C6.18274%206.5244%205.91872%206.54605%205.72461%206.41767L5.64658%206.35345L4.64669%205.35355C4.45143%205.15829%204.45143%204.84171%204.64669%204.64645C4.84195%204.45118%205.15854%204.45118%205.3538%204.64645L6.35369%205.64634Z'%20fill='%23091A23'%20/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_20208_3890'%3e%3crect%20width='20'%20height='20'%20rx='10'%20fill='white'%20/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", Mc = {
|
|
9042
9429
|
width: "3.6rem",
|
|
9043
9430
|
height: "2.2rem",
|
|
9044
9431
|
padding: "0.1rem",
|
|
@@ -9047,12 +9434,12 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9047
9434
|
borderColor: o.semantic.color.border.transparent,
|
|
9048
9435
|
bgColor: o.semantic.color.background.secondary200,
|
|
9049
9436
|
thumb: {
|
|
9050
|
-
icon: `url("${
|
|
9437
|
+
icon: `url("${Lc}")`,
|
|
9051
9438
|
iconAspectRatio: "1/1",
|
|
9052
9439
|
borderRadius: "0",
|
|
9053
9440
|
bgColor: "transparent"
|
|
9054
9441
|
}
|
|
9055
|
-
},
|
|
9442
|
+
}, Hc = {
|
|
9056
9443
|
width: "clamp(400px, 33vw, 640px)",
|
|
9057
9444
|
padding: "12px max(12px, calc(20 * (100vw / 1920)))",
|
|
9058
9445
|
shadow: "0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05)",
|
|
@@ -9064,7 +9451,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9064
9451
|
toaster: {
|
|
9065
9452
|
gap: "2rem"
|
|
9066
9453
|
}
|
|
9067
|
-
}, $o = "transparent",
|
|
9454
|
+
}, $o = "transparent", Tc = {
|
|
9068
9455
|
gap: "0.4rem",
|
|
9069
9456
|
height: "3rem",
|
|
9070
9457
|
lineHeight: "1.9rem",
|
|
@@ -9117,7 +9504,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9117
9504
|
minWidth: "2rem",
|
|
9118
9505
|
borderRadius: "99rem"
|
|
9119
9506
|
}
|
|
9120
|
-
},
|
|
9507
|
+
}, Ic = {
|
|
9121
9508
|
textColor: o.semantic.color.text.secondary950,
|
|
9122
9509
|
bgColor: o.semantic.color.background.secondary0,
|
|
9123
9510
|
shadow: o.core.shadow.shadow400,
|
|
@@ -9131,7 +9518,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9131
9518
|
height: "8px",
|
|
9132
9519
|
shadow: "rgba(0, 0, 0, 0.03) 0px 2px 1px"
|
|
9133
9520
|
}
|
|
9134
|
-
},
|
|
9521
|
+
}, Ec = {
|
|
9135
9522
|
levelOffset: "1.8rem",
|
|
9136
9523
|
item: {
|
|
9137
9524
|
inlinePadding: "0.8rem 1.6rem",
|
|
@@ -9144,10 +9531,10 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9144
9531
|
iconColor: o.semantic.color.icon.neutral800,
|
|
9145
9532
|
gap: "0.4rem"
|
|
9146
9533
|
}
|
|
9147
|
-
},
|
|
9534
|
+
}, Xc = {
|
|
9148
9535
|
colors: {
|
|
9149
|
-
primary: o.semantic.color.text.
|
|
9150
|
-
secondary: o.semantic.color.text.
|
|
9536
|
+
primary: o.semantic.color.text.secondary950,
|
|
9537
|
+
secondary: o.semantic.color.text.secondary700
|
|
9151
9538
|
},
|
|
9152
9539
|
heading: {
|
|
9153
9540
|
fontFamily: o.core.font.fontFamily.regular,
|
|
@@ -9214,7 +9601,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9214
9601
|
semiBold: o.core.font.fontWeight.semiBold
|
|
9215
9602
|
}
|
|
9216
9603
|
}
|
|
9217
|
-
},
|
|
9604
|
+
}, Oc = {
|
|
9218
9605
|
gap: "1.6rem",
|
|
9219
9606
|
header: {
|
|
9220
9607
|
gap: "0.8rem"
|
|
@@ -9266,13 +9653,13 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9266
9653
|
borderColor: o.semantic.color.border.neutral300
|
|
9267
9654
|
}
|
|
9268
9655
|
}
|
|
9269
|
-
},
|
|
9656
|
+
}, _c = {
|
|
9270
9657
|
bgColor: o.semantic.color.background.secondary0,
|
|
9271
9658
|
textColor: o.semantic.color.background.secondary990,
|
|
9272
9659
|
fontFamily: o.core.font.fontFamily.regular,
|
|
9273
9660
|
fontSize: o.core.font.fontSize.s14,
|
|
9274
9661
|
lineHeight: "1.4"
|
|
9275
|
-
},
|
|
9662
|
+
}, Ac = {
|
|
9276
9663
|
width: "0.5rem",
|
|
9277
9664
|
height: "0.5rem",
|
|
9278
9665
|
bgColor: o.semantic.color.background.secondary100,
|
|
@@ -9281,69 +9668,71 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9281
9668
|
bgColor: o.semantic.color.background.secondary600,
|
|
9282
9669
|
borderRadius: "99rem"
|
|
9283
9670
|
}
|
|
9284
|
-
},
|
|
9671
|
+
}, jc = {
|
|
9285
9672
|
name: "light-2",
|
|
9286
9673
|
mode: "light",
|
|
9287
9674
|
...o,
|
|
9288
9675
|
components: {
|
|
9289
|
-
actionIconButton:
|
|
9290
|
-
appBar:
|
|
9291
|
-
appSelectionMenu:
|
|
9292
|
-
autoComplete:
|
|
9293
|
-
badge:
|
|
9294
|
-
banner:
|
|
9295
|
-
boxSelectionGroup:
|
|
9296
|
-
button:
|
|
9297
|
-
buttonGroup:
|
|
9298
|
-
card:
|
|
9299
|
-
checkbox:
|
|
9300
|
-
chip:
|
|
9301
|
-
chipList:
|
|
9302
|
-
countryFlag:
|
|
9303
|
-
datePicker:
|
|
9304
|
-
drawer:
|
|
9305
|
-
filters:
|
|
9306
|
-
formField:
|
|
9307
|
-
iconButton:
|
|
9308
|
-
input:
|
|
9309
|
-
|
|
9310
|
-
|
|
9311
|
-
|
|
9312
|
-
|
|
9313
|
-
|
|
9314
|
-
|
|
9315
|
-
|
|
9316
|
-
|
|
9317
|
-
|
|
9318
|
-
|
|
9319
|
-
|
|
9320
|
-
|
|
9321
|
-
|
|
9322
|
-
|
|
9323
|
-
|
|
9324
|
-
|
|
9325
|
-
|
|
9326
|
-
|
|
9327
|
-
|
|
9328
|
-
|
|
9329
|
-
|
|
9330
|
-
|
|
9331
|
-
|
|
9332
|
-
|
|
9333
|
-
|
|
9334
|
-
|
|
9335
|
-
|
|
9336
|
-
|
|
9337
|
-
|
|
9338
|
-
|
|
9339
|
-
|
|
9340
|
-
|
|
9341
|
-
|
|
9342
|
-
|
|
9676
|
+
actionIconButton: En,
|
|
9677
|
+
appBar: Xn,
|
|
9678
|
+
appSelectionMenu: On,
|
|
9679
|
+
autoComplete: _n,
|
|
9680
|
+
badge: An,
|
|
9681
|
+
banner: jn,
|
|
9682
|
+
boxSelectionGroup: Dn,
|
|
9683
|
+
button: Gn,
|
|
9684
|
+
buttonGroup: Nn,
|
|
9685
|
+
card: qn,
|
|
9686
|
+
checkbox: Yn,
|
|
9687
|
+
chip: Un,
|
|
9688
|
+
chipList: Zn,
|
|
9689
|
+
countryFlag: Vn,
|
|
9690
|
+
datePicker: Jn,
|
|
9691
|
+
drawer: Kn,
|
|
9692
|
+
filters: Qn,
|
|
9693
|
+
formField: oc,
|
|
9694
|
+
iconButton: rc,
|
|
9695
|
+
input: ec,
|
|
9696
|
+
keyValueList: tc,
|
|
9697
|
+
label: ac,
|
|
9698
|
+
layouts: nc,
|
|
9699
|
+
link: cc,
|
|
9700
|
+
loader: ic,
|
|
9701
|
+
menu: lc,
|
|
9702
|
+
midBar: sc,
|
|
9703
|
+
modal: dc,
|
|
9704
|
+
moreInfoIcon: mc,
|
|
9705
|
+
popover: bc,
|
|
9706
|
+
popupCard: gc,
|
|
9707
|
+
profileIcon: uc,
|
|
9708
|
+
progressBar: pc,
|
|
9709
|
+
radio: Cc,
|
|
9710
|
+
searchBar: xc,
|
|
9711
|
+
section: hc,
|
|
9712
|
+
select: fc,
|
|
9713
|
+
semanticButton: yc,
|
|
9714
|
+
semanticContainer: kc,
|
|
9715
|
+
semanticIcon: vc,
|
|
9716
|
+
sideBar: wc,
|
|
9717
|
+
skeleton: Sc,
|
|
9718
|
+
slider: $c,
|
|
9719
|
+
stepper: Rc,
|
|
9720
|
+
switchButton: zc,
|
|
9721
|
+
table: Wc,
|
|
9722
|
+
tableHeading: Bc,
|
|
9723
|
+
tabs: Pc,
|
|
9724
|
+
textButton: Fc,
|
|
9725
|
+
themeModeSwitch: Mc,
|
|
9726
|
+
toast: Hc,
|
|
9727
|
+
toggleButton: Tc,
|
|
9728
|
+
tooltip: Ic,
|
|
9729
|
+
treeView: Ec,
|
|
9730
|
+
typography: Xc,
|
|
9731
|
+
windowBar: Oc
|
|
9343
9732
|
},
|
|
9344
9733
|
globals: {
|
|
9345
|
-
body:
|
|
9346
|
-
scrollbar:
|
|
9734
|
+
body: _c,
|
|
9735
|
+
scrollbar: Ac
|
|
9347
9736
|
}
|
|
9348
9737
|
}, bo = {
|
|
9349
9738
|
transparent: "#00000000",
|
|
@@ -9550,7 +9939,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9550
9939
|
color: bo.primary200
|
|
9551
9940
|
}
|
|
9552
9941
|
}
|
|
9553
|
-
},
|
|
9942
|
+
}, Dc = {
|
|
9554
9943
|
sizes: {
|
|
9555
9944
|
L: {
|
|
9556
9945
|
size: "3rem",
|
|
@@ -9603,7 +9992,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9603
9992
|
}
|
|
9604
9993
|
}
|
|
9605
9994
|
}
|
|
9606
|
-
},
|
|
9995
|
+
}, Gc = {
|
|
9607
9996
|
height: "7rem",
|
|
9608
9997
|
padding: "1.4rem 1.4rem 1.4rem 2.4rem",
|
|
9609
9998
|
separator: `1px solid ${r.semantic.color.border.secondary800}`,
|
|
@@ -9625,7 +10014,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9625
10014
|
accountNameColor: r.semantic.color.text.secondary950
|
|
9626
10015
|
}
|
|
9627
10016
|
}
|
|
9628
|
-
},
|
|
10017
|
+
}, Nc = {
|
|
9629
10018
|
trigger: {
|
|
9630
10019
|
borderRadius: "0.4rem",
|
|
9631
10020
|
height: "3.2rem",
|
|
@@ -9668,17 +10057,17 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9668
10057
|
color: r.semantic.color.text.neutral800
|
|
9669
10058
|
}
|
|
9670
10059
|
}
|
|
9671
|
-
},
|
|
10060
|
+
}, qc = {
|
|
9672
10061
|
dropdown: {
|
|
9673
10062
|
screenMarginHeight: "6px",
|
|
9674
10063
|
maxHeight: "50vh"
|
|
9675
10064
|
}
|
|
9676
|
-
},
|
|
10065
|
+
}, Lr = "1px", Yc = {
|
|
9677
10066
|
padding: `${r.core.space.space025} ${r.core.space.space050}`,
|
|
9678
10067
|
gap: r.core.space.space025,
|
|
9679
10068
|
borderRadius: "2px",
|
|
9680
|
-
height: `calc(${r.core.space.space200} + ${
|
|
9681
|
-
borderWidth:
|
|
10069
|
+
height: `calc(${r.core.space.space200} + ${Lr} * 2)`,
|
|
10070
|
+
borderWidth: Lr,
|
|
9682
10071
|
borderStyle: "solid",
|
|
9683
10072
|
variants: {
|
|
9684
10073
|
white: {
|
|
@@ -9736,7 +10125,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9736
10125
|
iconColor: r.semantic.color.text.secondary700
|
|
9737
10126
|
}
|
|
9738
10127
|
}
|
|
9739
|
-
},
|
|
10128
|
+
}, Uc = {
|
|
9740
10129
|
sizes: {
|
|
9741
10130
|
S: {
|
|
9742
10131
|
gap: "0.8rem",
|
|
@@ -9754,7 +10143,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9754
10143
|
split: {
|
|
9755
10144
|
minWidth: "0.8rem"
|
|
9756
10145
|
}
|
|
9757
|
-
},
|
|
10146
|
+
}, Zc = {
|
|
9758
10147
|
gap: r.core.space.space300,
|
|
9759
10148
|
item: {
|
|
9760
10149
|
borderRadius: "4px",
|
|
@@ -9809,7 +10198,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9809
10198
|
defaultItem: {
|
|
9810
10199
|
gap: "0.4rem"
|
|
9811
10200
|
}
|
|
9812
|
-
},
|
|
10201
|
+
}, Vc = {
|
|
9813
10202
|
gap: "0.2rem",
|
|
9814
10203
|
sizes: {
|
|
9815
10204
|
small: {
|
|
@@ -9941,9 +10330,30 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9941
10330
|
borderColor: r.semantic.color.border.secondary700,
|
|
9942
10331
|
textColor: r.semantic.color.text.secondary600
|
|
9943
10332
|
}
|
|
10333
|
+
},
|
|
10334
|
+
upsell: {
|
|
10335
|
+
normal: {
|
|
10336
|
+
bgGradient: `linear-gradient(316deg, ${r.semantic.color.background.discovery500} 0%, ${r.semantic.color.background.discovery400} 78%)`,
|
|
10337
|
+
textColor: r.semantic.color.text.secondary0,
|
|
10338
|
+
borderColor: r.semantic.color.border.discovery600
|
|
10339
|
+
},
|
|
10340
|
+
hover: {
|
|
10341
|
+
bgGradient: `linear-gradient(316deg, ${r.semantic.color.background.discovery500} 0%, ${r.semantic.color.background.discovery500} 78%)`,
|
|
10342
|
+
borderColor: r.semantic.color.border.discovery600
|
|
10343
|
+
},
|
|
10344
|
+
active: {
|
|
10345
|
+
bgGradient: `linear-gradient(316deg, ${r.semantic.color.background.discovery600} 0%, ${r.semantic.color.background.discovery600} 78%)`,
|
|
10346
|
+
borderColor: r.semantic.color.border.discovery700
|
|
10347
|
+
},
|
|
10348
|
+
disabled: {
|
|
10349
|
+
bgGradient: "unset",
|
|
10350
|
+
bgColor: r.semantic.color.background.neutral100,
|
|
10351
|
+
borderColor: r.semantic.color.border.neutral200,
|
|
10352
|
+
textColor: r.semantic.color.text.neutral400
|
|
10353
|
+
}
|
|
9944
10354
|
}
|
|
9945
10355
|
}
|
|
9946
|
-
},
|
|
10356
|
+
}, Jc = {
|
|
9947
10357
|
borderRadius: "0.4rem",
|
|
9948
10358
|
border: `1px solid ${r.semantic.color.border.transparent}`,
|
|
9949
10359
|
fontSize: "1.4rem",
|
|
@@ -9986,13 +10396,13 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
9986
10396
|
}
|
|
9987
10397
|
}
|
|
9988
10398
|
}
|
|
9989
|
-
},
|
|
10399
|
+
}, Kc = {
|
|
9990
10400
|
width: "100%",
|
|
9991
10401
|
height: "fit-content",
|
|
9992
10402
|
bgColor: r.semantic.color.background.secondary900,
|
|
9993
10403
|
shadow: r.core.shadow.shadow4,
|
|
9994
10404
|
borderRadius: "0.8rem"
|
|
9995
|
-
},
|
|
10405
|
+
}, Qc = {
|
|
9996
10406
|
width: "1.8rem",
|
|
9997
10407
|
height: "1.8rem",
|
|
9998
10408
|
padding: "0",
|
|
@@ -10056,7 +10466,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10056
10466
|
}
|
|
10057
10467
|
}
|
|
10058
10468
|
}
|
|
10059
|
-
},
|
|
10469
|
+
}, o0 = {
|
|
10060
10470
|
sizes: {
|
|
10061
10471
|
M: {
|
|
10062
10472
|
height: "2.8rem",
|
|
@@ -10113,7 +10523,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10113
10523
|
}
|
|
10114
10524
|
}
|
|
10115
10525
|
}
|
|
10116
|
-
},
|
|
10526
|
+
}, r0 = {
|
|
10117
10527
|
sizes: {
|
|
10118
10528
|
M: {
|
|
10119
10529
|
gap: "0.8rem 5px"
|
|
@@ -10131,13 +10541,13 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10131
10541
|
gap: "0.4rem",
|
|
10132
10542
|
padding: "1.2rem 1.6rem"
|
|
10133
10543
|
}
|
|
10134
|
-
},
|
|
10544
|
+
}, e0 = {
|
|
10135
10545
|
width: "2.7rem",
|
|
10136
10546
|
height: "2rem",
|
|
10137
10547
|
borderRadius: "5px",
|
|
10138
10548
|
borderWidth: "0.1px",
|
|
10139
10549
|
borderColor: r.semantic.color.border.secondary700
|
|
10140
|
-
},
|
|
10550
|
+
}, t0 = {
|
|
10141
10551
|
fontSize: r.core.font.fontSize.s14,
|
|
10142
10552
|
fontWeight: r.core.font.fontWeight.normal,
|
|
10143
10553
|
fontFamily: r.core.font.fontFamily.regular,
|
|
@@ -10201,7 +10611,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10201
10611
|
weekNumCell: {
|
|
10202
10612
|
fontSize: "1rem"
|
|
10203
10613
|
}
|
|
10204
|
-
},
|
|
10614
|
+
}, a0 = {
|
|
10205
10615
|
shadow: r.core.shadow.shadow500,
|
|
10206
10616
|
bgColor: r.semantic.color.background.secondary900,
|
|
10207
10617
|
sidePadding: "3.2rem",
|
|
@@ -10227,7 +10637,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10227
10637
|
overlay: {
|
|
10228
10638
|
bgColor: V(r.semantic.color.background.secondary990, 0.8)
|
|
10229
10639
|
}
|
|
10230
|
-
},
|
|
10640
|
+
}, n0 = {
|
|
10231
10641
|
chipList: {
|
|
10232
10642
|
padding: "0.8rem 1.6rem",
|
|
10233
10643
|
border: `1px solid ${r.semantic.color.border.secondary800}`
|
|
@@ -10260,7 +10670,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10260
10670
|
padding: "0.8rem 1.6rem"
|
|
10261
10671
|
}
|
|
10262
10672
|
}
|
|
10263
|
-
},
|
|
10673
|
+
}, c0 = {
|
|
10264
10674
|
columnGap: "1.6rem",
|
|
10265
10675
|
group: {
|
|
10266
10676
|
rowGap: "1rem"
|
|
@@ -10274,7 +10684,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10274
10684
|
textColor: r.semantic.color.text.danger400
|
|
10275
10685
|
}
|
|
10276
10686
|
}
|
|
10277
|
-
},
|
|
10687
|
+
}, i0 = {
|
|
10278
10688
|
sizes: {
|
|
10279
10689
|
XXL: {
|
|
10280
10690
|
width: "3.2rem",
|
|
@@ -10320,7 +10730,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10320
10730
|
}
|
|
10321
10731
|
},
|
|
10322
10732
|
borderRadius: "0.4rem"
|
|
10323
|
-
},
|
|
10733
|
+
}, l0 = {
|
|
10324
10734
|
padding: "0 0.8rem 0 1rem",
|
|
10325
10735
|
height: "3.6rem",
|
|
10326
10736
|
gap: "0.5rem",
|
|
@@ -10414,7 +10824,34 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10414
10824
|
textColor: r.semantic.color.text.secondary500
|
|
10415
10825
|
}
|
|
10416
10826
|
}
|
|
10417
|
-
},
|
|
10827
|
+
}, s0 = {
|
|
10828
|
+
container: {
|
|
10829
|
+
borderRadius: "0.8rem",
|
|
10830
|
+
backgroundColor: r.semantic.color.background.secondary950,
|
|
10831
|
+
boxShadow: `0px 0px 0px 1px ${r.semantic.color.border.secondary800}`
|
|
10832
|
+
},
|
|
10833
|
+
headerRow: {
|
|
10834
|
+
minHeight: "5.6rem",
|
|
10835
|
+
bgColor: r.semantic.color.background.secondary950,
|
|
10836
|
+
separator: {
|
|
10837
|
+
color: r.semantic.color.border.secondary800,
|
|
10838
|
+
width: "1px"
|
|
10839
|
+
}
|
|
10840
|
+
},
|
|
10841
|
+
headerCell: {
|
|
10842
|
+
padding: "1rem 1.2rem",
|
|
10843
|
+
color: r.semantic.color.text.secondary200,
|
|
10844
|
+
separator: {
|
|
10845
|
+
color: r.semantic.color.border.secondary800,
|
|
10846
|
+
width: "1px",
|
|
10847
|
+
blockPadding: "1rem"
|
|
10848
|
+
}
|
|
10849
|
+
},
|
|
10850
|
+
bodyCell: {
|
|
10851
|
+
padding: "0.4rem 1.2rem",
|
|
10852
|
+
color: r.semantic.color.text.secondary300
|
|
10853
|
+
}
|
|
10854
|
+
}, d0 = {
|
|
10418
10855
|
gap: "0.5rem",
|
|
10419
10856
|
margin: "0 0 0.2rem 0",
|
|
10420
10857
|
minHeight: "20px",
|
|
@@ -10435,7 +10872,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10435
10872
|
required: {
|
|
10436
10873
|
textColor: r.semantic.color.text.danger500
|
|
10437
10874
|
}
|
|
10438
|
-
},
|
|
10875
|
+
}, m0 = {
|
|
10439
10876
|
flexGroup: {
|
|
10440
10877
|
gap: {
|
|
10441
10878
|
XXS: r.core.space.space025,
|
|
@@ -10471,7 +10908,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10471
10908
|
XXL: r.core.space.space300
|
|
10472
10909
|
}
|
|
10473
10910
|
}
|
|
10474
|
-
},
|
|
10911
|
+
}, b0 = {
|
|
10475
10912
|
variants: {
|
|
10476
10913
|
block: {
|
|
10477
10914
|
sizes: {
|
|
@@ -10540,7 +10977,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10540
10977
|
}
|
|
10541
10978
|
}
|
|
10542
10979
|
}
|
|
10543
|
-
},
|
|
10980
|
+
}, g0 = {
|
|
10544
10981
|
size: "5rem",
|
|
10545
10982
|
gap: "0.5rem",
|
|
10546
10983
|
variants: {
|
|
@@ -10560,7 +10997,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10560
10997
|
textColor: r.semantic.color.icon.secondary950
|
|
10561
10998
|
}
|
|
10562
10999
|
}
|
|
10563
|
-
},
|
|
11000
|
+
}, u0 = {
|
|
10564
11001
|
dropDown: {
|
|
10565
11002
|
minWidth: "16rem",
|
|
10566
11003
|
maxWidth: "40rem",
|
|
@@ -10625,7 +11062,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10625
11062
|
textColor: r.semantic.color.text.danger400
|
|
10626
11063
|
},
|
|
10627
11064
|
hover: {
|
|
10628
|
-
bgColor: r.semantic.color.background.
|
|
11065
|
+
bgColor: r.semantic.color.background.danger900
|
|
10629
11066
|
},
|
|
10630
11067
|
selected: {
|
|
10631
11068
|
textColor: r.semantic.color.text.danger400
|
|
@@ -10636,7 +11073,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10636
11073
|
}
|
|
10637
11074
|
}
|
|
10638
11075
|
}
|
|
10639
|
-
},
|
|
11076
|
+
}, p0 = {
|
|
10640
11077
|
header: {
|
|
10641
11078
|
height: "6.2rem",
|
|
10642
11079
|
paddingInline: "1.6rem",
|
|
@@ -10648,7 +11085,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10648
11085
|
gap: "0.8rem"
|
|
10649
11086
|
}
|
|
10650
11087
|
}
|
|
10651
|
-
},
|
|
11088
|
+
}, C0 = {
|
|
10652
11089
|
blockScreenMargin: "20px",
|
|
10653
11090
|
inlineScreenMargin: "20px",
|
|
10654
11091
|
inlinePadding: "4rem",
|
|
@@ -10678,9 +11115,9 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10678
11115
|
overlay: {
|
|
10679
11116
|
bgColor: V(r.semantic.color.background.secondary990, 0.8)
|
|
10680
11117
|
}
|
|
10681
|
-
},
|
|
11118
|
+
}, x0 = {
|
|
10682
11119
|
iconColor: r.semantic.color.icon.secondary500
|
|
10683
|
-
},
|
|
11120
|
+
}, h0 = {
|
|
10684
11121
|
bgColor: r.semantic.color.background.secondary900,
|
|
10685
11122
|
shadow: r.core.shadow.shadow400,
|
|
10686
11123
|
borderRadius: "0.8rem",
|
|
@@ -10693,7 +11130,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10693
11130
|
height: "8px",
|
|
10694
11131
|
shadow: r.core.shadow.shadow400
|
|
10695
11132
|
}
|
|
10696
|
-
},
|
|
11133
|
+
}, f0 = {
|
|
10697
11134
|
closeButton: {
|
|
10698
11135
|
iconColor: r.semantic.color.icon.neutral700
|
|
10699
11136
|
},
|
|
@@ -10712,7 +11149,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10712
11149
|
margin: "0 0 1.2rem 0",
|
|
10713
11150
|
padding: "1.6rem"
|
|
10714
11151
|
}
|
|
10715
|
-
},
|
|
11152
|
+
}, y0 = {
|
|
10716
11153
|
textColor: r.semantic.color.text.secondary950,
|
|
10717
11154
|
border: "solid 1px transparent",
|
|
10718
11155
|
colorGroups: [{
|
|
@@ -10742,7 +11179,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10742
11179
|
L: "4.4rem"
|
|
10743
11180
|
},
|
|
10744
11181
|
fontWeight: r.core.font.fontWeight.bold
|
|
10745
|
-
},
|
|
11182
|
+
}, k0 = {
|
|
10746
11183
|
borderRadius: "1px",
|
|
10747
11184
|
textPosition: {
|
|
10748
11185
|
left: {
|
|
@@ -10796,7 +11233,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10796
11233
|
text: {
|
|
10797
11234
|
color: r.semantic.color.text.secondary200
|
|
10798
11235
|
}
|
|
10799
|
-
},
|
|
11236
|
+
}, v0 = {
|
|
10800
11237
|
size: "1.8rem",
|
|
10801
11238
|
iconSize: "0.6rem",
|
|
10802
11239
|
padding: "0",
|
|
@@ -10844,7 +11281,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10844
11281
|
}
|
|
10845
11282
|
}
|
|
10846
11283
|
}
|
|
10847
|
-
},
|
|
11284
|
+
}, w0 = {
|
|
10848
11285
|
bgColor: r.semantic.color.background.secondary950,
|
|
10849
11286
|
shadow: `0px 0px 0px 1px ${r.semantic.color.border.secondary800}`,
|
|
10850
11287
|
borderRadius: "0.8rem",
|
|
@@ -10866,7 +11303,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10866
11303
|
gap: "0.8rem"
|
|
10867
11304
|
}
|
|
10868
11305
|
}
|
|
10869
|
-
},
|
|
11306
|
+
}, S0 = {
|
|
10870
11307
|
width: "100%",
|
|
10871
11308
|
height: "fit-content",
|
|
10872
11309
|
bgColor: r.semantic.color.background.secondary950,
|
|
@@ -10915,7 +11352,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
10915
11352
|
width: "1px",
|
|
10916
11353
|
color: r.semantic.color.border.secondary800
|
|
10917
11354
|
}
|
|
10918
|
-
},
|
|
11355
|
+
}, $0 = {
|
|
10919
11356
|
padding: "0 1rem",
|
|
10920
11357
|
height: "3.6rem",
|
|
10921
11358
|
gap: "0.6rem",
|
|
@@ -11016,7 +11453,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11016
11453
|
}
|
|
11017
11454
|
}
|
|
11018
11455
|
}
|
|
11019
|
-
},
|
|
11456
|
+
}, R0 = {
|
|
11020
11457
|
sizes: {
|
|
11021
11458
|
S: {
|
|
11022
11459
|
borderRadius: "99rem",
|
|
@@ -11263,7 +11700,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11263
11700
|
}
|
|
11264
11701
|
}
|
|
11265
11702
|
}
|
|
11266
|
-
},
|
|
11703
|
+
}, z0 = {
|
|
11267
11704
|
sizes: {
|
|
11268
11705
|
M: {
|
|
11269
11706
|
borderRadius: r.core.space.space100,
|
|
@@ -11303,7 +11740,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11303
11740
|
borderColor: r.semantic.color.border.attention600
|
|
11304
11741
|
}
|
|
11305
11742
|
}
|
|
11306
|
-
},
|
|
11743
|
+
}, W0 = {
|
|
11307
11744
|
variants: {
|
|
11308
11745
|
informative: {
|
|
11309
11746
|
iconColor: r.semantic.color.icon.informative600
|
|
@@ -11321,7 +11758,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11321
11758
|
iconColor: r.semantic.color.icon.success600
|
|
11322
11759
|
}
|
|
11323
11760
|
}
|
|
11324
|
-
},
|
|
11761
|
+
}, B0 = {
|
|
11325
11762
|
collapsed: {
|
|
11326
11763
|
bgColor: r.semantic.color.background.secondary950,
|
|
11327
11764
|
shadow: "none",
|
|
@@ -11428,7 +11865,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11428
11865
|
}
|
|
11429
11866
|
}
|
|
11430
11867
|
}
|
|
11431
|
-
},
|
|
11868
|
+
}, P0 = {
|
|
11432
11869
|
card: {
|
|
11433
11870
|
gap: "2.4rem",
|
|
11434
11871
|
bgColor: r.semantic.color.background.neutral100,
|
|
@@ -11455,7 +11892,72 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11455
11892
|
grid: {
|
|
11456
11893
|
gap: "1.6rem"
|
|
11457
11894
|
}
|
|
11458
|
-
},
|
|
11895
|
+
}, F0 = {
|
|
11896
|
+
gap: r.core.space.space150,
|
|
11897
|
+
controlsHeight: "2rem",
|
|
11898
|
+
track: {
|
|
11899
|
+
height: "0.4rem",
|
|
11900
|
+
states: {
|
|
11901
|
+
normal: {
|
|
11902
|
+
bgColor: r.semantic.color.background.secondary800
|
|
11903
|
+
},
|
|
11904
|
+
disabled: {
|
|
11905
|
+
bgColor: r.semantic.color.background.secondary800
|
|
11906
|
+
}
|
|
11907
|
+
}
|
|
11908
|
+
},
|
|
11909
|
+
range: {
|
|
11910
|
+
states: {
|
|
11911
|
+
normal: {
|
|
11912
|
+
bgColor: r.semantic.color.background.primary400
|
|
11913
|
+
},
|
|
11914
|
+
disabled: {
|
|
11915
|
+
bgColor: r.semantic.color.background.neutral900
|
|
11916
|
+
}
|
|
11917
|
+
}
|
|
11918
|
+
},
|
|
11919
|
+
thumb: {
|
|
11920
|
+
width: "2.4rem",
|
|
11921
|
+
height: "2.4rem",
|
|
11922
|
+
borderWidth: "0.8rem",
|
|
11923
|
+
borderRadius: "50%",
|
|
11924
|
+
states: {
|
|
11925
|
+
normal: {
|
|
11926
|
+
bgColor: r.semantic.color.background.secondary0,
|
|
11927
|
+
borderColor: r.semantic.color.border.primary400
|
|
11928
|
+
},
|
|
11929
|
+
disabled: {
|
|
11930
|
+
bgColor: r.semantic.color.background.neutral600,
|
|
11931
|
+
borderColor: r.semantic.color.border.neutral900
|
|
11932
|
+
}
|
|
11933
|
+
}
|
|
11934
|
+
},
|
|
11935
|
+
mark: {
|
|
11936
|
+
width: "0.4rem",
|
|
11937
|
+
height: "0.4rem",
|
|
11938
|
+
rangeStates: {
|
|
11939
|
+
inRange: {
|
|
11940
|
+
normal: {
|
|
11941
|
+
bgColor: r.semantic.color.background.primary100
|
|
11942
|
+
},
|
|
11943
|
+
disabled: {
|
|
11944
|
+
bgColor: r.semantic.color.background.secondary600
|
|
11945
|
+
}
|
|
11946
|
+
},
|
|
11947
|
+
outOfRange: {
|
|
11948
|
+
normal: {
|
|
11949
|
+
bgColor: r.semantic.color.background.secondary600
|
|
11950
|
+
},
|
|
11951
|
+
disabled: {
|
|
11952
|
+
bgColor: r.semantic.color.background.secondary700
|
|
11953
|
+
}
|
|
11954
|
+
}
|
|
11955
|
+
}
|
|
11956
|
+
},
|
|
11957
|
+
label: {
|
|
11958
|
+
offset: r.core.space.space200
|
|
11959
|
+
}
|
|
11960
|
+
}, L0 = {
|
|
11459
11961
|
gap: "2.4rem",
|
|
11460
11962
|
step: {
|
|
11461
11963
|
gap: "0.8rem",
|
|
@@ -11502,7 +12004,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11502
12004
|
}
|
|
11503
12005
|
}
|
|
11504
12006
|
}
|
|
11505
|
-
},
|
|
12007
|
+
}, M0 = {
|
|
11506
12008
|
width: "3.2rem",
|
|
11507
12009
|
height: "1.8rem",
|
|
11508
12010
|
padding: "0.2rem",
|
|
@@ -11554,7 +12056,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11554
12056
|
}
|
|
11555
12057
|
}
|
|
11556
12058
|
}
|
|
11557
|
-
},
|
|
12059
|
+
}, H0 = {
|
|
11558
12060
|
table: {
|
|
11559
12061
|
tableContainer: {
|
|
11560
12062
|
borderRadius: "0.8rem",
|
|
@@ -11642,7 +12144,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11642
12144
|
textColor: r.semantic.color.text.secondary200
|
|
11643
12145
|
}
|
|
11644
12146
|
}
|
|
11645
|
-
},
|
|
12147
|
+
}, T0 = {
|
|
11646
12148
|
bgColor: "transparent",
|
|
11647
12149
|
padding: "1rem 1.6rem",
|
|
11648
12150
|
gap: "3.2rem",
|
|
@@ -11665,7 +12167,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11665
12167
|
actionsBar: {
|
|
11666
12168
|
gap: "1.6rem"
|
|
11667
12169
|
}
|
|
11668
|
-
},
|
|
12170
|
+
}, I0 = {
|
|
11669
12171
|
variants: {
|
|
11670
12172
|
default: {
|
|
11671
12173
|
gap: "4rem",
|
|
@@ -11751,22 +12253,36 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11751
12253
|
}
|
|
11752
12254
|
}
|
|
11753
12255
|
}
|
|
11754
|
-
},
|
|
12256
|
+
}, H = "transparent", E0 = {
|
|
11755
12257
|
layouts: {
|
|
11756
12258
|
block: {
|
|
11757
12259
|
sizes: {
|
|
11758
|
-
|
|
12260
|
+
medium: {
|
|
11759
12261
|
height: "2.6rem",
|
|
11760
12262
|
lineHeight: "1.9rem",
|
|
11761
12263
|
gap: "0.2rem",
|
|
11762
12264
|
padding: "0.4rem 0.6rem",
|
|
11763
12265
|
borderRadius: "0.4rem"
|
|
12266
|
+
},
|
|
12267
|
+
small: {
|
|
12268
|
+
height: "2.4rem",
|
|
12269
|
+
lineHeight: "1.9rem",
|
|
12270
|
+
gap: "0.2rem",
|
|
12271
|
+
padding: "0.4rem 0.6rem",
|
|
12272
|
+
borderRadius: "0.4rem"
|
|
11764
12273
|
}
|
|
11765
12274
|
}
|
|
11766
12275
|
},
|
|
11767
12276
|
inline: {
|
|
11768
12277
|
sizes: {
|
|
11769
|
-
|
|
12278
|
+
medium: {
|
|
12279
|
+
height: "unset",
|
|
12280
|
+
lineHeight: "inherit",
|
|
12281
|
+
gap: "0.2rem",
|
|
12282
|
+
padding: "0",
|
|
12283
|
+
borderRadius: "0"
|
|
12284
|
+
},
|
|
12285
|
+
small: {
|
|
11770
12286
|
height: "unset",
|
|
11771
12287
|
lineHeight: "inherit",
|
|
11772
12288
|
gap: "0.2rem",
|
|
@@ -11780,7 +12296,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11780
12296
|
primary: {
|
|
11781
12297
|
states: {
|
|
11782
12298
|
normal: {
|
|
11783
|
-
bgColor:
|
|
12299
|
+
bgColor: H,
|
|
11784
12300
|
textColor: r.semantic.color.text.primary300
|
|
11785
12301
|
},
|
|
11786
12302
|
hover: {
|
|
@@ -11788,11 +12304,11 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11788
12304
|
textColor: r.semantic.color.background.primary200
|
|
11789
12305
|
},
|
|
11790
12306
|
active: {
|
|
11791
|
-
bgColor:
|
|
12307
|
+
bgColor: H,
|
|
11792
12308
|
textColor: r.semantic.color.text.primary300
|
|
11793
12309
|
},
|
|
11794
12310
|
disabled: {
|
|
11795
|
-
bgColor:
|
|
12311
|
+
bgColor: H,
|
|
11796
12312
|
textColor: r.semantic.color.text.secondary600
|
|
11797
12313
|
}
|
|
11798
12314
|
}
|
|
@@ -11800,7 +12316,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11800
12316
|
destructive: {
|
|
11801
12317
|
states: {
|
|
11802
12318
|
normal: {
|
|
11803
|
-
bgColor:
|
|
12319
|
+
bgColor: H,
|
|
11804
12320
|
textColor: r.semantic.color.text.danger400
|
|
11805
12321
|
},
|
|
11806
12322
|
hover: {
|
|
@@ -11808,11 +12324,11 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11808
12324
|
textColor: r.semantic.color.text.danger300
|
|
11809
12325
|
},
|
|
11810
12326
|
active: {
|
|
11811
|
-
bgColor:
|
|
12327
|
+
bgColor: H,
|
|
11812
12328
|
textColor: r.semantic.color.text.danger400
|
|
11813
12329
|
},
|
|
11814
12330
|
disabled: {
|
|
11815
|
-
bgColor:
|
|
12331
|
+
bgColor: H,
|
|
11816
12332
|
textColor: r.semantic.color.text.secondary600
|
|
11817
12333
|
}
|
|
11818
12334
|
}
|
|
@@ -11820,19 +12336,19 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11820
12336
|
"primary-inline": {
|
|
11821
12337
|
states: {
|
|
11822
12338
|
normal: {
|
|
11823
|
-
bgColor:
|
|
12339
|
+
bgColor: H,
|
|
11824
12340
|
textColor: r.semantic.color.text.primary300
|
|
11825
12341
|
},
|
|
11826
12342
|
hover: {
|
|
11827
|
-
bgColor:
|
|
12343
|
+
bgColor: H,
|
|
11828
12344
|
textColor: r.semantic.color.text.primary200
|
|
11829
12345
|
},
|
|
11830
12346
|
active: {
|
|
11831
|
-
bgColor:
|
|
12347
|
+
bgColor: H,
|
|
11832
12348
|
textColor: r.semantic.color.text.primary300
|
|
11833
12349
|
},
|
|
11834
12350
|
disabled: {
|
|
11835
|
-
bgColor:
|
|
12351
|
+
bgColor: H,
|
|
11836
12352
|
textColor: r.semantic.color.text.secondary600
|
|
11837
12353
|
}
|
|
11838
12354
|
}
|
|
@@ -11840,25 +12356,25 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11840
12356
|
"destructive-inline": {
|
|
11841
12357
|
states: {
|
|
11842
12358
|
normal: {
|
|
11843
|
-
bgColor:
|
|
12359
|
+
bgColor: H,
|
|
11844
12360
|
textColor: r.semantic.color.text.danger400
|
|
11845
12361
|
},
|
|
11846
12362
|
hover: {
|
|
11847
|
-
bgColor:
|
|
12363
|
+
bgColor: H,
|
|
11848
12364
|
textColor: r.semantic.color.text.danger300
|
|
11849
12365
|
},
|
|
11850
12366
|
active: {
|
|
11851
|
-
bgColor:
|
|
12367
|
+
bgColor: H,
|
|
11852
12368
|
textColor: r.semantic.color.text.danger400
|
|
11853
12369
|
},
|
|
11854
12370
|
disabled: {
|
|
11855
|
-
bgColor:
|
|
12371
|
+
bgColor: H,
|
|
11856
12372
|
textColor: r.semantic.color.text.secondary600
|
|
11857
12373
|
}
|
|
11858
12374
|
}
|
|
11859
12375
|
}
|
|
11860
12376
|
}
|
|
11861
|
-
},
|
|
12377
|
+
}, X0 = "data:image/svg+xml,%3csvg%20width='20'%20height='20'%20viewBox='0%200%2020%2020'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cg%20clip-path='url(%23clip0_20208_5211)'%3e%3crect%20width='20'%20height='20'%20rx='10'%20fill='%23091A23'%20/%3e%3cpath%20d='M8.44141%207.17676C8.44141%206.18781%208.77004%205.276%209.32227%204.54297C6.60456%204.87704%204.50004%207.19197%204.5%2010C4.5%2013.0376%206.96241%2015.5%2010%2015.5C12.8087%2015.5%2015.1238%2013.3945%2015.457%2010.6758C14.7923%2011.1774%2013.9809%2011.4954%2013.0967%2011.5498L12.8242%2011.5586C10.4797%2011.5586%208.56481%209.71782%208.44727%207.40234L8.44141%207.17676ZM9.44629%207.35059C9.53691%209.1376%2011.0144%2010.5586%2012.8242%2010.5586L13.0342%2010.5518C14.0764%2010.4877%2014.9905%209.951%2015.5674%209.15137L15.6172%209.09277C15.7426%208.96585%2015.9285%208.91385%2016.1045%208.96191C16.3056%209.01686%2016.4516%209.19088%2016.4707%209.39844C16.4886%209.59298%2016.5%209.79401%2016.5%2010C16.5%2013.5899%2013.5899%2016.5%2010%2016.5C6.41013%2016.5%203.5%2013.5899%203.5%2010C3.50005%206.41017%206.41015%203.50001%2010%203.5C10.2042%203.5%2010.4047%203.51036%2010.6006%203.52832L10.6768%203.54102C10.8498%203.58449%2010.989%203.7186%2011.0371%203.89453C11.092%204.09552%2011.0165%204.30959%2010.8477%204.43164C9.99518%205.0468%209.44141%206.04731%209.44141%207.17676L9.44629%207.35059Z'%20fill='%23E8EBEC'%20/%3e%3c/g%3e%3cdefs%3e%3cclipPath%20id='clip0_20208_5211'%3e%3crect%20width='20'%20height='20'%20rx='10'%20fill='white'%20/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e", O0 = {
|
|
11862
12378
|
width: "3.6rem",
|
|
11863
12379
|
height: "2.2rem",
|
|
11864
12380
|
padding: "0.1rem",
|
|
@@ -11867,12 +12383,12 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11867
12383
|
borderColor: r.semantic.color.border.transparent,
|
|
11868
12384
|
bgColor: r.semantic.color.background.secondary700,
|
|
11869
12385
|
thumb: {
|
|
11870
|
-
icon: `url("${
|
|
12386
|
+
icon: `url("${X0}")`,
|
|
11871
12387
|
iconAspectRatio: "1/1",
|
|
11872
12388
|
borderRadius: "0",
|
|
11873
12389
|
bgColor: "transparent"
|
|
11874
12390
|
}
|
|
11875
|
-
},
|
|
12391
|
+
}, _0 = {
|
|
11876
12392
|
width: "clamp(400px, 33vw, 640px)",
|
|
11877
12393
|
padding: "12px max(12px, calc(20 * (100vw / 1920)))",
|
|
11878
12394
|
shadow: "0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05)",
|
|
@@ -11884,7 +12400,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11884
12400
|
toaster: {
|
|
11885
12401
|
gap: "2rem"
|
|
11886
12402
|
}
|
|
11887
|
-
},
|
|
12403
|
+
}, Ro = "transparent", A0 = {
|
|
11888
12404
|
gap: "0.4rem",
|
|
11889
12405
|
height: "3rem",
|
|
11890
12406
|
lineHeight: "1.9rem",
|
|
@@ -11901,17 +12417,17 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11901
12417
|
textColor: r.semantic.color.text.secondary100
|
|
11902
12418
|
},
|
|
11903
12419
|
active: {
|
|
11904
|
-
bgColor:
|
|
12420
|
+
bgColor: Ro,
|
|
11905
12421
|
textColor: r.semantic.color.text.secondary200
|
|
11906
12422
|
},
|
|
11907
12423
|
disabled: {
|
|
11908
|
-
bgColor:
|
|
12424
|
+
bgColor: Ro,
|
|
11909
12425
|
textColor: r.semantic.color.text.secondary600
|
|
11910
12426
|
}
|
|
11911
12427
|
},
|
|
11912
12428
|
off: {
|
|
11913
12429
|
normal: {
|
|
11914
|
-
bgColor:
|
|
12430
|
+
bgColor: Ro,
|
|
11915
12431
|
textColor: r.semantic.color.text.secondary200
|
|
11916
12432
|
},
|
|
11917
12433
|
hover: {
|
|
@@ -11923,7 +12439,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11923
12439
|
textColor: r.semantic.color.text.secondary100
|
|
11924
12440
|
},
|
|
11925
12441
|
disabled: {
|
|
11926
|
-
bgColor:
|
|
12442
|
+
bgColor: Ro,
|
|
11927
12443
|
textColor: r.semantic.color.text.secondary600
|
|
11928
12444
|
}
|
|
11929
12445
|
}
|
|
@@ -11937,7 +12453,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11937
12453
|
minWidth: "2rem",
|
|
11938
12454
|
borderRadius: "99rem"
|
|
11939
12455
|
}
|
|
11940
|
-
},
|
|
12456
|
+
}, j0 = {
|
|
11941
12457
|
textColor: r.semantic.color.text.secondary200,
|
|
11942
12458
|
bgColor: r.semantic.color.background.secondary900,
|
|
11943
12459
|
shadow: `0 0 0.5px 1px ${r.semantic.color.border.neutral400}`,
|
|
@@ -11951,7 +12467,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11951
12467
|
height: "8px",
|
|
11952
12468
|
shadow: `${r.semantic.color.border.neutral400} 0px 1.5px`
|
|
11953
12469
|
}
|
|
11954
|
-
},
|
|
12470
|
+
}, D0 = {
|
|
11955
12471
|
levelOffset: "1.8rem",
|
|
11956
12472
|
item: {
|
|
11957
12473
|
inlinePadding: "0.8rem 1.6rem",
|
|
@@ -11964,10 +12480,10 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
11964
12480
|
iconColor: r.semantic.color.icon.neutral800,
|
|
11965
12481
|
gap: "0.4rem"
|
|
11966
12482
|
}
|
|
11967
|
-
},
|
|
12483
|
+
}, G0 = {
|
|
11968
12484
|
colors: {
|
|
11969
|
-
primary: r.semantic.color.text.
|
|
11970
|
-
secondary: r.semantic.color.text.
|
|
12485
|
+
primary: r.semantic.color.text.secondary200,
|
|
12486
|
+
secondary: r.semantic.color.text.secondary400
|
|
11971
12487
|
},
|
|
11972
12488
|
heading: {
|
|
11973
12489
|
fontFamily: r.core.font.fontFamily.regular,
|
|
@@ -12034,7 +12550,7 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
12034
12550
|
semiBold: r.core.font.fontWeight.semiBold
|
|
12035
12551
|
}
|
|
12036
12552
|
}
|
|
12037
|
-
},
|
|
12553
|
+
}, N0 = {
|
|
12038
12554
|
gap: "1.6rem",
|
|
12039
12555
|
header: {
|
|
12040
12556
|
gap: "0.8rem"
|
|
@@ -12086,13 +12602,13 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
12086
12602
|
borderColor: r.semantic.color.border.neutral300
|
|
12087
12603
|
}
|
|
12088
12604
|
}
|
|
12089
|
-
},
|
|
12605
|
+
}, q0 = {
|
|
12090
12606
|
bgColor: r.semantic.color.background.secondary990,
|
|
12091
12607
|
textColor: r.semantic.color.background.secondary50,
|
|
12092
12608
|
fontFamily: r.core.font.fontFamily.regular,
|
|
12093
12609
|
fontSize: r.core.font.fontSize.s14,
|
|
12094
12610
|
lineHeight: "1.4"
|
|
12095
|
-
},
|
|
12611
|
+
}, Y0 = {
|
|
12096
12612
|
width: "0.5rem",
|
|
12097
12613
|
height: "0.5rem",
|
|
12098
12614
|
bgColor: r.semantic.color.background.neutral100,
|
|
@@ -12101,88 +12617,90 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
12101
12617
|
bgColor: r.semantic.color.background.neutral400,
|
|
12102
12618
|
borderRadius: "99rem"
|
|
12103
12619
|
}
|
|
12104
|
-
},
|
|
12620
|
+
}, U0 = {
|
|
12105
12621
|
name: "dark-2",
|
|
12106
12622
|
mode: "dark",
|
|
12107
12623
|
...r,
|
|
12108
12624
|
components: {
|
|
12109
|
-
actionIconButton:
|
|
12110
|
-
appBar:
|
|
12111
|
-
appSelectionMenu:
|
|
12112
|
-
autoComplete:
|
|
12113
|
-
badge:
|
|
12114
|
-
banner:
|
|
12115
|
-
boxSelectionGroup:
|
|
12116
|
-
button:
|
|
12117
|
-
buttonGroup:
|
|
12118
|
-
card:
|
|
12119
|
-
checkbox:
|
|
12120
|
-
chip:
|
|
12121
|
-
chipList:
|
|
12122
|
-
countryFlag:
|
|
12123
|
-
datePicker:
|
|
12124
|
-
drawer:
|
|
12125
|
-
filters:
|
|
12126
|
-
formField:
|
|
12127
|
-
iconButton:
|
|
12128
|
-
input:
|
|
12129
|
-
|
|
12130
|
-
|
|
12131
|
-
|
|
12132
|
-
|
|
12133
|
-
|
|
12134
|
-
|
|
12135
|
-
|
|
12136
|
-
|
|
12137
|
-
|
|
12138
|
-
|
|
12139
|
-
|
|
12140
|
-
|
|
12141
|
-
|
|
12142
|
-
|
|
12143
|
-
|
|
12144
|
-
|
|
12145
|
-
|
|
12146
|
-
|
|
12147
|
-
|
|
12148
|
-
|
|
12149
|
-
|
|
12150
|
-
|
|
12151
|
-
|
|
12152
|
-
|
|
12153
|
-
|
|
12154
|
-
|
|
12155
|
-
|
|
12156
|
-
|
|
12157
|
-
|
|
12158
|
-
|
|
12159
|
-
|
|
12160
|
-
|
|
12161
|
-
|
|
12162
|
-
|
|
12625
|
+
actionIconButton: Dc,
|
|
12626
|
+
appBar: Gc,
|
|
12627
|
+
appSelectionMenu: Nc,
|
|
12628
|
+
autoComplete: qc,
|
|
12629
|
+
badge: Yc,
|
|
12630
|
+
banner: Uc,
|
|
12631
|
+
boxSelectionGroup: Zc,
|
|
12632
|
+
button: Vc,
|
|
12633
|
+
buttonGroup: Jc,
|
|
12634
|
+
card: Kc,
|
|
12635
|
+
checkbox: Qc,
|
|
12636
|
+
chip: o0,
|
|
12637
|
+
chipList: r0,
|
|
12638
|
+
countryFlag: e0,
|
|
12639
|
+
datePicker: t0,
|
|
12640
|
+
drawer: a0,
|
|
12641
|
+
filters: n0,
|
|
12642
|
+
formField: c0,
|
|
12643
|
+
iconButton: i0,
|
|
12644
|
+
input: l0,
|
|
12645
|
+
keyValueList: s0,
|
|
12646
|
+
label: d0,
|
|
12647
|
+
layouts: m0,
|
|
12648
|
+
link: b0,
|
|
12649
|
+
loader: g0,
|
|
12650
|
+
menu: u0,
|
|
12651
|
+
midBar: p0,
|
|
12652
|
+
modal: C0,
|
|
12653
|
+
moreInfoIcon: x0,
|
|
12654
|
+
popover: h0,
|
|
12655
|
+
popupCard: f0,
|
|
12656
|
+
profileIcon: y0,
|
|
12657
|
+
progressBar: k0,
|
|
12658
|
+
radio: v0,
|
|
12659
|
+
searchBar: w0,
|
|
12660
|
+
section: S0,
|
|
12661
|
+
select: $0,
|
|
12662
|
+
semanticButton: R0,
|
|
12663
|
+
semanticContainer: z0,
|
|
12664
|
+
semanticIcon: W0,
|
|
12665
|
+
sideBar: B0,
|
|
12666
|
+
skeleton: P0,
|
|
12667
|
+
slider: F0,
|
|
12668
|
+
stepper: L0,
|
|
12669
|
+
switchButton: M0,
|
|
12670
|
+
table: H0,
|
|
12671
|
+
tableHeading: T0,
|
|
12672
|
+
tabs: I0,
|
|
12673
|
+
textButton: E0,
|
|
12674
|
+
themeModeSwitch: O0,
|
|
12675
|
+
toast: _0,
|
|
12676
|
+
toggleButton: A0,
|
|
12677
|
+
tooltip: j0,
|
|
12678
|
+
treeView: D0,
|
|
12679
|
+
typography: G0,
|
|
12680
|
+
windowBar: N0
|
|
12163
12681
|
},
|
|
12164
12682
|
globals: {
|
|
12165
|
-
body:
|
|
12166
|
-
scrollbar:
|
|
12683
|
+
body: q0,
|
|
12684
|
+
scrollbar: Y0
|
|
12167
12685
|
}
|
|
12168
|
-
},
|
|
12686
|
+
}, Z0 = Ar, mi = {
|
|
12169
12687
|
light: Ar,
|
|
12170
|
-
dark:
|
|
12171
|
-
},
|
|
12172
|
-
light:
|
|
12173
|
-
dark:
|
|
12174
|
-
}, to = () =>
|
|
12688
|
+
dark: In
|
|
12689
|
+
}, bi = {
|
|
12690
|
+
light: jc,
|
|
12691
|
+
dark: U0
|
|
12692
|
+
}, to = () => Re() || Z0, V0 = ({
|
|
12175
12693
|
value: a,
|
|
12176
12694
|
storageKey: n,
|
|
12177
12695
|
onChange: i
|
|
12178
12696
|
}) => {
|
|
12179
|
-
const s =
|
|
12697
|
+
const s = zo(() => {
|
|
12180
12698
|
try {
|
|
12181
12699
|
return localStorage.getItem(n) ?? void 0;
|
|
12182
12700
|
} catch {
|
|
12183
12701
|
return;
|
|
12184
12702
|
}
|
|
12185
|
-
}, [n]), l =
|
|
12703
|
+
}, [n]), l = zo((C) => {
|
|
12186
12704
|
try {
|
|
12187
12705
|
C == null ? localStorage.removeItem(n) : localStorage.setItem(n, C);
|
|
12188
12706
|
} catch {
|
|
@@ -12213,55 +12731,56 @@ const Q0 = (a) => a.reduce((n, i) => (n.light.push(i.light), n.dark.push(i.dark)
|
|
|
12213
12731
|
readFromStorage: s,
|
|
12214
12732
|
saveToStorage: l
|
|
12215
12733
|
};
|
|
12216
|
-
},
|
|
12734
|
+
}, gi = (a) => Po`
|
|
12217
12735
|
&:focus-visible {
|
|
12218
12736
|
outline: ${() => to().core.focus.size} solid ${() => to().core.focus.color};
|
|
12219
12737
|
outline-offset: ${() => a || to().core.focus.margin};
|
|
12220
12738
|
}
|
|
12221
|
-
`,
|
|
12739
|
+
`, ui = (a) => Po`
|
|
12222
12740
|
outline: ${() => to().core.focus.size} solid ${() => to().core.focus.color};
|
|
12223
12741
|
outline-offset: ${() => a || to().core.focus.margin};
|
|
12224
|
-
`,
|
|
12742
|
+
`, L = {
|
|
12225
12743
|
System: "system",
|
|
12226
12744
|
Light: "light",
|
|
12227
12745
|
Dark: "dark"
|
|
12228
|
-
}, jr = [
|
|
12746
|
+
}, jr = [L.Light, L.Dark], J0 = [...jr, L.System], Vo = (a, n) => !!a && (n ? J0 : jr).includes(a), Dr = () => typeof window > "u" ? {
|
|
12229
12747
|
matches: !1
|
|
12230
|
-
} : window.matchMedia("(prefers-color-scheme: dark)"), Bo = (a) =>
|
|
12748
|
+
} : window.matchMedia("(prefers-color-scheme: dark)"), Bo = (a) => L.System === a ? Dr().matches ? L.Dark : L.Light : a, Mr = (a, n) => Vo(a, n) ? a : Bo(L.System), Hr = (a) => Bo(a ?? L.System) === L.Dark ? L.Light : L.Dark, K0 = ({
|
|
12231
12749
|
allowSystemThemeMode: a,
|
|
12232
12750
|
defaultThemeMode: n
|
|
12233
12751
|
}) => {
|
|
12234
|
-
const [i, s] = $r(() =>
|
|
12752
|
+
const [i, s] = $r(() => Mr(n, a)), [l, m] = $r(() => i && Bo(i)), g = Vo(i, a);
|
|
12235
12753
|
No(() => {
|
|
12236
12754
|
!g && l && s(l);
|
|
12237
12755
|
}, [l, g]);
|
|
12238
|
-
const C =
|
|
12756
|
+
const C = zo((k) => {
|
|
12239
12757
|
let h;
|
|
12240
12758
|
if (Vo(k, a))
|
|
12241
12759
|
h = k;
|
|
12242
12760
|
else {
|
|
12243
12761
|
if (g)
|
|
12244
12762
|
return !1;
|
|
12245
|
-
h =
|
|
12763
|
+
h = Mr(n, a);
|
|
12246
12764
|
}
|
|
12247
12765
|
return s(h), m(Bo(h)), !0;
|
|
12248
|
-
}, [g, a, n]), x =
|
|
12766
|
+
}, [g, a, n]), x = zo(() => {
|
|
12249
12767
|
m((k) => {
|
|
12250
12768
|
if (!k) return k;
|
|
12251
|
-
const h =
|
|
12769
|
+
const h = Hr(k);
|
|
12252
12770
|
return s(h), h;
|
|
12253
12771
|
});
|
|
12254
12772
|
}, []);
|
|
12255
12773
|
return No(() => {
|
|
12256
|
-
if (!a ||
|
|
12774
|
+
if (!a || L.System !== i)
|
|
12257
12775
|
return;
|
|
12258
|
-
const k = Dr(), h = (S) => m(S.matches ?
|
|
12776
|
+
const k = Dr(), h = (S) => m(S.matches ? L.Dark : L.Light);
|
|
12259
12777
|
return k.addEventListener("change", h), () => k == null ? void 0 : k.removeEventListener("change", h);
|
|
12260
12778
|
}, [i, a]), {
|
|
12261
12779
|
setUserThemeMode: C,
|
|
12262
12780
|
toggleAppThemeMode: x,
|
|
12263
|
-
getNextThemeModeToToggle:
|
|
12781
|
+
getNextThemeModeToToggle: Hr,
|
|
12264
12782
|
userThemeMode: i,
|
|
12783
|
+
// theme selected by user or got from storage (dark/light/system)
|
|
12265
12784
|
appThemeMode: l
|
|
12266
12785
|
// resolved theme (dark/light - selected or current system)
|
|
12267
12786
|
};
|
|
@@ -12276,17 +12795,17 @@ var Jo = { exports: {} }, go = {};
|
|
|
12276
12795
|
* This source code is licensed under the MIT license found in the
|
|
12277
12796
|
* LICENSE file in the root directory of this source tree.
|
|
12278
12797
|
*/
|
|
12279
|
-
var
|
|
12280
|
-
function
|
|
12281
|
-
if (
|
|
12282
|
-
|
|
12798
|
+
var Tr;
|
|
12799
|
+
function Q0() {
|
|
12800
|
+
if (Tr) return go;
|
|
12801
|
+
Tr = 1;
|
|
12283
12802
|
var a = Er, n = Symbol.for("react.element"), i = Symbol.for("react.fragment"), s = Object.prototype.hasOwnProperty, l = a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, m = { key: !0, ref: !0, __self: !0, __source: !0 };
|
|
12284
12803
|
function g(C, x, k) {
|
|
12285
|
-
var h, S = {}, u = null,
|
|
12286
|
-
k !== void 0 && (u = "" + k), x.key !== void 0 && (u = "" + x.key), x.ref !== void 0 && (
|
|
12804
|
+
var h, S = {}, u = null, z = null;
|
|
12805
|
+
k !== void 0 && (u = "" + k), x.key !== void 0 && (u = "" + x.key), x.ref !== void 0 && (z = x.ref);
|
|
12287
12806
|
for (h in x) s.call(x, h) && !m.hasOwnProperty(h) && (S[h] = x[h]);
|
|
12288
12807
|
if (C && C.defaultProps) for (h in x = C.defaultProps, x) S[h] === void 0 && (S[h] = x[h]);
|
|
12289
|
-
return { $$typeof: n, type: C, key: u, ref:
|
|
12808
|
+
return { $$typeof: n, type: C, key: u, ref: z, props: S, _owner: l.current };
|
|
12290
12809
|
}
|
|
12291
12810
|
return go.Fragment = i, go.jsx = g, go.jsxs = g, go;
|
|
12292
12811
|
}
|
|
@@ -12301,13 +12820,13 @@ var uo = {};
|
|
|
12301
12820
|
* LICENSE file in the root directory of this source tree.
|
|
12302
12821
|
*/
|
|
12303
12822
|
var Ir;
|
|
12304
|
-
function
|
|
12823
|
+
function oi() {
|
|
12305
12824
|
return Ir || (Ir = 1, process.env.NODE_ENV !== "production" && function() {
|
|
12306
|
-
var a = Er, n = Symbol.for("react.element"), i = Symbol.for("react.portal"), s = Symbol.for("react.fragment"), l = Symbol.for("react.strict_mode"), m = Symbol.for("react.profiler"), g = Symbol.for("react.provider"), C = Symbol.for("react.context"), x = Symbol.for("react.forward_ref"), k = Symbol.for("react.suspense"), h = Symbol.for("react.suspense_list"), S = Symbol.for("react.memo"), u = Symbol.for("react.lazy"),
|
|
12825
|
+
var a = Er, n = Symbol.for("react.element"), i = Symbol.for("react.portal"), s = Symbol.for("react.fragment"), l = Symbol.for("react.strict_mode"), m = Symbol.for("react.profiler"), g = Symbol.for("react.provider"), C = Symbol.for("react.context"), x = Symbol.for("react.forward_ref"), k = Symbol.for("react.suspense"), h = Symbol.for("react.suspense_list"), S = Symbol.for("react.memo"), u = Symbol.for("react.lazy"), z = Symbol.for("react.offscreen"), xo = Symbol.iterator, Lo = "@@iterator";
|
|
12307
12826
|
function ho(c) {
|
|
12308
12827
|
if (c === null || typeof c != "object")
|
|
12309
12828
|
return null;
|
|
12310
|
-
var d = xo && c[xo] || c[
|
|
12829
|
+
var d = xo && c[xo] || c[Lo];
|
|
12311
12830
|
return typeof d == "function" ? d : null;
|
|
12312
12831
|
}
|
|
12313
12832
|
var O = a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
@@ -12331,7 +12850,7 @@ function q0() {
|
|
|
12331
12850
|
var qr = !1, Yr = !1, Ur = !1, Zr = !1, Vr = !1, Qo;
|
|
12332
12851
|
Qo = Symbol.for("react.module.reference");
|
|
12333
12852
|
function Jr(c) {
|
|
12334
|
-
return !!(typeof c == "string" || typeof c == "function" || c === s || c === m || Vr || c === l || c === k || c === h || Zr || c ===
|
|
12853
|
+
return !!(typeof c == "string" || typeof c == "function" || c === s || c === m || Vr || c === l || c === k || c === h || Zr || c === z || qr || Yr || Ur || typeof c == "object" && c !== null && (c.$$typeof === u || c.$$typeof === S || c.$$typeof === g || c.$$typeof === C || c.$$typeof === x || // This needs to include all possible module reference object
|
|
12335
12854
|
// types supported by any Flight configuration anywhere since
|
|
12336
12855
|
// we don't know which Flight build this will end up being used
|
|
12337
12856
|
// with.
|
|
@@ -12454,27 +12973,27 @@ function q0() {
|
|
|
12454
12973
|
no < 0 && W("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
|
12455
12974
|
}
|
|
12456
12975
|
}
|
|
12457
|
-
var
|
|
12976
|
+
var Mo = O.ReactCurrentDispatcher, Ho;
|
|
12458
12977
|
function fo(c, d, b) {
|
|
12459
12978
|
{
|
|
12460
|
-
if (
|
|
12979
|
+
if (Ho === void 0)
|
|
12461
12980
|
try {
|
|
12462
12981
|
throw Error();
|
|
12463
12982
|
} catch (v) {
|
|
12464
12983
|
var p = v.stack.trim().match(/\n( *(at )?)/);
|
|
12465
|
-
|
|
12984
|
+
Ho = p && p[1] || "";
|
|
12466
12985
|
}
|
|
12467
12986
|
return `
|
|
12468
|
-
` +
|
|
12987
|
+
` + Ho + c;
|
|
12469
12988
|
}
|
|
12470
12989
|
}
|
|
12471
|
-
var
|
|
12990
|
+
var To = !1, yo;
|
|
12472
12991
|
{
|
|
12473
12992
|
var re = typeof WeakMap == "function" ? WeakMap : Map;
|
|
12474
12993
|
yo = new re();
|
|
12475
12994
|
}
|
|
12476
12995
|
function sr(c, d) {
|
|
12477
|
-
if (!c ||
|
|
12996
|
+
if (!c || To)
|
|
12478
12997
|
return "";
|
|
12479
12998
|
{
|
|
12480
12999
|
var b = yo.get(c);
|
|
@@ -12482,11 +13001,11 @@ function q0() {
|
|
|
12482
13001
|
return b;
|
|
12483
13002
|
}
|
|
12484
13003
|
var p;
|
|
12485
|
-
|
|
13004
|
+
To = !0;
|
|
12486
13005
|
var v = Error.prepareStackTrace;
|
|
12487
13006
|
Error.prepareStackTrace = void 0;
|
|
12488
13007
|
var w;
|
|
12489
|
-
w =
|
|
13008
|
+
w = Mo.current, Mo.current = null, Qr();
|
|
12490
13009
|
try {
|
|
12491
13010
|
if (d) {
|
|
12492
13011
|
var y = function() {
|
|
@@ -12499,47 +13018,47 @@ function q0() {
|
|
|
12499
13018
|
}), typeof Reflect == "object" && Reflect.construct) {
|
|
12500
13019
|
try {
|
|
12501
13020
|
Reflect.construct(y, []);
|
|
12502
|
-
} catch (
|
|
12503
|
-
p =
|
|
13021
|
+
} catch (M) {
|
|
13022
|
+
p = M;
|
|
12504
13023
|
}
|
|
12505
13024
|
Reflect.construct(c, [], y);
|
|
12506
13025
|
} else {
|
|
12507
13026
|
try {
|
|
12508
13027
|
y.call();
|
|
12509
|
-
} catch (
|
|
12510
|
-
p =
|
|
13028
|
+
} catch (M) {
|
|
13029
|
+
p = M;
|
|
12511
13030
|
}
|
|
12512
13031
|
c.call(y.prototype);
|
|
12513
13032
|
}
|
|
12514
13033
|
} else {
|
|
12515
13034
|
try {
|
|
12516
13035
|
throw Error();
|
|
12517
|
-
} catch (
|
|
12518
|
-
p =
|
|
13036
|
+
} catch (M) {
|
|
13037
|
+
p = M;
|
|
12519
13038
|
}
|
|
12520
13039
|
c();
|
|
12521
13040
|
}
|
|
12522
|
-
} catch (
|
|
12523
|
-
if (
|
|
12524
|
-
for (var f =
|
|
13041
|
+
} catch (M) {
|
|
13042
|
+
if (M && p && typeof M.stack == "string") {
|
|
13043
|
+
for (var f = M.stack.split(`
|
|
12525
13044
|
`), B = p.stack.split(`
|
|
12526
|
-
`), $ = f.length - 1,
|
|
12527
|
-
|
|
12528
|
-
for (; $ >= 1 &&
|
|
12529
|
-
if (f[$] !== B[
|
|
12530
|
-
if ($ !== 1 ||
|
|
13045
|
+
`), $ = f.length - 1, R = B.length - 1; $ >= 1 && R >= 0 && f[$] !== B[R]; )
|
|
13046
|
+
R--;
|
|
13047
|
+
for (; $ >= 1 && R >= 0; $--, R--)
|
|
13048
|
+
if (f[$] !== B[R]) {
|
|
13049
|
+
if ($ !== 1 || R !== 1)
|
|
12531
13050
|
do
|
|
12532
|
-
if ($--,
|
|
13051
|
+
if ($--, R--, R < 0 || f[$] !== B[R]) {
|
|
12533
13052
|
var E = `
|
|
12534
13053
|
` + f[$].replace(" at new ", " at ");
|
|
12535
13054
|
return c.displayName && E.includes("<anonymous>") && (E = E.replace("<anonymous>", c.displayName)), typeof c == "function" && yo.set(c, E), E;
|
|
12536
13055
|
}
|
|
12537
|
-
while ($ >= 1 &&
|
|
13056
|
+
while ($ >= 1 && R >= 0);
|
|
12538
13057
|
break;
|
|
12539
13058
|
}
|
|
12540
13059
|
}
|
|
12541
13060
|
} finally {
|
|
12542
|
-
|
|
13061
|
+
To = !1, Mo.current = w, oe(), Error.prepareStackTrace = v;
|
|
12543
13062
|
}
|
|
12544
13063
|
var eo = c ? c.displayName || c.name : "", K = eo ? fo(eo) : "";
|
|
12545
13064
|
return typeof c == "function" && yo.set(c, K), K;
|
|
@@ -12723,8 +13242,8 @@ function q0() {
|
|
|
12723
13242
|
y[w] === void 0 && (y[w] = $[w]);
|
|
12724
13243
|
}
|
|
12725
13244
|
if (f || B) {
|
|
12726
|
-
var
|
|
12727
|
-
f && be(y,
|
|
13245
|
+
var R = typeof c == "function" ? c.displayName || c.name || "Unknown" : c;
|
|
13246
|
+
f && be(y, R), B && ge(y, R);
|
|
12728
13247
|
}
|
|
12729
13248
|
return ue(c, f, B, v, p, io.current, y);
|
|
12730
13249
|
}
|
|
@@ -12851,9 +13370,9 @@ Check the top-level render call using <` + b + ">.");
|
|
|
12851
13370
|
var $;
|
|
12852
13371
|
c === null ? $ = "null" : Io(c) ? $ = "array" : c !== void 0 && c.$$typeof === n ? ($ = "<" + (_(c.type) || "Unknown") + " />", f = " Did you accidentally export a JSX literal instead of a component?") : $ = typeof c, W("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", $, f);
|
|
12853
13372
|
}
|
|
12854
|
-
var
|
|
12855
|
-
if (
|
|
12856
|
-
return
|
|
13373
|
+
var R = pe(c, d, b, v, w);
|
|
13374
|
+
if (R == null)
|
|
13375
|
+
return R;
|
|
12857
13376
|
if (y) {
|
|
12858
13377
|
var E = d.children;
|
|
12859
13378
|
if (E !== void 0)
|
|
@@ -12868,11 +13387,11 @@ Check the top-level render call using <` + b + ">.");
|
|
|
12868
13387
|
yr(E, c);
|
|
12869
13388
|
}
|
|
12870
13389
|
if (co.call(d, "key")) {
|
|
12871
|
-
var K = _(c),
|
|
13390
|
+
var K = _(c), M = Object.keys(d).filter(function($e) {
|
|
12872
13391
|
return $e !== "key";
|
|
12873
|
-
}), Ao =
|
|
13392
|
+
}), Ao = M.length > 0 ? "{key: someKey, " + M.join(": ..., ") + ": ...}" : "{key: someKey}";
|
|
12874
13393
|
if (!kr[K + Ao]) {
|
|
12875
|
-
var Se =
|
|
13394
|
+
var Se = M.length > 0 ? "{" + M.join(": ..., ") + ": ...}" : "{}";
|
|
12876
13395
|
W(`A props object containing a "key" prop is being spread into JSX:
|
|
12877
13396
|
let props = %s;
|
|
12878
13397
|
<%s {...props} />
|
|
@@ -12881,7 +13400,7 @@ React keys must be passed directly to JSX without using spread:
|
|
|
12881
13400
|
<%s key={someKey} {...props} />`, Ao, K, Se, K), kr[K + Ao] = !0;
|
|
12882
13401
|
}
|
|
12883
13402
|
}
|
|
12884
|
-
return c === s ? fe(
|
|
13403
|
+
return c === s ? fe(R) : he(R), R;
|
|
12885
13404
|
}
|
|
12886
13405
|
}
|
|
12887
13406
|
function ye(c, d, b) {
|
|
@@ -12894,9 +13413,9 @@ React keys must be passed directly to JSX without using spread:
|
|
|
12894
13413
|
uo.Fragment = s, uo.jsx = ve, uo.jsxs = we;
|
|
12895
13414
|
}()), uo;
|
|
12896
13415
|
}
|
|
12897
|
-
process.env.NODE_ENV === "production" ? Jo.exports =
|
|
13416
|
+
process.env.NODE_ENV === "production" ? Jo.exports = Q0() : Jo.exports = oi();
|
|
12898
13417
|
var Ko = Jo.exports;
|
|
12899
|
-
const Gr = Be(null),
|
|
13418
|
+
const Gr = Be(null), ri = ({
|
|
12900
13419
|
children: a,
|
|
12901
13420
|
...n
|
|
12902
13421
|
}) => {
|
|
@@ -12905,12 +13424,12 @@ const Gr = Be(null), Y0 = ({
|
|
|
12905
13424
|
value: i,
|
|
12906
13425
|
children: a
|
|
12907
13426
|
});
|
|
12908
|
-
},
|
|
13427
|
+
}, pi = () => {
|
|
12909
13428
|
const a = Fe(Gr);
|
|
12910
13429
|
if (!a)
|
|
12911
13430
|
throw new Error("Missing ThemeSwitchContext");
|
|
12912
13431
|
return a;
|
|
12913
|
-
},
|
|
13432
|
+
}, Ci = ({
|
|
12914
13433
|
children: a,
|
|
12915
13434
|
storageKey: n,
|
|
12916
13435
|
lightTheme: i,
|
|
@@ -12921,23 +13440,23 @@ const Gr = Be(null), Y0 = ({
|
|
|
12921
13440
|
const {
|
|
12922
13441
|
appThemeMode: g,
|
|
12923
13442
|
...C
|
|
12924
|
-
} =
|
|
13443
|
+
} = K0({
|
|
12925
13444
|
allowSystemThemeMode: l,
|
|
12926
13445
|
defaultThemeMode: m
|
|
12927
13446
|
});
|
|
12928
|
-
return
|
|
13447
|
+
return V0({
|
|
12929
13448
|
storageKey: n,
|
|
12930
13449
|
value: C.userThemeMode,
|
|
12931
13450
|
onChange: C.setUserThemeMode
|
|
12932
|
-
}), Ko.jsx(
|
|
12933
|
-
theme: g ===
|
|
12934
|
-
children: Ko.jsx(
|
|
13451
|
+
}), Ko.jsx(ze, {
|
|
13452
|
+
theme: g === L.Dark ? s : i,
|
|
13453
|
+
children: Ko.jsx(ri, {
|
|
12935
13454
|
...C,
|
|
12936
13455
|
allowSystemThemeMode: l,
|
|
12937
13456
|
children: a
|
|
12938
13457
|
})
|
|
12939
13458
|
});
|
|
12940
|
-
},
|
|
13459
|
+
}, ei = Po`
|
|
12941
13460
|
body {
|
|
12942
13461
|
background: ${({
|
|
12943
13462
|
theme: a
|
|
@@ -12961,7 +13480,7 @@ const Gr = Be(null), Y0 = ({
|
|
|
12961
13480
|
}) => a.mode};
|
|
12962
13481
|
}
|
|
12963
13482
|
}
|
|
12964
|
-
`,
|
|
13483
|
+
`, ti = Po`
|
|
12965
13484
|
@media (pointer: fine) {
|
|
12966
13485
|
@-moz-document url-prefix() {
|
|
12967
13486
|
* {
|
|
@@ -13014,30 +13533,30 @@ const Gr = Be(null), Y0 = ({
|
|
|
13014
13533
|
background-color: transparent;
|
|
13015
13534
|
}
|
|
13016
13535
|
}
|
|
13017
|
-
`,
|
|
13018
|
-
${
|
|
13019
|
-
${
|
|
13536
|
+
`, xi = We`
|
|
13537
|
+
${ei};
|
|
13538
|
+
${ti};
|
|
13020
13539
|
`;
|
|
13021
13540
|
export {
|
|
13022
|
-
|
|
13023
|
-
|
|
13024
|
-
|
|
13025
|
-
|
|
13026
|
-
|
|
13027
|
-
|
|
13028
|
-
|
|
13029
|
-
|
|
13541
|
+
xi as CommonStyles,
|
|
13542
|
+
Ci as SwitchableModeThemeProvider,
|
|
13543
|
+
ri as ThemeModeSwitchingProvider,
|
|
13544
|
+
L as ThemeModes,
|
|
13545
|
+
di as findThemeByNameAndMode,
|
|
13546
|
+
gi as getFocusStyle,
|
|
13547
|
+
ui as getFocusStyleProperties,
|
|
13548
|
+
li as getThemesFlatList,
|
|
13030
13549
|
Ot as groupFlatByMode,
|
|
13031
13550
|
Xt as groupFlatByNameAndMode,
|
|
13032
|
-
|
|
13033
|
-
|
|
13034
|
-
|
|
13035
|
-
|
|
13036
|
-
|
|
13037
|
-
|
|
13551
|
+
ii as groupThemesByMode,
|
|
13552
|
+
si as prepareThemesForSearch,
|
|
13553
|
+
Z0 as theme,
|
|
13554
|
+
mi as themesDefault,
|
|
13555
|
+
bi as themesRebrand,
|
|
13556
|
+
V0 as useStorage,
|
|
13038
13557
|
to as useTheme,
|
|
13039
|
-
|
|
13040
|
-
|
|
13041
|
-
|
|
13558
|
+
pi as useThemeModeSwitchingContext,
|
|
13559
|
+
K0 as useThemeModeSwitchingManager,
|
|
13560
|
+
ci as withContrast,
|
|
13042
13561
|
V as withOpacity
|
|
13043
13562
|
};
|