@redis-ui/styles 13.1.7 → 13.3.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/fonts.css +3 -5
- package/dist/index.js +431 -410
- package/dist/index.umd.cjs +11 -11
- package/dist/themes/types/theme/components/input.types.d.ts +1 -0
- package/dist/themes/types/theme/components/profileIcon.types.d.ts +1 -0
- package/dist/themes/types/theme/components/select.types.d.ts +1 -0
- package/dist/themes/types/theme/components/tabs.types.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -548,7 +548,7 @@ const lo = {
|
|
|
548
548
|
borderRadius: "0.4rem",
|
|
549
549
|
border: `1px solid ${t.semantic.color.border.neutral600}`,
|
|
550
550
|
fontSize: "1.4rem",
|
|
551
|
-
fontWeight:
|
|
551
|
+
fontWeight: t.core.font.fontWeight.normal,
|
|
552
552
|
fontStyle: "normal",
|
|
553
553
|
padding: "0.1rem",
|
|
554
554
|
gap: "0.2rem",
|
|
@@ -740,7 +740,7 @@ const lo = {
|
|
|
740
740
|
borderColor: t.semantic.color.border.neutral500
|
|
741
741
|
}, rt = {
|
|
742
742
|
fontSize: t.core.font.fontSize.s14,
|
|
743
|
-
fontWeight:
|
|
743
|
+
fontWeight: t.core.font.fontWeight.normal,
|
|
744
744
|
fontFamily: t.core.font.fontFamily.regular,
|
|
745
745
|
focusOutline: `1px dashed ${t.semantic.color.border.primary300}`,
|
|
746
746
|
dayCell: {
|
|
@@ -961,7 +961,7 @@ var Sr = {
|
|
|
961
961
|
purple: 300
|
|
962
962
|
};
|
|
963
963
|
function et(a) {
|
|
964
|
-
var
|
|
964
|
+
var h, v;
|
|
965
965
|
var n, i = [], d = 1, l;
|
|
966
966
|
if (typeof a == "number")
|
|
967
967
|
return { space: "rgb", values: [a >>> 16, (a & 65280) >>> 8, a & 255], alpha: 1 };
|
|
@@ -984,7 +984,7 @@ function et(a) {
|
|
|
984
984
|
} else if (n = /^((?:rgba?|hs[lvb]a?|hwba?|cmyk?|xy[zy]|gray|lab|lchu?v?|[ly]uv|lms|oklch|oklab|color))\s*\(([^\)]*)\)/.exec(a)) {
|
|
985
985
|
var x = n[1];
|
|
986
986
|
l = x.replace(/a$/, "");
|
|
987
|
-
var
|
|
987
|
+
var f = l === "cmyk" ? 4 : l === "gray" ? 1 : 3;
|
|
988
988
|
i = n[2].trim().split(/\s*[,\/]\s*|\s+/), l === "color" && (l = i.shift()), i = i.map(function(g, $) {
|
|
989
989
|
if (g[g.length - 1] === "%")
|
|
990
990
|
return g = parseFloat(g) / 100, $ === 3 ? g : l === "rgb" ? g * 255 : l[0] === "h" || l[0] === "l" && !$ ? g * 100 : l === "lab" ? g * 125 : l === "lch" ? $ < 2 ? g * 150 : g * 360 : l[0] === "o" && !$ ? g : l === "oklab" ? g * 0.4 : l === "oklch" ? $ < 2 ? g * 0.4 : g * 360 : g;
|
|
@@ -996,10 +996,10 @@ function et(a) {
|
|
|
996
996
|
if (g.endsWith("rad")) return parseFloat(g) * 180 / Math.PI;
|
|
997
997
|
}
|
|
998
998
|
return g === "none" ? 0 : parseFloat(g);
|
|
999
|
-
}), d = i.length >
|
|
999
|
+
}), d = i.length > f ? i.pop() : 1;
|
|
1000
1000
|
} else /[0-9](?:\s|\/|,)/.test(a) && (i = a.match(/([0-9]+)/g).map(function(g) {
|
|
1001
1001
|
return parseFloat(g);
|
|
1002
|
-
}), l = ((v = (
|
|
1002
|
+
}), l = ((v = (h = a.match(/([a-z])/ig)) == null ? void 0 : h.join("")) == null ? void 0 : v.toLowerCase()) || "rgb");
|
|
1003
1003
|
return {
|
|
1004
1004
|
space: l,
|
|
1005
1005
|
values: i,
|
|
@@ -1344,9 +1344,9 @@ function dt(a, n, i) {
|
|
|
1344
1344
|
function xo(a, n, i, d) {
|
|
1345
1345
|
if (d === void 0 && (d = dt), n === 0)
|
|
1346
1346
|
return d(i, i, i);
|
|
1347
|
-
var l = (a % 360 + 360) % 360 / 60, m = (1 - Math.abs(2 * i - 1)) * n, u = m * (1 - Math.abs(l % 2 - 1)), C = 0, x = 0,
|
|
1348
|
-
l >= 0 && l < 1 ? (C = m, x = u) : l >= 1 && l < 2 ? (C = u, x = m) : l >= 2 && l < 3 ? (x = m,
|
|
1349
|
-
var
|
|
1347
|
+
var l = (a % 360 + 360) % 360 / 60, m = (1 - Math.abs(2 * i - 1)) * n, u = m * (1 - Math.abs(l % 2 - 1)), C = 0, x = 0, f = 0;
|
|
1348
|
+
l >= 0 && l < 1 ? (C = m, x = u) : l >= 1 && l < 2 ? (C = u, x = m) : l >= 2 && l < 3 ? (x = m, f = u) : l >= 3 && l < 4 ? (x = u, f = m) : l >= 4 && l < 5 ? (C = u, f = m) : l >= 5 && l < 6 && (C = m, f = u);
|
|
1349
|
+
var h = i - m / 2, v = C + h, g = x + h, $ = f + h;
|
|
1350
1350
|
return d(v, g, $);
|
|
1351
1351
|
}
|
|
1352
1352
|
var $r = {
|
|
@@ -1504,8 +1504,8 @@ function mt(a) {
|
|
|
1504
1504
|
var n = a.toLowerCase();
|
|
1505
1505
|
return $r[n] ? "#" + $r[n] : a;
|
|
1506
1506
|
}
|
|
1507
|
-
var bt = /^#[a-fA-F0-9]{6}$/, gt = /^#[a-fA-F0-9]{8}$/, ut = /^#[a-fA-F0-9]{3}$/, pt = /^#[a-fA-F0-9]{4}$/, Do = /^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i, xt = /^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i, Ct = /^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i,
|
|
1508
|
-
function
|
|
1507
|
+
var bt = /^#[a-fA-F0-9]{6}$/, gt = /^#[a-fA-F0-9]{8}$/, ut = /^#[a-fA-F0-9]{3}$/, pt = /^#[a-fA-F0-9]{4}$/, Do = /^rgb\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*\)$/i, xt = /^rgb(?:a)?\(\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,)?\s*(\d{1,3})\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i, Ct = /^hsl\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*\)$/i, ft = /^hsl(?:a)?\(\s*(\d{0,3}[.]?[0-9]+(?:deg)?)\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,)?\s*(\d{1,3}[.]?[0-9]?)%\s*(?:,|\/)\s*([-+]?\d*[.]?\d+[%]?)\s*\)$/i;
|
|
1508
|
+
function oo(a) {
|
|
1509
1509
|
if (typeof a != "string")
|
|
1510
1510
|
throw new X(3);
|
|
1511
1511
|
var n = mt(a);
|
|
@@ -1556,18 +1556,18 @@ function Q(a) {
|
|
|
1556
1556
|
};
|
|
1557
1557
|
var u = Ct.exec(n);
|
|
1558
1558
|
if (u) {
|
|
1559
|
-
var C = parseInt("" + u[1], 10), x = parseInt("" + u[2], 10) / 100,
|
|
1559
|
+
var C = parseInt("" + u[1], 10), x = parseInt("" + u[2], 10) / 100, f = parseInt("" + u[3], 10) / 100, h = "rgb(" + xo(C, x, f) + ")", v = Do.exec(h);
|
|
1560
1560
|
if (!v)
|
|
1561
|
-
throw new X(4, n,
|
|
1561
|
+
throw new X(4, n, h);
|
|
1562
1562
|
return {
|
|
1563
1563
|
red: parseInt("" + v[1], 10),
|
|
1564
1564
|
green: parseInt("" + v[2], 10),
|
|
1565
1565
|
blue: parseInt("" + v[3], 10)
|
|
1566
1566
|
};
|
|
1567
1567
|
}
|
|
1568
|
-
var g =
|
|
1568
|
+
var g = ft.exec(n.substring(0, 50));
|
|
1569
1569
|
if (g) {
|
|
1570
|
-
var $ = parseInt("" + g[1], 10), G = parseInt("" + g[2], 10) / 100,
|
|
1570
|
+
var $ = parseInt("" + g[1], 10), G = parseInt("" + g[2], 10) / 100, Bo = parseInt("" + g[3], 10) / 100, Co = "rgb(" + xo($, G, Bo) + ")", _ = Do.exec(Co);
|
|
1571
1571
|
if (!_)
|
|
1572
1572
|
throw new X(4, n, Co);
|
|
1573
1573
|
return {
|
|
@@ -1579,7 +1579,7 @@ function Q(a) {
|
|
|
1579
1579
|
}
|
|
1580
1580
|
throw new X(5);
|
|
1581
1581
|
}
|
|
1582
|
-
function
|
|
1582
|
+
function ht(a) {
|
|
1583
1583
|
var n = a.red / 255, i = a.green / 255, d = a.blue / 255, l = Math.max(n, i, d), m = Math.min(n, i, d), u = (l + m) / 2;
|
|
1584
1584
|
if (l === m)
|
|
1585
1585
|
return a.alpha !== void 0 ? {
|
|
@@ -1592,7 +1592,7 @@ function ft(a) {
|
|
|
1592
1592
|
saturation: 0,
|
|
1593
1593
|
lightness: u
|
|
1594
1594
|
};
|
|
1595
|
-
var C, x = l - m,
|
|
1595
|
+
var C, x = l - m, f = u > 0.5 ? x / (2 - l - m) : x / (l + m);
|
|
1596
1596
|
switch (l) {
|
|
1597
1597
|
case n:
|
|
1598
1598
|
C = (i - d) / x + (i < d ? 6 : 0);
|
|
@@ -1606,27 +1606,27 @@ function ft(a) {
|
|
|
1606
1606
|
}
|
|
1607
1607
|
return C *= 60, a.alpha !== void 0 ? {
|
|
1608
1608
|
hue: C,
|
|
1609
|
-
saturation:
|
|
1609
|
+
saturation: f,
|
|
1610
1610
|
lightness: u,
|
|
1611
1611
|
alpha: a.alpha
|
|
1612
1612
|
} : {
|
|
1613
1613
|
hue: C,
|
|
1614
|
-
saturation:
|
|
1614
|
+
saturation: f,
|
|
1615
1615
|
lightness: u
|
|
1616
1616
|
};
|
|
1617
1617
|
}
|
|
1618
1618
|
function U(a) {
|
|
1619
|
-
return
|
|
1619
|
+
return ht(oo(a));
|
|
1620
1620
|
}
|
|
1621
1621
|
var yt = function(n) {
|
|
1622
1622
|
return n.length === 7 && n[1] === n[2] && n[3] === n[4] && n[5] === n[6] ? "#" + n[1] + n[3] + n[5] : n;
|
|
1623
1623
|
}, Yo = yt;
|
|
1624
|
-
function
|
|
1624
|
+
function Q(a) {
|
|
1625
1625
|
var n = a.toString(16);
|
|
1626
1626
|
return n.length === 1 ? "0" + n : n;
|
|
1627
1627
|
}
|
|
1628
1628
|
function Ao(a) {
|
|
1629
|
-
return
|
|
1629
|
+
return Q(Math.round(a * 255));
|
|
1630
1630
|
}
|
|
1631
1631
|
function kt(a, n, i) {
|
|
1632
1632
|
return Yo("#" + Ao(a) + Ao(n) + Ao(i));
|
|
@@ -1650,14 +1650,14 @@ function wt(a, n, i, d) {
|
|
|
1650
1650
|
}
|
|
1651
1651
|
function Uo(a, n, i) {
|
|
1652
1652
|
if (typeof a == "number" && typeof n == "number" && typeof i == "number")
|
|
1653
|
-
return Yo("#" +
|
|
1653
|
+
return Yo("#" + Q(a) + Q(n) + Q(i));
|
|
1654
1654
|
if (typeof a == "object" && n === void 0 && i === void 0)
|
|
1655
|
-
return Yo("#" +
|
|
1655
|
+
return Yo("#" + Q(a.red) + Q(a.green) + Q(a.blue));
|
|
1656
1656
|
throw new X(6);
|
|
1657
1657
|
}
|
|
1658
1658
|
function Po(a, n, i, d) {
|
|
1659
1659
|
if (typeof a == "string" && typeof n == "number") {
|
|
1660
|
-
var l =
|
|
1660
|
+
var l = oo(a);
|
|
1661
1661
|
return "rgba(" + l.red + "," + l.green + "," + l.blue + "," + n + ")";
|
|
1662
1662
|
} else {
|
|
1663
1663
|
if (typeof a == "number" && typeof n == "number" && typeof i == "number" && typeof d == "number")
|
|
@@ -1701,28 +1701,28 @@ function Wt(a, n) {
|
|
|
1701
1701
|
}));
|
|
1702
1702
|
}
|
|
1703
1703
|
E(Wt);
|
|
1704
|
-
function
|
|
1704
|
+
function ao(a, n, i) {
|
|
1705
1705
|
return Math.max(a, Math.min(n, i));
|
|
1706
1706
|
}
|
|
1707
1707
|
function Pt(a, n) {
|
|
1708
1708
|
if (n === "transparent") return n;
|
|
1709
1709
|
var i = U(n);
|
|
1710
1710
|
return V(M({}, i, {
|
|
1711
|
-
lightness:
|
|
1711
|
+
lightness: ao(0, 1, i.lightness - parseFloat(a))
|
|
1712
1712
|
}));
|
|
1713
1713
|
}
|
|
1714
|
-
var
|
|
1715
|
-
function
|
|
1714
|
+
var Bt = E(Pt), Ft = Bt;
|
|
1715
|
+
function It(a, n) {
|
|
1716
1716
|
if (n === "transparent") return n;
|
|
1717
1717
|
var i = U(n);
|
|
1718
1718
|
return V(M({}, i, {
|
|
1719
|
-
saturation:
|
|
1719
|
+
saturation: ao(0, 1, i.saturation - parseFloat(a))
|
|
1720
1720
|
}));
|
|
1721
1721
|
}
|
|
1722
|
-
E(
|
|
1722
|
+
E(It);
|
|
1723
1723
|
function Tt(a) {
|
|
1724
1724
|
if (a === "transparent") return 0;
|
|
1725
|
-
var n =
|
|
1725
|
+
var n = oo(a), i = Object.keys(n).map(function(u) {
|
|
1726
1726
|
var C = n[u] / 255;
|
|
1727
1727
|
return C <= 0.03928 ? C / 12.92 : Math.pow((C + 0.055) / 1.055, 2.4);
|
|
1728
1728
|
}), d = i[0], l = i[1], m = i[2];
|
|
@@ -1732,7 +1732,7 @@ function Mt(a, n) {
|
|
|
1732
1732
|
if (n === "transparent") return n;
|
|
1733
1733
|
var i = U(n);
|
|
1734
1734
|
return V(M({}, i, {
|
|
1735
|
-
lightness:
|
|
1735
|
+
lightness: ao(0, 1, i.lightness + parseFloat(a))
|
|
1736
1736
|
}));
|
|
1737
1737
|
}
|
|
1738
1738
|
var Et = E(Mt), Ht = Et;
|
|
@@ -1740,11 +1740,11 @@ function Ot(a, n, i) {
|
|
|
1740
1740
|
if (n === "transparent") return i;
|
|
1741
1741
|
if (i === "transparent") return n;
|
|
1742
1742
|
if (a === 0) return i;
|
|
1743
|
-
var d =
|
|
1743
|
+
var d = oo(n), l = M({}, d, {
|
|
1744
1744
|
alpha: typeof d.alpha == "number" ? d.alpha : 1
|
|
1745
|
-
}), m =
|
|
1745
|
+
}), m = oo(i), u = M({}, m, {
|
|
1746
1746
|
alpha: typeof m.alpha == "number" ? m.alpha : 1
|
|
1747
|
-
}), C = l.alpha - u.alpha, x = parseFloat(a) * 2 - 1,
|
|
1747
|
+
}), C = l.alpha - u.alpha, x = parseFloat(a) * 2 - 1, f = x * C === -1 ? x : x + C, h = 1 + x * C, v = (f / h + 1) / 2, g = 1 - v, $ = {
|
|
1748
1748
|
red: Math.floor(l.red * v + u.red * g),
|
|
1749
1749
|
green: Math.floor(l.green * v + u.green * g),
|
|
1750
1750
|
blue: Math.floor(l.blue * v + u.blue * g),
|
|
@@ -1755,8 +1755,8 @@ function Ot(a, n, i) {
|
|
|
1755
1755
|
var _t = E(Ot), Jr = _t;
|
|
1756
1756
|
function Lt(a, n) {
|
|
1757
1757
|
if (n === "transparent") return n;
|
|
1758
|
-
var i =
|
|
1759
|
-
alpha:
|
|
1758
|
+
var i = oo(n), d = typeof i.alpha == "number" ? i.alpha : 1, l = M({}, i, {
|
|
1759
|
+
alpha: ao(0, 1, (d * 100 + parseFloat(a) * 100) / 100)
|
|
1760
1760
|
});
|
|
1761
1761
|
return Po(l);
|
|
1762
1762
|
}
|
|
@@ -1765,7 +1765,7 @@ function jt(a, n) {
|
|
|
1765
1765
|
if (n === "transparent") return n;
|
|
1766
1766
|
var i = U(n);
|
|
1767
1767
|
return V(M({}, i, {
|
|
1768
|
-
saturation:
|
|
1768
|
+
saturation: ao(0, 1, i.saturation + parseFloat(a))
|
|
1769
1769
|
}));
|
|
1770
1770
|
}
|
|
1771
1771
|
E(jt);
|
|
@@ -1797,16 +1797,16 @@ function Gt(a, n) {
|
|
|
1797
1797
|
E(Gt);
|
|
1798
1798
|
function qt(a, n) {
|
|
1799
1799
|
if (n === "transparent") return n;
|
|
1800
|
-
var i =
|
|
1801
|
-
alpha:
|
|
1800
|
+
var i = oo(n), d = typeof i.alpha == "number" ? i.alpha : 1, l = M({}, i, {
|
|
1801
|
+
alpha: ao(0, 1, +(d * 100 - parseFloat(a) * 100).toFixed(2) / 100)
|
|
1802
1802
|
});
|
|
1803
1803
|
return Po(l);
|
|
1804
1804
|
}
|
|
1805
1805
|
E(qt);
|
|
1806
|
-
const
|
|
1806
|
+
const K = (a, n) => tt(a, n);
|
|
1807
1807
|
function L0(a) {
|
|
1808
1808
|
const n = Tt(a), i = Math.max(Math.abs(n - 0.5) * 1.2, 0.3);
|
|
1809
|
-
return n < 0.5 ? Ht(i, a) :
|
|
1809
|
+
return n < 0.5 ? Ht(i, a) : Ft(i, a);
|
|
1810
1810
|
}
|
|
1811
1811
|
const Yt = {
|
|
1812
1812
|
shadow: t.core.shadow.shadow500,
|
|
@@ -1831,7 +1831,7 @@ const Yt = {
|
|
|
1831
1831
|
border: `1px solid ${t.semantic.color.border.neutral400}`,
|
|
1832
1832
|
buttonsGap: "1.6rem"
|
|
1833
1833
|
},
|
|
1834
|
-
overlay: { bgColor:
|
|
1834
|
+
overlay: { bgColor: K(t.semantic.color.background.neutral100, 0.8) }
|
|
1835
1835
|
}, Ut = {
|
|
1836
1836
|
chipList: {
|
|
1837
1837
|
padding: "0.8rem 1.6rem",
|
|
@@ -1929,7 +1929,7 @@ const Yt = {
|
|
|
1929
1929
|
gap: "0.5rem",
|
|
1930
1930
|
fontFamily: t.core.font.fontFamily.regular,
|
|
1931
1931
|
fontSize: "1.4rem",
|
|
1932
|
-
fontWeight:
|
|
1932
|
+
fontWeight: t.core.font.fontWeight.normal,
|
|
1933
1933
|
resetButton: {
|
|
1934
1934
|
iconColor: t.semantic.color.icon.neutral800
|
|
1935
1935
|
},
|
|
@@ -2003,7 +2003,8 @@ const Yt = {
|
|
|
2003
2003
|
valueLabel: { textColor: t.semantic.color.text.neutral700 }
|
|
2004
2004
|
},
|
|
2005
2005
|
password: {
|
|
2006
|
-
padding: "0 0.5rem 0 1rem"
|
|
2006
|
+
padding: "0 0.5rem 0 1rem",
|
|
2007
|
+
fontSize: "inherit"
|
|
2007
2008
|
},
|
|
2008
2009
|
additionalText: {
|
|
2009
2010
|
margin: "0.4rem 0 0 0",
|
|
@@ -2040,14 +2041,14 @@ const Yt = {
|
|
|
2040
2041
|
block: {
|
|
2041
2042
|
sizes: {
|
|
2042
2043
|
regular: {
|
|
2043
|
-
fontWeight:
|
|
2044
|
+
fontWeight: t.core.font.fontWeight.semiBold,
|
|
2044
2045
|
padding: "0.4rem 0.6rem",
|
|
2045
2046
|
borderRadius: "0.4rem",
|
|
2046
2047
|
minHeight: "2.8rem",
|
|
2047
2048
|
gap: "0"
|
|
2048
2049
|
},
|
|
2049
2050
|
small: {
|
|
2050
|
-
fontWeight:
|
|
2051
|
+
fontWeight: t.core.font.fontWeight.semiBold,
|
|
2051
2052
|
padding: "0.2rem 0.4rem",
|
|
2052
2053
|
borderRadius: "0.4rem",
|
|
2053
2054
|
minHeight: "2.2rem",
|
|
@@ -2076,13 +2077,13 @@ const Yt = {
|
|
|
2076
2077
|
inline: {
|
|
2077
2078
|
sizes: {
|
|
2078
2079
|
regular: {
|
|
2079
|
-
fontWeight:
|
|
2080
|
+
fontWeight: t.core.font.fontWeight.semiBold,
|
|
2080
2081
|
padding: "0",
|
|
2081
2082
|
borderRadius: "0",
|
|
2082
2083
|
gap: "0"
|
|
2083
2084
|
},
|
|
2084
2085
|
small: {
|
|
2085
|
-
fontWeight:
|
|
2086
|
+
fontWeight: t.core.font.fontWeight.semiBold,
|
|
2086
2087
|
padding: "0",
|
|
2087
2088
|
borderRadius: "0",
|
|
2088
2089
|
gap: "0"
|
|
@@ -2148,8 +2149,14 @@ const Yt = {
|
|
|
2148
2149
|
levelOffset: "1.6rem",
|
|
2149
2150
|
gap: "1rem",
|
|
2150
2151
|
variants: {
|
|
2151
|
-
header: {
|
|
2152
|
-
|
|
2152
|
+
header: {
|
|
2153
|
+
textColor: t.semantic.color.text.neutral800,
|
|
2154
|
+
fontWeight: t.core.font.fontWeight.semiBold
|
|
2155
|
+
},
|
|
2156
|
+
sub: {
|
|
2157
|
+
textColor: t.semantic.color.text.secondary700,
|
|
2158
|
+
fontWeight: t.core.font.fontWeight.semiBold
|
|
2159
|
+
}
|
|
2153
2160
|
}
|
|
2154
2161
|
},
|
|
2155
2162
|
item: {
|
|
@@ -2292,7 +2299,8 @@ const Yt = {
|
|
|
2292
2299
|
S: "2.0rem",
|
|
2293
2300
|
M: "3.2rem",
|
|
2294
2301
|
L: "4.4rem"
|
|
2295
|
-
}
|
|
2302
|
+
},
|
|
2303
|
+
fontWeight: t.core.font.fontWeight.bold
|
|
2296
2304
|
}, ia = {
|
|
2297
2305
|
borderRadius: "1px",
|
|
2298
2306
|
textPosition: {
|
|
@@ -2466,7 +2474,7 @@ const Yt = {
|
|
|
2466
2474
|
gap: "0.6rem",
|
|
2467
2475
|
fontFamily: t.core.font.fontFamily.regular,
|
|
2468
2476
|
fontSize: "1.4rem",
|
|
2469
|
-
fontWeight:
|
|
2477
|
+
fontWeight: t.core.font.fontWeight.normal,
|
|
2470
2478
|
borderWidth: "1px",
|
|
2471
2479
|
borderRadius: "0.4rem",
|
|
2472
2480
|
indicator: {
|
|
@@ -2563,7 +2571,7 @@ const Yt = {
|
|
|
2563
2571
|
}, j = {
|
|
2564
2572
|
bgColor: { disabled: t.semantic.color.background.neutral400 },
|
|
2565
2573
|
textColor: { disabled: t.semantic.color.text.neutral600 }
|
|
2566
|
-
},
|
|
2574
|
+
}, B = {
|
|
2567
2575
|
borderColor: { disabled: t.semantic.color.border.neutral500 },
|
|
2568
2576
|
bgColor: { disabled: "transparent" },
|
|
2569
2577
|
textColor: { disabled: t.semantic.color.text.neutral500 }
|
|
@@ -2606,9 +2614,9 @@ const Yt = {
|
|
|
2606
2614
|
bgColor: D(t.semantic.color.background.success700, 12)
|
|
2607
2615
|
},
|
|
2608
2616
|
disabled: {
|
|
2609
|
-
borderColor:
|
|
2610
|
-
bgColor:
|
|
2611
|
-
textColor:
|
|
2617
|
+
borderColor: B.borderColor.disabled,
|
|
2618
|
+
bgColor: B.bgColor.disabled,
|
|
2619
|
+
textColor: B.textColor.disabled
|
|
2612
2620
|
}
|
|
2613
2621
|
}
|
|
2614
2622
|
},
|
|
@@ -2642,9 +2650,9 @@ const Yt = {
|
|
|
2642
2650
|
bgColor: D(t.semantic.color.background.attention700, 12)
|
|
2643
2651
|
},
|
|
2644
2652
|
disabled: {
|
|
2645
|
-
borderColor:
|
|
2646
|
-
bgColor:
|
|
2647
|
-
textColor:
|
|
2653
|
+
borderColor: B.borderColor.disabled,
|
|
2654
|
+
bgColor: B.bgColor.disabled,
|
|
2655
|
+
textColor: B.textColor.disabled
|
|
2648
2656
|
}
|
|
2649
2657
|
}
|
|
2650
2658
|
},
|
|
@@ -2678,9 +2686,9 @@ const Yt = {
|
|
|
2678
2686
|
bgColor: D(t.semantic.color.background.danger700, 12)
|
|
2679
2687
|
},
|
|
2680
2688
|
disabled: {
|
|
2681
|
-
borderColor:
|
|
2682
|
-
bgColor:
|
|
2683
|
-
textColor:
|
|
2689
|
+
borderColor: B.borderColor.disabled,
|
|
2690
|
+
bgColor: B.bgColor.disabled,
|
|
2691
|
+
textColor: B.textColor.disabled
|
|
2684
2692
|
}
|
|
2685
2693
|
}
|
|
2686
2694
|
},
|
|
@@ -2714,9 +2722,9 @@ const Yt = {
|
|
|
2714
2722
|
bgColor: D(t.semantic.color.background.notice700, 12)
|
|
2715
2723
|
},
|
|
2716
2724
|
disabled: {
|
|
2717
|
-
borderColor:
|
|
2718
|
-
bgColor:
|
|
2719
|
-
textColor:
|
|
2725
|
+
borderColor: B.borderColor.disabled,
|
|
2726
|
+
bgColor: B.bgColor.disabled,
|
|
2727
|
+
textColor: B.textColor.disabled
|
|
2720
2728
|
}
|
|
2721
2729
|
}
|
|
2722
2730
|
},
|
|
@@ -2750,9 +2758,9 @@ const Yt = {
|
|
|
2750
2758
|
bgColor: D(t.semantic.color.background.informative700, 12)
|
|
2751
2759
|
},
|
|
2752
2760
|
disabled: {
|
|
2753
|
-
borderColor:
|
|
2754
|
-
bgColor:
|
|
2755
|
-
textColor:
|
|
2761
|
+
borderColor: B.borderColor.disabled,
|
|
2762
|
+
bgColor: B.bgColor.disabled,
|
|
2763
|
+
textColor: B.textColor.disabled
|
|
2756
2764
|
}
|
|
2757
2765
|
}
|
|
2758
2766
|
}
|
|
@@ -2984,7 +2992,7 @@ const Yt = {
|
|
|
2984
2992
|
}
|
|
2985
2993
|
}
|
|
2986
2994
|
}
|
|
2987
|
-
},
|
|
2995
|
+
}, fa = {
|
|
2988
2996
|
width: "3.2rem",
|
|
2989
2997
|
height: "1.8rem",
|
|
2990
2998
|
padding: "0.2rem",
|
|
@@ -3036,7 +3044,7 @@ const Yt = {
|
|
|
3036
3044
|
}
|
|
3037
3045
|
}
|
|
3038
3046
|
}
|
|
3039
|
-
},
|
|
3047
|
+
}, ha = {
|
|
3040
3048
|
table: {
|
|
3041
3049
|
tableContainer: {
|
|
3042
3050
|
backgroundColor: t.semantic.color.background.neutral100,
|
|
@@ -3120,7 +3128,7 @@ const Yt = {
|
|
|
3120
3128
|
},
|
|
3121
3129
|
active: {
|
|
3122
3130
|
textColor: t.semantic.color.text.secondary800,
|
|
3123
|
-
fontWeight:
|
|
3131
|
+
fontWeight: t.core.font.fontWeight.semiBold,
|
|
3124
3132
|
letterSpacing: "0"
|
|
3125
3133
|
},
|
|
3126
3134
|
disabled: {
|
|
@@ -3168,7 +3176,7 @@ const Yt = {
|
|
|
3168
3176
|
textColor: t.semantic.color.text.secondary800,
|
|
3169
3177
|
bgColor: t.semantic.color.background.secondary50,
|
|
3170
3178
|
borderColor: t.semantic.color.border.secondary200,
|
|
3171
|
-
fontWeight:
|
|
3179
|
+
fontWeight: t.core.font.fontWeight.semiBold,
|
|
3172
3180
|
letterSpacing: "0"
|
|
3173
3181
|
},
|
|
3174
3182
|
disabled: {
|
|
@@ -3372,32 +3380,32 @@ const Yt = {
|
|
|
3372
3380
|
sizes: {
|
|
3373
3381
|
XXL: {
|
|
3374
3382
|
fontSize: t.core.font.fontSize.s40,
|
|
3375
|
-
fontWeight:
|
|
3383
|
+
fontWeight: t.core.font.fontWeight.bold
|
|
3376
3384
|
},
|
|
3377
3385
|
XL: {
|
|
3378
3386
|
fontSize: t.core.font.fontSize.s28,
|
|
3379
|
-
fontWeight:
|
|
3387
|
+
fontWeight: t.core.font.fontWeight.bold
|
|
3380
3388
|
},
|
|
3381
3389
|
L: {
|
|
3382
3390
|
fontSize: t.core.font.fontSize.s20,
|
|
3383
|
-
fontWeight:
|
|
3391
|
+
fontWeight: t.core.font.fontWeight.semiBold
|
|
3384
3392
|
},
|
|
3385
3393
|
M: {
|
|
3386
3394
|
fontSize: t.core.font.fontSize.s18,
|
|
3387
|
-
fontWeight:
|
|
3395
|
+
fontWeight: t.core.font.fontWeight.semiBold
|
|
3388
3396
|
},
|
|
3389
3397
|
S: {
|
|
3390
3398
|
fontSize: t.core.font.fontSize.s16,
|
|
3391
|
-
fontWeight:
|
|
3399
|
+
fontWeight: t.core.font.fontWeight.semiBold
|
|
3392
3400
|
},
|
|
3393
3401
|
XS: {
|
|
3394
3402
|
fontSize: t.core.font.fontSize.s14,
|
|
3395
|
-
fontWeight:
|
|
3403
|
+
fontWeight: t.core.font.fontWeight.semiBold
|
|
3396
3404
|
}
|
|
3397
3405
|
},
|
|
3398
3406
|
fontWeight: {
|
|
3399
|
-
bold:
|
|
3400
|
-
semiBold:
|
|
3407
|
+
bold: t.core.font.fontWeight.bold,
|
|
3408
|
+
semiBold: t.core.font.fontWeight.semiBold
|
|
3401
3409
|
}
|
|
3402
3410
|
},
|
|
3403
3411
|
body: {
|
|
@@ -3411,7 +3419,7 @@ const Yt = {
|
|
|
3411
3419
|
},
|
|
3412
3420
|
fontWeight: {
|
|
3413
3421
|
regular: "inherit",
|
|
3414
|
-
semiBold:
|
|
3422
|
+
semiBold: t.core.font.fontWeight.semiBold,
|
|
3415
3423
|
italic: "inherit"
|
|
3416
3424
|
},
|
|
3417
3425
|
fontStyle: {
|
|
@@ -3428,8 +3436,8 @@ const Yt = {
|
|
|
3428
3436
|
S: t.core.font.fontSize.s10
|
|
3429
3437
|
},
|
|
3430
3438
|
fontWeight: {
|
|
3431
|
-
regular:
|
|
3432
|
-
semiBold:
|
|
3439
|
+
regular: t.core.font.fontWeight.normal,
|
|
3440
|
+
semiBold: t.core.font.fontWeight.semiBold
|
|
3433
3441
|
}
|
|
3434
3442
|
}
|
|
3435
3443
|
}, Wa = {
|
|
@@ -3490,7 +3498,7 @@ const Yt = {
|
|
|
3490
3498
|
fontFamily: t.core.font.fontFamily.regular,
|
|
3491
3499
|
fontSize: t.core.font.fontSize.s14,
|
|
3492
3500
|
lineHeight: "1.4"
|
|
3493
|
-
},
|
|
3501
|
+
}, Ba = {
|
|
3494
3502
|
width: "0.5rem",
|
|
3495
3503
|
height: "0.5rem",
|
|
3496
3504
|
bgColor: t.semantic.color.background.secondary100,
|
|
@@ -3499,7 +3507,7 @@ const Yt = {
|
|
|
3499
3507
|
bgColor: t.semantic.color.background.secondary600,
|
|
3500
3508
|
borderRadius: "99rem"
|
|
3501
3509
|
}
|
|
3502
|
-
},
|
|
3510
|
+
}, Fa = {
|
|
3503
3511
|
name: "light",
|
|
3504
3512
|
...t,
|
|
3505
3513
|
components: {
|
|
@@ -3543,8 +3551,8 @@ const Yt = {
|
|
|
3543
3551
|
sideBar: pa,
|
|
3544
3552
|
skeleton: xa,
|
|
3545
3553
|
stepper: Ca,
|
|
3546
|
-
switchButton:
|
|
3547
|
-
table:
|
|
3554
|
+
switchButton: fa,
|
|
3555
|
+
table: ha,
|
|
3548
3556
|
tableHeading: ya,
|
|
3549
3557
|
tabs: ka,
|
|
3550
3558
|
textButton: va,
|
|
@@ -3557,7 +3565,7 @@ const Yt = {
|
|
|
3557
3565
|
},
|
|
3558
3566
|
globals: {
|
|
3559
3567
|
body: Pa,
|
|
3560
|
-
scrollbar:
|
|
3568
|
+
scrollbar: Ba
|
|
3561
3569
|
}
|
|
3562
3570
|
}, so = {
|
|
3563
3571
|
transparent: "#00000000",
|
|
@@ -3745,7 +3753,7 @@ const Yt = {
|
|
|
3745
3753
|
color: so.primary200
|
|
3746
3754
|
}
|
|
3747
3755
|
}
|
|
3748
|
-
},
|
|
3756
|
+
}, Ia = {
|
|
3749
3757
|
sizes: {
|
|
3750
3758
|
L: {
|
|
3751
3759
|
size: "3rem",
|
|
@@ -3868,12 +3876,12 @@ const Yt = {
|
|
|
3868
3876
|
screenMarginHeight: "6px",
|
|
3869
3877
|
maxHeight: "50vh"
|
|
3870
3878
|
}
|
|
3871
|
-
},
|
|
3879
|
+
}, Br = "1px", Ha = {
|
|
3872
3880
|
padding: `${e.core.space.space025} ${e.core.space.space050}`,
|
|
3873
3881
|
gap: e.core.space.space025,
|
|
3874
3882
|
borderRadius: "2px",
|
|
3875
|
-
height: `calc(${e.core.space.space200} + ${
|
|
3876
|
-
borderWidth:
|
|
3883
|
+
height: `calc(${e.core.space.space200} + ${Br} * 2)`,
|
|
3884
|
+
borderWidth: Br,
|
|
3877
3885
|
borderStyle: "solid",
|
|
3878
3886
|
variants: {
|
|
3879
3887
|
white: {
|
|
@@ -4110,7 +4118,7 @@ const Yt = {
|
|
|
4110
4118
|
borderRadius: "0.4rem",
|
|
4111
4119
|
border: `1px solid ${e.semantic.color.border.neutral600}`,
|
|
4112
4120
|
fontSize: "1.4rem",
|
|
4113
|
-
fontWeight:
|
|
4121
|
+
fontWeight: e.core.font.fontWeight.normal,
|
|
4114
4122
|
fontStyle: "normal",
|
|
4115
4123
|
padding: "0.1rem",
|
|
4116
4124
|
gap: "0.2rem",
|
|
@@ -4302,7 +4310,7 @@ const Yt = {
|
|
|
4302
4310
|
borderColor: e.semantic.color.border.neutral500
|
|
4303
4311
|
}, qa = {
|
|
4304
4312
|
fontSize: e.core.font.fontSize.s14,
|
|
4305
|
-
fontWeight:
|
|
4313
|
+
fontWeight: e.core.font.fontWeight.normal,
|
|
4306
4314
|
fontFamily: e.core.font.fontFamily.regular,
|
|
4307
4315
|
focusOutline: `1px dashed ${e.semantic.color.border.primary300}`,
|
|
4308
4316
|
dayCell: {
|
|
@@ -4387,7 +4395,7 @@ const Yt = {
|
|
|
4387
4395
|
border: `1px solid ${e.semantic.color.border.neutral950}`,
|
|
4388
4396
|
buttonsGap: "1.6rem"
|
|
4389
4397
|
},
|
|
4390
|
-
overlay: { bgColor:
|
|
4398
|
+
overlay: { bgColor: K(e.semantic.color.background.neutral200, 0.8) }
|
|
4391
4399
|
}, Ua = {
|
|
4392
4400
|
chipList: {
|
|
4393
4401
|
padding: "0.8rem 1.6rem",
|
|
@@ -4485,7 +4493,7 @@ const Yt = {
|
|
|
4485
4493
|
gap: "0.5rem",
|
|
4486
4494
|
fontFamily: e.core.font.fontFamily.regular,
|
|
4487
4495
|
fontSize: "1.4rem",
|
|
4488
|
-
fontWeight:
|
|
4496
|
+
fontWeight: e.core.font.fontWeight.normal,
|
|
4489
4497
|
resetButton: {
|
|
4490
4498
|
iconColor: e.semantic.color.icon.neutral800
|
|
4491
4499
|
},
|
|
@@ -4559,7 +4567,8 @@ const Yt = {
|
|
|
4559
4567
|
valueLabel: { textColor: e.semantic.color.text.neutral700 }
|
|
4560
4568
|
},
|
|
4561
4569
|
password: {
|
|
4562
|
-
padding: "0 0.5rem 0 1rem"
|
|
4570
|
+
padding: "0 0.5rem 0 1rem",
|
|
4571
|
+
fontSize: "inherit"
|
|
4563
4572
|
},
|
|
4564
4573
|
additionalText: {
|
|
4565
4574
|
margin: "0.4rem 0 0 0",
|
|
@@ -4596,14 +4605,14 @@ const Yt = {
|
|
|
4596
4605
|
block: {
|
|
4597
4606
|
sizes: {
|
|
4598
4607
|
regular: {
|
|
4599
|
-
fontWeight:
|
|
4608
|
+
fontWeight: e.core.font.fontWeight.semiBold,
|
|
4600
4609
|
padding: "0.4rem 0.6rem",
|
|
4601
4610
|
borderRadius: "0.4rem",
|
|
4602
4611
|
minHeight: "2.8rem",
|
|
4603
4612
|
gap: "0"
|
|
4604
4613
|
},
|
|
4605
4614
|
small: {
|
|
4606
|
-
fontWeight:
|
|
4615
|
+
fontWeight: e.core.font.fontWeight.semiBold,
|
|
4607
4616
|
padding: "0.2rem 0.4rem",
|
|
4608
4617
|
borderRadius: "0.4rem",
|
|
4609
4618
|
minHeight: "2.2rem",
|
|
@@ -4631,13 +4640,13 @@ const Yt = {
|
|
|
4631
4640
|
inline: {
|
|
4632
4641
|
sizes: {
|
|
4633
4642
|
regular: {
|
|
4634
|
-
fontWeight:
|
|
4643
|
+
fontWeight: e.core.font.fontWeight.semiBold,
|
|
4635
4644
|
padding: "0",
|
|
4636
4645
|
borderRadius: "0",
|
|
4637
4646
|
gap: "0"
|
|
4638
4647
|
},
|
|
4639
4648
|
small: {
|
|
4640
|
-
fontWeight:
|
|
4649
|
+
fontWeight: e.core.font.fontWeight.semiBold,
|
|
4641
4650
|
padding: "0",
|
|
4642
4651
|
borderRadius: "0",
|
|
4643
4652
|
gap: "0"
|
|
@@ -4703,8 +4712,14 @@ const Yt = {
|
|
|
4703
4712
|
levelOffset: "1.6rem",
|
|
4704
4713
|
gap: "1rem",
|
|
4705
4714
|
variants: {
|
|
4706
|
-
header: {
|
|
4707
|
-
|
|
4715
|
+
header: {
|
|
4716
|
+
textColor: e.semantic.color.text.neutral800,
|
|
4717
|
+
fontWeight: e.core.font.fontWeight.semiBold
|
|
4718
|
+
},
|
|
4719
|
+
sub: {
|
|
4720
|
+
textColor: e.semantic.color.text.neutral600,
|
|
4721
|
+
fontWeight: e.core.font.fontWeight.semiBold
|
|
4722
|
+
}
|
|
4708
4723
|
}
|
|
4709
4724
|
},
|
|
4710
4725
|
item: {
|
|
@@ -4827,7 +4842,8 @@ const Yt = {
|
|
|
4827
4842
|
S: "2.0rem",
|
|
4828
4843
|
M: "3.2rem",
|
|
4829
4844
|
L: "4.4rem"
|
|
4830
|
-
}
|
|
4845
|
+
},
|
|
4846
|
+
fontWeight: e.core.font.fontWeight.bold
|
|
4831
4847
|
}, ln = {
|
|
4832
4848
|
borderRadius: "1px",
|
|
4833
4849
|
textPosition: {
|
|
@@ -5001,7 +5017,7 @@ const Yt = {
|
|
|
5001
5017
|
gap: "0.6rem",
|
|
5002
5018
|
fontFamily: e.core.font.fontFamily.regular,
|
|
5003
5019
|
fontSize: "1.4rem",
|
|
5004
|
-
fontWeight:
|
|
5020
|
+
fontWeight: e.core.font.fontWeight.normal,
|
|
5005
5021
|
borderWidth: "1px",
|
|
5006
5022
|
borderRadius: "0.4rem",
|
|
5007
5023
|
indicator: {
|
|
@@ -5098,7 +5114,7 @@ const Yt = {
|
|
|
5098
5114
|
}, A = {
|
|
5099
5115
|
bgColor: { disabled: e.semantic.color.background.neutral400 },
|
|
5100
5116
|
textColor: { disabled: e.semantic.color.text.neutral600 }
|
|
5101
|
-
},
|
|
5117
|
+
}, F = {
|
|
5102
5118
|
borderColor: { disabled: e.semantic.color.border.neutral500 },
|
|
5103
5119
|
bgColor: { disabled: "transparent" },
|
|
5104
5120
|
textColor: { disabled: e.semantic.color.text.neutral500 }
|
|
@@ -5141,9 +5157,9 @@ const Yt = {
|
|
|
5141
5157
|
bgColor: N(e.semantic.color.background.success700, 12)
|
|
5142
5158
|
},
|
|
5143
5159
|
disabled: {
|
|
5144
|
-
borderColor:
|
|
5145
|
-
bgColor:
|
|
5146
|
-
textColor:
|
|
5160
|
+
borderColor: F.borderColor.disabled,
|
|
5161
|
+
bgColor: F.bgColor.disabled,
|
|
5162
|
+
textColor: F.textColor.disabled
|
|
5147
5163
|
}
|
|
5148
5164
|
}
|
|
5149
5165
|
},
|
|
@@ -5177,9 +5193,9 @@ const Yt = {
|
|
|
5177
5193
|
bgColor: N(e.semantic.color.background.attention700, 12)
|
|
5178
5194
|
},
|
|
5179
5195
|
disabled: {
|
|
5180
|
-
borderColor:
|
|
5181
|
-
bgColor:
|
|
5182
|
-
textColor:
|
|
5196
|
+
borderColor: F.borderColor.disabled,
|
|
5197
|
+
bgColor: F.bgColor.disabled,
|
|
5198
|
+
textColor: F.textColor.disabled
|
|
5183
5199
|
}
|
|
5184
5200
|
}
|
|
5185
5201
|
},
|
|
@@ -5213,9 +5229,9 @@ const Yt = {
|
|
|
5213
5229
|
bgColor: N(e.semantic.color.background.danger700, 12)
|
|
5214
5230
|
},
|
|
5215
5231
|
disabled: {
|
|
5216
|
-
borderColor:
|
|
5217
|
-
bgColor:
|
|
5218
|
-
textColor:
|
|
5232
|
+
borderColor: F.borderColor.disabled,
|
|
5233
|
+
bgColor: F.bgColor.disabled,
|
|
5234
|
+
textColor: F.textColor.disabled
|
|
5219
5235
|
}
|
|
5220
5236
|
}
|
|
5221
5237
|
},
|
|
@@ -5249,9 +5265,9 @@ const Yt = {
|
|
|
5249
5265
|
bgColor: N(e.semantic.color.background.notice700, 12)
|
|
5250
5266
|
},
|
|
5251
5267
|
disabled: {
|
|
5252
|
-
borderColor:
|
|
5253
|
-
bgColor:
|
|
5254
|
-
textColor:
|
|
5268
|
+
borderColor: F.borderColor.disabled,
|
|
5269
|
+
bgColor: F.bgColor.disabled,
|
|
5270
|
+
textColor: F.textColor.disabled
|
|
5255
5271
|
}
|
|
5256
5272
|
}
|
|
5257
5273
|
},
|
|
@@ -5285,9 +5301,9 @@ const Yt = {
|
|
|
5285
5301
|
bgColor: N(e.semantic.color.background.informative700, 12)
|
|
5286
5302
|
},
|
|
5287
5303
|
disabled: {
|
|
5288
|
-
borderColor:
|
|
5289
|
-
bgColor:
|
|
5290
|
-
textColor:
|
|
5304
|
+
borderColor: F.borderColor.disabled,
|
|
5305
|
+
bgColor: F.bgColor.disabled,
|
|
5306
|
+
textColor: F.textColor.disabled
|
|
5291
5307
|
}
|
|
5292
5308
|
}
|
|
5293
5309
|
}
|
|
@@ -5472,7 +5488,7 @@ const Yt = {
|
|
|
5472
5488
|
grid: {
|
|
5473
5489
|
gap: "1.6rem"
|
|
5474
5490
|
}
|
|
5475
|
-
},
|
|
5491
|
+
}, fn = {
|
|
5476
5492
|
gap: "2.4rem",
|
|
5477
5493
|
step: {
|
|
5478
5494
|
gap: "0.8rem",
|
|
@@ -5519,7 +5535,7 @@ const Yt = {
|
|
|
5519
5535
|
}
|
|
5520
5536
|
}
|
|
5521
5537
|
}
|
|
5522
|
-
},
|
|
5538
|
+
}, hn = {
|
|
5523
5539
|
width: "3.2rem",
|
|
5524
5540
|
height: "1.8rem",
|
|
5525
5541
|
padding: "0.2rem",
|
|
@@ -5658,7 +5674,7 @@ const Yt = {
|
|
|
5658
5674
|
},
|
|
5659
5675
|
active: {
|
|
5660
5676
|
textColor: e.semantic.color.text.neutral900,
|
|
5661
|
-
fontWeight:
|
|
5677
|
+
fontWeight: e.core.font.fontWeight.semiBold,
|
|
5662
5678
|
letterSpacing: "0"
|
|
5663
5679
|
},
|
|
5664
5680
|
disabled: {
|
|
@@ -5706,7 +5722,7 @@ const Yt = {
|
|
|
5706
5722
|
textColor: e.semantic.color.text.neutral900,
|
|
5707
5723
|
bgColor: e.semantic.color.background.neutral200,
|
|
5708
5724
|
borderColor: e.semantic.color.border.neutral900,
|
|
5709
|
-
fontWeight:
|
|
5725
|
+
fontWeight: e.core.font.fontWeight.semiBold,
|
|
5710
5726
|
letterSpacing: "0"
|
|
5711
5727
|
},
|
|
5712
5728
|
disabled: {
|
|
@@ -5724,13 +5740,13 @@ const Yt = {
|
|
|
5724
5740
|
}
|
|
5725
5741
|
}
|
|
5726
5742
|
}
|
|
5727
|
-
}, Y = "transparent",
|
|
5743
|
+
}, Y = "transparent", Fr = "0.4rem 0.6rem", Ir = "0", Tr = "0.4rem", Mr = "0", wn = {
|
|
5728
5744
|
gap: "0.4rem",
|
|
5729
5745
|
height: "2.7rem",
|
|
5730
5746
|
lineHeight: "1.9rem",
|
|
5731
5747
|
variants: {
|
|
5732
5748
|
primary: {
|
|
5733
|
-
padding:
|
|
5749
|
+
padding: Fr,
|
|
5734
5750
|
borderRadius: Tr,
|
|
5735
5751
|
states: {
|
|
5736
5752
|
normal: {
|
|
@@ -5751,7 +5767,7 @@ const Yt = {
|
|
|
5751
5767
|
}
|
|
5752
5768
|
},
|
|
5753
5769
|
destructive: {
|
|
5754
|
-
padding:
|
|
5770
|
+
padding: Fr,
|
|
5755
5771
|
borderRadius: Tr,
|
|
5756
5772
|
states: {
|
|
5757
5773
|
normal: {
|
|
@@ -5771,7 +5787,7 @@ const Yt = {
|
|
|
5771
5787
|
}
|
|
5772
5788
|
},
|
|
5773
5789
|
"primary-inline": {
|
|
5774
|
-
padding:
|
|
5790
|
+
padding: Ir,
|
|
5775
5791
|
borderRadius: Mr,
|
|
5776
5792
|
states: {
|
|
5777
5793
|
normal: {
|
|
@@ -5791,7 +5807,7 @@ const Yt = {
|
|
|
5791
5807
|
}
|
|
5792
5808
|
},
|
|
5793
5809
|
"destructive-inline": {
|
|
5794
|
-
padding:
|
|
5810
|
+
padding: Ir,
|
|
5795
5811
|
borderRadius: Mr,
|
|
5796
5812
|
states: {
|
|
5797
5813
|
normal: {
|
|
@@ -5910,32 +5926,32 @@ const Yt = {
|
|
|
5910
5926
|
sizes: {
|
|
5911
5927
|
XXL: {
|
|
5912
5928
|
fontSize: e.core.font.fontSize.s40,
|
|
5913
|
-
fontWeight:
|
|
5929
|
+
fontWeight: e.core.font.fontWeight.bold
|
|
5914
5930
|
},
|
|
5915
5931
|
XL: {
|
|
5916
5932
|
fontSize: e.core.font.fontSize.s28,
|
|
5917
|
-
fontWeight:
|
|
5933
|
+
fontWeight: e.core.font.fontWeight.bold
|
|
5918
5934
|
},
|
|
5919
5935
|
L: {
|
|
5920
5936
|
fontSize: e.core.font.fontSize.s20,
|
|
5921
|
-
fontWeight:
|
|
5937
|
+
fontWeight: e.core.font.fontWeight.semiBold
|
|
5922
5938
|
},
|
|
5923
5939
|
M: {
|
|
5924
5940
|
fontSize: e.core.font.fontSize.s18,
|
|
5925
|
-
fontWeight:
|
|
5941
|
+
fontWeight: e.core.font.fontWeight.semiBold
|
|
5926
5942
|
},
|
|
5927
5943
|
S: {
|
|
5928
5944
|
fontSize: e.core.font.fontSize.s16,
|
|
5929
|
-
fontWeight:
|
|
5945
|
+
fontWeight: e.core.font.fontWeight.semiBold
|
|
5930
5946
|
},
|
|
5931
5947
|
XS: {
|
|
5932
5948
|
fontSize: e.core.font.fontSize.s14,
|
|
5933
|
-
fontWeight:
|
|
5949
|
+
fontWeight: e.core.font.fontWeight.semiBold
|
|
5934
5950
|
}
|
|
5935
5951
|
},
|
|
5936
5952
|
fontWeight: {
|
|
5937
|
-
bold:
|
|
5938
|
-
semiBold:
|
|
5953
|
+
bold: e.core.font.fontWeight.bold,
|
|
5954
|
+
semiBold: e.core.font.fontWeight.semiBold
|
|
5939
5955
|
}
|
|
5940
5956
|
},
|
|
5941
5957
|
body: {
|
|
@@ -5949,7 +5965,7 @@ const Yt = {
|
|
|
5949
5965
|
},
|
|
5950
5966
|
fontWeight: {
|
|
5951
5967
|
regular: "inherit",
|
|
5952
|
-
semiBold:
|
|
5968
|
+
semiBold: e.core.font.fontWeight.semiBold,
|
|
5953
5969
|
italic: "inherit"
|
|
5954
5970
|
},
|
|
5955
5971
|
fontStyle: {
|
|
@@ -5966,8 +5982,8 @@ const Yt = {
|
|
|
5966
5982
|
S: e.core.font.fontSize.s10
|
|
5967
5983
|
},
|
|
5968
5984
|
fontWeight: {
|
|
5969
|
-
regular:
|
|
5970
|
-
semiBold:
|
|
5985
|
+
regular: e.core.font.fontWeight.normal,
|
|
5986
|
+
semiBold: e.core.font.fontWeight.semiBold
|
|
5971
5987
|
}
|
|
5972
5988
|
}
|
|
5973
5989
|
}, Pn = {
|
|
@@ -6022,13 +6038,13 @@ const Yt = {
|
|
|
6022
6038
|
borderColor: e.semantic.color.border.neutral300
|
|
6023
6039
|
}
|
|
6024
6040
|
}
|
|
6025
|
-
},
|
|
6041
|
+
}, Bn = {
|
|
6026
6042
|
bgColor: e.semantic.color.background.neutral100,
|
|
6027
6043
|
textColor: e.semantic.color.background.neutral700,
|
|
6028
6044
|
fontFamily: e.core.font.fontFamily.regular,
|
|
6029
6045
|
fontSize: e.core.font.fontSize.s14,
|
|
6030
6046
|
lineHeight: "1.4"
|
|
6031
|
-
},
|
|
6047
|
+
}, Fn = {
|
|
6032
6048
|
width: "0.5rem",
|
|
6033
6049
|
height: "0.5rem",
|
|
6034
6050
|
bgColor: e.semantic.color.background.neutral100,
|
|
@@ -6041,7 +6057,7 @@ const Yt = {
|
|
|
6041
6057
|
name: "dark",
|
|
6042
6058
|
...e,
|
|
6043
6059
|
components: {
|
|
6044
|
-
actionIconButton:
|
|
6060
|
+
actionIconButton: Ia,
|
|
6045
6061
|
appBar: Ta,
|
|
6046
6062
|
appSelectionMenu: Ma,
|
|
6047
6063
|
autoComplete: Ea,
|
|
@@ -6080,8 +6096,8 @@ const Yt = {
|
|
|
6080
6096
|
semanticIcon: pn,
|
|
6081
6097
|
sideBar: xn,
|
|
6082
6098
|
skeleton: Cn,
|
|
6083
|
-
stepper:
|
|
6084
|
-
switchButton:
|
|
6099
|
+
stepper: fn,
|
|
6100
|
+
switchButton: hn,
|
|
6085
6101
|
table: yn,
|
|
6086
6102
|
tableHeading: kn,
|
|
6087
6103
|
tabs: vn,
|
|
@@ -6094,8 +6110,8 @@ const Yt = {
|
|
|
6094
6110
|
windowBar: Pn
|
|
6095
6111
|
},
|
|
6096
6112
|
globals: {
|
|
6097
|
-
body:
|
|
6098
|
-
scrollbar:
|
|
6113
|
+
body: Bn,
|
|
6114
|
+
scrollbar: Fn
|
|
6099
6115
|
}
|
|
6100
6116
|
}, mo = {
|
|
6101
6117
|
transparent: "#00000000",
|
|
@@ -6273,8 +6289,8 @@ const Yt = {
|
|
|
6273
6289
|
},
|
|
6274
6290
|
fontWeight: {
|
|
6275
6291
|
normal: "400",
|
|
6276
|
-
semiBold: "
|
|
6277
|
-
bold: "
|
|
6292
|
+
semiBold: "500",
|
|
6293
|
+
bold: "600"
|
|
6278
6294
|
}
|
|
6279
6295
|
},
|
|
6280
6296
|
focus: {
|
|
@@ -6283,7 +6299,7 @@ const Yt = {
|
|
|
6283
6299
|
color: mo.primary600
|
|
6284
6300
|
}
|
|
6285
6301
|
}
|
|
6286
|
-
},
|
|
6302
|
+
}, In = {
|
|
6287
6303
|
sizes: {
|
|
6288
6304
|
L: {
|
|
6289
6305
|
size: "3rem",
|
|
@@ -6316,7 +6332,7 @@ const Yt = {
|
|
|
6316
6332
|
},
|
|
6317
6333
|
disabled: {
|
|
6318
6334
|
bgColor: o.semantic.color.background.neutral100,
|
|
6319
|
-
textColor: o.semantic.color.text.
|
|
6335
|
+
textColor: o.semantic.color.text.neutral400
|
|
6320
6336
|
}
|
|
6321
6337
|
},
|
|
6322
6338
|
secondary: {
|
|
@@ -6332,23 +6348,23 @@ const Yt = {
|
|
|
6332
6348
|
},
|
|
6333
6349
|
disabled: {
|
|
6334
6350
|
bgColor: o.semantic.color.background.neutral100,
|
|
6335
|
-
textColor: o.semantic.color.text.
|
|
6351
|
+
textColor: o.semantic.color.text.neutral400
|
|
6336
6352
|
}
|
|
6337
6353
|
}
|
|
6338
6354
|
}
|
|
6339
6355
|
}, Tn = {
|
|
6340
6356
|
height: "7rem",
|
|
6341
6357
|
padding: "1.4rem 1.4rem 1.4rem 2.4rem",
|
|
6342
|
-
separator: `1px solid ${o.semantic.color.border.
|
|
6343
|
-
boxShadow: `0px 1px 0px 0px ${o.semantic.color.border.
|
|
6358
|
+
separator: `1px solid ${o.semantic.color.border.secondary200}`,
|
|
6359
|
+
boxShadow: `0px 1px 0px 0px ${o.semantic.color.border.secondary200}`,
|
|
6344
6360
|
group: {
|
|
6345
6361
|
gap: "1.6rem"
|
|
6346
6362
|
},
|
|
6347
6363
|
variants: {
|
|
6348
6364
|
default: {
|
|
6349
6365
|
bgColor: o.semantic.color.background.secondary0,
|
|
6350
|
-
color: o.semantic.color.background.
|
|
6351
|
-
userNameColor: o.semantic.color.background.
|
|
6366
|
+
color: o.semantic.color.background.primary400,
|
|
6367
|
+
userNameColor: o.semantic.color.background.secondary700,
|
|
6352
6368
|
accountNameColor: o.semantic.color.background.secondary950
|
|
6353
6369
|
},
|
|
6354
6370
|
alert: {
|
|
@@ -6578,7 +6594,7 @@ const Yt = {
|
|
|
6578
6594
|
disabled: {
|
|
6579
6595
|
bgColor: o.semantic.color.background.neutral100,
|
|
6580
6596
|
borderColor: o.semantic.color.border.neutral200,
|
|
6581
|
-
textColor: o.semantic.color.text.
|
|
6597
|
+
textColor: o.semantic.color.text.neutral400
|
|
6582
6598
|
}
|
|
6583
6599
|
},
|
|
6584
6600
|
destructive: {
|
|
@@ -6600,7 +6616,7 @@ const Yt = {
|
|
|
6600
6616
|
disabled: {
|
|
6601
6617
|
bgColor: o.semantic.color.background.neutral100,
|
|
6602
6618
|
borderColor: o.semantic.color.border.neutral200,
|
|
6603
|
-
textColor: o.semantic.color.text.
|
|
6619
|
+
textColor: o.semantic.color.text.neutral400
|
|
6604
6620
|
}
|
|
6605
6621
|
},
|
|
6606
6622
|
"secondary-fill": {
|
|
@@ -6622,7 +6638,7 @@ const Yt = {
|
|
|
6622
6638
|
disabled: {
|
|
6623
6639
|
bgColor: o.semantic.color.background.neutral100,
|
|
6624
6640
|
borderColor: o.semantic.color.border.neutral200,
|
|
6625
|
-
textColor: o.semantic.color.text.
|
|
6641
|
+
textColor: o.semantic.color.text.neutral400
|
|
6626
6642
|
}
|
|
6627
6643
|
},
|
|
6628
6644
|
"secondary-invert": {
|
|
@@ -6644,7 +6660,7 @@ const Yt = {
|
|
|
6644
6660
|
disabled: {
|
|
6645
6661
|
bgColor: o.semantic.color.background.neutral100,
|
|
6646
6662
|
borderColor: o.semantic.color.border.neutral200,
|
|
6647
|
-
textColor: o.semantic.color.text.
|
|
6663
|
+
textColor: o.semantic.color.text.neutral400
|
|
6648
6664
|
}
|
|
6649
6665
|
},
|
|
6650
6666
|
"secondary-ghost": {
|
|
@@ -6666,7 +6682,7 @@ const Yt = {
|
|
|
6666
6682
|
disabled: {
|
|
6667
6683
|
bgColor: "transparent",
|
|
6668
6684
|
borderColor: o.semantic.color.border.neutral200,
|
|
6669
|
-
textColor: o.semantic.color.text.
|
|
6685
|
+
textColor: o.semantic.color.text.neutral400
|
|
6670
6686
|
}
|
|
6671
6687
|
}
|
|
6672
6688
|
}
|
|
@@ -6674,7 +6690,7 @@ const Yt = {
|
|
|
6674
6690
|
borderRadius: "0.4rem",
|
|
6675
6691
|
border: `1px solid ${o.semantic.color.border.transparent}`,
|
|
6676
6692
|
fontSize: "1.4rem",
|
|
6677
|
-
fontWeight:
|
|
6693
|
+
fontWeight: o.core.font.fontWeight.normal,
|
|
6678
6694
|
fontStyle: "normal",
|
|
6679
6695
|
padding: "0.1rem",
|
|
6680
6696
|
gap: "0.2rem",
|
|
@@ -6866,7 +6882,7 @@ const Yt = {
|
|
|
6866
6882
|
borderColor: o.semantic.color.border.secondary400
|
|
6867
6883
|
}, qn = {
|
|
6868
6884
|
fontSize: o.core.font.fontSize.s14,
|
|
6869
|
-
fontWeight:
|
|
6885
|
+
fontWeight: o.core.font.fontWeight.normal,
|
|
6870
6886
|
fontFamily: o.core.font.fontFamily.regular,
|
|
6871
6887
|
focusOutline: `1px dashed ${o.semantic.color.border.primary300}`,
|
|
6872
6888
|
dayCell: {
|
|
@@ -6930,7 +6946,7 @@ const Yt = {
|
|
|
6930
6946
|
}
|
|
6931
6947
|
}, Yn = {
|
|
6932
6948
|
shadow: o.core.shadow.shadow500,
|
|
6933
|
-
bgColor: o.semantic.color.background.
|
|
6949
|
+
bgColor: o.semantic.color.background.neutral0,
|
|
6934
6950
|
sidePadding: "3.2rem",
|
|
6935
6951
|
width: "60rem",
|
|
6936
6952
|
borderRadius: "0.8rem",
|
|
@@ -6952,7 +6968,7 @@ const Yt = {
|
|
|
6952
6968
|
buttonsGap: "1.6rem"
|
|
6953
6969
|
},
|
|
6954
6970
|
overlay: {
|
|
6955
|
-
bgColor:
|
|
6971
|
+
bgColor: K(o.semantic.color.background.secondary0, 0.8)
|
|
6956
6972
|
}
|
|
6957
6973
|
}, Un = {
|
|
6958
6974
|
chipList: {
|
|
@@ -7043,7 +7059,7 @@ const Yt = {
|
|
|
7043
7059
|
},
|
|
7044
7060
|
disabled: {
|
|
7045
7061
|
bgColor: "transparent",
|
|
7046
|
-
textColor: o.semantic.color.text.
|
|
7062
|
+
textColor: o.semantic.color.text.neutral400
|
|
7047
7063
|
}
|
|
7048
7064
|
},
|
|
7049
7065
|
borderRadius: "0.4rem"
|
|
@@ -7053,7 +7069,7 @@ const Yt = {
|
|
|
7053
7069
|
gap: "0.5rem",
|
|
7054
7070
|
fontFamily: o.core.font.fontFamily.regular,
|
|
7055
7071
|
fontSize: "1.4rem",
|
|
7056
|
-
fontWeight:
|
|
7072
|
+
fontWeight: o.core.font.fontWeight.normal,
|
|
7057
7073
|
resetButton: {
|
|
7058
7074
|
iconColor: o.semantic.color.icon.secondary950
|
|
7059
7075
|
},
|
|
@@ -7081,8 +7097,8 @@ const Yt = {
|
|
|
7081
7097
|
states: {
|
|
7082
7098
|
normal: {
|
|
7083
7099
|
bgColor: o.semantic.color.background.secondary0,
|
|
7084
|
-
textColor: o.semantic.color.text.
|
|
7085
|
-
borderColor: o.semantic.color.border.
|
|
7100
|
+
textColor: o.semantic.color.text.secondary950,
|
|
7101
|
+
borderColor: o.semantic.color.border.secondary400
|
|
7086
7102
|
},
|
|
7087
7103
|
focused: {
|
|
7088
7104
|
borderColor: o.semantic.color.border.primary400
|
|
@@ -7129,7 +7145,8 @@ const Yt = {
|
|
|
7129
7145
|
}
|
|
7130
7146
|
},
|
|
7131
7147
|
password: {
|
|
7132
|
-
padding: "0 0.5rem 0 1rem"
|
|
7148
|
+
padding: "0 0.5rem 0 1rem",
|
|
7149
|
+
fontSize: "200%"
|
|
7133
7150
|
},
|
|
7134
7151
|
additionalText: {
|
|
7135
7152
|
margin: "0.4rem 0 0 0",
|
|
@@ -7166,14 +7183,14 @@ const Yt = {
|
|
|
7166
7183
|
block: {
|
|
7167
7184
|
sizes: {
|
|
7168
7185
|
regular: {
|
|
7169
|
-
fontWeight:
|
|
7186
|
+
fontWeight: o.core.font.fontWeight.semiBold,
|
|
7170
7187
|
padding: "0.4rem 0.6rem",
|
|
7171
7188
|
borderRadius: "0.4rem",
|
|
7172
7189
|
minHeight: "2.8rem",
|
|
7173
7190
|
gap: "0"
|
|
7174
7191
|
},
|
|
7175
7192
|
small: {
|
|
7176
|
-
fontWeight:
|
|
7193
|
+
fontWeight: o.core.font.fontWeight.semiBold,
|
|
7177
7194
|
padding: "0.2rem 0.4rem",
|
|
7178
7195
|
borderRadius: "0.4rem",
|
|
7179
7196
|
minHeight: "2.2rem",
|
|
@@ -7202,13 +7219,13 @@ const Yt = {
|
|
|
7202
7219
|
inline: {
|
|
7203
7220
|
sizes: {
|
|
7204
7221
|
regular: {
|
|
7205
|
-
fontWeight:
|
|
7222
|
+
fontWeight: o.core.font.fontWeight.semiBold,
|
|
7206
7223
|
padding: "0",
|
|
7207
7224
|
borderRadius: "0",
|
|
7208
7225
|
gap: "0"
|
|
7209
7226
|
},
|
|
7210
7227
|
small: {
|
|
7211
|
-
fontWeight:
|
|
7228
|
+
fontWeight: o.core.font.fontWeight.semiBold,
|
|
7212
7229
|
padding: "0",
|
|
7213
7230
|
borderRadius: "0",
|
|
7214
7231
|
gap: "0"
|
|
@@ -7235,18 +7252,18 @@ const Yt = {
|
|
|
7235
7252
|
gap: "0.5rem",
|
|
7236
7253
|
variants: {
|
|
7237
7254
|
regular: {
|
|
7238
|
-
bgColor: o.semantic.color.icon.
|
|
7239
|
-
color: o.semantic.color.icon.
|
|
7255
|
+
bgColor: o.semantic.color.icon.primary50,
|
|
7256
|
+
color: o.semantic.color.icon.primary400,
|
|
7240
7257
|
textColor: o.semantic.color.icon.secondary950
|
|
7241
7258
|
},
|
|
7242
7259
|
pending: {
|
|
7243
|
-
bgColor: o.semantic.color.icon.
|
|
7244
|
-
color: o.semantic.color.icon.
|
|
7260
|
+
bgColor: o.semantic.color.icon.attention100,
|
|
7261
|
+
color: o.semantic.color.icon.attention500,
|
|
7245
7262
|
textColor: o.semantic.color.icon.secondary950
|
|
7246
7263
|
},
|
|
7247
7264
|
inverse: {
|
|
7248
|
-
bgColor: o.semantic.color.icon.secondary0,
|
|
7249
|
-
color: o.semantic.color.icon.
|
|
7265
|
+
bgColor: K(o.semantic.color.icon.secondary0, 0.2),
|
|
7266
|
+
color: o.semantic.color.icon.secondary0,
|
|
7250
7267
|
textColor: o.semantic.color.icon.secondary0
|
|
7251
7268
|
}
|
|
7252
7269
|
}
|
|
@@ -7274,11 +7291,11 @@ const Yt = {
|
|
|
7274
7291
|
variants: {
|
|
7275
7292
|
header: {
|
|
7276
7293
|
textColor: o.semantic.color.text.secondary950,
|
|
7277
|
-
fontWeight:
|
|
7294
|
+
fontWeight: o.core.font.fontWeight.semiBold
|
|
7278
7295
|
},
|
|
7279
7296
|
sub: {
|
|
7280
7297
|
textColor: o.semantic.color.text.secondary700,
|
|
7281
|
-
fontWeight:
|
|
7298
|
+
fontWeight: o.core.font.fontWeight.semiBold
|
|
7282
7299
|
}
|
|
7283
7300
|
}
|
|
7284
7301
|
},
|
|
@@ -7354,7 +7371,7 @@ const Yt = {
|
|
|
7354
7371
|
buttonsGap: "0.8rem"
|
|
7355
7372
|
},
|
|
7356
7373
|
overlay: {
|
|
7357
|
-
bgColor:
|
|
7374
|
+
bgColor: K(o.semantic.color.background.secondary0, 0.8)
|
|
7358
7375
|
}
|
|
7359
7376
|
}, tc = {
|
|
7360
7377
|
iconColor: o.semantic.color.icon.secondary600
|
|
@@ -7424,7 +7441,8 @@ const Yt = {
|
|
|
7424
7441
|
S: "2.0rem",
|
|
7425
7442
|
M: "3.2rem",
|
|
7426
7443
|
L: "4.4rem"
|
|
7427
|
-
}
|
|
7444
|
+
},
|
|
7445
|
+
fontWeight: o.core.font.fontWeight.bold
|
|
7428
7446
|
}, ic = {
|
|
7429
7447
|
borderRadius: "1px",
|
|
7430
7448
|
textPosition: {
|
|
@@ -7604,7 +7622,7 @@ const Yt = {
|
|
|
7604
7622
|
gap: "0.6rem",
|
|
7605
7623
|
fontFamily: o.core.font.fontFamily.regular,
|
|
7606
7624
|
fontSize: "1.4rem",
|
|
7607
|
-
fontWeight:
|
|
7625
|
+
fontWeight: o.core.font.fontWeight.normal,
|
|
7608
7626
|
borderWidth: "1px",
|
|
7609
7627
|
borderRadius: "0.4rem",
|
|
7610
7628
|
indicator: {
|
|
@@ -8172,7 +8190,7 @@ const Yt = {
|
|
|
8172
8190
|
}
|
|
8173
8191
|
}
|
|
8174
8192
|
}
|
|
8175
|
-
},
|
|
8193
|
+
}, fc = {
|
|
8176
8194
|
width: "3.2rem",
|
|
8177
8195
|
height: "1.8rem",
|
|
8178
8196
|
padding: "0.2rem",
|
|
@@ -8224,7 +8242,7 @@ const Yt = {
|
|
|
8224
8242
|
}
|
|
8225
8243
|
}
|
|
8226
8244
|
}
|
|
8227
|
-
},
|
|
8245
|
+
}, hc = {
|
|
8228
8246
|
table: {
|
|
8229
8247
|
tableContainer: {
|
|
8230
8248
|
backgroundColor: o.semantic.color.background.secondary0,
|
|
@@ -8308,7 +8326,7 @@ const Yt = {
|
|
|
8308
8326
|
},
|
|
8309
8327
|
active: {
|
|
8310
8328
|
textColor: o.semantic.color.text.secondary950,
|
|
8311
|
-
fontWeight:
|
|
8329
|
+
fontWeight: o.core.font.fontWeight.semiBold,
|
|
8312
8330
|
letterSpacing: "0"
|
|
8313
8331
|
},
|
|
8314
8332
|
disabled: {
|
|
@@ -8356,7 +8374,7 @@ const Yt = {
|
|
|
8356
8374
|
textColor: o.semantic.color.text.secondary950,
|
|
8357
8375
|
bgColor: o.semantic.color.background.secondary100,
|
|
8358
8376
|
borderColor: o.semantic.color.border.secondary300,
|
|
8359
|
-
fontWeight:
|
|
8377
|
+
fontWeight: o.core.font.fontWeight.semiBold,
|
|
8360
8378
|
letterSpacing: "0"
|
|
8361
8379
|
},
|
|
8362
8380
|
disabled: {
|
|
@@ -8397,7 +8415,7 @@ const Yt = {
|
|
|
8397
8415
|
},
|
|
8398
8416
|
disabled: {
|
|
8399
8417
|
bgColor: O,
|
|
8400
|
-
textColor: o.semantic.color.text.
|
|
8418
|
+
textColor: o.semantic.color.text.neutral400
|
|
8401
8419
|
}
|
|
8402
8420
|
}
|
|
8403
8421
|
},
|
|
@@ -8419,7 +8437,7 @@ const Yt = {
|
|
|
8419
8437
|
},
|
|
8420
8438
|
disabled: {
|
|
8421
8439
|
bgColor: O,
|
|
8422
|
-
textColor: o.semantic.color.text.
|
|
8440
|
+
textColor: o.semantic.color.text.neutral400
|
|
8423
8441
|
}
|
|
8424
8442
|
}
|
|
8425
8443
|
},
|
|
@@ -8441,7 +8459,7 @@ const Yt = {
|
|
|
8441
8459
|
},
|
|
8442
8460
|
disabled: {
|
|
8443
8461
|
bgColor: O,
|
|
8444
|
-
textColor: o.semantic.color.text.
|
|
8462
|
+
textColor: o.semantic.color.text.neutral400
|
|
8445
8463
|
}
|
|
8446
8464
|
}
|
|
8447
8465
|
},
|
|
@@ -8463,7 +8481,7 @@ const Yt = {
|
|
|
8463
8481
|
},
|
|
8464
8482
|
disabled: {
|
|
8465
8483
|
bgColor: O,
|
|
8466
|
-
textColor: o.semantic.color.text.
|
|
8484
|
+
textColor: o.semantic.color.text.neutral400
|
|
8467
8485
|
}
|
|
8468
8486
|
}
|
|
8469
8487
|
}
|
|
@@ -8477,10 +8495,10 @@ const Yt = {
|
|
|
8477
8495
|
toaster: { gap: "2rem" }
|
|
8478
8496
|
}, So = "transparent", Sc = {
|
|
8479
8497
|
gap: "0.4rem",
|
|
8480
|
-
height: "
|
|
8498
|
+
height: "3rem",
|
|
8481
8499
|
lineHeight: "1.9rem",
|
|
8482
|
-
padding: "0.4rem
|
|
8483
|
-
borderRadius: "0.
|
|
8500
|
+
padding: "0.4rem",
|
|
8501
|
+
borderRadius: "0.5rem",
|
|
8484
8502
|
toggleStates: {
|
|
8485
8503
|
on: {
|
|
8486
8504
|
normal: {
|
|
@@ -8497,7 +8515,7 @@ const Yt = {
|
|
|
8497
8515
|
},
|
|
8498
8516
|
disabled: {
|
|
8499
8517
|
bgColor: So,
|
|
8500
|
-
textColor: o.semantic.color.text.
|
|
8518
|
+
textColor: o.semantic.color.text.neutral400
|
|
8501
8519
|
}
|
|
8502
8520
|
},
|
|
8503
8521
|
off: {
|
|
@@ -8515,7 +8533,7 @@ const Yt = {
|
|
|
8515
8533
|
},
|
|
8516
8534
|
disabled: {
|
|
8517
8535
|
bgColor: So,
|
|
8518
|
-
textColor: o.semantic.color.text.
|
|
8536
|
+
textColor: o.semantic.color.text.neutral400
|
|
8519
8537
|
}
|
|
8520
8538
|
}
|
|
8521
8539
|
},
|
|
@@ -8565,32 +8583,32 @@ const Yt = {
|
|
|
8565
8583
|
sizes: {
|
|
8566
8584
|
XXL: {
|
|
8567
8585
|
fontSize: o.core.font.fontSize.s40,
|
|
8568
|
-
fontWeight:
|
|
8586
|
+
fontWeight: o.core.font.fontWeight.bold
|
|
8569
8587
|
},
|
|
8570
8588
|
XL: {
|
|
8571
8589
|
fontSize: o.core.font.fontSize.s28,
|
|
8572
|
-
fontWeight:
|
|
8590
|
+
fontWeight: o.core.font.fontWeight.bold
|
|
8573
8591
|
},
|
|
8574
8592
|
L: {
|
|
8575
8593
|
fontSize: o.core.font.fontSize.s20,
|
|
8576
|
-
fontWeight:
|
|
8594
|
+
fontWeight: o.core.font.fontWeight.semiBold
|
|
8577
8595
|
},
|
|
8578
8596
|
M: {
|
|
8579
8597
|
fontSize: o.core.font.fontSize.s18,
|
|
8580
|
-
fontWeight:
|
|
8598
|
+
fontWeight: o.core.font.fontWeight.semiBold
|
|
8581
8599
|
},
|
|
8582
8600
|
S: {
|
|
8583
8601
|
fontSize: o.core.font.fontSize.s16,
|
|
8584
|
-
fontWeight:
|
|
8602
|
+
fontWeight: o.core.font.fontWeight.semiBold
|
|
8585
8603
|
},
|
|
8586
8604
|
XS: {
|
|
8587
8605
|
fontSize: o.core.font.fontSize.s14,
|
|
8588
|
-
fontWeight:
|
|
8606
|
+
fontWeight: o.core.font.fontWeight.semiBold
|
|
8589
8607
|
}
|
|
8590
8608
|
},
|
|
8591
8609
|
fontWeight: {
|
|
8592
|
-
bold:
|
|
8593
|
-
semiBold:
|
|
8610
|
+
bold: o.core.font.fontWeight.bold,
|
|
8611
|
+
semiBold: o.core.font.fontWeight.semiBold
|
|
8594
8612
|
}
|
|
8595
8613
|
},
|
|
8596
8614
|
body: {
|
|
@@ -8604,7 +8622,7 @@ const Yt = {
|
|
|
8604
8622
|
},
|
|
8605
8623
|
fontWeight: {
|
|
8606
8624
|
regular: "inherit",
|
|
8607
|
-
semiBold:
|
|
8625
|
+
semiBold: o.core.font.fontWeight.semiBold,
|
|
8608
8626
|
italic: "inherit"
|
|
8609
8627
|
},
|
|
8610
8628
|
fontStyle: {
|
|
@@ -8621,8 +8639,8 @@ const Yt = {
|
|
|
8621
8639
|
S: o.core.font.fontSize.s10
|
|
8622
8640
|
},
|
|
8623
8641
|
fontWeight: {
|
|
8624
|
-
regular:
|
|
8625
|
-
semiBold:
|
|
8642
|
+
regular: o.core.font.fontWeight.normal,
|
|
8643
|
+
semiBold: o.core.font.fontWeight.semiBold
|
|
8626
8644
|
}
|
|
8627
8645
|
}
|
|
8628
8646
|
}, Wc = {
|
|
@@ -8683,7 +8701,7 @@ const Yt = {
|
|
|
8683
8701
|
fontFamily: o.core.font.fontFamily.regular,
|
|
8684
8702
|
fontSize: o.core.font.fontSize.s14,
|
|
8685
8703
|
lineHeight: "1.4"
|
|
8686
|
-
},
|
|
8704
|
+
}, Bc = {
|
|
8687
8705
|
width: "0.5rem",
|
|
8688
8706
|
height: "0.5rem",
|
|
8689
8707
|
bgColor: o.semantic.color.background.secondary100,
|
|
@@ -8696,7 +8714,7 @@ const Yt = {
|
|
|
8696
8714
|
name: "light-2",
|
|
8697
8715
|
...o,
|
|
8698
8716
|
components: {
|
|
8699
|
-
actionIconButton:
|
|
8717
|
+
actionIconButton: In,
|
|
8700
8718
|
appBar: Tn,
|
|
8701
8719
|
appSelectionMenu: Mn,
|
|
8702
8720
|
autoComplete: En,
|
|
@@ -8736,8 +8754,8 @@ const Yt = {
|
|
|
8736
8754
|
sideBar: pc,
|
|
8737
8755
|
skeleton: xc,
|
|
8738
8756
|
stepper: Cc,
|
|
8739
|
-
switchButton:
|
|
8740
|
-
table:
|
|
8757
|
+
switchButton: fc,
|
|
8758
|
+
table: hc,
|
|
8741
8759
|
tableHeading: yc,
|
|
8742
8760
|
tabs: kc,
|
|
8743
8761
|
textButton: vc,
|
|
@@ -8750,7 +8768,7 @@ const Yt = {
|
|
|
8750
8768
|
},
|
|
8751
8769
|
globals: {
|
|
8752
8770
|
body: Pc,
|
|
8753
|
-
scrollbar:
|
|
8771
|
+
scrollbar: Bc
|
|
8754
8772
|
}
|
|
8755
8773
|
}, bo = {
|
|
8756
8774
|
transparent: "#00000000",
|
|
@@ -8928,8 +8946,8 @@ const Yt = {
|
|
|
8928
8946
|
},
|
|
8929
8947
|
fontWeight: {
|
|
8930
8948
|
normal: "400",
|
|
8931
|
-
semiBold: "
|
|
8932
|
-
bold: "
|
|
8949
|
+
semiBold: "500",
|
|
8950
|
+
bold: "600"
|
|
8933
8951
|
}
|
|
8934
8952
|
},
|
|
8935
8953
|
focus: {
|
|
@@ -8938,7 +8956,7 @@ const Yt = {
|
|
|
8938
8956
|
color: bo.primary200
|
|
8939
8957
|
}
|
|
8940
8958
|
}
|
|
8941
|
-
},
|
|
8959
|
+
}, Fc = {
|
|
8942
8960
|
sizes: {
|
|
8943
8961
|
L: {
|
|
8944
8962
|
size: "3rem",
|
|
@@ -8970,8 +8988,8 @@ const Yt = {
|
|
|
8970
8988
|
bgColor: r.semantic.color.background.primary400
|
|
8971
8989
|
},
|
|
8972
8990
|
disabled: {
|
|
8973
|
-
bgColor: r.semantic.color.background.
|
|
8974
|
-
textColor: r.semantic.color.text.
|
|
8991
|
+
bgColor: r.semantic.color.background.secondary800,
|
|
8992
|
+
textColor: r.semantic.color.text.secondary600
|
|
8975
8993
|
}
|
|
8976
8994
|
},
|
|
8977
8995
|
secondary: {
|
|
@@ -8986,15 +9004,15 @@ const Yt = {
|
|
|
8986
9004
|
bgColor: r.semantic.color.background.secondary800
|
|
8987
9005
|
},
|
|
8988
9006
|
disabled: {
|
|
8989
|
-
bgColor: r.semantic.color.background.
|
|
8990
|
-
textColor: r.semantic.color.text.
|
|
9007
|
+
bgColor: r.semantic.color.background.secondary800,
|
|
9008
|
+
textColor: r.semantic.color.text.secondary600
|
|
8991
9009
|
}
|
|
8992
9010
|
}
|
|
8993
9011
|
}
|
|
8994
|
-
},
|
|
9012
|
+
}, Ic = {
|
|
8995
9013
|
height: "7rem",
|
|
8996
9014
|
padding: "1.4rem 1.4rem 1.4rem 2.4rem",
|
|
8997
|
-
separator: `1px solid ${r.semantic.color.border.
|
|
9015
|
+
separator: `1px solid ${r.semantic.color.border.secondary800}`,
|
|
8998
9016
|
boxShadow: `0px 1px 0px 0px ${r.semantic.color.border.secondary800}`,
|
|
8999
9017
|
group: {
|
|
9000
9018
|
gap: "1.6rem"
|
|
@@ -9002,9 +9020,9 @@ const Yt = {
|
|
|
9002
9020
|
variants: {
|
|
9003
9021
|
default: {
|
|
9004
9022
|
bgColor: r.semantic.color.background.secondary950,
|
|
9005
|
-
color: r.semantic.color.background.
|
|
9006
|
-
userNameColor: r.semantic.color.background.
|
|
9007
|
-
accountNameColor: r.semantic.color.background.
|
|
9023
|
+
color: r.semantic.color.background.secondary50,
|
|
9024
|
+
userNameColor: r.semantic.color.background.secondary400,
|
|
9025
|
+
accountNameColor: r.semantic.color.background.secondary50
|
|
9008
9026
|
},
|
|
9009
9027
|
alert: {
|
|
9010
9028
|
bgColor: r.semantic.color.background.danger200,
|
|
@@ -9118,10 +9136,10 @@ const Yt = {
|
|
|
9118
9136
|
iconColor: r.semantic.color.text.attention400
|
|
9119
9137
|
},
|
|
9120
9138
|
disabled: {
|
|
9121
|
-
backgroundColor: r.semantic.color.background.
|
|
9122
|
-
color: r.semantic.color.text.
|
|
9123
|
-
borderColor: r.semantic.color.border.
|
|
9124
|
-
iconColor: r.semantic.color.text.
|
|
9139
|
+
backgroundColor: r.semantic.color.background.secondary950,
|
|
9140
|
+
color: r.semantic.color.text.secondary700,
|
|
9141
|
+
borderColor: r.semantic.color.border.secondary900,
|
|
9142
|
+
iconColor: r.semantic.color.text.secondary700
|
|
9125
9143
|
}
|
|
9126
9144
|
}
|
|
9127
9145
|
}, Hc = {
|
|
@@ -9201,7 +9219,7 @@ const Yt = {
|
|
|
9201
9219
|
lineHeight: "1.64rem"
|
|
9202
9220
|
},
|
|
9203
9221
|
medium: {
|
|
9204
|
-
borderRadius: "0.
|
|
9222
|
+
borderRadius: "0.5rem",
|
|
9205
9223
|
padding: "0.55rem 1.2rem",
|
|
9206
9224
|
height: "3rem",
|
|
9207
9225
|
lineHeight: "1.91rem"
|
|
@@ -9231,9 +9249,9 @@ const Yt = {
|
|
|
9231
9249
|
textColor: r.semantic.color.text.secondary0
|
|
9232
9250
|
},
|
|
9233
9251
|
disabled: {
|
|
9234
|
-
bgColor: r.semantic.color.background.
|
|
9235
|
-
borderColor: r.semantic.color.border.
|
|
9236
|
-
textColor: r.semantic.color.text.
|
|
9252
|
+
bgColor: r.semantic.color.background.secondary800,
|
|
9253
|
+
borderColor: r.semantic.color.border.secondary700,
|
|
9254
|
+
textColor: r.semantic.color.text.secondary600
|
|
9237
9255
|
}
|
|
9238
9256
|
},
|
|
9239
9257
|
destructive: {
|
|
@@ -9253,9 +9271,9 @@ const Yt = {
|
|
|
9253
9271
|
textColor: r.semantic.color.text.secondary0
|
|
9254
9272
|
},
|
|
9255
9273
|
disabled: {
|
|
9256
|
-
bgColor: r.semantic.color.background.
|
|
9257
|
-
borderColor: r.semantic.color.border.
|
|
9258
|
-
textColor: r.semantic.color.text.
|
|
9274
|
+
bgColor: r.semantic.color.background.secondary800,
|
|
9275
|
+
borderColor: r.semantic.color.border.secondary700,
|
|
9276
|
+
textColor: r.semantic.color.text.secondary600
|
|
9259
9277
|
}
|
|
9260
9278
|
},
|
|
9261
9279
|
"secondary-fill": {
|
|
@@ -9275,9 +9293,9 @@ const Yt = {
|
|
|
9275
9293
|
textColor: r.semantic.color.text.secondary0
|
|
9276
9294
|
},
|
|
9277
9295
|
disabled: {
|
|
9278
|
-
bgColor: r.semantic.color.background.
|
|
9279
|
-
borderColor: r.semantic.color.border.
|
|
9280
|
-
textColor: r.semantic.color.text.
|
|
9296
|
+
bgColor: r.semantic.color.background.secondary800,
|
|
9297
|
+
borderColor: r.semantic.color.border.secondary700,
|
|
9298
|
+
textColor: r.semantic.color.text.secondary600
|
|
9281
9299
|
}
|
|
9282
9300
|
},
|
|
9283
9301
|
"secondary-invert": {
|
|
@@ -9297,9 +9315,9 @@ const Yt = {
|
|
|
9297
9315
|
textColor: r.semantic.color.text.secondary0
|
|
9298
9316
|
},
|
|
9299
9317
|
disabled: {
|
|
9300
|
-
bgColor: r.semantic.color.background.
|
|
9301
|
-
borderColor: r.semantic.color.border.
|
|
9302
|
-
textColor: r.semantic.color.text.
|
|
9318
|
+
bgColor: r.semantic.color.background.secondary800,
|
|
9319
|
+
borderColor: r.semantic.color.border.secondary700,
|
|
9320
|
+
textColor: r.semantic.color.text.secondary600
|
|
9303
9321
|
}
|
|
9304
9322
|
},
|
|
9305
9323
|
"secondary-ghost": {
|
|
@@ -9320,8 +9338,8 @@ const Yt = {
|
|
|
9320
9338
|
},
|
|
9321
9339
|
disabled: {
|
|
9322
9340
|
bgColor: "transparent",
|
|
9323
|
-
borderColor: r.semantic.color.border.
|
|
9324
|
-
textColor: r.semantic.color.text.
|
|
9341
|
+
borderColor: r.semantic.color.border.secondary700,
|
|
9342
|
+
textColor: r.semantic.color.text.secondary600
|
|
9325
9343
|
}
|
|
9326
9344
|
}
|
|
9327
9345
|
}
|
|
@@ -9329,7 +9347,7 @@ const Yt = {
|
|
|
9329
9347
|
borderRadius: "0.4rem",
|
|
9330
9348
|
border: `1px solid ${r.semantic.color.border.transparent}`,
|
|
9331
9349
|
fontSize: "1.4rem",
|
|
9332
|
-
fontWeight:
|
|
9350
|
+
fontWeight: r.core.font.fontWeight.normal,
|
|
9333
9351
|
fontStyle: "normal",
|
|
9334
9352
|
padding: "0.1rem",
|
|
9335
9353
|
gap: "0.2rem",
|
|
@@ -9395,7 +9413,7 @@ const Yt = {
|
|
|
9395
9413
|
disabled: {
|
|
9396
9414
|
bgColor: r.semantic.color.background.secondary800,
|
|
9397
9415
|
iconColor: r.semantic.color.icon.secondary600,
|
|
9398
|
-
textColor: r.semantic.color.text.
|
|
9416
|
+
textColor: r.semantic.color.text.secondary700
|
|
9399
9417
|
}
|
|
9400
9418
|
},
|
|
9401
9419
|
off: {
|
|
@@ -9407,7 +9425,7 @@ const Yt = {
|
|
|
9407
9425
|
disabled: {
|
|
9408
9426
|
bgColor: r.semantic.color.background.secondary900,
|
|
9409
9427
|
borderColor: r.semantic.color.border.secondary800,
|
|
9410
|
-
textColor: r.semantic.color.text.
|
|
9428
|
+
textColor: r.semantic.color.text.secondary700
|
|
9411
9429
|
}
|
|
9412
9430
|
}
|
|
9413
9431
|
},
|
|
@@ -9419,9 +9437,9 @@ const Yt = {
|
|
|
9419
9437
|
textColor: r.semantic.color.text.danger400
|
|
9420
9438
|
},
|
|
9421
9439
|
disabled: {
|
|
9422
|
-
bgColor: r.semantic.color.background.
|
|
9423
|
-
iconColor: r.semantic.color.icon.
|
|
9424
|
-
textColor: r.semantic.color.text.
|
|
9440
|
+
bgColor: r.semantic.color.background.danger500,
|
|
9441
|
+
iconColor: r.semantic.color.icon.secondary0,
|
|
9442
|
+
textColor: r.semantic.color.text.danger400
|
|
9425
9443
|
}
|
|
9426
9444
|
},
|
|
9427
9445
|
off: {
|
|
@@ -9432,8 +9450,8 @@ const Yt = {
|
|
|
9432
9450
|
},
|
|
9433
9451
|
disabled: {
|
|
9434
9452
|
bgColor: r.semantic.color.background.secondary900,
|
|
9435
|
-
borderColor: r.semantic.color.border.
|
|
9436
|
-
textColor: r.semantic.color.text.
|
|
9453
|
+
borderColor: r.semantic.color.border.danger500,
|
|
9454
|
+
textColor: r.semantic.color.text.danger400
|
|
9437
9455
|
}
|
|
9438
9456
|
}
|
|
9439
9457
|
}
|
|
@@ -9460,8 +9478,8 @@ const Yt = {
|
|
|
9460
9478
|
textColor: r.semantic.color.text.secondary50
|
|
9461
9479
|
},
|
|
9462
9480
|
disabled: {
|
|
9463
|
-
bgColor: r.semantic.color.background.
|
|
9464
|
-
textColor: r.semantic.color.text.
|
|
9481
|
+
bgColor: r.semantic.color.background.secondary900,
|
|
9482
|
+
textColor: r.semantic.color.text.secondary700
|
|
9465
9483
|
}
|
|
9466
9484
|
},
|
|
9467
9485
|
flat: {
|
|
@@ -9470,8 +9488,8 @@ const Yt = {
|
|
|
9470
9488
|
textColor: r.semantic.color.text.secondary50
|
|
9471
9489
|
},
|
|
9472
9490
|
disabled: {
|
|
9473
|
-
bgColor: r.semantic.color.background.
|
|
9474
|
-
textColor: r.semantic.color.text.
|
|
9491
|
+
bgColor: r.semantic.color.background.secondary900,
|
|
9492
|
+
textColor: r.semantic.color.text.secondary700
|
|
9475
9493
|
}
|
|
9476
9494
|
}
|
|
9477
9495
|
},
|
|
@@ -9521,7 +9539,7 @@ const Yt = {
|
|
|
9521
9539
|
borderColor: r.semantic.color.border.secondary700
|
|
9522
9540
|
}, Gc = {
|
|
9523
9541
|
fontSize: r.core.font.fontSize.s14,
|
|
9524
|
-
fontWeight:
|
|
9542
|
+
fontWeight: r.core.font.fontWeight.normal,
|
|
9525
9543
|
fontFamily: r.core.font.fontFamily.regular,
|
|
9526
9544
|
focusOutline: `1px dashed ${r.semantic.color.border.primary300}`,
|
|
9527
9545
|
dayCell: {
|
|
@@ -9607,7 +9625,7 @@ const Yt = {
|
|
|
9607
9625
|
buttonsGap: "1.6rem"
|
|
9608
9626
|
},
|
|
9609
9627
|
overlay: {
|
|
9610
|
-
bgColor:
|
|
9628
|
+
bgColor: K(r.semantic.color.background.secondary990, 0.8)
|
|
9611
9629
|
}
|
|
9612
9630
|
}, Yc = {
|
|
9613
9631
|
chipList: {
|
|
@@ -9698,7 +9716,7 @@ const Yt = {
|
|
|
9698
9716
|
},
|
|
9699
9717
|
disabled: {
|
|
9700
9718
|
bgColor: "transparent",
|
|
9701
|
-
textColor: r.semantic.color.text.
|
|
9719
|
+
textColor: r.semantic.color.text.secondary600
|
|
9702
9720
|
}
|
|
9703
9721
|
},
|
|
9704
9722
|
borderRadius: "0.4rem"
|
|
@@ -9708,7 +9726,7 @@ const Yt = {
|
|
|
9708
9726
|
gap: "0.5rem",
|
|
9709
9727
|
fontFamily: r.core.font.fontFamily.regular,
|
|
9710
9728
|
fontSize: "1.4rem",
|
|
9711
|
-
fontWeight:
|
|
9729
|
+
fontWeight: r.core.font.fontWeight.normal,
|
|
9712
9730
|
resetButton: {
|
|
9713
9731
|
iconColor: r.semantic.color.icon.secondary200
|
|
9714
9732
|
},
|
|
@@ -9718,7 +9736,7 @@ const Yt = {
|
|
|
9718
9736
|
successIconColor: r.semantic.color.icon.success500
|
|
9719
9737
|
},
|
|
9720
9738
|
placeholder: {
|
|
9721
|
-
textColor: r.semantic.color.text.
|
|
9739
|
+
textColor: r.semantic.color.text.secondary600
|
|
9722
9740
|
},
|
|
9723
9741
|
loader: {
|
|
9724
9742
|
size: "20px"
|
|
@@ -9749,13 +9767,13 @@ const Yt = {
|
|
|
9749
9767
|
borderColor: r.semantic.color.border.danger400
|
|
9750
9768
|
},
|
|
9751
9769
|
disabled: {
|
|
9752
|
-
bgColor: r.semantic.color.background.
|
|
9753
|
-
textColor: r.semantic.color.text.
|
|
9770
|
+
bgColor: r.semantic.color.background.secondary900,
|
|
9771
|
+
textColor: r.semantic.color.text.secondary600,
|
|
9754
9772
|
borderColor: r.semantic.color.border.secondary800
|
|
9755
9773
|
},
|
|
9756
9774
|
readonly: {
|
|
9757
9775
|
bgColor: "transparent",
|
|
9758
|
-
textColor: r.semantic.color.text.
|
|
9776
|
+
textColor: r.semantic.color.text.secondary200,
|
|
9759
9777
|
borderColor: "transparent"
|
|
9760
9778
|
}
|
|
9761
9779
|
},
|
|
@@ -9784,7 +9802,8 @@ const Yt = {
|
|
|
9784
9802
|
}
|
|
9785
9803
|
},
|
|
9786
9804
|
password: {
|
|
9787
|
-
padding: "0 0.5rem 0 1rem"
|
|
9805
|
+
padding: "0 0.5rem 0 1rem",
|
|
9806
|
+
fontSize: "200%"
|
|
9788
9807
|
},
|
|
9789
9808
|
additionalText: {
|
|
9790
9809
|
margin: "0.4rem 0 0 0",
|
|
@@ -9821,14 +9840,14 @@ const Yt = {
|
|
|
9821
9840
|
block: {
|
|
9822
9841
|
sizes: {
|
|
9823
9842
|
regular: {
|
|
9824
|
-
fontWeight:
|
|
9843
|
+
fontWeight: r.core.font.fontWeight.semiBold,
|
|
9825
9844
|
padding: "0.4rem 0.6rem",
|
|
9826
9845
|
borderRadius: "0.4rem",
|
|
9827
9846
|
minHeight: "2.8rem",
|
|
9828
9847
|
gap: "0"
|
|
9829
9848
|
},
|
|
9830
9849
|
small: {
|
|
9831
|
-
fontWeight:
|
|
9850
|
+
fontWeight: r.core.font.fontWeight.semiBold,
|
|
9832
9851
|
padding: "0.2rem 0.4rem",
|
|
9833
9852
|
borderRadius: "0.4rem",
|
|
9834
9853
|
minHeight: "2.2rem",
|
|
@@ -9857,13 +9876,13 @@ const Yt = {
|
|
|
9857
9876
|
inline: {
|
|
9858
9877
|
sizes: {
|
|
9859
9878
|
regular: {
|
|
9860
|
-
fontWeight:
|
|
9879
|
+
fontWeight: r.core.font.fontWeight.semiBold,
|
|
9861
9880
|
padding: "0",
|
|
9862
9881
|
borderRadius: "0",
|
|
9863
9882
|
gap: "0"
|
|
9864
9883
|
},
|
|
9865
9884
|
small: {
|
|
9866
|
-
fontWeight:
|
|
9885
|
+
fontWeight: r.core.font.fontWeight.semiBold,
|
|
9867
9886
|
padding: "0",
|
|
9868
9887
|
borderRadius: "0",
|
|
9869
9888
|
gap: "0"
|
|
@@ -9890,19 +9909,19 @@ const Yt = {
|
|
|
9890
9909
|
gap: "0.5rem",
|
|
9891
9910
|
variants: {
|
|
9892
9911
|
regular: {
|
|
9893
|
-
bgColor: r.semantic.color.icon.
|
|
9894
|
-
color: r.semantic.color.icon.
|
|
9912
|
+
bgColor: r.semantic.color.icon.primary900,
|
|
9913
|
+
color: r.semantic.color.icon.primary300,
|
|
9895
9914
|
textColor: r.semantic.color.icon.secondary200
|
|
9896
9915
|
},
|
|
9897
9916
|
pending: {
|
|
9898
|
-
bgColor: r.semantic.color.icon.
|
|
9899
|
-
color: r.semantic.color.icon.
|
|
9917
|
+
bgColor: r.semantic.color.icon.attention900,
|
|
9918
|
+
color: r.semantic.color.icon.attention500,
|
|
9900
9919
|
textColor: r.semantic.color.icon.secondary200
|
|
9901
9920
|
},
|
|
9902
9921
|
inverse: {
|
|
9903
|
-
bgColor: r.semantic.color.icon.
|
|
9904
|
-
color: r.semantic.color.icon.
|
|
9905
|
-
textColor: r.semantic.color.icon.
|
|
9922
|
+
bgColor: K(r.semantic.color.icon.secondary0, 0.2),
|
|
9923
|
+
color: r.semantic.color.icon.secondary950,
|
|
9924
|
+
textColor: r.semantic.color.icon.secondary950
|
|
9906
9925
|
}
|
|
9907
9926
|
}
|
|
9908
9927
|
}, o0 = {
|
|
@@ -9929,11 +9948,11 @@ const Yt = {
|
|
|
9929
9948
|
variants: {
|
|
9930
9949
|
header: {
|
|
9931
9950
|
textColor: r.semantic.color.text.secondary400,
|
|
9932
|
-
fontWeight:
|
|
9951
|
+
fontWeight: r.core.font.fontWeight.semiBold
|
|
9933
9952
|
},
|
|
9934
9953
|
sub: {
|
|
9935
9954
|
textColor: r.semantic.color.text.secondary200,
|
|
9936
|
-
fontWeight:
|
|
9955
|
+
fontWeight: r.core.font.fontWeight.semiBold
|
|
9937
9956
|
}
|
|
9938
9957
|
}
|
|
9939
9958
|
},
|
|
@@ -10009,7 +10028,7 @@ const Yt = {
|
|
|
10009
10028
|
buttonsGap: "0.8rem"
|
|
10010
10029
|
},
|
|
10011
10030
|
overlay: {
|
|
10012
|
-
bgColor:
|
|
10031
|
+
bgColor: K(r.semantic.color.background.secondary990, 0.8)
|
|
10013
10032
|
}
|
|
10014
10033
|
}, e0 = {
|
|
10015
10034
|
iconColor: r.semantic.color.icon.secondary500
|
|
@@ -10079,7 +10098,8 @@ const Yt = {
|
|
|
10079
10098
|
S: "2.0rem",
|
|
10080
10099
|
M: "3.2rem",
|
|
10081
10100
|
L: "4.4rem"
|
|
10082
|
-
}
|
|
10101
|
+
},
|
|
10102
|
+
fontWeight: r.core.font.fontWeight.bold
|
|
10083
10103
|
}, c0 = {
|
|
10084
10104
|
borderRadius: "1px",
|
|
10085
10105
|
textPosition: {
|
|
@@ -10165,7 +10185,7 @@ const Yt = {
|
|
|
10165
10185
|
disabled: {
|
|
10166
10186
|
bgColor: r.semantic.color.background.secondary800,
|
|
10167
10187
|
iconColor: r.semantic.color.icon.secondary600,
|
|
10168
|
-
textColor: r.semantic.color.text.
|
|
10188
|
+
textColor: r.semantic.color.text.secondary700
|
|
10169
10189
|
}
|
|
10170
10190
|
},
|
|
10171
10191
|
off: {
|
|
@@ -10177,7 +10197,7 @@ const Yt = {
|
|
|
10177
10197
|
disabled: {
|
|
10178
10198
|
bgColor: "transparent",
|
|
10179
10199
|
borderColor: r.semantic.color.border.secondary800,
|
|
10180
|
-
textColor: r.semantic.color.text.
|
|
10200
|
+
textColor: r.semantic.color.text.secondary700
|
|
10181
10201
|
}
|
|
10182
10202
|
}
|
|
10183
10203
|
}
|
|
@@ -10259,7 +10279,7 @@ const Yt = {
|
|
|
10259
10279
|
gap: "0.6rem",
|
|
10260
10280
|
fontFamily: r.core.font.fontFamily.regular,
|
|
10261
10281
|
fontSize: "1.4rem",
|
|
10262
|
-
fontWeight:
|
|
10282
|
+
fontWeight: r.core.font.fontWeight.normal,
|
|
10263
10283
|
borderWidth: "1px",
|
|
10264
10284
|
borderRadius: "0.4rem",
|
|
10265
10285
|
indicator: {
|
|
@@ -10301,9 +10321,10 @@ const Yt = {
|
|
|
10301
10321
|
borderColor: r.semantic.color.border.danger400
|
|
10302
10322
|
},
|
|
10303
10323
|
disabled: {
|
|
10304
|
-
bgColor: r.semantic.color.background.
|
|
10324
|
+
bgColor: r.semantic.color.background.secondary900,
|
|
10305
10325
|
borderColor: r.semantic.color.border.secondary800,
|
|
10306
|
-
textColor: r.semantic.color.text.
|
|
10326
|
+
textColor: r.semantic.color.text.secondary600,
|
|
10327
|
+
iconOpacity: "0.4"
|
|
10307
10328
|
},
|
|
10308
10329
|
readonly: {
|
|
10309
10330
|
bgColor: "transparent",
|
|
@@ -10348,7 +10369,7 @@ const Yt = {
|
|
|
10348
10369
|
textColor: r.semantic.color.text.primary400
|
|
10349
10370
|
},
|
|
10350
10371
|
disabled: {
|
|
10351
|
-
textColor: r.semantic.color.text.
|
|
10372
|
+
textColor: r.semantic.color.text.secondary600
|
|
10352
10373
|
}
|
|
10353
10374
|
}
|
|
10354
10375
|
}
|
|
@@ -10879,7 +10900,7 @@ const Yt = {
|
|
|
10879
10900
|
}
|
|
10880
10901
|
}
|
|
10881
10902
|
}
|
|
10882
|
-
},
|
|
10903
|
+
}, f0 = {
|
|
10883
10904
|
table: {
|
|
10884
10905
|
tableContainer: {
|
|
10885
10906
|
backgroundColor: r.semantic.color.background.secondary950,
|
|
@@ -10923,7 +10944,7 @@ const Yt = {
|
|
|
10923
10944
|
textColor: r.semantic.color.text.secondary200
|
|
10924
10945
|
}
|
|
10925
10946
|
}
|
|
10926
|
-
},
|
|
10947
|
+
}, h0 = {
|
|
10927
10948
|
bgColor: "transparent",
|
|
10928
10949
|
padding: "1rem 1.6rem",
|
|
10929
10950
|
gap: "3.2rem",
|
|
@@ -10939,7 +10960,7 @@ const Yt = {
|
|
|
10939
10960
|
borderColor: "transparent"
|
|
10940
10961
|
},
|
|
10941
10962
|
hover: {
|
|
10942
|
-
borderColor: r.semantic.color.border.
|
|
10963
|
+
borderColor: r.semantic.color.border.secondary700
|
|
10943
10964
|
}
|
|
10944
10965
|
}
|
|
10945
10966
|
},
|
|
@@ -10966,7 +10987,7 @@ const Yt = {
|
|
|
10966
10987
|
},
|
|
10967
10988
|
active: {
|
|
10968
10989
|
textColor: r.semantic.color.text.secondary50,
|
|
10969
|
-
fontWeight:
|
|
10990
|
+
fontWeight: r.core.font.fontWeight.semiBold,
|
|
10970
10991
|
letterSpacing: "0"
|
|
10971
10992
|
},
|
|
10972
10993
|
disabled: {
|
|
@@ -11014,7 +11035,7 @@ const Yt = {
|
|
|
11014
11035
|
textColor: r.semantic.color.text.secondary950,
|
|
11015
11036
|
bgColor: r.semantic.color.background.secondary200,
|
|
11016
11037
|
borderColor: r.semantic.color.border.secondary200,
|
|
11017
|
-
fontWeight:
|
|
11038
|
+
fontWeight: r.core.font.fontWeight.semiBold,
|
|
11018
11039
|
letterSpacing: "0"
|
|
11019
11040
|
},
|
|
11020
11041
|
disabled: {
|
|
@@ -11055,7 +11076,7 @@ const Yt = {
|
|
|
11055
11076
|
},
|
|
11056
11077
|
disabled: {
|
|
11057
11078
|
bgColor: T,
|
|
11058
|
-
textColor: r.semantic.color.text.
|
|
11079
|
+
textColor: r.semantic.color.text.secondary600
|
|
11059
11080
|
}
|
|
11060
11081
|
}
|
|
11061
11082
|
},
|
|
@@ -11077,7 +11098,7 @@ const Yt = {
|
|
|
11077
11098
|
},
|
|
11078
11099
|
disabled: {
|
|
11079
11100
|
bgColor: T,
|
|
11080
|
-
textColor: r.semantic.color.text.
|
|
11101
|
+
textColor: r.semantic.color.text.secondary600
|
|
11081
11102
|
}
|
|
11082
11103
|
}
|
|
11083
11104
|
},
|
|
@@ -11099,7 +11120,7 @@ const Yt = {
|
|
|
11099
11120
|
},
|
|
11100
11121
|
disabled: {
|
|
11101
11122
|
bgColor: T,
|
|
11102
|
-
textColor: r.semantic.color.text.
|
|
11123
|
+
textColor: r.semantic.color.text.secondary600
|
|
11103
11124
|
}
|
|
11104
11125
|
}
|
|
11105
11126
|
},
|
|
@@ -11121,7 +11142,7 @@ const Yt = {
|
|
|
11121
11142
|
},
|
|
11122
11143
|
disabled: {
|
|
11123
11144
|
bgColor: T,
|
|
11124
|
-
textColor: r.semantic.color.text.
|
|
11145
|
+
textColor: r.semantic.color.text.secondary600
|
|
11125
11146
|
}
|
|
11126
11147
|
}
|
|
11127
11148
|
}
|
|
@@ -11135,10 +11156,10 @@ const Yt = {
|
|
|
11135
11156
|
toaster: { gap: "2rem" }
|
|
11136
11157
|
}, $o = "transparent", w0 = {
|
|
11137
11158
|
gap: "0.4rem",
|
|
11138
|
-
height: "
|
|
11159
|
+
height: "3rem",
|
|
11139
11160
|
lineHeight: "1.9rem",
|
|
11140
|
-
padding: "0.4rem
|
|
11141
|
-
borderRadius: "0.
|
|
11161
|
+
padding: "0.4rem",
|
|
11162
|
+
borderRadius: "0.5rem",
|
|
11142
11163
|
toggleStates: {
|
|
11143
11164
|
on: {
|
|
11144
11165
|
normal: {
|
|
@@ -11155,7 +11176,7 @@ const Yt = {
|
|
|
11155
11176
|
},
|
|
11156
11177
|
disabled: {
|
|
11157
11178
|
bgColor: $o,
|
|
11158
|
-
textColor: r.semantic.color.text.
|
|
11179
|
+
textColor: r.semantic.color.text.secondary600
|
|
11159
11180
|
}
|
|
11160
11181
|
},
|
|
11161
11182
|
off: {
|
|
@@ -11173,7 +11194,7 @@ const Yt = {
|
|
|
11173
11194
|
},
|
|
11174
11195
|
disabled: {
|
|
11175
11196
|
bgColor: $o,
|
|
11176
|
-
textColor: r.semantic.color.text.
|
|
11197
|
+
textColor: r.semantic.color.text.secondary600
|
|
11177
11198
|
}
|
|
11178
11199
|
}
|
|
11179
11200
|
},
|
|
@@ -11223,32 +11244,32 @@ const Yt = {
|
|
|
11223
11244
|
sizes: {
|
|
11224
11245
|
XXL: {
|
|
11225
11246
|
fontSize: r.core.font.fontSize.s40,
|
|
11226
|
-
fontWeight:
|
|
11247
|
+
fontWeight: r.core.font.fontWeight.bold
|
|
11227
11248
|
},
|
|
11228
11249
|
XL: {
|
|
11229
11250
|
fontSize: r.core.font.fontSize.s28,
|
|
11230
|
-
fontWeight:
|
|
11251
|
+
fontWeight: r.core.font.fontWeight.bold
|
|
11231
11252
|
},
|
|
11232
11253
|
L: {
|
|
11233
11254
|
fontSize: r.core.font.fontSize.s20,
|
|
11234
|
-
fontWeight:
|
|
11255
|
+
fontWeight: r.core.font.fontWeight.semiBold
|
|
11235
11256
|
},
|
|
11236
11257
|
M: {
|
|
11237
11258
|
fontSize: r.core.font.fontSize.s18,
|
|
11238
|
-
fontWeight:
|
|
11259
|
+
fontWeight: r.core.font.fontWeight.semiBold
|
|
11239
11260
|
},
|
|
11240
11261
|
S: {
|
|
11241
11262
|
fontSize: r.core.font.fontSize.s16,
|
|
11242
|
-
fontWeight:
|
|
11263
|
+
fontWeight: r.core.font.fontWeight.semiBold
|
|
11243
11264
|
},
|
|
11244
11265
|
XS: {
|
|
11245
11266
|
fontSize: r.core.font.fontSize.s14,
|
|
11246
|
-
fontWeight:
|
|
11267
|
+
fontWeight: r.core.font.fontWeight.semiBold
|
|
11247
11268
|
}
|
|
11248
11269
|
},
|
|
11249
11270
|
fontWeight: {
|
|
11250
|
-
bold:
|
|
11251
|
-
semiBold:
|
|
11271
|
+
bold: r.core.font.fontWeight.bold,
|
|
11272
|
+
semiBold: r.core.font.fontWeight.semiBold
|
|
11252
11273
|
}
|
|
11253
11274
|
},
|
|
11254
11275
|
body: {
|
|
@@ -11262,7 +11283,7 @@ const Yt = {
|
|
|
11262
11283
|
},
|
|
11263
11284
|
fontWeight: {
|
|
11264
11285
|
regular: "inherit",
|
|
11265
|
-
semiBold:
|
|
11286
|
+
semiBold: r.core.font.fontWeight.semiBold,
|
|
11266
11287
|
italic: "inherit"
|
|
11267
11288
|
},
|
|
11268
11289
|
fontStyle: {
|
|
@@ -11279,8 +11300,8 @@ const Yt = {
|
|
|
11279
11300
|
S: r.core.font.fontSize.s10
|
|
11280
11301
|
},
|
|
11281
11302
|
fontWeight: {
|
|
11282
|
-
regular:
|
|
11283
|
-
semiBold:
|
|
11303
|
+
regular: r.core.font.fontWeight.normal,
|
|
11304
|
+
semiBold: r.core.font.fontWeight.semiBold
|
|
11284
11305
|
}
|
|
11285
11306
|
}
|
|
11286
11307
|
}, z0 = {
|
|
@@ -11354,8 +11375,8 @@ const Yt = {
|
|
|
11354
11375
|
name: "dark-2",
|
|
11355
11376
|
...r,
|
|
11356
11377
|
components: {
|
|
11357
|
-
actionIconButton:
|
|
11358
|
-
appBar:
|
|
11378
|
+
actionIconButton: Fc,
|
|
11379
|
+
appBar: Ic,
|
|
11359
11380
|
appSelectionMenu: Tc,
|
|
11360
11381
|
autoComplete: Mc,
|
|
11361
11382
|
badge: Ec,
|
|
@@ -11395,8 +11416,8 @@ const Yt = {
|
|
|
11395
11416
|
skeleton: p0,
|
|
11396
11417
|
stepper: x0,
|
|
11397
11418
|
switchButton: C0,
|
|
11398
|
-
table:
|
|
11399
|
-
tableHeading:
|
|
11419
|
+
table: f0,
|
|
11420
|
+
tableHeading: h0,
|
|
11400
11421
|
tabs: y0,
|
|
11401
11422
|
textButton: k0,
|
|
11402
11423
|
toast: v0,
|
|
@@ -11410,37 +11431,37 @@ const Yt = {
|
|
|
11410
11431
|
body: W0,
|
|
11411
11432
|
scrollbar: P0
|
|
11412
11433
|
}
|
|
11413
|
-
},
|
|
11434
|
+
}, to = () => Me() || Fa, N0 = (a) => Wo`
|
|
11414
11435
|
&:focus-visible {
|
|
11415
|
-
outline: ${() =>
|
|
11416
|
-
outline-offset: ${() => a ||
|
|
11436
|
+
outline: ${() => to().core.focus.size} solid ${() => to().core.focus.color};
|
|
11437
|
+
outline-offset: ${() => a || to().core.focus.margin};
|
|
11417
11438
|
}
|
|
11418
11439
|
`, X0 = (a) => Wo`
|
|
11419
|
-
outline: ${() =>
|
|
11420
|
-
outline-offset: ${() => a ||
|
|
11421
|
-
`, No = () => window.matchMedia("(prefers-color-scheme: dark)"),
|
|
11440
|
+
outline: ${() => to().core.focus.size} solid ${() => to().core.focus.color};
|
|
11441
|
+
outline-offset: ${() => a || to().core.focus.margin};
|
|
11442
|
+
`, No = () => window.matchMedia("(prefers-color-scheme: dark)"), B0 = (a) => {
|
|
11422
11443
|
const n = Ur(a);
|
|
11423
11444
|
n.current = a;
|
|
11424
|
-
const i = Ro((
|
|
11425
|
-
const { systemThemeName:
|
|
11426
|
-
return !
|
|
11445
|
+
const i = Ro((f) => {
|
|
11446
|
+
const { systemThemeName: h, lightThemeName: v, darkThemeName: g } = n.current;
|
|
11447
|
+
return !h || h !== f ? f : No().matches ? g : v;
|
|
11427
11448
|
}, []), [d, l] = kr(""), [m, u] = kr(
|
|
11428
11449
|
""
|
|
11429
11450
|
/* () => resolveTheme(selectedTheme) */
|
|
11430
|
-
), C = !!d, x = Ro((
|
|
11431
|
-
const { initialThemeName:
|
|
11432
|
-
if (!
|
|
11451
|
+
), C = !!d, x = Ro((f) => {
|
|
11452
|
+
const { initialThemeName: h, lightThemeName: v, darkThemeName: g, systemThemeName: $ } = n.current, G = [v, g, $].filter(Boolean);
|
|
11453
|
+
if (!f || !G.includes(f)) {
|
|
11433
11454
|
if (C)
|
|
11434
11455
|
return !1;
|
|
11435
|
-
|
|
11456
|
+
f = G.includes(h) && h || (No().matches ? g : v);
|
|
11436
11457
|
}
|
|
11437
|
-
return l(
|
|
11458
|
+
return l(f), u(i(f)), !0;
|
|
11438
11459
|
}, [C, i]);
|
|
11439
11460
|
return Xo(() => {
|
|
11440
|
-
const { systemThemeName:
|
|
11441
|
-
if (!
|
|
11461
|
+
const { systemThemeName: f, lightThemeName: h, darkThemeName: v } = n.current;
|
|
11462
|
+
if (!f || f !== d)
|
|
11442
11463
|
return;
|
|
11443
|
-
const g = No(), $ = (G) => u(G.matches ? v :
|
|
11464
|
+
const g = No(), $ = (G) => u(G.matches ? v : h);
|
|
11444
11465
|
return g.addEventListener("change", $), () => g == null ? void 0 : g.removeEventListener("change", $);
|
|
11445
11466
|
}, [d]), {
|
|
11446
11467
|
setSelectedTheme: x,
|
|
@@ -11448,7 +11469,7 @@ const Yt = {
|
|
|
11448
11469
|
currentTheme: m
|
|
11449
11470
|
// resolved theme (dark/light - selected or current system)
|
|
11450
11471
|
};
|
|
11451
|
-
},
|
|
11472
|
+
}, F0 = ({ value: a, ...n }) => {
|
|
11452
11473
|
const i = Ur(n);
|
|
11453
11474
|
i.current = n;
|
|
11454
11475
|
const d = Ro(() => localStorage.getItem(i.current.storageKey) || "", []), l = Ro((m) => {
|
|
@@ -11480,15 +11501,15 @@ var Vo = { exports: {} }, go = {};
|
|
|
11480
11501
|
* LICENSE file in the root directory of this source tree.
|
|
11481
11502
|
*/
|
|
11482
11503
|
var Gr;
|
|
11483
|
-
function
|
|
11504
|
+
function I0() {
|
|
11484
11505
|
if (Gr) return go;
|
|
11485
11506
|
Gr = 1;
|
|
11486
11507
|
var a = Yr, n = Symbol.for("react.element"), i = Symbol.for("react.fragment"), d = 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 };
|
|
11487
|
-
function u(C, x,
|
|
11488
|
-
var
|
|
11489
|
-
|
|
11490
|
-
for (
|
|
11491
|
-
if (C && C.defaultProps) for (
|
|
11508
|
+
function u(C, x, f) {
|
|
11509
|
+
var h, v = {}, g = null, $ = null;
|
|
11510
|
+
f !== void 0 && (g = "" + f), x.key !== void 0 && (g = "" + x.key), x.ref !== void 0 && ($ = x.ref);
|
|
11511
|
+
for (h in x) d.call(x, h) && !m.hasOwnProperty(h) && (v[h] = x[h]);
|
|
11512
|
+
if (C && C.defaultProps) for (h in x = C.defaultProps, x) v[h] === void 0 && (v[h] = x[h]);
|
|
11492
11513
|
return { $$typeof: n, type: C, key: g, ref: $, props: v, _owner: l.current };
|
|
11493
11514
|
}
|
|
11494
11515
|
return go.Fragment = i, go.jsx = u, go.jsxs = u, go;
|
|
@@ -11506,11 +11527,11 @@ var uo = {};
|
|
|
11506
11527
|
var qr;
|
|
11507
11528
|
function T0() {
|
|
11508
11529
|
return qr || (qr = 1, process.env.NODE_ENV !== "production" && function() {
|
|
11509
|
-
var a = Yr, n = Symbol.for("react.element"), i = Symbol.for("react.portal"), d = Symbol.for("react.fragment"), l = Symbol.for("react.strict_mode"), m = Symbol.for("react.profiler"), u = Symbol.for("react.provider"), C = Symbol.for("react.context"), x = Symbol.for("react.forward_ref"),
|
|
11530
|
+
var a = Yr, n = Symbol.for("react.element"), i = Symbol.for("react.portal"), d = Symbol.for("react.fragment"), l = Symbol.for("react.strict_mode"), m = Symbol.for("react.profiler"), u = Symbol.for("react.provider"), C = Symbol.for("react.context"), x = Symbol.for("react.forward_ref"), f = Symbol.for("react.suspense"), h = Symbol.for("react.suspense_list"), v = Symbol.for("react.memo"), g = Symbol.for("react.lazy"), $ = Symbol.for("react.offscreen"), G = Symbol.iterator, Bo = "@@iterator";
|
|
11510
11531
|
function Co(c) {
|
|
11511
11532
|
if (c === null || typeof c != "object")
|
|
11512
11533
|
return null;
|
|
11513
|
-
var s = G && c[G] || c[
|
|
11534
|
+
var s = G && c[G] || c[Bo];
|
|
11514
11535
|
return typeof s == "function" ? s : null;
|
|
11515
11536
|
}
|
|
11516
11537
|
var _ = a.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
|
|
@@ -11534,7 +11555,7 @@ function T0() {
|
|
|
11534
11555
|
var oe = !1, re = !1, ee = !1, te = !1, ae = !1, Jo;
|
|
11535
11556
|
Jo = Symbol.for("react.module.reference");
|
|
11536
11557
|
function ne(c) {
|
|
11537
|
-
return !!(typeof c == "string" || typeof c == "function" || c === d || c === m || ae || c === l || c ===
|
|
11558
|
+
return !!(typeof c == "string" || typeof c == "function" || c === d || c === m || ae || c === l || c === f || c === h || te || c === $ || oe || re || ee || typeof c == "object" && c !== null && (c.$$typeof === g || c.$$typeof === v || c.$$typeof === u || c.$$typeof === C || c.$$typeof === x || // This needs to include all possible module reference object
|
|
11538
11559
|
// types supported by any Flight configuration anywhere since
|
|
11539
11560
|
// we don't know which Flight build this will end up being used
|
|
11540
11561
|
// with.
|
|
@@ -11566,9 +11587,9 @@ function T0() {
|
|
|
11566
11587
|
return "Profiler";
|
|
11567
11588
|
case l:
|
|
11568
11589
|
return "StrictMode";
|
|
11569
|
-
case h:
|
|
11570
|
-
return "Suspense";
|
|
11571
11590
|
case f:
|
|
11591
|
+
return "Suspense";
|
|
11592
|
+
case h:
|
|
11572
11593
|
return "SuspenseList";
|
|
11573
11594
|
}
|
|
11574
11595
|
if (typeof c == "object")
|
|
@@ -11595,7 +11616,7 @@ function T0() {
|
|
|
11595
11616
|
}
|
|
11596
11617
|
return null;
|
|
11597
11618
|
}
|
|
11598
|
-
var
|
|
11619
|
+
var J = Object.assign, no = 0, Qo, or, rr, er, tr, ar, nr;
|
|
11599
11620
|
function cr() {
|
|
11600
11621
|
}
|
|
11601
11622
|
cr.__reactDisabledLog = !0;
|
|
@@ -11631,25 +11652,25 @@ function T0() {
|
|
|
11631
11652
|
writable: !0
|
|
11632
11653
|
};
|
|
11633
11654
|
Object.defineProperties(console, {
|
|
11634
|
-
log:
|
|
11655
|
+
log: J({}, c, {
|
|
11635
11656
|
value: Qo
|
|
11636
11657
|
}),
|
|
11637
|
-
info:
|
|
11658
|
+
info: J({}, c, {
|
|
11638
11659
|
value: or
|
|
11639
11660
|
}),
|
|
11640
|
-
warn:
|
|
11661
|
+
warn: J({}, c, {
|
|
11641
11662
|
value: rr
|
|
11642
11663
|
}),
|
|
11643
|
-
error:
|
|
11664
|
+
error: J({}, c, {
|
|
11644
11665
|
value: er
|
|
11645
11666
|
}),
|
|
11646
|
-
group:
|
|
11667
|
+
group: J({}, c, {
|
|
11647
11668
|
value: tr
|
|
11648
11669
|
}),
|
|
11649
|
-
groupCollapsed:
|
|
11670
|
+
groupCollapsed: J({}, c, {
|
|
11650
11671
|
value: ar
|
|
11651
11672
|
}),
|
|
11652
|
-
groupEnd:
|
|
11673
|
+
groupEnd: J({}, c, {
|
|
11653
11674
|
value: nr
|
|
11654
11675
|
})
|
|
11655
11676
|
});
|
|
@@ -11657,30 +11678,30 @@ function T0() {
|
|
|
11657
11678
|
no < 0 && W("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
|
|
11658
11679
|
}
|
|
11659
11680
|
}
|
|
11660
|
-
var
|
|
11661
|
-
function
|
|
11681
|
+
var Fo = _.ReactCurrentDispatcher, Io;
|
|
11682
|
+
function fo(c, s, b) {
|
|
11662
11683
|
{
|
|
11663
|
-
if (
|
|
11684
|
+
if (Io === void 0)
|
|
11664
11685
|
try {
|
|
11665
11686
|
throw Error();
|
|
11666
11687
|
} catch (w) {
|
|
11667
11688
|
var p = w.stack.trim().match(/\n( *(at )?)/);
|
|
11668
|
-
|
|
11689
|
+
Io = p && p[1] || "";
|
|
11669
11690
|
}
|
|
11670
11691
|
return `
|
|
11671
|
-
` +
|
|
11692
|
+
` + Io + c;
|
|
11672
11693
|
}
|
|
11673
11694
|
}
|
|
11674
|
-
var To = !1,
|
|
11695
|
+
var To = !1, ho;
|
|
11675
11696
|
{
|
|
11676
11697
|
var se = typeof WeakMap == "function" ? WeakMap : Map;
|
|
11677
|
-
|
|
11698
|
+
ho = new se();
|
|
11678
11699
|
}
|
|
11679
11700
|
function ir(c, s) {
|
|
11680
11701
|
if (!c || To)
|
|
11681
11702
|
return "";
|
|
11682
11703
|
{
|
|
11683
|
-
var b =
|
|
11704
|
+
var b = ho.get(c);
|
|
11684
11705
|
if (b !== void 0)
|
|
11685
11706
|
return b;
|
|
11686
11707
|
}
|
|
@@ -11689,7 +11710,7 @@ function T0() {
|
|
|
11689
11710
|
var w = Error.prepareStackTrace;
|
|
11690
11711
|
Error.prepareStackTrace = void 0;
|
|
11691
11712
|
var S;
|
|
11692
|
-
S =
|
|
11713
|
+
S = Fo.current, Fo.current = null, ie();
|
|
11693
11714
|
try {
|
|
11694
11715
|
if (s) {
|
|
11695
11716
|
var k = function() {
|
|
@@ -11702,29 +11723,29 @@ function T0() {
|
|
|
11702
11723
|
}), typeof Reflect == "object" && Reflect.construct) {
|
|
11703
11724
|
try {
|
|
11704
11725
|
Reflect.construct(k, []);
|
|
11705
|
-
} catch (
|
|
11706
|
-
p =
|
|
11726
|
+
} catch (I) {
|
|
11727
|
+
p = I;
|
|
11707
11728
|
}
|
|
11708
11729
|
Reflect.construct(c, [], k);
|
|
11709
11730
|
} else {
|
|
11710
11731
|
try {
|
|
11711
11732
|
k.call();
|
|
11712
|
-
} catch (
|
|
11713
|
-
p =
|
|
11733
|
+
} catch (I) {
|
|
11734
|
+
p = I;
|
|
11714
11735
|
}
|
|
11715
11736
|
c.call(k.prototype);
|
|
11716
11737
|
}
|
|
11717
11738
|
} else {
|
|
11718
11739
|
try {
|
|
11719
11740
|
throw Error();
|
|
11720
|
-
} catch (
|
|
11721
|
-
p =
|
|
11741
|
+
} catch (I) {
|
|
11742
|
+
p = I;
|
|
11722
11743
|
}
|
|
11723
11744
|
c();
|
|
11724
11745
|
}
|
|
11725
|
-
} catch (
|
|
11726
|
-
if (
|
|
11727
|
-
for (var y =
|
|
11746
|
+
} catch (I) {
|
|
11747
|
+
if (I && p && typeof I.stack == "string") {
|
|
11748
|
+
for (var y = I.stack.split(`
|
|
11728
11749
|
`), P = p.stack.split(`
|
|
11729
11750
|
`), R = y.length - 1, z = P.length - 1; R >= 1 && z >= 0 && y[R] !== P[z]; )
|
|
11730
11751
|
z--;
|
|
@@ -11735,17 +11756,17 @@ function T0() {
|
|
|
11735
11756
|
if (R--, z--, z < 0 || y[R] !== P[z]) {
|
|
11736
11757
|
var H = `
|
|
11737
11758
|
` + y[R].replace(" at new ", " at ");
|
|
11738
|
-
return c.displayName && H.includes("<anonymous>") && (H = H.replace("<anonymous>", c.displayName)), typeof c == "function" &&
|
|
11759
|
+
return c.displayName && H.includes("<anonymous>") && (H = H.replace("<anonymous>", c.displayName)), typeof c == "function" && ho.set(c, H), H;
|
|
11739
11760
|
}
|
|
11740
11761
|
while (R >= 1 && z >= 0);
|
|
11741
11762
|
break;
|
|
11742
11763
|
}
|
|
11743
11764
|
}
|
|
11744
11765
|
} finally {
|
|
11745
|
-
To = !1,
|
|
11766
|
+
To = !1, Fo.current = S, le(), Error.prepareStackTrace = w;
|
|
11746
11767
|
}
|
|
11747
|
-
var
|
|
11748
|
-
return typeof c == "function" &&
|
|
11768
|
+
var eo = c ? c.displayName || c.name : "", Z = eo ? fo(eo) : "";
|
|
11769
|
+
return typeof c == "function" && ho.set(c, Z), Z;
|
|
11749
11770
|
}
|
|
11750
11771
|
function de(c, s, b) {
|
|
11751
11772
|
return ir(c, !1);
|
|
@@ -11760,12 +11781,12 @@ function T0() {
|
|
|
11760
11781
|
if (typeof c == "function")
|
|
11761
11782
|
return ir(c, me(c));
|
|
11762
11783
|
if (typeof c == "string")
|
|
11763
|
-
return
|
|
11784
|
+
return fo(c);
|
|
11764
11785
|
switch (c) {
|
|
11765
|
-
case h:
|
|
11766
|
-
return ho("Suspense");
|
|
11767
11786
|
case f:
|
|
11768
|
-
return
|
|
11787
|
+
return fo("Suspense");
|
|
11788
|
+
case h:
|
|
11789
|
+
return fo("SuspenseList");
|
|
11769
11790
|
}
|
|
11770
11791
|
if (typeof c == "object")
|
|
11771
11792
|
switch (c.$$typeof) {
|
|
@@ -11849,7 +11870,7 @@ function T0() {
|
|
|
11849
11870
|
}
|
|
11850
11871
|
return c.ref !== void 0;
|
|
11851
11872
|
}
|
|
11852
|
-
function
|
|
11873
|
+
function fe(c) {
|
|
11853
11874
|
if (co.call(c, "key")) {
|
|
11854
11875
|
var s = Object.getOwnPropertyDescriptor(c, "key").get;
|
|
11855
11876
|
if (s && s.isReactWarning)
|
|
@@ -11857,7 +11878,7 @@ function T0() {
|
|
|
11857
11878
|
}
|
|
11858
11879
|
return c.key !== void 0;
|
|
11859
11880
|
}
|
|
11860
|
-
function
|
|
11881
|
+
function he(c, s) {
|
|
11861
11882
|
if (typeof c.ref == "string" && io.current && s && io.current.stateNode !== s) {
|
|
11862
11883
|
var b = L(io.current.type);
|
|
11863
11884
|
Eo[b] || (W('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', L(io.current.type), c.ref), Eo[b] = !0);
|
|
@@ -11917,7 +11938,7 @@ function T0() {
|
|
|
11917
11938
|
function we(c, s, b, p, w) {
|
|
11918
11939
|
{
|
|
11919
11940
|
var S, k = {}, y = null, P = null;
|
|
11920
|
-
b !== void 0 && (mr(b), y = "" + b),
|
|
11941
|
+
b !== void 0 && (mr(b), y = "" + b), fe(s) && (mr(s.key), y = "" + s.key), Ce(s) && (P = s.ref, he(s, w));
|
|
11921
11942
|
for (S in s)
|
|
11922
11943
|
co.call(s, S) && !xe.hasOwnProperty(S) && (k[S] = s[S]);
|
|
11923
11944
|
if (c && c.defaultProps) {
|
|
@@ -11933,7 +11954,7 @@ function T0() {
|
|
|
11933
11954
|
}
|
|
11934
11955
|
}
|
|
11935
11956
|
var Ho = _.ReactCurrentOwner, ur = _.ReactDebugCurrentFrame;
|
|
11936
|
-
function
|
|
11957
|
+
function ro(c) {
|
|
11937
11958
|
if (c) {
|
|
11938
11959
|
var s = c._owner, b = yo(c.type, c._source, s ? s.type : null);
|
|
11939
11960
|
ur.setExtraStackFrame(b);
|
|
@@ -11983,10 +12004,10 @@ Check the top-level render call using <` + b + ">.");
|
|
|
11983
12004
|
return;
|
|
11984
12005
|
xr[b] = !0;
|
|
11985
12006
|
var p = "";
|
|
11986
|
-
c && c._owner && c._owner !== Ho.current && (p = " It was passed a child from " + L(c._owner.type) + "."),
|
|
12007
|
+
c && c._owner && c._owner !== Ho.current && (p = " It was passed a child from " + L(c._owner.type) + "."), ro(c), W('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', b, p), ro(null);
|
|
11987
12008
|
}
|
|
11988
12009
|
}
|
|
11989
|
-
function
|
|
12010
|
+
function fr(c, s) {
|
|
11990
12011
|
{
|
|
11991
12012
|
if (typeof c != "object")
|
|
11992
12013
|
return;
|
|
@@ -12035,14 +12056,14 @@ Check the top-level render call using <` + b + ">.");
|
|
|
12035
12056
|
for (var s = Object.keys(c.props), b = 0; b < s.length; b++) {
|
|
12036
12057
|
var p = s[b];
|
|
12037
12058
|
if (p !== "children" && p !== "key") {
|
|
12038
|
-
|
|
12059
|
+
ro(c), W("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", p), ro(null);
|
|
12039
12060
|
break;
|
|
12040
12061
|
}
|
|
12041
12062
|
}
|
|
12042
|
-
c.ref !== null && (
|
|
12063
|
+
c.ref !== null && (ro(c), W("Invalid attribute `ref` supplied to `React.Fragment`."), ro(null));
|
|
12043
12064
|
}
|
|
12044
12065
|
}
|
|
12045
|
-
var
|
|
12066
|
+
var hr = {};
|
|
12046
12067
|
function yr(c, s, b, p, w, S) {
|
|
12047
12068
|
{
|
|
12048
12069
|
var k = ne(c);
|
|
@@ -12062,26 +12083,26 @@ Check the top-level render call using <` + b + ">.");
|
|
|
12062
12083
|
if (H !== void 0)
|
|
12063
12084
|
if (p)
|
|
12064
12085
|
if (Mo(H)) {
|
|
12065
|
-
for (var
|
|
12066
|
-
|
|
12086
|
+
for (var eo = 0; eo < H.length; eo++)
|
|
12087
|
+
fr(H[eo], c);
|
|
12067
12088
|
Object.freeze && Object.freeze(H);
|
|
12068
12089
|
} else
|
|
12069
12090
|
W("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
|
|
12070
12091
|
else
|
|
12071
|
-
|
|
12092
|
+
fr(H, c);
|
|
12072
12093
|
}
|
|
12073
12094
|
if (co.call(s, "key")) {
|
|
12074
|
-
var
|
|
12095
|
+
var Z = L(c), I = Object.keys(s).filter(function(Te) {
|
|
12075
12096
|
return Te !== "key";
|
|
12076
|
-
}), Lo =
|
|
12077
|
-
if (!
|
|
12078
|
-
var
|
|
12097
|
+
}), Lo = I.length > 0 ? "{key: someKey, " + I.join(": ..., ") + ": ...}" : "{key: someKey}";
|
|
12098
|
+
if (!hr[Z + Lo]) {
|
|
12099
|
+
var Ie = I.length > 0 ? "{" + I.join(": ..., ") + ": ...}" : "{}";
|
|
12079
12100
|
W(`A props object containing a "key" prop is being spread into JSX:
|
|
12080
12101
|
let props = %s;
|
|
12081
12102
|
<%s {...props} />
|
|
12082
12103
|
React keys must be passed directly to JSX without using spread:
|
|
12083
12104
|
let props = %s;
|
|
12084
|
-
<%s key={someKey} {...props} />`, Lo,
|
|
12105
|
+
<%s key={someKey} {...props} />`, Lo, Z, Ie, Z), hr[Z + Lo] = !0;
|
|
12085
12106
|
}
|
|
12086
12107
|
}
|
|
12087
12108
|
return c === d ? ze(z) : Re(z), z;
|
|
@@ -12093,11 +12114,11 @@ React keys must be passed directly to JSX without using spread:
|
|
|
12093
12114
|
function Pe(c, s, b) {
|
|
12094
12115
|
return yr(c, s, b, !1);
|
|
12095
12116
|
}
|
|
12096
|
-
var
|
|
12097
|
-
uo.Fragment = d, uo.jsx =
|
|
12117
|
+
var Be = Pe, Fe = We;
|
|
12118
|
+
uo.Fragment = d, uo.jsx = Be, uo.jsxs = Fe;
|
|
12098
12119
|
}()), uo;
|
|
12099
12120
|
}
|
|
12100
|
-
process.env.NODE_ENV === "production" ? Vo.exports =
|
|
12121
|
+
process.env.NODE_ENV === "production" ? Vo.exports = I0() : Vo.exports = T0();
|
|
12101
12122
|
var Ko = Vo.exports;
|
|
12102
12123
|
const Zr = _e(null), M0 = ({ children: a, selectedTheme: n, setSelectedTheme: i, lightThemeName: d, darkThemeName: l, systemThemeName: m }) => {
|
|
12103
12124
|
const u = Le(() => ({ selectedTheme: n, setSelectedTheme: i, lightThemeName: d, darkThemeName: l, systemThemeName: m }), [n, i, d, l, m]);
|
|
@@ -12108,11 +12129,11 @@ const Zr = _e(null), M0 = ({ children: a, selectedTheme: n, setSelectedTheme: i,
|
|
|
12108
12129
|
throw new Error("Missing ThemeSwitchContext");
|
|
12109
12130
|
return a;
|
|
12110
12131
|
}, q0 = ({ children: a, lightTheme: n, darkTheme: i, systemThemeName: d, initialThemeName: l, storageKey: m }) => {
|
|
12111
|
-
const u = n == null ? void 0 : n.name, C = i == null ? void 0 : i.name, x = { lightThemeName: u, darkThemeName: C, systemThemeName: d }, { selectedTheme:
|
|
12132
|
+
const u = n == null ? void 0 : n.name, C = i == null ? void 0 : i.name, x = { lightThemeName: u, darkThemeName: C, systemThemeName: d }, { selectedTheme: f, setSelectedTheme: h, currentTheme: v } = B0({
|
|
12112
12133
|
initialThemeName: l,
|
|
12113
12134
|
...x
|
|
12114
12135
|
});
|
|
12115
|
-
return
|
|
12136
|
+
return F0({ storageKey: m, value: f, onChange: h }), Ko.jsx(Ee, { theme: v === (i == null ? void 0 : i.name) ? i : n, children: Ko.jsx(M0, { selectedTheme: f, setSelectedTheme: h, ...x, children: a }) });
|
|
12116
12137
|
}, E0 = Wo`
|
|
12117
12138
|
body {
|
|
12118
12139
|
background: ${({ theme: a }) => a.globals.body.bgColor};
|
|
@@ -12170,15 +12191,15 @@ export {
|
|
|
12170
12191
|
M0 as ThemeSwitchProvider,
|
|
12171
12192
|
N0 as getFocusStyle,
|
|
12172
12193
|
X0 as getFocusStyleProperties,
|
|
12173
|
-
|
|
12194
|
+
Fa as theme,
|
|
12174
12195
|
j0 as themeDark,
|
|
12175
12196
|
A0 as themeDark2,
|
|
12176
|
-
|
|
12197
|
+
Fa as themeLight,
|
|
12177
12198
|
D0 as themeLight2,
|
|
12178
|
-
|
|
12179
|
-
|
|
12180
|
-
|
|
12199
|
+
F0 as useStorage,
|
|
12200
|
+
to as useTheme,
|
|
12201
|
+
B0 as useThemeSelector,
|
|
12181
12202
|
G0 as useThemeSwitchContext,
|
|
12182
12203
|
L0 as withContrast,
|
|
12183
|
-
|
|
12204
|
+
K as withOpacity
|
|
12184
12205
|
};
|