@central-design-system/components 3.0.0-beta.9 → 3.0.0-rc.1

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 (247) hide show
  1. package/dist/cds.css +1 -1
  2. package/dist/cds.d.ts +9 -3
  3. package/dist/cds.es.js +18823 -14336
  4. package/dist/cds.umd.js +6 -6
  5. package/dist/components/CdsAutocomplete/CdsAutocomplete.vue.d.ts +79 -146
  6. package/dist/components/CdsBadge/CdsBadge.vue.d.ts +20 -16
  7. package/dist/components/CdsBreadcrumbs/CdsBreadcrumbs.vue.d.ts +2 -2
  8. package/dist/components/CdsBreadcrumbs/CdsBreadcrumbsItem.vue.d.ts +5 -5
  9. package/dist/components/CdsButton/CdsButton.vue.d.ts +31 -31
  10. package/dist/components/CdsButton/CdsFunctionalButton.vue.d.ts +73 -0
  11. package/dist/components/CdsButton/index.d.ts +1 -0
  12. package/dist/components/CdsCheckbox/CdsCheckbox.vue.d.ts +10 -2
  13. package/dist/components/CdsCheckbox/CdsCheckboxGroup.vue.d.ts +2 -2
  14. package/dist/components/CdsCombobox/CdsCombobox.vue.d.ts +255 -197
  15. package/dist/components/CdsContainer/CdsContainer.vue.d.ts +36 -34
  16. package/dist/components/CdsContainer/context.d.ts +1 -1
  17. package/dist/components/CdsContentSwitcher/CdsContentSwitcher.vue.d.ts +2 -2
  18. package/dist/components/CdsContentSwitcher/CdsContentSwitcherItem.vue.d.ts +27 -27
  19. package/dist/components/CdsDatePicker/CdsDatePicker.vue.d.ts +3 -3
  20. package/dist/components/CdsDatePicker/composable/calendar.d.ts +4 -4
  21. package/dist/components/CdsDivider/CdsDivider.vue.d.ts +45 -0
  22. package/dist/components/CdsDivider/index.d.ts +1 -0
  23. package/dist/components/CdsDrawer/CdsDrawer.vue.d.ts +60 -6
  24. package/dist/components/CdsDropdown/CdsDropdown.vue.d.ts +190 -214
  25. package/dist/components/CdsEmptyState/CdsEmptyState.vue.d.ts +4 -4
  26. package/dist/components/CdsExpandablePanel/CdsExpandablePanel.vue.d.ts +13 -13
  27. package/dist/components/CdsExpandablePanel/CdsExpandablePanelTitle.vue.d.ts +10 -10
  28. package/dist/components/CdsExpandablePanel/CdsExpandablePanels.vue.d.ts +10 -10
  29. package/dist/components/CdsExpandablePanel/composable/expandablePanelTitleProps.d.ts +3 -3
  30. package/dist/components/CdsFooter/CdsFooter.vue.d.ts +14 -5
  31. package/dist/components/CdsForm/CdsForm.vue.d.ts +2 -2
  32. package/dist/components/CdsGrid/composable/column.d.ts +1 -1
  33. package/dist/components/CdsGrid/composable/subgrid.d.ts +1 -1
  34. package/dist/components/CdsGrid/mode/CSSGrid.d.ts +1 -1
  35. package/dist/components/CdsGrid/mode/FlexGrid.d.ts +1 -1
  36. package/dist/components/CdsHeader/CdsHeader.vue.d.ts +14 -5
  37. package/dist/components/CdsIcon/CdsIcon.vue.d.ts +23 -6
  38. package/dist/components/CdsImage/CdsImage.vue.d.ts +264 -0
  39. package/dist/components/CdsImage/components/CdsResponsive.vue.d.ts +87 -0
  40. package/dist/components/CdsImage/components/index.d.ts +1 -0
  41. package/dist/components/CdsImage/composable/image.d.ts +134 -0
  42. package/dist/components/CdsImage/composable/index.d.ts +2 -0
  43. package/dist/components/CdsImage/composable/responsive.d.ts +35 -0
  44. package/dist/components/CdsImage/index.d.ts +2 -0
  45. package/dist/components/CdsInput/CdsInput.vue.d.ts +18 -18
  46. package/dist/components/CdsInput/CdsInputDescription.vue.d.ts +3 -3
  47. package/dist/components/CdsInput/CdsInputLabel.vue.d.ts +15 -4
  48. package/dist/components/CdsLayout/CdsLayout.vue.d.ts +3 -3
  49. package/dist/components/CdsLayout/context.d.ts +1 -1
  50. package/dist/components/CdsLink/CdsLink.vue.d.ts +5 -15
  51. package/dist/components/CdsList/CdsList.vue.d.ts +11 -26
  52. package/dist/components/CdsList/CdsListGroup.vue.d.ts +7 -7
  53. package/dist/components/CdsList/CdsListItem.vue.d.ts +12 -12
  54. package/dist/components/CdsList/composable/list.d.ts +1 -1
  55. package/dist/components/CdsLoader/CdsLoader.vue.d.ts +3 -3
  56. package/dist/components/CdsMenu/CdsMenu.vue.d.ts +50 -16
  57. package/dist/components/CdsModal/CdsModal.vue.d.ts +32 -10
  58. package/dist/components/CdsNotification/CdsNotification.vue.d.ts +23 -27
  59. package/dist/components/CdsNotification/CdsNotificationAlert.vue.d.ts +44 -26
  60. package/dist/components/CdsNotification/composable/notification.d.ts +4 -4
  61. package/dist/components/CdsOverlay/CdsOverlay.vue.d.ts +35 -3
  62. package/dist/components/CdsOverlay/composable/activator.d.ts +19 -6
  63. package/dist/components/CdsOverlay/composable/locationStrategies.d.ts +6 -5
  64. package/dist/components/CdsOverlay/composable/scrollStrategies.d.ts +1 -1
  65. package/dist/components/CdsOverlay/composable/teleport.d.ts +25 -1
  66. package/dist/components/CdsOverlay/constants.d.ts +2 -0
  67. package/dist/components/CdsPagination/CdsPagination.vue.d.ts +28 -4
  68. package/dist/components/CdsProgress/CdsProgress.vue.d.ts +2 -2
  69. package/dist/components/CdsRadioButton/CdsRadio.vue.d.ts +18 -14
  70. package/dist/components/CdsRadioButton/CdsRadioButton.vue.d.ts +2 -2
  71. package/dist/components/CdsSelect/CdsSelect.vue.d.ts +81 -67
  72. package/dist/components/CdsSidebar/CdsSidebar.vue.d.ts +3 -3
  73. package/dist/components/CdsSkeletonLoader/CdsSkeletonLoader.vue.d.ts +5 -5
  74. package/dist/components/CdsSlideGroup/CdsSlideGroup.vue.d.ts +19 -19
  75. package/dist/components/CdsStages/CdsStages.vue.d.ts +3 -3
  76. package/dist/components/CdsStatus/CdsStatus.vue.d.ts +30 -23
  77. package/dist/components/CdsSteps/CdsSteps.vue.d.ts +7 -67
  78. package/dist/components/CdsSteps/CdsStepsItem.vue.d.ts +5 -5
  79. package/dist/components/CdsSteps/context.d.ts +3 -2
  80. package/dist/components/CdsTable/CdsTable.vue.d.ts +90 -45
  81. package/dist/components/CdsTable/components/Footer/Footer.d.ts +1 -1
  82. package/dist/components/CdsTable/components/Header/DragHandle.d.ts +1 -1
  83. package/dist/components/CdsTable/components/Icons/ExpandIcon.d.ts +2 -1
  84. package/dist/components/CdsTable/components/Table/InternalTable.d.ts +83 -26
  85. package/dist/components/CdsTable/components/TableProvider.d.ts +86 -29
  86. package/dist/components/CdsTable/composable/filter.d.ts +1 -1
  87. package/dist/components/CdsTable/composable/flat.d.ts +1 -1
  88. package/dist/components/CdsTable/composable/pagination.d.ts +4 -2
  89. package/dist/components/CdsTable/composable/scroll.d.ts +4607 -0
  90. package/dist/components/CdsTable/composable/selection.d.ts +1 -1
  91. package/dist/components/CdsTable/composable/sorter.d.ts +1 -1
  92. package/dist/components/CdsTable/composable/sticky.d.ts +1 -1
  93. package/dist/components/CdsTable/composable/table.d.ts +53 -13
  94. package/dist/components/CdsTable/constants.d.ts +1 -0
  95. package/dist/components/CdsTable/context/summary.d.ts +1 -1
  96. package/dist/components/CdsTable/context/table.d.ts +1 -1
  97. package/dist/components/CdsTable/interface.d.ts +11 -7
  98. package/dist/components/CdsTable/utils/column.d.ts +1 -3
  99. package/dist/components/CdsTable/utils/index.d.ts +1 -1
  100. package/dist/components/CdsTable/utils/vnode.d.ts +10 -0
  101. package/dist/components/CdsTabs/CdsTab.vue.d.ts +14 -14
  102. package/dist/components/CdsTabs/CdsTabs.vue.d.ts +29 -34
  103. package/dist/components/CdsTag/CdsTag.vue.d.ts +45 -41
  104. package/dist/components/CdsTextArea/CdsTextArea.vue.d.ts +71 -49
  105. package/dist/components/CdsTextInput/CdsTextInput.vue.d.ts +81 -71
  106. package/dist/components/CdsTimePicker/CdsTimePicker.vue.d.ts +2 -2
  107. package/dist/components/CdsTimePicker/composable/time.d.ts +2 -2
  108. package/dist/components/CdsToggle/CdsToggle.vue.d.ts +2 -2
  109. package/dist/components/CdsToolbar/CdsToolbar.vue.d.ts +44 -2
  110. package/dist/components/CdsTooltip/CdsTooltip.vue.d.ts +30 -20
  111. package/dist/components/CdsTree/CdsTree.vue.d.ts +708 -0
  112. package/dist/components/CdsTree/CdsTreeDirectory.vue.d.ts +446 -0
  113. package/dist/components/CdsTree/CdsTreeNode.vue.d.ts +119 -0
  114. package/dist/components/CdsTree/components/DropIndicator.d.ts +9 -0
  115. package/dist/components/CdsTree/components/Indent.d.ts +10 -0
  116. package/dist/components/CdsTree/components/MotionTreeNode.d.ts +128 -0
  117. package/dist/components/CdsTree/components/NodeList.d.ts +191 -0
  118. package/dist/components/CdsTree/components/SwitcherIcon.d.ts +12 -0
  119. package/dist/components/CdsTree/components/TreeContext.d.ts +81 -0
  120. package/dist/components/CdsTree/components/TreeProvider.d.ts +619 -0
  121. package/dist/components/CdsTree/components/VirtualList/Filler.d.ts +12 -0
  122. package/dist/components/CdsTree/components/VirtualList/Item.d.ts +6 -0
  123. package/dist/components/CdsTree/components/VirtualList/ScrollBar.d.ts +33 -0
  124. package/dist/components/CdsTree/components/VirtualList/VirtualList.d.ts +84 -0
  125. package/dist/components/CdsTree/components/VirtualList/features/index.d.ts +5 -0
  126. package/dist/components/CdsTree/components/VirtualList/features/useFrameWheel.d.ts +10 -0
  127. package/dist/components/CdsTree/components/VirtualList/features/useHeights.d.ts +9 -0
  128. package/dist/components/CdsTree/components/VirtualList/features/useMobileTouchMove.d.ts +2 -0
  129. package/dist/components/CdsTree/components/VirtualList/features/useOriginScroll.d.ts +2 -0
  130. package/dist/components/CdsTree/components/VirtualList/features/useScrollTo.d.ts +4 -0
  131. package/dist/components/CdsTree/components/VirtualList/index.d.ts +2 -0
  132. package/dist/components/CdsTree/components/VirtualList/interface.d.ts +10 -0
  133. package/dist/components/CdsTree/composable/events.d.ts +133 -0
  134. package/dist/components/CdsTree/composable/index.d.ts +2 -0
  135. package/dist/components/CdsTree/composable/tree.d.ts +273 -0
  136. package/dist/components/CdsTree/composable/treeNode.d.ts +75 -0
  137. package/dist/components/CdsTree/index.d.ts +5 -0
  138. package/dist/components/CdsTree/interface.d.ts +104 -4
  139. package/dist/components/CdsTree/utils/conduct.d.ts +1 -1
  140. package/dist/components/CdsTree/utils/data.d.ts +70 -0
  141. package/dist/components/CdsTree/utils/diff.d.ts +6 -0
  142. package/dist/components/CdsTree/utils/directory.d.ts +9 -0
  143. package/dist/components/CdsTree/utils/index.d.ts +2 -0
  144. package/dist/components/CdsUploader/CdsUploader.vue.d.ts +637 -57
  145. package/dist/components/CdsUploader/components/AjaxUploader.d.ts +603 -15
  146. package/dist/components/CdsUploader/components/UploadList/ListItem.d.ts +19 -19
  147. package/dist/components/CdsUploader/components/UploadList/UploadList.d.ts +18 -18
  148. package/dist/components/CdsUploader/composable/upload.d.ts +221 -19
  149. package/dist/components/CdsUploader/index.d.ts +1 -0
  150. package/dist/components/CdsUploader/interface.d.ts +1 -1
  151. package/dist/components/index.d.ts +10 -1
  152. package/dist/composable/appearance.d.ts +4 -4
  153. package/dist/composable/color.d.ts +17 -6
  154. package/dist/composable/datetime.d.ts +4 -4
  155. package/dist/composable/delay.d.ts +3 -2
  156. package/dist/composable/direction.d.ts +1 -1
  157. package/dist/composable/display.d.ts +2 -0
  158. package/dist/composable/domObserver.d.ts +5 -0
  159. package/dist/composable/field.d.ts +17 -5
  160. package/dist/composable/filter.d.ts +30 -0
  161. package/dist/composable/form.d.ts +2 -2
  162. package/dist/composable/group.d.ts +3 -3
  163. package/dist/composable/icon.d.ts +3 -3
  164. package/dist/composable/index.d.ts +4 -1
  165. package/dist/composable/invertColor.d.ts +19 -0
  166. package/dist/composable/layout.d.ts +20 -20
  167. package/dist/composable/loading.d.ts +2 -2
  168. package/dist/composable/menu.d.ts +3 -1
  169. package/dist/composable/nested/nested.d.ts +2 -2
  170. package/dist/composable/overlay.d.ts +9 -1
  171. package/dist/{components/CdsDropdown/composable → composable}/scrolling.d.ts +2 -2
  172. package/dist/composable/select.d.ts +12 -19
  173. package/dist/composable/size.d.ts +1 -1
  174. package/dist/composable/text.d.ts +2 -2
  175. package/dist/composable/theme.d.ts +13 -22
  176. package/dist/composable/transition.d.ts +2 -0
  177. package/dist/composable/transparent.d.ts +19 -0
  178. package/dist/composable/validation.d.ts +2 -2
  179. package/dist/composable/variant.d.ts +2 -5
  180. package/dist/create.d.ts +6 -1
  181. package/dist/globals.d.ts +7 -0
  182. package/dist/locale/index.d.ts +4 -1
  183. package/dist/themes/b2bDark.d.ts +190 -0
  184. package/dist/themes/b2bLight.d.ts +190 -0
  185. package/dist/themes/cdsDark.d.ts +190 -0
  186. package/dist/themes/cdsLight.d.ts +190 -0
  187. package/dist/themes/colors.d.ts +458 -0
  188. package/dist/themes/index.d.ts +5 -4
  189. package/dist/themes/themes.d.ts +4 -4
  190. package/dist/transitions/collapseTransition.d.ts +11 -0
  191. package/dist/transitions/index.d.ts +1 -0
  192. package/dist/utils/colorsUtils/utils.d.ts +1 -0
  193. package/dist/utils/date/date.d.ts +1 -0
  194. package/dist/utils/dom/bindProps.d.ts +2 -0
  195. package/dist/utils/dom/box.d.ts +1 -0
  196. package/dist/utils/helpers.d.ts +24 -6
  197. package/dist/utils/index.d.ts +3 -1
  198. package/dist/utils/propsFactory.d.ts +1 -1
  199. package/dist/utils/use/flattenChildren.d.ts +3 -0
  200. package/nuxt.js +2 -1
  201. package/package.json +5 -1
  202. package/src/scss/index.scss +0 -2
  203. package/src/scss/mixins/layout/_shadow.scss +43 -2
  204. package/src/scss/mixins/layout/_spacing.scss +13 -12
  205. package/src/scss/mixins/layout/index.scss +1 -0
  206. package/src/scss/mixins/typo.scss +261 -58
  207. package/src/scss/modules/_reset.scss +5 -4
  208. package/src/scss/modules/_transition.scss +31 -0
  209. package/src/scss/modules/_typography.scss +6 -2
  210. package/src/scss/modules/grid/_css-grid.scss +12 -19
  211. package/src/scss/modules/grid/_flex-grid.scss +9 -5
  212. package/src/scss/modules/grid/_mixins.scss +23 -31
  213. package/src/scss/themes/.deprecated +1 -0
  214. package/src/scss/themes/b2b/tokens.json +104 -104
  215. package/src/scss/themes/b2b/variables.css +142 -0
  216. package/src/scss/themes/cds/tokens.json +104 -104
  217. package/src/scss/themes/cds/variables.css +173 -31
  218. package/src/scss/themes/index.ts +1 -1
  219. package/src/scss/utility/index.scss +1 -0
  220. package/src/scss/utility/lists.scss +1 -1
  221. package/src/scss/utility/typography.scss +63 -0
  222. package/src/scss/utility/variables/exports/_display.scss +4 -4
  223. package/src/scss/utility/variables/exports/_typography.scss +22 -0
  224. package/src/scss/utility/variables/index.scss +1 -0
  225. package/src/scss/utility/variables/typography.scss +93 -0
  226. package/src/themes/b2bDark.ts +191 -0
  227. package/src/themes/b2bLight.ts +191 -0
  228. package/src/themes/cdsDark.ts +191 -0
  229. package/src/themes/cdsLight.ts +191 -0
  230. package/src/themes/colors.ts +492 -0
  231. package/src/themes/css/b2bDark.css +184 -0
  232. package/src/themes/css/b2bLight.css +184 -0
  233. package/src/themes/css/cdsDark.css +184 -0
  234. package/src/themes/css/cdsLight.css +184 -0
  235. package/src/themes/index.ts +8 -0
  236. package/src/themes/themes.d.ts +10 -0
  237. package/dist/components/CdsDropdown/composable/index.d.ts +0 -1
  238. package/dist/components/CdsSteps/svg/_CdsStepCurrentIcon.vue.d.ts +0 -2
  239. package/dist/components/CdsSteps/svg/_CdsStepsIconIncomplete.vue.d.ts +0 -2
  240. package/dist/composable/dark.d.ts +0 -19
  241. package/dist/plugins/index.d.ts +0 -2
  242. package/dist/themes/b2b.d.ts +0 -26
  243. package/dist/themes/cds.d.ts +0 -26
  244. package/dist/themes/dark.d.ts +0 -26
  245. package/dist/themes/promo.d.ts +0 -26
  246. package/dist/utils/colors.d.ts +0 -368
  247. /package/dist/{components/CdsTable/utils → utils/use}/listener.d.ts +0 -0
