@gobolt/genesis 0.1.3 → 0.1.6

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.
Files changed (103) hide show
  1. package/README.md +4 -6
  2. package/dist/{Typography-B2J8CPnt.js → Typography-8BO7aTuQ.js} +7 -6
  3. package/dist/components/Avatar/Avatar.js +4 -3
  4. package/dist/components/Avatar/__tests__/Avatar.test.js +1 -1
  5. package/dist/components/Badge/Badge.js +4 -3
  6. package/dist/components/Badge/__tests__/Badge.test.js +1 -1
  7. package/dist/components/Breadcrumb/Breadcrumb.js +1 -1
  8. package/dist/components/Breadcrumb/__tests__/Breadcrumb.test.js +1 -1
  9. package/dist/components/Button/Button.d.ts +4 -3
  10. package/dist/components/Button/Button.js +28 -24
  11. package/dist/components/Button/IconButton.d.ts +8 -0
  12. package/dist/components/Button/IconButton.js +29 -0
  13. package/dist/components/Button/UtilityButton.d.ts +5 -0
  14. package/dist/components/Button/UtilityButton.js +29 -0
  15. package/dist/components/Button/__stories__/Button.stories.d.ts +0 -4
  16. package/dist/components/Button/__stories__/IconButton.stories.d.ts +8 -0
  17. package/dist/components/Button/__stories__/UtilityButton.stories.d.ts +7 -0
  18. package/dist/components/Button/__tests__/Button.test.js +5 -4
  19. package/dist/components/Button/icon-button-styles.d.ts +12 -0
  20. package/dist/components/Button/icon-button-styles.js +65 -0
  21. package/dist/components/Button/index.d.ts +4 -0
  22. package/dist/components/Button/index.js +6 -2
  23. package/dist/components/Button/styles.d.ts +4 -3
  24. package/dist/components/Button/styles.js +37 -37
  25. package/dist/components/Card/__tests__/Card.test.js +1 -1
  26. package/dist/components/Checkbox/Checkbox.js +4 -3
  27. package/dist/components/Checkbox/__tests__/Checkbox.test.js +1 -1
  28. package/dist/components/Dashboard/__stories__/DashboardLayoutContent.js +4 -3
  29. package/dist/components/Dashboard/__stories__/DashboardLayoutHeader.js +5 -4
  30. package/dist/components/Dashboard/__tests__/Dashboard.test.js +1 -1
  31. package/dist/components/DatePicker/__tests__/DatePicker.test.js +1 -1
  32. package/dist/components/DateRangePicker/__tests__/DateRangePicker.test.js +1 -1
  33. package/dist/components/ErrorBoundary/ErrorBoundary.js +8 -7
  34. package/dist/components/ErrorBoundary/__tests__/ErrorBoundary.test.js +1 -1
  35. package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.js +4 -3
  36. package/dist/components/Form/Form.js +1 -1
  37. package/dist/components/Form/__stories__/FormStory.js +26 -25
  38. package/dist/components/Form/__tests__/form.test.js +2 -2
  39. package/dist/components/Form/index.js +1 -1
  40. package/dist/components/FormBrandon/Form.js +1 -1
  41. package/dist/components/FormBrandon/__stories__/FormStory.js +4 -3
  42. package/dist/components/FormBrandon/__tests__/form.test.js +1 -1
  43. package/dist/components/Input/Input.js +1 -1
  44. package/dist/components/Input/__tests__/Input.test.js +1 -1
  45. package/dist/components/Layout/Content/ResponsiveContent.js +4 -3
  46. package/dist/components/Layout/MainLayout/MainLayout.js +1 -1
  47. package/dist/components/Layout/__tests__/Layout.test.js +1 -1
  48. package/dist/components/Message/Message.js +11 -10
  49. package/dist/components/Message/__tests__/Message.test.js +1 -1
  50. package/dist/components/Notification/Notification.js +4 -3
  51. package/dist/components/Notification/NotificationBadge/__tests__/NotificationBadge.test.js +1 -1
  52. package/dist/components/Notification/__tests__/Notification.test.js +1 -1
  53. package/dist/components/Popover/__tests__/Popover.test.js +1 -1
  54. package/dist/components/Progress/Progress.js +44 -50
  55. package/dist/components/Progress/Progress.util.js +4 -3
  56. package/dist/components/Progress/ProgressText.js +4 -3
  57. package/dist/components/Progress/__tests__/Progress.test.js +1 -1
  58. package/dist/components/Radio/Radio.js +4 -3
  59. package/dist/components/Radio/RadioGroup.js +1 -1
  60. package/dist/components/Radio/__tests__/RadioGroup.test.js +1 -1
  61. package/dist/components/Row/Row.js +1 -1
  62. package/dist/components/Row/RowActions/RowActions.js +4 -3
  63. package/dist/components/Row/RowLabelValue/RowLabelValue.js +5 -4
  64. package/dist/components/Row/__tests__/Row.test.js +1 -1
  65. package/dist/components/SegmentedControls/__tests__/SegmentedControls.test.js +1 -1
  66. package/dist/components/Select/Select.js +1 -1
  67. package/dist/components/Select/__tests__/Select.test.js +1 -1
  68. package/dist/components/Shapes/__tests__/Shapes.test.js +1 -1
  69. package/dist/components/Switch/__stories__/Switch.stories.d.ts +2 -1
  70. package/dist/components/Switch/__tests__/Switch.test.js +1 -1
  71. package/dist/components/Table/__mocks__/table-mocks.js +6 -5
  72. package/dist/components/Table/__tests__/Table.test.js +1 -1
  73. package/dist/components/Tabs/__tests__/Tabs.test.js +1 -1
  74. package/dist/components/Tile/__tests__/Tile.test.js +1 -1
  75. package/dist/components/Toast/Toast.js +3 -2
  76. package/dist/components/Toast/__tests__/Toast.test.js +2 -2
  77. package/dist/components/Toast/index.js +1 -1
  78. package/dist/components/Tooltip/Tooltip.js +4 -3
  79. package/dist/components/Tooltip/__tests__/Tooltip.test.js +1 -1
  80. package/dist/components/Typography/Typography.js +1 -1
  81. package/dist/components/Typography/__tests__/Typography.test.js +2 -2
  82. package/dist/components/Typography/index.js +1 -1
  83. package/dist/components/index.d.ts +4 -0
  84. package/dist/components/index.js +56 -52
  85. package/dist/constants/index.d.ts +2 -0
  86. package/dist/constants/index.js +14 -13
  87. package/dist/genesis/GenesisThemeBreakdown.js +4 -3
  88. package/dist/index.js +61 -57
  89. package/dist/providers/GenesisProvider.js +1 -1
  90. package/dist/providers/ToastProvider.js +5 -4
  91. package/dist/providers/index.js +1 -1
  92. package/dist/providers/useGenesis.js +1 -1
  93. package/dist/{setup-aZdxWCJq.js → setup-rcqlwLGQ.js} +1 -1
  94. package/dist/styles/design-tokens/border-tokens/BorderTokenList.js +4 -3
  95. package/dist/styles/design-tokens/sizing-tokens/SizingTokenList.js +7 -6
  96. package/dist/styles/design-tokens/variables.d.ts +2 -0
  97. package/dist/styles/design-tokens/variables.js +581 -579
  98. package/dist/styles/theme/genesis-theme.d.ts +2 -0
  99. package/dist/styles/theme/genesis-theme.js +306 -247
  100. package/dist/styles/theme/genesis-theme.types.d.ts +7 -0
  101. package/dist/styles/theme/theme-tree/ThemeTree.js +4 -3
  102. package/dist/test/setup.js +2 -2
  103. package/package.json +13 -1
