@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,91 +1,95 @@
1
- import { Size1 as g, BorderRadiusMd as F, Size2 as c, Size6 as m, Size5 as H, BorderRadiusSm as W, Size25 as T, ColorGrayWhite as s, ColorGrayBlack as k, ColorGray900 as w, ColorGray800 as B, ColorGray700 as y, ColorGray600 as E, ColorGray500 as h, ColorGray400 as x, ColorGray300 as D, ColorGray200 as M, ColorGray100 as l, ColorPurple900 as N, ColorPurple800 as A, ColorPurple700 as R, ColorPurple600 as G, ColorPurple500 as L, ColorPurple400 as O, ColorPurple300 as P, ColorPurple200 as Y, ColorPurple100 as X, ColorBlue900 as I, ColorBlue800 as K, ColorBlue700 as V, ColorBlue600 as j, ColorBlue500 as q, ColorBlue400 as J, ColorBlue300 as Q, ColorBlue200 as U, ColorBlue100 as Z, ColorSky900 as S, ColorSky800 as _, ColorSky700 as f, ColorSky600 as $, ColorSky500 as ee, ColorSky400 as ie, ColorSky300 as re, ColorSky200 as oe, ColorSky100 as te, ColorGreen900 as ne, ColorGreen800 as ae, ColorGreen700 as le, ColorGreen600 as ge, ColorGreen500 as ce, ColorGreen400 as pe, ColorGreen300 as de, ColorGreen200 as se, ColorGreen100 as ye, ColorYellow900 as he, ColorYellow800 as Se, ColorYellow700 as fe, ColorYellow600 as ue, ColorYellow500 as u, ColorYellow400 as ze, ColorYellow300 as Ce, ColorYellow200 as ve, ColorYellow100 as be, ColorOrange900 as Fe, ColorOrange800 as me, ColorOrange700 as He, ColorOrange600 as We, ColorOrange500 as Te, ColorOrange400 as ke, ColorOrange300 as we, ColorOrange200 as Be, ColorOrange100 as Ee, ColorRed900 as xe, ColorRed800 as De, ColorRed700 as Me, ColorRed600 as Ne, ColorRed500 as Ae, ColorRed400 as Re, ColorRed300 as Ge, ColorRed200 as Le, ColorRed100 as Oe, TypographyNarrowFontSizeDigits3 as Pe, TypographyNarrowFontSizeDigits2 as Ye, TypographyNarrowFontSizeDigits1 as Xe, TypographyNarrowFontSizeLink3 as Ie, TypographyNarrowFontSizeLink2 as Ke, TypographyNarrowFontSizeLink1 as Ve, TypographyNarrowFontSizeLabel3 as je, TypographyNarrowFontSizeLabel2 as qe, TypographyNarrowFontSizeLabel1 as Je, TypographyNarrowFontSizeOverline3 as Qe, TypographyNarrowFontSizeOverline2 as Ue, TypographyNarrowFontSizeOverline1 as Ze, TypographyNarrowFontSizeMessage as _e, TypographyNarrowFontSizeBody5 as $e, TypographyNarrowFontSizeBody4 as ei, TypographyNarrowFontSizeBody3 as ii, TypographyNarrowFontSizeBody2 as ri, TypographyNarrowFontSizeBody1 as oi, TypographyNarrowFontSizeSubHeading3 as ti, TypographyNarrowFontSizeSubHeading2 as ni, TypographyNarrowFontSizeSubHeading1 as ai, TypographyNarrowFontSizeHeading3 as li, TypographyNarrowFontSizeHeading2 as gi, TypographyNarrowFontSizeHeading1 as ci, TypographyNarrowFontSizeDisplay3 as pi, TypographyNarrowFontSizeDisplay2 as di, TypographyNarrowFontSizeDisplay1 as si, TypographyMediumFontSizeDigits3 as yi, TypographyMediumFontSizeDigits2 as hi, TypographyMediumFontSizeDigits1 as Si, TypographyMediumFontSizeLink3 as fi, TypographyMediumFontSizeLink2 as ui, TypographyMediumFontSizeLink1 as zi, TypographyMediumFontSizeLabel3 as Ci, TypographyMediumFontSizeLabel2 as vi, TypographyMediumFontSizeLabel1 as bi, TypographyMediumFontSizeOverline3 as Fi, TypographyMediumFontSizeOverline2 as mi, TypographyMediumFontSizeOverline1 as Hi, TypographyMediumFontSizeMessage as Wi, TypographyMediumFontSizeBody5 as Ti, TypographyMediumFontSizeBody4 as ki, TypographyMediumFontSizeBody3 as wi, TypographyMediumFontSizeBody2 as Bi, TypographyMediumFontSizeBody1 as Ei, TypographyMediumFontSizeSubHeading3 as xi, TypographyMediumFontSizeSubHeading2 as Di, TypographyMediumFontSizeSubHeading1 as Mi, TypographyMediumFontSizeHeading3 as Ni, TypographyMediumFontSizeHeading2 as Ai, TypographyMediumFontSizeHeading1 as Ri, TypographyMediumFontSizeDisplay3 as Gi, TypographyMediumFontSizeDisplay2 as Li, TypographyMediumFontSizeDisplay1 as Oi, TypographyWideFontSizeDigits3 as Pi, TypographyWideFontSizeDigits2 as Yi, TypographyWideFontSizeDigits1 as Xi, TypographyWideFontSizeLink3 as Ii, TypographyWideFontSizeLink2 as Ki, TypographyWideFontSizeLink1 as Vi, TypographyWideFontSizeLabel3 as ji, TypographyWideFontSizeLabel2 as qi, TypographyWideFontSizeLabel1 as Ji, TypographyWideFontSizeOverline3 as Qi, TypographyWideFontSizeOverline2 as Ui, TypographyWideFontSizeOverline1 as Zi, TypographyWideFontSizeMessage as _i, TypographyWideFontSizeBody5 as $i, TypographyWideFontSizeBody4 as er, TypographyWideFontSizeBody3 as ir, TypographyWideFontSizeBody2 as rr, TypographyWideFontSizeBody1 as or, TypographyWideFontSizeSubHeading3 as tr, TypographyWideFontSizeSubHeading2 as nr, TypographyWideFontSizeSubHeading1 as ar, TypographyWideFontSizeHeading3 as lr, TypographyWideFontSizeHeading2 as gr, TypographyWideFontSizeHeading1 as cr, TypographyWideFontSizeDisplay3 as pr, TypographyWideFontSizeDisplay2 as dr, TypographyWideFontSizeDisplay1 as sr, TypographyPrimaryFontFamily as yr, BorderRadiusRounded as hr, BorderRadiusXxxl as Sr, BorderRadiusXxl as fr, BorderRadiusXl as ur, BorderRadiusLg as zr, BorderRadiusXs as Cr, BorderRadiusNone as vr, Size4 as p, Size3 as d, Size025 as br, Size15 as Fr, Size05 as mr, Size64 as Hr, Size50 as Wr, Size43 as Tr, Size39 as kr, Size35 as wr, Size34 as Br, Size32 as Er, Size30 as xr, Size28 as Dr, Size27 as Mr, Size24 as Nr, Size20 as Ar, Size18 as Rr, Size16 as Gr, Size14 as Lr, Size13 as Or, Size12 as Pr, Size10 as Yr, Size8 as Xr, Size7 as Ir } from "../design-tokens/variables.js";
2
- const Kr = {
1
+ import { Size1 as g, BorderRadiusMd as T, Size2 as c, Size6 as k, Size5 as w, BorderRadiusSm as B, Size25 as E, ColorGrayWhite as s, ColorGrayBlack as x, ColorGray900 as D, ColorGray800 as M, ColorGray700 as y, ColorGray600 as N, ColorGray500 as h, ColorGray400 as A, ColorGray300 as u, ColorGray200 as R, ColorGray100 as l, ColorPurple900 as G, ColorPurple800 as P, ColorPurple700 as L, ColorPurple600 as O, ColorPurple500 as Y, ColorPurple400 as X, ColorPurple300 as I, ColorPurple200 as _, ColorPurple100 as K, ColorBlue900 as V, ColorBlue800 as j, ColorBlue700 as q, ColorBlue600 as J, ColorBlue500 as Q, ColorBlue400 as f, ColorBlue300 as U, ColorBlue200 as Z, ColorBlue100 as $, ColorSky900 as S, ColorSky800 as ee, ColorSky700 as v, ColorSky600 as re, ColorSky500 as oe, ColorSky400 as ie, ColorSky300 as te, ColorSky200 as ne, ColorSky100 as ae, ColorGreen900 as le, ColorGreen800 as ge, ColorGreen700 as ce, ColorGreen600 as de, ColorGreen500 as pe, ColorGreen400 as z, ColorGreen300 as se, ColorGreen200 as ye, ColorGreen100 as he, ColorYellow900 as ue, ColorYellow800 as fe, ColorYellow700 as Se, ColorYellow600 as ve, ColorYellow500 as C, ColorYellow400 as ze, ColorYellow300 as Ce, ColorYellow200 as be, ColorYellow100 as Fe, ColorOrange900 as me, ColorOrange800 as He, ColorOrange700 as We, ColorOrange600 as Te, ColorOrange500 as ke, ColorOrange400 as we, ColorOrange300 as Be, ColorOrange200 as Ee, ColorOrange100 as xe, ColorRed900 as De, ColorRed800 as Me, ColorRed700 as Ne, ColorRed600 as Ae, ColorRed500 as b, ColorRed400 as Re, ColorRed300 as Ge, ColorRed200 as Pe, ColorRed100 as Le, TypographyNarrowFontSizeDigits3 as Oe, TypographyNarrowFontSizeDigits2 as Ye, TypographyNarrowFontSizeDigits1 as Xe, TypographyNarrowFontSizeLink3 as Ie, TypographyNarrowFontSizeLink2 as _e, TypographyNarrowFontSizeLink1 as Ke, TypographyNarrowFontSizeLabel3 as Ve, TypographyNarrowFontSizeLabel2 as je, TypographyNarrowFontSizeLabel1 as qe, TypographyNarrowFontSizeOverline3 as Je, TypographyNarrowFontSizeOverline2 as Qe, TypographyNarrowFontSizeOverline1 as Ue, TypographyNarrowFontSizeMessage as Ze, TypographyNarrowFontSizeBody5 as $e, TypographyNarrowFontSizeBody4 as er, TypographyNarrowFontSizeBody3 as rr, TypographyNarrowFontSizeBody2 as or, TypographyNarrowFontSizeBody1 as ir, TypographyNarrowFontSizeSubHeading3 as tr, TypographyNarrowFontSizeSubHeading2 as nr, TypographyNarrowFontSizeSubHeading1 as ar, TypographyNarrowFontSizeHeading3 as lr, TypographyNarrowFontSizeHeading2 as gr, TypographyNarrowFontSizeHeading1 as cr, TypographyNarrowFontSizeDisplay3 as dr, TypographyNarrowFontSizeDisplay2 as pr, TypographyNarrowFontSizeDisplay1 as sr, TypographyMediumFontSizeDigits3 as yr, TypographyMediumFontSizeDigits2 as hr, TypographyMediumFontSizeDigits1 as ur, TypographyMediumFontSizeLink3 as fr, TypographyMediumFontSizeLink2 as Sr, TypographyMediumFontSizeLink1 as vr, TypographyMediumFontSizeLabel3 as zr, TypographyMediumFontSizeLabel2 as Cr, TypographyMediumFontSizeLabel1 as br, TypographyMediumFontSizeOverline3 as Fr, TypographyMediumFontSizeOverline2 as mr, TypographyMediumFontSizeOverline1 as Hr, TypographyMediumFontSizeMessage as Wr, TypographyMediumFontSizeBody5 as Tr, TypographyMediumFontSizeBody4 as kr, TypographyMediumFontSizeBody3 as wr, TypographyMediumFontSizeBody2 as Br, TypographyMediumFontSizeBody1 as Er, TypographyMediumFontSizeSubHeading3 as xr, TypographyMediumFontSizeSubHeading2 as Dr, TypographyMediumFontSizeSubHeading1 as Mr, TypographyMediumFontSizeHeading3 as Nr, TypographyMediumFontSizeHeading2 as Ar, TypographyMediumFontSizeHeading1 as Rr, TypographyMediumFontSizeDisplay3 as Gr, TypographyMediumFontSizeDisplay2 as Pr, TypographyMediumFontSizeDisplay1 as Lr, TypographyWideFontSizeDigits3 as Or, TypographyWideFontSizeDigits2 as Yr, TypographyWideFontSizeDigits1 as Xr, TypographyWideFontSizeLink3 as Ir, TypographyWideFontSizeLink2 as _r, TypographyWideFontSizeLink1 as Kr, TypographyWideFontSizeLabel3 as Vr, TypographyWideFontSizeLabel2 as jr, TypographyWideFontSizeLabel1 as qr, TypographyWideFontSizeOverline3 as Jr, TypographyWideFontSizeOverline2 as Qr, TypographyWideFontSizeOverline1 as Ur, TypographyWideFontSizeMessage as Zr, TypographyWideFontSizeBody5 as $r, TypographyWideFontSizeBody4 as eo, TypographyWideFontSizeBody3 as ro, TypographyWideFontSizeBody2 as oo, TypographyWideFontSizeBody1 as io, TypographyWideFontSizeSubHeading3 as to, TypographyWideFontSizeSubHeading2 as no, TypographyWideFontSizeSubHeading1 as ao, TypographyWideFontSizeHeading3 as lo, TypographyWideFontSizeHeading2 as go, TypographyWideFontSizeHeading1 as co, TypographyWideFontSizeDisplay3 as po, TypographyWideFontSizeDisplay2 as so, TypographyWideFontSizeDisplay1 as yo, TypographyPrimaryFontFamily as ho, BorderRadiusRounded as uo, BorderRadiusXxxl as fo, BorderRadiusXxl as So, BorderRadiusXl as vo, BorderRadiusLg as zo, BorderRadiusXs as Co, BorderRadiusNone as bo, Size4 as d, Size3 as p, Size025 as Fo, Size15 as mo, Size05 as Ho, Size64 as Wo, Size50 as To, Size43 as ko, Size39 as wo, Size35 as Bo, Size34 as Eo, Size32 as xo, Size30 as Do, Size28 as Mo, Size27 as No, Size24 as Ao, Size20 as Ro, Size18 as Go, Size16 as Po, Size14 as Lo, Size13 as Oo, Size12 as Yo, Size10 as Xo, Size8 as Io, Size7 as _o, Size2_5 as Ko, Size1_5 as Vo } from "../design-tokens/variables.js";
2
+ const jo = {
3
3
  wide: 1280,
4
4
  medium: 1024,
5
5
  narrow: 480
6
6
  }, a = {
7
- BorderRadiusNone: vr,
8
- BorderRadiusXs: Cr,
9
- BorderRadiusSm: W,
10
- BorderRadiusMd: F,
11
- BorderRadiusLg: zr,
12
- BorderRadiusXl: ur,
13
- BorderRadiusXxl: fr,
14
- BorderRadiusXxxl: Sr,
15
- BorderRadiusRounded: hr
16
- }, o = {
7
+ BorderRadiusNone: bo,
8
+ BorderRadiusXs: Co,
9
+ BorderRadiusSm: B,
10
+ BorderRadiusMd: T,
11
+ BorderRadiusLg: zo,
12
+ BorderRadiusXl: vo,
13
+ BorderRadiusXxl: So,
14
+ BorderRadiusXxxl: fo,
15
+ BorderRadiusRounded: uo
16
+ }, i = {
17
17
  Size1: g,
18
18
  // 4px
19
+ Size1_5: Vo,
20
+ // 6px
19
21
  Size2: c,
20
22
  // 8px
21
- Size3: d,
23
+ Size2_5: Ko,
24
+ // 10px
25
+ Size3: p,
22
26
  // 12px
23
- Size4: p,
27
+ Size4: d,
24
28
  // 16px
25
- Size5: H,
29
+ Size5: w,
26
30
  // 20px
27
- Size6: m,
31
+ Size6: k,
28
32
  // 24px
29
- Size7: Ir,
33
+ Size7: _o,
30
34
  // 28px
31
- Size8: Xr,
35
+ Size8: Io,
32
36
  // 32px
33
- Size10: Yr,
37
+ Size10: Xo,
34
38
  // 40px
35
- Size12: Pr,
39
+ Size12: Yo,
36
40
  // 48px
37
- Size13: Or,
41
+ Size13: Oo,
38
42
  // 52px
39
- Size14: Lr,
43
+ Size14: Lo,
40
44
  // 56px
41
- Size16: Gr,
45
+ Size16: Po,
42
46
  // 64px
43
- Size18: Rr,
47
+ Size18: Go,
44
48
  // 72px
45
- Size20: Ar,
49
+ Size20: Ro,
46
50
  // 80px
47
- Size24: Nr,
51
+ Size24: Ao,
48
52
  // 96px
49
- Size27: Mr,
53
+ Size27: No,
50
54
  // 108px
51
- Size28: Dr,
55
+ Size28: Mo,
52
56
  // 112px
53
- Size30: xr,
57
+ Size30: Do,
54
58
  // 120px
55
- Size32: Er,
59
+ Size32: xo,
56
60
  // 128px
57
- Size34: Br,
61
+ Size34: Eo,
58
62
  // 136px
59
- Size35: wr,
63
+ Size35: Bo,
60
64
  // 140px
61
- Size39: kr,
65
+ Size39: wo,
62
66
  // 156px
63
- Size43: Tr,
67
+ Size43: ko,
64
68
  // 172px
65
- Size50: Wr,
69
+ Size50: To,
66
70
  // 200px
67
- Size64: Hr,
71
+ Size64: Wo,
68
72
  // 256px
69
- Size05: mr,
73
+ Size05: Ho,
70
74
  // 2px
71
- Size15: Fr,
75
+ Size15: mo,
72
76
  // 6px
73
- Size025: br,
77
+ Size025: Fo,
74
78
  // 1px
75
- Size25: T,
79
+ Size25: E,
76
80
  // 10px
77
81
  xs: g,
78
82
  // 4px
79
83
  sm: c,
80
84
  // 8px
81
- md: d,
85
+ md: p,
82
86
  // 12px
83
- lg: p,
87
+ lg: d,
84
88
  // 16px
85
89
  typography1: 12,
86
90
  typography2: 14,
87
91
  typography3: 16
88
- }, lo = {
92
+ }, pi = {
89
93
  display1: "display1",
90
94
  display2: "display2",
91
95
  display3: "display3",
@@ -113,407 +117,407 @@ const Kr = {
113
117
  digits1: "digits1",
114
118
  digits2: "digits2",
115
119
  digits3: "digits3"
116
- }, Vr = {
120
+ }, qo = {
117
121
  display1: {
118
- fontSize: sr,
122
+ fontSize: yo,
119
123
  lineHeight: "3.5rem",
120
124
  fontWeight: 700,
121
125
  letterSpacing: "0"
122
126
  },
123
127
  display2: {
124
- fontSize: dr,
128
+ fontSize: so,
125
129
  lineHeight: "3rem",
126
130
  fontWeight: 700,
127
131
  letterSpacing: "0"
128
132
  },
129
133
  display3: {
130
- fontSize: pr,
134
+ fontSize: po,
131
135
  lineHeight: "2.5rem",
132
136
  fontWeight: 700,
133
137
  letterSpacing: "0"
134
138
  },
135
139
  heading1: {
136
- fontSize: cr,
140
+ fontSize: co,
137
141
  lineHeight: "2rem",
138
142
  fontWeight: 700,
139
143
  letterSpacing: "0"
140
144
  },
141
145
  heading2: {
142
- fontSize: gr,
146
+ fontSize: go,
143
147
  lineHeight: "1.75rem",
144
148
  fontWeight: 700,
145
149
  letterSpacing: "0"
146
150
  },
147
151
  heading3: {
148
- fontSize: lr,
152
+ fontSize: lo,
149
153
  lineHeight: "1.5rem",
150
154
  fontWeight: 700,
151
155
  letterSpacing: "0"
152
156
  },
153
157
  subHeading1: {
154
- fontSize: ar,
158
+ fontSize: ao,
155
159
  lineHeight: "1.25rem",
156
160
  fontWeight: 600,
157
161
  letterSpacing: "0"
158
162
  },
159
163
  subHeading2: {
160
- fontSize: nr,
164
+ fontSize: no,
161
165
  lineHeight: "1.25rem",
162
166
  fontWeight: 600,
163
167
  letterSpacing: "0"
164
168
  },
165
169
  subHeading3: {
166
- fontSize: tr,
170
+ fontSize: to,
167
171
  lineHeight: "1rem",
168
172
  fontWeight: 600,
169
173
  letterSpacing: "0"
170
174
  },
171
175
  body1: {
172
- fontSize: or,
176
+ fontSize: io,
173
177
  lineHeight: "1.5rem",
174
178
  fontWeight: 400,
175
179
  letterSpacing: "0"
176
180
  },
177
181
  body2: {
178
- fontSize: rr,
182
+ fontSize: oo,
179
183
  lineHeight: "1.25rem",
180
184
  fontWeight: 400,
181
185
  letterSpacing: "0"
182
186
  },
183
187
  body3: {
184
- fontSize: ir,
188
+ fontSize: ro,
185
189
  lineHeight: "1rem",
186
190
  fontWeight: 400,
187
191
  letterSpacing: "0"
188
192
  },
189
193
  body4: {
190
- fontSize: er,
194
+ fontSize: eo,
191
195
  lineHeight: "0.875rem",
192
196
  fontWeight: 400,
193
197
  letterSpacing: "0"
194
198
  },
195
199
  body5: {
196
- fontSize: $i,
200
+ fontSize: $r,
197
201
  lineHeight: "0.75rem",
198
202
  fontWeight: 400,
199
203
  letterSpacing: "0"
200
204
  },
201
205
  message: {
202
- fontSize: _i,
206
+ fontSize: Zr,
203
207
  lineHeight: "23px",
204
208
  fontWeight: 400,
205
209
  letterSpacing: "0"
206
210
  },
207
211
  overline1: {
208
- fontSize: Zi,
212
+ fontSize: Ur,
209
213
  lineHeight: "0.75rem",
210
214
  fontWeight: 500,
211
215
  letterSpacing: "0"
212
216
  },
213
217
  overline2: {
214
- fontSize: Ui,
218
+ fontSize: Qr,
215
219
  lineHeight: "0.75rem",
216
220
  fontWeight: 500,
217
221
  letterSpacing: "0"
218
222
  },
219
223
  overline3: {
220
- fontSize: Qi,
224
+ fontSize: Jr,
221
225
  lineHeight: "0.75rem",
222
226
  fontWeight: 500,
223
227
  letterSpacing: "0"
224
228
  },
225
229
  label1: {
226
- fontSize: Ji,
230
+ fontSize: qr,
227
231
  lineHeight: "1rem",
228
232
  fontWeight: 500,
229
233
  letterSpacing: "0"
230
234
  },
231
235
  label2: {
232
- fontSize: qi,
236
+ fontSize: jr,
233
237
  lineHeight: "1rem",
234
238
  fontWeight: 500,
235
239
  letterSpacing: "0"
236
240
  },
237
241
  label3: {
238
- fontSize: ji,
242
+ fontSize: Vr,
239
243
  lineHeight: "1rem",
240
244
  fontWeight: 500,
241
245
  letterSpacing: "0"
242
246
  },
243
247
  link1: {
244
- fontSize: Vi,
248
+ fontSize: Kr,
245
249
  lineHeight: "1.5rem",
246
250
  fontWeight: 500,
247
251
  letterSpacing: "0"
248
252
  },
249
253
  link2: {
250
- fontSize: Ki,
254
+ fontSize: _r,
251
255
  lineHeight: "1.25rem",
252
256
  fontWeight: 500,
253
257
  letterSpacing: "0"
254
258
  },
255
259
  link3: {
256
- fontSize: Ii,
260
+ fontSize: Ir,
257
261
  lineHeight: "1rem",
258
262
  fontWeight: 500,
259
263
  letterSpacing: "0"
260
264
  },
261
265
  digits1: {
262
- fontSize: Xi,
266
+ fontSize: Xr,
263
267
  lineHeight: "3.5rem",
264
268
  fontWeight: 700,
265
269
  letterSpacing: "0"
266
270
  },
267
271
  digits2: {
268
- fontSize: Yi,
272
+ fontSize: Yr,
269
273
  lineHeight: "3rem",
270
274
  fontWeight: 700,
271
275
  letterSpacing: "0"
272
276
  },
273
277
  digits3: {
274
- fontSize: Pi,
278
+ fontSize: Or,
275
279
  lineHeight: "2.5rem",
276
280
  fontWeight: 700,
277
281
  letterSpacing: "0"
278
282
  }
279
- }, jr = {
283
+ }, Jo = {
280
284
  display1: {
281
- fontSize: Oi,
285
+ fontSize: Lr,
282
286
  lineHeight: "3.5rem",
283
287
  fontWeight: 700,
284
288
  letterSpacing: "0"
285
289
  },
286
290
  display2: {
287
- fontSize: Li,
291
+ fontSize: Pr,
288
292
  lineHeight: "3rem",
289
293
  fontWeight: 700,
290
294
  letterSpacing: "0"
291
295
  },
292
296
  display3: {
293
- fontSize: Gi,
297
+ fontSize: Gr,
294
298
  lineHeight: "2.5rem",
295
299
  fontWeight: 700,
296
300
  letterSpacing: "0"
297
301
  },
298
302
  heading1: {
299
- fontSize: Ri,
303
+ fontSize: Rr,
300
304
  lineHeight: "2rem",
301
305
  fontWeight: 700,
302
306
  letterSpacing: "0"
303
307
  },
304
308
  heading2: {
305
- fontSize: Ai,
309
+ fontSize: Ar,
306
310
  lineHeight: "1.75rem",
307
311
  fontWeight: 700,
308
312
  letterSpacing: "0"
309
313
  },
310
314
  heading3: {
311
- fontSize: Ni,
315
+ fontSize: Nr,
312
316
  lineHeight: "1.5rem",
313
317
  fontWeight: 700,
314
318
  letterSpacing: "0"
315
319
  },
316
320
  subHeading1: {
317
- fontSize: Mi,
321
+ fontSize: Mr,
318
322
  lineHeight: "1.25rem",
319
323
  fontWeight: 600,
320
324
  letterSpacing: "0"
321
325
  },
322
326
  subHeading2: {
323
- fontSize: Di,
327
+ fontSize: Dr,
324
328
  lineHeight: "1.25rem",
325
329
  fontWeight: 600,
326
330
  letterSpacing: "0"
327
331
  },
328
332
  subHeading3: {
329
- fontSize: xi,
333
+ fontSize: xr,
330
334
  lineHeight: "1rem",
331
335
  fontWeight: 600,
332
336
  letterSpacing: "0"
333
337
  },
334
338
  body1: {
335
- fontSize: Ei,
339
+ fontSize: Er,
336
340
  lineHeight: "1.5rem",
337
341
  fontWeight: 400,
338
342
  letterSpacing: "0"
339
343
  },
340
344
  body2: {
341
- fontSize: Bi,
345
+ fontSize: Br,
342
346
  lineHeight: "1.25rem",
343
347
  fontWeight: 400,
344
348
  letterSpacing: "0"
345
349
  },
346
350
  body3: {
347
- fontSize: wi,
351
+ fontSize: wr,
348
352
  lineHeight: "1rem",
349
353
  fontWeight: 400,
350
354
  letterSpacing: "0"
351
355
  },
352
356
  body4: {
353
- fontSize: ki,
357
+ fontSize: kr,
354
358
  lineHeight: "0.875rem",
355
359
  fontWeight: 400,
356
360
  letterSpacing: "0"
357
361
  },
358
362
  body5: {
359
- fontSize: Ti,
363
+ fontSize: Tr,
360
364
  lineHeight: "0.75rem",
361
365
  fontWeight: 400,
362
366
  letterSpacing: "0"
363
367
  },
364
368
  message: {
365
- fontSize: Wi,
369
+ fontSize: Wr,
366
370
  lineHeight: "23px",
367
371
  fontWeight: 400,
368
372
  letterSpacing: "0"
369
373
  },
370
374
  overline1: {
371
- fontSize: Hi,
375
+ fontSize: Hr,
372
376
  lineHeight: "0.75rem",
373
377
  fontWeight: 500,
374
378
  letterSpacing: "0"
375
379
  },
376
380
  overline2: {
377
- fontSize: mi,
381
+ fontSize: mr,
378
382
  lineHeight: "0.75rem",
379
383
  fontWeight: 500,
380
384
  letterSpacing: "0"
381
385
  },
382
386
  overline3: {
383
- fontSize: Fi,
387
+ fontSize: Fr,
384
388
  lineHeight: "0.75rem",
385
389
  fontWeight: 500,
386
390
  letterSpacing: "0"
387
391
  },
388
392
  label1: {
389
- fontSize: bi,
393
+ fontSize: br,
390
394
  lineHeight: "1rem",
391
395
  fontWeight: 500,
392
396
  letterSpacing: "0"
393
397
  },
394
398
  label2: {
395
- fontSize: vi,
399
+ fontSize: Cr,
396
400
  lineHeight: "1rem",
397
401
  fontWeight: 500,
398
402
  letterSpacing: "0"
399
403
  },
400
404
  label3: {
401
- fontSize: Ci,
405
+ fontSize: zr,
402
406
  lineHeight: "1rem",
403
407
  fontWeight: 500,
404
408
  letterSpacing: "0"
405
409
  },
406
410
  link1: {
407
- fontSize: zi,
411
+ fontSize: vr,
408
412
  lineHeight: "1.5rem",
409
413
  fontWeight: 500,
410
414
  letterSpacing: "0"
411
415
  },
412
416
  link2: {
413
- fontSize: ui,
417
+ fontSize: Sr,
414
418
  lineHeight: "1.25rem",
415
419
  fontWeight: 500,
416
420
  letterSpacing: "0"
417
421
  },
418
422
  link3: {
419
- fontSize: fi,
423
+ fontSize: fr,
420
424
  lineHeight: "1rem",
421
425
  fontWeight: 500,
422
426
  letterSpacing: "0"
423
427
  },
424
428
  digits1: {
425
- fontSize: Si,
429
+ fontSize: ur,
426
430
  lineHeight: "3.5rem",
427
431
  fontWeight: 700,
428
432
  letterSpacing: "0"
429
433
  },
430
434
  digits2: {
431
- fontSize: hi,
435
+ fontSize: hr,
432
436
  lineHeight: "3rem",
433
437
  fontWeight: 700,
434
438
  letterSpacing: "0"
435
439
  },
436
440
  digits3: {
437
- fontSize: yi,
441
+ fontSize: yr,
438
442
  lineHeight: "2.5rem",
439
443
  fontWeight: 700,
440
444
  letterSpacing: "0"
441
445
  }
442
- }, qr = {
446
+ }, Qo = {
443
447
  display1: {
444
- fontSize: si,
448
+ fontSize: sr,
445
449
  lineHeight: "3.5rem",
446
450
  fontWeight: 700,
447
451
  letterSpacing: "0"
448
452
  },
449
453
  display2: {
450
- fontSize: di,
454
+ fontSize: pr,
451
455
  lineHeight: "3rem",
452
456
  fontWeight: 700,
453
457
  letterSpacing: "0"
454
458
  },
455
459
  display3: {
456
- fontSize: pi,
460
+ fontSize: dr,
457
461
  lineHeight: "2.5rem",
458
462
  fontWeight: 700,
459
463
  letterSpacing: "0"
460
464
  },
461
465
  heading1: {
462
- fontSize: ci,
466
+ fontSize: cr,
463
467
  lineHeight: "2rem",
464
468
  fontWeight: 700,
465
469
  letterSpacing: "0"
466
470
  },
467
471
  heading2: {
468
- fontSize: gi,
472
+ fontSize: gr,
469
473
  lineHeight: "1.75rem",
470
474
  fontWeight: 700,
471
475
  letterSpacing: "0"
472
476
  },
473
477
  heading3: {
474
- fontSize: li,
478
+ fontSize: lr,
475
479
  lineHeight: "1.5rem",
476
480
  fontWeight: 700,
477
481
  letterSpacing: "0"
478
482
  },
479
483
  subHeading1: {
480
- fontSize: ai,
484
+ fontSize: ar,
481
485
  lineHeight: "1.25rem",
482
486
  fontWeight: 600,
483
487
  letterSpacing: "0"
484
488
  },
485
489
  subHeading2: {
486
- fontSize: ni,
490
+ fontSize: nr,
487
491
  lineHeight: "1.25rem",
488
492
  fontWeight: 600,
489
493
  letterSpacing: "0"
490
494
  },
491
495
  subHeading3: {
492
- fontSize: ti,
496
+ fontSize: tr,
493
497
  lineHeight: "1rem",
494
498
  fontWeight: 600,
495
499
  letterSpacing: "0"
496
500
  },
497
501
  body1: {
498
- fontSize: oi,
502
+ fontSize: ir,
499
503
  lineHeight: "1.5rem",
500
504
  fontWeight: 400,
501
505
  letterSpacing: "0"
502
506
  },
503
507
  body2: {
504
- fontSize: ri,
508
+ fontSize: or,
505
509
  lineHeight: "1.25rem",
506
510
  fontWeight: 400,
507
511
  letterSpacing: "0"
508
512
  },
509
513
  body3: {
510
- fontSize: ii,
514
+ fontSize: rr,
511
515
  lineHeight: "1rem",
512
516
  fontWeight: 400,
513
517
  letterSpacing: "0"
514
518
  },
515
519
  body4: {
516
- fontSize: ei,
520
+ fontSize: er,
517
521
  lineHeight: "0.875rem",
518
522
  fontWeight: 400,
519
523
  letterSpacing: "0"
@@ -525,55 +529,55 @@ const Kr = {
525
529
  letterSpacing: "0"
526
530
  },
527
531
  message: {
528
- fontSize: _e,
532
+ fontSize: Ze,
529
533
  lineHeight: "23px",
530
534
  fontWeight: 400,
531
535
  letterSpacing: "0"
532
536
  },
533
537
  overline1: {
534
- fontSize: Ze,
538
+ fontSize: Ue,
535
539
  lineHeight: "0.75rem",
536
540
  fontWeight: 500,
537
541
  letterSpacing: "0"
538
542
  },
539
543
  overline2: {
540
- fontSize: Ue,
544
+ fontSize: Qe,
541
545
  lineHeight: "0.75rem",
542
546
  fontWeight: 500,
543
547
  letterSpacing: "0"
544
548
  },
545
549
  overline3: {
546
- fontSize: Qe,
550
+ fontSize: Je,
547
551
  lineHeight: "0.75rem",
548
552
  fontWeight: 500,
549
553
  letterSpacing: "0"
550
554
  },
551
555
  label1: {
552
- fontSize: Je,
556
+ fontSize: qe,
553
557
  lineHeight: "1rem",
554
558
  fontWeight: 500,
555
559
  letterSpacing: "0"
556
560
  },
557
561
  label2: {
558
- fontSize: qe,
562
+ fontSize: je,
559
563
  lineHeight: "1rem",
560
564
  fontWeight: 500,
561
565
  letterSpacing: "0"
562
566
  },
563
567
  label3: {
564
- fontSize: je,
568
+ fontSize: Ve,
565
569
  lineHeight: "1rem",
566
570
  fontWeight: 500,
567
571
  letterSpacing: "0"
568
572
  },
569
573
  link1: {
570
- fontSize: Ve,
574
+ fontSize: Ke,
571
575
  lineHeight: "1.5rem",
572
576
  fontWeight: 500,
573
577
  letterSpacing: "0"
574
578
  },
575
579
  link2: {
576
- fontSize: Ke,
580
+ fontSize: _e,
577
581
  lineHeight: "1.25rem",
578
582
  fontWeight: 500,
579
583
  letterSpacing: "0"
@@ -597,131 +601,140 @@ const Kr = {
597
601
  letterSpacing: "0"
598
602
  },
599
603
  digits3: {
600
- fontSize: Pe,
604
+ fontSize: Oe,
601
605
  lineHeight: "2.5rem",
602
606
  fontWeight: 700,
603
607
  letterSpacing: "0"
604
608
  }
605
- }, Jr = {
606
- fontFamily: yr,
607
- wide: Vr,
608
- medium: jr,
609
- narrow: qr
610
- }, i = {
609
+ }, Uo = {
610
+ fontFamily: ho,
611
+ wide: qo,
612
+ medium: Jo,
613
+ narrow: Qo
614
+ }, o = {
611
615
  red: {
612
- 100: Oe,
613
- 200: Le,
616
+ 100: Le,
617
+ 200: Pe,
614
618
  300: Ge,
615
619
  400: Re,
616
- 500: Ae,
617
- 600: Ne,
618
- 700: Me,
619
- 800: De,
620
- 900: xe
620
+ 500: b,
621
+ 600: Ae,
622
+ 700: Ne,
623
+ 800: Me,
624
+ 900: De
621
625
  },
622
626
  orange: {
623
- 100: Ee,
624
- 200: Be,
625
- 300: we,
626
- 400: ke,
627
- 500: Te,
628
- 600: We,
629
- 700: He,
630
- 800: me,
631
- 900: Fe
627
+ 100: xe,
628
+ 200: Ee,
629
+ 300: Be,
630
+ 400: we,
631
+ 500: ke,
632
+ 600: Te,
633
+ 700: We,
634
+ 800: He,
635
+ 900: me
632
636
  },
633
637
  yellow: {
634
- 100: be,
635
- 200: ve,
638
+ 100: Fe,
639
+ 200: be,
636
640
  300: Ce,
637
641
  400: ze,
638
- 500: u,
639
- 600: ue,
640
- 700: fe,
641
- 800: Se,
642
- 900: he
642
+ 500: C,
643
+ 600: ve,
644
+ 700: Se,
645
+ 800: fe,
646
+ 900: ue
643
647
  },
644
648
  green: {
645
- 100: ye,
646
- 200: se,
647
- 300: de,
648
- 400: pe,
649
- 500: ce,
650
- 600: ge,
651
- 700: le,
652
- 800: ae,
653
- 900: ne
649
+ 100: he,
650
+ 200: ye,
651
+ 300: se,
652
+ 400: z,
653
+ 500: pe,
654
+ 600: de,
655
+ 700: ce,
656
+ 800: ge,
657
+ 900: le
654
658
  },
655
659
  sky: {
656
- 100: te,
657
- 200: oe,
658
- 300: re,
660
+ 100: ae,
661
+ 200: ne,
662
+ 300: te,
659
663
  400: ie,
660
- 500: ee,
661
- 600: $,
662
- 700: f,
663
- 800: _,
664
+ 500: oe,
665
+ 600: re,
666
+ 700: v,
667
+ 800: ee,
664
668
  900: S
665
669
  },
666
670
  blue: {
667
- 100: Z,
668
- 200: U,
669
- 300: Q,
670
- 400: J,
671
- 500: q,
672
- 600: j,
673
- 700: V,
674
- 800: K,
675
- 900: I
671
+ 100: $,
672
+ 200: Z,
673
+ 300: U,
674
+ 400: f,
675
+ 500: Q,
676
+ 600: J,
677
+ 700: q,
678
+ 800: j,
679
+ 900: V
676
680
  },
677
681
  purple: {
678
- 100: X,
679
- 200: Y,
680
- 300: P,
681
- 400: O,
682
- 500: L,
683
- 600: G,
684
- 700: R,
685
- 800: A,
686
- 900: N
682
+ 100: K,
683
+ 200: _,
684
+ 300: I,
685
+ 400: X,
686
+ 500: Y,
687
+ 600: O,
688
+ 700: L,
689
+ 800: P,
690
+ 900: G
687
691
  },
688
692
  gray: {
689
693
  100: l,
690
- 200: M,
691
- 300: D,
692
- 400: x,
694
+ 200: R,
695
+ 300: u,
696
+ 400: A,
693
697
  500: h,
694
- 600: E,
698
+ 600: N,
695
699
  700: y,
696
- 800: B,
697
- 900: w,
698
- black: k,
700
+ 800: M,
701
+ 900: D,
702
+ black: x,
699
703
  white: s
700
704
  }
701
- }, Qr = {
705
+ }, Zo = {
702
706
  padding: {
703
- verPadding: o.Size25,
707
+ verPadding: i.Size25,
704
708
  // 25px
705
- horPadding: o.Size6
709
+ horPadding: i.Size6
706
710
  // 10px
707
711
  },
708
- gap: o.Size2,
712
+ gap: i.Size2,
709
713
  // 8px
710
714
  radius: a.BorderRadiusMd
711
715
  // 6px
712
- }, Ur = {
716
+ }, $o = {
717
+ padding: {
718
+ verPadding: 10,
719
+ horPadding: 12
720
+ },
721
+ gap: i.Size2,
722
+ // 8px
723
+ radius: a.BorderRadiusSm
724
+ // 6px
725
+ }, ei = {
713
726
  padding: {
714
727
  verPadding: 10,
715
728
  horPadding: 12
716
729
  },
717
- gap: o.Size2,
730
+ gap: i.Size2,
718
731
  // 8px
719
732
  radius: a.BorderRadiusSm
720
733
  // 6px
721
- }, Zr = {
734
+ }, ri = {
722
735
  suffixPrefixVerPadding: 11,
723
736
  // special case - see sizing in FIGMA
724
- suffixPrefixHorPadding: o.Size2
737
+ suffixPrefixHorPadding: i.Size2
725
738
  }, t = {
726
739
  color: "#6C6C6C",
727
740
  backgroundColor: "#EEEEEE",
@@ -776,7 +789,7 @@ const Kr = {
776
789
  onsurface: "#222222"
777
790
  }
778
791
  }
779
- }, z = {
792
+ }, F = {
780
793
  primary: {
781
794
  active: {
782
795
  color: e.interactive.primary.onsurface,
@@ -882,7 +895,7 @@ const Kr = {
882
895
  utility: {
883
896
  active: {
884
897
  color: e.interactive.secondary.onsurface,
885
- backgroundColor: e.transparent,
898
+ backgroundColor: "#FFF",
886
899
  borderColor: e.interactive.secondary.active
887
900
  },
888
901
  hover: {
@@ -897,7 +910,7 @@ const Kr = {
897
910
  },
898
911
  focussed: {
899
912
  color: e.interactive.secondary.onsurface,
900
- backgroundColor: e.transparent,
913
+ backgroundColor: "#FFF",
901
914
  borderColor: e.interactive.secondary.active,
902
915
  ringColor: e.inputs.onsurface.focus
903
916
  },
@@ -913,6 +926,45 @@ const Kr = {
913
926
  },
914
927
  disabled: t
915
928
  },
929
+ icon: {
930
+ active: {
931
+ color: e.interactive.tertiary.onsurface,
932
+ backgroundColor: "transparent",
933
+ borderColor: "transparent"
934
+ },
935
+ hover: {
936
+ color: e.interactive.tertiary.onsurface,
937
+ backgroundColor: "#DEEFF3",
938
+ borderColor: "transparent"
939
+ },
940
+ pressed: {
941
+ color: e.interactive.tertiary.onsurface,
942
+ backgroundColor: "#DEEFF3",
943
+ borderColor: "transparent"
944
+ },
945
+ selected: {
946
+ color: e.interactive.tertiary.onsurface,
947
+ backgroundColor: "#DEEFF3",
948
+ borderColor: "transparent"
949
+ },
950
+ focussed: {
951
+ color: e.interactive.tertiary.onsurface,
952
+ backgroundColor: "transparent",
953
+ borderColor: "transparent",
954
+ ringColor: e.inputs.onsurface.focus
955
+ },
956
+ error: {
957
+ ...n,
958
+ ringColor: e.inputs.onsurface.focus
959
+ },
960
+ default: {
961
+ color: e.interactive.tertiary.onsurface,
962
+ backgroundColor: e.interactive.tertiary.active,
963
+ borderColor: e.interactive.tertiary.active,
964
+ ringColor: e.inputs.onsurface.focus
965
+ },
966
+ disabled: t
967
+ },
916
968
  status: {
917
969
  error: {
918
970
  default: "#CF3237",
@@ -929,7 +981,7 @@ const Kr = {
929
981
  "surface-hover": "#A7DFAF"
930
982
  },
931
983
  warning: {
932
- default: u,
984
+ default: C,
933
985
  ringColor: e.inputs.onsurface.focus,
934
986
  onsurface: "#704819",
935
987
  surface: "#FFF2DF",
@@ -987,7 +1039,7 @@ const Kr = {
987
1039
  onsurface: "#222222"
988
1040
  },
989
1041
  link: {
990
- active: f,
1042
+ active: v,
991
1043
  hover: S,
992
1044
  disabled: l,
993
1045
  current: "#384DF6"
@@ -1007,6 +1059,12 @@ const Kr = {
1007
1059
  focus: "#384DF6",
1008
1060
  placeholder: "#6C6C6C",
1009
1061
  "icon-disabled": "#6C6C6C"
1062
+ },
1063
+ progress: {
1064
+ empty: u,
1065
+ success: z,
1066
+ error: b,
1067
+ info: f
1010
1068
  }
1011
1069
  },
1012
1070
  surface: {
@@ -1022,9 +1080,9 @@ const Kr = {
1022
1080
  "copy-dark": "#222222",
1023
1081
  "copy-disabled": "#6C6C6C"
1024
1082
  }
1025
- }, _r = z;
1026
- i.gray.white, i.gray.white, i.gray.white, i.gray.white, i.gray[600], i.gray.white, i.gray.white, i.gray.white, i.gray.white, i.gray[600], i.gray.white, i.gray.white, i.gray.white, i.gray.white, i.gray[600], r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.interactive.tertiary.onsurface, r.interactive.tertiary.hover, r.interactive.tertiary.hover, r.interactive.tertiary.onsurface, r.interactive.tertiary.pressed, r.interactive.tertiary.pressed, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active;
1027
- const $r = {
1083
+ }, oi = F;
1084
+ o.gray.white, o.gray.white, o.gray.white, o.gray.white, o.gray[600], o.gray.white, o.gray.white, o.gray.white, o.gray.white, o.gray[600], o.gray.white, o.gray.white, o.gray.white, o.gray.white, o.gray[600], r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.interactive.tertiary.onsurface, r.interactive.tertiary.hover, r.interactive.tertiary.hover, r.interactive.tertiary.onsurface, r.interactive.tertiary.pressed, r.interactive.tertiary.pressed, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.interactive.tertiary.onsurface, r.interactive.tertiary.onsurface, r.interactive.tertiary.onsurface, r.interactive.tertiary.pressed, r.interactive.tertiary.pressed, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active, r.interactive.tertiary.onsurface, r.interactive.tertiary.active, r.interactive.tertiary.active;
1085
+ const ii = {
1028
1086
  general: {
1029
1087
  1: "box-shadow: 0px 4px 16px 0px #00000026",
1030
1088
  2: "box-shadow: 0px 8px 24px -4px #00000026",
@@ -1038,58 +1096,59 @@ const $r = {
1038
1096
  inputs: {
1039
1097
  1: "box-shadow: 0px 1px 2px 0px #0000001F"
1040
1098
  }
1041
- }, eo = {
1099
+ }, ti = {
1042
1100
  instant: 0,
1043
1101
  veryfast: 0.15,
1044
1102
  fast: 0.33,
1045
1103
  medium: 0.5,
1046
1104
  slow: 1,
1047
1105
  veryslow: 2
1048
- }, io = {
1106
+ }, ni = {
1049
1107
  "ver-padding": 4,
1050
1108
  "right-padding": 8,
1051
1109
  "left-padding": 8,
1052
1110
  radius: 50
1053
- }, ro = {
1054
- "ver-padding": o.Size1,
1055
- "hor-padding": o.Size2,
1111
+ }, ai = {
1112
+ "ver-padding": i.Size1,
1113
+ "hor-padding": i.Size2,
1056
1114
  radius: a.BorderRadiusMd,
1057
- gap: o.Size1
1058
- }, oo = {
1059
- "ver-padding": o.Size5,
1060
- "hor-padding": o.Size6,
1061
- gap: o.Size2
1062
- }, to = {
1063
- button: Qr,
1064
- utilityButton: Ur,
1065
- input: Zr,
1066
- row: oo,
1067
- badge: io,
1068
- popover: ro
1069
- }, no = (v, b) => v.status[b].default, C = {
1070
- breakpoints: Kr,
1071
- sizing: o,
1115
+ gap: i.Size1
1116
+ }, li = {
1117
+ "ver-padding": i.Size5,
1118
+ "hor-padding": i.Size6,
1119
+ gap: i.Size2
1120
+ }, gi = {
1121
+ button: Zo,
1122
+ utilityButton: $o,
1123
+ iconButton: ei,
1124
+ input: ri,
1125
+ row: li,
1126
+ badge: ni,
1127
+ popover: ai
1128
+ }, ci = (H, W) => H.status[W].default, m = {
1129
+ breakpoints: jo,
1130
+ sizing: i,
1072
1131
  borderRadius: a,
1073
- typography: Jr,
1074
- allColors: i,
1075
- components: to,
1076
- motion: eo,
1077
- shadows: $r,
1078
- getStatusColor: no
1079
- }, go = {
1080
- ...C,
1081
- colors: z,
1132
+ typography: Uo,
1133
+ allColors: o,
1134
+ components: gi,
1135
+ motion: ti,
1136
+ shadows: ii,
1137
+ getStatusColor: ci
1138
+ }, si = {
1139
+ ...m,
1140
+ colors: F,
1082
1141
  mode: "light"
1083
- }, co = {
1084
- ...C,
1085
- colors: _r,
1142
+ }, yi = {
1143
+ ...m,
1144
+ colors: oi,
1086
1145
  mode: "dark"
1087
1146
  };
1088
1147
  export {
1089
- lo as TypographySizeKey,
1090
- C as baseTokens,
1091
- Kr as breakpoints,
1092
- co as darkTheme,
1093
- go as lightTheme,
1094
- o as sizing
1148
+ pi as TypographySizeKey,
1149
+ m as baseTokens,
1150
+ jo as breakpoints,
1151
+ yi as darkTheme,
1152
+ si as lightTheme,
1153
+ i as sizing
1095
1154
  };