@@ -0,0 +1,492 @@
1
+ /**
2
+ * Automatically generated by CDS CLI from CDS Server
3
+ * Generated on 1/27/2025, 7:21:39 AM
4
+ * Updated on 2024-12-25T14:30:52.638Z
5
+ **/
6
+
7
+ const red = Object.freeze({
8
+ light10: '#FFE9E3',
9
+ light50: '#FFD1C6',
10
+ light100: '#FEC0B2',
11
+ light200: '#FFAE9E',
12
+ light300: '#FE9585',
13
+ light400: '#FE8071',
14
+ light500: '#F46A5D',
15
+ light600: '#E4594F',
16
+ light700: '#D1453F',
17
+ light800: '#9D2124',
18
+ light900: '#831118',
19
+ light950: '#470500',
20
+ dark10: '#4C1715',
21
+ dark50: '#822825',
22
+ dark100: '#A5302F',
23
+ dark200: '#B8423D',
24
+ dark300: '#D15850',
25
+ dark400: '#DF655C',
26
+ dark500: '#F0786D',
27
+ dark600: '#F9887C',
28
+ dark700: '#FF9E92',
29
+ dark800: '#FFC4BA',
30
+ dark900: '#FFD2CC',
31
+ dark950: '#FFE8E4'
32
+ });
33
+
34
+ const chocolate = Object.freeze({
35
+ light10: '#FAEBDF',
36
+ light50: '#E7D9CC',
37
+ light100: '#E0CBBB',
38
+ light200: '#D8BEA9',
39
+ light300: '#CDAD93',
40
+ light400: '#C4A082',
41
+ light500: '#B78F6D',
42
+ light600: '#AC7F58',
43
+ light700: '#9E6D41',
44
+ light800: '#7F470D',
45
+ light900: '#693803',
46
+ light950: '#361D01',
47
+ dark10: '#3F2301',
48
+ dark50: '#6E3B01',
49
+ dark100: '#874E0A',
50
+ dark200: '#985E1F',
51
+ dark300: '#AF7134',
52
+ dark400: '#BB7F42',
53
+ dark500: '#CA915C',
54
+ dark600: '#D49E6D',
55
+ dark700: '#E1AE7F',
56
+ dark800: '#F1CBA7',
57
+ dark900: '#F4D8BE',
58
+ dark950: '#FAEADB'
59
+ });
60
+
61
+ const orange = Object.freeze({
62
+ light10: '#FEEAD9',
63
+ light50: '#FBD5B5',
64
+ light100: '#FBC398',
65
+ light200: '#FBB27C',
66
+ light300: '#FB9A57',
67
+ light400: '#F38A4A',
68
+ light500: '#E17B44',
69
+ light600: '#D16C39',
70
+ light700: '#BD5B2D',
71
+ light800: '#8F3810',
72
+ light900: '#782A0A',
73
+ light950: '#431502',
74
+ dark10: '#471D07',
75
+ dark50: '#793213',
76
+ dark100: '#9A3F15',
77
+ dark200: '#AC5025',
78
+ dark300: '#C36438',
79
+ dark400: '#D27144',
80
+ dark500: '#E48255',
81
+ dark600: '#EE9165',
82
+ dark700: '#F5A57F',
83
+ dark800: '#FAC7B0',
84
+ dark900: '#FBD5C4',
85
+ dark950: '#FEE8DE'
86
+ });
87
+
88
+ const yellow = Object.freeze({
89
+ light10: '#FBEDBE',
90
+ light50: '#F2DB82',
91
+ light100: '#EACD60',
92
+ light200: '#DEC048',
93
+ light300: '#D1AF30',
94
+ light400: '#C6A221',
95
+ light500: '#B69210',
96
+ light600: '#A6840A',
97
+ light700: '#937305',
98
+ light800: '#6B5100',
99
+ light900: '#584001',
100
+ light950: '#312300',
101
+ dark10: '#382601',
102
+ dark50: '#614301',
103
+ dark100: '#785501',
104
+ dark200: '#8A6502',
105
+ dark300: '#A07914',
106
+ dark400: '#AE8624',
107
+ dark500: '#BE9737',
108
+ dark600: '#C9A449',
109
+ dark700: '#D4B56A',
110
+ dark800: '#E5D0A0',
111
+ dark900: '#EADBBA',
112
+ dark950: '#F4EBD9'
113
+ });
114
+
115
+ const lemon = Object.freeze({
116
+ light10: '#F4EFBE',
117
+ light50: '#E6DF83',
118
+ light100: '#D8D268',
119
+ light200: '#CBC65F',
120
+ light300: '#BAB726',
121
+ light400: '#ADAB26',
122
+ light500: '#9D9B25',
123
+ light600: '#8E8C23',
124
+ light700: '#7D7A1F',
125
+ light800: '#5A571C',
126
+ light900: '#494619',
127
+ light950: '#282601',
128
+ dark10: '#2A2C01',
129
+ dark50: '#484C01',
130
+ dark100: '#5C6101',
131
+ dark200: '#6A7100',
132
+ dark300: '#7F8505',
133
+ dark400: '#8C921D',
134
+ dark500: '#9DA235',
135
+ dark600: '#ABAE48',
136
+ dark700: '#BBBD6A',
137
+ dark800: '#D6D5A1',
138
+ dark900: '#E0DFBA',
139
+ dark950: '#EEEED9'
140
+ });
141
+
142
+ const lime = Object.freeze({
143
+ light10: '#EAF2C4',
144
+ light50: '#D4E490',
145
+ light100: '#C4D878',
146
+ light200: '#B6CC65',
147
+ light300: '#A1BE40',
148
+ light400: '#93B230',
149
+ light500: '#85A12D',
150
+ light600: '#78922C',
151
+ light700: '#6A8029',
152
+ light800: '#4C5B21',
153
+ light900: '#3E4A1D',
154
+ light950: '#202901',
155
+ dark10: '#242D01',
156
+ dark50: '#3D4F00',
157
+ dark100: '#4E6401',
158
+ dark200: '#5B7400',
159
+ dark300: '#6E8913',
160
+ dark400: '#7C9624',
161
+ dark500: '#8DA63B',
162
+ dark600: '#9BB24D',
163
+ dark700: '#AEC06D',
164
+ dark800: '#CDD7A3',
165
+ dark900: '#D9E0BB',
166
+ dark950: '#EBEED8'
167
+ });
168
+
169
+ const green = Object.freeze({
170
+ light10: '#DCF5D0',
171
+ light50: '#BCE8AB',
172
+ light100: '#A5DD98',
173
+ light200: '#97D283',
174
+ light300: '#7DC470',
175
+ light400: '#6EB85A',
176
+ light500: '#50A946',
177
+ light600: '#3C9C2C',
178
+ light700: '#2C8926',
179
+ light800: '#026309',
180
+ light900: '#005005',
181
+ light950: '#0B2C01',
182
+ dark10: '#093107',
183
+ dark50: '#0D5512',
184
+ dark100: '#016B12',
185
+ dark200: '#1F7C22',
186
+ dark300: '#399136',
187
+ dark400: '#479E43',
188
+ dark500: '#5DAF55',
189
+ dark600: '#6EBA66',
190
+ dark700: '#89C880',
191
+ dark800: '#B6DCAF',
192
+ dark900: '#CAE4C4',
193
+ dark950: '#E1F1DE'
194
+ });
195
+
196
+ const cyan = Object.freeze({
197
+ light10: '#D4F5EC',
198
+ light50: '#9FEBD8',
199
+ light100: '#6FE3CA',
200
+ light200: '#58D8BE',
201
+ light300: '#51C5AE',
202
+ light400: '#4FB9A3',
203
+ light500: '#48A692',
204
+ light600: '#439786',
205
+ light700: '#3C8475',
206
+ light800: '#2A5F54',
207
+ light900: '#204D44',
208
+ light950: '#052B24',
209
+ dark10: '#013126',
210
+ dark50: '#005348',
211
+ dark100: '#026959',
212
+ dark200: '#067A69',
213
+ dark300: '#04917C',
214
+ dark400: '#029E88',
215
+ dark500: '#0AB098',
216
+ dark600: '#0ABEA3',
217
+ dark700: '#45CCB2',
218
+ dark800: '#96E0CE',
219
+ dark900: '#B6E7DB',
220
+ dark950: '#D5F3EB'
221
+ });
222
+
223
+ const teal = Object.freeze({
224
+ light10: '#D4F4F7',
225
+ light50: '#A1E9E9',
226
+ light100: '#74DFE3',
227
+ light200: '#48D6DB',
228
+ light300: '#44C4CC',
229
+ light400: '#41B7BF',
230
+ light500: '#3CA5AD',
231
+ light600: '#3A969E',
232
+ light700: '#34838A',
233
+ light800: '#2A5D62',
234
+ light900: '#254C50',
235
+ light950: '#022B2F',
236
+ dark10: '#012F37',
237
+ dark50: '#04525B',
238
+ dark100: '#046672',
239
+ dark200: '#007886',
240
+ dark300: '#028D9C',
241
+ dark400: '#059BAC',
242
+ dark500: '#01ACBF',
243
+ dark600: '#0ABACE',
244
+ dark700: '#31C9DD',
245
+ dark800: '#91DEEB',
246
+ dark900: '#B3E6EF',
247
+ dark950: '#D4F2F7'
248
+ });
249
+
250
+ const sky = Object.freeze({
251
+ light10: '#E2EFFF',
252
+ light50: '#C3DFFF',
253
+ light100: '#A9D3FF',
254
+ light200: '#90C8FF',
255
+ light300: '#71B7F7',
256
+ light400: '#4CAEF8',
257
+ light500: '#2B9DE9',
258
+ light600: '#198FD8',
259
+ light700: '#1D7DBC',
260
+ light800: '#06598B',
261
+ light900: '#004871',
262
+ light950: '#012740',
263
+ dark10: '#002D47',
264
+ dark50: '#014F77',
265
+ dark100: '#016193',
266
+ dark200: '#0172AC',
267
+ dark300: '#0287CA',
268
+ dark400: '#0394DD',
269
+ dark500: '#0EA4F8',
270
+ dark600: '#4DB1FF',
271
+ dark700: '#77BEFE',
272
+ dark800: '#B0D6FF',
273
+ dark900: '#C7E0FF',
274
+ dark950: '#E2EEFE'
275
+ });
276
+
277
+ const blue = Object.freeze({
278
+ light10: '#E6EEFF',
279
+ light50: '#CBDDFD',
280
+ light100: '#B6D0FD',
281
+ light200: '#A4C5FE',
282
+ light300: '#85B4FB',
283
+ light400: '#6EA9FC',
284
+ light500: '#4D98F9',
285
+ light600: '#3D8AEC',
286
+ light700: '#2978D4',
287
+ light800: '#14559C',
288
+ light900: '#11447D',
289
+ light950: '#072649',
290
+ dark10: '#142955',
291
+ dark50: '#1D4790',
292
+ dark100: '#1159B5',
293
+ dark200: '#3368C8',
294
+ dark300: '#417FE1',
295
+ dark400: '#4A8DEF',
296
+ dark500: '#5D9DFC',
297
+ dark600: '#76ABFF',
298
+ dark700: '#92BAFE',
299
+ dark800: '#BBD4FE',
300
+ dark900: '#CDDEFF',
301
+ dark950: '#E4EDFE'
302
+ });
303
+
304
+ const indigo = Object.freeze({
305
+ light10: '#EEECFF',
306
+ light50: '#DDD9FC',
307
+ light100: '#CFCAF7',
308
+ light200: '#C3BDF9',
309
+ light300: '#B1ABF1',
310
+ light400: '#A49FF1',
311
+ light500: '#918DEC',
312
+ light600: '#807EEC',
313
+ light700: '#6B6CD8',
314
+ light800: '#4649AF',
315
+ light900: '#353799',
316
+ light950: '#1F1F55',
317
+ dark10: '#212753',
318
+ dark50: '#40428D',
319
+ dark100: '#5350B0',
320
+ dark200: '#6362C5',
321
+ dark300: '#7477DC',
322
+ dark400: '#7E83EA',
323
+ dark500: '#8B95F9',
324
+ dark600: '#96A4FF',
325
+ dark700: '#A6B5FE',
326
+ dark800: '#C7D0FE',
327
+ dark900: '#D7DBFE',
328
+ dark950: '#EBEBFF'
329
+ });
330
+
331
+ const purple = Object.freeze({
332
+ light10: '#F5E9FE',
333
+ light50: '#E8D5F6',
334
+ light100: '#DEC5F1',
335
+ light200: '#D6B8EF',
336
+ light300: '#C9A4E9',
337
+ light400: '#C195E7',
338
+ light500: '#B381E1',
339
+ light600: '#A96FDE',
340
+ light700: '#955EC8',
341
+ light800: '#6D3BA0',
342
+ light900: '#59288A',
343
+ light950: '#2F0F50',
344
+ dark10: '#31224F',
345
+ dark50: '#5E3882',
346
+ dark100: '#7346A5',
347
+ dark200: '#8457B8',
348
+ dark300: '#946DD2',
349
+ dark400: '#9D7AE0',
350
+ dark500: '#AE8BEE',
351
+ dark600: '#B79AF5',
352
+ dark700: '#C0AEF8',
353
+ dark800: '#D7CCFA',
354
+ dark900: '#E1D8FC',
355
+ dark950: '#F3E9FE'
356
+ });
357
+
358
+ const pink = Object.freeze({
359
+ light10: '#F7E9FF',
360
+ light50: '#F8D1F2',
361
+ light100: '#F6BEEC',
362
+ light200: '#F3ACE7',
363
+ light300: '#F094DF',
364
+ light400: '#ED81D8',
365
+ light500: '#DB70C4',
366
+ light600: '#D25CB8',
367
+ light700: '#BD49A2',
368
+ light800: '#941A79',
369
+ light900: '#7C0164',
370
+ light950: '#420D35',
371
+ dark10: '#47173D',
372
+ dark50: '#7A2869',
373
+ dark100: '#992F84',
374
+ dark200: '#AC4296',
375
+ dark300: '#C358AB',
376
+ dark400: '#D164B8',
377
+ dark500: '#E078C7',
378
+ dark600: '#E889D1',
379
+ dark700: '#ECA1D8',
380
+ dark800: '#F4C5E7',
381
+ dark900: '#F7D3EC',
382
+ dark950: '#FDE6F6'
383
+ });
384
+
385
+ const silver = Object.freeze({
386
+ light10: '#ECEEF2',
387
+ light50: '#DADDE2',
388
+ light100: '#CCCFD6',
389
+ light200: '#C0C3CB',
390
+ light300: '#AFB3BD',
391
+ light400: '#A3A7B2',
392
+ light500: '#9298A4',
393
+ light600: '#828A97',
394
+ light700: '#727987',
395
+ light800: '#4F5666',
396
+ light900: '#404653',
397
+ light950: '#212631',
398
+ dark10: '#272A30',
399
+ dark50: '#454951',
400
+ dark100: '#565D67',
401
+ dark200: '#666C79',
402
+ dark300: '#7A808E',
403
+ dark400: '#868C99',
404
+ dark500: '#989DA8',
405
+ dark600: '#A5A9B2',
406
+ dark700: '#B5B7C0',
407
+ dark800: '#CFD2D7',
408
+ dark900: '#DCDDE3',
409
+ dark950: '#ECECEF',
410
+ dark25: '#33373F'
411
+ });
412
+
413
+ const gray = Object.freeze({
414
+ light10: '#EEEEEE',
415
+ light50: '#DCDCDC',
416
+ light100: '#CFCFCF',
417
+ light200: '#C3C3C3',
418
+ light300: '#B3B3B3',
419
+ light400: '#A7A7A7',
420
+ light500: '#989898',
421
+ light600: '#898989',
422
+ light700: '#797979',
423
+ light800: '#565656',
424
+ light900: '#454545',
425
+ light950: '#262626',
426
+ dark10: '#2A2A2A',
427
+ dark50: '#494949',
428
+ dark100: '#5C5C5C',
429
+ dark200: '#6C6C6C',
430
+ dark300: '#808080',
431
+ dark400: '#8C8C8C',
432
+ dark500: '#9D9D9D',
433
+ dark600: '#A9A9A9',
434
+ dark700: '#B8B8B8',
435
+ dark800: '#D2D2D2',
436
+ dark900: '#DDDDDD',
437
+ dark950: '#ECECEC',
438
+ light0: '#FFFFFF',
439
+ light1000: '#000000',
440
+ dark0: '#1A1A1A',
441
+ dark1000: '#F9F9FC'
442
+ });
443
+
444
+ const alpha = Object.freeze({
445
+ dark500: '#272A3080',
446
+ dark400: '#272A3066',
447
+ dark300: '#272A304D',
448
+ dark200: '#272A3033',
449
+ dark100: '#272A301A',
450
+ light100: '#FFFFFF1A',
451
+ light200: '#FFFFFF33',
452
+ light300: '#FFFFFF4D',
453
+ light400: '#FFFFFF66',
454
+ light500: '#FFFFFF80',
455
+ silver100: '#828A971A',
456
+ silver200: '#828A9733',
457
+ silver300: '#828A974D',
458
+ silver400: '#828A9766',
459
+ silver500: '#828A9780',
460
+ light0: '#FFFFFF00',
461
+ dark0: '#272A3000',
462
+ silver0: '#828A9700',
463
+ dark600: '#272A3099',
464
+ dark700: '#272A30B2',
465
+ dark800: '#272A30CC',
466
+ silver600: '#828A9799',
467
+ silver700: '#828A97B2',
468
+ silver800: '#828A97CC',
469
+ light600: '#FFFFFF99',
470
+ light700: '#FFFFFFB2',
471
+ light800: '#FFFFFFCC'
472
+ });
473
+
474
+ export default {
475
+ red,
476
+ chocolate,
477
+ orange,
478
+ yellow,
479
+ lemon,
480
+ lime,
481
+ green,
482
+ cyan,
483
+ teal,
484
+ sky,
485
+ blue,
486
+ indigo,
487
+ purple,
488
+ pink,
489
+ silver,
490
+ gray,
491
+ alpha
492
+ };
@@ -0,0 +1,184 @@
1
+ :root {
2
+ --cds-spacing-900: 4rem;
3
+ --cds-spacing-800: 3rem;
4
+ --cds-spacing-700: 2.5rem;
5
+ --cds-spacing-600: 2rem;
6
+ --cds-spacing-500: 1.5rem;
7
+ --cds-spacing-50: 0.125rem;
8
+ --cds-spacing-400: 1rem;
9
+ --cds-spacing-300: 0.75rem;
10
+ --cds-spacing-200: 0.5rem;
11
+ --cds-spacing-1100: 6rem;
12
+ --cds-spacing-1000: 5rem;
13
+ --cds-spacing-100: 0.25rem;
14
+ --cds-shadow-y-minus-400: 0rem;
15
+ --cds-shadow-y-minus-300: 0rem;
16
+ --cds-shadow-y-minus-200: 0rem;
17
+ --cds-shadow-y-minus-100: 0rem;
18
+ --cds-shadow-y-400: 0rem;
19
+ --cds-shadow-y-300: 0rem;
20
+ --cds-shadow-y-200: 0rem;
21
+ --cds-shadow-y-100: 0rem;
22
+ --cds-shadow-x-minus-400: 0rem;
23
+ --cds-shadow-x-minus-300: 0rem;
24
+ --cds-shadow-x-minus-200: 0rem;
25
+ --cds-shadow-x-minus-100: 0rem;
26
+ --cds-shadow-x-400: 0rem;
27
+ --cds-shadow-x-300: 0rem;
28
+ --cds-shadow-x-200: 0rem;
29
+ --cds-shadow-x-100: 0rem;
30
+ --cds-shadow-blur-400: 0rem;
31
+ --cds-shadow-blur-300: 0rem;
32
+ --cds-shadow-blur-200: 0rem;
33
+ --cds-shadow-blur-100: 0rem;
34
+ --cds-font-weight-regular: 400;
35
+ --cds-font-weight-bold: 700;
36
+ --cds-font-size-900: 3.25rem;
37
+ --cds-font-size-800: 2.75rem;
38
+ --cds-font-size-700: 2.25rem;
39
+ --cds-font-size-600: 1.75rem;
40
+ --cds-font-size-500: 1.5rem;
41
+ --cds-font-size-50: 0.625rem;
42
+ --cds-font-size-400: 1.25rem;
43
+ --cds-font-size-300: 1rem;
44
+ --cds-font-size-200: 0.875rem;
45
+ --cds-font-size-1100: 4.5rem;
46
+ --cds-font-size-1000: 3.75rem;
47
+ --cds-font-size-100: 0.75rem;
48
+ --cds-font-line-height-900: 4rem;
49
+ --cds-font-line-height-800: 3rem;
50
+ --cds-font-line-height-700: 2.5rem;
51
+ --cds-font-line-height-600: 2rem;
52
+ --cds-font-line-height-500: 1.75rem;
53
+ --cds-font-line-height-50: 0.75rem;
54
+ --cds-font-line-height-400: 1.5rem;
55
+ --cds-font-line-height-300: 1.25rem;
56
+ --cds-font-line-height-200: 1rem;
57
+ --cds-font-line-height-1100: 5.5rem;
58
+ --cds-font-line-height-1000: 4.5rem;
59
+ --cds-font-line-height-100: 0.875rem;
60
+ --cds-font-letter-spacing-500: 0.0625rem;
61
+ --cds-font-family: Arial;
62
+ --cds-border-radius-300: 0.5rem;
63
+ --cds-border-radius-200: 0.25rem;
64
+ --cds-border-radius-100: 0.125rem;
65
+ --cds-border-200: 0.125rem;
66
+ --cds-border-100: 0.0625rem;
67
+ --cds-base-unit: 16px;
68
+ --cds-color-surface-secondary: 51, 55, 63;
69
+ --cds-color-surface-primary: 39, 42, 48;
70
+ --cds-color-surface-overlay: 39, 42, 48, 0.8;
71
+ --cds-color-surface-inverse: 220, 221, 227;
72
+ --cds-color-surface-elevated: 51, 55, 63;
73
+ --cds-color-status-warning-surface: 201, 164, 73;
74
+ --cds-color-status-warning-line: 190, 151, 55;
75
+ --cds-color-status-warning-fill-hover: 138, 101, 2;
76
+ --cds-color-status-warning-fill: 97, 67, 1;
77
+ --cds-color-status-warning-content: 234, 219, 186;
78
+ --cds-color-status-success-surface: 110, 186, 102;
79
+ --cds-color-status-success-line: 93, 175, 85;
80
+ --cds-color-status-success-fill-hover: 31, 124, 34;
81
+ --cds-color-status-success-fill: 13, 85, 18;
82
+ --cds-color-status-success-content: 202, 228, 196;
83
+ --cds-color-status-progress-surface: 77, 177, 255;
84
+ --cds-color-status-progress-line: 14, 164, 248;
85
+ --cds-color-status-progress-fill-hover: 1, 114, 172;
86
+ --cds-color-status-progress-fill: 1, 79, 119;
87
+ --cds-color-status-progress-content: 199, 224, 255;
88
+ --cds-color-status-info-surface: 165, 169, 178;
89
+ --cds-color-status-info-line: 152, 157, 168;
90
+ --cds-color-status-info-fill-hover: 102, 108, 121;
91
+ --cds-color-status-info-fill: 69, 73, 81;
92
+ --cds-color-status-info-content: 220, 221, 227;
93
+ --cds-color-status-indication-surface: 255, 158, 146;
94
+ --cds-color-status-indication-line: 255, 158, 146;
95
+ --cds-color-status-indication-fill-hover: 184, 66, 61;
96
+ --cds-color-status-indication-fill: 130, 40, 37;
97
+ --cds-color-status-indication-content: 255, 210, 204;
98
+ --cds-color-status-danger-surface: 255, 158, 146;
99
+ --cds-color-status-danger-line: 255, 158, 146;
100
+ --cds-color-status-danger-fill-hover: 184, 66, 61;
101
+ --cds-color-status-danger-fill: 130, 40, 37;
102
+ --cds-color-status-danger-content: 255, 210, 204;
103
+ --cds-color-page-primary: 26, 26, 26;
104
+ --cds-color-other-teal-surface: 10, 186, 206;
105
+ --cds-color-other-teal-line: 1, 172, 191;
106
+ --cds-color-other-teal-fill-hover: 0, 120, 134;
107
+ --cds-color-other-teal-fill: 4, 82, 91;
108
+ --cds-color-other-teal-content: 212, 242, 247;
109
+ --cds-color-other-purple-surface: 183, 154, 245;
110
+ --cds-color-other-purple-line: 174, 139, 238;
111
+ --cds-color-other-purple-fill-hover: 132, 87, 184;
112
+ --cds-color-other-purple-fill: 94, 56, 130;
113
+ --cds-color-other-purple-content: 243, 233, 254;
114
+ --cds-color-other-pink-surface: 232, 137, 209;
115
+ --cds-color-other-pink-line: 224, 120, 199;
116
+ --cds-color-other-pink-fill-hover: 172, 66, 150;
117
+ --cds-color-other-pink-fill: 122, 40, 105;
118
+ --cds-color-other-pink-content: 253, 230, 246;
119
+ --cds-color-other-lime-surface: 155, 178, 77;
120
+ --cds-color-other-lime-line: 141, 166, 59;
121
+ --cds-color-other-lime-fill-hover: 91, 116, 0;
122
+ --cds-color-other-lime-fill: 61, 79, 0;
123
+ --cds-color-other-lime-content: 235, 238, 216;
124
+ --cds-color-other-lemon-surface: 171, 174, 72;
125
+ --cds-color-other-lemon-line: 157, 162, 53;
126
+ --cds-color-other-lemon-fill-hover: 106, 113, 0;
127
+ --cds-color-other-lemon-fill: 72, 76, 1;
128
+ --cds-color-other-lemon-content: 238, 238, 217;
129
+ --cds-color-other-indigo-surface: 150, 164, 255;
130
+ --cds-color-other-indigo-line: 139, 149, 249;
131
+ --cds-color-other-indigo-fill-hover: 99, 98, 197;
132
+ --cds-color-other-indigo-fill: 64, 66, 141;
133
+ --cds-color-other-indigo-content: 235, 235, 255;
134
+ --cds-color-other-cyan-surface: 10, 190, 163;
135
+ --cds-color-other-cyan-line: 10, 176, 152;
136
+ --cds-color-other-cyan-fill-hover: 6, 122, 105;
137
+ --cds-color-other-cyan-fill: 0, 83, 72;
138
+ --cds-color-other-cyan-content: 213, 243, 235;
139
+ --cds-color-other-chocolate-surface: 212, 158, 109;
140
+ --cds-color-other-chocolate-line: 202, 145, 92;
141
+ --cds-color-other-chocolate-fill-hover: 152, 94, 31;
142
+ --cds-color-other-chocolate-fill: 110, 59, 1;
143
+ --cds-color-other-chocolate-content: 250, 234, 219;
144
+ --cds-color-line-tertiary-hover: 122, 128, 142;
145
+ --cds-color-line-tertiary: 86, 93, 103;
146
+ --cds-color-line-selected-hover: 146, 186, 254;
147
+ --cds-color-line-selected: 93, 157, 252;
148
+ --cds-color-line-secondary-hover: 152, 157, 168;
149
+ --cds-color-line-secondary: 122, 128, 142;
150
+ --cds-color-line-primary-hover: 181, 183, 192;
151
+ --cds-color-line-primary: 152, 157, 168;
152
+ --cds-color-line-focus-outline: 17, 89, 181;
153
+ --cds-color-line-focus: 93, 157, 252;
154
+ --cds-color-line-elevated: 130, 138, 151, 0.4;
155
+ --cds-color-line-disable: 102, 108, 121;
156
+ --cds-color-fill-selected-hover: 146, 186, 254;
157
+ --cds-color-fill-selected: 93, 157, 252;
158
+ --cds-color-fill-secondary-hover: 86, 93, 103;
159
+ --cds-color-fill-secondary-active: 102, 108, 121;
160
+ --cds-color-fill-secondary: 69, 73, 81;
161
+ --cds-color-fill-primary-hover: 69, 73, 81;
162
+ --cds-color-fill-primary-active: 86, 93, 103;
163
+ --cds-color-fill-primary: 39, 42, 48;
164
+ --cds-color-fill-elevated: 122, 128, 142;
165
+ --cds-color-fill-disable: 69, 73, 81;
166
+ --cds-color-content-tertiary: 181, 183, 192;
167
+ --cds-color-content-secondary: 207, 210, 215;
168
+ --cds-color-content-primary: 236, 236, 239;
169
+ --cds-color-content-placeholder: 165, 169, 178;
170
+ --cds-color-content-on-dark: 249, 249, 252;
171
+ --cds-color-content-link-visited: 192, 174, 248;
172
+ --cds-color-content-link: 146, 186, 254;
173
+ --cds-color-content-inverse: 26, 26, 26;
174
+ --cds-color-content-disable: 152, 157, 168;
175
+ --cds-color-brand-secondary-hover: 1, 79, 119;
176
+ --cds-color-brand-secondary-border: 1, 97, 147;
177
+ --cds-color-brand-secondary-active: 1, 97, 147;
178
+ --cds-color-brand-secondary: 0, 45, 71;
179
+ --cds-color-brand-primary-hover: 1, 97, 147;
180
+ --cds-color-brand-primary-content: 199, 224, 255;
181
+ --cds-color-brand-primary-border: 2, 135, 202;
182
+ --cds-color-brand-primary-active: 1, 79, 119;
183
+ --cds-color-brand-primary: 2, 135, 202;
184
+ }