@@ -1,4 +1,4 @@
1
- const k = "#f9d4d5", n = "#f3a9ab", v = "#ee7d81", t = "#e85257", H = "#cf3237", e = "#aa292d", N = "#842023", G = "#5f1719", R = "#3a0e0f", M = "#ffe9dc", a = "#ffd3b8", O = "#ffbc95", r = "#ffa671", F = "#ff904e", i = "#d17640", w = "#a35c32", A = "#754224", V = "#472816", E = "#fff2df", c = "#ffe5be", W = "#ffd79e", s = "#ffca7d", x = "#ffbd5d", S = "#e7a13c", U = "#b27330", _ = "#704819", X = "#442c0f", Y = "#d3efd7", l = "#a7dfaf", K = "#7ad086", u = "#5bc16b", j = "#32863e", g = "#296e33", q = "#205628", J = "#173e1d", Q = "#0e2511", Z = "#deeff3", $ = "#bcdfe7", d = "#9bcfdb", oo = "#79bfcf", m = "#58afc3", f = "#337e8e", no = "#30606b", to = "#214148", eo = "#00282b", ao = "#d7dbfd", C = "#afb8fb", ro = "#8894fa", p = "#6071f8", io = "#384df6", y = "#2e3fca", co = "#24319d", so = "#1a2371", So = "#101645", lo = "#f3e0f3", z = "#e7c1e7", uo = "#daa3da", h = "#ce84ce", go = "#c265c2", L = "#9f539f", mo = "#7c417c", fo = "#592e59", Co = "#361c36", o = "#f4f4f4", I = "#eeeeee", po = "#dfdfdf", yo = "#cbcbcb", zo = "#9a9a9a", b = "#7f7f7f", ho = "#6c6c6c", D = "#3e3e3e", T = "#222222", P = "#101010", B = "#ffffff", Lo = 0, Io = 1, bo = 4, Do = 6, To = 8, Po = 12, Bo = 16, ko = 24, vo = 999, Ho = "'Inter', sans-serif !important", No = 4, Go = 8, Ro = 12, Mo = 16, Oo = 20, Fo = 24, wo = 28, Ao = 32, Vo = 40, Eo = 48, Wo = 52, xo = 56, Uo = 64, _o = 72, Xo = 80, Yo = 96, Ko = 108, jo = 112, qo = 120, Jo = 128, Qo = 136, Zo = 144, $o = 156, on = 172, nn = 200, tn = 256, en = 2, an = 6, rn = 1, cn = 10, sn = "#32863e", Sn = "#296e33", ln = "#d3efd7", un = "#205628", gn = "#a7dfaf", dn = "#337e8e", mn = "#205628", fn = "#a7dfaf", Cn = "#cf3237", pn = "#aa292d", yn = "#f9d4d5", zn = "#f3a9ab", hn = "#842023", Ln = "#f3a9ab", In = "#842023", bn = "#ffbd5d", Dn = "#fff2df", Tn = "#ffe5be", Pn = "#704819", Bn = "#442c0f", kn = "#ffe5be", vn = "#a35c32", Hn = "#384df6", Nn = "#d7dbfd", Gn = "#afb8fb", Rn = "#2e3fca", Mn = "#24319d", On = "#afb8fb", Fn = "#24319d", wn = "#9a9a9a", An = "#f4f4f4", Vn = "#3e3e3e", En = "#eeeeee", Wn = "#222222", xn = "#6c6c6c", Un = "#eeeeee", _n = "#30606b", Xn = "#00282b", Yn = "#214148", Kn = "#ffffff", jn = "#eeeeee", qn = "#9a9a9a", Jn = "#222222", Qn = "#101010", Zn = "#3e3e3e", $n = "#eeeeee", ot = "#ffca7d", nt = "#e7a13c", tt = "#b27330", et = "#222222", at = "#eeeeee", rt = "#ffffff", it = "#deeff3", ct = "#cbcbcb", st = "#cbcbcb", St = "#222222", lt = "#eeeeee", ut = "#30606b", gt = "#00282b", dt = "#9bcfdb", mt = "#79bfcf", ft = "#f4f4f4", Ct = "#ffffff", pt = "#deeff3", yt = "#9bcfdb", zt = "#eeeeee", ht = "#3e3e3e", Lt = "#deeff3", It = "#ffffff", bt = "#f4f4f4", Dt = "#eeeeee", Tt = "#cbcbcb", Pt = "#3e3e3e", Bt = "#222222", kt = "#101010", vt = "#3e3e3e", Ht = "#dfdfdf", Nt = "#3e3e3e", Gt = "#6c6c6c", Rt = "#6c6c6c", Mt = "#222222", Ot = "#3e3e3e", Ft = "#6c6c6c", wt = "#ffffff", At = "#f4f4f4", Vt = "#ffffff", Et = "#ffffff", Wt = "#384df6", xt = "#24319d", Ut = "#9a9a9a", _t = "#f4f4f4", Xt = "#222222", Yt = "#6c6c6c", Kt = "#6c6c6c", jt = "#384df6", qt = "#1a2371", Jt = "#dfdfdf", Qt = "#5bc16b", Zt = "#cf3237", $t = "#6071f8", oe = "#00282b", ne = "#30606b", te = "#ffbd5d", ee = "#b27330", ae = "#58afc3", re = "#5bc16b", ie = "#ffe5be", ce = "#e7c1e7", se = "#ffbd5d", Se = "#384df6", le = "#32863e", ue = "#cf3237", ge = "#3e3e3e", de = "#ffffff", me = "#3e3e3e", fe = "#d17640", Ce = "#ffe9dc", pe = "#d17640", ye = "#296e33", ze = "#d3efd7", he = "#296e33", Le = "#9f539f", Ie = "#f3e0f3", be = "#9f539f", De = "#32863e", Te = "#d3efd7", Pe = "#173e1d", Be = "#d3efd7", ke = "#205628", ve = "#337e8e", He = "#a7dfaf", Ne = "#205628", Ge = "#cf3237", Re = "#f9d4d5", Me = "#5f1719", Oe = "#842023", Fe = "#f9d4d5", we = "#842023", Ae = "#f3a9ab", Ve = "#ffbd5d", Ee = "#704819", We = "#b27330", xe = "#fff2df", Ue = "#ffe5be", _e = "#b27330", Xe = "#ffe5be", Ye = "#384df6", Ke = "#1a2371", je = "#24319d", qe = "#d7dbfd", Je = "#d7dbfd", Qe = "#24319d", Ze = "#afb8fb", $e = "#9a9a9a", oa = "#3e3e3e", na = "#f4f4f4", ta = "#6c6c6c", ea = "#eeeeee", aa = "#6c6c6c", ra = "#eeeeee", ia = "#30606b", ca = "#00282b", sa = "#214148", Sa = "#ffffff", la = "#6c6c6c", ua = "#eeeeee", ga = "#cbcbcb", da = "#ffffff", ma = "#f4f4f4", fa = "#6c6c6c", Ca = "#ffca7d", pa = "#e7a13c", ya = "#b27330", za = "#222222", ha = "#6c6c6c", La = "#222222", Ia = "#00282b", ba = "#3e3e3e", Da = "#3e3e3e", Ta = "#ffffff", Pa = "#6c6c6c", Ba = "#9bcfdb", ka = "#79bfcf", va = "#30606b", Ha = "#00282b", Na = "#f4f4f4", Ga = "#ffffff", Ra = "#deeff3", Ma = "#9bcfdb", Oa = "#6c6c6c", Fa = "#f4f4f4", wa = "#30606b", Aa = "#222222", Va = "#101010", Ea = "#3e3e3e", Wa = "#3e3e3e", xa = "#eeeeee", Ua = "#ffffff", _a = "#f4f4f4", Xa = "#eeeeee", Ya = "#3e3e3e", Ka = "#ffffff", ja = "#eeeeee", qa = "#dfdfdf", Ja = "#ffffff", Qa = "#ffffff", Za = "#dfdfdf", $a = "#222222", or = "#3e3e3e", nr = "#222222", tr = "#ffffff", er = "#384df6", ar = "#24319d", rr = "#9a9a9a", ir = "#f4f4f4", cr = "#f4f4f4", sr = "#9a9a9a", Sr = "#dfdfdf", lr = "#384df6", ur = "#1a2371", gr = "#222222", dr = "#205628", mr = "#842023", fr = "#24319d", Cr = "#00282b", pr = "#30606b", yr = "#ffbd5d", zr = "#b27330", hr = "#58afc3", Lr = "#5bc16b", Ir = "#ffe5be", br = "#e7c1e7", Dr = "#ffbd5d", Tr = "#384df6", Pr = "#32863e", Br = "#cf3237", kr = "#eeeeee", vr = "#101010", Hr = "#f4f4f4", Nr = "#ffd3b8", Gr = "#d17640", Rr = "#ffd3b8", Mr = "#a7dfaf", Or = "#296e33", Fr = "#a7dfaf", wr = "#e7c1e7", Ar = "#9f539f", Vr = "#e7c1e7", Er = 16, Wr = 20, xr = 24, Ur = 32, _r = 40, Xr = 48, Yr = 56, Kr = 48, jr = 72, qr = 108, Jr = 156, Qr = 200, Zr = 0.20000000298023224, $r = 0.33000001311302185, oi = 0.5, ni = 1, ti = 2, ei = 1, ai = 2, ri = 4, ii = 6, ci = { type: "number" }, si = 2, Si = 4, li = 6, ui = 8, gi = 12, di = 16, mi = 24, fi = 999, Ci = 6, pi = 24, yi = 10, zi = 8, hi = 4, Li = 12, Ii = 10, bi = 4, Di = 8, Ti = 10, Pi = 40, Bi = 6, ki = 8, vi = 8, Hi = 11, Ni = 24, Gi = 20, Ri = 8, Mi = 4, Oi = 24, Fi = 16, wi = 16, Ai = 8, Vi = 4, Ei = 4, Wi = 4, xi = 999, Ui = 16, _i = 16, Xi = 8, Yi = 4, Ki = 12, ji = 16, qi = 12, Ji = 8, Qi = 16, Zi = 16, $i = 8, oc = 16, nc = 16, tc = 8, ec = 16, ac = 8, rc = 32, ic = 32, cc = 6, sc = 40, Sc = 40, lc = 16, uc = { type: "number" }, gc = 12, dc = 64, mc = 2, fc = 2, Cc = 48, pc = 24, yc = 20, zc = 999, hc = 16, Lc = 24, Ic = 4, bc = 40, Dc = 48, Tc = 6, Pc = 16, Bc = 6, kc = 8, vc = 4, Hc = 8, Nc = 6, Gc = 4, Rc = 4, Mc = 10, Oc = 32, Fc = 4, wc = 8, Ac = 8, Vc = 7, Ec = 16, Wc = 12, xc = 8, Uc = 4, _c = 24, Xc = 16, Yc = 16, Kc = 8, jc = 4, qc = 4, Jc = 4, Qc = 999, Zc = 12, $c = 12, os = 8, ns = 4, ts = 12, es = 16, as = 12, rs = 8, is = 16, cs = 16, ss = 8, Ss = 12, ls = 16, us = 8, gs = 16, ds = 8, ms = 24, fs = 24, Cs = 6, ps = 24, ys = 24, zs = 8, hs = { type: "number" }, Ls = 8, Is = 48, bs = 2, Ds = 2, Ts = 48, Ps = 24, Bs = 20, ks = 999, vs = 12, Hs = 16, Ns = 4, Gs = 16, Rs = 16, Ms = 6, Os = 24, Fs = 10, ws = 8, As = 4, Vs = 12, Es = 10, Ws = 4, xs = 8, Us = 10, _s = 40, Xs = 6, Ys = 8, Ks = 8, js = 11, qs = 32, Js = 24, Qs = 8, Zs = 4, $s = 32, oS = 24, nS = 16, tS = 8, eS = 4, aS = 4, rS = 4, iS = 999, cS = 16, sS = 16, SS = 8, lS = 4, uS = 12, gS = 16, dS = 12, mS = 8, fS = 16, CS = 16, pS = 8, yS = 16, zS = 16, hS = 8, LS = 16, IS = 8, bS = 32, DS = 32, TS = 6, PS = 40, BS = 40, kS = 24, vS = { type: "number" }, HS = 16, NS = 80, GS = 2, RS = 2, MS = 48, OS = 24, FS = 20, wS = 999, AS = 16, VS = 24, ES = 4, WS = 48, xS = 56, US = 72, _S = 56, XS = 40, YS = 40, KS = 32, jS = 64, qS = 52, JS = 40, QS = 40, ZS = 24, $S = 48, ol = 40, nl = 32, tl = 32, el = 24, al = 16, rl = 16, il = 16, cl = 20, sl = 16, Sl = 14, ll = 14, ul = 12, gl = 12, dl = 12, ml = 14, fl = 12, Cl = 12, pl = 12, yl = 16, zl = 14, hl = 12, Ll = 16, Il = 14, bl = 12, Dl = 96, Tl = 48, Pl = 16, Bl = 16, kl = 20, vl = 16, Hl = 14, Nl = 14, Gl = 12, Rl = 12, Ml = 12, Ol = 14, Fl = 12, wl = 12, Al = 12, Vl = 16, El = 14, Wl = 12, xl = 16, Ul = 14, _l = 12, Xl = 96, Yl = 48, Kl = 16, jl = 16, ql = 20, Jl = 16, Ql = 14, Zl = 12, $l = 14, ou = 16, nu = 18, tu = 20, eu = 14, au = 12, ru = 12, iu = 12, cu = 16, su = 14, Su = 12, lu = 16, uu = 14, gu = 12, du = 96, mu = 48, fu = 16, Cu = {
1
+ const k = "#f9d4d5", n = "#f3a9ab", v = "#ee7d81", t = "#e85257", H = "#cf3237", e = "#aa292d", N = "#842023", G = "#5f1719", R = "#3a0e0f", M = "#ffe9dc", a = "#ffd3b8", O = "#ffbc95", r = "#ffa671", F = "#ff904e", i = "#d17640", w = "#a35c32", A = "#754224", V = "#472816", E = "#fff2df", c = "#ffe5be", W = "#ffd79e", s = "#ffca7d", x = "#ffbd5d", S = "#e7a13c", U = "#b27330", _ = "#704819", X = "#442c0f", Y = "#d3efd7", l = "#a7dfaf", K = "#7ad086", u = "#5bc16b", j = "#32863e", g = "#296e33", q = "#205628", J = "#173e1d", Q = "#0e2511", Z = "#deeff3", $ = "#bcdfe7", d = "#9bcfdb", oo = "#79bfcf", m = "#58afc3", f = "#337e8e", no = "#30606b", to = "#214148", eo = "#00282b", ao = "#d7dbfd", C = "#afb8fb", ro = "#8894fa", p = "#6071f8", io = "#384df6", y = "#2e3fca", co = "#24319d", so = "#1a2371", So = "#101645", lo = "#f3e0f3", z = "#e7c1e7", uo = "#daa3da", h = "#ce84ce", go = "#c265c2", L = "#9f539f", mo = "#7c417c", fo = "#592e59", Co = "#361c36", o = "#f4f4f4", I = "#eeeeee", po = "#dfdfdf", yo = "#cbcbcb", zo = "#9a9a9a", b = "#7f7f7f", ho = "#6c6c6c", D = "#3e3e3e", T = "#222222", P = "#101010", B = "#ffffff", Lo = 0, Io = 1, bo = 4, Do = 6, To = 8, Po = 12, Bo = 16, ko = 24, vo = 999, Ho = "'Inter', sans-serif !important", No = 4, Go = 6, Ro = 8, Mo = 10, Oo = 12, Fo = 16, wo = 20, Ao = 24, Vo = 28, Eo = 32, Wo = 40, xo = 48, Uo = 52, _o = 56, Xo = 64, Yo = 72, Ko = 80, jo = 96, qo = 108, Jo = 112, Qo = 120, Zo = 128, $o = 136, on = 144, nn = 156, tn = 172, en = 200, an = 256, rn = 2, cn = 6, sn = 1, Sn = 10, ln = "#32863e", un = "#296e33", gn = "#d3efd7", dn = "#205628", mn = "#a7dfaf", fn = "#337e8e", Cn = "#205628", pn = "#a7dfaf", yn = "#cf3237", zn = "#aa292d", hn = "#f9d4d5", Ln = "#f3a9ab", In = "#842023", bn = "#f3a9ab", Dn = "#842023", Tn = "#ffbd5d", Pn = "#fff2df", Bn = "#ffe5be", kn = "#704819", vn = "#442c0f", Hn = "#ffe5be", Nn = "#a35c32", Gn = "#384df6", Rn = "#d7dbfd", Mn = "#afb8fb", On = "#2e3fca", Fn = "#24319d", wn = "#afb8fb", An = "#24319d", Vn = "#9a9a9a", En = "#f4f4f4", Wn = "#3e3e3e", xn = "#eeeeee", Un = "#222222", _n = "#6c6c6c", Xn = "#eeeeee", Yn = "#30606b", Kn = "#00282b", jn = "#214148", qn = "#ffffff", Jn = "#eeeeee", Qn = "#9a9a9a", Zn = "#222222", $n = "#101010", ot = "#3e3e3e", nt = "#eeeeee", tt = "#ffca7d", et = "#e7a13c", at = "#b27330", rt = "#222222", it = "#eeeeee", ct = "#ffffff", st = "#deeff3", St = "#cbcbcb", lt = "#cbcbcb", ut = "#222222", gt = "#eeeeee", dt = "#30606b", mt = "#00282b", ft = "#9bcfdb", Ct = "#79bfcf", pt = "#f4f4f4", yt = "#ffffff", zt = "#deeff3", ht = "#9bcfdb", Lt = "#eeeeee", It = "#3e3e3e", bt = "#deeff3", Dt = "#ffffff", Tt = "#f4f4f4", Pt = "#eeeeee", Bt = "#cbcbcb", kt = "#3e3e3e", vt = "#222222", Ht = "#101010", Nt = "#3e3e3e", Gt = "#dfdfdf", Rt = "#3e3e3e", Mt = "#6c6c6c", Ot = "#6c6c6c", Ft = "#222222", wt = "#3e3e3e", At = "#6c6c6c", Vt = "#ffffff", Et = "#f4f4f4", Wt = "#ffffff", xt = "#ffffff", Ut = "#384df6", _t = "#24319d", Xt = "#9a9a9a", Yt = "#f4f4f4", Kt = "#222222", jt = "#6c6c6c", qt = "#6c6c6c", Jt = "#384df6", Qt = "#1a2371", Zt = "#dfdfdf", $t = "#5bc16b", oe = "#cf3237", ne = "#6071f8", te = "#00282b", ee = "#30606b", ae = "#ffbd5d", re = "#b27330", ie = "#58afc3", ce = "#5bc16b", se = "#ffe5be", Se = "#e7c1e7", le = "#ffbd5d", ue = "#384df6", ge = "#32863e", de = "#cf3237", me = "#3e3e3e", fe = "#ffffff", Ce = "#3e3e3e", pe = "#d17640", ye = "#ffe9dc", ze = "#d17640", he = "#296e33", Le = "#d3efd7", Ie = "#296e33", be = "#9f539f", De = "#f3e0f3", Te = "#9f539f", Pe = "#32863e", Be = "#d3efd7", ke = "#173e1d", ve = "#d3efd7", He = "#205628", Ne = "#337e8e", Ge = "#a7dfaf", Re = "#205628", Me = "#cf3237", Oe = "#f9d4d5", Fe = "#5f1719", we = "#842023", Ae = "#f9d4d5", Ve = "#842023", Ee = "#f3a9ab", We = "#ffbd5d", xe = "#704819", Ue = "#b27330", _e = "#fff2df", Xe = "#ffe5be", Ye = "#b27330", Ke = "#ffe5be", je = "#384df6", qe = "#1a2371", Je = "#24319d", Qe = "#d7dbfd", Ze = "#d7dbfd", $e = "#24319d", oa = "#afb8fb", na = "#9a9a9a", ta = "#3e3e3e", ea = "#f4f4f4", aa = "#6c6c6c", ra = "#eeeeee", ia = "#6c6c6c", ca = "#eeeeee", sa = "#30606b", Sa = "#00282b", la = "#214148", ua = "#ffffff", ga = "#6c6c6c", da = "#eeeeee", ma = "#cbcbcb", fa = "#ffffff", Ca = "#f4f4f4", pa = "#6c6c6c", ya = "#ffca7d", za = "#e7a13c", ha = "#b27330", La = "#222222", Ia = "#6c6c6c", ba = "#222222", Da = "#00282b", Ta = "#3e3e3e", Pa = "#3e3e3e", Ba = "#ffffff", ka = "#6c6c6c", va = "#9bcfdb", Ha = "#79bfcf", Na = "#30606b", Ga = "#00282b", Ra = "#f4f4f4", Ma = "#ffffff", Oa = "#deeff3", Fa = "#9bcfdb", wa = "#6c6c6c", Aa = "#f4f4f4", Va = "#30606b", Ea = "#222222", Wa = "#101010", xa = "#3e3e3e", Ua = "#3e3e3e", _a = "#eeeeee", Xa = "#ffffff", Ya = "#f4f4f4", Ka = "#eeeeee", ja = "#3e3e3e", qa = "#ffffff", Ja = "#eeeeee", Qa = "#dfdfdf", Za = "#ffffff", $a = "#ffffff", or = "#dfdfdf", nr = "#222222", tr = "#3e3e3e", er = "#222222", ar = "#ffffff", rr = "#384df6", ir = "#24319d", cr = "#9a9a9a", sr = "#f4f4f4", Sr = "#f4f4f4", lr = "#9a9a9a", ur = "#dfdfdf", gr = "#384df6", dr = "#1a2371", mr = "#222222", fr = "#205628", Cr = "#842023", pr = "#24319d", yr = "#00282b", zr = "#30606b", hr = "#ffbd5d", Lr = "#b27330", Ir = "#58afc3", br = "#5bc16b", Dr = "#ffe5be", Tr = "#e7c1e7", Pr = "#ffbd5d", Br = "#384df6", kr = "#32863e", vr = "#cf3237", Hr = "#eeeeee", Nr = "#101010", Gr = "#f4f4f4", Rr = "#ffd3b8", Mr = "#d17640", Or = "#ffd3b8", Fr = "#a7dfaf", wr = "#296e33", Ar = "#a7dfaf", Vr = "#e7c1e7", Er = "#9f539f", Wr = "#e7c1e7", xr = 16, Ur = 20, _r = 24, Xr = 32, Yr = 40, Kr = 48, jr = 56, qr = 48, Jr = 72, Qr = 108, Zr = 156, $r = 200, oi = 0.20000000298023224, ni = 0.33000001311302185, ti = 0.5, ei = 1, ai = 2, ri = 1, ii = 2, ci = 4, si = 6, Si = { type: "number" }, li = 2, ui = 4, gi = 6, di = 8, mi = 12, fi = 16, Ci = 24, pi = 999, yi = 6, zi = 24, hi = 10, Li = 8, Ii = 4, bi = 12, Di = 10, Ti = 4, Pi = 8, Bi = 10, ki = 40, vi = 6, Hi = 8, Ni = 8, Gi = 11, Ri = 24, Mi = 20, Oi = 8, Fi = 4, wi = 24, Ai = 16, Vi = 16, Ei = 8, Wi = 4, xi = 4, Ui = 4, _i = 999, Xi = 16, Yi = 16, Ki = 8, ji = 4, qi = 12, Ji = 16, Qi = 12, Zi = 8, $i = 16, oc = 16, nc = 8, tc = 16, ec = 16, ac = 8, rc = 16, ic = 8, cc = 32, sc = 32, Sc = 6, lc = 40, uc = 40, gc = 16, dc = { type: "number" }, mc = 12, fc = 64, Cc = 2, pc = 2, yc = 48, zc = 24, hc = 20, Lc = 999, Ic = 16, bc = 24, Dc = 4, Tc = 40, Pc = 48, Bc = 6, kc = 16, vc = 6, Hc = 8, Nc = 4, Gc = 8, Rc = 6, Mc = 4, Oc = 4, Fc = 10, wc = 32, Ac = 4, Vc = 8, Ec = 8, Wc = 7, xc = 16, Uc = 12, _c = 8, Xc = 4, Yc = 24, Kc = 16, jc = 16, qc = 8, Jc = 4, Qc = 4, Zc = 4, $c = 999, os = 12, ns = 12, ts = 8, es = 4, as = 12, rs = 16, is = 12, cs = 8, ss = 16, Ss = 16, ls = 8, us = 12, gs = 16, ds = 8, ms = 16, fs = 8, Cs = 24, ps = 24, ys = 6, zs = 24, hs = 24, Ls = 8, Is = { type: "number" }, bs = 8, Ds = 48, Ts = 2, Ps = 2, Bs = 48, ks = 24, vs = 20, Hs = 999, Ns = 12, Gs = 16, Rs = 4, Ms = 16, Os = 16, Fs = 6, ws = 24, As = 10, Vs = 8, Es = 4, Ws = 12, xs = 10, Us = 4, _s = 8, Xs = 10, Ys = 40, Ks = 6, js = 8, qs = 8, Js = 11, Qs = 32, Zs = 24, $s = 8, oS = 4, nS = 32, tS = 24, eS = 16, aS = 8, rS = 4, iS = 4, cS = 4, sS = 999, SS = 16, lS = 16, uS = 8, gS = 4, dS = 12, mS = 16, fS = 12, CS = 8, pS = 16, yS = 16, zS = 8, hS = 16, LS = 16, IS = 8, bS = 16, DS = 8, TS = 32, PS = 32, BS = 6, kS = 40, vS = 40, HS = 24, NS = { type: "number" }, GS = 16, RS = 80, MS = 2, OS = 2, FS = 48, wS = 24, AS = 20, VS = 999, ES = 16, WS = 24, xS = 4, US = 48, _S = 56, XS = 72, YS = 56, KS = 40, jS = 40, qS = 32, JS = 64, QS = 52, ZS = 40, $S = 40, ol = 24, nl = 48, tl = 40, el = 32, al = 32, rl = 24, il = 16, cl = 16, sl = 16, Sl = 20, ll = 16, ul = 14, gl = 14, dl = 12, ml = 12, fl = 12, Cl = 14, pl = 12, yl = 12, zl = 12, hl = 16, Ll = 14, Il = 12, bl = 16, Dl = 14, Tl = 12, Pl = 96, Bl = 48, kl = 16, vl = 16, Hl = 20, Nl = 16, Gl = 14, Rl = 14, Ml = 12, Ol = 12, Fl = 12, wl = 14, Al = 12, Vl = 12, El = 12, Wl = 16, xl = 14, Ul = 12, _l = 16, Xl = 14, Yl = 12, Kl = 96, jl = 48, ql = 16, Jl = 16, Ql = 20, Zl = 16, $l = 14, ou = 12, nu = 14, tu = 16, eu = 18, au = 20, ru = 14, iu = 12, cu = 12, su = 12, Su = 16, lu = 14, uu = 12, gu = 16, du = 14, mu = 12, fu = 96, Cu = 48, pu = 16, yu = {
2
2
  PRIMARY: f,
3
3
  // bolt green
4
4
  PRIMARY_LIGHT: m,
@@ -40,19 +40,19 @@ export {
40
40
  Io as BorderRadiusXs,
41
41
  Bo as BorderRadiusXxl,
42
42
  ko as BorderRadiusXxxl,
43
- ui as BordersMode1BorderRadiusLg,
44
- li as BordersMode1BorderRadiusMd,
45
- ci as BordersMode1BorderRadiusNone,
46
- fi as BordersMode1BorderRadiusRounded,
47
- Si as BordersMode1BorderRadiusSm,
48
- gi as BordersMode1BorderRadiusXl,
49
- si as BordersMode1BorderRadiusXs,
50
- di as BordersMode1BorderRadiusXxl,
51
- mi as BordersMode1BorderRadiusXxxl,
52
- ei as BordersMode1BorderWidth1,
53
- ai as BordersMode1BorderWidth2,
54
- ri as BordersMode1BorderWidth3,
55
- ii as BordersMode1BorderWidth4,
43
+ di as BordersMode1BorderRadiusLg,
44
+ gi as BordersMode1BorderRadiusMd,
45
+ Si as BordersMode1BorderRadiusNone,
46
+ pi as BordersMode1BorderRadiusRounded,
47
+ ui as BordersMode1BorderRadiusSm,
48
+ mi as BordersMode1BorderRadiusXl,
49
+ li as BordersMode1BorderRadiusXs,
50
+ fi as BordersMode1BorderRadiusXxl,
51
+ Ci as BordersMode1BorderRadiusXxxl,
52
+ ri as BordersMode1BorderWidth1,
53
+ ii as BordersMode1BorderWidth2,
54
+ ci as BordersMode1BorderWidth3,
55
+ si as BordersMode1BorderWidth4,
56
56
  ao as ColorBlue100,
57
57
  C as ColorBlue200,
58
58
  ro as ColorBlue300,
@@ -127,571 +127,573 @@ export {
127
127
  U as ColorYellow700,
128
128
  _ as ColorYellow800,
129
129
  X as ColorYellow900,
130
- nS as ComponentSizingLargeActionRowGap,
131
- $s as ComponentSizingLargeActionRowHorPadding,
132
- oS as ComponentSizingLargeActionRowVerPadding,
133
- DS as ComponentSizingLargeAvatarHeight,
134
- TS as ComponentSizingLargeAvatarRadius,
135
- bS as ComponentSizingLargeAvatarWidth,
136
- rS as ComponentSizingLargeBadgeGap,
137
- tS as ComponentSizingLargeBadgeLeftPadding,
138
- iS as ComponentSizingLargeBadgeRadius,
139
- eS as ComponentSizingLargeBadgeRightPadding,
140
- aS as ComponentSizingLargeBadgeVerPadding,
141
- SS as ComponentSizingLargeBreadcrumbGap,
142
- cS as ComponentSizingLargeBreadcrumbHorPadding,
143
- sS as ComponentSizingLargeBreadcrumbVerPadding,
144
- ws as ComponentSizingLargeButtonGap,
145
- Os as ComponentSizingLargeButtonHorPadding,
146
- Ms as ComponentSizingLargeButtonRadius,
147
- Fs as ComponentSizingLargeButtonVerPadding,
148
- xS as ComponentSizingLargeHeaderHorPadding,
149
- WS as ComponentSizingLargeHeaderVerPadding,
150
- Ys as ComponentSizingLargeInputGap,
151
- _s as ComponentSizingLargeInputHeight,
152
- Us as ComponentSizingLargeInputHorPadding,
153
- Xs as ComponentSizingLargeInputRadius,
154
- Ks as ComponentSizingLargeInputSuffixPrefixHorPadding,
155
- js as ComponentSizingLargeInputSuffixPrefixVerPadding,
156
- dS as ComponentSizingLargeMenuItemGap,
157
- gS as ComponentSizingLargeMenuItemHorPadding,
158
- uS as ComponentSizingLargeMenuItemVerPadding,
159
- lS as ComponentSizingLargeMenuVerPadding,
160
- yS as ComponentSizingLargeMessageActionLeftPadding,
161
- pS as ComponentSizingLargeMessageGap,
162
- fS as ComponentSizingLargeMessageHorPadding,
163
- CS as ComponentSizingLargeMessageVerPadding,
164
- mS as ComponentSizingLargeProgressGap,
165
- Qs as ComponentSizingLargeRowGap,
166
- qs as ComponentSizingLargeRowHorPadding,
167
- Zs as ComponentSizingLargeRowLabelGap,
168
- Js as ComponentSizingLargeRowVerPadding,
169
- OS as ComponentSizingLargeSwitchHeight,
170
- RS as ComponentSizingLargeSwitchHorPadding,
171
- wS as ComponentSizingLargeSwitchRadius,
172
- FS as ComponentSizingLargeSwitchThumbDiameter,
173
- GS as ComponentSizingLargeSwitchVerPadding,
174
- MS as ComponentSizingLargeSwitchWidth,
175
- ES as ComponentSizingLargeTabGap,
176
- VS as ComponentSizingLargeTabHorPadding,
177
- AS as ComponentSizingLargeTabVerPadding,
178
- HS as ComponentSizingLargeTableCellGap,
179
- vS as ComponentSizingLargeTableCellHorPadding,
180
- PS as ComponentSizingLargeTableCellLeadPadding,
181
- NS as ComponentSizingLargeTableCellMinHeight,
182
- BS as ComponentSizingLargeTableCellTrailPadding,
183
- kS as ComponentSizingLargeTableCellVerPadding,
184
- IS as ComponentSizingLargeToastContentGap,
185
- LS as ComponentSizingLargeToastGap,
186
- zS as ComponentSizingLargeToastHorPadding,
187
- hS as ComponentSizingLargeToastVerPadding,
188
- Ws as ComponentSizingLargeUtilityButtonGap,
189
- Vs as ComponentSizingLargeUtilityButtonHorPadding,
190
- xs as ComponentSizingLargeUtilityButtonIconPadding,
191
- As as ComponentSizingLargeUtilityButtonRadius,
192
- Es as ComponentSizingLargeUtilityButtonVerPadding,
193
- wi as ComponentSizingNormalActionRowGap,
194
- Oi as ComponentSizingNormalActionRowHorPadding,
195
- Fi as ComponentSizingNormalActionRowVerPadding,
196
- ic as ComponentSizingNormalAvatarHeight,
197
- cc as ComponentSizingNormalAvatarRadius,
198
- rc as ComponentSizingNormalAvatarWidth,
199
- Wi as ComponentSizingNormalBadgeGap,
200
- Ai as ComponentSizingNormalBadgeLeftPadding,
201
- xi as ComponentSizingNormalBadgeRadius,
202
- Vi as ComponentSizingNormalBadgeRightPadding,
203
- Ei as ComponentSizingNormalBadgeVerPadding,
204
- Xi as ComponentSizingNormalBreadcrumbGap,
205
- Ui as ComponentSizingNormalBreadcrumbHorPadding,
206
- _i as ComponentSizingNormalBreadcrumbVerPadding,
207
- zi as ComponentSizingNormalButtonGap,
208
- pi as ComponentSizingNormalButtonHorPadding,
209
- Ci as ComponentSizingNormalButtonRadius,
210
- yi as ComponentSizingNormalButtonVerPadding,
211
- Dc as ComponentSizingNormalHeaderHorPadding,
212
- bc as ComponentSizingNormalHeaderVerPadding,
213
- ki as ComponentSizingNormalInputGap,
214
- Pi as ComponentSizingNormalInputHeight,
215
- Ti as ComponentSizingNormalInputHorPadding,
216
- Bi as ComponentSizingNormalInputRadius,
217
- vi as ComponentSizingNormalInputSuffixPrefixHorPadding,
218
- Hi as ComponentSizingNormalInputSuffixPrefixVerPadding,
219
- qi as ComponentSizingNormalMenuItemGap,
220
- ji as ComponentSizingNormalMenuItemHorPadding,
221
- Ki as ComponentSizingNormalMenuItemVerPadding,
222
- Yi as ComponentSizingNormalMenuVerPadding,
223
- oc as ComponentSizingNormalMessageActionLeftPadding,
224
- $i as ComponentSizingNormalMessageGap,
225
- Qi as ComponentSizingNormalMessageHorPadding,
226
- Zi as ComponentSizingNormalMessageVerPadding,
227
- Ji as ComponentSizingNormalProgressGap,
228
- Ri as ComponentSizingNormalRowGap,
229
- Ni as ComponentSizingNormalRowHorPadding,
230
- Mi as ComponentSizingNormalRowLabelGap,
231
- Gi as ComponentSizingNormalRowVerPadding,
232
- pc as ComponentSizingNormalSwitchHeight,
233
- fc as ComponentSizingNormalSwitchHorPadding,
234
- zc as ComponentSizingNormalSwitchRadius,
235
- yc as ComponentSizingNormalSwitchThumbDiameter,
236
- mc as ComponentSizingNormalSwitchVerPadding,
237
- Cc as ComponentSizingNormalSwitchWidth,
238
- Ic as ComponentSizingNormalTabGap,
239
- Lc as ComponentSizingNormalTabHorPadding,
240
- hc as ComponentSizingNormalTabVerPadding,
241
- gc as ComponentSizingNormalTableCellGap,
242
- uc as ComponentSizingNormalTableCellHorPadding,
243
- sc as ComponentSizingNormalTableCellLeadPadding,
244
- dc as ComponentSizingNormalTableCellMinHeight,
245
- Sc as ComponentSizingNormalTableCellTrailPadding,
246
- lc as ComponentSizingNormalTableCellVerPadding,
247
- ac as ComponentSizingNormalToastContentGap,
248
- ec as ComponentSizingNormalToastGap,
249
- nc as ComponentSizingNormalToastHorPadding,
250
- tc as ComponentSizingNormalToastVerPadding,
251
- bi as ComponentSizingNormalUtilityButtonGap,
252
- Li as ComponentSizingNormalUtilityButtonHorPadding,
253
- Di as ComponentSizingNormalUtilityButtonIconPadding,
254
- hi as ComponentSizingNormalUtilityButtonRadius,
255
- Ii as ComponentSizingNormalUtilityButtonVerPadding,
256
- Yc as ComponentSizingSmallActionRowGap,
257
- _c as ComponentSizingSmallActionRowHorPadding,
258
- Xc as ComponentSizingSmallActionRowVerPadding,
259
- fs as ComponentSizingSmallAvatarHeight,
260
- Cs as ComponentSizingSmallAvatarRadius,
261
- ms as ComponentSizingSmallAvatarWidth,
262
- Jc as ComponentSizingSmallBadgeGap,
263
- Kc as ComponentSizingSmallBadgeLeftPadding,
264
- Qc as ComponentSizingSmallBadgeRadius,
265
- jc as ComponentSizingSmallBadgeRightPadding,
266
- qc as ComponentSizingSmallBadgeVerPadding,
267
- os as ComponentSizingSmallBreadcrumbGap,
268
- Zc as ComponentSizingSmallBreadcrumbHorPadding,
269
- $c as ComponentSizingSmallBreadcrumbVerPadding,
270
- kc as ComponentSizingSmallButtonGap,
271
- Pc as ComponentSizingSmallButtonHorPadding,
272
- Tc as ComponentSizingSmallButtonRadius,
273
- Bc as ComponentSizingSmallButtonVerPadding,
274
- Rs as ComponentSizingSmallHeaderHorPadding,
275
- Gs as ComponentSizingSmallHeaderVerPadding,
276
- wc as ComponentSizingSmallInputGap,
277
- Oc as ComponentSizingSmallInputHeight,
278
- Mc as ComponentSizingSmallInputHorPadding,
279
- Fc as ComponentSizingSmallInputRadius,
280
- Ac as ComponentSizingSmallInputSuffixPrefixHorPadding,
281
- Vc as ComponentSizingSmallInputSuffixPrefixVerPadding,
282
- as as ComponentSizingSmallMenuItemGap,
283
- es as ComponentSizingSmallMenuItemHorPadding,
284
- ts as ComponentSizingSmallMenuItemVerPadding,
285
- ns as ComponentSizingSmallMenuVerPadding,
286
- Ss as ComponentSizingSmallMessageActionLeftPadding,
287
- ss as ComponentSizingSmallMessageGap,
288
- is as ComponentSizingSmallMessageHorPadding,
289
- cs as ComponentSizingSmallMessageVerPadding,
290
- rs as ComponentSizingSmallProgressGap,
291
- xc as ComponentSizingSmallRowGap,
292
- Ec as ComponentSizingSmallRowHorPadding,
293
- Uc as ComponentSizingSmallRowLabelGap,
294
- Wc as ComponentSizingSmallRowVerPadding,
295
- Ps as ComponentSizingSmallSwitchHeight,
296
- Ds as ComponentSizingSmallSwitchHorPadding,
297
- ks as ComponentSizingSmallSwitchRadius,
298
- Bs as ComponentSizingSmallSwitchThumbDiameter,
299
- bs as ComponentSizingSmallSwitchVerPadding,
300
- Ts as ComponentSizingSmallSwitchWidth,
301
- Ns as ComponentSizingSmallTabGap,
302
- Hs as ComponentSizingSmallTabHorPadding,
303
- vs as ComponentSizingSmallTabVerPadding,
304
- Ls as ComponentSizingSmallTableCellGap,
305
- hs as ComponentSizingSmallTableCellHorPadding,
306
- ps as ComponentSizingSmallTableCellLeadPadding,
307
- Is as ComponentSizingSmallTableCellMinHeight,
308
- ys as ComponentSizingSmallTableCellTrailPadding,
309
- zs as ComponentSizingSmallTableCellVerPadding,
310
- ds as ComponentSizingSmallToastContentGap,
311
- gs as ComponentSizingSmallToastGap,
312
- ls as ComponentSizingSmallToastHorPadding,
313
- us as ComponentSizingSmallToastVerPadding,
314
- Gc as ComponentSizingSmallUtilityButtonGap,
315
- Hc as ComponentSizingSmallUtilityButtonHorPadding,
316
- Rc as ComponentSizingSmallUtilityButtonIconPadding,
317
- vc as ComponentSizingSmallUtilityButtonRadius,
318
- Nc as ComponentSizingSmallUtilityButtonVerPadding,
319
- Ur as IconsIllustrationsValueIconLg,
320
- xr as IconsIllustrationsValueIconMed,
321
- Wr as IconsIllustrationsValueIconSm,
322
- _r as IconsIllustrationsValueIconXl,
323
- Er as IconsIllustrationsValueIconXs,
324
- Xr as IconsIllustrationsValueIconXxl,
325
- Yr as IconsIllustrationsValueIconXxxl,
326
- Jr as IconsIllustrationsValueIllustrationLg,
327
- qr as IconsIllustrationsValueIllustrationMd,
328
- jr as IconsIllustrationsValueIllustrationSm,
329
- Qr as IconsIllustrationsValueIllustrationXl,
330
- Kr as IconsIllustrationsValueIllustrationXs,
331
- $r as MotionMode1Fast,
332
- oi as MotionMode1Medium,
333
- ni as MotionMode1Slow,
334
- Zr as MotionMode1Veryfast,
335
- ti as MotionMode1Veryslow,
336
- yr as SemanticColoursDarkBrandPrimaryGoldrush,
337
- Cr as SemanticColoursDarkBrandPrimaryShadyforest,
338
- pr as SemanticColoursDarkBrandPrimaryShadyforestLight,
339
- hr as SemanticColoursDarkBrandSecondaryGlacierlake,
340
- Lr as SemanticColoursDarkBrandSecondaryNewleaf,
341
- zr as SemanticColoursDarkBrandSecondaryTreetrunk,
342
- Ir as SemanticColoursDarkHighlightsCopy,
343
- br as SemanticColoursDarkHighlightsCopyAlt,
344
- Tr as SemanticColoursDarkIllustrationShapesBlue,
345
- Pr as SemanticColoursDarkIllustrationShapesGreen,
346
- Br as SemanticColoursDarkIllustrationShapesRed,
347
- Dr as SemanticColoursDarkIllustrationShapesYellow,
348
- cr as SemanticColoursDarkInputsOnsurfaceActive,
349
- Sr as SemanticColoursDarkInputsOnsurfaceDisabled,
350
- lr as SemanticColoursDarkInputsOnsurfaceFocus,
351
- ur as SemanticColoursDarkInputsOnsurfaceFocusBorder,
352
- sr as SemanticColoursDarkInputsOnsurfacePlaceholder,
353
- gr as SemanticColoursDarkInputsProgressEmpty,
354
- mr as SemanticColoursDarkInputsProgressError,
355
- fr as SemanticColoursDarkInputsProgressInfo,
356
- dr as SemanticColoursDarkInputsProgressSuccess,
357
- tr as SemanticColoursDarkInputsSurfaceActive,
358
- rr as SemanticColoursDarkInputsSurfaceBorder,
359
- er as SemanticColoursDarkInputsSurfaceChecked,
360
- ar as SemanticColoursDarkInputsSurfaceCheckedHover,
361
- ir as SemanticColoursDarkInputsSurfaceDisabled,
362
- Oa as SemanticColoursDarkInteractiveDisabledSurface,
363
- wa as SemanticColoursDarkInteractiveIconActive,
364
- Fa as SemanticColoursDarkInteractiveIconOnsurface,
365
- Ba as SemanticColoursDarkInteractiveLinkActive,
366
- va as SemanticColoursDarkInteractiveLinkActiveInverse,
367
- ka as SemanticColoursDarkInteractiveLinkHover,
368
- Ha as SemanticColoursDarkInteractiveLinkHoverInverse,
369
- Ma as SemanticColoursDarkInteractiveNotificationBorderHover,
370
- Ga as SemanticColoursDarkInteractiveNotificationReadSurface,
371
- Ra as SemanticColoursDarkInteractiveNotificationSurfaceHover,
372
- Na as SemanticColoursDarkInteractiveNotificationUnreadSurface,
373
- ia as SemanticColoursDarkInteractivePrimaryActive,
374
- la as SemanticColoursDarkInteractivePrimaryDisabled,
375
- ca as SemanticColoursDarkInteractivePrimaryHover,
376
- Sa as SemanticColoursDarkInteractivePrimaryOnsurface,
377
- sa as SemanticColoursDarkInteractivePrimaryPressed,
378
- ua as SemanticColoursDarkInteractiveSecondaryActive,
379
- fa as SemanticColoursDarkInteractiveSecondaryDisabled,
380
- ga as SemanticColoursDarkInteractiveSecondaryHover,
381
- ma as SemanticColoursDarkInteractiveSecondaryOnsurface,
382
- da as SemanticColoursDarkInteractiveSecondaryPressed,
383
- Ca as SemanticColoursDarkInteractiveTertiaryActive,
384
- ha as SemanticColoursDarkInteractiveTertiaryDisabled,
385
- pa as SemanticColoursDarkInteractiveTertiaryHover,
386
- za as SemanticColoursDarkInteractiveTertiaryOnsurface,
387
- ya as SemanticColoursDarkInteractiveTertiaryPressed,
388
- La as SemanticColoursDarkInteractiveUtilityActive,
389
- Da as SemanticColoursDarkInteractiveUtilityBorder,
390
- Pa as SemanticColoursDarkInteractiveUtilityDisabled,
391
- Ia as SemanticColoursDarkInteractiveUtilityHover,
392
- Ta as SemanticColoursDarkInteractiveUtilityOnsurface,
393
- ba as SemanticColoursDarkInteractiveUtilityPressed,
394
- Ka as SemanticColoursDarkOnsurfaceCopy,
395
- Ja as SemanticColoursDarkOnsurfaceCopyDark,
396
- qa as SemanticColoursDarkOnsurfaceCopyDisabled,
397
- $a as SemanticColoursDarkOnsurfaceCopyInvert,
398
- ja as SemanticColoursDarkOnsurfaceCopyLight,
399
- or as SemanticColoursDarkOnsurfaceCopyLightInvert,
400
- Qa as SemanticColoursDarkOnsurfaceIcon,
401
- Za as SemanticColoursDarkOnsurfaceIconDisabled,
402
- nr as SemanticColoursDarkOnsurfaceIconInvert,
403
- aa as SemanticColoursDarkStatusDisabledDefault,
404
- ra as SemanticColoursDarkStatusDisabledSurface,
405
- Ge as SemanticColoursDarkStatusErrorDefault,
406
- Re as SemanticColoursDarkStatusErrorOnsurface,
407
- Ae as SemanticColoursDarkStatusErrorOnsurfaceBorder,
408
- Fe as SemanticColoursDarkStatusErrorOnsurfaceHover,
409
- Me as SemanticColoursDarkStatusErrorSurface,
410
- we as SemanticColoursDarkStatusErrorSurfaceBorder,
411
- Oe as SemanticColoursDarkStatusErrorSurfaceHover,
412
- $e as SemanticColoursDarkStatusGenericDefault,
413
- na as SemanticColoursDarkStatusGenericOnsurface,
414
- ea as SemanticColoursDarkStatusGenericOnsurfaceBorder,
415
- oa as SemanticColoursDarkStatusGenericSurface,
416
- ta as SemanticColoursDarkStatusGenericSurfaceBorder,
417
- Ye as SemanticColoursDarkStatusInfoDefault,
418
- qe as SemanticColoursDarkStatusInfoOnsurface,
419
- Ze as SemanticColoursDarkStatusInfoOnsurfaceBorder,
420
- Je as SemanticColoursDarkStatusInfoOnsurfaceHover,
421
- Ke as SemanticColoursDarkStatusInfoSurface,
422
- Qe as SemanticColoursDarkStatusInfoSurfaceBorder,
423
- je as SemanticColoursDarkStatusInfoSurfaceHover,
424
- De as SemanticColoursDarkStatusSuccessDefault,
425
- Te as SemanticColoursDarkStatusSuccessOnsurface,
426
- He as SemanticColoursDarkStatusSuccessOnsurfaceBorder,
427
- Be as SemanticColoursDarkStatusSuccessOnsurfaceHover,
428
- ve as SemanticColoursDarkStatusSuccessSecondary,
429
- Pe as SemanticColoursDarkStatusSuccessSurface,
430
- Ne as SemanticColoursDarkStatusSuccessSurfaceBorder,
431
- ke as SemanticColoursDarkStatusSuccessSurfaceHover,
432
- Ve as SemanticColoursDarkStatusWarningDefault,
433
- xe as SemanticColoursDarkStatusWarningOnsurface,
434
- Xe as SemanticColoursDarkStatusWarningOnsurfaceBorder,
435
- Ue as SemanticColoursDarkStatusWarningOnsurfaceHover,
436
- Ee as SemanticColoursDarkStatusWarningSurface,
437
- _e as SemanticColoursDarkStatusWarningSurfaceBorder,
438
- We as SemanticColoursDarkStatusWarningSurfaceHover,
439
- Wa as SemanticColoursDarkSurfaceBorder,
440
- xa as SemanticColoursDarkSurfaceBorderInvert,
441
- Ya as SemanticColoursDarkSurfaceBorderLight,
442
- Aa as SemanticColoursDarkSurfaceDefault,
443
- Ua as SemanticColoursDarkSurfaceInvert,
444
- Va as SemanticColoursDarkSurfaceSecondary,
445
- _a as SemanticColoursDarkSurfaceSecondaryInvert,
446
- Ea as SemanticColoursDarkSurfaceTertiary,
447
- Xa as SemanticColoursDarkSurfaceTertiaryInvert,
448
- Mr as SemanticColoursDarkTimeboxAfternoonDefault,
449
- Or as SemanticColoursDarkTimeboxAfternoonSurface,
450
- Fr as SemanticColoursDarkTimeboxAfternoonSurfaceAlt,
451
- kr as SemanticColoursDarkTimeboxAlldayDefault,
452
- vr as SemanticColoursDarkTimeboxAlldaySurface,
453
- Hr as SemanticColoursDarkTimeboxAlldaySurfaceAlt,
454
- wr as SemanticColoursDarkTimeboxEveningDefault,
455
- Ar as SemanticColoursDarkTimeboxEveningSurface,
456
- Vr as SemanticColoursDarkTimeboxEveningSurfaceAlt,
457
- Nr as SemanticColoursDarkTimeboxMorningDefault,
458
- Gr as SemanticColoursDarkTimeboxMorningSurface,
459
- Rr as SemanticColoursDarkTimeboxMorningSurfaceAlt,
460
- te as SemanticColoursLightBrandPrimaryGoldrush,
461
- oe as SemanticColoursLightBrandPrimaryShadyforest,
462
- ne as SemanticColoursLightBrandPrimaryShadyforestLight,
463
- ae as SemanticColoursLightBrandSecondaryGlacierlake,
464
- re as SemanticColoursLightBrandSecondaryNewleaf,
465
- ee as SemanticColoursLightBrandSecondaryTreetrunk,
466
- ie as SemanticColoursLightHighlightsCopy,
467
- ce as SemanticColoursLightHighlightsCopyAlt,
468
- Se as SemanticColoursLightIllustrationShapesBlue,
469
- le as SemanticColoursLightIllustrationShapesGreen,
470
- ue as SemanticColoursLightIllustrationShapesRed,
471
- se as SemanticColoursLightIllustrationShapesYellow,
472
- Xt as SemanticColoursLightInputsOnsurfaceActive,
473
- Kt as SemanticColoursLightInputsOnsurfaceDisabled,
474
- jt as SemanticColoursLightInputsOnsurfaceFocus,
475
- qt as SemanticColoursLightInputsOnsurfaceFocusBorder,
476
- Yt as SemanticColoursLightInputsOnsurfacePlaceholder,
477
- Jt as SemanticColoursLightInputsProgressEmpty,
478
- Zt as SemanticColoursLightInputsProgressError,
479
- $t as SemanticColoursLightInputsProgressInfo,
480
- Qt as SemanticColoursLightInputsProgressSuccess,
481
- Et as SemanticColoursLightInputsSurfaceActive,
482
- Ut as SemanticColoursLightInputsSurfaceBorder,
483
- Wt as SemanticColoursLightInputsSurfaceChecked,
484
- xt as SemanticColoursLightInputsSurfaceCheckedHover,
485
- _t as SemanticColoursLightInputsSurfaceDisabled,
486
- zt as SemanticColoursLightInteractiveDisabledSurface,
487
- Lt as SemanticColoursLightInteractiveIconActive,
488
- ht as SemanticColoursLightInteractiveIconOnsurface,
489
- ut as SemanticColoursLightInteractiveLinkActive,
490
- dt as SemanticColoursLightInteractiveLinkActiveInverse,
491
- gt as SemanticColoursLightInteractiveLinkHover,
492
- mt as SemanticColoursLightInteractiveLinkHoverInverse,
493
- yt as SemanticColoursLightInteractiveNotificationBorderHover,
494
- Ct as SemanticColoursLightInteractiveNotificationReadSurface,
495
- pt as SemanticColoursLightInteractiveNotificationSurfaceHover,
496
- ft as SemanticColoursLightInteractiveNotificationUnreadSurface,
497
- _n as SemanticColoursLightInteractivePrimaryActive,
498
- jn as SemanticColoursLightInteractivePrimaryDisabled,
499
- Xn as SemanticColoursLightInteractivePrimaryHover,
500
- Kn as SemanticColoursLightInteractivePrimaryOnsurface,
501
- Yn as SemanticColoursLightInteractivePrimaryPressed,
502
- qn as SemanticColoursLightInteractiveSecondaryActive,
503
- $n as SemanticColoursLightInteractiveSecondaryDisabled,
504
- Jn as SemanticColoursLightInteractiveSecondaryHover,
505
- Zn as SemanticColoursLightInteractiveSecondaryOnsurface,
506
- Qn as SemanticColoursLightInteractiveSecondaryPressed,
507
- ot as SemanticColoursLightInteractiveTertiaryActive,
508
- at as SemanticColoursLightInteractiveTertiaryDisabled,
509
- nt as SemanticColoursLightInteractiveTertiaryHover,
510
- et as SemanticColoursLightInteractiveTertiaryOnsurface,
511
- tt as SemanticColoursLightInteractiveTertiaryPressed,
512
- rt as SemanticColoursLightInteractiveUtilityActive,
513
- st as SemanticColoursLightInteractiveUtilityBorder,
514
- lt as SemanticColoursLightInteractiveUtilityDisabled,
515
- it as SemanticColoursLightInteractiveUtilityHover,
516
- St as SemanticColoursLightInteractiveUtilityOnsurface,
517
- ct as SemanticColoursLightInteractiveUtilityPressed,
518
- Nt as SemanticColoursLightOnsurfaceCopy,
519
- Mt as SemanticColoursLightOnsurfaceCopyDark,
520
- Rt as SemanticColoursLightOnsurfaceCopyDisabled,
521
- wt as SemanticColoursLightOnsurfaceCopyInvert,
522
- Gt as SemanticColoursLightOnsurfaceCopyLight,
523
- At as SemanticColoursLightOnsurfaceCopyLightInvert,
524
- Ot as SemanticColoursLightOnsurfaceIcon,
525
- Ft as SemanticColoursLightOnsurfaceIconDisabled,
526
- Vt as SemanticColoursLightOnsurfaceIconInvert,
527
- xn as SemanticColoursLightStatusDisabledDefault,
528
- Un as SemanticColoursLightStatusDisabledSurface,
529
- Cn as SemanticColoursLightStatusErrorDefault,
530
- pn as SemanticColoursLightStatusErrorOnsurface,
531
- In as SemanticColoursLightStatusErrorOnsurfaceBorder,
532
- hn as SemanticColoursLightStatusErrorOnsurfaceHover,
533
- yn as SemanticColoursLightStatusErrorSurface,
534
- Ln as SemanticColoursLightStatusErrorSurfaceBorder,
535
- zn as SemanticColoursLightStatusErrorSurfaceHover,
536
- wn as SemanticColoursLightStatusGenericDefault,
537
- Vn as SemanticColoursLightStatusGenericOnsurface,
538
- Wn as SemanticColoursLightStatusGenericOnsurfaceBorder,
539
- An as SemanticColoursLightStatusGenericSurface,
540
- En as SemanticColoursLightStatusGenericSurfaceBorder,
541
- Hn as SemanticColoursLightStatusInfoDefault,
542
- Rn as SemanticColoursLightStatusInfoOnsurface,
543
- Fn as SemanticColoursLightStatusInfoOnsurfaceBorder,
544
- Mn as SemanticColoursLightStatusInfoOnsurfaceHover,
545
- Nn as SemanticColoursLightStatusInfoSurface,
546
- On as SemanticColoursLightStatusInfoSurfaceBorder,
547
- Gn as SemanticColoursLightStatusInfoSurfaceHover,
548
- sn as SemanticColoursLightStatusSuccessDefault,
549
- Sn as SemanticColoursLightStatusSuccessOnsurface,
550
- mn as SemanticColoursLightStatusSuccessOnsurfaceBorder,
551
- un as SemanticColoursLightStatusSuccessOnsurfaceHover,
552
- dn as SemanticColoursLightStatusSuccessSecondary,
553
- ln as SemanticColoursLightStatusSuccessSurface,
554
- fn as SemanticColoursLightStatusSuccessSurfaceBorder,
555
- gn as SemanticColoursLightStatusSuccessSurfaceHover,
556
- bn as SemanticColoursLightStatusWarningDefault,
557
- Pn as SemanticColoursLightStatusWarningOnsurface,
558
- vn as SemanticColoursLightStatusWarningOnsurfaceBorder,
559
- Bn as SemanticColoursLightStatusWarningOnsurfaceHover,
560
- Dn as SemanticColoursLightStatusWarningSurface,
561
- kn as SemanticColoursLightStatusWarningSurfaceBorder,
562
- Tn as SemanticColoursLightStatusWarningSurfaceHover,
563
- Tt as SemanticColoursLightSurfaceBorder,
564
- Pt as SemanticColoursLightSurfaceBorderInvert,
565
- Ht as SemanticColoursLightSurfaceBorderLight,
566
- It as SemanticColoursLightSurfaceDefault,
567
- Bt as SemanticColoursLightSurfaceInvert,
568
- bt as SemanticColoursLightSurfaceSecondary,
569
- kt as SemanticColoursLightSurfaceSecondaryInvert,
570
- Dt as SemanticColoursLightSurfaceTertiary,
571
- vt as SemanticColoursLightSurfaceTertiaryInvert,
572
- ye as SemanticColoursLightTimeboxAfternoonDefault,
573
- ze as SemanticColoursLightTimeboxAfternoonSurface,
574
- he as SemanticColoursLightTimeboxAfternoonSurfaceAlt,
575
- ge as SemanticColoursLightTimeboxAlldayDefault,
576
- de as SemanticColoursLightTimeboxAlldaySurface,
577
- me as SemanticColoursLightTimeboxAlldaySurfaceAlt,
578
- Le as SemanticColoursLightTimeboxEveningDefault,
579
- Ie as SemanticColoursLightTimeboxEveningSurface,
580
- be as SemanticColoursLightTimeboxEveningSurfaceAlt,
581
- fe as SemanticColoursLightTimeboxMorningDefault,
582
- Ce as SemanticColoursLightTimeboxMorningSurface,
583
- pe as SemanticColoursLightTimeboxMorningSurfaceAlt,
584
- rn as Size025,
585
- en as Size05,
130
+ eS as ComponentSizingLargeActionRowGap,
131
+ nS as ComponentSizingLargeActionRowHorPadding,
132
+ tS as ComponentSizingLargeActionRowVerPadding,
133
+ PS as ComponentSizingLargeAvatarHeight,
134
+ BS as ComponentSizingLargeAvatarRadius,
135
+ TS as ComponentSizingLargeAvatarWidth,
136
+ cS as ComponentSizingLargeBadgeGap,
137
+ aS as ComponentSizingLargeBadgeLeftPadding,
138
+ sS as ComponentSizingLargeBadgeRadius,
139
+ rS as ComponentSizingLargeBadgeRightPadding,
140
+ iS as ComponentSizingLargeBadgeVerPadding,
141
+ uS as ComponentSizingLargeBreadcrumbGap,
142
+ SS as ComponentSizingLargeBreadcrumbHorPadding,
143
+ lS as ComponentSizingLargeBreadcrumbVerPadding,
144
+ Vs as ComponentSizingLargeButtonGap,
145
+ ws as ComponentSizingLargeButtonHorPadding,
146
+ Fs as ComponentSizingLargeButtonRadius,
147
+ As as ComponentSizingLargeButtonVerPadding,
148
+ _S as ComponentSizingLargeHeaderHorPadding,
149
+ US as ComponentSizingLargeHeaderVerPadding,
150
+ js as ComponentSizingLargeInputGap,
151
+ Ys as ComponentSizingLargeInputHeight,
152
+ Xs as ComponentSizingLargeInputHorPadding,
153
+ Ks as ComponentSizingLargeInputRadius,
154
+ qs as ComponentSizingLargeInputSuffixPrefixHorPadding,
155
+ Js as ComponentSizingLargeInputSuffixPrefixVerPadding,
156
+ fS as ComponentSizingLargeMenuItemGap,
157
+ mS as ComponentSizingLargeMenuItemHorPadding,
158
+ dS as ComponentSizingLargeMenuItemVerPadding,
159
+ gS as ComponentSizingLargeMenuVerPadding,
160
+ hS as ComponentSizingLargeMessageActionLeftPadding,
161
+ zS as ComponentSizingLargeMessageGap,
162
+ pS as ComponentSizingLargeMessageHorPadding,
163
+ yS as ComponentSizingLargeMessageVerPadding,
164
+ CS as ComponentSizingLargeProgressGap,
165
+ $s as ComponentSizingLargeRowGap,
166
+ Qs as ComponentSizingLargeRowHorPadding,
167
+ oS as ComponentSizingLargeRowLabelGap,
168
+ Zs as ComponentSizingLargeRowVerPadding,
169
+ wS as ComponentSizingLargeSwitchHeight,
170
+ OS as ComponentSizingLargeSwitchHorPadding,
171
+ VS as ComponentSizingLargeSwitchRadius,
172
+ AS as ComponentSizingLargeSwitchThumbDiameter,
173
+ MS as ComponentSizingLargeSwitchVerPadding,
174
+ FS as ComponentSizingLargeSwitchWidth,
175
+ xS as ComponentSizingLargeTabGap,
176
+ WS as ComponentSizingLargeTabHorPadding,
177
+ ES as ComponentSizingLargeTabVerPadding,
178
+ GS as ComponentSizingLargeTableCellGap,
179
+ NS as ComponentSizingLargeTableCellHorPadding,
180
+ kS as ComponentSizingLargeTableCellLeadPadding,
181
+ RS as ComponentSizingLargeTableCellMinHeight,
182
+ vS as ComponentSizingLargeTableCellTrailPadding,
183
+ HS as ComponentSizingLargeTableCellVerPadding,
184
+ DS as ComponentSizingLargeToastContentGap,
185
+ bS as ComponentSizingLargeToastGap,
186
+ LS as ComponentSizingLargeToastHorPadding,
187
+ IS as ComponentSizingLargeToastVerPadding,
188
+ Us as ComponentSizingLargeUtilityButtonGap,
189
+ Ws as ComponentSizingLargeUtilityButtonHorPadding,
190
+ _s as ComponentSizingLargeUtilityButtonIconPadding,
191
+ Es as ComponentSizingLargeUtilityButtonRadius,
192
+ xs as ComponentSizingLargeUtilityButtonVerPadding,
193
+ Vi as ComponentSizingNormalActionRowGap,
194
+ wi as ComponentSizingNormalActionRowHorPadding,
195
+ Ai as ComponentSizingNormalActionRowVerPadding,
196
+ sc as ComponentSizingNormalAvatarHeight,
197
+ Sc as ComponentSizingNormalAvatarRadius,
198
+ cc as ComponentSizingNormalAvatarWidth,
199
+ Ui as ComponentSizingNormalBadgeGap,
200
+ Ei as ComponentSizingNormalBadgeLeftPadding,
201
+ _i as ComponentSizingNormalBadgeRadius,
202
+ Wi as ComponentSizingNormalBadgeRightPadding,
203
+ xi as ComponentSizingNormalBadgeVerPadding,
204
+ Ki as ComponentSizingNormalBreadcrumbGap,
205
+ Xi as ComponentSizingNormalBreadcrumbHorPadding,
206
+ Yi as ComponentSizingNormalBreadcrumbVerPadding,
207
+ Li as ComponentSizingNormalButtonGap,
208
+ zi as ComponentSizingNormalButtonHorPadding,
209
+ yi as ComponentSizingNormalButtonRadius,
210
+ hi as ComponentSizingNormalButtonVerPadding,
211
+ Pc as ComponentSizingNormalHeaderHorPadding,
212
+ Tc as ComponentSizingNormalHeaderVerPadding,
213
+ Hi as ComponentSizingNormalInputGap,
214
+ ki as ComponentSizingNormalInputHeight,
215
+ Bi as ComponentSizingNormalInputHorPadding,
216
+ vi as ComponentSizingNormalInputRadius,
217
+ Ni as ComponentSizingNormalInputSuffixPrefixHorPadding,
218
+ Gi as ComponentSizingNormalInputSuffixPrefixVerPadding,
219
+ Qi as ComponentSizingNormalMenuItemGap,
220
+ Ji as ComponentSizingNormalMenuItemHorPadding,
221
+ qi as ComponentSizingNormalMenuItemVerPadding,
222
+ ji as ComponentSizingNormalMenuVerPadding,
223
+ tc as ComponentSizingNormalMessageActionLeftPadding,
224
+ nc as ComponentSizingNormalMessageGap,
225
+ $i as ComponentSizingNormalMessageHorPadding,
226
+ oc as ComponentSizingNormalMessageVerPadding,
227
+ Zi as ComponentSizingNormalProgressGap,
228
+ Oi as ComponentSizingNormalRowGap,
229
+ Ri as ComponentSizingNormalRowHorPadding,
230
+ Fi as ComponentSizingNormalRowLabelGap,
231
+ Mi as ComponentSizingNormalRowVerPadding,
232
+ zc as ComponentSizingNormalSwitchHeight,
233
+ pc as ComponentSizingNormalSwitchHorPadding,
234
+ Lc as ComponentSizingNormalSwitchRadius,
235
+ hc as ComponentSizingNormalSwitchThumbDiameter,
236
+ Cc as ComponentSizingNormalSwitchVerPadding,
237
+ yc as ComponentSizingNormalSwitchWidth,
238
+ Dc as ComponentSizingNormalTabGap,
239
+ bc as ComponentSizingNormalTabHorPadding,
240
+ Ic as ComponentSizingNormalTabVerPadding,
241
+ mc as ComponentSizingNormalTableCellGap,
242
+ dc as ComponentSizingNormalTableCellHorPadding,
243
+ lc as ComponentSizingNormalTableCellLeadPadding,
244
+ fc as ComponentSizingNormalTableCellMinHeight,
245
+ uc as ComponentSizingNormalTableCellTrailPadding,
246
+ gc as ComponentSizingNormalTableCellVerPadding,
247
+ ic as ComponentSizingNormalToastContentGap,
248
+ rc as ComponentSizingNormalToastGap,
249
+ ec as ComponentSizingNormalToastHorPadding,
250
+ ac as ComponentSizingNormalToastVerPadding,
251
+ Ti as ComponentSizingNormalUtilityButtonGap,
252
+ bi as ComponentSizingNormalUtilityButtonHorPadding,
253
+ Pi as ComponentSizingNormalUtilityButtonIconPadding,
254
+ Ii as ComponentSizingNormalUtilityButtonRadius,
255
+ Di as ComponentSizingNormalUtilityButtonVerPadding,
256
+ jc as ComponentSizingSmallActionRowGap,
257
+ Yc as ComponentSizingSmallActionRowHorPadding,
258
+ Kc as ComponentSizingSmallActionRowVerPadding,
259
+ ps as ComponentSizingSmallAvatarHeight,
260
+ ys as ComponentSizingSmallAvatarRadius,
261
+ Cs as ComponentSizingSmallAvatarWidth,
262
+ Zc as ComponentSizingSmallBadgeGap,
263
+ qc as ComponentSizingSmallBadgeLeftPadding,
264
+ $c as ComponentSizingSmallBadgeRadius,
265
+ Jc as ComponentSizingSmallBadgeRightPadding,
266
+ Qc as ComponentSizingSmallBadgeVerPadding,
267
+ ts as ComponentSizingSmallBreadcrumbGap,
268
+ os as ComponentSizingSmallBreadcrumbHorPadding,
269
+ ns as ComponentSizingSmallBreadcrumbVerPadding,
270
+ Hc as ComponentSizingSmallButtonGap,
271
+ kc as ComponentSizingSmallButtonHorPadding,
272
+ Bc as ComponentSizingSmallButtonRadius,
273
+ vc as ComponentSizingSmallButtonVerPadding,
274
+ Os as ComponentSizingSmallHeaderHorPadding,
275
+ Ms as ComponentSizingSmallHeaderVerPadding,
276
+ Vc as ComponentSizingSmallInputGap,
277
+ wc as ComponentSizingSmallInputHeight,
278
+ Fc as ComponentSizingSmallInputHorPadding,
279
+ Ac as ComponentSizingSmallInputRadius,
280
+ Ec as ComponentSizingSmallInputSuffixPrefixHorPadding,
281
+ Wc as ComponentSizingSmallInputSuffixPrefixVerPadding,
282
+ is as ComponentSizingSmallMenuItemGap,
283
+ rs as ComponentSizingSmallMenuItemHorPadding,
284
+ as as ComponentSizingSmallMenuItemVerPadding,
285
+ es as ComponentSizingSmallMenuVerPadding,
286
+ us as ComponentSizingSmallMessageActionLeftPadding,
287
+ ls as ComponentSizingSmallMessageGap,
288
+ ss as ComponentSizingSmallMessageHorPadding,
289
+ Ss as ComponentSizingSmallMessageVerPadding,
290
+ cs as ComponentSizingSmallProgressGap,
291
+ _c as ComponentSizingSmallRowGap,
292
+ xc as ComponentSizingSmallRowHorPadding,
293
+ Xc as ComponentSizingSmallRowLabelGap,
294
+ Uc as ComponentSizingSmallRowVerPadding,
295
+ ks as ComponentSizingSmallSwitchHeight,
296
+ Ps as ComponentSizingSmallSwitchHorPadding,
297
+ Hs as ComponentSizingSmallSwitchRadius,
298
+ vs as ComponentSizingSmallSwitchThumbDiameter,
299
+ Ts as ComponentSizingSmallSwitchVerPadding,
300
+ Bs as ComponentSizingSmallSwitchWidth,
301
+ Rs as ComponentSizingSmallTabGap,
302
+ Gs as ComponentSizingSmallTabHorPadding,
303
+ Ns as ComponentSizingSmallTabVerPadding,
304
+ bs as ComponentSizingSmallTableCellGap,
305
+ Is as ComponentSizingSmallTableCellHorPadding,
306
+ zs as ComponentSizingSmallTableCellLeadPadding,
307
+ Ds as ComponentSizingSmallTableCellMinHeight,
308
+ hs as ComponentSizingSmallTableCellTrailPadding,
309
+ Ls as ComponentSizingSmallTableCellVerPadding,
310
+ fs as ComponentSizingSmallToastContentGap,
311
+ ms as ComponentSizingSmallToastGap,
312
+ gs as ComponentSizingSmallToastHorPadding,
313
+ ds as ComponentSizingSmallToastVerPadding,
314
+ Mc as ComponentSizingSmallUtilityButtonGap,
315
+ Gc as ComponentSizingSmallUtilityButtonHorPadding,
316
+ Oc as ComponentSizingSmallUtilityButtonIconPadding,
317
+ Nc as ComponentSizingSmallUtilityButtonRadius,
318
+ Rc as ComponentSizingSmallUtilityButtonVerPadding,
319
+ Xr as IconsIllustrationsValueIconLg,
320
+ _r as IconsIllustrationsValueIconMed,
321
+ Ur as IconsIllustrationsValueIconSm,
322
+ Yr as IconsIllustrationsValueIconXl,
323
+ xr as IconsIllustrationsValueIconXs,
324
+ Kr as IconsIllustrationsValueIconXxl,
325
+ jr as IconsIllustrationsValueIconXxxl,
326
+ Zr as IconsIllustrationsValueIllustrationLg,
327
+ Qr as IconsIllustrationsValueIllustrationMd,
328
+ Jr as IconsIllustrationsValueIllustrationSm,
329
+ $r as IconsIllustrationsValueIllustrationXl,
330
+ qr as IconsIllustrationsValueIllustrationXs,
331
+ ni as MotionMode1Fast,
332
+ ti as MotionMode1Medium,
333
+ ei as MotionMode1Slow,
334
+ oi as MotionMode1Veryfast,
335
+ ai as MotionMode1Veryslow,
336
+ hr as SemanticColoursDarkBrandPrimaryGoldrush,
337
+ yr as SemanticColoursDarkBrandPrimaryShadyforest,
338
+ zr as SemanticColoursDarkBrandPrimaryShadyforestLight,
339
+ Ir as SemanticColoursDarkBrandSecondaryGlacierlake,
340
+ br as SemanticColoursDarkBrandSecondaryNewleaf,
341
+ Lr as SemanticColoursDarkBrandSecondaryTreetrunk,
342
+ Dr as SemanticColoursDarkHighlightsCopy,
343
+ Tr as SemanticColoursDarkHighlightsCopyAlt,
344
+ Br as SemanticColoursDarkIllustrationShapesBlue,
345
+ kr as SemanticColoursDarkIllustrationShapesGreen,
346
+ vr as SemanticColoursDarkIllustrationShapesRed,
347
+ Pr as SemanticColoursDarkIllustrationShapesYellow,
348
+ Sr as SemanticColoursDarkInputsOnsurfaceActive,
349
+ ur as SemanticColoursDarkInputsOnsurfaceDisabled,
350
+ gr as SemanticColoursDarkInputsOnsurfaceFocus,
351
+ dr as SemanticColoursDarkInputsOnsurfaceFocusBorder,
352
+ lr as SemanticColoursDarkInputsOnsurfacePlaceholder,
353
+ mr as SemanticColoursDarkInputsProgressEmpty,
354
+ Cr as SemanticColoursDarkInputsProgressError,
355
+ pr as SemanticColoursDarkInputsProgressInfo,
356
+ fr as SemanticColoursDarkInputsProgressSuccess,
357
+ ar as SemanticColoursDarkInputsSurfaceActive,
358
+ cr as SemanticColoursDarkInputsSurfaceBorder,
359
+ rr as SemanticColoursDarkInputsSurfaceChecked,
360
+ ir as SemanticColoursDarkInputsSurfaceCheckedHover,
361
+ sr as SemanticColoursDarkInputsSurfaceDisabled,
362
+ wa as SemanticColoursDarkInteractiveDisabledSurface,
363
+ Va as SemanticColoursDarkInteractiveIconActive,
364
+ Aa as SemanticColoursDarkInteractiveIconOnsurface,
365
+ va as SemanticColoursDarkInteractiveLinkActive,
366
+ Na as SemanticColoursDarkInteractiveLinkActiveInverse,
367
+ Ha as SemanticColoursDarkInteractiveLinkHover,
368
+ Ga as SemanticColoursDarkInteractiveLinkHoverInverse,
369
+ Fa as SemanticColoursDarkInteractiveNotificationBorderHover,
370
+ Ma as SemanticColoursDarkInteractiveNotificationReadSurface,
371
+ Oa as SemanticColoursDarkInteractiveNotificationSurfaceHover,
372
+ Ra as SemanticColoursDarkInteractiveNotificationUnreadSurface,
373
+ sa as SemanticColoursDarkInteractivePrimaryActive,
374
+ ga as SemanticColoursDarkInteractivePrimaryDisabled,
375
+ Sa as SemanticColoursDarkInteractivePrimaryHover,
376
+ ua as SemanticColoursDarkInteractivePrimaryOnsurface,
377
+ la as SemanticColoursDarkInteractivePrimaryPressed,
378
+ da as SemanticColoursDarkInteractiveSecondaryActive,
379
+ pa as SemanticColoursDarkInteractiveSecondaryDisabled,
380
+ ma as SemanticColoursDarkInteractiveSecondaryHover,
381
+ Ca as SemanticColoursDarkInteractiveSecondaryOnsurface,
382
+ fa as SemanticColoursDarkInteractiveSecondaryPressed,
383
+ ya as SemanticColoursDarkInteractiveTertiaryActive,
384
+ Ia as SemanticColoursDarkInteractiveTertiaryDisabled,
385
+ za as SemanticColoursDarkInteractiveTertiaryHover,
386
+ La as SemanticColoursDarkInteractiveTertiaryOnsurface,
387
+ ha as SemanticColoursDarkInteractiveTertiaryPressed,
388
+ ba as SemanticColoursDarkInteractiveUtilityActive,
389
+ Pa as SemanticColoursDarkInteractiveUtilityBorder,
390
+ ka as SemanticColoursDarkInteractiveUtilityDisabled,
391
+ Da as SemanticColoursDarkInteractiveUtilityHover,
392
+ Ba as SemanticColoursDarkInteractiveUtilityOnsurface,
393
+ Ta as SemanticColoursDarkInteractiveUtilityPressed,
394
+ qa as SemanticColoursDarkOnsurfaceCopy,
395
+ Za as SemanticColoursDarkOnsurfaceCopyDark,
396
+ Qa as SemanticColoursDarkOnsurfaceCopyDisabled,
397
+ nr as SemanticColoursDarkOnsurfaceCopyInvert,
398
+ Ja as SemanticColoursDarkOnsurfaceCopyLight,
399
+ tr as SemanticColoursDarkOnsurfaceCopyLightInvert,
400
+ $a as SemanticColoursDarkOnsurfaceIcon,
401
+ or as SemanticColoursDarkOnsurfaceIconDisabled,
402
+ er as SemanticColoursDarkOnsurfaceIconInvert,
403
+ ia as SemanticColoursDarkStatusDisabledDefault,
404
+ ca as SemanticColoursDarkStatusDisabledSurface,
405
+ Me as SemanticColoursDarkStatusErrorDefault,
406
+ Oe as SemanticColoursDarkStatusErrorOnsurface,
407
+ Ee as SemanticColoursDarkStatusErrorOnsurfaceBorder,
408
+ Ae as SemanticColoursDarkStatusErrorOnsurfaceHover,
409
+ Fe as SemanticColoursDarkStatusErrorSurface,
410
+ Ve as SemanticColoursDarkStatusErrorSurfaceBorder,
411
+ we as SemanticColoursDarkStatusErrorSurfaceHover,
412
+ na as SemanticColoursDarkStatusGenericDefault,
413
+ ea as SemanticColoursDarkStatusGenericOnsurface,
414
+ ra as SemanticColoursDarkStatusGenericOnsurfaceBorder,
415
+ ta as SemanticColoursDarkStatusGenericSurface,
416
+ aa as SemanticColoursDarkStatusGenericSurfaceBorder,
417
+ je as SemanticColoursDarkStatusInfoDefault,
418
+ Qe as SemanticColoursDarkStatusInfoOnsurface,
419
+ oa as SemanticColoursDarkStatusInfoOnsurfaceBorder,
420
+ Ze as SemanticColoursDarkStatusInfoOnsurfaceHover,
421
+ qe as SemanticColoursDarkStatusInfoSurface,
422
+ $e as SemanticColoursDarkStatusInfoSurfaceBorder,
423
+ Je as SemanticColoursDarkStatusInfoSurfaceHover,
424
+ Pe as SemanticColoursDarkStatusSuccessDefault,
425
+ Be as SemanticColoursDarkStatusSuccessOnsurface,
426
+ Ge as SemanticColoursDarkStatusSuccessOnsurfaceBorder,
427
+ ve as SemanticColoursDarkStatusSuccessOnsurfaceHover,
428
+ Ne as SemanticColoursDarkStatusSuccessSecondary,
429
+ ke as SemanticColoursDarkStatusSuccessSurface,
430
+ Re as SemanticColoursDarkStatusSuccessSurfaceBorder,
431
+ He as SemanticColoursDarkStatusSuccessSurfaceHover,
432
+ We as SemanticColoursDarkStatusWarningDefault,
433
+ _e as SemanticColoursDarkStatusWarningOnsurface,
434
+ Ke as SemanticColoursDarkStatusWarningOnsurfaceBorder,
435
+ Xe as SemanticColoursDarkStatusWarningOnsurfaceHover,
436
+ xe as SemanticColoursDarkStatusWarningSurface,
437
+ Ye as SemanticColoursDarkStatusWarningSurfaceBorder,
438
+ Ue as SemanticColoursDarkStatusWarningSurfaceHover,
439
+ Ua as SemanticColoursDarkSurfaceBorder,
440
+ _a as SemanticColoursDarkSurfaceBorderInvert,
441
+ ja as SemanticColoursDarkSurfaceBorderLight,
442
+ Ea as SemanticColoursDarkSurfaceDefault,
443
+ Xa as SemanticColoursDarkSurfaceInvert,
444
+ Wa as SemanticColoursDarkSurfaceSecondary,
445
+ Ya as SemanticColoursDarkSurfaceSecondaryInvert,
446
+ xa as SemanticColoursDarkSurfaceTertiary,
447
+ Ka as SemanticColoursDarkSurfaceTertiaryInvert,
448
+ Fr as SemanticColoursDarkTimeboxAfternoonDefault,
449
+ wr as SemanticColoursDarkTimeboxAfternoonSurface,
450
+ Ar as SemanticColoursDarkTimeboxAfternoonSurfaceAlt,
451
+ Hr as SemanticColoursDarkTimeboxAlldayDefault,
452
+ Nr as SemanticColoursDarkTimeboxAlldaySurface,
453
+ Gr as SemanticColoursDarkTimeboxAlldaySurfaceAlt,
454
+ Vr as SemanticColoursDarkTimeboxEveningDefault,
455
+ Er as SemanticColoursDarkTimeboxEveningSurface,
456
+ Wr as SemanticColoursDarkTimeboxEveningSurfaceAlt,
457
+ Rr as SemanticColoursDarkTimeboxMorningDefault,
458
+ Mr as SemanticColoursDarkTimeboxMorningSurface,
459
+ Or as SemanticColoursDarkTimeboxMorningSurfaceAlt,
460
+ ae as SemanticColoursLightBrandPrimaryGoldrush,
461
+ te as SemanticColoursLightBrandPrimaryShadyforest,
462
+ ee as SemanticColoursLightBrandPrimaryShadyforestLight,
463
+ ie as SemanticColoursLightBrandSecondaryGlacierlake,
464
+ ce as SemanticColoursLightBrandSecondaryNewleaf,
465
+ re as SemanticColoursLightBrandSecondaryTreetrunk,
466
+ se as SemanticColoursLightHighlightsCopy,
467
+ Se as SemanticColoursLightHighlightsCopyAlt,
468
+ ue as SemanticColoursLightIllustrationShapesBlue,
469
+ ge as SemanticColoursLightIllustrationShapesGreen,
470
+ de as SemanticColoursLightIllustrationShapesRed,
471
+ le as SemanticColoursLightIllustrationShapesYellow,
472
+ Kt as SemanticColoursLightInputsOnsurfaceActive,
473
+ qt as SemanticColoursLightInputsOnsurfaceDisabled,
474
+ Jt as SemanticColoursLightInputsOnsurfaceFocus,
475
+ Qt as SemanticColoursLightInputsOnsurfaceFocusBorder,
476
+ jt as SemanticColoursLightInputsOnsurfacePlaceholder,
477
+ Zt as SemanticColoursLightInputsProgressEmpty,
478
+ oe as SemanticColoursLightInputsProgressError,
479
+ ne as SemanticColoursLightInputsProgressInfo,
480
+ $t as SemanticColoursLightInputsProgressSuccess,
481
+ xt as SemanticColoursLightInputsSurfaceActive,
482
+ Xt as SemanticColoursLightInputsSurfaceBorder,
483
+ Ut as SemanticColoursLightInputsSurfaceChecked,
484
+ _t as SemanticColoursLightInputsSurfaceCheckedHover,
485
+ Yt as SemanticColoursLightInputsSurfaceDisabled,
486
+ Lt as SemanticColoursLightInteractiveDisabledSurface,
487
+ bt as SemanticColoursLightInteractiveIconActive,
488
+ It as SemanticColoursLightInteractiveIconOnsurface,
489
+ dt as SemanticColoursLightInteractiveLinkActive,
490
+ ft as SemanticColoursLightInteractiveLinkActiveInverse,
491
+ mt as SemanticColoursLightInteractiveLinkHover,
492
+ Ct as SemanticColoursLightInteractiveLinkHoverInverse,
493
+ ht as SemanticColoursLightInteractiveNotificationBorderHover,
494
+ yt as SemanticColoursLightInteractiveNotificationReadSurface,
495
+ zt as SemanticColoursLightInteractiveNotificationSurfaceHover,
496
+ pt as SemanticColoursLightInteractiveNotificationUnreadSurface,
497
+ Yn as SemanticColoursLightInteractivePrimaryActive,
498
+ Jn as SemanticColoursLightInteractivePrimaryDisabled,
499
+ Kn as SemanticColoursLightInteractivePrimaryHover,
500
+ qn as SemanticColoursLightInteractivePrimaryOnsurface,
501
+ jn as SemanticColoursLightInteractivePrimaryPressed,
502
+ Qn as SemanticColoursLightInteractiveSecondaryActive,
503
+ nt as SemanticColoursLightInteractiveSecondaryDisabled,
504
+ Zn as SemanticColoursLightInteractiveSecondaryHover,
505
+ ot as SemanticColoursLightInteractiveSecondaryOnsurface,
506
+ $n as SemanticColoursLightInteractiveSecondaryPressed,
507
+ tt as SemanticColoursLightInteractiveTertiaryActive,
508
+ it as SemanticColoursLightInteractiveTertiaryDisabled,
509
+ et as SemanticColoursLightInteractiveTertiaryHover,
510
+ rt as SemanticColoursLightInteractiveTertiaryOnsurface,
511
+ at as SemanticColoursLightInteractiveTertiaryPressed,
512
+ ct as SemanticColoursLightInteractiveUtilityActive,
513
+ lt as SemanticColoursLightInteractiveUtilityBorder,
514
+ gt as SemanticColoursLightInteractiveUtilityDisabled,
515
+ st as SemanticColoursLightInteractiveUtilityHover,
516
+ ut as SemanticColoursLightInteractiveUtilityOnsurface,
517
+ St as SemanticColoursLightInteractiveUtilityPressed,
518
+ Rt as SemanticColoursLightOnsurfaceCopy,
519
+ Ft as SemanticColoursLightOnsurfaceCopyDark,
520
+ Ot as SemanticColoursLightOnsurfaceCopyDisabled,
521
+ Vt as SemanticColoursLightOnsurfaceCopyInvert,
522
+ Mt as SemanticColoursLightOnsurfaceCopyLight,
523
+ Et as SemanticColoursLightOnsurfaceCopyLightInvert,
524
+ wt as SemanticColoursLightOnsurfaceIcon,
525
+ At as SemanticColoursLightOnsurfaceIconDisabled,
526
+ Wt as SemanticColoursLightOnsurfaceIconInvert,
527
+ _n as SemanticColoursLightStatusDisabledDefault,
528
+ Xn as SemanticColoursLightStatusDisabledSurface,
529
+ yn as SemanticColoursLightStatusErrorDefault,
530
+ zn as SemanticColoursLightStatusErrorOnsurface,
531
+ Dn as SemanticColoursLightStatusErrorOnsurfaceBorder,
532
+ In as SemanticColoursLightStatusErrorOnsurfaceHover,
533
+ hn as SemanticColoursLightStatusErrorSurface,
534
+ bn as SemanticColoursLightStatusErrorSurfaceBorder,
535
+ Ln as SemanticColoursLightStatusErrorSurfaceHover,
536
+ Vn as SemanticColoursLightStatusGenericDefault,
537
+ Wn as SemanticColoursLightStatusGenericOnsurface,
538
+ Un as SemanticColoursLightStatusGenericOnsurfaceBorder,
539
+ En as SemanticColoursLightStatusGenericSurface,
540
+ xn as SemanticColoursLightStatusGenericSurfaceBorder,
541
+ Gn as SemanticColoursLightStatusInfoDefault,
542
+ On as SemanticColoursLightStatusInfoOnsurface,
543
+ An as SemanticColoursLightStatusInfoOnsurfaceBorder,
544
+ Fn as SemanticColoursLightStatusInfoOnsurfaceHover,
545
+ Rn as SemanticColoursLightStatusInfoSurface,
546
+ wn as SemanticColoursLightStatusInfoSurfaceBorder,
547
+ Mn as SemanticColoursLightStatusInfoSurfaceHover,
548
+ ln as SemanticColoursLightStatusSuccessDefault,
549
+ un as SemanticColoursLightStatusSuccessOnsurface,
550
+ Cn as SemanticColoursLightStatusSuccessOnsurfaceBorder,
551
+ dn as SemanticColoursLightStatusSuccessOnsurfaceHover,
552
+ fn as SemanticColoursLightStatusSuccessSecondary,
553
+ gn as SemanticColoursLightStatusSuccessSurface,
554
+ pn as SemanticColoursLightStatusSuccessSurfaceBorder,
555
+ mn as SemanticColoursLightStatusSuccessSurfaceHover,
556
+ Tn as SemanticColoursLightStatusWarningDefault,
557
+ kn as SemanticColoursLightStatusWarningOnsurface,
558
+ Nn as SemanticColoursLightStatusWarningOnsurfaceBorder,
559
+ vn as SemanticColoursLightStatusWarningOnsurfaceHover,
560
+ Pn as SemanticColoursLightStatusWarningSurface,
561
+ Hn as SemanticColoursLightStatusWarningSurfaceBorder,
562
+ Bn as SemanticColoursLightStatusWarningSurfaceHover,
563
+ Bt as SemanticColoursLightSurfaceBorder,
564
+ kt as SemanticColoursLightSurfaceBorderInvert,
565
+ Gt as SemanticColoursLightSurfaceBorderLight,
566
+ Dt as SemanticColoursLightSurfaceDefault,
567
+ vt as SemanticColoursLightSurfaceInvert,
568
+ Tt as SemanticColoursLightSurfaceSecondary,
569
+ Ht as SemanticColoursLightSurfaceSecondaryInvert,
570
+ Pt as SemanticColoursLightSurfaceTertiary,
571
+ Nt as SemanticColoursLightSurfaceTertiaryInvert,
572
+ he as SemanticColoursLightTimeboxAfternoonDefault,
573
+ Le as SemanticColoursLightTimeboxAfternoonSurface,
574
+ Ie as SemanticColoursLightTimeboxAfternoonSurfaceAlt,
575
+ me as SemanticColoursLightTimeboxAlldayDefault,
576
+ fe as SemanticColoursLightTimeboxAlldaySurface,
577
+ Ce as SemanticColoursLightTimeboxAlldaySurfaceAlt,
578
+ be as SemanticColoursLightTimeboxEveningDefault,
579
+ De as SemanticColoursLightTimeboxEveningSurface,
580
+ Te as SemanticColoursLightTimeboxEveningSurfaceAlt,
581
+ pe as SemanticColoursLightTimeboxMorningDefault,
582
+ ye as SemanticColoursLightTimeboxMorningSurface,
583
+ ze as SemanticColoursLightTimeboxMorningSurfaceAlt,
584
+ sn as Size025,
585
+ rn as Size05,
586
586
  No as Size1,
587
- Vo as Size10,
588
- Eo as Size12,
589
- Wo as Size13,
590
- xo as Size14,
591
- an as Size15,
592
- Uo as Size16,
593
- _o as Size18,
594
- Go as Size2,
595
- Xo as Size20,
596
- Yo as Size24,
597
- cn as Size25,
598
- Ko as Size27,
599
- jo as Size28,
600
- Ro as Size3,
601
- qo as Size30,
602
- Jo as Size32,
603
- Qo as Size34,
604
- Zo as Size35,
605
- $o as Size39,
606
- Mo as Size4,
607
- on as Size43,
608
- Oo as Size5,
609
- nn as Size50,
610
- Fo as Size6,
611
- tn as Size64,
612
- wo as Size7,
613
- Ao as Size8,
614
- rl as TypographyMediumFontSizeBody1,
615
- Nl as TypographyMediumFontSizeBody2,
616
- Gl as TypographyMediumFontSizeBody3,
617
- Rl as TypographyMediumFontSizeBody4,
618
- Ml as TypographyMediumFontSizeBody5,
619
- Xl as TypographyMediumFontSizeDigits1,
620
- Yl as TypographyMediumFontSizeDigits2,
621
- Kl as TypographyMediumFontSizeDigits3,
622
- jS as TypographyMediumFontSizeDisplay1,
623
- qS as TypographyMediumFontSizeDisplay2,
624
- JS as TypographyMediumFontSizeDisplay3,
625
- QS as TypographyMediumFontSizeHeading1,
626
- ZS as TypographyMediumFontSizeHeading2,
627
- Bl as TypographyMediumFontSizeHeading3,
628
- Vl as TypographyMediumFontSizeLabel1,
629
- El as TypographyMediumFontSizeLabel2,
630
- Wl as TypographyMediumFontSizeLabel3,
631
- xl as TypographyMediumFontSizeLink1,
632
- Ul as TypographyMediumFontSizeLink2,
633
- _l as TypographyMediumFontSizeLink3,
634
- Ol as TypographyMediumFontSizeMessage,
635
- Fl as TypographyMediumFontSizeOverline1,
636
- wl as TypographyMediumFontSizeOverline2,
637
- Al as TypographyMediumFontSizeOverline3,
638
- kl as TypographyMediumFontSizeSubHeading1,
639
- vl as TypographyMediumFontSizeSubHeading2,
640
- Hl as TypographyMediumFontSizeSubHeading3,
641
- Zl as TypographyNarrowFontSizeBody1,
642
- $l as TypographyNarrowFontSizeBody2,
643
- ou as TypographyNarrowFontSizeBody3,
644
- nu as TypographyNarrowFontSizeBody4,
645
- tu as TypographyNarrowFontSizeBody5,
646
- du as TypographyNarrowFontSizeDigits1,
647
- mu as TypographyNarrowFontSizeDigits2,
648
- fu as TypographyNarrowFontSizeDigits3,
649
- $S as TypographyNarrowFontSizeDisplay1,
650
- ol as TypographyNarrowFontSizeDisplay2,
651
- nl as TypographyNarrowFontSizeDisplay3,
652
- tl as TypographyNarrowFontSizeHeading1,
653
- el as TypographyNarrowFontSizeHeading2,
654
- jl as TypographyNarrowFontSizeHeading3,
655
- cu as TypographyNarrowFontSizeLabel1,
656
- su as TypographyNarrowFontSizeLabel2,
657
- Su as TypographyNarrowFontSizeLabel3,
658
- lu as TypographyNarrowFontSizeLink1,
659
- uu as TypographyNarrowFontSizeLink2,
660
- gu as TypographyNarrowFontSizeLink3,
661
- eu as TypographyNarrowFontSizeMessage,
662
- au as TypographyNarrowFontSizeOverline1,
663
- ru as TypographyNarrowFontSizeOverline2,
664
- iu as TypographyNarrowFontSizeOverline3,
665
- ql as TypographyNarrowFontSizeSubHeading1,
666
- Jl as TypographyNarrowFontSizeSubHeading2,
667
- Ql as TypographyNarrowFontSizeSubHeading3,
587
+ Wo as Size10,
588
+ xo as Size12,
589
+ Uo as Size13,
590
+ _o as Size14,
591
+ cn as Size15,
592
+ Xo as Size16,
593
+ Yo as Size18,
594
+ Go as Size1_5,
595
+ Ro as Size2,
596
+ Ko as Size20,
597
+ jo as Size24,
598
+ Sn as Size25,
599
+ qo as Size27,
600
+ Jo as Size28,
601
+ Mo as Size2_5,
602
+ Oo as Size3,
603
+ Qo as Size30,
604
+ Zo as Size32,
605
+ $o as Size34,
606
+ on as Size35,
607
+ nn as Size39,
608
+ Fo as Size4,
609
+ tn as Size43,
610
+ wo as Size5,
611
+ en as Size50,
612
+ Ao as Size6,
613
+ an as Size64,
614
+ Vo as Size7,
615
+ Eo as Size8,
616
+ cl as TypographyMediumFontSizeBody1,
617
+ Rl as TypographyMediumFontSizeBody2,
618
+ Ml as TypographyMediumFontSizeBody3,
619
+ Ol as TypographyMediumFontSizeBody4,
620
+ Fl as TypographyMediumFontSizeBody5,
621
+ Kl as TypographyMediumFontSizeDigits1,
622
+ jl as TypographyMediumFontSizeDigits2,
623
+ ql as TypographyMediumFontSizeDigits3,
624
+ JS as TypographyMediumFontSizeDisplay1,
625
+ QS as TypographyMediumFontSizeDisplay2,
626
+ ZS as TypographyMediumFontSizeDisplay3,
627
+ $S as TypographyMediumFontSizeHeading1,
628
+ ol as TypographyMediumFontSizeHeading2,
629
+ vl as TypographyMediumFontSizeHeading3,
630
+ Wl as TypographyMediumFontSizeLabel1,
631
+ xl as TypographyMediumFontSizeLabel2,
632
+ Ul as TypographyMediumFontSizeLabel3,
633
+ _l as TypographyMediumFontSizeLink1,
634
+ Xl as TypographyMediumFontSizeLink2,
635
+ Yl as TypographyMediumFontSizeLink3,
636
+ wl as TypographyMediumFontSizeMessage,
637
+ Al as TypographyMediumFontSizeOverline1,
638
+ Vl as TypographyMediumFontSizeOverline2,
639
+ El as TypographyMediumFontSizeOverline3,
640
+ Hl as TypographyMediumFontSizeSubHeading1,
641
+ Nl as TypographyMediumFontSizeSubHeading2,
642
+ Gl as TypographyMediumFontSizeSubHeading3,
643
+ ou as TypographyNarrowFontSizeBody1,
644
+ nu as TypographyNarrowFontSizeBody2,
645
+ tu as TypographyNarrowFontSizeBody3,
646
+ eu as TypographyNarrowFontSizeBody4,
647
+ au as TypographyNarrowFontSizeBody5,
648
+ fu as TypographyNarrowFontSizeDigits1,
649
+ Cu as TypographyNarrowFontSizeDigits2,
650
+ pu as TypographyNarrowFontSizeDigits3,
651
+ nl as TypographyNarrowFontSizeDisplay1,
652
+ tl as TypographyNarrowFontSizeDisplay2,
653
+ el as TypographyNarrowFontSizeDisplay3,
654
+ al as TypographyNarrowFontSizeHeading1,
655
+ rl as TypographyNarrowFontSizeHeading2,
656
+ Jl as TypographyNarrowFontSizeHeading3,
657
+ Su as TypographyNarrowFontSizeLabel1,
658
+ lu as TypographyNarrowFontSizeLabel2,
659
+ uu as TypographyNarrowFontSizeLabel3,
660
+ gu as TypographyNarrowFontSizeLink1,
661
+ du as TypographyNarrowFontSizeLink2,
662
+ mu as TypographyNarrowFontSizeLink3,
663
+ ru as TypographyNarrowFontSizeMessage,
664
+ iu as TypographyNarrowFontSizeOverline1,
665
+ cu as TypographyNarrowFontSizeOverline2,
666
+ su as TypographyNarrowFontSizeOverline3,
667
+ Ql as TypographyNarrowFontSizeSubHeading1,
668
+ Zl as TypographyNarrowFontSizeSubHeading2,
669
+ $l as TypographyNarrowFontSizeSubHeading3,
668
670
  Ho as TypographyPrimaryFontFamily,
669
- al as TypographyWideFontSizeBody1,
670
- ll as TypographyWideFontSizeBody2,
671
- ul as TypographyWideFontSizeBody3,
672
- gl as TypographyWideFontSizeBody4,
673
- dl as TypographyWideFontSizeBody5,
674
- Dl as TypographyWideFontSizeDigits1,
675
- Tl as TypographyWideFontSizeDigits2,
676
- Pl as TypographyWideFontSizeDigits3,
677
- US as TypographyWideFontSizeDisplay1,
678
- _S as TypographyWideFontSizeDisplay2,
679
- XS as TypographyWideFontSizeDisplay3,
680
- YS as TypographyWideFontSizeHeading1,
681
- KS as TypographyWideFontSizeHeading2,
682
- il as TypographyWideFontSizeHeading3,
683
- yl as TypographyWideFontSizeLabel1,
684
- zl as TypographyWideFontSizeLabel2,
685
- hl as TypographyWideFontSizeLabel3,
686
- Ll as TypographyWideFontSizeLink1,
687
- Il as TypographyWideFontSizeLink2,
688
- bl as TypographyWideFontSizeLink3,
689
- ml as TypographyWideFontSizeMessage,
690
- fl as TypographyWideFontSizeOverline1,
691
- Cl as TypographyWideFontSizeOverline2,
692
- pl as TypographyWideFontSizeOverline3,
693
- cl as TypographyWideFontSizeSubHeading1,
694
- sl as TypographyWideFontSizeSubHeading2,
695
- Sl as TypographyWideFontSizeSubHeading3,
696
- Cu as colors
671
+ il as TypographyWideFontSizeBody1,
672
+ gl as TypographyWideFontSizeBody2,
673
+ dl as TypographyWideFontSizeBody3,
674
+ ml as TypographyWideFontSizeBody4,
675
+ fl as TypographyWideFontSizeBody5,
676
+ Pl as TypographyWideFontSizeDigits1,
677
+ Bl as TypographyWideFontSizeDigits2,
678
+ kl as TypographyWideFontSizeDigits3,
679
+ XS as TypographyWideFontSizeDisplay1,
680
+ YS as TypographyWideFontSizeDisplay2,
681
+ KS as TypographyWideFontSizeDisplay3,
682
+ jS as TypographyWideFontSizeHeading1,
683
+ qS as TypographyWideFontSizeHeading2,
684
+ sl as TypographyWideFontSizeHeading3,
685
+ hl as TypographyWideFontSizeLabel1,
686
+ Ll as TypographyWideFontSizeLabel2,
687
+ Il as TypographyWideFontSizeLabel3,
688
+ bl as TypographyWideFontSizeLink1,
689
+ Dl as TypographyWideFontSizeLink2,
690
+ Tl as TypographyWideFontSizeLink3,
691
+ Cl as TypographyWideFontSizeMessage,
692
+ pl as TypographyWideFontSizeOverline1,
693
+ yl as TypographyWideFontSizeOverline2,
694
+ zl as TypographyWideFontSizeOverline3,
695
+ Sl as TypographyWideFontSizeSubHeading1,
696
+ ll as TypographyWideFontSizeSubHeading2,
697
+ ul as TypographyWideFontSizeSubHeading3,
698
+ yu as colors
697
699
  };