@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.
- package/README.md +4 -6
- package/dist/{Typography-B2J8CPnt.js → Typography-8BO7aTuQ.js} +7 -6
- package/dist/components/Avatar/Avatar.js +4 -3
- package/dist/components/Avatar/__tests__/Avatar.test.js +1 -1
- package/dist/components/Badge/Badge.js +4 -3
- package/dist/components/Badge/__tests__/Badge.test.js +1 -1
- package/dist/components/Breadcrumb/Breadcrumb.js +1 -1
- package/dist/components/Breadcrumb/__tests__/Breadcrumb.test.js +1 -1
- package/dist/components/Button/Button.d.ts +4 -3
- package/dist/components/Button/Button.js +28 -24
- package/dist/components/Button/IconButton.d.ts +8 -0
- package/dist/components/Button/IconButton.js +29 -0
- package/dist/components/Button/UtilityButton.d.ts +5 -0
- package/dist/components/Button/UtilityButton.js +29 -0
- package/dist/components/Button/__stories__/Button.stories.d.ts +0 -4
- package/dist/components/Button/__stories__/IconButton.stories.d.ts +8 -0
- package/dist/components/Button/__stories__/UtilityButton.stories.d.ts +7 -0
- package/dist/components/Button/__tests__/Button.test.js +5 -4
- package/dist/components/Button/icon-button-styles.d.ts +12 -0
- package/dist/components/Button/icon-button-styles.js +65 -0
- package/dist/components/Button/index.d.ts +4 -0
- package/dist/components/Button/index.js +6 -2
- package/dist/components/Button/styles.d.ts +4 -3
- package/dist/components/Button/styles.js +37 -37
- package/dist/components/Card/__tests__/Card.test.js +1 -1
- package/dist/components/Checkbox/Checkbox.js +4 -3
- package/dist/components/Checkbox/__tests__/Checkbox.test.js +1 -1
- package/dist/components/Dashboard/__stories__/DashboardLayoutContent.js +4 -3
- package/dist/components/Dashboard/__stories__/DashboardLayoutHeader.js +5 -4
- package/dist/components/Dashboard/__tests__/Dashboard.test.js +1 -1
- package/dist/components/DatePicker/__tests__/DatePicker.test.js +1 -1
- package/dist/components/DateRangePicker/__tests__/DateRangePicker.test.js +1 -1
- package/dist/components/ErrorBoundary/ErrorBoundary.js +8 -7
- package/dist/components/ErrorBoundary/__tests__/ErrorBoundary.test.js +1 -1
- package/dist/components/ErrorBoundaryFallback/ErrorBoundaryFallback.js +4 -3
- package/dist/components/Form/Form.js +1 -1
- package/dist/components/Form/__stories__/FormStory.js +26 -25
- package/dist/components/Form/__tests__/form.test.js +2 -2
- package/dist/components/Form/index.js +1 -1
- package/dist/components/FormBrandon/Form.js +1 -1
- package/dist/components/FormBrandon/__stories__/FormStory.js +4 -3
- package/dist/components/FormBrandon/__tests__/form.test.js +1 -1
- package/dist/components/Input/Input.js +1 -1
- package/dist/components/Input/__tests__/Input.test.js +1 -1
- package/dist/components/Layout/Content/ResponsiveContent.js +4 -3
- package/dist/components/Layout/MainLayout/MainLayout.js +1 -1
- package/dist/components/Layout/__tests__/Layout.test.js +1 -1
- package/dist/components/Message/Message.js +11 -10
- package/dist/components/Message/__tests__/Message.test.js +1 -1
- package/dist/components/Notification/Notification.js +4 -3
- package/dist/components/Notification/NotificationBadge/__tests__/NotificationBadge.test.js +1 -1
- package/dist/components/Notification/__tests__/Notification.test.js +1 -1
- package/dist/components/Popover/__tests__/Popover.test.js +1 -1
- package/dist/components/Progress/Progress.js +44 -50
- package/dist/components/Progress/Progress.util.js +4 -3
- package/dist/components/Progress/ProgressText.js +4 -3
- package/dist/components/Progress/__tests__/Progress.test.js +1 -1
- package/dist/components/Radio/Radio.js +4 -3
- package/dist/components/Radio/RadioGroup.js +1 -1
- package/dist/components/Radio/__tests__/RadioGroup.test.js +1 -1
- package/dist/components/Row/Row.js +1 -1
- package/dist/components/Row/RowActions/RowActions.js +4 -3
- package/dist/components/Row/RowLabelValue/RowLabelValue.js +5 -4
- package/dist/components/Row/__tests__/Row.test.js +1 -1
- package/dist/components/SegmentedControls/__tests__/SegmentedControls.test.js +1 -1
- package/dist/components/Select/Select.js +1 -1
- package/dist/components/Select/__tests__/Select.test.js +1 -1
- package/dist/components/Shapes/__tests__/Shapes.test.js +1 -1
- package/dist/components/Switch/__stories__/Switch.stories.d.ts +2 -1
- package/dist/components/Switch/__tests__/Switch.test.js +1 -1
- package/dist/components/Table/__mocks__/table-mocks.js +6 -5
- package/dist/components/Table/__tests__/Table.test.js +1 -1
- package/dist/components/Tabs/__tests__/Tabs.test.js +1 -1
- package/dist/components/Tile/__tests__/Tile.test.js +1 -1
- package/dist/components/Toast/Toast.js +3 -2
- package/dist/components/Toast/__tests__/Toast.test.js +2 -2
- package/dist/components/Toast/index.js +1 -1
- package/dist/components/Tooltip/Tooltip.js +4 -3
- package/dist/components/Tooltip/__tests__/Tooltip.test.js +1 -1
- package/dist/components/Typography/Typography.js +1 -1
- package/dist/components/Typography/__tests__/Typography.test.js +2 -2
- package/dist/components/Typography/index.js +1 -1
- package/dist/components/index.d.ts +4 -0
- package/dist/components/index.js +56 -52
- package/dist/constants/index.d.ts +2 -0
- package/dist/constants/index.js +14 -13
- package/dist/genesis/GenesisThemeBreakdown.js +4 -3
- package/dist/index.js +61 -57
- package/dist/providers/GenesisProvider.js +1 -1
- package/dist/providers/ToastProvider.js +5 -4
- package/dist/providers/index.js +1 -1
- package/dist/providers/useGenesis.js +1 -1
- package/dist/{setup-aZdxWCJq.js → setup-rcqlwLGQ.js} +1 -1
- package/dist/styles/design-tokens/border-tokens/BorderTokenList.js +4 -3
- package/dist/styles/design-tokens/sizing-tokens/SizingTokenList.js +7 -6
- package/dist/styles/design-tokens/variables.d.ts +2 -0
- package/dist/styles/design-tokens/variables.js +581 -579
- package/dist/styles/theme/genesis-theme.d.ts +2 -0
- package/dist/styles/theme/genesis-theme.js +306 -247
- package/dist/styles/theme/genesis-theme.types.d.ts +7 -0
- package/dist/styles/theme/theme-tree/ThemeTree.js +4 -3
- package/dist/test/setup.js +2 -2
- 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 =
|
|
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
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
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
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
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
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
Go as
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
Qo as
|
|
604
|
-
Zo as
|
|
605
|
-
$o as
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
Rl as
|
|
618
|
-
Ml as
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
Kl as
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
JS as
|
|
625
|
-
QS as
|
|
626
|
-
ZS as
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
Wl as
|
|
631
|
-
xl as
|
|
632
|
-
Ul as
|
|
633
|
-
_l as
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
wl as
|
|
637
|
-
Al as
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
Hl as
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
ou as
|
|
644
|
-
nu as
|
|
645
|
-
tu as
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
fu as
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
nl as
|
|
652
|
-
tl as
|
|
653
|
-
el as
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
Su as
|
|
658
|
-
lu as
|
|
659
|
-
uu as
|
|
660
|
-
gu as
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
ru as
|
|
664
|
-
iu as
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
Ql as
|
|
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
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
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
|
};
|