gd-design-library 1.8.2 → 1.8.3

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 (1738) hide show
  1. package/README.md +121 -478
  2. package/ai/README.md +119 -64
  3. package/ai/a2ui/component-map.cjs +1 -1
  4. package/ai/a2ui/component-map.d.cts +138 -0
  5. package/ai/a2ui/component-map.d.ts +1 -1
  6. package/ai/a2ui/image-policy.d.cts +7 -0
  7. package/ai/a2ui/index.d.cts +22 -0
  8. package/ai/a2ui/index.d.ts +4 -4
  9. package/ai/a2ui/spec-schema.cjs +1 -1
  10. package/ai/a2ui/spec-schema.d.cts +2220 -0
  11. package/ai/a2ui/spec-schema.d.ts +10 -2
  12. package/ai/a2ui/spec-schema.js +6 -1
  13. package/ai/a2ui/system-prompt.cjs +11 -10
  14. package/ai/a2ui/system-prompt.d.cts +86 -0
  15. package/ai/a2ui/system-prompt.d.ts +2 -2
  16. package/ai/a2ui/system-prompt.js +152 -30
  17. package/ai/a2ui/ui-specification-schema.json +7 -2
  18. package/ai/discovery.cjs +1 -1
  19. package/ai/discovery.d.cts +48 -0
  20. package/ai/discovery.d.ts +1 -1
  21. package/ai/figma-maps/figma-color-map.cjs +1 -0
  22. package/ai/figma-maps/figma-color-map.js +601 -0
  23. package/ai/figma-maps/figma-color-map.json +1037 -0
  24. package/ai/figma-maps/figma-color-map.json.d.cts +1040 -0
  25. package/ai/figma-maps/figma-color-map.json.d.ts +1040 -0
  26. package/ai/figma-maps/figma-font-map.cjs +1 -0
  27. package/ai/figma-maps/figma-font-map.js +331 -0
  28. package/ai/figma-maps/figma-font-map.json +329 -0
  29. package/ai/figma-maps/figma-font-map.json.d.cts +332 -0
  30. package/ai/figma-maps/figma-font-map.json.d.ts +332 -0
  31. package/ai/figma-maps/figma-icon-map.cjs +1 -0
  32. package/ai/figma-maps/figma-icon-map.js +415 -0
  33. package/ai/figma-maps/figma-icon-map.json +404 -0
  34. package/ai/figma-maps/figma-icon-map.json.d.cts +407 -0
  35. package/ai/figma-maps/figma-icon-map.json.d.ts +407 -0
  36. package/ai/figma-maps/figma-radius-map.cjs +1 -0
  37. package/ai/figma-maps/figma-radius-map.js +96 -0
  38. package/ai/figma-maps/figma-radius-map.json +97 -0
  39. package/ai/figma-maps/figma-radius-map.json.d.cts +100 -0
  40. package/ai/figma-maps/figma-radius-map.json.d.ts +100 -0
  41. package/ai/figma-maps/figma-shadow-map.cjs +1 -0
  42. package/ai/figma-maps/figma-shadow-map.js +169 -0
  43. package/ai/figma-maps/figma-shadow-map.json +167 -0
  44. package/ai/figma-maps/figma-shadow-map.json.d.cts +170 -0
  45. package/ai/figma-maps/figma-shadow-map.json.d.ts +170 -0
  46. package/ai/figma-maps/figma-spacing-map.cjs +1 -0
  47. package/ai/figma-maps/figma-spacing-map.js +249 -0
  48. package/ai/figma-maps/figma-spacing-map.json +247 -0
  49. package/ai/figma-maps/figma-spacing-map.json.d.cts +250 -0
  50. package/ai/figma-maps/figma-spacing-map.json.d.ts +250 -0
  51. package/ai/figma-maps/index.cjs +1 -0
  52. package/ai/figma-maps/index.d.cts +4458 -0
  53. package/ai/figma-maps/index.d.ts +4458 -0
  54. package/ai/figma-maps/index.js +17 -0
  55. package/ai/index.cjs +1 -1
  56. package/ai/index.d.cts +8 -0
  57. package/ai/index.d.ts +8 -7
  58. package/ai/index.js +3 -2
  59. package/ai/prompts.cjs +1 -1
  60. package/ai/prompts.d.cts +49 -0
  61. package/ai/prompts.d.ts +1 -1
  62. package/ai/schemas/components/Accordion.d.cts +191 -0
  63. package/ai/schemas/components/AttachmentFile.cjs +1 -1
  64. package/ai/schemas/components/AttachmentFile.d.cts +45 -0
  65. package/ai/schemas/components/AttachmentFile.js +21 -22
  66. package/ai/schemas/components/Avatar.cjs +1 -1
  67. package/ai/schemas/components/Avatar.d.cts +71 -0
  68. package/ai/schemas/components/Avatar.js +26 -9
  69. package/ai/schemas/components/AvatarUser.cjs +1 -1
  70. package/ai/schemas/components/AvatarUser.d.cts +51 -0
  71. package/ai/schemas/components/AvatarUser.js +25 -2
  72. package/ai/schemas/components/Badge.d.cts +53 -0
  73. package/ai/schemas/components/Box.d.cts +95 -0
  74. package/ai/schemas/components/Breadcrumbs.d.cts +69 -0
  75. package/ai/schemas/components/Button.cjs +1 -1
  76. package/ai/schemas/components/Button.d.cts +94 -0
  77. package/ai/schemas/components/Button.js +12 -2
  78. package/ai/schemas/components/Card.d.cts +294 -0
  79. package/ai/schemas/components/Carousel.d.cts +60 -0
  80. package/ai/schemas/components/Chart.d.cts +49 -0
  81. package/ai/schemas/components/ChatBubble.cjs +1 -1
  82. package/ai/schemas/components/ChatBubble.d.cts +103 -0
  83. package/ai/schemas/components/ChatBubble.d.ts +24 -0
  84. package/ai/schemas/components/ChatBubble.js +27 -0
  85. package/ai/schemas/components/ChatContainer.d.cts +27 -0
  86. package/ai/schemas/components/Checkbox.cjs +1 -1
  87. package/ai/schemas/components/Checkbox.d.cts +37 -0
  88. package/ai/schemas/components/Checkbox.d.ts +0 -1
  89. package/ai/schemas/components/Checkbox.js +2 -3
  90. package/ai/schemas/components/Column.d.cts +65 -0
  91. package/ai/schemas/components/ContentCarousel.d.cts +96 -0
  92. package/ai/schemas/components/Counter.d.cts +27 -0
  93. package/ai/schemas/components/DragAndDrop.d.cts +50 -0
  94. package/ai/schemas/components/DragAndDropFiles.d.cts +27 -0
  95. package/ai/schemas/components/Dropdown.d.cts +24 -0
  96. package/ai/schemas/components/DropdownItem.d.cts +24 -0
  97. package/ai/schemas/components/FlexContainer.d.cts +44 -0
  98. package/ai/schemas/components/Form.d.cts +33 -0
  99. package/ai/schemas/components/Header.d.cts +19 -0
  100. package/ai/schemas/components/Icon.d.cts +117 -0
  101. package/ai/schemas/components/Image.d.cts +41 -0
  102. package/ai/schemas/components/ImagePreview.d.cts +39 -0
  103. package/ai/schemas/components/InlineNotification.d.cts +35 -0
  104. package/ai/schemas/components/Input.cjs +1 -1
  105. package/ai/schemas/components/Input.d.cts +38 -0
  106. package/ai/schemas/components/Input.js +14 -2
  107. package/ai/schemas/components/InputArea.d.cts +51 -0
  108. package/ai/schemas/components/InputFile.d.cts +27 -0
  109. package/ai/schemas/components/Label.d.cts +33 -0
  110. package/ai/schemas/components/Link.cjs +1 -1
  111. package/ai/schemas/components/Link.d.cts +65 -0
  112. package/ai/schemas/components/Link.d.ts +6 -0
  113. package/ai/schemas/components/Link.js +41 -4
  114. package/ai/schemas/components/List.d.cts +38 -0
  115. package/ai/schemas/components/Loader.d.cts +59 -0
  116. package/ai/schemas/components/Menu.d.cts +58 -0
  117. package/ai/schemas/components/Modal.d.cts +33 -0
  118. package/ai/schemas/components/Portal.d.cts +58 -0
  119. package/ai/schemas/components/Price.d.cts +41 -0
  120. package/ai/schemas/components/ProgressBar.d.cts +27 -0
  121. package/ai/schemas/components/RadioGroup.d.cts +51 -0
  122. package/ai/schemas/components/Rating.d.cts +33 -0
  123. package/ai/schemas/components/Row.d.cts +65 -0
  124. package/ai/schemas/components/Scroll.d.cts +51 -0
  125. package/ai/schemas/components/Search.d.cts +27 -0
  126. package/ai/schemas/components/SearchModal.d.cts +19 -0
  127. package/ai/schemas/components/Select.d.cts +41 -0
  128. package/ai/schemas/components/Separator.d.cts +59 -0
  129. package/ai/schemas/components/Sidebar.d.cts +25 -0
  130. package/ai/schemas/components/Skeleton.d.cts +33 -0
  131. package/ai/schemas/components/Slider.d.cts +27 -0
  132. package/ai/schemas/components/SliderDots.d.cts +41 -0
  133. package/ai/schemas/components/Snackbar.d.cts +47 -0
  134. package/ai/schemas/components/SnackbarManager.d.cts +22 -0
  135. package/ai/schemas/components/Stepper.d.cts +33 -0
  136. package/ai/schemas/components/Switch.cjs +1 -1
  137. package/ai/schemas/components/Switch.d.cts +35 -0
  138. package/ai/schemas/components/Switch.js +12 -13
  139. package/ai/schemas/components/Table.d.cts +47 -0
  140. package/ai/schemas/components/Tabs.d.cts +33 -0
  141. package/ai/schemas/components/Textarea.d.cts +60 -0
  142. package/ai/schemas/components/Toggle.d.cts +33 -0
  143. package/ai/schemas/components/Tooltip.d.cts +44 -0
  144. package/ai/schemas/components/Truncate.d.cts +33 -0
  145. package/ai/schemas/components/Typography.cjs +1 -1
  146. package/ai/schemas/components/Typography.d.cts +59 -0
  147. package/ai/schemas/components/Typography.js +1 -1
  148. package/ai/schemas/components/Wrapper.d.cts +35 -0
  149. package/ai/schemas/components.cjs +1 -1
  150. package/ai/schemas/components.d.cts +51 -0
  151. package/ai/schemas/hooks/useTheme.d.cts +47 -0
  152. package/ai/schemas/index.cjs +1 -1
  153. package/ai/schemas/index.d.cts +28 -0
  154. package/ai/testing_prompts/atomic_prompts.md +84 -65
  155. package/ai/testing_prompts/index.d.cts +1139 -0
  156. package/ai/testing_prompts/index.d.ts +1139 -0
  157. package/ai/testing_prompts/layouts_template_prompts.md +39 -33
  158. package/ai/testing_prompts/molecular_prompts.md +63 -21
  159. package/ai/testing_prompts/organisms_prompts.md +68 -66
  160. package/ai/validation.cjs +1 -1
  161. package/ai/validation.d.cts +35 -0
  162. package/ai/validation.d.ts +1 -1
  163. package/ai/validation.js +1 -1
  164. package/assets/icons/account_circle.cjs +1 -1
  165. package/assets/icons/account_circle.d.cts +5 -0
  166. package/assets/icons/arrow-down.cjs +1 -1
  167. package/assets/icons/arrow-down.d.cts +5 -0
  168. package/assets/icons/arrow-forward.cjs +1 -1
  169. package/assets/icons/arrow-forward.d.cts +5 -0
  170. package/assets/icons/attachment.cjs +1 -1
  171. package/assets/icons/attachment.d.cts +5 -0
  172. package/assets/icons/chat-bubble.cjs +1 -1
  173. package/assets/icons/chat-bubble.d.cts +5 -0
  174. package/assets/icons/chat.cjs +1 -1
  175. package/assets/icons/chat.d.cts +5 -0
  176. package/assets/icons/check.cjs +1 -1
  177. package/assets/icons/check.d.cts +5 -0
  178. package/assets/icons/chevron-left.cjs +1 -1
  179. package/assets/icons/chevron-left.d.cts +5 -0
  180. package/assets/icons/chevron-right.cjs +1 -1
  181. package/assets/icons/chevron-right.d.cts +5 -0
  182. package/assets/icons/content-copy.cjs +1 -1
  183. package/assets/icons/content-copy.d.cts +5 -0
  184. package/assets/icons/cross.cjs +1 -1
  185. package/assets/icons/cross.d.cts +5 -0
  186. package/assets/icons/delete_outlined.cjs +1 -1
  187. package/assets/icons/delete_outlined.d.cts +5 -0
  188. package/assets/icons/dot.cjs +1 -1
  189. package/assets/icons/dot.d.cts +5 -0
  190. package/assets/icons/edit.cjs +1 -1
  191. package/assets/icons/edit.d.cts +5 -0
  192. package/assets/icons/error_outline.cjs +1 -1
  193. package/assets/icons/error_outline.d.cts +5 -0
  194. package/assets/icons/eye.cjs +1 -1
  195. package/assets/icons/eye.d.cts +5 -0
  196. package/assets/icons/favorite.cjs +1 -1
  197. package/assets/icons/favorite.d.cts +5 -0
  198. package/assets/icons/favorite_outlined.cjs +1 -1
  199. package/assets/icons/favorite_outlined.d.cts +5 -0
  200. package/assets/icons/file-copy.cjs +1 -1
  201. package/assets/icons/file-copy.d.cts +5 -0
  202. package/assets/icons/filter.cjs +1 -1
  203. package/assets/icons/filter.d.cts +5 -0
  204. package/assets/icons/folder.cjs +1 -1
  205. package/assets/icons/folder.d.cts +5 -0
  206. package/assets/icons/folderOpen.cjs +1 -1
  207. package/assets/icons/folderOpen.d.cts +5 -0
  208. package/assets/icons/fullscreen-exit.cjs +1 -1
  209. package/assets/icons/fullscreen-exit.d.cts +4 -0
  210. package/assets/icons/fullscreen.cjs +1 -1
  211. package/assets/icons/fullscreen.d.cts +4 -0
  212. package/assets/icons/home.cjs +1 -1
  213. package/assets/icons/home.d.cts +5 -0
  214. package/assets/icons/keyboard_arrow_down.cjs +1 -1
  215. package/assets/icons/keyboard_arrow_down.d.cts +5 -0
  216. package/assets/icons/keyboard_arrow_up.cjs +1 -1
  217. package/assets/icons/keyboard_arrow_up.d.cts +5 -0
  218. package/assets/icons/local_shipping.cjs +1 -1
  219. package/assets/icons/local_shipping.d.cts +5 -0
  220. package/assets/icons/mic.cjs +1 -1
  221. package/assets/icons/mic.d.cts +5 -0
  222. package/assets/icons/minus.cjs +1 -1
  223. package/assets/icons/minus.d.cts +5 -0
  224. package/assets/icons/mobile_menu_button.cjs +1 -1
  225. package/assets/icons/mobile_menu_button.d.cts +5 -0
  226. package/assets/icons/paymentCard.cjs +1 -1
  227. package/assets/icons/paymentCard.d.cts +5 -0
  228. package/assets/icons/phone.cjs +1 -1
  229. package/assets/icons/phone.d.cts +5 -0
  230. package/assets/icons/plus.cjs +1 -1
  231. package/assets/icons/plus.d.cts +5 -0
  232. package/assets/icons/portrait.cjs +1 -1
  233. package/assets/icons/portrait.d.cts +5 -0
  234. package/assets/icons/processing.cjs +1 -1
  235. package/assets/icons/processing.d.cts +5 -0
  236. package/assets/icons/ruler.cjs +1 -1
  237. package/assets/icons/ruler.d.cts +5 -0
  238. package/assets/icons/search.cjs +1 -1
  239. package/assets/icons/search.d.cts +5 -0
  240. package/assets/icons/send.cjs +1 -1
  241. package/assets/icons/send.d.cts +5 -0
  242. package/assets/icons/shopping_bag.cjs +1 -1
  243. package/assets/icons/shopping_bag.d.cts +5 -0
  244. package/assets/icons/slash.cjs +1 -1
  245. package/assets/icons/slash.d.cts +5 -0
  246. package/assets/icons/star.cjs +1 -1
  247. package/assets/icons/star.d.cts +5 -0
  248. package/assets/icons/starHalf.cjs +1 -1
  249. package/assets/icons/starHalf.d.cts +5 -0
  250. package/assets/icons/starOutlined.cjs +1 -1
  251. package/assets/icons/starOutlined.d.cts +5 -0
  252. package/assets/icons/thumb-down-filled.cjs +1 -1
  253. package/assets/icons/thumb-down-filled.d.cts +5 -0
  254. package/assets/icons/thumb-down.cjs +1 -1
  255. package/assets/icons/thumb-down.d.cts +5 -0
  256. package/assets/icons/thumb-up-filled.cjs +1 -1
  257. package/assets/icons/thumb-up-filled.d.cts +5 -0
  258. package/assets/icons/thumb-up.cjs +1 -1
  259. package/assets/icons/thumb-up.d.cts +5 -0
  260. package/assets/icons/toast_error.cjs +1 -1
  261. package/assets/icons/toast_error.d.cts +5 -0
  262. package/assets/icons/toast_info.cjs +1 -1
  263. package/assets/icons/toast_info.d.cts +5 -0
  264. package/assets/icons/toast_success.cjs +1 -1
  265. package/assets/icons/toast_success.d.cts +5 -0
  266. package/assets/icons/toast_warning.cjs +1 -1
  267. package/assets/icons/toast_warning.d.cts +5 -0
  268. package/assets/icons/upload.cjs +1 -1
  269. package/assets/icons/upload.d.cts +5 -0
  270. package/assets/icons/volume-up.cjs +1 -1
  271. package/assets/icons/volume-up.d.cts +5 -0
  272. package/assets/icons/wifiTethering.cjs +1 -1
  273. package/assets/icons/wifiTethering.d.cts +5 -0
  274. package/assets/index.d.cts +55 -0
  275. package/assets/index.d.ts +55 -55
  276. package/components/atoms/Avatar/Avatar.cjs +1 -1
  277. package/components/atoms/Avatar/Avatar.d.cts +9 -0
  278. package/components/atoms/Avatar/Avatar.d.ts +2 -2
  279. package/components/atoms/Avatar/Avatar.types.d.cts +45 -0
  280. package/components/atoms/Avatar/Avatar.types.d.ts +3 -2
  281. package/components/atoms/Avatar/AvatarStyled.cjs +1 -1
  282. package/components/atoms/Avatar/AvatarStyled.d.cts +6 -0
  283. package/components/atoms/Avatar/AvatarStyled.d.ts +1 -1
  284. package/components/atoms/Avatar/AvatarStyled.js +13 -14
  285. package/components/atoms/Avatar/constants.d.cts +3 -0
  286. package/components/atoms/Avatar/index.d.cts +2 -0
  287. package/components/atoms/Avatar/index.d.ts +2 -2
  288. package/components/atoms/Badge/Badge.cjs +1 -1
  289. package/components/atoms/Badge/Badge.d.cts +2 -0
  290. package/components/atoms/Badge/Badge.d.ts +1 -1
  291. package/components/atoms/Badge/Badge.types.d.cts +20 -0
  292. package/components/atoms/Badge/Badge.types.d.ts +2 -2
  293. package/components/atoms/Badge/BadgeStyled.cjs +1 -1
  294. package/components/atoms/Badge/BadgeStyled.d.cts +5 -0
  295. package/components/atoms/Badge/BadgeStyled.d.ts +1 -1
  296. package/components/atoms/Badge/constants.d.cts +1 -0
  297. package/components/atoms/Badge/index.d.cts +2 -0
  298. package/components/atoms/Badge/index.d.ts +2 -2
  299. package/components/atoms/Box/Box.cjs +1 -1
  300. package/components/atoms/Box/Box.d.cts +2 -0
  301. package/components/atoms/Box/Box.d.ts +1 -1
  302. package/components/atoms/Box/Box.types.d.cts +18 -0
  303. package/components/atoms/Box/Box.types.d.ts +2 -2
  304. package/components/atoms/Box/BoxStyled.cjs +1 -1
  305. package/components/atoms/Box/BoxStyled.d.cts +2 -0
  306. package/components/atoms/Box/BoxStyled.d.ts +1 -1
  307. package/components/atoms/Box/constants.d.cts +1 -0
  308. package/components/atoms/Box/index.d.cts +2 -0
  309. package/components/atoms/Box/index.d.ts +2 -2
  310. package/components/atoms/Button/Button.cjs +1 -1
  311. package/components/atoms/Button/Button.d.cts +2 -0
  312. package/components/atoms/Button/Button.d.ts +1 -1
  313. package/components/atoms/Button/Button.js +6 -5
  314. package/components/atoms/Button/Button.types.d.cts +29 -0
  315. package/components/atoms/Button/Button.types.d.ts +2 -2
  316. package/components/atoms/Button/ButtonStyled.cjs +1 -1
  317. package/components/atoms/Button/ButtonStyled.d.cts +5 -0
  318. package/components/atoms/Button/ButtonStyled.d.ts +1 -1
  319. package/components/atoms/Button/constants.d.cts +1 -0
  320. package/components/atoms/Button/index.d.cts +2 -0
  321. package/components/atoms/Button/index.d.ts +2 -2
  322. package/components/atoms/Checkbox/Checkbox.cjs +1 -1
  323. package/components/atoms/Checkbox/Checkbox.d.cts +2 -0
  324. package/components/atoms/Checkbox/Checkbox.d.ts +1 -1
  325. package/components/atoms/Checkbox/Checkbox.types.d.cts +25 -0
  326. package/components/atoms/Checkbox/Checkbox.types.d.ts +1 -1
  327. package/components/atoms/Checkbox/CheckboxStyled.cjs +1 -1
  328. package/components/atoms/Checkbox/CheckboxStyled.d.cts +4 -0
  329. package/components/atoms/Checkbox/CheckboxStyled.d.ts +1 -1
  330. package/components/atoms/Checkbox/constants.d.cts +1 -0
  331. package/components/atoms/Checkbox/index.d.cts +2 -0
  332. package/components/atoms/Checkbox/index.d.ts +2 -2
  333. package/components/atoms/Icon/Icon.cjs +1 -1
  334. package/components/atoms/Icon/Icon.d.cts +4 -0
  335. package/components/atoms/Icon/Icon.d.ts +1 -1
  336. package/components/atoms/Icon/Icon.types.d.cts +12 -0
  337. package/components/atoms/Icon/Icon.types.d.ts +2 -2
  338. package/components/atoms/Icon/constants.cjs +1 -1
  339. package/components/atoms/Icon/constants.d.cts +276 -0
  340. package/components/atoms/Icon/index.d.cts +2 -0
  341. package/components/atoms/Icon/index.d.ts +2 -2
  342. package/components/atoms/Image/Image.cjs +1 -1
  343. package/components/atoms/Image/Image.d.cts +2 -0
  344. package/components/atoms/Image/Image.d.ts +1 -1
  345. package/components/atoms/Image/Image.types.d.cts +34 -0
  346. package/components/atoms/Image/Image.types.d.ts +1 -1
  347. package/components/atoms/Image/ImageStyled.cjs +1 -1
  348. package/components/atoms/Image/ImageStyled.d.cts +5 -0
  349. package/components/atoms/Image/ImageStyled.d.ts +1 -1
  350. package/components/atoms/Image/constants.d.cts +1 -0
  351. package/components/atoms/Image/index.d.cts +2 -0
  352. package/components/atoms/Image/index.d.ts +2 -2
  353. package/components/atoms/Input/Input.cjs +1 -1
  354. package/components/atoms/Input/Input.d.cts +2 -0
  355. package/components/atoms/Input/Input.d.ts +2 -2
  356. package/components/atoms/Input/Input.types.d.cts +74 -0
  357. package/components/atoms/Input/Input.types.d.ts +2 -2
  358. package/components/atoms/Input/InputAdornment/InputAdornment.cjs +1 -1
  359. package/components/atoms/Input/InputAdornment/InputAdornment.d.cts +2 -0
  360. package/components/atoms/Input/InputAdornment/InputAdornment.d.ts +1 -1
  361. package/components/atoms/Input/InputAdornment/InputAdornmentStyled.cjs +1 -1
  362. package/components/atoms/Input/InputAdornment/InputAdornmentStyled.d.cts +2 -0
  363. package/components/atoms/Input/InputAdornment/InputAdornmentStyled.d.ts +1 -1
  364. package/components/atoms/Input/InputAdornment/constants.d.cts +1 -0
  365. package/components/atoms/Input/InputAdornment/index.d.cts +1 -0
  366. package/components/atoms/Input/InputAdornment/index.d.ts +1 -1
  367. package/components/atoms/Input/InputHelper/InputHelper.cjs +1 -1
  368. package/components/atoms/Input/InputHelper/InputHelper.d.cts +2 -0
  369. package/components/atoms/Input/InputHelper/InputHelper.d.ts +1 -1
  370. package/components/atoms/Input/InputHelper/InputHelperStyled.cjs +1 -1
  371. package/components/atoms/Input/InputHelper/InputHelperStyled.d.cts +2 -0
  372. package/components/atoms/Input/InputHelper/InputHelperStyled.d.ts +1 -1
  373. package/components/atoms/Input/InputHelper/constants.d.cts +1 -0
  374. package/components/atoms/Input/InputHelper/index.d.cts +1 -0
  375. package/components/atoms/Input/InputHelper/index.d.ts +1 -1
  376. package/components/atoms/Input/InputStyled.cjs +1 -1
  377. package/components/atoms/Input/InputStyled.d.cts +2 -0
  378. package/components/atoms/Input/InputStyled.d.ts +1 -1
  379. package/components/atoms/Input/InputWrapper/InputWrapper.cjs +1 -1
  380. package/components/atoms/Input/InputWrapper/InputWrapper.d.cts +2 -0
  381. package/components/atoms/Input/InputWrapper/InputWrapper.d.ts +1 -1
  382. package/components/atoms/Input/InputWrapper/InputWrapperStyled.cjs +1 -1
  383. package/components/atoms/Input/InputWrapper/InputWrapperStyled.d.cts +2 -0
  384. package/components/atoms/Input/InputWrapper/InputWrapperStyled.d.ts +1 -1
  385. package/components/atoms/Input/InputWrapper/constants.d.cts +1 -0
  386. package/components/atoms/Input/InputWrapper/index.d.cts +1 -0
  387. package/components/atoms/Input/InputWrapper/index.d.ts +1 -1
  388. package/components/atoms/Input/constants.cjs +1 -1
  389. package/components/atoms/Input/constants.d.cts +11 -0
  390. package/components/atoms/Input/constants.d.ts +1 -1
  391. package/components/atoms/Input/index.d.cts +2 -0
  392. package/components/atoms/Input/index.d.ts +2 -2
  393. package/components/atoms/Input/useInputHandlers.cjs +1 -1
  394. package/components/atoms/Input/useInputHandlers.d.cts +17 -0
  395. package/components/atoms/InputFile/InputFile.cjs +1 -1
  396. package/components/atoms/InputFile/InputFile.d.cts +6 -0
  397. package/components/atoms/InputFile/InputFile.d.ts +1 -1
  398. package/components/atoms/InputFile/InputFile.js +41 -43
  399. package/components/atoms/InputFile/InputFile.types.d.cts +18 -0
  400. package/components/atoms/InputFile/InputFile.types.d.ts +1 -1
  401. package/components/atoms/InputFile/InputFileStyled.cjs +1 -1
  402. package/components/atoms/InputFile/InputFileStyled.d.cts +3 -0
  403. package/components/atoms/InputFile/InputFileStyled.d.ts +1 -1
  404. package/components/atoms/InputFile/constants.d.cts +3 -0
  405. package/components/atoms/InputFile/index.d.cts +2 -0
  406. package/components/atoms/InputFile/index.d.ts +2 -2
  407. package/components/atoms/Label/Label.cjs +1 -1
  408. package/components/atoms/Label/Label.d.cts +2 -0
  409. package/components/atoms/Label/Label.d.ts +1 -1
  410. package/components/atoms/Label/Label.types.d.cts +10 -0
  411. package/components/atoms/Label/Label.types.d.ts +1 -1
  412. package/components/atoms/Label/LabelStyled.cjs +1 -1
  413. package/components/atoms/Label/LabelStyled.d.cts +2 -0
  414. package/components/atoms/Label/LabelStyled.d.ts +1 -1
  415. package/components/atoms/Label/constants.d.cts +1 -0
  416. package/components/atoms/Label/index.d.cts +2 -0
  417. package/components/atoms/Label/index.d.ts +2 -2
  418. package/components/atoms/Link/Link.cjs +1 -1
  419. package/components/atoms/Link/Link.d.cts +2 -0
  420. package/components/atoms/Link/Link.d.ts +1 -1
  421. package/components/atoms/Link/Link.js +15 -14
  422. package/components/atoms/Link/Link.types.d.cts +28 -0
  423. package/components/atoms/Link/Link.types.d.ts +4 -2
  424. package/components/atoms/Link/LinkStyled.cjs +1 -1
  425. package/components/atoms/Link/LinkStyled.d.cts +2 -0
  426. package/components/atoms/Link/LinkStyled.d.ts +1 -1
  427. package/components/atoms/Link/LinkStyled.js +19 -18
  428. package/components/atoms/Link/constants.d.cts +1 -0
  429. package/components/atoms/Link/index.d.cts +2 -0
  430. package/components/atoms/Link/index.d.ts +2 -2
  431. package/components/atoms/Loader/Loader.cjs +1 -1
  432. package/components/atoms/Loader/Loader.d.cts +2 -0
  433. package/components/atoms/Loader/Loader.d.ts +1 -1
  434. package/components/atoms/Loader/Loader.types.d.cts +20 -0
  435. package/components/atoms/Loader/Loader.types.d.ts +2 -2
  436. package/components/atoms/Loader/LoaderStyled.cjs +1 -1
  437. package/components/atoms/Loader/LoaderStyled.d.cts +2 -0
  438. package/components/atoms/Loader/LoaderStyled.d.ts +1 -1
  439. package/components/atoms/Loader/constants.cjs +1 -1
  440. package/components/atoms/Loader/constants.d.cts +2 -0
  441. package/components/atoms/Loader/index.d.cts +2 -0
  442. package/components/atoms/Loader/index.d.ts +2 -2
  443. package/components/atoms/Loader/utils.cjs +1 -1
  444. package/components/atoms/Loader/utils.d.cts +11 -0
  445. package/components/atoms/Loader/utils.js +3 -3
  446. package/components/atoms/Select/Select.cjs +1 -1
  447. package/components/atoms/Select/Select.d.cts +2 -0
  448. package/components/atoms/Select/Select.d.ts +1 -1
  449. package/components/atoms/Select/Select.types.d.cts +75 -0
  450. package/components/atoms/Select/Select.types.d.ts +3 -3
  451. package/components/atoms/Select/SelectStyled.cjs +1 -1
  452. package/components/atoms/Select/SelectStyled.d.cts +7 -0
  453. package/components/atoms/Select/SelectStyled.d.ts +1 -1
  454. package/components/atoms/Select/constants.d.cts +2 -0
  455. package/components/atoms/Select/hooks/index.d.cts +1 -0
  456. package/components/atoms/Select/hooks/index.d.ts +1 -1
  457. package/components/atoms/Select/hooks/useSelectContext.cjs +1 -1
  458. package/components/atoms/Select/hooks/useSelectContext.d.cts +3 -0
  459. package/components/atoms/Select/hooks/useSelectContext.d.ts +1 -1
  460. package/components/atoms/Select/index.d.cts +3 -0
  461. package/components/atoms/Select/index.d.ts +3 -3
  462. package/components/atoms/Separator/Separator.cjs +1 -1
  463. package/components/atoms/Separator/Separator.d.cts +2 -0
  464. package/components/atoms/Separator/Separator.d.ts +1 -1
  465. package/components/atoms/Separator/Separator.types.d.cts +34 -0
  466. package/components/atoms/Separator/Separator.types.d.ts +3 -3
  467. package/components/atoms/Separator/SeparatorStyled.cjs +1 -1
  468. package/components/atoms/Separator/SeparatorStyled.d.cts +4 -0
  469. package/components/atoms/Separator/SeparatorStyled.d.ts +1 -1
  470. package/components/atoms/Separator/constants.d.cts +1 -0
  471. package/components/atoms/Separator/index.d.cts +2 -0
  472. package/components/atoms/Separator/index.d.ts +2 -2
  473. package/components/atoms/Skeleton/Skeleton.cjs +1 -1
  474. package/components/atoms/Skeleton/Skeleton.d.cts +2 -0
  475. package/components/atoms/Skeleton/Skeleton.d.ts +1 -1
  476. package/components/atoms/Skeleton/Skeleton.types.d.cts +19 -0
  477. package/components/atoms/Skeleton/Skeleton.types.d.ts +2 -2
  478. package/components/atoms/Skeleton/SkeletonStyled.cjs +1 -1
  479. package/components/atoms/Skeleton/SkeletonStyled.d.cts +2 -0
  480. package/components/atoms/Skeleton/SkeletonStyled.d.ts +1 -1
  481. package/components/atoms/Skeleton/constants.cjs +1 -1
  482. package/components/atoms/Skeleton/constants.d.cts +2 -0
  483. package/components/atoms/Skeleton/index.d.cts +2 -0
  484. package/components/atoms/Skeleton/index.d.ts +2 -2
  485. package/components/atoms/Slider/Slider.cjs +1 -1
  486. package/components/atoms/Slider/Slider.d.cts +20 -0
  487. package/components/atoms/Slider/Slider.d.ts +1 -1
  488. package/components/atoms/Slider/Slider.types.d.cts +17 -0
  489. package/components/atoms/Slider/Slider.types.d.ts +1 -1
  490. package/components/atoms/Slider/SliderStyled.cjs +1 -1
  491. package/components/atoms/Slider/SliderStyled.d.cts +2 -0
  492. package/components/atoms/Slider/SliderStyled.d.ts +1 -1
  493. package/components/atoms/Slider/constants.d.cts +3 -0
  494. package/components/atoms/Slider/index.d.cts +3 -0
  495. package/components/atoms/Slider/index.d.ts +3 -3
  496. package/components/atoms/SliderDots/SliderDots.cjs +1 -1
  497. package/components/atoms/SliderDots/SliderDots.d.cts +2 -0
  498. package/components/atoms/SliderDots/SliderDots.d.ts +1 -1
  499. package/components/atoms/SliderDots/SliderDots.types.d.cts +7 -0
  500. package/components/atoms/SliderDots/SliderDots.types.d.ts +1 -1
  501. package/components/atoms/SliderDots/SliderDotsStyled.cjs +1 -1
  502. package/components/atoms/SliderDots/SliderDotsStyled.d.cts +2 -0
  503. package/components/atoms/SliderDots/SliderDotsStyled.d.ts +1 -1
  504. package/components/atoms/SliderDots/constants.d.cts +1 -0
  505. package/components/atoms/SliderDots/index.d.cts +2 -0
  506. package/components/atoms/SliderDots/index.d.ts +2 -2
  507. package/components/atoms/Switch/Switch.cjs +1 -1
  508. package/components/atoms/Switch/Switch.d.cts +2 -0
  509. package/components/atoms/Switch/Switch.d.ts +1 -1
  510. package/components/atoms/Switch/Switch.types.d.cts +22 -0
  511. package/components/atoms/Switch/Switch.types.d.ts +1 -1
  512. package/components/atoms/Switch/SwitchStyled.cjs +1 -1
  513. package/components/atoms/Switch/SwitchStyled.d.cts +6 -0
  514. package/components/atoms/Switch/SwitchStyled.d.ts +1 -1
  515. package/components/atoms/Switch/constants.d.cts +1 -0
  516. package/components/atoms/Switch/index.d.cts +2 -0
  517. package/components/atoms/Switch/index.d.ts +2 -2
  518. package/components/atoms/Textarea/Textarea.cjs +1 -1
  519. package/components/atoms/Textarea/Textarea.d.cts +2 -0
  520. package/components/atoms/Textarea/Textarea.d.ts +1 -1
  521. package/components/atoms/Textarea/Textarea.types.d.cts +36 -0
  522. package/components/atoms/Textarea/Textarea.types.d.ts +2 -2
  523. package/components/atoms/Textarea/TextareaStyled.cjs +1 -1
  524. package/components/atoms/Textarea/TextareaStyled.d.cts +2 -0
  525. package/components/atoms/Textarea/TextareaStyled.d.ts +1 -1
  526. package/components/atoms/Textarea/constants.d.cts +1 -0
  527. package/components/atoms/Textarea/hooks/index.d.cts +2 -0
  528. package/components/atoms/Textarea/hooks/index.d.ts +2 -2
  529. package/components/atoms/Textarea/hooks/useDynamicHeightAdjustment.cjs +1 -1
  530. package/components/atoms/Textarea/hooks/useDynamicHeightAdjustment.d.cts +2 -0
  531. package/components/atoms/Textarea/hooks/useResizeObserver.cjs +1 -1
  532. package/components/atoms/Textarea/hooks/useResizeObserver.d.cts +2 -0
  533. package/components/atoms/Textarea/hooks/useResizeObserver.d.ts +1 -1
  534. package/components/atoms/Textarea/index.d.cts +2 -0
  535. package/components/atoms/Textarea/index.d.ts +2 -2
  536. package/components/atoms/Toggle/Toggle.cjs +1 -1
  537. package/components/atoms/Toggle/Toggle.d.cts +2 -0
  538. package/components/atoms/Toggle/Toggle.d.ts +1 -1
  539. package/components/atoms/Toggle/Toggle.types.d.cts +16 -0
  540. package/components/atoms/Toggle/Toggle.types.d.ts +1 -1
  541. package/components/atoms/Toggle/ToggleStyled.cjs +1 -1
  542. package/components/atoms/Toggle/ToggleStyled.d.cts +2 -0
  543. package/components/atoms/Toggle/ToggleStyled.d.ts +1 -1
  544. package/components/atoms/Toggle/constants.d.cts +1 -0
  545. package/components/atoms/Toggle/index.d.cts +2 -0
  546. package/components/atoms/Toggle/index.d.ts +2 -2
  547. package/components/atoms/Truncate/Truncate.cjs +1 -1
  548. package/components/atoms/Truncate/Truncate.d.cts +2 -0
  549. package/components/atoms/Truncate/Truncate.d.ts +1 -1
  550. package/components/atoms/Truncate/Truncate.types.d.cts +12 -0
  551. package/components/atoms/Truncate/Truncate.types.d.ts +1 -1
  552. package/components/atoms/Truncate/TruncateStyled.cjs +1 -1
  553. package/components/atoms/Truncate/TruncateStyled.d.cts +2 -0
  554. package/components/atoms/Truncate/TruncateStyled.d.ts +1 -1
  555. package/components/atoms/Truncate/constants.d.cts +1 -0
  556. package/components/atoms/Truncate/index.d.cts +2 -0
  557. package/components/atoms/Truncate/index.d.ts +2 -2
  558. package/components/atoms/Typography/Typography.cjs +1 -1
  559. package/components/atoms/Typography/Typography.d.cts +2 -0
  560. package/components/atoms/Typography/Typography.d.ts +1 -1
  561. package/components/atoms/Typography/Typography.types.d.cts +20 -0
  562. package/components/atoms/Typography/Typography.types.d.ts +2 -2
  563. package/components/atoms/Typography/TypographyStyled.cjs +1 -1
  564. package/components/atoms/Typography/TypographyStyled.d.cts +2 -0
  565. package/components/atoms/Typography/TypographyStyled.d.ts +1 -1
  566. package/components/atoms/Typography/TypographyStyled.js +8 -16
  567. package/components/atoms/Typography/constants.d.cts +1 -0
  568. package/components/atoms/Typography/index.d.cts +2 -0
  569. package/components/atoms/Typography/index.d.ts +2 -2
  570. package/components/atoms/Wrapper/Wrapper.cjs +1 -1
  571. package/components/atoms/Wrapper/Wrapper.d.cts +3 -0
  572. package/components/atoms/Wrapper/Wrapper.d.ts +1 -1
  573. package/components/atoms/Wrapper/Wrapper.types.d.cts +11 -0
  574. package/components/atoms/Wrapper/Wrapper.types.d.ts +2 -2
  575. package/components/atoms/Wrapper/WrapperStyled.cjs +1 -1
  576. package/components/atoms/Wrapper/WrapperStyled.d.cts +2 -0
  577. package/components/atoms/Wrapper/WrapperStyled.d.ts +1 -1
  578. package/components/atoms/Wrapper/constants.d.cts +1 -0
  579. package/components/atoms/Wrapper/index.d.cts +2 -0
  580. package/components/atoms/Wrapper/index.d.ts +2 -2
  581. package/components/atoms/index.d.cts +24 -0
  582. package/components/atoms/index.d.ts +24 -24
  583. package/components/atoms/types/events.types.d.cts +7 -0
  584. package/components/atoms/types/events.types.d.ts +1 -1
  585. package/components/atoms/types/index.types.d.cts +2 -0
  586. package/components/atoms/types/index.types.d.ts +2 -2
  587. package/components/atoms/types/roles.types.d.cts +4 -0
  588. package/components/index.d.cts +6 -0
  589. package/components/index.d.ts +6 -6
  590. package/components/index.types.d.cts +130 -0
  591. package/components/index.types.d.ts +2 -2
  592. package/components/layout/ChatContainer/ChatContainer.cjs +1 -1
  593. package/components/layout/ChatContainer/ChatContainer.d.cts +2 -0
  594. package/components/layout/ChatContainer/ChatContainer.d.ts +1 -1
  595. package/components/layout/ChatContainer/ChatContainer.types.d.cts +28 -0
  596. package/components/layout/ChatContainer/ChatContainer.types.d.ts +1 -1
  597. package/components/layout/ChatContainer/ChatContainerStyled.cjs +1 -1
  598. package/components/layout/ChatContainer/ChatContainerStyled.d.cts +11 -0
  599. package/components/layout/ChatContainer/ChatContainerStyled.d.ts +1 -1
  600. package/components/layout/ChatContainer/constants.d.cts +1 -0
  601. package/components/layout/ChatContainer/index.d.cts +2 -0
  602. package/components/layout/ChatContainer/index.d.ts +2 -2
  603. package/components/layout/Column/Column.cjs +1 -1
  604. package/components/layout/Column/Column.d.cts +2 -0
  605. package/components/layout/Column/Column.d.ts +1 -1
  606. package/components/layout/Column/Column.types.d.cts +8 -0
  607. package/components/layout/Column/Column.types.d.ts +1 -1
  608. package/components/layout/Column/ColumnStyled.cjs +1 -1
  609. package/components/layout/Column/ColumnStyled.d.cts +2 -0
  610. package/components/layout/Column/ColumnStyled.d.ts +1 -1
  611. package/components/layout/Column/constants.d.cts +1 -0
  612. package/components/layout/Column/index.d.cts +2 -0
  613. package/components/layout/Column/index.d.ts +2 -2
  614. package/components/layout/FlexContainer/FlexContainer.cjs +1 -1
  615. package/components/layout/FlexContainer/FlexContainer.d.cts +2 -0
  616. package/components/layout/FlexContainer/FlexContainer.d.ts +1 -1
  617. package/components/layout/FlexContainer/FlexContainer.types.d.cts +6 -0
  618. package/components/layout/FlexContainer/FlexContainer.types.d.ts +1 -1
  619. package/components/layout/FlexContainer/FlexContainerStyled.cjs +1 -1
  620. package/components/layout/FlexContainer/FlexContainerStyled.d.cts +2 -0
  621. package/components/layout/FlexContainer/FlexContainerStyled.d.ts +1 -1
  622. package/components/layout/FlexContainer/constants.d.cts +1 -0
  623. package/components/layout/FlexContainer/index.d.cts +2 -0
  624. package/components/layout/FlexContainer/index.d.ts +2 -2
  625. package/components/layout/FlexContainer/utils.d.cts +2 -0
  626. package/components/layout/FlexContainer/utils.d.ts +1 -1
  627. package/components/layout/Portal/Portal.cjs +1 -1
  628. package/components/layout/Portal/Portal.d.cts +2 -0
  629. package/components/layout/Portal/Portal.d.ts +1 -1
  630. package/components/layout/Portal/Portal.js +5 -3
  631. package/components/layout/Portal/Portal.types.d.cts +10 -0
  632. package/components/layout/Portal/Portal.types.d.ts +2 -2
  633. package/components/layout/Portal/constants.d.cts +1 -0
  634. package/components/layout/Portal/index.d.cts +2 -0
  635. package/components/layout/Portal/index.d.ts +2 -2
  636. package/components/layout/Row/Row.cjs +1 -1
  637. package/components/layout/Row/Row.d.cts +3 -0
  638. package/components/layout/Row/Row.d.ts +1 -1
  639. package/components/layout/Row/Row.types.d.cts +8 -0
  640. package/components/layout/Row/Row.types.d.ts +1 -1
  641. package/components/layout/Row/RowStyled.cjs +1 -1
  642. package/components/layout/Row/RowStyled.d.cts +2 -0
  643. package/components/layout/Row/RowStyled.d.ts +1 -1
  644. package/components/layout/Row/constants.d.cts +1 -0
  645. package/components/layout/Row/index.d.cts +2 -0
  646. package/components/layout/Row/index.d.ts +2 -2
  647. package/components/layout/Scroll/Scroll.cjs +1 -1
  648. package/components/layout/Scroll/Scroll.d.cts +25 -0
  649. package/components/layout/Scroll/Scroll.d.ts +1 -1
  650. package/components/layout/Scroll/Scroll.types.d.cts +24 -0
  651. package/components/layout/Scroll/Scroll.types.d.ts +1 -1
  652. package/components/layout/Scroll/ScrollBar.cjs +1 -1
  653. package/components/layout/Scroll/ScrollBar.d.cts +2 -0
  654. package/components/layout/Scroll/ScrollBar.d.ts +1 -1
  655. package/components/layout/Scroll/ScrollStyled.cjs +1 -1
  656. package/components/layout/Scroll/ScrollStyled.d.cts +6 -0
  657. package/components/layout/Scroll/ScrollStyled.d.ts +1 -1
  658. package/components/layout/Scroll/constants.d.cts +5 -0
  659. package/components/layout/Scroll/index.d.cts +2 -0
  660. package/components/layout/Scroll/index.d.ts +2 -2
  661. package/components/layout/Scroll/utils.d.cts +5 -0
  662. package/components/layout/Scroll/utils.d.ts +1 -1
  663. package/components/layout/index.d.cts +6 -0
  664. package/components/layout/index.d.ts +6 -6
  665. package/components/molecules/Accordion/Accordion.cjs +1 -1
  666. package/components/molecules/Accordion/Accordion.d.cts +2 -0
  667. package/components/molecules/Accordion/Accordion.d.ts +1 -1
  668. package/components/molecules/Accordion/Accordion.types.d.cts +31 -0
  669. package/components/molecules/Accordion/Accordion.types.d.ts +1 -1
  670. package/components/molecules/Accordion/AccordionContent/AccordionContent.cjs +1 -1
  671. package/components/molecules/Accordion/AccordionContent/AccordionContent.d.cts +2 -0
  672. package/components/molecules/Accordion/AccordionContent/AccordionContent.d.ts +1 -1
  673. package/components/molecules/Accordion/AccordionContent/index.d.cts +1 -0
  674. package/components/molecules/Accordion/AccordionContent/index.d.ts +1 -1
  675. package/components/molecules/Accordion/AccordionHeader/AccordionHeader.cjs +1 -1
  676. package/components/molecules/Accordion/AccordionHeader/AccordionHeader.d.cts +2 -0
  677. package/components/molecules/Accordion/AccordionHeader/AccordionHeader.d.ts +1 -1
  678. package/components/molecules/Accordion/AccordionHeader/index.d.cts +1 -0
  679. package/components/molecules/Accordion/AccordionHeader/index.d.ts +1 -1
  680. package/components/molecules/Accordion/AccordionItem/AccordionItem.cjs +1 -1
  681. package/components/molecules/Accordion/AccordionItem/AccordionItem.d.cts +2 -0
  682. package/components/molecules/Accordion/AccordionItem/AccordionItem.d.ts +1 -1
  683. package/components/molecules/Accordion/AccordionItem/index.d.cts +1 -0
  684. package/components/molecules/Accordion/AccordionItem/index.d.ts +1 -1
  685. package/components/molecules/Accordion/AccordionStyled.cjs +1 -1
  686. package/components/molecules/Accordion/AccordionStyled.d.cts +5 -0
  687. package/components/molecules/Accordion/AccordionStyled.d.ts +1 -1
  688. package/components/molecules/Accordion/constants.d.cts +10 -0
  689. package/components/molecules/Accordion/hooks/index.d.cts +1 -0
  690. package/components/molecules/Accordion/hooks/index.d.ts +1 -1
  691. package/components/molecules/Accordion/hooks/useAccordion.cjs +1 -1
  692. package/components/molecules/Accordion/hooks/useAccordion.d.cts +3 -0
  693. package/components/molecules/Accordion/hooks/useAccordion.d.ts +1 -1
  694. package/components/molecules/Accordion/index.d.cts +5 -0
  695. package/components/molecules/Accordion/index.d.ts +5 -5
  696. package/components/molecules/AttachmentFile/AttachmentFile.cjs +1 -1
  697. package/components/molecules/AttachmentFile/AttachmentFile.d.cts +2 -0
  698. package/components/molecules/AttachmentFile/AttachmentFile.d.ts +1 -1
  699. package/components/molecules/AttachmentFile/AttachmentFile.js +45 -53
  700. package/components/molecules/AttachmentFile/AttachmentFile.types.d.cts +16 -0
  701. package/components/molecules/AttachmentFile/AttachmentFile.types.d.ts +1 -1
  702. package/components/molecules/AttachmentFile/AttachmentFileStyled.cjs +1 -1
  703. package/components/molecules/AttachmentFile/AttachmentFileStyled.d.cts +14 -0
  704. package/components/molecules/AttachmentFile/AttachmentFileStyled.d.ts +3 -4
  705. package/components/molecules/AttachmentFile/AttachmentFileStyled.js +2 -8
  706. package/components/molecules/AttachmentFile/constants.d.cts +1 -0
  707. package/components/molecules/AttachmentFile/index.d.cts +2 -0
  708. package/components/molecules/AttachmentFile/index.d.ts +2 -2
  709. package/components/molecules/AvatarUser/AvatarUser.cjs +1 -1
  710. package/components/molecules/AvatarUser/AvatarUser.d.cts +2 -0
  711. package/components/molecules/AvatarUser/AvatarUser.d.ts +1 -1
  712. package/components/molecules/AvatarUser/AvatarUser.js +29 -28
  713. package/components/molecules/AvatarUser/AvatarUserStyled.cjs +1 -1
  714. package/components/molecules/AvatarUser/AvatarUserStyled.d.cts +2 -0
  715. package/components/molecules/AvatarUser/AvatarUserStyled.d.ts +1 -1
  716. package/components/molecules/AvatarUser/constants.d.cts +1 -0
  717. package/components/molecules/AvatarUser/index.d.cts +1 -0
  718. package/components/molecules/AvatarUser/index.d.ts +1 -1
  719. package/components/molecules/Breadcrumbs/Breadcrumbs.cjs +1 -1
  720. package/components/molecules/Breadcrumbs/Breadcrumbs.d.cts +2 -0
  721. package/components/molecules/Breadcrumbs/Breadcrumbs.d.ts +1 -1
  722. package/components/molecules/Breadcrumbs/Breadcrumbs.types.d.cts +14 -0
  723. package/components/molecules/Breadcrumbs/Breadcrumbs.types.d.ts +1 -1
  724. package/components/molecules/Breadcrumbs/BreadcrumbsStyled.cjs +1 -1
  725. package/components/molecules/Breadcrumbs/BreadcrumbsStyled.d.cts +6 -0
  726. package/components/molecules/Breadcrumbs/BreadcrumbsStyled.d.ts +1 -1
  727. package/components/molecules/Breadcrumbs/constants.d.cts +1 -0
  728. package/components/molecules/Breadcrumbs/index.d.cts +2 -0
  729. package/components/molecules/Breadcrumbs/index.d.ts +2 -2
  730. package/components/molecules/Counter/Counter.cjs +1 -1
  731. package/components/molecules/Counter/Counter.d.cts +2 -0
  732. package/components/molecules/Counter/Counter.d.ts +1 -1
  733. package/components/molecules/Counter/Counter.types.d.cts +15 -0
  734. package/components/molecules/Counter/Counter.types.d.ts +2 -2
  735. package/components/molecules/Counter/CounterStyled.cjs +1 -1
  736. package/components/molecules/Counter/CounterStyled.d.cts +3 -0
  737. package/components/molecules/Counter/CounterStyled.d.ts +1 -1
  738. package/components/molecules/Counter/constants.d.cts +5 -0
  739. package/components/molecules/Counter/index.d.cts +2 -0
  740. package/components/molecules/Counter/index.d.ts +2 -2
  741. package/components/molecules/Dropdown/Dropdown.cjs +1 -1
  742. package/components/molecules/Dropdown/Dropdown.d.cts +3 -0
  743. package/components/molecules/Dropdown/Dropdown.d.ts +1 -1
  744. package/components/molecules/Dropdown/Dropdown.types.d.cts +8 -0
  745. package/components/molecules/Dropdown/Dropdown.types.d.ts +2 -2
  746. package/components/molecules/Dropdown/DropdownStyled.cjs +1 -1
  747. package/components/molecules/Dropdown/DropdownStyled.d.cts +2 -0
  748. package/components/molecules/Dropdown/DropdownStyled.d.ts +1 -1
  749. package/components/molecules/Dropdown/constants.d.cts +5 -0
  750. package/components/molecules/Dropdown/hooks/index.d.cts +1 -0
  751. package/components/molecules/Dropdown/hooks/index.d.ts +1 -1
  752. package/components/molecules/Dropdown/hooks/useDropdown.cjs +1 -1
  753. package/components/molecules/Dropdown/hooks/useDropdown.d.cts +3 -0
  754. package/components/molecules/Dropdown/hooks/useDropdown.d.ts +1 -1
  755. package/components/molecules/Dropdown/index.d.cts +3 -0
  756. package/components/molecules/Dropdown/index.d.ts +3 -3
  757. package/components/molecules/DropdownItem/DropdownItem.cjs +1 -1
  758. package/components/molecules/DropdownItem/DropdownItem.d.cts +2 -0
  759. package/components/molecules/DropdownItem/DropdownItem.d.ts +1 -1
  760. package/components/molecules/DropdownItem/DropdownItem.types.d.cts +9 -0
  761. package/components/molecules/DropdownItem/DropdownItem.types.d.ts +1 -1
  762. package/components/molecules/DropdownItem/DropdownItemStyled.cjs +1 -1
  763. package/components/molecules/DropdownItem/DropdownItemStyled.d.cts +2 -0
  764. package/components/molecules/DropdownItem/DropdownItemStyled.d.ts +1 -1
  765. package/components/molecules/DropdownItem/constants.d.cts +1 -0
  766. package/components/molecules/DropdownItem/index.d.cts +2 -0
  767. package/components/molecules/DropdownItem/index.d.ts +2 -2
  768. package/components/molecules/Form/Form.cjs +1 -1
  769. package/components/molecules/Form/Form.d.cts +2 -0
  770. package/components/molecules/Form/Form.d.ts +1 -1
  771. package/components/molecules/Form/Form.types.d.cts +31 -0
  772. package/components/molecules/Form/Form.types.d.ts +1 -1
  773. package/components/molecules/Form/FormStyled.cjs +1 -1
  774. package/components/molecules/Form/FormStyled.d.cts +2 -0
  775. package/components/molecules/Form/FormStyled.d.ts +1 -1
  776. package/components/molecules/Form/constants.d.cts +1 -0
  777. package/components/molecules/Form/index.d.cts +2 -0
  778. package/components/molecules/Form/index.d.ts +2 -2
  779. package/components/molecules/Form/utils.cjs +1 -1
  780. package/components/molecules/Form/utils.d.cts +3 -0
  781. package/components/molecules/Form/utils.d.ts +1 -1
  782. package/components/molecules/InlineNotification/InlineNotification.cjs +1 -1
  783. package/components/molecules/InlineNotification/InlineNotification.d.cts +2 -0
  784. package/components/molecules/InlineNotification/InlineNotification.d.ts +1 -1
  785. package/components/molecules/InlineNotification/InlineNotification.types.d.cts +9 -0
  786. package/components/molecules/InlineNotification/InlineNotification.types.d.ts +1 -1
  787. package/components/molecules/InlineNotification/InlineNotificationStyled.cjs +1 -1
  788. package/components/molecules/InlineNotification/InlineNotificationStyled.d.cts +3 -0
  789. package/components/molecules/InlineNotification/InlineNotificationStyled.d.ts +1 -1
  790. package/components/molecules/InlineNotification/constants.d.cts +16 -0
  791. package/components/molecules/InlineNotification/index.d.cts +2 -0
  792. package/components/molecules/InlineNotification/index.d.ts +2 -2
  793. package/components/molecules/List/List.cjs +1 -1
  794. package/components/molecules/List/List.d.cts +3 -0
  795. package/components/molecules/List/List.d.ts +1 -1
  796. package/components/molecules/List/List.types.d.cts +13 -0
  797. package/components/molecules/List/List.types.d.ts +2 -2
  798. package/components/molecules/List/ListStyled.cjs +1 -1
  799. package/components/molecules/List/ListStyled.d.cts +3 -0
  800. package/components/molecules/List/ListStyled.d.ts +1 -1
  801. package/components/molecules/List/constants.d.cts +1 -0
  802. package/components/molecules/List/index.d.cts +2 -0
  803. package/components/molecules/List/index.d.ts +2 -2
  804. package/components/molecules/Menu/Menu.cjs +1 -1
  805. package/components/molecules/Menu/Menu.d.cts +2 -0
  806. package/components/molecules/Menu/Menu.d.ts +1 -1
  807. package/components/molecules/Menu/Menu.types.d.cts +24 -0
  808. package/components/molecules/Menu/Menu.types.d.ts +1 -1
  809. package/components/molecules/Menu/MenuStyled.cjs +1 -1
  810. package/components/molecules/Menu/MenuStyled.d.cts +3 -0
  811. package/components/molecules/Menu/MenuStyled.d.ts +1 -1
  812. package/components/molecules/Menu/MenuStyled.js +1 -1
  813. package/components/molecules/Menu/constants.d.cts +2 -0
  814. package/components/molecules/Menu/index.d.cts +2 -0
  815. package/components/molecules/Menu/index.d.ts +2 -2
  816. package/components/molecules/Price/Price.cjs +1 -1
  817. package/components/molecules/Price/Price.d.cts +4 -0
  818. package/components/molecules/Price/Price.d.ts +1 -1
  819. package/components/molecules/Price/Price.types.d.cts +22 -0
  820. package/components/molecules/Price/Price.types.d.ts +1 -1
  821. package/components/molecules/Price/PriceStyled.cjs +1 -1
  822. package/components/molecules/Price/PriceStyled.d.cts +4 -0
  823. package/components/molecules/Price/PriceStyled.d.ts +1 -1
  824. package/components/molecules/Price/constants.d.cts +1 -0
  825. package/components/molecules/Price/index.d.cts +2 -0
  826. package/components/molecules/Price/index.d.ts +2 -2
  827. package/components/molecules/ProgressBar/ProgressBar.cjs +1 -1
  828. package/components/molecules/ProgressBar/ProgressBar.d.cts +4 -0
  829. package/components/molecules/ProgressBar/ProgressBar.d.ts +1 -1
  830. package/components/molecules/ProgressBar/ProgressBar.types.d.cts +36 -0
  831. package/components/molecules/ProgressBar/ProgressBar.types.d.ts +2 -2
  832. package/components/molecules/ProgressBar/ProgressBarStyled.cjs +1 -1
  833. package/components/molecules/ProgressBar/ProgressBarStyled.d.cts +6 -0
  834. package/components/molecules/ProgressBar/ProgressBarStyled.d.ts +1 -1
  835. package/components/molecules/ProgressBar/constants.d.cts +4 -0
  836. package/components/molecules/ProgressBar/index.d.cts +2 -0
  837. package/components/molecules/ProgressBar/index.d.ts +2 -2
  838. package/components/molecules/RadioGroup/RadioGroup.cjs +1 -1
  839. package/components/molecules/RadioGroup/RadioGroup.d.cts +4 -0
  840. package/components/molecules/RadioGroup/RadioGroup.d.ts +1 -1
  841. package/components/molecules/RadioGroup/RadioGroup.types.d.cts +77 -0
  842. package/components/molecules/RadioGroup/RadioGroup.types.d.ts +2 -2
  843. package/components/molecules/RadioGroup/RadioGroupItem/RadioGroupItem.cjs +1 -1
  844. package/components/molecules/RadioGroup/RadioGroupItem/RadioGroupItem.d.cts +5 -0
  845. package/components/molecules/RadioGroup/RadioGroupItem/RadioGroupItem.d.ts +1 -1
  846. package/components/molecules/RadioGroup/RadioGroupItem/index.d.cts +1 -0
  847. package/components/molecules/RadioGroup/RadioGroupItem/index.d.ts +1 -1
  848. package/components/molecules/RadioGroup/RadioGroupStyled.cjs +1 -1
  849. package/components/molecules/RadioGroup/RadioGroupStyled.d.cts +6 -0
  850. package/components/molecules/RadioGroup/RadioGroupStyled.d.ts +1 -1
  851. package/components/molecules/RadioGroup/constants.d.cts +2 -0
  852. package/components/molecules/RadioGroup/index.d.cts +2 -0
  853. package/components/molecules/RadioGroup/index.d.ts +2 -2
  854. package/components/molecules/Rating/Rating.cjs +1 -1
  855. package/components/molecules/Rating/Rating.d.cts +2 -0
  856. package/components/molecules/Rating/Rating.d.ts +1 -1
  857. package/components/molecules/Rating/Rating.types.d.cts +20 -0
  858. package/components/molecules/Rating/Rating.types.d.ts +1 -1
  859. package/components/molecules/Rating/RatingStyled.cjs +1 -1
  860. package/components/molecules/Rating/RatingStyled.d.cts +5 -0
  861. package/components/molecules/Rating/RatingStyled.d.ts +1 -1
  862. package/components/molecules/Rating/constants.d.cts +6 -0
  863. package/components/molecules/Rating/index.d.cts +2 -0
  864. package/components/molecules/Rating/index.d.ts +2 -2
  865. package/components/molecules/Snackbar/Snackbar.cjs +1 -1
  866. package/components/molecules/Snackbar/Snackbar.d.cts +2 -0
  867. package/components/molecules/Snackbar/Snackbar.d.ts +1 -1
  868. package/components/molecules/Snackbar/Snackbar.types.d.cts +35 -0
  869. package/components/molecules/Snackbar/Snackbar.types.d.ts +2 -2
  870. package/components/molecules/Snackbar/SnackbarManager.cjs +1 -1
  871. package/components/molecules/Snackbar/SnackbarManager.d.cts +3 -0
  872. package/components/molecules/Snackbar/SnackbarManager.d.ts +1 -1
  873. package/components/molecules/Snackbar/SnackbarStyled.cjs +1 -1
  874. package/components/molecules/Snackbar/SnackbarStyled.d.cts +12 -0
  875. package/components/molecules/Snackbar/SnackbarStyled.d.ts +2 -2
  876. package/components/molecules/Snackbar/constants.cjs +1 -1
  877. package/components/molecules/Snackbar/constants.d.cts +8 -0
  878. package/components/molecules/Snackbar/constants.d.ts +1 -1
  879. package/components/molecules/Snackbar/index.d.cts +4 -0
  880. package/components/molecules/Snackbar/index.d.ts +4 -4
  881. package/components/molecules/Stepper/Stepper.cjs +1 -1
  882. package/components/molecules/Stepper/Stepper.d.cts +2 -0
  883. package/components/molecules/Stepper/Stepper.d.ts +1 -1
  884. package/components/molecules/Stepper/Stepper.types.d.cts +31 -0
  885. package/components/molecules/Stepper/Stepper.types.d.ts +3 -3
  886. package/components/molecules/Stepper/StepperStyled.cjs +1 -1
  887. package/components/molecules/Stepper/StepperStyled.d.cts +6 -0
  888. package/components/molecules/Stepper/StepperStyled.d.ts +1 -1
  889. package/components/molecules/Stepper/constants.cjs +1 -1
  890. package/components/molecules/Stepper/constants.d.cts +36 -0
  891. package/components/molecules/Stepper/index.d.cts +2 -0
  892. package/components/molecules/Stepper/index.d.ts +2 -2
  893. package/components/molecules/Stepper/utils.cjs +1 -1
  894. package/components/molecules/Stepper/utils.d.cts +2 -0
  895. package/components/molecules/Stepper/utils.d.ts +1 -1
  896. package/components/molecules/Table/Table.cjs +1 -1
  897. package/components/molecules/Table/Table.d.cts +2 -0
  898. package/components/molecules/Table/Table.d.ts +1 -1
  899. package/components/molecules/Table/Table.types.d.cts +98 -0
  900. package/components/molecules/Table/Table.types.d.ts +1 -1
  901. package/components/molecules/Table/TableBody.cjs +1 -1
  902. package/components/molecules/Table/TableBody.d.cts +2 -0
  903. package/components/molecules/Table/TableBody.d.ts +1 -1
  904. package/components/molecules/Table/TableCell.cjs +1 -1
  905. package/components/molecules/Table/TableCell.d.cts +2 -0
  906. package/components/molecules/Table/TableCell.d.ts +1 -1
  907. package/components/molecules/Table/TableFooter.cjs +1 -1
  908. package/components/molecules/Table/TableFooter.d.cts +2 -0
  909. package/components/molecules/Table/TableFooter.d.ts +1 -1
  910. package/components/molecules/Table/TableHead.cjs +1 -1
  911. package/components/molecules/Table/TableHead.d.cts +2 -0
  912. package/components/molecules/Table/TableHead.d.ts +1 -1
  913. package/components/molecules/Table/TableHeaderCell.cjs +1 -1
  914. package/components/molecules/Table/TableHeaderCell.d.cts +2 -0
  915. package/components/molecules/Table/TableHeaderCell.d.ts +1 -1
  916. package/components/molecules/Table/TablePagination.cjs +1 -1
  917. package/components/molecules/Table/TablePagination.d.cts +2 -0
  918. package/components/molecules/Table/TablePagination.d.ts +1 -1
  919. package/components/molecules/Table/TableRow.cjs +1 -1
  920. package/components/molecules/Table/TableRow.d.cts +2 -0
  921. package/components/molecules/Table/TableRow.d.ts +1 -1
  922. package/components/molecules/Table/TableStyled.cjs +1 -1
  923. package/components/molecules/Table/TableStyled.d.cts +15 -0
  924. package/components/molecules/Table/TableStyled.d.ts +3 -3
  925. package/components/molecules/Table/constants.d.cts +9 -0
  926. package/components/molecules/Table/index.d.cts +9 -0
  927. package/components/molecules/Table/index.d.ts +9 -9
  928. package/components/molecules/Tabs/Tabs.cjs +1 -1
  929. package/components/molecules/Tabs/Tabs.d.cts +2 -0
  930. package/components/molecules/Tabs/Tabs.d.ts +1 -1
  931. package/components/molecules/Tabs/Tabs.types.d.cts +26 -0
  932. package/components/molecules/Tabs/Tabs.types.d.ts +3 -3
  933. package/components/molecules/Tabs/TabsStyled.cjs +1 -1
  934. package/components/molecules/Tabs/TabsStyled.d.cts +8 -0
  935. package/components/molecules/Tabs/TabsStyled.d.ts +1 -1
  936. package/components/molecules/Tabs/constants.d.cts +6 -0
  937. package/components/molecules/Tabs/index.d.cts +2 -0
  938. package/components/molecules/Tabs/index.d.ts +2 -2
  939. package/components/molecules/Tooltip/Tooltip.cjs +1 -1
  940. package/components/molecules/Tooltip/Tooltip.d.cts +7 -0
  941. package/components/molecules/Tooltip/Tooltip.d.ts +1 -1
  942. package/components/molecules/Tooltip/Tooltip.types.d.cts +17 -0
  943. package/components/molecules/Tooltip/Tooltip.types.d.ts +2 -2
  944. package/components/molecules/Tooltip/TooltipStyled.cjs +1 -1
  945. package/components/molecules/Tooltip/TooltipStyled.d.cts +3 -0
  946. package/components/molecules/Tooltip/TooltipStyled.d.ts +1 -1
  947. package/components/molecules/Tooltip/constants.d.cts +3 -0
  948. package/components/molecules/Tooltip/index.d.cts +2 -0
  949. package/components/molecules/Tooltip/index.d.ts +2 -2
  950. package/components/molecules/Tooltip/utils.cjs +1 -1
  951. package/components/molecules/Tooltip/utils.d.cts +22 -0
  952. package/components/molecules/Tooltip/utils.d.ts +2 -2
  953. package/components/molecules/index.d.cts +20 -0
  954. package/components/molecules/index.d.ts +20 -20
  955. package/components/organisms/Card/Card.cjs +1 -1
  956. package/components/organisms/Card/Card.d.cts +20 -0
  957. package/components/organisms/Card/Card.d.ts +12 -12
  958. package/components/organisms/Card/Card.types.d.cts +49 -0
  959. package/components/organisms/Card/Card.types.d.ts +2 -2
  960. package/components/organisms/Card/CardBadge/CardBadge.cjs +1 -1
  961. package/components/organisms/Card/CardBadge/CardBadge.d.cts +2 -0
  962. package/components/organisms/Card/CardBadge/CardBadge.d.ts +1 -1
  963. package/components/organisms/Card/CardBadge/CardBadgeStyled.cjs +1 -1
  964. package/components/organisms/Card/CardBadge/CardBadgeStyled.d.cts +2 -0
  965. package/components/organisms/Card/CardBadge/CardBadgeStyled.d.ts +1 -1
  966. package/components/organisms/Card/CardBadge/constants.d.cts +1 -0
  967. package/components/organisms/Card/CardBadge/index.d.cts +1 -0
  968. package/components/organisms/Card/CardBadge/index.d.ts +1 -1
  969. package/components/organisms/Card/CardButton/CardButton.cjs +1 -1
  970. package/components/organisms/Card/CardButton/CardButton.d.cts +4 -0
  971. package/components/organisms/Card/CardButton/CardButton.d.ts +1 -1
  972. package/components/organisms/Card/CardButton/CardButtonStyled.cjs +1 -1
  973. package/components/organisms/Card/CardButton/CardButtonStyled.d.cts +2 -0
  974. package/components/organisms/Card/CardButton/CardButtonStyled.d.ts +1 -1
  975. package/components/organisms/Card/CardButton/constants.d.cts +1 -0
  976. package/components/organisms/Card/CardButton/index.d.cts +1 -0
  977. package/components/organisms/Card/CardButton/index.d.ts +1 -1
  978. package/components/organisms/Card/CardCounter/CardCounter.cjs +1 -1
  979. package/components/organisms/Card/CardCounter/CardCounter.d.cts +4 -0
  980. package/components/organisms/Card/CardCounter/CardCounter.d.ts +1 -1
  981. package/components/organisms/Card/CardCounter/CardCounterStyled.cjs +1 -1
  982. package/components/organisms/Card/CardCounter/CardCounterStyled.d.cts +2 -0
  983. package/components/organisms/Card/CardCounter/CardCounterStyled.d.ts +1 -1
  984. package/components/organisms/Card/CardCounter/constants.d.cts +1 -0
  985. package/components/organisms/Card/CardCounter/index.d.cts +1 -0
  986. package/components/organisms/Card/CardCounter/index.d.ts +1 -1
  987. package/components/organisms/Card/CardDescription/CardDescription.cjs +1 -1
  988. package/components/organisms/Card/CardDescription/CardDescription.d.cts +2 -0
  989. package/components/organisms/Card/CardDescription/CardDescription.d.ts +1 -1
  990. package/components/organisms/Card/CardDescription/CardDescriptionStyled.cjs +1 -1
  991. package/components/organisms/Card/CardDescription/CardDescriptionStyled.d.cts +2 -0
  992. package/components/organisms/Card/CardDescription/CardDescriptionStyled.d.ts +1 -1
  993. package/components/organisms/Card/CardDescription/constants.cjs +1 -1
  994. package/components/organisms/Card/CardDescription/constants.d.cts +6 -0
  995. package/components/organisms/Card/CardDescription/constants.d.ts +1 -1
  996. package/components/organisms/Card/CardDescription/index.d.cts +1 -0
  997. package/components/organisms/Card/CardDescription/index.d.ts +1 -1
  998. package/components/organisms/Card/CardImage/CardImage.cjs +1 -1
  999. package/components/organisms/Card/CardImage/CardImage.d.cts +2 -0
  1000. package/components/organisms/Card/CardImage/CardImage.d.ts +1 -1
  1001. package/components/organisms/Card/CardImage/CardImageStyled.cjs +1 -1
  1002. package/components/organisms/Card/CardImage/CardImageStyled.d.cts +2 -0
  1003. package/components/organisms/Card/CardImage/CardImageStyled.d.ts +1 -1
  1004. package/components/organisms/Card/CardImage/constants.d.cts +1 -0
  1005. package/components/organisms/Card/CardImage/index.d.cts +1 -0
  1006. package/components/organisms/Card/CardImage/index.d.ts +1 -1
  1007. package/components/organisms/Card/CardPrice/CardPrice.cjs +1 -1
  1008. package/components/organisms/Card/CardPrice/CardPrice.d.cts +2 -0
  1009. package/components/organisms/Card/CardPrice/CardPrice.d.ts +1 -1
  1010. package/components/organisms/Card/CardPrice/CardPriceStyled.cjs +1 -1
  1011. package/components/organisms/Card/CardPrice/CardPriceStyled.d.cts +2 -0
  1012. package/components/organisms/Card/CardPrice/CardPriceStyled.d.ts +1 -1
  1013. package/components/organisms/Card/CardPrice/constants.d.cts +1 -0
  1014. package/components/organisms/Card/CardPrice/index.d.cts +1 -0
  1015. package/components/organisms/Card/CardPrice/index.d.ts +1 -1
  1016. package/components/organisms/Card/CardRating/CardRating.cjs +1 -1
  1017. package/components/organisms/Card/CardRating/CardRating.d.cts +2 -0
  1018. package/components/organisms/Card/CardRating/CardRating.d.ts +1 -1
  1019. package/components/organisms/Card/CardRating/CardRatingStyled.cjs +1 -1
  1020. package/components/organisms/Card/CardRating/CardRatingStyled.d.cts +2 -0
  1021. package/components/organisms/Card/CardRating/CardRatingStyled.d.ts +1 -1
  1022. package/components/organisms/Card/CardRating/constants.d.cts +3 -0
  1023. package/components/organisms/Card/CardRating/index.d.cts +1 -0
  1024. package/components/organisms/Card/CardRating/index.d.ts +1 -1
  1025. package/components/organisms/Card/CardTitle/CardTitle.cjs +1 -1
  1026. package/components/organisms/Card/CardTitle/CardTitle.d.cts +4 -0
  1027. package/components/organisms/Card/CardTitle/CardTitle.d.ts +1 -1
  1028. package/components/organisms/Card/CardTitle/CardTitleStyled.cjs +1 -1
  1029. package/components/organisms/Card/CardTitle/CardTitleStyled.d.cts +2 -0
  1030. package/components/organisms/Card/CardTitle/CardTitleStyled.d.ts +1 -1
  1031. package/components/organisms/Card/CardTitle/constants.cjs +1 -1
  1032. package/components/organisms/Card/CardTitle/constants.d.cts +6 -0
  1033. package/components/organisms/Card/CardTitle/constants.d.ts +1 -1
  1034. package/components/organisms/Card/CardTitle/index.d.cts +1 -0
  1035. package/components/organisms/Card/CardTitle/index.d.ts +1 -1
  1036. package/components/organisms/Card/CardWishlist/CardWishlist.cjs +1 -1
  1037. package/components/organisms/Card/CardWishlist/CardWishlist.d.cts +2 -0
  1038. package/components/organisms/Card/CardWishlist/CardWishlist.d.ts +1 -1
  1039. package/components/organisms/Card/CardWishlist/CardWishlistStyled.cjs +1 -1
  1040. package/components/organisms/Card/CardWishlist/CardWishlistStyled.d.cts +2 -0
  1041. package/components/organisms/Card/CardWishlist/CardWishlistStyled.d.ts +1 -1
  1042. package/components/organisms/Card/CardWishlist/constants.d.cts +1 -0
  1043. package/components/organisms/Card/CardWishlist/index.d.cts +1 -0
  1044. package/components/organisms/Card/CardWishlist/index.d.ts +1 -1
  1045. package/components/organisms/Card/constants.d.cts +1 -0
  1046. package/components/organisms/Card/index.d.cts +11 -0
  1047. package/components/organisms/Card/index.d.ts +11 -11
  1048. package/components/organisms/Carousel/Carousel.cjs +1 -1
  1049. package/components/organisms/Carousel/Carousel.d.cts +14 -0
  1050. package/components/organisms/Carousel/Carousel.d.ts +7 -5
  1051. package/components/organisms/Carousel/Carousel.js +110 -105
  1052. package/components/organisms/Carousel/Carousel.types.d.cts +36 -0
  1053. package/components/organisms/Carousel/Carousel.types.d.ts +3 -3
  1054. package/components/organisms/Carousel/CarouselStyled.cjs +1 -1
  1055. package/components/organisms/Carousel/CarouselStyled.d.cts +19 -0
  1056. package/components/organisms/Carousel/CarouselStyled.d.ts +5 -1
  1057. package/components/organisms/Carousel/CarouselStyled.js +25 -1
  1058. package/components/organisms/Carousel/constants.d.cts +1 -0
  1059. package/components/organisms/Carousel/index.d.cts +2 -0
  1060. package/components/organisms/Carousel/index.d.ts +2 -2
  1061. package/components/organisms/Chart/AreaChart.cjs +1 -1
  1062. package/components/organisms/Chart/AreaChart.d.cts +1 -0
  1063. package/components/organisms/Chart/AreaChart.d.ts +1 -1
  1064. package/components/organisms/Chart/BarChart.cjs +1 -1
  1065. package/components/organisms/Chart/BarChart.d.cts +1 -0
  1066. package/components/organisms/Chart/BarChart.d.ts +1 -1
  1067. package/components/organisms/Chart/Chart.cjs +1 -1
  1068. package/components/organisms/Chart/Chart.d.cts +2 -0
  1069. package/components/organisms/Chart/Chart.d.ts +1 -1
  1070. package/components/organisms/Chart/Chart.types.d.cts +148 -0
  1071. package/components/organisms/Chart/Chart.types.d.ts +2 -2
  1072. package/components/organisms/Chart/ChartBase.cjs +1 -1
  1073. package/components/organisms/Chart/ChartBase.d.cts +2 -0
  1074. package/components/organisms/Chart/ChartBase.d.ts +1 -1
  1075. package/components/organisms/Chart/ChartCartesian.cjs +1 -1
  1076. package/components/organisms/Chart/ChartCartesian.d.cts +2 -0
  1077. package/components/organisms/Chart/ChartCartesian.d.ts +1 -1
  1078. package/components/organisms/Chart/ChartLegend.cjs +1 -1
  1079. package/components/organisms/Chart/ChartLegend.d.cts +10 -0
  1080. package/components/organisms/Chart/ChartLegend.d.ts +2 -2
  1081. package/components/organisms/Chart/ChartPie.cjs +1 -1
  1082. package/components/organisms/Chart/ChartPie.d.cts +17 -0
  1083. package/components/organisms/Chart/ChartPie.d.ts +2 -2
  1084. package/components/organisms/Chart/ChartStyled.cjs +1 -1
  1085. package/components/organisms/Chart/ChartStyled.d.cts +4 -0
  1086. package/components/organisms/Chart/ChartStyled.d.ts +1 -1
  1087. package/components/organisms/Chart/ChartTooltip.cjs +1 -1
  1088. package/components/organisms/Chart/ChartTooltip.d.cts +11 -0
  1089. package/components/organisms/Chart/ChartTooltip.d.ts +2 -2
  1090. package/components/organisms/Chart/ChartTooltip.js +1 -1
  1091. package/components/organisms/Chart/LineChart.cjs +1 -1
  1092. package/components/organisms/Chart/LineChart.d.cts +2 -0
  1093. package/components/organisms/Chart/LineChart.d.ts +1 -1
  1094. package/components/organisms/Chart/PieChart.cjs +1 -1
  1095. package/components/organisms/Chart/PieChart.d.cts +2 -0
  1096. package/components/organisms/Chart/PieChart.d.ts +1 -1
  1097. package/components/organisms/Chart/constants.d.cts +10 -0
  1098. package/components/organisms/Chart/index.d.cts +6 -0
  1099. package/components/organisms/Chart/index.d.ts +6 -6
  1100. package/components/organisms/Chart/useChartTheme.cjs +1 -1
  1101. package/components/organisms/Chart/useChartTheme.d.cts +10215 -0
  1102. package/components/organisms/Chart/useChartTheme.d.ts +81 -81
  1103. package/components/organisms/ChatBubble/ChatBubble.cjs +1 -1
  1104. package/components/organisms/ChatBubble/ChatBubble.d.cts +5 -0
  1105. package/components/organisms/ChatBubble/ChatBubble.d.ts +3 -3
  1106. package/components/organisms/ChatBubble/ChatBubble.types.d.cts +38 -0
  1107. package/components/organisms/ChatBubble/ChatBubble.types.d.ts +1 -1
  1108. package/components/organisms/ChatBubble/ChatBubbleStyled.cjs +1 -1
  1109. package/components/organisms/ChatBubble/ChatBubbleStyled.d.cts +4 -0
  1110. package/components/organisms/ChatBubble/ChatBubbleStyled.d.ts +1 -1
  1111. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGallery.cjs +1 -1
  1112. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGallery.d.cts +2 -0
  1113. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGallery.d.ts +1 -1
  1114. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGalleryStyled.cjs +1 -1
  1115. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGalleryStyled.d.cts +2 -0
  1116. package/components/organisms/ChatBubble/ChatImageGallery/ChatImageGalleryStyled.d.ts +1 -1
  1117. package/components/organisms/ChatBubble/ChatImageGallery/constants.d.cts +1 -0
  1118. package/components/organisms/ChatBubble/ChatImageGallery/index.d.cts +1 -0
  1119. package/components/organisms/ChatBubble/ChatImageGallery/index.d.ts +1 -1
  1120. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreview.cjs +1 -1
  1121. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreview.d.cts +2 -0
  1122. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreview.d.ts +1 -1
  1123. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreviewStyled.cjs +1 -1
  1124. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreviewStyled.d.cts +2 -0
  1125. package/components/organisms/ChatBubble/ChatLinkPreview/ChatLinkPreviewStyled.d.ts +1 -1
  1126. package/components/organisms/ChatBubble/ChatLinkPreview/constants.d.cts +1 -0
  1127. package/components/organisms/ChatBubble/ChatLinkPreview/index.d.cts +1 -0
  1128. package/components/organisms/ChatBubble/ChatLinkPreview/index.d.ts +1 -1
  1129. package/components/organisms/ChatBubble/constants.d.cts +1 -0
  1130. package/components/organisms/ChatBubble/index.d.cts +4 -0
  1131. package/components/organisms/ChatBubble/index.d.ts +4 -4
  1132. package/components/organisms/ContentCarousel/ContentCarousel.cjs +1 -1
  1133. package/components/organisms/ContentCarousel/ContentCarousel.d.cts +2 -0
  1134. package/components/organisms/ContentCarousel/ContentCarousel.d.ts +1 -1
  1135. package/components/organisms/ContentCarousel/ContentCarousel.types.d.cts +20 -0
  1136. package/components/organisms/ContentCarousel/ContentCarousel.types.d.ts +1 -1
  1137. package/components/organisms/ContentCarousel/ContentCarouselStyled.cjs +1 -1
  1138. package/components/organisms/ContentCarousel/ContentCarouselStyled.d.cts +8 -0
  1139. package/components/organisms/ContentCarousel/ContentCarouselStyled.d.ts +1 -1
  1140. package/components/organisms/ContentCarousel/constants.d.cts +1 -0
  1141. package/components/organisms/ContentCarousel/index.d.cts +2 -0
  1142. package/components/organisms/ContentCarousel/index.d.ts +2 -2
  1143. package/components/organisms/DragAndDropFiles/DragAndDropFiles.cjs +1 -1
  1144. package/components/organisms/DragAndDropFiles/DragAndDropFiles.d.cts +4 -0
  1145. package/components/organisms/DragAndDropFiles/DragAndDropFiles.d.ts +1 -1
  1146. package/components/organisms/DragAndDropFiles/DragAndDropFiles.types.d.cts +21 -0
  1147. package/components/organisms/DragAndDropFiles/DragAndDropFiles.types.d.ts +1 -1
  1148. package/components/organisms/DragAndDropFiles/DragAndDropFilesStyled.cjs +1 -1
  1149. package/components/organisms/DragAndDropFiles/DragAndDropFilesStyled.d.cts +2 -0
  1150. package/components/organisms/DragAndDropFiles/DragAndDropFilesStyled.d.ts +1 -1
  1151. package/components/organisms/DragAndDropFiles/constants.d.cts +1 -0
  1152. package/components/organisms/DragAndDropFiles/hooks/useDragAndDrop/index.d.cts +1 -0
  1153. package/components/organisms/DragAndDropFiles/hooks/useDragAndDrop/index.d.ts +1 -1
  1154. package/components/organisms/DragAndDropFiles/hooks/useDragAndDrop/useDragAndDrop.cjs +1 -1
  1155. package/components/organisms/DragAndDropFiles/hooks/useDragAndDrop/useDragAndDrop.d.cts +19 -0
  1156. package/components/organisms/DragAndDropFiles/index.d.cts +2 -0
  1157. package/components/organisms/DragAndDropFiles/index.d.ts +2 -2
  1158. package/components/organisms/Header/Header.cjs +1 -1
  1159. package/components/organisms/Header/Header.d.cts +2 -0
  1160. package/components/organisms/Header/Header.d.ts +1 -1
  1161. package/components/organisms/Header/Header.types.d.cts +31 -0
  1162. package/components/organisms/Header/Header.types.d.ts +2 -2
  1163. package/components/organisms/Header/HeaderStyled.cjs +1 -1
  1164. package/components/organisms/Header/HeaderStyled.d.cts +14 -0
  1165. package/components/organisms/Header/HeaderStyled.d.ts +1 -1
  1166. package/components/organisms/Header/constants.d.cts +1 -0
  1167. package/components/organisms/Header/index.d.cts +1 -0
  1168. package/components/organisms/Header/index.d.ts +1 -1
  1169. package/components/organisms/ImagePreview/ImagePreview.cjs +1 -1
  1170. package/components/organisms/ImagePreview/ImagePreview.d.cts +2 -0
  1171. package/components/organisms/ImagePreview/ImagePreview.d.ts +1 -1
  1172. package/components/organisms/ImagePreview/ImagePreview.types.d.cts +23 -0
  1173. package/components/organisms/ImagePreview/ImagePreview.types.d.ts +1 -1
  1174. package/components/organisms/ImagePreview/ImagePreviewLightbox.cjs +1 -1
  1175. package/components/organisms/ImagePreview/ImagePreviewLightbox.d.cts +5 -0
  1176. package/components/organisms/ImagePreview/ImagePreviewLightbox.d.ts +1 -1
  1177. package/components/organisms/ImagePreview/ImagePreviewStyled.cjs +1 -1
  1178. package/components/organisms/ImagePreview/ImagePreviewStyled.d.cts +2 -0
  1179. package/components/organisms/ImagePreview/ImagePreviewStyled.d.ts +1 -1
  1180. package/components/organisms/ImagePreview/constants.d.cts +1 -0
  1181. package/components/organisms/ImagePreview/index.d.cts +3 -0
  1182. package/components/organisms/ImagePreview/index.d.ts +3 -3
  1183. package/components/organisms/InputArea/InputArea.cjs +1 -1
  1184. package/components/organisms/InputArea/InputArea.d.cts +2 -0
  1185. package/components/organisms/InputArea/InputArea.d.ts +1 -1
  1186. package/components/organisms/InputArea/InputArea.types.d.cts +41 -0
  1187. package/components/organisms/InputArea/InputArea.types.d.ts +1 -1
  1188. package/components/organisms/InputArea/InputAreaStyled.cjs +1 -1
  1189. package/components/organisms/InputArea/InputAreaStyled.d.cts +38 -0
  1190. package/components/organisms/InputArea/InputAreaStyled.d.ts +3 -3
  1191. package/components/organisms/InputArea/constants.d.cts +1 -0
  1192. package/components/organisms/InputArea/index.d.cts +2 -0
  1193. package/components/organisms/InputArea/index.d.ts +2 -2
  1194. package/components/organisms/Modal/Modal.cjs +1 -1
  1195. package/components/organisms/Modal/Modal.d.cts +2 -0
  1196. package/components/organisms/Modal/Modal.d.ts +1 -1
  1197. package/components/organisms/Modal/Modal.types.d.cts +19 -0
  1198. package/components/organisms/Modal/Modal.types.d.ts +1 -1
  1199. package/components/organisms/Modal/ModalStyled.cjs +1 -1
  1200. package/components/organisms/Modal/ModalStyled.d.cts +8 -0
  1201. package/components/organisms/Modal/ModalStyled.d.ts +1 -1
  1202. package/components/organisms/Modal/constants.d.cts +1 -0
  1203. package/components/organisms/Modal/index.d.cts +2 -0
  1204. package/components/organisms/Modal/index.d.ts +2 -2
  1205. package/components/organisms/Search/Search.cjs +1 -1
  1206. package/components/organisms/Search/Search.d.cts +3 -0
  1207. package/components/organisms/Search/Search.d.ts +2 -2
  1208. package/components/organisms/Search/Search.types.d.cts +23 -0
  1209. package/components/organisms/Search/Search.types.d.ts +2 -9
  1210. package/components/organisms/Search/SearchStyled.cjs +1 -1
  1211. package/components/organisms/Search/SearchStyled.d.cts +2 -0
  1212. package/components/organisms/Search/SearchStyled.d.ts +1 -4
  1213. package/components/organisms/Search/constants.d.cts +4 -0
  1214. package/components/organisms/Search/index.d.cts +2 -0
  1215. package/components/organisms/Search/index.d.ts +2 -2
  1216. package/components/organisms/SearchModal/SearchInput/SearchInput.cjs +1 -1
  1217. package/components/organisms/SearchModal/SearchInput/SearchInput.d.cts +5 -0
  1218. package/components/organisms/SearchModal/SearchInput/SearchInput.d.ts +1 -1
  1219. package/components/organisms/SearchModal/SearchInput/SearchInputStyled.cjs +1 -1
  1220. package/components/organisms/SearchModal/SearchInput/SearchInputStyled.d.cts +4 -0
  1221. package/components/organisms/SearchModal/SearchInput/SearchInputStyled.d.ts +2 -2
  1222. package/components/organisms/SearchModal/SearchInput/constants.d.cts +3 -0
  1223. package/components/organisms/SearchModal/SearchInput/index.d.cts +1 -0
  1224. package/components/organisms/SearchModal/SearchInput/index.d.ts +1 -1
  1225. package/components/organisms/SearchModal/SearchItems/SearchItems.cjs +1 -1
  1226. package/components/organisms/SearchModal/SearchItems/SearchItems.d.cts +5 -0
  1227. package/components/organisms/SearchModal/SearchItems/SearchItems.d.ts +1 -1
  1228. package/components/organisms/SearchModal/SearchItems/SearchItemsStyled.cjs +1 -1
  1229. package/components/organisms/SearchModal/SearchItems/SearchItemsStyled.d.cts +10 -0
  1230. package/components/organisms/SearchModal/SearchItems/SearchItemsStyled.d.ts +2 -2
  1231. package/components/organisms/SearchModal/SearchItems/constants.d.cts +7 -0
  1232. package/components/organisms/SearchModal/SearchItems/index.d.cts +1 -0
  1233. package/components/organisms/SearchModal/SearchItems/index.d.ts +1 -1
  1234. package/components/organisms/SearchModal/SearchItems/utils.cjs +1 -1
  1235. package/components/organisms/SearchModal/SearchItems/utils.d.cts +2 -0
  1236. package/components/organisms/SearchModal/SearchLoader/SearchLoader.cjs +1 -1
  1237. package/components/organisms/SearchModal/SearchLoader/SearchLoader.d.cts +5 -0
  1238. package/components/organisms/SearchModal/SearchLoader/SearchLoader.d.ts +1 -1
  1239. package/components/organisms/SearchModal/SearchLoader/SearchLoaderStyled.cjs +1 -1
  1240. package/components/organisms/SearchModal/SearchLoader/SearchLoaderStyled.d.cts +3 -0
  1241. package/components/organisms/SearchModal/SearchLoader/SearchLoaderStyled.d.ts +1 -1
  1242. package/components/organisms/SearchModal/SearchLoader/constants.d.cts +1 -0
  1243. package/components/organisms/SearchModal/SearchLoader/index.d.cts +1 -0
  1244. package/components/organisms/SearchModal/SearchLoader/index.d.ts +1 -1
  1245. package/components/organisms/SearchModal/SearchModal.cjs +1 -1
  1246. package/components/organisms/SearchModal/SearchModal.d.cts +4 -0
  1247. package/components/organisms/SearchModal/SearchModal.d.ts +1 -1
  1248. package/components/organisms/SearchModal/SearchModal.types.d.cts +55 -0
  1249. package/components/organisms/SearchModal/SearchModal.types.d.ts +2 -2
  1250. package/components/organisms/SearchModal/SearchModalStyled.cjs +1 -1
  1251. package/components/organisms/SearchModal/SearchModalStyled.d.cts +3 -0
  1252. package/components/organisms/SearchModal/SearchModalStyled.d.ts +1 -1
  1253. package/components/organisms/SearchModal/constants.d.cts +5 -0
  1254. package/components/organisms/SearchModal/index.d.cts +2 -0
  1255. package/components/organisms/SearchModal/index.d.ts +2 -2
  1256. package/components/organisms/Sidebar/Sidebar.cjs +1 -1
  1257. package/components/organisms/Sidebar/Sidebar.d.cts +2 -0
  1258. package/components/organisms/Sidebar/Sidebar.d.ts +1 -1
  1259. package/components/organisms/Sidebar/Sidebar.types.d.cts +42 -0
  1260. package/components/organisms/Sidebar/Sidebar.types.d.ts +1 -1
  1261. package/components/organisms/Sidebar/SidebarItem.cjs +1 -1
  1262. package/components/organisms/Sidebar/SidebarItem.d.cts +2 -0
  1263. package/components/organisms/Sidebar/SidebarItem.d.ts +1 -1
  1264. package/components/organisms/Sidebar/SidebarStyled.cjs +1 -1
  1265. package/components/organisms/Sidebar/SidebarStyled.d.cts +16 -0
  1266. package/components/organisms/Sidebar/SidebarStyled.d.ts +1 -1
  1267. package/components/organisms/Sidebar/constants.d.cts +1 -0
  1268. package/components/organisms/Sidebar/index.d.cts +2 -0
  1269. package/components/organisms/Sidebar/index.d.ts +2 -2
  1270. package/components/organisms/index.d.cts +13 -0
  1271. package/components/organisms/index.d.ts +13 -13
  1272. package/components/widget/DragAndDrop/DragAndDrop.cjs +1 -1
  1273. package/components/widget/DragAndDrop/DragAndDrop.d.cts +4 -0
  1274. package/components/widget/DragAndDrop/DragAndDrop.d.ts +1 -1
  1275. package/components/widget/DragAndDrop/DragAndDrop.types.d.cts +35 -0
  1276. package/components/widget/DragAndDrop/DragAndDrop.types.d.ts +2 -2
  1277. package/components/widget/DragAndDrop/DragAndDropStyled.cjs +1 -1
  1278. package/components/widget/DragAndDrop/DragAndDropStyled.d.cts +6 -0
  1279. package/components/widget/DragAndDrop/DragAndDropStyled.d.ts +1 -1
  1280. package/components/widget/DragAndDrop/constants.d.cts +1 -0
  1281. package/components/widget/DragAndDrop/index.d.cts +2 -0
  1282. package/components/widget/DragAndDrop/index.d.ts +2 -2
  1283. package/components/widget/DragAndDrop/utils/index.d.cts +1 -0
  1284. package/components/widget/DragAndDrop/utils/index.d.ts +1 -1
  1285. package/components/widget/DragAndDrop/utils/validators.d.cts +5 -0
  1286. package/components/widget/index.d.cts +1 -0
  1287. package/components/widget/index.d.ts +1 -1
  1288. package/constants/index.d.cts +2 -0
  1289. package/constants/index.d.ts +2 -2
  1290. package/constants/keyboard.d.cts +8 -0
  1291. package/constants/timers.d.cts +2 -0
  1292. package/hooks/index.d.cts +7 -0
  1293. package/hooks/index.d.ts +7 -7
  1294. package/hooks/useAutoFocus/index.d.cts +1 -0
  1295. package/hooks/useAutoFocus/index.d.ts +1 -1
  1296. package/hooks/useAutoFocus/useAutoFocus.cjs +1 -1
  1297. package/hooks/useAutoFocus/useAutoFocus.d.cts +2 -0
  1298. package/hooks/useCarousel/index.d.cts +1 -0
  1299. package/hooks/useCarousel/index.d.ts +1 -1
  1300. package/hooks/useCarousel/useCarousel.cjs +1 -1
  1301. package/hooks/useCarousel/useCarousel.d.cts +14 -0
  1302. package/hooks/useCarousel/useCarousel.d.ts +1 -1
  1303. package/hooks/useClickOutside/index.d.cts +1 -0
  1304. package/hooks/useClickOutside/index.d.ts +1 -1
  1305. package/hooks/useClickOutside/useClickOutside.cjs +1 -1
  1306. package/hooks/useClickOutside/useClickOutside.d.cts +1 -0
  1307. package/hooks/useKeyControls/index.d.cts +1 -0
  1308. package/hooks/useKeyControls/index.d.ts +1 -1
  1309. package/hooks/useKeyControls/useKeyControls.cjs +1 -1
  1310. package/hooks/useKeyControls/useKeyControls.d.cts +2 -0
  1311. package/hooks/useKeyControls/useKeyControls.d.ts +1 -1
  1312. package/hooks/useLogger/NoOpLogger.d.cts +11 -0
  1313. package/hooks/useLogger/NoOpLogger.d.ts +1 -1
  1314. package/hooks/useLogger/index.d.cts +2 -0
  1315. package/hooks/useLogger/index.d.ts +2 -2
  1316. package/hooks/useLogger/useLogger.cjs +1 -1
  1317. package/hooks/useLogger/useLogger.d.cts +4 -0
  1318. package/hooks/useLogger/useLogger.d.ts +1 -1
  1319. package/hooks/useLogger/useLogger.types.d.cts +30 -0
  1320. package/hooks/useMediaQuery/index.d.cts +1 -0
  1321. package/hooks/useMediaQuery/index.d.ts +1 -1
  1322. package/hooks/useMediaQuery/useMediaQuery.cjs +1 -1
  1323. package/hooks/useMediaQuery/useMediaQuery.d.cts +1 -0
  1324. package/hooks/useTheme/NoOpTheme.cjs +1 -1
  1325. package/hooks/useTheme/NoOpTheme.d.cts +5870 -0
  1326. package/hooks/useTheme/NoOpTheme.d.ts +76 -40
  1327. package/hooks/useTheme/index.d.cts +4 -0
  1328. package/hooks/useTheme/index.d.ts +4 -4
  1329. package/hooks/useTheme/useTheme.cjs +1 -1
  1330. package/hooks/useTheme/useTheme.d.cts +3 -0
  1331. package/hooks/useTheme/useTheme.d.ts +1 -1
  1332. package/hooks/useTheme/useTheme.types.d.cts +16 -0
  1333. package/hooks/useTheme/useTheme.types.d.ts +1 -1
  1334. package/hooks/useTheme/utils.cjs +1 -1
  1335. package/hooks/useTheme/utils.d.cts +7 -0
  1336. package/hooks/useTheme/utils.d.ts +1 -1
  1337. package/index.cjs +1 -1
  1338. package/index.d.cts +5 -0
  1339. package/index.d.ts +5 -5
  1340. package/llms.txt +116 -25
  1341. package/package.json +27 -11
  1342. package/tokens/accordion.cjs +1 -1
  1343. package/tokens/accordion.d.cts +88 -0
  1344. package/tokens/animations.d.cts +70 -0
  1345. package/tokens/attachmentFile.cjs +1 -1
  1346. package/tokens/attachmentFile.d.cts +67 -0
  1347. package/tokens/attachmentFile.d.ts +3 -0
  1348. package/tokens/attachmentFile.js +4 -1
  1349. package/tokens/avatar.cjs +1 -1
  1350. package/tokens/avatar.d.cts +168 -0
  1351. package/tokens/avatar.d.ts +8 -9
  1352. package/tokens/avatar.js +21 -23
  1353. package/tokens/badge.cjs +1 -1
  1354. package/tokens/badge.d.cts +244 -0
  1355. package/tokens/borders.cjs +1 -1
  1356. package/tokens/borders.d.cts +9 -0
  1357. package/tokens/box.cjs +1 -1
  1358. package/tokens/box.d.cts +46 -0
  1359. package/tokens/breadcrumbs.cjs +1 -1
  1360. package/tokens/breadcrumbs.d.cts +27 -0
  1361. package/tokens/breakpoints.cjs +1 -1
  1362. package/tokens/breakpoints.d.cts +8 -0
  1363. package/tokens/button.cjs +1 -1
  1364. package/tokens/button.d.cts +141 -0
  1365. package/tokens/card.cjs +1 -1
  1366. package/tokens/card.d.cts +198 -0
  1367. package/tokens/carousel.cjs +1 -1
  1368. package/tokens/carousel.d.cts +305 -0
  1369. package/tokens/carousel.d.ts +34 -1
  1370. package/tokens/carousel.js +33 -0
  1371. package/tokens/chart.cjs +1 -1
  1372. package/tokens/chart.d.cts +172 -0
  1373. package/tokens/chat.cjs +1 -1
  1374. package/tokens/chat.d.cts +156 -0
  1375. package/tokens/chatbubble.cjs +1 -1
  1376. package/tokens/chatbubble.d.cts +163 -0
  1377. package/tokens/chatbubble.d.ts +1 -1
  1378. package/tokens/chatbubble.js +2 -2
  1379. package/tokens/checkbox.cjs +1 -1
  1380. package/tokens/checkbox.d.cts +80 -0
  1381. package/tokens/checkbox.js +2 -2
  1382. package/tokens/colors.d.cts +285 -0
  1383. package/tokens/column.d.cts +6 -0
  1384. package/tokens/constants.d.cts +1 -0
  1385. package/tokens/counter.cjs +1 -1
  1386. package/tokens/counter.d.cts +38 -0
  1387. package/tokens/counter.d.ts +1 -1
  1388. package/tokens/cursors.d.cts +17 -0
  1389. package/tokens/defaultTheme.cjs +1 -1
  1390. package/tokens/defaultTheme.d.cts +5861 -0
  1391. package/tokens/defaultTheme.d.ts +75 -39
  1392. package/tokens/display.d.cts +16 -0
  1393. package/tokens/draganddrop.cjs +1 -1
  1394. package/tokens/draganddrop.d.cts +60 -0
  1395. package/tokens/draganddropfiles.d.cts +3 -0
  1396. package/tokens/flexContainer.cjs +1 -1
  1397. package/tokens/flexContainer.d.cts +9 -0
  1398. package/tokens/flexContainer.d.ts +1 -1
  1399. package/tokens/font.d.cts +54 -0
  1400. package/tokens/form.d.cts +3 -0
  1401. package/tokens/header.cjs +1 -1
  1402. package/tokens/header.d.cts +107 -0
  1403. package/tokens/icon.cjs +1 -1
  1404. package/tokens/icon.d.cts +28 -0
  1405. package/tokens/image.cjs +1 -1
  1406. package/tokens/image.d.cts +31 -0
  1407. package/tokens/image.d.ts +1 -1
  1408. package/tokens/imagePreview.cjs +1 -1
  1409. package/tokens/imagePreview.d.cts +177 -0
  1410. package/tokens/index.cjs +1 -1
  1411. package/tokens/index.d.cts +5061 -0
  1412. package/tokens/index.d.ts +133 -97
  1413. package/tokens/inlineNotification.cjs +1 -1
  1414. package/tokens/inlineNotification.d.cts +62 -0
  1415. package/tokens/input.cjs +1 -1
  1416. package/tokens/input.d.cts +219 -0
  1417. package/tokens/inputArea.cjs +1 -1
  1418. package/tokens/inputArea.d.cts +154 -0
  1419. package/tokens/inputfile.cjs +1 -1
  1420. package/tokens/inputfile.d.cts +14 -0
  1421. package/tokens/label.cjs +1 -1
  1422. package/tokens/label.d.cts +6 -0
  1423. package/tokens/link.cjs +1 -1
  1424. package/tokens/link.d.cts +116 -0
  1425. package/tokens/link.d.ts +1 -1
  1426. package/tokens/link.js +4 -4
  1427. package/tokens/list.cjs +1 -1
  1428. package/tokens/list.d.cts +97 -0
  1429. package/tokens/loader.cjs +1 -1
  1430. package/tokens/loader.d.cts +147 -0
  1431. package/tokens/menu.cjs +1 -1
  1432. package/tokens/menu.d.cts +20 -0
  1433. package/tokens/modal.cjs +1 -1
  1434. package/tokens/modal.d.cts +92 -0
  1435. package/tokens/price.cjs +1 -1
  1436. package/tokens/price.d.cts +47 -0
  1437. package/tokens/price.js +2 -2
  1438. package/tokens/progressbar.cjs +1 -1
  1439. package/tokens/progressbar.d.cts +51 -0
  1440. package/tokens/radiogroup.cjs +1 -1
  1441. package/tokens/radiogroup.d.cts +92 -0
  1442. package/tokens/radiogroup.d.ts +1 -1
  1443. package/tokens/radius.cjs +1 -1
  1444. package/tokens/radius.d.cts +10 -0
  1445. package/tokens/radius.js +1 -1
  1446. package/tokens/rating.cjs +1 -1
  1447. package/tokens/rating.d.cts +73 -0
  1448. package/tokens/reset.d.cts +1 -0
  1449. package/tokens/row.d.cts +5 -0
  1450. package/tokens/scroll.cjs +1 -1
  1451. package/tokens/scroll.d.cts +108 -0
  1452. package/tokens/search.cjs +1 -1
  1453. package/tokens/search.d.cts +39 -0
  1454. package/tokens/searchModal.cjs +1 -1
  1455. package/tokens/searchModal.d.cts +167 -0
  1456. package/tokens/searchModal.d.ts +1 -1
  1457. package/tokens/searchModal.js +1 -1
  1458. package/tokens/select.cjs +1 -1
  1459. package/tokens/select.d.cts +125 -0
  1460. package/tokens/select.d.ts +1 -1
  1461. package/tokens/separator.cjs +1 -1
  1462. package/tokens/separator.d.cts +60 -0
  1463. package/tokens/shadow.d.cts +20 -0
  1464. package/tokens/shadow.d.ts +0 -1
  1465. package/tokens/sidebar.cjs +1 -1
  1466. package/tokens/sidebar.d.cts +123 -0
  1467. package/tokens/sidebar.js +2 -2
  1468. package/tokens/skeleton.cjs +1 -1
  1469. package/tokens/skeleton.d.cts +68 -0
  1470. package/tokens/slider.cjs +1 -1
  1471. package/tokens/slider.d.cts +58 -0
  1472. package/tokens/sliderDots.cjs +1 -1
  1473. package/tokens/sliderDots.d.cts +33 -0
  1474. package/tokens/snackbar.cjs +1 -1
  1475. package/tokens/snackbar.d.cts +173 -0
  1476. package/tokens/snackbar.js +1 -1
  1477. package/tokens/spacing.d.cts +32 -0
  1478. package/tokens/stepper.cjs +1 -1
  1479. package/tokens/stepper.d.cts +128 -0
  1480. package/tokens/switch.cjs +1 -1
  1481. package/tokens/switch.d.cts +78 -0
  1482. package/tokens/table.cjs +1 -1
  1483. package/tokens/table.d.cts +145 -0
  1484. package/tokens/tabs.cjs +1 -1
  1485. package/tokens/tabs.d.cts +90 -0
  1486. package/tokens/textarea.cjs +1 -1
  1487. package/tokens/textarea.d.cts +96 -0
  1488. package/tokens/toggle.cjs +1 -1
  1489. package/tokens/toggle.d.cts +12 -0
  1490. package/tokens/tooltip.cjs +1 -1
  1491. package/tokens/tooltip.d.cts +68 -0
  1492. package/tokens/tooltip.js +7 -8
  1493. package/tokens/truncate.d.cts +9 -0
  1494. package/tokens/types/index.types.d.cts +14 -0
  1495. package/tokens/types/index.types.d.ts +1 -1
  1496. package/tokens/typography.cjs +1 -1
  1497. package/tokens/typography.d.cts +144 -0
  1498. package/tokens/utils.cjs +1 -1
  1499. package/tokens/utils.d.cts +50 -0
  1500. package/tokens/utils.d.ts +4 -4
  1501. package/tokens/utils.js +6 -2
  1502. package/tokens/values.cjs +1 -1
  1503. package/tokens/values.d.cts +94 -0
  1504. package/tokens/wrapper.cjs +1 -1
  1505. package/tokens/wrapper.d.cts +29 -0
  1506. package/tokens/zIndex.d.cts +9 -0
  1507. package/types/accesability.d.cts +5 -0
  1508. package/types/button.d.cts +20 -0
  1509. package/types/card.d.cts +8 -0
  1510. package/types/carousel.d.cts +23 -0
  1511. package/types/carousel.d.ts +1 -1
  1512. package/types/common.d.cts +12 -0
  1513. package/types/cursors.d.cts +14 -0
  1514. package/types/index.d.cts +19 -0
  1515. package/types/index.d.ts +19 -19
  1516. package/types/input.d.cts +26 -0
  1517. package/types/keys.d.cts +8 -0
  1518. package/types/layout.d.cts +8 -0
  1519. package/types/link.d.cts +18 -0
  1520. package/types/list.d.cts +6 -0
  1521. package/types/misc.d.cts +14 -0
  1522. package/types/misc.d.ts +0 -3
  1523. package/types/separator.d.cts +10 -0
  1524. package/types/skeleton.d.cts +5 -0
  1525. package/types/snackbar.d.cts +14 -0
  1526. package/types/stepper.d.cts +9 -0
  1527. package/types/styles.d.cts +4 -0
  1528. package/types/typography.d.cts +48 -0
  1529. package/types/wrapper.d.cts +5 -0
  1530. package/utils/a2ui/constants.d.cts +7 -0
  1531. package/utils/a2ui/contexts.cjs +1 -0
  1532. package/utils/a2ui/contexts.d.cts +1 -0
  1533. package/utils/a2ui/contexts.d.ts +1 -0
  1534. package/utils/a2ui/contexts.js +5 -0
  1535. package/utils/a2ui/helpers/attributes.d.cts +11 -0
  1536. package/utils/a2ui/helpers/attributes.d.ts +1 -1
  1537. package/utils/a2ui/helpers/index.d.cts +4 -0
  1538. package/utils/a2ui/helpers/index.d.ts +4 -4
  1539. package/utils/a2ui/helpers/misc.cjs +1 -1
  1540. package/utils/a2ui/helpers/misc.d.cts +19 -0
  1541. package/utils/a2ui/helpers/misc.d.ts +2 -2
  1542. package/utils/a2ui/helpers/misc.js +1 -8
  1543. package/utils/a2ui/helpers/options.cjs +1 -1
  1544. package/utils/a2ui/helpers/options.d.cts +48 -0
  1545. package/utils/a2ui/helpers/options.d.ts +1 -1
  1546. package/utils/a2ui/helpers/styling.cjs +1 -1
  1547. package/utils/a2ui/helpers/styling.d.cts +7 -0
  1548. package/utils/a2ui/helpers/styling.d.ts +2 -2
  1549. package/utils/a2ui/index.d.cts +2 -0
  1550. package/utils/a2ui/index.d.ts +2 -2
  1551. package/utils/a2ui/render.cjs +1 -1
  1552. package/utils/a2ui/render.d.cts +5 -0
  1553. package/utils/a2ui/render.d.ts +2 -2
  1554. package/utils/a2ui/render.js +3 -3
  1555. package/utils/a2ui/renderers/accordion.cjs +1 -1
  1556. package/utils/a2ui/renderers/accordion.d.cts +8 -0
  1557. package/utils/a2ui/renderers/accordion.d.ts +1 -1
  1558. package/utils/a2ui/renderers/attachment-file.cjs +1 -0
  1559. package/utils/a2ui/renderers/attachment-file.d.cts +6 -0
  1560. package/utils/a2ui/renderers/attachment-file.d.ts +6 -0
  1561. package/utils/a2ui/renderers/attachment-file.js +28 -0
  1562. package/utils/a2ui/renderers/avatar.cjs +1 -1
  1563. package/utils/a2ui/renderers/avatar.d.cts +10 -0
  1564. package/utils/a2ui/renderers/avatar.d.ts +3 -3
  1565. package/utils/a2ui/renderers/avatar.js +1 -0
  1566. package/utils/a2ui/renderers/badge.cjs +1 -1
  1567. package/utils/a2ui/renderers/badge.d.cts +4 -0
  1568. package/utils/a2ui/renderers/badge.d.ts +1 -1
  1569. package/utils/a2ui/renderers/box.cjs +1 -1
  1570. package/utils/a2ui/renderers/box.d.cts +5 -0
  1571. package/utils/a2ui/renderers/box.d.ts +2 -2
  1572. package/utils/a2ui/renderers/breadcrumbs.cjs +1 -1
  1573. package/utils/a2ui/renderers/breadcrumbs.d.cts +4 -0
  1574. package/utils/a2ui/renderers/breadcrumbs.d.ts +1 -1
  1575. package/utils/a2ui/renderers/button.cjs +1 -1
  1576. package/utils/a2ui/renderers/button.d.cts +5 -0
  1577. package/utils/a2ui/renderers/button.d.ts +2 -2
  1578. package/utils/a2ui/renderers/button.js +32 -19
  1579. package/utils/a2ui/renderers/card.cjs +1 -1
  1580. package/utils/a2ui/renderers/card.d.cts +14 -0
  1581. package/utils/a2ui/renderers/card.d.ts +3 -3
  1582. package/utils/a2ui/renderers/carousel.cjs +1 -1
  1583. package/utils/a2ui/renderers/carousel.d.cts +6 -0
  1584. package/utils/a2ui/renderers/carousel.d.ts +1 -1
  1585. package/utils/a2ui/renderers/carousel.js +44 -28
  1586. package/utils/a2ui/renderers/chart.cjs +1 -1
  1587. package/utils/a2ui/renderers/chart.d.cts +4 -0
  1588. package/utils/a2ui/renderers/chart.d.ts +1 -1
  1589. package/utils/a2ui/renderers/chat.cjs +1 -1
  1590. package/utils/a2ui/renderers/chat.d.cts +7 -0
  1591. package/utils/a2ui/renderers/chat.d.ts +2 -1
  1592. package/utils/a2ui/renderers/chat.js +30 -8
  1593. package/utils/a2ui/renderers/checkbox.cjs +1 -1
  1594. package/utils/a2ui/renderers/checkbox.d.cts +11 -0
  1595. package/utils/a2ui/renderers/checkbox.d.ts +2 -2
  1596. package/utils/a2ui/renderers/content-carousel.cjs +1 -1
  1597. package/utils/a2ui/renderers/content-carousel.d.cts +5 -0
  1598. package/utils/a2ui/renderers/content-carousel.d.ts +1 -1
  1599. package/utils/a2ui/renderers/counter.cjs +1 -1
  1600. package/utils/a2ui/renderers/counter.d.cts +5 -0
  1601. package/utils/a2ui/renderers/counter.d.ts +2 -2
  1602. package/utils/a2ui/renderers/drag-and-drop.cjs +1 -1
  1603. package/utils/a2ui/renderers/drag-and-drop.d.cts +7 -0
  1604. package/utils/a2ui/renderers/drag-and-drop.d.ts +2 -2
  1605. package/utils/a2ui/renderers/dropdown.cjs +1 -1
  1606. package/utils/a2ui/renderers/dropdown.d.cts +6 -0
  1607. package/utils/a2ui/renderers/dropdown.d.ts +2 -2
  1608. package/utils/a2ui/renderers/form.cjs +1 -1
  1609. package/utils/a2ui/renderers/form.d.cts +9 -0
  1610. package/utils/a2ui/renderers/form.d.ts +6 -6
  1611. package/utils/a2ui/renderers/form.js +30 -22
  1612. package/utils/a2ui/renderers/header.cjs +1 -1
  1613. package/utils/a2ui/renderers/header.d.cts +5 -0
  1614. package/utils/a2ui/renderers/header.d.ts +2 -2
  1615. package/utils/a2ui/renderers/icon.cjs +1 -1
  1616. package/utils/a2ui/renderers/icon.d.cts +5 -0
  1617. package/utils/a2ui/renderers/icon.d.ts +2 -2
  1618. package/utils/a2ui/renderers/image.cjs +1 -1
  1619. package/utils/a2ui/renderers/image.d.cts +1025 -0
  1620. package/utils/a2ui/renderers/image.d.ts +11 -11
  1621. package/utils/a2ui/renderers/index.cjs +1 -1
  1622. package/utils/a2ui/renderers/index.d.cts +3 -0
  1623. package/utils/a2ui/renderers/index.d.ts +2 -2
  1624. package/utils/a2ui/renderers/index.js +51 -49
  1625. package/utils/a2ui/renderers/label.cjs +1 -1
  1626. package/utils/a2ui/renderers/label.d.cts +5 -0
  1627. package/utils/a2ui/renderers/label.d.ts +1 -1
  1628. package/utils/a2ui/renderers/layout.cjs +1 -1
  1629. package/utils/a2ui/renderers/layout.d.cts +10 -0
  1630. package/utils/a2ui/renderers/layout.d.ts +2 -2
  1631. package/utils/a2ui/renderers/link.cjs +1 -1
  1632. package/utils/a2ui/renderers/link.d.cts +5 -0
  1633. package/utils/a2ui/renderers/link.d.ts +2 -2
  1634. package/utils/a2ui/renderers/link.js +5 -2
  1635. package/utils/a2ui/renderers/list.cjs +1 -1
  1636. package/utils/a2ui/renderers/list.d.cts +4 -0
  1637. package/utils/a2ui/renderers/list.d.ts +1 -1
  1638. package/utils/a2ui/renderers/loader.cjs +1 -1
  1639. package/utils/a2ui/renderers/loader.d.cts +4 -0
  1640. package/utils/a2ui/renderers/loader.d.ts +1 -1
  1641. package/utils/a2ui/renderers/menu.cjs +1 -1
  1642. package/utils/a2ui/renderers/menu.d.cts +5 -0
  1643. package/utils/a2ui/renderers/menu.d.ts +2 -2
  1644. package/utils/a2ui/renderers/modal.cjs +1 -1
  1645. package/utils/a2ui/renderers/modal.d.cts +6 -0
  1646. package/utils/a2ui/renderers/modal.d.ts +2 -2
  1647. package/utils/a2ui/renderers/modal.js +30 -16
  1648. package/utils/a2ui/renderers/notification.cjs +1 -1
  1649. package/utils/a2ui/renderers/notification.d.cts +6 -0
  1650. package/utils/a2ui/renderers/notification.d.ts +1 -1
  1651. package/utils/a2ui/renderers/price.cjs +1 -1
  1652. package/utils/a2ui/renderers/price.d.cts +4 -0
  1653. package/utils/a2ui/renderers/price.d.ts +1 -1
  1654. package/utils/a2ui/renderers/progress-bar.cjs +1 -1
  1655. package/utils/a2ui/renderers/progress-bar.d.cts +4 -0
  1656. package/utils/a2ui/renderers/progress-bar.d.ts +1 -1
  1657. package/utils/a2ui/renderers/radio-group.cjs +1 -1
  1658. package/utils/a2ui/renderers/radio-group.d.cts +5 -0
  1659. package/utils/a2ui/renderers/radio-group.d.ts +2 -2
  1660. package/utils/a2ui/renderers/rating.cjs +1 -1
  1661. package/utils/a2ui/renderers/rating.d.cts +5 -0
  1662. package/utils/a2ui/renderers/rating.d.ts +2 -2
  1663. package/utils/a2ui/renderers/search.cjs +1 -1
  1664. package/utils/a2ui/renderers/search.d.cts +6 -0
  1665. package/utils/a2ui/renderers/search.d.ts +3 -3
  1666. package/utils/a2ui/renderers/select.cjs +1 -1
  1667. package/utils/a2ui/renderers/select.d.cts +5 -0
  1668. package/utils/a2ui/renderers/select.d.ts +2 -2
  1669. package/utils/a2ui/renderers/separator.cjs +1 -1
  1670. package/utils/a2ui/renderers/separator.d.cts +4 -0
  1671. package/utils/a2ui/renderers/separator.d.ts +1 -1
  1672. package/utils/a2ui/renderers/sidebar.cjs +1 -1
  1673. package/utils/a2ui/renderers/sidebar.d.cts +5 -0
  1674. package/utils/a2ui/renderers/sidebar.d.ts +2 -2
  1675. package/utils/a2ui/renderers/skeleton.cjs +1 -1
  1676. package/utils/a2ui/renderers/skeleton.d.cts +5 -0
  1677. package/utils/a2ui/renderers/skeleton.d.ts +1 -1
  1678. package/utils/a2ui/renderers/slider.cjs +1 -1
  1679. package/utils/a2ui/renderers/slider.d.cts +6 -0
  1680. package/utils/a2ui/renderers/slider.d.ts +3 -3
  1681. package/utils/a2ui/renderers/stepper.cjs +1 -1
  1682. package/utils/a2ui/renderers/stepper.d.cts +5 -0
  1683. package/utils/a2ui/renderers/stepper.d.ts +2 -2
  1684. package/utils/a2ui/renderers/switch.cjs +1 -1
  1685. package/utils/a2ui/renderers/switch.d.cts +5 -0
  1686. package/utils/a2ui/renderers/switch.d.ts +2 -2
  1687. package/utils/a2ui/renderers/switch.js +19 -15
  1688. package/utils/a2ui/renderers/table.cjs +1 -1
  1689. package/utils/a2ui/renderers/table.d.cts +5 -0
  1690. package/utils/a2ui/renderers/table.d.ts +1 -1
  1691. package/utils/a2ui/renderers/table.js +110 -26
  1692. package/utils/a2ui/renderers/tabs.cjs +1 -1
  1693. package/utils/a2ui/renderers/tabs.d.cts +5 -0
  1694. package/utils/a2ui/renderers/tabs.d.ts +2 -2
  1695. package/utils/a2ui/renderers/toggle.cjs +1 -1
  1696. package/utils/a2ui/renderers/toggle.d.cts +5 -0
  1697. package/utils/a2ui/renderers/toggle.d.ts +2 -2
  1698. package/utils/a2ui/renderers/tooltip.cjs +1 -1
  1699. package/utils/a2ui/renderers/tooltip.d.cts +5 -0
  1700. package/utils/a2ui/renderers/tooltip.d.ts +1 -1
  1701. package/utils/a2ui/renderers/truncate.cjs +1 -1
  1702. package/utils/a2ui/renderers/truncate.d.cts +4 -0
  1703. package/utils/a2ui/renderers/truncate.d.ts +1 -1
  1704. package/utils/a2ui/renderers/typography.cjs +1 -1
  1705. package/utils/a2ui/renderers/typography.d.cts +4 -0
  1706. package/utils/a2ui/renderers/typography.d.ts +1 -1
  1707. package/utils/a2ui/types.d.cts +19 -0
  1708. package/utils/a2ui/types.d.ts +3 -3
  1709. package/utils/a2ui.d.cts +2 -0
  1710. package/utils/a2ui.d.ts +2 -2
  1711. package/utils/animationFrame.cjs +1 -1
  1712. package/utils/animationFrame.d.cts +15 -0
  1713. package/utils/commands/vitest-a11y-command.d.cts +29 -0
  1714. package/utils/commands/vitest-a11y-command.d.ts +29 -0
  1715. package/utils/commands/vitest-a2ui-judge-command.d.cts +25 -0
  1716. package/utils/commands/vitest-a2ui-judge-command.d.ts +25 -0
  1717. package/utils/commands/vitest-a2ui-llm-command.d.cts +5 -0
  1718. package/utils/commands/vitest-a2ui-llm-command.d.ts +5 -0
  1719. package/utils/commands/vitest-a2ui-schema-command.d.cts +6 -0
  1720. package/utils/commands/vitest-a2ui-schema-command.d.ts +6 -0
  1721. package/utils/common.d.cts +3 -0
  1722. package/utils/date.d.cts +9 -0
  1723. package/utils/focus.d.cts +32 -0
  1724. package/utils/getContrastColor.d.cts +2 -0
  1725. package/utils/helpers.d.cts +21 -0
  1726. package/utils/index.d.cts +10 -0
  1727. package/utils/index.d.ts +10 -11
  1728. package/utils/layout.d.cts +6 -0
  1729. package/utils/layout.d.ts +1 -1
  1730. package/utils/math.d.cts +6 -0
  1731. package/utils/setInRange.d.cts +5 -0
  1732. package/utils/uniqueKeys.d.cts +1 -0
  1733. package/ai/codegen.d.ts +0 -0
  1734. package/components/atoms/Icon/utils.d.ts +0 -3
  1735. package/components/core/index.d.ts +0 -54
  1736. package/components/domainSpecific/index.d.ts +0 -36
  1737. package/components/templates/index.d.ts +0 -0
  1738. package/utils/getCharCount.d.ts +0 -3
@@ -0,0 +1,4458 @@
1
+ export declare const FIGMA_COLOR_MAP: {
2
+ $schema: string;
3
+ $comment: string;
4
+ $usage: {
5
+ keyQuestion: string;
6
+ lookupSteps: string[];
7
+ criticalRules: string[];
8
+ };
9
+ bg: {
10
+ "gds.color.bg": {
11
+ tokenPath: string;
12
+ cssVar: string;
13
+ themeAccess: string;
14
+ hex: string;
15
+ };
16
+ "gds.color.bg.surface": {
17
+ tokenPath: string;
18
+ cssVar: string;
19
+ themeAccess: string;
20
+ hex: string;
21
+ };
22
+ "gds.color.bg.input": {
23
+ tokenPath: string;
24
+ cssVar: string;
25
+ themeAccess: string;
26
+ hex: string;
27
+ };
28
+ "gds.color.bg.input.disabled": {
29
+ tokenPath: string;
30
+ cssVar: string;
31
+ themeAccess: string;
32
+ hex: string;
33
+ };
34
+ "gds.color.bg.fill.primary": {
35
+ tokenPath: string;
36
+ cssVar: string;
37
+ themeAccess: string;
38
+ hex: string;
39
+ };
40
+ "gds.color.bg.fill.secondary": {
41
+ tokenPath: string;
42
+ cssVar: string;
43
+ themeAccess: string;
44
+ hex: string;
45
+ };
46
+ "gds.color.bg.fill.hover": {
47
+ tokenPath: string;
48
+ cssVar: string;
49
+ themeAccess: string;
50
+ hex: string;
51
+ };
52
+ "gds.color.bg.fill.disabled": {
53
+ tokenPath: string;
54
+ cssVar: string;
55
+ themeAccess: string;
56
+ hex: string;
57
+ };
58
+ "gds.color.bg.fill.tooltip": {
59
+ tokenPath: string;
60
+ cssVar: string;
61
+ themeAccess: string;
62
+ hex: string;
63
+ };
64
+ "gds.color.bg.fill.error.primary": {
65
+ tokenPath: string;
66
+ cssVar: string;
67
+ themeAccess: string;
68
+ hex: string;
69
+ };
70
+ "gds.color.bg.fill.error.primary.hover": {
71
+ tokenPath: string;
72
+ cssVar: string;
73
+ themeAccess: string;
74
+ hex: string;
75
+ };
76
+ "gds.color.bg.fill.error.secondary": {
77
+ tokenPath: string;
78
+ cssVar: string;
79
+ themeAccess: string;
80
+ hex: string;
81
+ };
82
+ "gds.color.bg.fill.error.secondary.hover": {
83
+ tokenPath: string;
84
+ cssVar: string;
85
+ themeAccess: string;
86
+ hex: string;
87
+ };
88
+ "gds.color.bg.fill.success.primary": {
89
+ tokenPath: string;
90
+ cssVar: string;
91
+ themeAccess: string;
92
+ hex: string;
93
+ };
94
+ "gds.color.bg.fill.success.primary.hover": {
95
+ tokenPath: string;
96
+ cssVar: string;
97
+ themeAccess: string;
98
+ hex: string;
99
+ };
100
+ "gds.color.bg.fill.success.secondary": {
101
+ tokenPath: string;
102
+ cssVar: string;
103
+ themeAccess: string;
104
+ hex: string;
105
+ };
106
+ "gds.color.bg.fill.success.secondary.hover": {
107
+ tokenPath: string;
108
+ cssVar: string;
109
+ themeAccess: string;
110
+ hex: string;
111
+ };
112
+ "gds.color.bg.fill.warning.primary": {
113
+ tokenPath: string;
114
+ cssVar: string;
115
+ themeAccess: string;
116
+ hex: string;
117
+ };
118
+ "gds.color.bg.fill.warning.primary.hover": {
119
+ tokenPath: string;
120
+ cssVar: string;
121
+ themeAccess: string;
122
+ hex: string;
123
+ };
124
+ "gds.color.bg.fill.warning.secondary": {
125
+ tokenPath: string;
126
+ cssVar: string;
127
+ themeAccess: string;
128
+ hex: string;
129
+ };
130
+ "gds.color.bg.fill.warning.secondary.hover": {
131
+ tokenPath: string;
132
+ cssVar: string;
133
+ themeAccess: string;
134
+ hex: string;
135
+ };
136
+ "gds.color.bg.fill.info.primary": {
137
+ tokenPath: string;
138
+ cssVar: string;
139
+ themeAccess: string;
140
+ hex: string;
141
+ };
142
+ "gds.color.bg.fill.info.primary.hover": {
143
+ tokenPath: string;
144
+ cssVar: string;
145
+ themeAccess: string;
146
+ hex: string;
147
+ };
148
+ "gds.color.bg.fill.info.secondary": {
149
+ tokenPath: string;
150
+ cssVar: string;
151
+ themeAccess: string;
152
+ hex: string;
153
+ };
154
+ "gds.color.bg.fill.info.secondary.hover": {
155
+ tokenPath: string;
156
+ cssVar: string;
157
+ themeAccess: string;
158
+ hex: string;
159
+ };
160
+ "gds.color.bg.toast.success": {
161
+ tokenPath: string;
162
+ cssVar: string;
163
+ themeAccess: string;
164
+ hex: string;
165
+ };
166
+ "gds.color.bg.toast.error": {
167
+ tokenPath: string;
168
+ cssVar: string;
169
+ themeAccess: string;
170
+ hex: string;
171
+ };
172
+ "gds.color.bg.toast.warning": {
173
+ tokenPath: string;
174
+ cssVar: string;
175
+ themeAccess: string;
176
+ hex: string;
177
+ };
178
+ "gds.color.bg.toast.info": {
179
+ tokenPath: string;
180
+ cssVar: string;
181
+ themeAccess: string;
182
+ hex: string;
183
+ };
184
+ };
185
+ border: {
186
+ "gds.color.border.default": {
187
+ tokenPath: string;
188
+ cssVar: string;
189
+ themeAccess: string;
190
+ hex: string;
191
+ };
192
+ "gds.color.border.disabled": {
193
+ tokenPath: string;
194
+ cssVar: string;
195
+ themeAccess: string;
196
+ hex: string;
197
+ };
198
+ "gds.color.border.primary": {
199
+ tokenPath: string;
200
+ cssVar: string;
201
+ themeAccess: string;
202
+ hex: string;
203
+ };
204
+ "gds.color.border.secondary": {
205
+ tokenPath: string;
206
+ cssVar: string;
207
+ themeAccess: string;
208
+ hex: string;
209
+ };
210
+ "gds.color.border.error": {
211
+ tokenPath: string;
212
+ cssVar: string;
213
+ themeAccess: string;
214
+ hex: string;
215
+ };
216
+ "gds.color.border.success": {
217
+ tokenPath: string;
218
+ cssVar: string;
219
+ themeAccess: string;
220
+ hex: string;
221
+ };
222
+ "gds.color.border.info": {
223
+ tokenPath: string;
224
+ cssVar: string;
225
+ themeAccess: string;
226
+ hex: string;
227
+ };
228
+ "gds.color.border.warning": {
229
+ tokenPath: string;
230
+ cssVar: string;
231
+ themeAccess: string;
232
+ hex: string;
233
+ };
234
+ "gds.color.border.focus": {
235
+ tokenPath: string;
236
+ cssVar: string;
237
+ themeAccess: string;
238
+ hex: string;
239
+ };
240
+ "gds.color.border.white": {
241
+ tokenPath: string;
242
+ cssVar: string;
243
+ themeAccess: string;
244
+ hex: string;
245
+ };
246
+ "gds.color.border.black": {
247
+ tokenPath: string;
248
+ cssVar: string;
249
+ themeAccess: string;
250
+ hex: string;
251
+ };
252
+ };
253
+ text: {
254
+ "gds.color.text.default": {
255
+ tokenPath: string;
256
+ cssVar: string;
257
+ themeAccess: string;
258
+ componentProp: string;
259
+ hex: string;
260
+ };
261
+ "gds.color.text.active": {
262
+ tokenPath: string;
263
+ cssVar: string;
264
+ themeAccess: string;
265
+ componentProp: string;
266
+ hex: string;
267
+ };
268
+ "gds.color.text.disabled": {
269
+ tokenPath: string;
270
+ cssVar: string;
271
+ themeAccess: string;
272
+ componentProp: string;
273
+ hex: string;
274
+ };
275
+ "gds.color.text.title": {
276
+ tokenPath: string;
277
+ cssVar: string;
278
+ themeAccess: string;
279
+ componentProp: string;
280
+ hex: string;
281
+ };
282
+ "gds.color.text.caption": {
283
+ tokenPath: string;
284
+ cssVar: string;
285
+ themeAccess: string;
286
+ componentProp: string;
287
+ hex: string;
288
+ };
289
+ "gds.color.text.error": {
290
+ tokenPath: string;
291
+ cssVar: string;
292
+ themeAccess: string;
293
+ componentProp: string;
294
+ hex: string;
295
+ };
296
+ "gds.color.text.success": {
297
+ tokenPath: string;
298
+ cssVar: string;
299
+ themeAccess: string;
300
+ componentProp: string;
301
+ hex: string;
302
+ };
303
+ "gds.color.text.info": {
304
+ tokenPath: string;
305
+ cssVar: string;
306
+ themeAccess: string;
307
+ componentProp: string;
308
+ hex: string;
309
+ };
310
+ "gds.color.text.warning": {
311
+ tokenPath: string;
312
+ cssVar: string;
313
+ themeAccess: string;
314
+ componentProp: string;
315
+ hex: string;
316
+ };
317
+ "gds.color.text.primary": {
318
+ tokenPath: string;
319
+ cssVar: string;
320
+ themeAccess: string;
321
+ componentProp: string;
322
+ hex: string;
323
+ };
324
+ "gds.color.text.secondary": {
325
+ tokenPath: string;
326
+ cssVar: string;
327
+ themeAccess: string;
328
+ componentProp: string;
329
+ hex: string;
330
+ };
331
+ "gds.color.text.link": {
332
+ tokenPath: string;
333
+ cssVar: string;
334
+ themeAccess: string;
335
+ componentProp: string;
336
+ hex: string;
337
+ };
338
+ "gds.color.text.link.hover": {
339
+ tokenPath: string;
340
+ cssVar: string;
341
+ themeAccess: string;
342
+ hex: string;
343
+ };
344
+ "gds.color.text.white": {
345
+ tokenPath: string;
346
+ cssVar: string;
347
+ themeAccess: string;
348
+ componentProp: string;
349
+ hex: string;
350
+ };
351
+ "gds.color.text.black": {
352
+ tokenPath: string;
353
+ cssVar: string;
354
+ themeAccess: string;
355
+ componentProp: string;
356
+ hex: string;
357
+ };
358
+ };
359
+ icon: {
360
+ "gds.color.icon.default": {
361
+ tokenPath: string;
362
+ cssVar: string;
363
+ themeAccess: string;
364
+ hex: string;
365
+ };
366
+ "gds.color.icon.disabled": {
367
+ tokenPath: string;
368
+ cssVar: string;
369
+ themeAccess: string;
370
+ hex: string;
371
+ };
372
+ "gds.color.icon.primary": {
373
+ tokenPath: string;
374
+ cssVar: string;
375
+ themeAccess: string;
376
+ hex: string;
377
+ };
378
+ "gds.color.icon.secondary": {
379
+ tokenPath: string;
380
+ cssVar: string;
381
+ themeAccess: string;
382
+ hex: string;
383
+ };
384
+ "gds.color.icon.success": {
385
+ tokenPath: string;
386
+ cssVar: string;
387
+ themeAccess: string;
388
+ hex: string;
389
+ };
390
+ "gds.color.icon.info": {
391
+ tokenPath: string;
392
+ cssVar: string;
393
+ themeAccess: string;
394
+ hex: string;
395
+ };
396
+ "gds.color.icon.warning": {
397
+ tokenPath: string;
398
+ cssVar: string;
399
+ themeAccess: string;
400
+ hex: string;
401
+ };
402
+ "gds.color.icon.error": {
403
+ tokenPath: string;
404
+ cssVar: string;
405
+ themeAccess: string;
406
+ hex: string;
407
+ };
408
+ "gds.color.icon.link": {
409
+ tokenPath: string;
410
+ cssVar: string;
411
+ themeAccess: string;
412
+ hex: string;
413
+ };
414
+ "gds.color.icon.link.hover": {
415
+ tokenPath: string;
416
+ cssVar: string;
417
+ themeAccess: string;
418
+ hex: string;
419
+ };
420
+ "gds.color.icon.white": {
421
+ tokenPath: string;
422
+ cssVar: string;
423
+ themeAccess: string;
424
+ hex: string;
425
+ };
426
+ "gds.color.icon.black": {
427
+ tokenPath: string;
428
+ cssVar: string;
429
+ themeAccess: string;
430
+ hex: string;
431
+ };
432
+ };
433
+ neutral: {
434
+ "gds.color.neutral.white": {
435
+ tokenPath: string;
436
+ cssVar: string;
437
+ themeAccess: string;
438
+ hex: string;
439
+ };
440
+ "gds.color.neutral.black": {
441
+ tokenPath: string;
442
+ cssVar: string;
443
+ themeAccess: string;
444
+ hex: string;
445
+ };
446
+ "gds.color.neutral.10": {
447
+ tokenPath: string;
448
+ cssVar: string;
449
+ themeAccess: string;
450
+ hex: string;
451
+ };
452
+ "gds.color.neutral.20": {
453
+ tokenPath: string;
454
+ cssVar: string;
455
+ themeAccess: string;
456
+ hex: string;
457
+ };
458
+ "gds.color.neutral.30": {
459
+ tokenPath: string;
460
+ cssVar: string;
461
+ themeAccess: string;
462
+ hex: string;
463
+ };
464
+ "gds.color.neutral.40": {
465
+ tokenPath: string;
466
+ cssVar: string;
467
+ themeAccess: string;
468
+ hex: string;
469
+ };
470
+ "gds.color.neutral.50": {
471
+ tokenPath: string;
472
+ cssVar: string;
473
+ themeAccess: string;
474
+ hex: string;
475
+ };
476
+ "gds.color.neutral.60": {
477
+ tokenPath: string;
478
+ cssVar: string;
479
+ themeAccess: string;
480
+ hex: string;
481
+ };
482
+ "gds.color.neutral.70": {
483
+ tokenPath: string;
484
+ cssVar: string;
485
+ themeAccess: string;
486
+ hex: string;
487
+ };
488
+ "gds.color.neutral.80": {
489
+ tokenPath: string;
490
+ cssVar: string;
491
+ themeAccess: string;
492
+ hex: string;
493
+ };
494
+ "gds.color.neutral.90": {
495
+ tokenPath: string;
496
+ cssVar: string;
497
+ themeAccess: string;
498
+ hex: string;
499
+ };
500
+ "gds.color.neutral.100": {
501
+ tokenPath: string;
502
+ cssVar: string;
503
+ themeAccess: string;
504
+ hex: string;
505
+ };
506
+ "gds.color.neutral.grey.10": {
507
+ tokenPath: string;
508
+ cssVar: string;
509
+ themeAccess: string;
510
+ hex: string;
511
+ };
512
+ "gds.color.neutral.grey.30": {
513
+ tokenPath: string;
514
+ cssVar: string;
515
+ themeAccess: string;
516
+ hex: string;
517
+ };
518
+ "gds.color.neutral.grey.40": {
519
+ tokenPath: string;
520
+ cssVar: string;
521
+ themeAccess: string;
522
+ hex: string;
523
+ };
524
+ "gds.color.neutral.grey.60": {
525
+ tokenPath: string;
526
+ cssVar: string;
527
+ themeAccess: string;
528
+ hex: string;
529
+ };
530
+ "gds.color.neutral.grey.80": {
531
+ tokenPath: string;
532
+ cssVar: string;
533
+ themeAccess: string;
534
+ hex: string;
535
+ };
536
+ "gds.color.neutral.grey.90": {
537
+ tokenPath: string;
538
+ cssVar: string;
539
+ themeAccess: string;
540
+ hex: string;
541
+ };
542
+ "gds.color.neutral.grey.100": {
543
+ tokenPath: string;
544
+ cssVar: string;
545
+ themeAccess: string;
546
+ hex: string;
547
+ };
548
+ };
549
+ palette: {
550
+ $comment: string;
551
+ "gds.color.yellow.5": {
552
+ tokenPath: string;
553
+ themeAccess: string;
554
+ hex: string;
555
+ };
556
+ "gds.color.yellow.10": {
557
+ tokenPath: string;
558
+ themeAccess: string;
559
+ hex: string;
560
+ };
561
+ "gds.color.yellow.20": {
562
+ tokenPath: string;
563
+ themeAccess: string;
564
+ hex: string;
565
+ };
566
+ "gds.color.yellow.30": {
567
+ tokenPath: string;
568
+ themeAccess: string;
569
+ hex: string;
570
+ };
571
+ "gds.color.yellow.40": {
572
+ tokenPath: string;
573
+ themeAccess: string;
574
+ hex: string;
575
+ };
576
+ "gds.color.yellow.50": {
577
+ tokenPath: string;
578
+ themeAccess: string;
579
+ hex: string;
580
+ };
581
+ "gds.color.yellow.60": {
582
+ tokenPath: string;
583
+ themeAccess: string;
584
+ hex: string;
585
+ };
586
+ "gds.color.yellow.70": {
587
+ tokenPath: string;
588
+ themeAccess: string;
589
+ hex: string;
590
+ };
591
+ "gds.color.yellow.80": {
592
+ tokenPath: string;
593
+ themeAccess: string;
594
+ hex: string;
595
+ };
596
+ "gds.color.yellow.90": {
597
+ tokenPath: string;
598
+ themeAccess: string;
599
+ hex: string;
600
+ };
601
+ "gds.color.yellow.100": {
602
+ tokenPath: string;
603
+ themeAccess: string;
604
+ hex: string;
605
+ };
606
+ "gds.color.orange.5": {
607
+ tokenPath: string;
608
+ themeAccess: string;
609
+ hex: string;
610
+ };
611
+ "gds.color.orange.10": {
612
+ tokenPath: string;
613
+ themeAccess: string;
614
+ hex: string;
615
+ };
616
+ "gds.color.orange.20": {
617
+ tokenPath: string;
618
+ themeAccess: string;
619
+ hex: string;
620
+ };
621
+ "gds.color.orange.30": {
622
+ tokenPath: string;
623
+ themeAccess: string;
624
+ hex: string;
625
+ };
626
+ "gds.color.orange.40": {
627
+ tokenPath: string;
628
+ themeAccess: string;
629
+ hex: string;
630
+ };
631
+ "gds.color.orange.50": {
632
+ tokenPath: string;
633
+ themeAccess: string;
634
+ hex: string;
635
+ };
636
+ "gds.color.orange.60": {
637
+ tokenPath: string;
638
+ themeAccess: string;
639
+ hex: string;
640
+ };
641
+ "gds.color.orange.70": {
642
+ tokenPath: string;
643
+ themeAccess: string;
644
+ hex: string;
645
+ };
646
+ "gds.color.orange.80": {
647
+ tokenPath: string;
648
+ themeAccess: string;
649
+ hex: string;
650
+ };
651
+ "gds.color.orange.90": {
652
+ tokenPath: string;
653
+ themeAccess: string;
654
+ hex: string;
655
+ };
656
+ "gds.color.orange.95": {
657
+ tokenPath: string;
658
+ themeAccess: string;
659
+ hex: string;
660
+ };
661
+ "gds.color.red.90": {
662
+ tokenPath: string;
663
+ themeAccess: string;
664
+ hex: string;
665
+ };
666
+ "gds.color.blue.10": {
667
+ tokenPath: string;
668
+ themeAccess: string;
669
+ hex: string;
670
+ };
671
+ "gds.color.blue.20": {
672
+ tokenPath: string;
673
+ themeAccess: string;
674
+ hex: string;
675
+ };
676
+ "gds.color.blue.30": {
677
+ tokenPath: string;
678
+ themeAccess: string;
679
+ hex: string;
680
+ };
681
+ "gds.color.blue.40": {
682
+ tokenPath: string;
683
+ themeAccess: string;
684
+ hex: string;
685
+ };
686
+ "gds.color.blue.50": {
687
+ tokenPath: string;
688
+ themeAccess: string;
689
+ hex: string;
690
+ };
691
+ "gds.color.blue.60": {
692
+ tokenPath: string;
693
+ themeAccess: string;
694
+ hex: string;
695
+ };
696
+ "gds.color.blue.70": {
697
+ tokenPath: string;
698
+ themeAccess: string;
699
+ hex: string;
700
+ };
701
+ "gds.color.blue.80": {
702
+ tokenPath: string;
703
+ themeAccess: string;
704
+ hex: string;
705
+ };
706
+ "gds.color.blue.90": {
707
+ tokenPath: string;
708
+ themeAccess: string;
709
+ hex: string;
710
+ };
711
+ "gds.color.blue.95": {
712
+ tokenPath: string;
713
+ themeAccess: string;
714
+ hex: string;
715
+ };
716
+ "gds.color.lightBlue.5": {
717
+ tokenPath: string;
718
+ themeAccess: string;
719
+ hex: string;
720
+ };
721
+ "gds.color.lightBlue.10": {
722
+ tokenPath: string;
723
+ themeAccess: string;
724
+ hex: string;
725
+ };
726
+ "gds.color.lightBlue.20": {
727
+ tokenPath: string;
728
+ themeAccess: string;
729
+ hex: string;
730
+ };
731
+ "gds.color.lightBlue.30": {
732
+ tokenPath: string;
733
+ themeAccess: string;
734
+ hex: string;
735
+ };
736
+ "gds.color.lightBlue.40": {
737
+ tokenPath: string;
738
+ themeAccess: string;
739
+ hex: string;
740
+ };
741
+ "gds.color.lightBlue.50": {
742
+ tokenPath: string;
743
+ themeAccess: string;
744
+ hex: string;
745
+ };
746
+ "gds.color.lightBlue.60": {
747
+ tokenPath: string;
748
+ themeAccess: string;
749
+ hex: string;
750
+ };
751
+ "gds.color.lightBlue.70": {
752
+ tokenPath: string;
753
+ themeAccess: string;
754
+ hex: string;
755
+ };
756
+ "gds.color.lightBlue.80": {
757
+ tokenPath: string;
758
+ themeAccess: string;
759
+ hex: string;
760
+ };
761
+ "gds.color.lightBlue.90": {
762
+ tokenPath: string;
763
+ themeAccess: string;
764
+ hex: string;
765
+ };
766
+ "gds.color.lightBlue.95": {
767
+ tokenPath: string;
768
+ themeAccess: string;
769
+ hex: string;
770
+ };
771
+ "gds.color.green.5": {
772
+ tokenPath: string;
773
+ themeAccess: string;
774
+ hex: string;
775
+ };
776
+ "gds.color.green.10": {
777
+ tokenPath: string;
778
+ themeAccess: string;
779
+ hex: string;
780
+ };
781
+ "gds.color.green.20": {
782
+ tokenPath: string;
783
+ themeAccess: string;
784
+ hex: string;
785
+ };
786
+ "gds.color.green.30": {
787
+ tokenPath: string;
788
+ themeAccess: string;
789
+ hex: string;
790
+ };
791
+ "gds.color.green.40": {
792
+ tokenPath: string;
793
+ themeAccess: string;
794
+ hex: string;
795
+ };
796
+ "gds.color.green.50": {
797
+ tokenPath: string;
798
+ themeAccess: string;
799
+ hex: string;
800
+ };
801
+ "gds.color.green.60": {
802
+ tokenPath: string;
803
+ themeAccess: string;
804
+ hex: string;
805
+ };
806
+ "gds.color.green.70": {
807
+ tokenPath: string;
808
+ themeAccess: string;
809
+ hex: string;
810
+ };
811
+ "gds.color.green.80": {
812
+ tokenPath: string;
813
+ themeAccess: string;
814
+ hex: string;
815
+ };
816
+ "gds.color.green.90": {
817
+ tokenPath: string;
818
+ themeAccess: string;
819
+ hex: string;
820
+ };
821
+ "gds.color.green.95": {
822
+ tokenPath: string;
823
+ themeAccess: string;
824
+ hex: string;
825
+ };
826
+ "gds.color.teal.5": {
827
+ tokenPath: string;
828
+ themeAccess: string;
829
+ hex: string;
830
+ };
831
+ "gds.color.teal.10": {
832
+ tokenPath: string;
833
+ themeAccess: string;
834
+ hex: string;
835
+ };
836
+ "gds.color.teal.20": {
837
+ tokenPath: string;
838
+ themeAccess: string;
839
+ hex: string;
840
+ };
841
+ "gds.color.teal.30": {
842
+ tokenPath: string;
843
+ themeAccess: string;
844
+ hex: string;
845
+ };
846
+ "gds.color.teal.40": {
847
+ tokenPath: string;
848
+ themeAccess: string;
849
+ hex: string;
850
+ };
851
+ "gds.color.teal.50": {
852
+ tokenPath: string;
853
+ themeAccess: string;
854
+ hex: string;
855
+ };
856
+ "gds.color.teal.60": {
857
+ tokenPath: string;
858
+ themeAccess: string;
859
+ hex: string;
860
+ };
861
+ "gds.color.teal.70": {
862
+ tokenPath: string;
863
+ themeAccess: string;
864
+ hex: string;
865
+ };
866
+ "gds.color.teal.80": {
867
+ tokenPath: string;
868
+ themeAccess: string;
869
+ hex: string;
870
+ };
871
+ "gds.color.teal.90": {
872
+ tokenPath: string;
873
+ themeAccess: string;
874
+ hex: string;
875
+ };
876
+ "gds.color.teal.95": {
877
+ tokenPath: string;
878
+ themeAccess: string;
879
+ hex: string;
880
+ };
881
+ "gds.color.pink.5": {
882
+ tokenPath: string;
883
+ themeAccess: string;
884
+ hex: string;
885
+ };
886
+ "gds.color.pink.10": {
887
+ tokenPath: string;
888
+ themeAccess: string;
889
+ hex: string;
890
+ };
891
+ "gds.color.pink.20": {
892
+ tokenPath: string;
893
+ themeAccess: string;
894
+ hex: string;
895
+ };
896
+ "gds.color.pink.30": {
897
+ tokenPath: string;
898
+ themeAccess: string;
899
+ hex: string;
900
+ };
901
+ "gds.color.pink.40": {
902
+ tokenPath: string;
903
+ themeAccess: string;
904
+ hex: string;
905
+ };
906
+ "gds.color.pink.50": {
907
+ tokenPath: string;
908
+ themeAccess: string;
909
+ hex: string;
910
+ };
911
+ "gds.color.pink.60": {
912
+ tokenPath: string;
913
+ themeAccess: string;
914
+ hex: string;
915
+ };
916
+ "gds.color.pink.70": {
917
+ tokenPath: string;
918
+ themeAccess: string;
919
+ hex: string;
920
+ };
921
+ "gds.color.pink.80": {
922
+ tokenPath: string;
923
+ themeAccess: string;
924
+ hex: string;
925
+ };
926
+ "gds.color.pink.90": {
927
+ tokenPath: string;
928
+ themeAccess: string;
929
+ hex: string;
930
+ };
931
+ "gds.color.pink.95": {
932
+ tokenPath: string;
933
+ themeAccess: string;
934
+ hex: string;
935
+ };
936
+ "gds.color.purple.5": {
937
+ tokenPath: string;
938
+ themeAccess: string;
939
+ hex: string;
940
+ };
941
+ "gds.color.purple.10": {
942
+ tokenPath: string;
943
+ themeAccess: string;
944
+ hex: string;
945
+ };
946
+ "gds.color.purple.20": {
947
+ tokenPath: string;
948
+ themeAccess: string;
949
+ hex: string;
950
+ };
951
+ "gds.color.purple.30": {
952
+ tokenPath: string;
953
+ themeAccess: string;
954
+ hex: string;
955
+ };
956
+ "gds.color.purple.40": {
957
+ tokenPath: string;
958
+ themeAccess: string;
959
+ hex: string;
960
+ };
961
+ "gds.color.purple.50": {
962
+ tokenPath: string;
963
+ themeAccess: string;
964
+ hex: string;
965
+ };
966
+ "gds.color.purple.60": {
967
+ tokenPath: string;
968
+ themeAccess: string;
969
+ hex: string;
970
+ };
971
+ "gds.color.purple.70": {
972
+ tokenPath: string;
973
+ themeAccess: string;
974
+ hex: string;
975
+ };
976
+ "gds.color.purple.80": {
977
+ tokenPath: string;
978
+ themeAccess: string;
979
+ hex: string;
980
+ };
981
+ "gds.color.purple.90": {
982
+ tokenPath: string;
983
+ themeAccess: string;
984
+ hex: string;
985
+ };
986
+ "gds.color.purple.95": {
987
+ tokenPath: string;
988
+ themeAccess: string;
989
+ hex: string;
990
+ };
991
+ };
992
+ hexIndex: {
993
+ $comment: string;
994
+ "#F8F7F5": string;
995
+ "#FFFFFF": string;
996
+ "#FAF9F9": string;
997
+ "#FFB800": string;
998
+ "#F29100": string;
999
+ "#FFF7E5": string;
1000
+ "#E5E5E5": string;
1001
+ "#CECECE": string;
1002
+ "#D21C1C": string;
1003
+ "#BD1919": string;
1004
+ "#FDEDED": string;
1005
+ "#F7C5C5": string;
1006
+ "#34A853": string;
1007
+ "#1F843A": string;
1008
+ "#EFFCF2": string;
1009
+ "#C9E6CA": string;
1010
+ "#FF8700": string;
1011
+ "#CD4800": string;
1012
+ "#FFF8EF": string;
1013
+ "#FFDBB2": string;
1014
+ "#0069B4": string;
1015
+ "#00476E": string;
1016
+ "#E3F6FF": string;
1017
+ "#D1EFFD": string;
1018
+ "#202020": string;
1019
+ "#000000": string;
1020
+ "#A3A3A3": string;
1021
+ "#474747": string;
1022
+ "#838383": string;
1023
+ "#278CBF": string;
1024
+ "#53B7E8": string;
1025
+ "#8F8F8F": string;
1026
+ "#171717": string;
1027
+ "#E0E0E0": string;
1028
+ "#C1C1C1": string;
1029
+ "#6D6D6D": string;
1030
+ };
1031
+ };
1032
+ export declare const FIGMA_SPACING_MAP: {
1033
+ $schema: string;
1034
+ $comment: string;
1035
+ $usage: {
1036
+ keyQuestion: string;
1037
+ lookupSteps: string[];
1038
+ criticalRules: string[];
1039
+ };
1040
+ spacing: {
1041
+ $comment: string;
1042
+ "gds.spacing.none": {
1043
+ tokenPath: string;
1044
+ cssVar: string;
1045
+ themeAccess: string;
1046
+ value: string;
1047
+ };
1048
+ "gds.spacing.xs": {
1049
+ tokenPath: string;
1050
+ cssVar: string;
1051
+ themeAccess: string;
1052
+ value: string;
1053
+ };
1054
+ "gds.spacing.sm": {
1055
+ tokenPath: string;
1056
+ cssVar: string;
1057
+ themeAccess: string;
1058
+ value: string;
1059
+ };
1060
+ "gds.spacing.md": {
1061
+ tokenPath: string;
1062
+ cssVar: string;
1063
+ themeAccess: string;
1064
+ value: string;
1065
+ };
1066
+ "gds.spacing.lg": {
1067
+ tokenPath: string;
1068
+ cssVar: string;
1069
+ themeAccess: string;
1070
+ value: string;
1071
+ };
1072
+ "gds.spacing.xl": {
1073
+ tokenPath: string;
1074
+ cssVar: string;
1075
+ themeAccess: string;
1076
+ value: string;
1077
+ };
1078
+ "gds.spacing.xxl": {
1079
+ tokenPath: string;
1080
+ cssVar: string;
1081
+ themeAccess: string;
1082
+ value: string;
1083
+ };
1084
+ };
1085
+ space: {
1086
+ $comment: string;
1087
+ "gds.space.0": {
1088
+ tokenPath: string;
1089
+ cssVar: string;
1090
+ themeAccess: string;
1091
+ value: string;
1092
+ };
1093
+ "gds.space.050": {
1094
+ tokenPath: string;
1095
+ cssVar: string;
1096
+ themeAccess: string;
1097
+ value: string;
1098
+ };
1099
+ "gds.space.100": {
1100
+ tokenPath: string;
1101
+ cssVar: string;
1102
+ themeAccess: string;
1103
+ value: string;
1104
+ };
1105
+ "gds.space.150": {
1106
+ tokenPath: string;
1107
+ cssVar: string;
1108
+ themeAccess: string;
1109
+ value: string;
1110
+ };
1111
+ "gds.space.200": {
1112
+ tokenPath: string;
1113
+ cssVar: string;
1114
+ themeAccess: string;
1115
+ value: string;
1116
+ };
1117
+ "gds.space.300": {
1118
+ tokenPath: string;
1119
+ cssVar: string;
1120
+ themeAccess: string;
1121
+ value: string;
1122
+ };
1123
+ "gds.space.400": {
1124
+ tokenPath: string;
1125
+ cssVar: string;
1126
+ themeAccess: string;
1127
+ value: string;
1128
+ };
1129
+ "gds.space.500": {
1130
+ tokenPath: string;
1131
+ cssVar: string;
1132
+ themeAccess: string;
1133
+ value: string;
1134
+ };
1135
+ "gds.space.600": {
1136
+ tokenPath: string;
1137
+ cssVar: string;
1138
+ themeAccess: string;
1139
+ value: string;
1140
+ };
1141
+ "gds.space.700": {
1142
+ tokenPath: string;
1143
+ cssVar: string;
1144
+ themeAccess: string;
1145
+ value: string;
1146
+ };
1147
+ "gds.space.800": {
1148
+ tokenPath: string;
1149
+ cssVar: string;
1150
+ themeAccess: string;
1151
+ value: string;
1152
+ };
1153
+ "gds.space.900": {
1154
+ tokenPath: string;
1155
+ cssVar: string;
1156
+ themeAccess: string;
1157
+ value: string;
1158
+ };
1159
+ "gds.space.1000": {
1160
+ tokenPath: string;
1161
+ cssVar: string;
1162
+ themeAccess: string;
1163
+ value: string;
1164
+ };
1165
+ };
1166
+ scale: {
1167
+ $comment: string;
1168
+ "gds.scale.050": {
1169
+ tokenPath: string;
1170
+ cssVar: string;
1171
+ themeAccess: string;
1172
+ value: string;
1173
+ };
1174
+ "gds.scale.100": {
1175
+ tokenPath: string;
1176
+ cssVar: string;
1177
+ themeAccess: string;
1178
+ value: string;
1179
+ };
1180
+ "gds.scale.200": {
1181
+ tokenPath: string;
1182
+ cssVar: string;
1183
+ themeAccess: string;
1184
+ value: string;
1185
+ };
1186
+ "gds.scale.300": {
1187
+ tokenPath: string;
1188
+ cssVar: string;
1189
+ themeAccess: string;
1190
+ value: string;
1191
+ };
1192
+ "gds.scale.400": {
1193
+ tokenPath: string;
1194
+ cssVar: string;
1195
+ themeAccess: string;
1196
+ value: string;
1197
+ };
1198
+ "gds.scale.500": {
1199
+ tokenPath: string;
1200
+ cssVar: string;
1201
+ themeAccess: string;
1202
+ value: string;
1203
+ };
1204
+ };
1205
+ pxIndex: {
1206
+ $comment: string;
1207
+ "0": {
1208
+ preferred: string;
1209
+ aliases: string[];
1210
+ };
1211
+ "4px": {
1212
+ preferred: string;
1213
+ aliases: string[];
1214
+ };
1215
+ "8px": {
1216
+ preferred: string;
1217
+ aliases: string[];
1218
+ };
1219
+ "12px": {
1220
+ preferred: string;
1221
+ aliases: never[];
1222
+ };
1223
+ "16px": {
1224
+ preferred: string;
1225
+ aliases: string[];
1226
+ };
1227
+ "24px": {
1228
+ preferred: string;
1229
+ aliases: string[];
1230
+ };
1231
+ "32px": {
1232
+ preferred: string;
1233
+ aliases: string[];
1234
+ };
1235
+ "40px": {
1236
+ preferred: string;
1237
+ aliases: string[];
1238
+ };
1239
+ "48px": {
1240
+ preferred: string;
1241
+ aliases: never[];
1242
+ };
1243
+ "56px": {
1244
+ preferred: string;
1245
+ aliases: never[];
1246
+ };
1247
+ "64px": {
1248
+ preferred: string;
1249
+ aliases: never[];
1250
+ };
1251
+ "72px": {
1252
+ preferred: string;
1253
+ aliases: never[];
1254
+ };
1255
+ "80px": {
1256
+ preferred: string;
1257
+ aliases: never[];
1258
+ };
1259
+ };
1260
+ scaleDecisionGuide: {
1261
+ $comment: string;
1262
+ "layout padding/margin/gap (page/section level)": string;
1263
+ "layout >40px gap or padding": string;
1264
+ "component internal padding/gap": string;
1265
+ "12px (no semantic alias)": string;
1266
+ "unmatched px value": string;
1267
+ };
1268
+ };
1269
+ export declare const FIGMA_RADIUS_MAP: {
1270
+ $schema: string;
1271
+ $comment: string;
1272
+ $usage: {
1273
+ keyQuestion: string;
1274
+ lookupSteps: string[];
1275
+ criticalRules: string[];
1276
+ };
1277
+ radius: {
1278
+ "gds.border.radius": {
1279
+ tokenPath: string;
1280
+ cssVar: string;
1281
+ themeAccess: string;
1282
+ value: string;
1283
+ description: string;
1284
+ };
1285
+ "gds.border.radius.xs": {
1286
+ tokenPath: string;
1287
+ cssVar: string;
1288
+ themeAccess: string;
1289
+ value: string;
1290
+ description: string;
1291
+ };
1292
+ "gds.border.radius.sm": {
1293
+ tokenPath: string;
1294
+ cssVar: string;
1295
+ themeAccess: string;
1296
+ value: string;
1297
+ description: string;
1298
+ };
1299
+ "gds.border.radius.default": {
1300
+ tokenPath: string;
1301
+ cssVar: string;
1302
+ themeAccess: string;
1303
+ value: string;
1304
+ description: string;
1305
+ };
1306
+ "gds.border.radius.md": {
1307
+ tokenPath: string;
1308
+ cssVar: string;
1309
+ themeAccess: string;
1310
+ value: string;
1311
+ description: string;
1312
+ };
1313
+ "gds.border.radius.lg": {
1314
+ tokenPath: string;
1315
+ cssVar: string;
1316
+ themeAccess: string;
1317
+ value: string;
1318
+ description: string;
1319
+ };
1320
+ "gds.border.radius.xl": {
1321
+ tokenPath: string;
1322
+ cssVar: string;
1323
+ themeAccess: string;
1324
+ value: string;
1325
+ description: string;
1326
+ };
1327
+ "gds.border.radius.round": {
1328
+ tokenPath: string;
1329
+ cssVar: string;
1330
+ themeAccess: string;
1331
+ value: string;
1332
+ description: string;
1333
+ };
1334
+ };
1335
+ pxIndex: {
1336
+ $comment: string;
1337
+ "0": string;
1338
+ "0px": string;
1339
+ "2px": string;
1340
+ "4px": string;
1341
+ "6px": string;
1342
+ "8px": string;
1343
+ "16px": string;
1344
+ "32px": string;
1345
+ "9999px": string;
1346
+ };
1347
+ camelCaseSplitExamples: {
1348
+ $comment: string;
1349
+ borderRadius: string;
1350
+ borderRadiusXs: string;
1351
+ borderRadiusSm: string;
1352
+ borderRadiusDefault: string;
1353
+ borderRadiusMd: string;
1354
+ borderRadiusLg: string;
1355
+ borderRadiusXl: string;
1356
+ borderRadiusRound: string;
1357
+ };
1358
+ };
1359
+ export declare const FIGMA_FONT_MAP: {
1360
+ $schema: string;
1361
+ $comment: string;
1362
+ $usage: {
1363
+ keyQuestion: string;
1364
+ lookupSteps: string[];
1365
+ criticalRules: string[];
1366
+ };
1367
+ family: {
1368
+ "gds.font.family": {
1369
+ tokenPath: string;
1370
+ themeAccess: string;
1371
+ value: string;
1372
+ };
1373
+ "gds.font.family.code": {
1374
+ tokenPath: string;
1375
+ themeAccess: string;
1376
+ value: string;
1377
+ };
1378
+ };
1379
+ weight: {
1380
+ $comment: string;
1381
+ "gds.font.weight.light": {
1382
+ tokenPath: string;
1383
+ themeAccess: string;
1384
+ value: number;
1385
+ };
1386
+ "gds.font.weight.normal": {
1387
+ tokenPath: string;
1388
+ themeAccess: string;
1389
+ value: number;
1390
+ };
1391
+ "gds.font.weight.medium": {
1392
+ tokenPath: string;
1393
+ themeAccess: string;
1394
+ value: number;
1395
+ };
1396
+ "gds.font.weight.bold": {
1397
+ tokenPath: string;
1398
+ themeAccess: string;
1399
+ value: number;
1400
+ };
1401
+ };
1402
+ size: {
1403
+ $comment: string;
1404
+ "gds.font.size.xl": {
1405
+ tokenPath: string;
1406
+ themeAccess: string;
1407
+ value: string;
1408
+ role: string;
1409
+ };
1410
+ "gds.font.size.lg": {
1411
+ tokenPath: string;
1412
+ themeAccess: string;
1413
+ value: string;
1414
+ role: string;
1415
+ };
1416
+ "gds.font.size.md": {
1417
+ tokenPath: string;
1418
+ themeAccess: string;
1419
+ value: string;
1420
+ role: string;
1421
+ };
1422
+ "gds.font.size.sm": {
1423
+ tokenPath: string;
1424
+ themeAccess: string;
1425
+ value: string;
1426
+ role: string;
1427
+ };
1428
+ "gds.font.size.xs": {
1429
+ tokenPath: string;
1430
+ themeAccess: string;
1431
+ value: string;
1432
+ role: string;
1433
+ };
1434
+ "gds.font.size.h1": {
1435
+ tokenPath: string;
1436
+ themeAccess: string;
1437
+ value: string;
1438
+ role: string;
1439
+ };
1440
+ "gds.font.size.h2": {
1441
+ tokenPath: string;
1442
+ themeAccess: string;
1443
+ value: string;
1444
+ role: string;
1445
+ };
1446
+ "gds.font.size.h3": {
1447
+ tokenPath: string;
1448
+ themeAccess: string;
1449
+ value: string;
1450
+ role: string;
1451
+ };
1452
+ "gds.font.size.h4": {
1453
+ tokenPath: string;
1454
+ themeAccess: string;
1455
+ value: string;
1456
+ role: string;
1457
+ };
1458
+ "gds.font.size.h5": {
1459
+ tokenPath: string;
1460
+ themeAccess: string;
1461
+ value: string;
1462
+ role: string;
1463
+ };
1464
+ "gds.font.size.h6": {
1465
+ tokenPath: string;
1466
+ themeAccess: string;
1467
+ value: string;
1468
+ role: string;
1469
+ };
1470
+ "gds.font.size.p": {
1471
+ tokenPath: string;
1472
+ themeAccess: string;
1473
+ value: string;
1474
+ role: string;
1475
+ };
1476
+ "gds.font.size.small": {
1477
+ tokenPath: string;
1478
+ themeAccess: string;
1479
+ value: string;
1480
+ role: string;
1481
+ };
1482
+ "gds.font.size.caption": {
1483
+ tokenPath: string;
1484
+ themeAccess: string;
1485
+ value: string;
1486
+ role: string;
1487
+ };
1488
+ "gds.font.size.header": {
1489
+ tokenPath: string;
1490
+ themeAccess: string;
1491
+ value: string;
1492
+ role: string;
1493
+ };
1494
+ "gds.font.size.code": {
1495
+ tokenPath: string;
1496
+ themeAccess: string;
1497
+ value: string;
1498
+ role: string;
1499
+ };
1500
+ "gds.font.size.kbd": {
1501
+ tokenPath: string;
1502
+ themeAccess: string;
1503
+ value: string;
1504
+ role: string;
1505
+ };
1506
+ "gds.font.size.sub": {
1507
+ tokenPath: string;
1508
+ themeAccess: string;
1509
+ value: string;
1510
+ role: string;
1511
+ };
1512
+ "gds.font.size.sup": {
1513
+ tokenPath: string;
1514
+ themeAccess: string;
1515
+ value: string;
1516
+ role: string;
1517
+ };
1518
+ };
1519
+ lineHeight: {
1520
+ $comment: string;
1521
+ "gds.font.line.height.xl": {
1522
+ tokenPath: string;
1523
+ themeAccess: string;
1524
+ value: string;
1525
+ };
1526
+ "gds.font.line.height.lg": {
1527
+ tokenPath: string;
1528
+ themeAccess: string;
1529
+ value: string;
1530
+ };
1531
+ "gds.font.line.height.md": {
1532
+ tokenPath: string;
1533
+ themeAccess: string;
1534
+ value: string;
1535
+ };
1536
+ "gds.font.line.height.sm": {
1537
+ tokenPath: string;
1538
+ themeAccess: string;
1539
+ value: string;
1540
+ };
1541
+ "gds.font.line.height.xs": {
1542
+ tokenPath: string;
1543
+ themeAccess: string;
1544
+ value: string;
1545
+ };
1546
+ "gds.font.line.height.h1": {
1547
+ tokenPath: string;
1548
+ themeAccess: string;
1549
+ value: string;
1550
+ };
1551
+ "gds.font.line.height.h2": {
1552
+ tokenPath: string;
1553
+ themeAccess: string;
1554
+ value: string;
1555
+ };
1556
+ "gds.font.line.height.h3": {
1557
+ tokenPath: string;
1558
+ themeAccess: string;
1559
+ value: string;
1560
+ };
1561
+ "gds.font.line.height.h4": {
1562
+ tokenPath: string;
1563
+ themeAccess: string;
1564
+ value: string;
1565
+ };
1566
+ "gds.font.line.height.h5": {
1567
+ tokenPath: string;
1568
+ themeAccess: string;
1569
+ value: string;
1570
+ };
1571
+ "gds.font.line.height.h6": {
1572
+ tokenPath: string;
1573
+ themeAccess: string;
1574
+ value: string;
1575
+ };
1576
+ "gds.font.line.height.p": {
1577
+ tokenPath: string;
1578
+ themeAccess: string;
1579
+ value: string;
1580
+ };
1581
+ "gds.font.line.height.small": {
1582
+ tokenPath: string;
1583
+ themeAccess: string;
1584
+ value: string;
1585
+ };
1586
+ "gds.font.line.height.caption": {
1587
+ tokenPath: string;
1588
+ themeAccess: string;
1589
+ value: string;
1590
+ };
1591
+ "gds.font.line.height.header": {
1592
+ tokenPath: string;
1593
+ themeAccess: string;
1594
+ value: string;
1595
+ };
1596
+ "gds.font.line.height.code": {
1597
+ tokenPath: string;
1598
+ themeAccess: string;
1599
+ value: string;
1600
+ };
1601
+ "gds.font.line.height.kbd": {
1602
+ tokenPath: string;
1603
+ themeAccess: string;
1604
+ value: string;
1605
+ };
1606
+ "gds.font.line.height.sub": {
1607
+ tokenPath: string;
1608
+ themeAccess: string;
1609
+ value: string;
1610
+ };
1611
+ "gds.font.line.height.sup": {
1612
+ tokenPath: string;
1613
+ themeAccess: string;
1614
+ value: string;
1615
+ };
1616
+ };
1617
+ valueIndex: {
1618
+ $comment: string;
1619
+ fontSize: {
1620
+ "64px": string;
1621
+ "48px": string;
1622
+ "40px": string;
1623
+ "36px": string;
1624
+ "34px": string;
1625
+ "32px": string;
1626
+ "28px": string;
1627
+ "24px": string;
1628
+ "20px": string;
1629
+ "18px": string;
1630
+ "16px": string;
1631
+ "14px": string;
1632
+ "12px": string;
1633
+ "8px": string;
1634
+ };
1635
+ fontWeight: {
1636
+ "300": string;
1637
+ "400": string;
1638
+ "500": string;
1639
+ "700": string;
1640
+ "800": string;
1641
+ "900": string;
1642
+ };
1643
+ lineHeight: {
1644
+ "77px": string;
1645
+ "58px": string;
1646
+ "56px": string;
1647
+ "48px": string;
1648
+ "44px": string;
1649
+ "38px": string;
1650
+ "36px": string;
1651
+ "34px": string;
1652
+ "32px": string;
1653
+ "28px": string;
1654
+ "26px": string;
1655
+ "24px": string;
1656
+ "20px": string;
1657
+ "16px": string;
1658
+ };
1659
+ };
1660
+ camelCaseSplitExamples: {
1661
+ $comment: string;
1662
+ fontSizeH5: string;
1663
+ fontSizeKbd: string;
1664
+ lineHeightH5: string;
1665
+ lineHeightKbd: string;
1666
+ fontWeightBold: string;
1667
+ fontWeightMedium: string;
1668
+ fontWeightNormal: string;
1669
+ fontFamily: string;
1670
+ };
1671
+ knownGaps: {
1672
+ $comment: string;
1673
+ "34px lineHeight": string;
1674
+ "fontWeight 800/900": string;
1675
+ };
1676
+ };
1677
+ export declare const FIGMA_SHADOW_MAP: {
1678
+ $schema: string;
1679
+ $comment: string;
1680
+ $usage: {
1681
+ keyQuestion: string;
1682
+ lookupSteps: string[];
1683
+ criticalRules: string[];
1684
+ };
1685
+ light: {
1686
+ $comment: string;
1687
+ "Shadow/Light Mode/shadow 1": {
1688
+ tokenPath: string;
1689
+ cssVar: string;
1690
+ themeAccess: string;
1691
+ figmaValue: string;
1692
+ tokenValue: string;
1693
+ elevation: string;
1694
+ drift: string;
1695
+ };
1696
+ "Shadow/Light Mode/shadow 2": {
1697
+ tokenPath: string;
1698
+ cssVar: string;
1699
+ themeAccess: string;
1700
+ figmaValue: string;
1701
+ tokenValue: string;
1702
+ elevation: string;
1703
+ drift: string;
1704
+ };
1705
+ "Shadow/Light Mode/shadow 3": {
1706
+ tokenPath: string;
1707
+ cssVar: string;
1708
+ themeAccess: string;
1709
+ figmaValue: string;
1710
+ tokenValue: string;
1711
+ elevation: string;
1712
+ drift: string;
1713
+ };
1714
+ "Shadow/Light Mode/shadow 4": {
1715
+ tokenPath: string;
1716
+ cssVar: string;
1717
+ themeAccess: string;
1718
+ figmaValue: string;
1719
+ tokenValue: string;
1720
+ elevation: string;
1721
+ drift: string;
1722
+ };
1723
+ "Shadow/Light Mode/shadow 5": {
1724
+ tokenPath: string;
1725
+ cssVar: string;
1726
+ themeAccess: string;
1727
+ figmaValue: string;
1728
+ tokenValue: string;
1729
+ elevation: string;
1730
+ drift: string;
1731
+ };
1732
+ };
1733
+ dark: {
1734
+ $comment: string;
1735
+ "Shadow/Dark Mode/shadow 1": {
1736
+ tokenPath: null;
1737
+ figmaValue: string;
1738
+ elevation: string;
1739
+ note: string;
1740
+ };
1741
+ "Shadow/Dark Mode/shadow 2": {
1742
+ tokenPath: null;
1743
+ figmaValue: string;
1744
+ elevation: string;
1745
+ note: string;
1746
+ };
1747
+ "Shadow/Dark Mode/shadow 3": {
1748
+ tokenPath: null;
1749
+ figmaValue: string;
1750
+ elevation: string;
1751
+ note: string;
1752
+ };
1753
+ "Shadow/Dark Mode/shadow 4": {
1754
+ tokenPath: null;
1755
+ figmaValue: string;
1756
+ elevation: string;
1757
+ note: string;
1758
+ };
1759
+ "Shadow/Dark Mode/shadow 5": {
1760
+ tokenPath: null;
1761
+ figmaValue: string;
1762
+ elevation: string;
1763
+ note: string;
1764
+ };
1765
+ };
1766
+ semantic: {
1767
+ $comment: string;
1768
+ modal: {
1769
+ tokenPath: string;
1770
+ cssVar: string;
1771
+ themeAccess: string;
1772
+ value: string;
1773
+ usedBy: string[];
1774
+ };
1775
+ "modal.content": {
1776
+ tokenPath: string;
1777
+ cssVar: string;
1778
+ themeAccess: string;
1779
+ value: string;
1780
+ usedBy: string[];
1781
+ };
1782
+ snackbar: {
1783
+ tokenPath: string;
1784
+ cssVar: string;
1785
+ themeAccess: string;
1786
+ value: string;
1787
+ usedBy: string[];
1788
+ };
1789
+ inlineNotification: {
1790
+ tokenPath: string;
1791
+ cssVar: string;
1792
+ themeAccess: string;
1793
+ value: string;
1794
+ usedBy: string[];
1795
+ };
1796
+ };
1797
+ valueIndex: {
1798
+ $comment: string;
1799
+ "0px 2px 1px -1px rgba(0, 0, 0, 0.20), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12)": string;
1800
+ "0px 4px 5px -1px rgba(0, 0, 0, 0.20)": string;
1801
+ "0px 8px 15px 1px rgba(0, 0, 0, 0.20)": string;
1802
+ "0px 12px 28px 5px rgba(0, 0, 0, 0.25)": string;
1803
+ "0px 16px 38px 7px rgba(0, 0, 0, 0.25)": string;
1804
+ "0 4px 12px rgba(0, 0, 0, 0.10)": string;
1805
+ };
1806
+ elevationDecisionGuide: {
1807
+ $comment: string;
1808
+ "card / tile / resting surface": string;
1809
+ "dropdown / popover / tooltip": string;
1810
+ "drawer / panel / side sheet": string;
1811
+ "dialog / modal overlay": string;
1812
+ "floating action button / prominent card": string;
1813
+ "fullscreen overlay / maximum elevation": string;
1814
+ "snackbar / toast": string;
1815
+ "inline notification banner": string;
1816
+ "dark mode \u2014 any level": string;
1817
+ };
1818
+ designDrift: {
1819
+ $comment: string;
1820
+ "level 1": {
1821
+ figma: string;
1822
+ token: string;
1823
+ };
1824
+ "level 2": {
1825
+ figma: string;
1826
+ token: string;
1827
+ };
1828
+ "level 3": {
1829
+ figma: string;
1830
+ token: string;
1831
+ };
1832
+ };
1833
+ };
1834
+ export declare const FIGMA_ICON_MAP: {
1835
+ $schema: string;
1836
+ $comment: string;
1837
+ $usage: {
1838
+ keyQuestion: string;
1839
+ lookupSteps: string[];
1840
+ criticalRules: string[];
1841
+ };
1842
+ icons: {
1843
+ cross: {
1844
+ figmaName: string;
1845
+ figmaCategory: string;
1846
+ figmaPath: string;
1847
+ componentImport: string;
1848
+ note: string;
1849
+ };
1850
+ check: {
1851
+ figmaName: string;
1852
+ figmaCategory: string;
1853
+ figmaPath: string;
1854
+ componentImport: string;
1855
+ };
1856
+ arrowDown: {
1857
+ figmaName: string;
1858
+ figmaCategory: string;
1859
+ figmaPath: string;
1860
+ componentImport: string;
1861
+ };
1862
+ arrowRight: {
1863
+ figmaName: string;
1864
+ figmaCategory: string;
1865
+ figmaPath: string;
1866
+ componentImport: string;
1867
+ };
1868
+ arrowLeft: {
1869
+ figmaName: string;
1870
+ figmaCategory: string;
1871
+ figmaPath: string;
1872
+ componentImport: string;
1873
+ };
1874
+ arrowForward: {
1875
+ figmaName: string;
1876
+ figmaCategory: string;
1877
+ figmaPath: string;
1878
+ componentImport: string;
1879
+ };
1880
+ keyboardArrowDown: {
1881
+ figmaName: string;
1882
+ figmaCategory: string;
1883
+ figmaPath: string;
1884
+ componentImport: string;
1885
+ };
1886
+ keyboardArrowUp: {
1887
+ figmaName: string;
1888
+ figmaCategory: string;
1889
+ figmaPath: string;
1890
+ componentImport: string;
1891
+ };
1892
+ home: {
1893
+ figmaName: string;
1894
+ figmaCategory: string;
1895
+ figmaPath: string;
1896
+ componentImport: string;
1897
+ };
1898
+ mobileMenu: {
1899
+ figmaName: string;
1900
+ figmaCategory: string;
1901
+ figmaPath: string;
1902
+ componentImport: string;
1903
+ };
1904
+ search: {
1905
+ figmaName: string;
1906
+ figmaCategory: string;
1907
+ figmaPath: string;
1908
+ componentImport: string;
1909
+ };
1910
+ edit: {
1911
+ figmaName: string;
1912
+ figmaCategory: string;
1913
+ figmaPath: string;
1914
+ componentImport: string;
1915
+ };
1916
+ favorite: {
1917
+ figmaName: string;
1918
+ figmaCategory: string;
1919
+ figmaPath: string;
1920
+ componentImport: string;
1921
+ };
1922
+ favoriteOutlined: {
1923
+ figmaName: string;
1924
+ figmaCategory: string;
1925
+ figmaPath: string;
1926
+ componentImport: string;
1927
+ };
1928
+ deleteOutlined: {
1929
+ figmaName: string;
1930
+ figmaCategory: string;
1931
+ figmaPath: string;
1932
+ componentImport: string;
1933
+ };
1934
+ accountCircle: {
1935
+ figmaName: string;
1936
+ figmaCategory: string;
1937
+ figmaPath: string;
1938
+ componentImport: string;
1939
+ };
1940
+ shoppingBag: {
1941
+ figmaName: string;
1942
+ figmaCategory: string;
1943
+ figmaPath: string;
1944
+ componentImport: string;
1945
+ };
1946
+ localShipping: {
1947
+ figmaName: string;
1948
+ figmaCategory: string;
1949
+ figmaPath: string;
1950
+ componentImport: string;
1951
+ };
1952
+ errorOutline: {
1953
+ figmaName: string;
1954
+ figmaCategory: string;
1955
+ figmaPath: string;
1956
+ componentImport: string;
1957
+ };
1958
+ star: {
1959
+ figmaName: string;
1960
+ figmaCategory: string;
1961
+ figmaPath: string;
1962
+ componentImport: string;
1963
+ };
1964
+ starOutlined: {
1965
+ figmaName: string;
1966
+ figmaCategory: string;
1967
+ figmaPath: string;
1968
+ componentImport: string;
1969
+ };
1970
+ starHalf: {
1971
+ figmaName: string;
1972
+ figmaCategory: string;
1973
+ figmaPath: string;
1974
+ componentImport: string;
1975
+ };
1976
+ minus: {
1977
+ figmaName: string;
1978
+ figmaCategory: string;
1979
+ figmaPath: string;
1980
+ componentImport: string;
1981
+ note: string;
1982
+ };
1983
+ plus: {
1984
+ figmaName: string;
1985
+ figmaCategory: string;
1986
+ figmaPath: string;
1987
+ componentImport: string;
1988
+ note: string;
1989
+ };
1990
+ filter: {
1991
+ figmaName: string;
1992
+ figmaCategory: string;
1993
+ figmaPath: string;
1994
+ componentImport: string;
1995
+ };
1996
+ paymentCard: {
1997
+ figmaName: string;
1998
+ figmaCategory: string;
1999
+ figmaPath: string;
2000
+ componentImport: string;
2001
+ };
2002
+ eye: {
2003
+ figmaName: string;
2004
+ figmaCategory: string;
2005
+ figmaPath: string;
2006
+ componentImport: string;
2007
+ note: string;
2008
+ };
2009
+ attachment: {
2010
+ figmaName: string;
2011
+ figmaCategory: string;
2012
+ figmaPath: string;
2013
+ componentImport: string;
2014
+ };
2015
+ upload: {
2016
+ figmaName: string;
2017
+ figmaCategory: string;
2018
+ figmaPath: string;
2019
+ componentImport: string;
2020
+ };
2021
+ folder: {
2022
+ figmaName: string;
2023
+ figmaCategory: string;
2024
+ figmaPath: string;
2025
+ componentImport: string;
2026
+ };
2027
+ folderOpen: {
2028
+ figmaName: string;
2029
+ figmaCategory: string;
2030
+ figmaPath: string;
2031
+ componentImport: string;
2032
+ };
2033
+ wifiTethering: {
2034
+ figmaName: string;
2035
+ figmaCategory: string;
2036
+ figmaPath: string;
2037
+ componentImport: string;
2038
+ };
2039
+ portrait: {
2040
+ figmaName: string;
2041
+ figmaCategory: string;
2042
+ figmaPath: string;
2043
+ componentImport: string;
2044
+ };
2045
+ volumeUp: {
2046
+ figmaName: string;
2047
+ figmaCategory: string;
2048
+ figmaPath: string;
2049
+ componentImport: string;
2050
+ };
2051
+ contentCopy: {
2052
+ figmaName: string;
2053
+ figmaCategory: string;
2054
+ figmaPath: string;
2055
+ componentImport: string;
2056
+ };
2057
+ thumbUp: {
2058
+ figmaName: string;
2059
+ figmaCategory: string;
2060
+ figmaPath: string;
2061
+ componentImport: string;
2062
+ note: string;
2063
+ };
2064
+ thumbDown: {
2065
+ figmaName: string;
2066
+ figmaCategory: string;
2067
+ figmaPath: string;
2068
+ componentImport: string;
2069
+ note: string;
2070
+ };
2071
+ thumbUpFilled: {
2072
+ figmaName: string;
2073
+ figmaCategory: string;
2074
+ figmaPath: string;
2075
+ componentImport: string;
2076
+ };
2077
+ thumbDownFilled: {
2078
+ figmaName: string;
2079
+ figmaCategory: string;
2080
+ figmaPath: string;
2081
+ componentImport: string;
2082
+ };
2083
+ fileCopy: {
2084
+ figmaName: string;
2085
+ figmaCategory: string;
2086
+ figmaPath: string;
2087
+ componentImport: string;
2088
+ };
2089
+ send: {
2090
+ figmaName: string;
2091
+ figmaCategory: string;
2092
+ figmaPath: string;
2093
+ componentImport: string;
2094
+ };
2095
+ chat: {
2096
+ figmaName: string;
2097
+ figmaCategory: string;
2098
+ figmaPath: string;
2099
+ componentImport: string;
2100
+ };
2101
+ chatBubble: {
2102
+ figmaName: string;
2103
+ figmaCategory: string;
2104
+ figmaPath: string;
2105
+ componentImport: string;
2106
+ };
2107
+ phone: {
2108
+ figmaName: string;
2109
+ figmaCategory: string;
2110
+ figmaPath: string;
2111
+ componentImport: string;
2112
+ };
2113
+ mic: {
2114
+ figmaName: string;
2115
+ figmaCategory: string;
2116
+ figmaPath: string;
2117
+ componentImport: string;
2118
+ };
2119
+ fullscreen: {
2120
+ figmaName: string;
2121
+ figmaCategory: string;
2122
+ figmaPath: string;
2123
+ componentImport: string;
2124
+ };
2125
+ fullscreenExit: {
2126
+ figmaName: string;
2127
+ figmaCategory: string;
2128
+ figmaPath: string;
2129
+ componentImport: string;
2130
+ };
2131
+ success: {
2132
+ figmaName: null;
2133
+ componentImport: string;
2134
+ note: string;
2135
+ };
2136
+ error: {
2137
+ figmaName: null;
2138
+ componentImport: string;
2139
+ note: string;
2140
+ };
2141
+ warning: {
2142
+ figmaName: null;
2143
+ componentImport: string;
2144
+ note: string;
2145
+ };
2146
+ info: {
2147
+ figmaName: null;
2148
+ componentImport: string;
2149
+ note: string;
2150
+ };
2151
+ dot: {
2152
+ figmaName: null;
2153
+ componentImport: string;
2154
+ note: string;
2155
+ };
2156
+ slash: {
2157
+ figmaName: null;
2158
+ componentImport: string;
2159
+ note: string;
2160
+ };
2161
+ ruler: {
2162
+ figmaName: null;
2163
+ componentImport: string;
2164
+ note: string;
2165
+ };
2166
+ processing: {
2167
+ figmaName: null;
2168
+ componentImport: string;
2169
+ note: string;
2170
+ };
2171
+ };
2172
+ figmaNameIndex: {
2173
+ $comment: string;
2174
+ close: string;
2175
+ check: string;
2176
+ arrow_downward: string;
2177
+ chevron_right: string;
2178
+ chevron_left: string;
2179
+ arrow_forward: string;
2180
+ keyboard_arrow_down: string;
2181
+ keyboard_arrow_up: string;
2182
+ home: string;
2183
+ menu: string;
2184
+ search: string;
2185
+ edit: string;
2186
+ favorite: string;
2187
+ favorite_border: string;
2188
+ delete_outline: string;
2189
+ account_circle: string;
2190
+ shopping_bag: string;
2191
+ local_shipping: string;
2192
+ error_outline: string;
2193
+ star: string;
2194
+ star_border: string;
2195
+ star_half: string;
2196
+ remove: string;
2197
+ add: string;
2198
+ filter_list: string;
2199
+ credit_card: string;
2200
+ visibility: string;
2201
+ attachment: string;
2202
+ upload: string;
2203
+ folder: string;
2204
+ folder_open: string;
2205
+ wifi_tethering: string;
2206
+ portrait: string;
2207
+ volume_up: string;
2208
+ content_copy: string;
2209
+ thumb_up_off_alt: string;
2210
+ thumb_down_off_alt: string;
2211
+ thumb_up: string;
2212
+ thumb_down: string;
2213
+ file_copy: string;
2214
+ send: string;
2215
+ chat: string;
2216
+ chat_bubble: string;
2217
+ phone: string;
2218
+ mic: string;
2219
+ fullscreen: string;
2220
+ fullscreen_exit: string;
2221
+ };
2222
+ stats: {
2223
+ total: number;
2224
+ mappedToFigma: number;
2225
+ customNoFigmaEquivalent: number;
2226
+ customIcons: string[];
2227
+ };
2228
+ };
2229
+ export declare const FIGMA_TOKEN_MAPS: {
2230
+ readonly color: {
2231
+ $schema: string;
2232
+ $comment: string;
2233
+ $usage: {
2234
+ keyQuestion: string;
2235
+ lookupSteps: string[];
2236
+ criticalRules: string[];
2237
+ };
2238
+ bg: {
2239
+ "gds.color.bg": {
2240
+ tokenPath: string;
2241
+ cssVar: string;
2242
+ themeAccess: string;
2243
+ hex: string;
2244
+ };
2245
+ "gds.color.bg.surface": {
2246
+ tokenPath: string;
2247
+ cssVar: string;
2248
+ themeAccess: string;
2249
+ hex: string;
2250
+ };
2251
+ "gds.color.bg.input": {
2252
+ tokenPath: string;
2253
+ cssVar: string;
2254
+ themeAccess: string;
2255
+ hex: string;
2256
+ };
2257
+ "gds.color.bg.input.disabled": {
2258
+ tokenPath: string;
2259
+ cssVar: string;
2260
+ themeAccess: string;
2261
+ hex: string;
2262
+ };
2263
+ "gds.color.bg.fill.primary": {
2264
+ tokenPath: string;
2265
+ cssVar: string;
2266
+ themeAccess: string;
2267
+ hex: string;
2268
+ };
2269
+ "gds.color.bg.fill.secondary": {
2270
+ tokenPath: string;
2271
+ cssVar: string;
2272
+ themeAccess: string;
2273
+ hex: string;
2274
+ };
2275
+ "gds.color.bg.fill.hover": {
2276
+ tokenPath: string;
2277
+ cssVar: string;
2278
+ themeAccess: string;
2279
+ hex: string;
2280
+ };
2281
+ "gds.color.bg.fill.disabled": {
2282
+ tokenPath: string;
2283
+ cssVar: string;
2284
+ themeAccess: string;
2285
+ hex: string;
2286
+ };
2287
+ "gds.color.bg.fill.tooltip": {
2288
+ tokenPath: string;
2289
+ cssVar: string;
2290
+ themeAccess: string;
2291
+ hex: string;
2292
+ };
2293
+ "gds.color.bg.fill.error.primary": {
2294
+ tokenPath: string;
2295
+ cssVar: string;
2296
+ themeAccess: string;
2297
+ hex: string;
2298
+ };
2299
+ "gds.color.bg.fill.error.primary.hover": {
2300
+ tokenPath: string;
2301
+ cssVar: string;
2302
+ themeAccess: string;
2303
+ hex: string;
2304
+ };
2305
+ "gds.color.bg.fill.error.secondary": {
2306
+ tokenPath: string;
2307
+ cssVar: string;
2308
+ themeAccess: string;
2309
+ hex: string;
2310
+ };
2311
+ "gds.color.bg.fill.error.secondary.hover": {
2312
+ tokenPath: string;
2313
+ cssVar: string;
2314
+ themeAccess: string;
2315
+ hex: string;
2316
+ };
2317
+ "gds.color.bg.fill.success.primary": {
2318
+ tokenPath: string;
2319
+ cssVar: string;
2320
+ themeAccess: string;
2321
+ hex: string;
2322
+ };
2323
+ "gds.color.bg.fill.success.primary.hover": {
2324
+ tokenPath: string;
2325
+ cssVar: string;
2326
+ themeAccess: string;
2327
+ hex: string;
2328
+ };
2329
+ "gds.color.bg.fill.success.secondary": {
2330
+ tokenPath: string;
2331
+ cssVar: string;
2332
+ themeAccess: string;
2333
+ hex: string;
2334
+ };
2335
+ "gds.color.bg.fill.success.secondary.hover": {
2336
+ tokenPath: string;
2337
+ cssVar: string;
2338
+ themeAccess: string;
2339
+ hex: string;
2340
+ };
2341
+ "gds.color.bg.fill.warning.primary": {
2342
+ tokenPath: string;
2343
+ cssVar: string;
2344
+ themeAccess: string;
2345
+ hex: string;
2346
+ };
2347
+ "gds.color.bg.fill.warning.primary.hover": {
2348
+ tokenPath: string;
2349
+ cssVar: string;
2350
+ themeAccess: string;
2351
+ hex: string;
2352
+ };
2353
+ "gds.color.bg.fill.warning.secondary": {
2354
+ tokenPath: string;
2355
+ cssVar: string;
2356
+ themeAccess: string;
2357
+ hex: string;
2358
+ };
2359
+ "gds.color.bg.fill.warning.secondary.hover": {
2360
+ tokenPath: string;
2361
+ cssVar: string;
2362
+ themeAccess: string;
2363
+ hex: string;
2364
+ };
2365
+ "gds.color.bg.fill.info.primary": {
2366
+ tokenPath: string;
2367
+ cssVar: string;
2368
+ themeAccess: string;
2369
+ hex: string;
2370
+ };
2371
+ "gds.color.bg.fill.info.primary.hover": {
2372
+ tokenPath: string;
2373
+ cssVar: string;
2374
+ themeAccess: string;
2375
+ hex: string;
2376
+ };
2377
+ "gds.color.bg.fill.info.secondary": {
2378
+ tokenPath: string;
2379
+ cssVar: string;
2380
+ themeAccess: string;
2381
+ hex: string;
2382
+ };
2383
+ "gds.color.bg.fill.info.secondary.hover": {
2384
+ tokenPath: string;
2385
+ cssVar: string;
2386
+ themeAccess: string;
2387
+ hex: string;
2388
+ };
2389
+ "gds.color.bg.toast.success": {
2390
+ tokenPath: string;
2391
+ cssVar: string;
2392
+ themeAccess: string;
2393
+ hex: string;
2394
+ };
2395
+ "gds.color.bg.toast.error": {
2396
+ tokenPath: string;
2397
+ cssVar: string;
2398
+ themeAccess: string;
2399
+ hex: string;
2400
+ };
2401
+ "gds.color.bg.toast.warning": {
2402
+ tokenPath: string;
2403
+ cssVar: string;
2404
+ themeAccess: string;
2405
+ hex: string;
2406
+ };
2407
+ "gds.color.bg.toast.info": {
2408
+ tokenPath: string;
2409
+ cssVar: string;
2410
+ themeAccess: string;
2411
+ hex: string;
2412
+ };
2413
+ };
2414
+ border: {
2415
+ "gds.color.border.default": {
2416
+ tokenPath: string;
2417
+ cssVar: string;
2418
+ themeAccess: string;
2419
+ hex: string;
2420
+ };
2421
+ "gds.color.border.disabled": {
2422
+ tokenPath: string;
2423
+ cssVar: string;
2424
+ themeAccess: string;
2425
+ hex: string;
2426
+ };
2427
+ "gds.color.border.primary": {
2428
+ tokenPath: string;
2429
+ cssVar: string;
2430
+ themeAccess: string;
2431
+ hex: string;
2432
+ };
2433
+ "gds.color.border.secondary": {
2434
+ tokenPath: string;
2435
+ cssVar: string;
2436
+ themeAccess: string;
2437
+ hex: string;
2438
+ };
2439
+ "gds.color.border.error": {
2440
+ tokenPath: string;
2441
+ cssVar: string;
2442
+ themeAccess: string;
2443
+ hex: string;
2444
+ };
2445
+ "gds.color.border.success": {
2446
+ tokenPath: string;
2447
+ cssVar: string;
2448
+ themeAccess: string;
2449
+ hex: string;
2450
+ };
2451
+ "gds.color.border.info": {
2452
+ tokenPath: string;
2453
+ cssVar: string;
2454
+ themeAccess: string;
2455
+ hex: string;
2456
+ };
2457
+ "gds.color.border.warning": {
2458
+ tokenPath: string;
2459
+ cssVar: string;
2460
+ themeAccess: string;
2461
+ hex: string;
2462
+ };
2463
+ "gds.color.border.focus": {
2464
+ tokenPath: string;
2465
+ cssVar: string;
2466
+ themeAccess: string;
2467
+ hex: string;
2468
+ };
2469
+ "gds.color.border.white": {
2470
+ tokenPath: string;
2471
+ cssVar: string;
2472
+ themeAccess: string;
2473
+ hex: string;
2474
+ };
2475
+ "gds.color.border.black": {
2476
+ tokenPath: string;
2477
+ cssVar: string;
2478
+ themeAccess: string;
2479
+ hex: string;
2480
+ };
2481
+ };
2482
+ text: {
2483
+ "gds.color.text.default": {
2484
+ tokenPath: string;
2485
+ cssVar: string;
2486
+ themeAccess: string;
2487
+ componentProp: string;
2488
+ hex: string;
2489
+ };
2490
+ "gds.color.text.active": {
2491
+ tokenPath: string;
2492
+ cssVar: string;
2493
+ themeAccess: string;
2494
+ componentProp: string;
2495
+ hex: string;
2496
+ };
2497
+ "gds.color.text.disabled": {
2498
+ tokenPath: string;
2499
+ cssVar: string;
2500
+ themeAccess: string;
2501
+ componentProp: string;
2502
+ hex: string;
2503
+ };
2504
+ "gds.color.text.title": {
2505
+ tokenPath: string;
2506
+ cssVar: string;
2507
+ themeAccess: string;
2508
+ componentProp: string;
2509
+ hex: string;
2510
+ };
2511
+ "gds.color.text.caption": {
2512
+ tokenPath: string;
2513
+ cssVar: string;
2514
+ themeAccess: string;
2515
+ componentProp: string;
2516
+ hex: string;
2517
+ };
2518
+ "gds.color.text.error": {
2519
+ tokenPath: string;
2520
+ cssVar: string;
2521
+ themeAccess: string;
2522
+ componentProp: string;
2523
+ hex: string;
2524
+ };
2525
+ "gds.color.text.success": {
2526
+ tokenPath: string;
2527
+ cssVar: string;
2528
+ themeAccess: string;
2529
+ componentProp: string;
2530
+ hex: string;
2531
+ };
2532
+ "gds.color.text.info": {
2533
+ tokenPath: string;
2534
+ cssVar: string;
2535
+ themeAccess: string;
2536
+ componentProp: string;
2537
+ hex: string;
2538
+ };
2539
+ "gds.color.text.warning": {
2540
+ tokenPath: string;
2541
+ cssVar: string;
2542
+ themeAccess: string;
2543
+ componentProp: string;
2544
+ hex: string;
2545
+ };
2546
+ "gds.color.text.primary": {
2547
+ tokenPath: string;
2548
+ cssVar: string;
2549
+ themeAccess: string;
2550
+ componentProp: string;
2551
+ hex: string;
2552
+ };
2553
+ "gds.color.text.secondary": {
2554
+ tokenPath: string;
2555
+ cssVar: string;
2556
+ themeAccess: string;
2557
+ componentProp: string;
2558
+ hex: string;
2559
+ };
2560
+ "gds.color.text.link": {
2561
+ tokenPath: string;
2562
+ cssVar: string;
2563
+ themeAccess: string;
2564
+ componentProp: string;
2565
+ hex: string;
2566
+ };
2567
+ "gds.color.text.link.hover": {
2568
+ tokenPath: string;
2569
+ cssVar: string;
2570
+ themeAccess: string;
2571
+ hex: string;
2572
+ };
2573
+ "gds.color.text.white": {
2574
+ tokenPath: string;
2575
+ cssVar: string;
2576
+ themeAccess: string;
2577
+ componentProp: string;
2578
+ hex: string;
2579
+ };
2580
+ "gds.color.text.black": {
2581
+ tokenPath: string;
2582
+ cssVar: string;
2583
+ themeAccess: string;
2584
+ componentProp: string;
2585
+ hex: string;
2586
+ };
2587
+ };
2588
+ icon: {
2589
+ "gds.color.icon.default": {
2590
+ tokenPath: string;
2591
+ cssVar: string;
2592
+ themeAccess: string;
2593
+ hex: string;
2594
+ };
2595
+ "gds.color.icon.disabled": {
2596
+ tokenPath: string;
2597
+ cssVar: string;
2598
+ themeAccess: string;
2599
+ hex: string;
2600
+ };
2601
+ "gds.color.icon.primary": {
2602
+ tokenPath: string;
2603
+ cssVar: string;
2604
+ themeAccess: string;
2605
+ hex: string;
2606
+ };
2607
+ "gds.color.icon.secondary": {
2608
+ tokenPath: string;
2609
+ cssVar: string;
2610
+ themeAccess: string;
2611
+ hex: string;
2612
+ };
2613
+ "gds.color.icon.success": {
2614
+ tokenPath: string;
2615
+ cssVar: string;
2616
+ themeAccess: string;
2617
+ hex: string;
2618
+ };
2619
+ "gds.color.icon.info": {
2620
+ tokenPath: string;
2621
+ cssVar: string;
2622
+ themeAccess: string;
2623
+ hex: string;
2624
+ };
2625
+ "gds.color.icon.warning": {
2626
+ tokenPath: string;
2627
+ cssVar: string;
2628
+ themeAccess: string;
2629
+ hex: string;
2630
+ };
2631
+ "gds.color.icon.error": {
2632
+ tokenPath: string;
2633
+ cssVar: string;
2634
+ themeAccess: string;
2635
+ hex: string;
2636
+ };
2637
+ "gds.color.icon.link": {
2638
+ tokenPath: string;
2639
+ cssVar: string;
2640
+ themeAccess: string;
2641
+ hex: string;
2642
+ };
2643
+ "gds.color.icon.link.hover": {
2644
+ tokenPath: string;
2645
+ cssVar: string;
2646
+ themeAccess: string;
2647
+ hex: string;
2648
+ };
2649
+ "gds.color.icon.white": {
2650
+ tokenPath: string;
2651
+ cssVar: string;
2652
+ themeAccess: string;
2653
+ hex: string;
2654
+ };
2655
+ "gds.color.icon.black": {
2656
+ tokenPath: string;
2657
+ cssVar: string;
2658
+ themeAccess: string;
2659
+ hex: string;
2660
+ };
2661
+ };
2662
+ neutral: {
2663
+ "gds.color.neutral.white": {
2664
+ tokenPath: string;
2665
+ cssVar: string;
2666
+ themeAccess: string;
2667
+ hex: string;
2668
+ };
2669
+ "gds.color.neutral.black": {
2670
+ tokenPath: string;
2671
+ cssVar: string;
2672
+ themeAccess: string;
2673
+ hex: string;
2674
+ };
2675
+ "gds.color.neutral.10": {
2676
+ tokenPath: string;
2677
+ cssVar: string;
2678
+ themeAccess: string;
2679
+ hex: string;
2680
+ };
2681
+ "gds.color.neutral.20": {
2682
+ tokenPath: string;
2683
+ cssVar: string;
2684
+ themeAccess: string;
2685
+ hex: string;
2686
+ };
2687
+ "gds.color.neutral.30": {
2688
+ tokenPath: string;
2689
+ cssVar: string;
2690
+ themeAccess: string;
2691
+ hex: string;
2692
+ };
2693
+ "gds.color.neutral.40": {
2694
+ tokenPath: string;
2695
+ cssVar: string;
2696
+ themeAccess: string;
2697
+ hex: string;
2698
+ };
2699
+ "gds.color.neutral.50": {
2700
+ tokenPath: string;
2701
+ cssVar: string;
2702
+ themeAccess: string;
2703
+ hex: string;
2704
+ };
2705
+ "gds.color.neutral.60": {
2706
+ tokenPath: string;
2707
+ cssVar: string;
2708
+ themeAccess: string;
2709
+ hex: string;
2710
+ };
2711
+ "gds.color.neutral.70": {
2712
+ tokenPath: string;
2713
+ cssVar: string;
2714
+ themeAccess: string;
2715
+ hex: string;
2716
+ };
2717
+ "gds.color.neutral.80": {
2718
+ tokenPath: string;
2719
+ cssVar: string;
2720
+ themeAccess: string;
2721
+ hex: string;
2722
+ };
2723
+ "gds.color.neutral.90": {
2724
+ tokenPath: string;
2725
+ cssVar: string;
2726
+ themeAccess: string;
2727
+ hex: string;
2728
+ };
2729
+ "gds.color.neutral.100": {
2730
+ tokenPath: string;
2731
+ cssVar: string;
2732
+ themeAccess: string;
2733
+ hex: string;
2734
+ };
2735
+ "gds.color.neutral.grey.10": {
2736
+ tokenPath: string;
2737
+ cssVar: string;
2738
+ themeAccess: string;
2739
+ hex: string;
2740
+ };
2741
+ "gds.color.neutral.grey.30": {
2742
+ tokenPath: string;
2743
+ cssVar: string;
2744
+ themeAccess: string;
2745
+ hex: string;
2746
+ };
2747
+ "gds.color.neutral.grey.40": {
2748
+ tokenPath: string;
2749
+ cssVar: string;
2750
+ themeAccess: string;
2751
+ hex: string;
2752
+ };
2753
+ "gds.color.neutral.grey.60": {
2754
+ tokenPath: string;
2755
+ cssVar: string;
2756
+ themeAccess: string;
2757
+ hex: string;
2758
+ };
2759
+ "gds.color.neutral.grey.80": {
2760
+ tokenPath: string;
2761
+ cssVar: string;
2762
+ themeAccess: string;
2763
+ hex: string;
2764
+ };
2765
+ "gds.color.neutral.grey.90": {
2766
+ tokenPath: string;
2767
+ cssVar: string;
2768
+ themeAccess: string;
2769
+ hex: string;
2770
+ };
2771
+ "gds.color.neutral.grey.100": {
2772
+ tokenPath: string;
2773
+ cssVar: string;
2774
+ themeAccess: string;
2775
+ hex: string;
2776
+ };
2777
+ };
2778
+ palette: {
2779
+ $comment: string;
2780
+ "gds.color.yellow.5": {
2781
+ tokenPath: string;
2782
+ themeAccess: string;
2783
+ hex: string;
2784
+ };
2785
+ "gds.color.yellow.10": {
2786
+ tokenPath: string;
2787
+ themeAccess: string;
2788
+ hex: string;
2789
+ };
2790
+ "gds.color.yellow.20": {
2791
+ tokenPath: string;
2792
+ themeAccess: string;
2793
+ hex: string;
2794
+ };
2795
+ "gds.color.yellow.30": {
2796
+ tokenPath: string;
2797
+ themeAccess: string;
2798
+ hex: string;
2799
+ };
2800
+ "gds.color.yellow.40": {
2801
+ tokenPath: string;
2802
+ themeAccess: string;
2803
+ hex: string;
2804
+ };
2805
+ "gds.color.yellow.50": {
2806
+ tokenPath: string;
2807
+ themeAccess: string;
2808
+ hex: string;
2809
+ };
2810
+ "gds.color.yellow.60": {
2811
+ tokenPath: string;
2812
+ themeAccess: string;
2813
+ hex: string;
2814
+ };
2815
+ "gds.color.yellow.70": {
2816
+ tokenPath: string;
2817
+ themeAccess: string;
2818
+ hex: string;
2819
+ };
2820
+ "gds.color.yellow.80": {
2821
+ tokenPath: string;
2822
+ themeAccess: string;
2823
+ hex: string;
2824
+ };
2825
+ "gds.color.yellow.90": {
2826
+ tokenPath: string;
2827
+ themeAccess: string;
2828
+ hex: string;
2829
+ };
2830
+ "gds.color.yellow.100": {
2831
+ tokenPath: string;
2832
+ themeAccess: string;
2833
+ hex: string;
2834
+ };
2835
+ "gds.color.orange.5": {
2836
+ tokenPath: string;
2837
+ themeAccess: string;
2838
+ hex: string;
2839
+ };
2840
+ "gds.color.orange.10": {
2841
+ tokenPath: string;
2842
+ themeAccess: string;
2843
+ hex: string;
2844
+ };
2845
+ "gds.color.orange.20": {
2846
+ tokenPath: string;
2847
+ themeAccess: string;
2848
+ hex: string;
2849
+ };
2850
+ "gds.color.orange.30": {
2851
+ tokenPath: string;
2852
+ themeAccess: string;
2853
+ hex: string;
2854
+ };
2855
+ "gds.color.orange.40": {
2856
+ tokenPath: string;
2857
+ themeAccess: string;
2858
+ hex: string;
2859
+ };
2860
+ "gds.color.orange.50": {
2861
+ tokenPath: string;
2862
+ themeAccess: string;
2863
+ hex: string;
2864
+ };
2865
+ "gds.color.orange.60": {
2866
+ tokenPath: string;
2867
+ themeAccess: string;
2868
+ hex: string;
2869
+ };
2870
+ "gds.color.orange.70": {
2871
+ tokenPath: string;
2872
+ themeAccess: string;
2873
+ hex: string;
2874
+ };
2875
+ "gds.color.orange.80": {
2876
+ tokenPath: string;
2877
+ themeAccess: string;
2878
+ hex: string;
2879
+ };
2880
+ "gds.color.orange.90": {
2881
+ tokenPath: string;
2882
+ themeAccess: string;
2883
+ hex: string;
2884
+ };
2885
+ "gds.color.orange.95": {
2886
+ tokenPath: string;
2887
+ themeAccess: string;
2888
+ hex: string;
2889
+ };
2890
+ "gds.color.red.90": {
2891
+ tokenPath: string;
2892
+ themeAccess: string;
2893
+ hex: string;
2894
+ };
2895
+ "gds.color.blue.10": {
2896
+ tokenPath: string;
2897
+ themeAccess: string;
2898
+ hex: string;
2899
+ };
2900
+ "gds.color.blue.20": {
2901
+ tokenPath: string;
2902
+ themeAccess: string;
2903
+ hex: string;
2904
+ };
2905
+ "gds.color.blue.30": {
2906
+ tokenPath: string;
2907
+ themeAccess: string;
2908
+ hex: string;
2909
+ };
2910
+ "gds.color.blue.40": {
2911
+ tokenPath: string;
2912
+ themeAccess: string;
2913
+ hex: string;
2914
+ };
2915
+ "gds.color.blue.50": {
2916
+ tokenPath: string;
2917
+ themeAccess: string;
2918
+ hex: string;
2919
+ };
2920
+ "gds.color.blue.60": {
2921
+ tokenPath: string;
2922
+ themeAccess: string;
2923
+ hex: string;
2924
+ };
2925
+ "gds.color.blue.70": {
2926
+ tokenPath: string;
2927
+ themeAccess: string;
2928
+ hex: string;
2929
+ };
2930
+ "gds.color.blue.80": {
2931
+ tokenPath: string;
2932
+ themeAccess: string;
2933
+ hex: string;
2934
+ };
2935
+ "gds.color.blue.90": {
2936
+ tokenPath: string;
2937
+ themeAccess: string;
2938
+ hex: string;
2939
+ };
2940
+ "gds.color.blue.95": {
2941
+ tokenPath: string;
2942
+ themeAccess: string;
2943
+ hex: string;
2944
+ };
2945
+ "gds.color.lightBlue.5": {
2946
+ tokenPath: string;
2947
+ themeAccess: string;
2948
+ hex: string;
2949
+ };
2950
+ "gds.color.lightBlue.10": {
2951
+ tokenPath: string;
2952
+ themeAccess: string;
2953
+ hex: string;
2954
+ };
2955
+ "gds.color.lightBlue.20": {
2956
+ tokenPath: string;
2957
+ themeAccess: string;
2958
+ hex: string;
2959
+ };
2960
+ "gds.color.lightBlue.30": {
2961
+ tokenPath: string;
2962
+ themeAccess: string;
2963
+ hex: string;
2964
+ };
2965
+ "gds.color.lightBlue.40": {
2966
+ tokenPath: string;
2967
+ themeAccess: string;
2968
+ hex: string;
2969
+ };
2970
+ "gds.color.lightBlue.50": {
2971
+ tokenPath: string;
2972
+ themeAccess: string;
2973
+ hex: string;
2974
+ };
2975
+ "gds.color.lightBlue.60": {
2976
+ tokenPath: string;
2977
+ themeAccess: string;
2978
+ hex: string;
2979
+ };
2980
+ "gds.color.lightBlue.70": {
2981
+ tokenPath: string;
2982
+ themeAccess: string;
2983
+ hex: string;
2984
+ };
2985
+ "gds.color.lightBlue.80": {
2986
+ tokenPath: string;
2987
+ themeAccess: string;
2988
+ hex: string;
2989
+ };
2990
+ "gds.color.lightBlue.90": {
2991
+ tokenPath: string;
2992
+ themeAccess: string;
2993
+ hex: string;
2994
+ };
2995
+ "gds.color.lightBlue.95": {
2996
+ tokenPath: string;
2997
+ themeAccess: string;
2998
+ hex: string;
2999
+ };
3000
+ "gds.color.green.5": {
3001
+ tokenPath: string;
3002
+ themeAccess: string;
3003
+ hex: string;
3004
+ };
3005
+ "gds.color.green.10": {
3006
+ tokenPath: string;
3007
+ themeAccess: string;
3008
+ hex: string;
3009
+ };
3010
+ "gds.color.green.20": {
3011
+ tokenPath: string;
3012
+ themeAccess: string;
3013
+ hex: string;
3014
+ };
3015
+ "gds.color.green.30": {
3016
+ tokenPath: string;
3017
+ themeAccess: string;
3018
+ hex: string;
3019
+ };
3020
+ "gds.color.green.40": {
3021
+ tokenPath: string;
3022
+ themeAccess: string;
3023
+ hex: string;
3024
+ };
3025
+ "gds.color.green.50": {
3026
+ tokenPath: string;
3027
+ themeAccess: string;
3028
+ hex: string;
3029
+ };
3030
+ "gds.color.green.60": {
3031
+ tokenPath: string;
3032
+ themeAccess: string;
3033
+ hex: string;
3034
+ };
3035
+ "gds.color.green.70": {
3036
+ tokenPath: string;
3037
+ themeAccess: string;
3038
+ hex: string;
3039
+ };
3040
+ "gds.color.green.80": {
3041
+ tokenPath: string;
3042
+ themeAccess: string;
3043
+ hex: string;
3044
+ };
3045
+ "gds.color.green.90": {
3046
+ tokenPath: string;
3047
+ themeAccess: string;
3048
+ hex: string;
3049
+ };
3050
+ "gds.color.green.95": {
3051
+ tokenPath: string;
3052
+ themeAccess: string;
3053
+ hex: string;
3054
+ };
3055
+ "gds.color.teal.5": {
3056
+ tokenPath: string;
3057
+ themeAccess: string;
3058
+ hex: string;
3059
+ };
3060
+ "gds.color.teal.10": {
3061
+ tokenPath: string;
3062
+ themeAccess: string;
3063
+ hex: string;
3064
+ };
3065
+ "gds.color.teal.20": {
3066
+ tokenPath: string;
3067
+ themeAccess: string;
3068
+ hex: string;
3069
+ };
3070
+ "gds.color.teal.30": {
3071
+ tokenPath: string;
3072
+ themeAccess: string;
3073
+ hex: string;
3074
+ };
3075
+ "gds.color.teal.40": {
3076
+ tokenPath: string;
3077
+ themeAccess: string;
3078
+ hex: string;
3079
+ };
3080
+ "gds.color.teal.50": {
3081
+ tokenPath: string;
3082
+ themeAccess: string;
3083
+ hex: string;
3084
+ };
3085
+ "gds.color.teal.60": {
3086
+ tokenPath: string;
3087
+ themeAccess: string;
3088
+ hex: string;
3089
+ };
3090
+ "gds.color.teal.70": {
3091
+ tokenPath: string;
3092
+ themeAccess: string;
3093
+ hex: string;
3094
+ };
3095
+ "gds.color.teal.80": {
3096
+ tokenPath: string;
3097
+ themeAccess: string;
3098
+ hex: string;
3099
+ };
3100
+ "gds.color.teal.90": {
3101
+ tokenPath: string;
3102
+ themeAccess: string;
3103
+ hex: string;
3104
+ };
3105
+ "gds.color.teal.95": {
3106
+ tokenPath: string;
3107
+ themeAccess: string;
3108
+ hex: string;
3109
+ };
3110
+ "gds.color.pink.5": {
3111
+ tokenPath: string;
3112
+ themeAccess: string;
3113
+ hex: string;
3114
+ };
3115
+ "gds.color.pink.10": {
3116
+ tokenPath: string;
3117
+ themeAccess: string;
3118
+ hex: string;
3119
+ };
3120
+ "gds.color.pink.20": {
3121
+ tokenPath: string;
3122
+ themeAccess: string;
3123
+ hex: string;
3124
+ };
3125
+ "gds.color.pink.30": {
3126
+ tokenPath: string;
3127
+ themeAccess: string;
3128
+ hex: string;
3129
+ };
3130
+ "gds.color.pink.40": {
3131
+ tokenPath: string;
3132
+ themeAccess: string;
3133
+ hex: string;
3134
+ };
3135
+ "gds.color.pink.50": {
3136
+ tokenPath: string;
3137
+ themeAccess: string;
3138
+ hex: string;
3139
+ };
3140
+ "gds.color.pink.60": {
3141
+ tokenPath: string;
3142
+ themeAccess: string;
3143
+ hex: string;
3144
+ };
3145
+ "gds.color.pink.70": {
3146
+ tokenPath: string;
3147
+ themeAccess: string;
3148
+ hex: string;
3149
+ };
3150
+ "gds.color.pink.80": {
3151
+ tokenPath: string;
3152
+ themeAccess: string;
3153
+ hex: string;
3154
+ };
3155
+ "gds.color.pink.90": {
3156
+ tokenPath: string;
3157
+ themeAccess: string;
3158
+ hex: string;
3159
+ };
3160
+ "gds.color.pink.95": {
3161
+ tokenPath: string;
3162
+ themeAccess: string;
3163
+ hex: string;
3164
+ };
3165
+ "gds.color.purple.5": {
3166
+ tokenPath: string;
3167
+ themeAccess: string;
3168
+ hex: string;
3169
+ };
3170
+ "gds.color.purple.10": {
3171
+ tokenPath: string;
3172
+ themeAccess: string;
3173
+ hex: string;
3174
+ };
3175
+ "gds.color.purple.20": {
3176
+ tokenPath: string;
3177
+ themeAccess: string;
3178
+ hex: string;
3179
+ };
3180
+ "gds.color.purple.30": {
3181
+ tokenPath: string;
3182
+ themeAccess: string;
3183
+ hex: string;
3184
+ };
3185
+ "gds.color.purple.40": {
3186
+ tokenPath: string;
3187
+ themeAccess: string;
3188
+ hex: string;
3189
+ };
3190
+ "gds.color.purple.50": {
3191
+ tokenPath: string;
3192
+ themeAccess: string;
3193
+ hex: string;
3194
+ };
3195
+ "gds.color.purple.60": {
3196
+ tokenPath: string;
3197
+ themeAccess: string;
3198
+ hex: string;
3199
+ };
3200
+ "gds.color.purple.70": {
3201
+ tokenPath: string;
3202
+ themeAccess: string;
3203
+ hex: string;
3204
+ };
3205
+ "gds.color.purple.80": {
3206
+ tokenPath: string;
3207
+ themeAccess: string;
3208
+ hex: string;
3209
+ };
3210
+ "gds.color.purple.90": {
3211
+ tokenPath: string;
3212
+ themeAccess: string;
3213
+ hex: string;
3214
+ };
3215
+ "gds.color.purple.95": {
3216
+ tokenPath: string;
3217
+ themeAccess: string;
3218
+ hex: string;
3219
+ };
3220
+ };
3221
+ hexIndex: {
3222
+ $comment: string;
3223
+ "#F8F7F5": string;
3224
+ "#FFFFFF": string;
3225
+ "#FAF9F9": string;
3226
+ "#FFB800": string;
3227
+ "#F29100": string;
3228
+ "#FFF7E5": string;
3229
+ "#E5E5E5": string;
3230
+ "#CECECE": string;
3231
+ "#D21C1C": string;
3232
+ "#BD1919": string;
3233
+ "#FDEDED": string;
3234
+ "#F7C5C5": string;
3235
+ "#34A853": string;
3236
+ "#1F843A": string;
3237
+ "#EFFCF2": string;
3238
+ "#C9E6CA": string;
3239
+ "#FF8700": string;
3240
+ "#CD4800": string;
3241
+ "#FFF8EF": string;
3242
+ "#FFDBB2": string;
3243
+ "#0069B4": string;
3244
+ "#00476E": string;
3245
+ "#E3F6FF": string;
3246
+ "#D1EFFD": string;
3247
+ "#202020": string;
3248
+ "#000000": string;
3249
+ "#A3A3A3": string;
3250
+ "#474747": string;
3251
+ "#838383": string;
3252
+ "#278CBF": string;
3253
+ "#53B7E8": string;
3254
+ "#8F8F8F": string;
3255
+ "#171717": string;
3256
+ "#E0E0E0": string;
3257
+ "#C1C1C1": string;
3258
+ "#6D6D6D": string;
3259
+ };
3260
+ };
3261
+ readonly spacing: {
3262
+ $schema: string;
3263
+ $comment: string;
3264
+ $usage: {
3265
+ keyQuestion: string;
3266
+ lookupSteps: string[];
3267
+ criticalRules: string[];
3268
+ };
3269
+ spacing: {
3270
+ $comment: string;
3271
+ "gds.spacing.none": {
3272
+ tokenPath: string;
3273
+ cssVar: string;
3274
+ themeAccess: string;
3275
+ value: string;
3276
+ };
3277
+ "gds.spacing.xs": {
3278
+ tokenPath: string;
3279
+ cssVar: string;
3280
+ themeAccess: string;
3281
+ value: string;
3282
+ };
3283
+ "gds.spacing.sm": {
3284
+ tokenPath: string;
3285
+ cssVar: string;
3286
+ themeAccess: string;
3287
+ value: string;
3288
+ };
3289
+ "gds.spacing.md": {
3290
+ tokenPath: string;
3291
+ cssVar: string;
3292
+ themeAccess: string;
3293
+ value: string;
3294
+ };
3295
+ "gds.spacing.lg": {
3296
+ tokenPath: string;
3297
+ cssVar: string;
3298
+ themeAccess: string;
3299
+ value: string;
3300
+ };
3301
+ "gds.spacing.xl": {
3302
+ tokenPath: string;
3303
+ cssVar: string;
3304
+ themeAccess: string;
3305
+ value: string;
3306
+ };
3307
+ "gds.spacing.xxl": {
3308
+ tokenPath: string;
3309
+ cssVar: string;
3310
+ themeAccess: string;
3311
+ value: string;
3312
+ };
3313
+ };
3314
+ space: {
3315
+ $comment: string;
3316
+ "gds.space.0": {
3317
+ tokenPath: string;
3318
+ cssVar: string;
3319
+ themeAccess: string;
3320
+ value: string;
3321
+ };
3322
+ "gds.space.050": {
3323
+ tokenPath: string;
3324
+ cssVar: string;
3325
+ themeAccess: string;
3326
+ value: string;
3327
+ };
3328
+ "gds.space.100": {
3329
+ tokenPath: string;
3330
+ cssVar: string;
3331
+ themeAccess: string;
3332
+ value: string;
3333
+ };
3334
+ "gds.space.150": {
3335
+ tokenPath: string;
3336
+ cssVar: string;
3337
+ themeAccess: string;
3338
+ value: string;
3339
+ };
3340
+ "gds.space.200": {
3341
+ tokenPath: string;
3342
+ cssVar: string;
3343
+ themeAccess: string;
3344
+ value: string;
3345
+ };
3346
+ "gds.space.300": {
3347
+ tokenPath: string;
3348
+ cssVar: string;
3349
+ themeAccess: string;
3350
+ value: string;
3351
+ };
3352
+ "gds.space.400": {
3353
+ tokenPath: string;
3354
+ cssVar: string;
3355
+ themeAccess: string;
3356
+ value: string;
3357
+ };
3358
+ "gds.space.500": {
3359
+ tokenPath: string;
3360
+ cssVar: string;
3361
+ themeAccess: string;
3362
+ value: string;
3363
+ };
3364
+ "gds.space.600": {
3365
+ tokenPath: string;
3366
+ cssVar: string;
3367
+ themeAccess: string;
3368
+ value: string;
3369
+ };
3370
+ "gds.space.700": {
3371
+ tokenPath: string;
3372
+ cssVar: string;
3373
+ themeAccess: string;
3374
+ value: string;
3375
+ };
3376
+ "gds.space.800": {
3377
+ tokenPath: string;
3378
+ cssVar: string;
3379
+ themeAccess: string;
3380
+ value: string;
3381
+ };
3382
+ "gds.space.900": {
3383
+ tokenPath: string;
3384
+ cssVar: string;
3385
+ themeAccess: string;
3386
+ value: string;
3387
+ };
3388
+ "gds.space.1000": {
3389
+ tokenPath: string;
3390
+ cssVar: string;
3391
+ themeAccess: string;
3392
+ value: string;
3393
+ };
3394
+ };
3395
+ scale: {
3396
+ $comment: string;
3397
+ "gds.scale.050": {
3398
+ tokenPath: string;
3399
+ cssVar: string;
3400
+ themeAccess: string;
3401
+ value: string;
3402
+ };
3403
+ "gds.scale.100": {
3404
+ tokenPath: string;
3405
+ cssVar: string;
3406
+ themeAccess: string;
3407
+ value: string;
3408
+ };
3409
+ "gds.scale.200": {
3410
+ tokenPath: string;
3411
+ cssVar: string;
3412
+ themeAccess: string;
3413
+ value: string;
3414
+ };
3415
+ "gds.scale.300": {
3416
+ tokenPath: string;
3417
+ cssVar: string;
3418
+ themeAccess: string;
3419
+ value: string;
3420
+ };
3421
+ "gds.scale.400": {
3422
+ tokenPath: string;
3423
+ cssVar: string;
3424
+ themeAccess: string;
3425
+ value: string;
3426
+ };
3427
+ "gds.scale.500": {
3428
+ tokenPath: string;
3429
+ cssVar: string;
3430
+ themeAccess: string;
3431
+ value: string;
3432
+ };
3433
+ };
3434
+ pxIndex: {
3435
+ $comment: string;
3436
+ "0": {
3437
+ preferred: string;
3438
+ aliases: string[];
3439
+ };
3440
+ "4px": {
3441
+ preferred: string;
3442
+ aliases: string[];
3443
+ };
3444
+ "8px": {
3445
+ preferred: string;
3446
+ aliases: string[];
3447
+ };
3448
+ "12px": {
3449
+ preferred: string;
3450
+ aliases: never[];
3451
+ };
3452
+ "16px": {
3453
+ preferred: string;
3454
+ aliases: string[];
3455
+ };
3456
+ "24px": {
3457
+ preferred: string;
3458
+ aliases: string[];
3459
+ };
3460
+ "32px": {
3461
+ preferred: string;
3462
+ aliases: string[];
3463
+ };
3464
+ "40px": {
3465
+ preferred: string;
3466
+ aliases: string[];
3467
+ };
3468
+ "48px": {
3469
+ preferred: string;
3470
+ aliases: never[];
3471
+ };
3472
+ "56px": {
3473
+ preferred: string;
3474
+ aliases: never[];
3475
+ };
3476
+ "64px": {
3477
+ preferred: string;
3478
+ aliases: never[];
3479
+ };
3480
+ "72px": {
3481
+ preferred: string;
3482
+ aliases: never[];
3483
+ };
3484
+ "80px": {
3485
+ preferred: string;
3486
+ aliases: never[];
3487
+ };
3488
+ };
3489
+ scaleDecisionGuide: {
3490
+ $comment: string;
3491
+ "layout padding/margin/gap (page/section level)": string;
3492
+ "layout >40px gap or padding": string;
3493
+ "component internal padding/gap": string;
3494
+ "12px (no semantic alias)": string;
3495
+ "unmatched px value": string;
3496
+ };
3497
+ };
3498
+ readonly radius: {
3499
+ $schema: string;
3500
+ $comment: string;
3501
+ $usage: {
3502
+ keyQuestion: string;
3503
+ lookupSteps: string[];
3504
+ criticalRules: string[];
3505
+ };
3506
+ radius: {
3507
+ "gds.border.radius": {
3508
+ tokenPath: string;
3509
+ cssVar: string;
3510
+ themeAccess: string;
3511
+ value: string;
3512
+ description: string;
3513
+ };
3514
+ "gds.border.radius.xs": {
3515
+ tokenPath: string;
3516
+ cssVar: string;
3517
+ themeAccess: string;
3518
+ value: string;
3519
+ description: string;
3520
+ };
3521
+ "gds.border.radius.sm": {
3522
+ tokenPath: string;
3523
+ cssVar: string;
3524
+ themeAccess: string;
3525
+ value: string;
3526
+ description: string;
3527
+ };
3528
+ "gds.border.radius.default": {
3529
+ tokenPath: string;
3530
+ cssVar: string;
3531
+ themeAccess: string;
3532
+ value: string;
3533
+ description: string;
3534
+ };
3535
+ "gds.border.radius.md": {
3536
+ tokenPath: string;
3537
+ cssVar: string;
3538
+ themeAccess: string;
3539
+ value: string;
3540
+ description: string;
3541
+ };
3542
+ "gds.border.radius.lg": {
3543
+ tokenPath: string;
3544
+ cssVar: string;
3545
+ themeAccess: string;
3546
+ value: string;
3547
+ description: string;
3548
+ };
3549
+ "gds.border.radius.xl": {
3550
+ tokenPath: string;
3551
+ cssVar: string;
3552
+ themeAccess: string;
3553
+ value: string;
3554
+ description: string;
3555
+ };
3556
+ "gds.border.radius.round": {
3557
+ tokenPath: string;
3558
+ cssVar: string;
3559
+ themeAccess: string;
3560
+ value: string;
3561
+ description: string;
3562
+ };
3563
+ };
3564
+ pxIndex: {
3565
+ $comment: string;
3566
+ "0": string;
3567
+ "0px": string;
3568
+ "2px": string;
3569
+ "4px": string;
3570
+ "6px": string;
3571
+ "8px": string;
3572
+ "16px": string;
3573
+ "32px": string;
3574
+ "9999px": string;
3575
+ };
3576
+ camelCaseSplitExamples: {
3577
+ $comment: string;
3578
+ borderRadius: string;
3579
+ borderRadiusXs: string;
3580
+ borderRadiusSm: string;
3581
+ borderRadiusDefault: string;
3582
+ borderRadiusMd: string;
3583
+ borderRadiusLg: string;
3584
+ borderRadiusXl: string;
3585
+ borderRadiusRound: string;
3586
+ };
3587
+ };
3588
+ readonly font: {
3589
+ $schema: string;
3590
+ $comment: string;
3591
+ $usage: {
3592
+ keyQuestion: string;
3593
+ lookupSteps: string[];
3594
+ criticalRules: string[];
3595
+ };
3596
+ family: {
3597
+ "gds.font.family": {
3598
+ tokenPath: string;
3599
+ themeAccess: string;
3600
+ value: string;
3601
+ };
3602
+ "gds.font.family.code": {
3603
+ tokenPath: string;
3604
+ themeAccess: string;
3605
+ value: string;
3606
+ };
3607
+ };
3608
+ weight: {
3609
+ $comment: string;
3610
+ "gds.font.weight.light": {
3611
+ tokenPath: string;
3612
+ themeAccess: string;
3613
+ value: number;
3614
+ };
3615
+ "gds.font.weight.normal": {
3616
+ tokenPath: string;
3617
+ themeAccess: string;
3618
+ value: number;
3619
+ };
3620
+ "gds.font.weight.medium": {
3621
+ tokenPath: string;
3622
+ themeAccess: string;
3623
+ value: number;
3624
+ };
3625
+ "gds.font.weight.bold": {
3626
+ tokenPath: string;
3627
+ themeAccess: string;
3628
+ value: number;
3629
+ };
3630
+ };
3631
+ size: {
3632
+ $comment: string;
3633
+ "gds.font.size.xl": {
3634
+ tokenPath: string;
3635
+ themeAccess: string;
3636
+ value: string;
3637
+ role: string;
3638
+ };
3639
+ "gds.font.size.lg": {
3640
+ tokenPath: string;
3641
+ themeAccess: string;
3642
+ value: string;
3643
+ role: string;
3644
+ };
3645
+ "gds.font.size.md": {
3646
+ tokenPath: string;
3647
+ themeAccess: string;
3648
+ value: string;
3649
+ role: string;
3650
+ };
3651
+ "gds.font.size.sm": {
3652
+ tokenPath: string;
3653
+ themeAccess: string;
3654
+ value: string;
3655
+ role: string;
3656
+ };
3657
+ "gds.font.size.xs": {
3658
+ tokenPath: string;
3659
+ themeAccess: string;
3660
+ value: string;
3661
+ role: string;
3662
+ };
3663
+ "gds.font.size.h1": {
3664
+ tokenPath: string;
3665
+ themeAccess: string;
3666
+ value: string;
3667
+ role: string;
3668
+ };
3669
+ "gds.font.size.h2": {
3670
+ tokenPath: string;
3671
+ themeAccess: string;
3672
+ value: string;
3673
+ role: string;
3674
+ };
3675
+ "gds.font.size.h3": {
3676
+ tokenPath: string;
3677
+ themeAccess: string;
3678
+ value: string;
3679
+ role: string;
3680
+ };
3681
+ "gds.font.size.h4": {
3682
+ tokenPath: string;
3683
+ themeAccess: string;
3684
+ value: string;
3685
+ role: string;
3686
+ };
3687
+ "gds.font.size.h5": {
3688
+ tokenPath: string;
3689
+ themeAccess: string;
3690
+ value: string;
3691
+ role: string;
3692
+ };
3693
+ "gds.font.size.h6": {
3694
+ tokenPath: string;
3695
+ themeAccess: string;
3696
+ value: string;
3697
+ role: string;
3698
+ };
3699
+ "gds.font.size.p": {
3700
+ tokenPath: string;
3701
+ themeAccess: string;
3702
+ value: string;
3703
+ role: string;
3704
+ };
3705
+ "gds.font.size.small": {
3706
+ tokenPath: string;
3707
+ themeAccess: string;
3708
+ value: string;
3709
+ role: string;
3710
+ };
3711
+ "gds.font.size.caption": {
3712
+ tokenPath: string;
3713
+ themeAccess: string;
3714
+ value: string;
3715
+ role: string;
3716
+ };
3717
+ "gds.font.size.header": {
3718
+ tokenPath: string;
3719
+ themeAccess: string;
3720
+ value: string;
3721
+ role: string;
3722
+ };
3723
+ "gds.font.size.code": {
3724
+ tokenPath: string;
3725
+ themeAccess: string;
3726
+ value: string;
3727
+ role: string;
3728
+ };
3729
+ "gds.font.size.kbd": {
3730
+ tokenPath: string;
3731
+ themeAccess: string;
3732
+ value: string;
3733
+ role: string;
3734
+ };
3735
+ "gds.font.size.sub": {
3736
+ tokenPath: string;
3737
+ themeAccess: string;
3738
+ value: string;
3739
+ role: string;
3740
+ };
3741
+ "gds.font.size.sup": {
3742
+ tokenPath: string;
3743
+ themeAccess: string;
3744
+ value: string;
3745
+ role: string;
3746
+ };
3747
+ };
3748
+ lineHeight: {
3749
+ $comment: string;
3750
+ "gds.font.line.height.xl": {
3751
+ tokenPath: string;
3752
+ themeAccess: string;
3753
+ value: string;
3754
+ };
3755
+ "gds.font.line.height.lg": {
3756
+ tokenPath: string;
3757
+ themeAccess: string;
3758
+ value: string;
3759
+ };
3760
+ "gds.font.line.height.md": {
3761
+ tokenPath: string;
3762
+ themeAccess: string;
3763
+ value: string;
3764
+ };
3765
+ "gds.font.line.height.sm": {
3766
+ tokenPath: string;
3767
+ themeAccess: string;
3768
+ value: string;
3769
+ };
3770
+ "gds.font.line.height.xs": {
3771
+ tokenPath: string;
3772
+ themeAccess: string;
3773
+ value: string;
3774
+ };
3775
+ "gds.font.line.height.h1": {
3776
+ tokenPath: string;
3777
+ themeAccess: string;
3778
+ value: string;
3779
+ };
3780
+ "gds.font.line.height.h2": {
3781
+ tokenPath: string;
3782
+ themeAccess: string;
3783
+ value: string;
3784
+ };
3785
+ "gds.font.line.height.h3": {
3786
+ tokenPath: string;
3787
+ themeAccess: string;
3788
+ value: string;
3789
+ };
3790
+ "gds.font.line.height.h4": {
3791
+ tokenPath: string;
3792
+ themeAccess: string;
3793
+ value: string;
3794
+ };
3795
+ "gds.font.line.height.h5": {
3796
+ tokenPath: string;
3797
+ themeAccess: string;
3798
+ value: string;
3799
+ };
3800
+ "gds.font.line.height.h6": {
3801
+ tokenPath: string;
3802
+ themeAccess: string;
3803
+ value: string;
3804
+ };
3805
+ "gds.font.line.height.p": {
3806
+ tokenPath: string;
3807
+ themeAccess: string;
3808
+ value: string;
3809
+ };
3810
+ "gds.font.line.height.small": {
3811
+ tokenPath: string;
3812
+ themeAccess: string;
3813
+ value: string;
3814
+ };
3815
+ "gds.font.line.height.caption": {
3816
+ tokenPath: string;
3817
+ themeAccess: string;
3818
+ value: string;
3819
+ };
3820
+ "gds.font.line.height.header": {
3821
+ tokenPath: string;
3822
+ themeAccess: string;
3823
+ value: string;
3824
+ };
3825
+ "gds.font.line.height.code": {
3826
+ tokenPath: string;
3827
+ themeAccess: string;
3828
+ value: string;
3829
+ };
3830
+ "gds.font.line.height.kbd": {
3831
+ tokenPath: string;
3832
+ themeAccess: string;
3833
+ value: string;
3834
+ };
3835
+ "gds.font.line.height.sub": {
3836
+ tokenPath: string;
3837
+ themeAccess: string;
3838
+ value: string;
3839
+ };
3840
+ "gds.font.line.height.sup": {
3841
+ tokenPath: string;
3842
+ themeAccess: string;
3843
+ value: string;
3844
+ };
3845
+ };
3846
+ valueIndex: {
3847
+ $comment: string;
3848
+ fontSize: {
3849
+ "64px": string;
3850
+ "48px": string;
3851
+ "40px": string;
3852
+ "36px": string;
3853
+ "34px": string;
3854
+ "32px": string;
3855
+ "28px": string;
3856
+ "24px": string;
3857
+ "20px": string;
3858
+ "18px": string;
3859
+ "16px": string;
3860
+ "14px": string;
3861
+ "12px": string;
3862
+ "8px": string;
3863
+ };
3864
+ fontWeight: {
3865
+ "300": string;
3866
+ "400": string;
3867
+ "500": string;
3868
+ "700": string;
3869
+ "800": string;
3870
+ "900": string;
3871
+ };
3872
+ lineHeight: {
3873
+ "77px": string;
3874
+ "58px": string;
3875
+ "56px": string;
3876
+ "48px": string;
3877
+ "44px": string;
3878
+ "38px": string;
3879
+ "36px": string;
3880
+ "34px": string;
3881
+ "32px": string;
3882
+ "28px": string;
3883
+ "26px": string;
3884
+ "24px": string;
3885
+ "20px": string;
3886
+ "16px": string;
3887
+ };
3888
+ };
3889
+ camelCaseSplitExamples: {
3890
+ $comment: string;
3891
+ fontSizeH5: string;
3892
+ fontSizeKbd: string;
3893
+ lineHeightH5: string;
3894
+ lineHeightKbd: string;
3895
+ fontWeightBold: string;
3896
+ fontWeightMedium: string;
3897
+ fontWeightNormal: string;
3898
+ fontFamily: string;
3899
+ };
3900
+ knownGaps: {
3901
+ $comment: string;
3902
+ "34px lineHeight": string;
3903
+ "fontWeight 800/900": string;
3904
+ };
3905
+ };
3906
+ readonly shadow: {
3907
+ $schema: string;
3908
+ $comment: string;
3909
+ $usage: {
3910
+ keyQuestion: string;
3911
+ lookupSteps: string[];
3912
+ criticalRules: string[];
3913
+ };
3914
+ light: {
3915
+ $comment: string;
3916
+ "Shadow/Light Mode/shadow 1": {
3917
+ tokenPath: string;
3918
+ cssVar: string;
3919
+ themeAccess: string;
3920
+ figmaValue: string;
3921
+ tokenValue: string;
3922
+ elevation: string;
3923
+ drift: string;
3924
+ };
3925
+ "Shadow/Light Mode/shadow 2": {
3926
+ tokenPath: string;
3927
+ cssVar: string;
3928
+ themeAccess: string;
3929
+ figmaValue: string;
3930
+ tokenValue: string;
3931
+ elevation: string;
3932
+ drift: string;
3933
+ };
3934
+ "Shadow/Light Mode/shadow 3": {
3935
+ tokenPath: string;
3936
+ cssVar: string;
3937
+ themeAccess: string;
3938
+ figmaValue: string;
3939
+ tokenValue: string;
3940
+ elevation: string;
3941
+ drift: string;
3942
+ };
3943
+ "Shadow/Light Mode/shadow 4": {
3944
+ tokenPath: string;
3945
+ cssVar: string;
3946
+ themeAccess: string;
3947
+ figmaValue: string;
3948
+ tokenValue: string;
3949
+ elevation: string;
3950
+ drift: string;
3951
+ };
3952
+ "Shadow/Light Mode/shadow 5": {
3953
+ tokenPath: string;
3954
+ cssVar: string;
3955
+ themeAccess: string;
3956
+ figmaValue: string;
3957
+ tokenValue: string;
3958
+ elevation: string;
3959
+ drift: string;
3960
+ };
3961
+ };
3962
+ dark: {
3963
+ $comment: string;
3964
+ "Shadow/Dark Mode/shadow 1": {
3965
+ tokenPath: null;
3966
+ figmaValue: string;
3967
+ elevation: string;
3968
+ note: string;
3969
+ };
3970
+ "Shadow/Dark Mode/shadow 2": {
3971
+ tokenPath: null;
3972
+ figmaValue: string;
3973
+ elevation: string;
3974
+ note: string;
3975
+ };
3976
+ "Shadow/Dark Mode/shadow 3": {
3977
+ tokenPath: null;
3978
+ figmaValue: string;
3979
+ elevation: string;
3980
+ note: string;
3981
+ };
3982
+ "Shadow/Dark Mode/shadow 4": {
3983
+ tokenPath: null;
3984
+ figmaValue: string;
3985
+ elevation: string;
3986
+ note: string;
3987
+ };
3988
+ "Shadow/Dark Mode/shadow 5": {
3989
+ tokenPath: null;
3990
+ figmaValue: string;
3991
+ elevation: string;
3992
+ note: string;
3993
+ };
3994
+ };
3995
+ semantic: {
3996
+ $comment: string;
3997
+ modal: {
3998
+ tokenPath: string;
3999
+ cssVar: string;
4000
+ themeAccess: string;
4001
+ value: string;
4002
+ usedBy: string[];
4003
+ };
4004
+ "modal.content": {
4005
+ tokenPath: string;
4006
+ cssVar: string;
4007
+ themeAccess: string;
4008
+ value: string;
4009
+ usedBy: string[];
4010
+ };
4011
+ snackbar: {
4012
+ tokenPath: string;
4013
+ cssVar: string;
4014
+ themeAccess: string;
4015
+ value: string;
4016
+ usedBy: string[];
4017
+ };
4018
+ inlineNotification: {
4019
+ tokenPath: string;
4020
+ cssVar: string;
4021
+ themeAccess: string;
4022
+ value: string;
4023
+ usedBy: string[];
4024
+ };
4025
+ };
4026
+ valueIndex: {
4027
+ $comment: string;
4028
+ "0px 2px 1px -1px rgba(0, 0, 0, 0.20), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12)": string;
4029
+ "0px 4px 5px -1px rgba(0, 0, 0, 0.20)": string;
4030
+ "0px 8px 15px 1px rgba(0, 0, 0, 0.20)": string;
4031
+ "0px 12px 28px 5px rgba(0, 0, 0, 0.25)": string;
4032
+ "0px 16px 38px 7px rgba(0, 0, 0, 0.25)": string;
4033
+ "0 4px 12px rgba(0, 0, 0, 0.10)": string;
4034
+ };
4035
+ elevationDecisionGuide: {
4036
+ $comment: string;
4037
+ "card / tile / resting surface": string;
4038
+ "dropdown / popover / tooltip": string;
4039
+ "drawer / panel / side sheet": string;
4040
+ "dialog / modal overlay": string;
4041
+ "floating action button / prominent card": string;
4042
+ "fullscreen overlay / maximum elevation": string;
4043
+ "snackbar / toast": string;
4044
+ "inline notification banner": string;
4045
+ "dark mode \u2014 any level": string;
4046
+ };
4047
+ designDrift: {
4048
+ $comment: string;
4049
+ "level 1": {
4050
+ figma: string;
4051
+ token: string;
4052
+ };
4053
+ "level 2": {
4054
+ figma: string;
4055
+ token: string;
4056
+ };
4057
+ "level 3": {
4058
+ figma: string;
4059
+ token: string;
4060
+ };
4061
+ };
4062
+ };
4063
+ readonly icon: {
4064
+ $schema: string;
4065
+ $comment: string;
4066
+ $usage: {
4067
+ keyQuestion: string;
4068
+ lookupSteps: string[];
4069
+ criticalRules: string[];
4070
+ };
4071
+ icons: {
4072
+ cross: {
4073
+ figmaName: string;
4074
+ figmaCategory: string;
4075
+ figmaPath: string;
4076
+ componentImport: string;
4077
+ note: string;
4078
+ };
4079
+ check: {
4080
+ figmaName: string;
4081
+ figmaCategory: string;
4082
+ figmaPath: string;
4083
+ componentImport: string;
4084
+ };
4085
+ arrowDown: {
4086
+ figmaName: string;
4087
+ figmaCategory: string;
4088
+ figmaPath: string;
4089
+ componentImport: string;
4090
+ };
4091
+ arrowRight: {
4092
+ figmaName: string;
4093
+ figmaCategory: string;
4094
+ figmaPath: string;
4095
+ componentImport: string;
4096
+ };
4097
+ arrowLeft: {
4098
+ figmaName: string;
4099
+ figmaCategory: string;
4100
+ figmaPath: string;
4101
+ componentImport: string;
4102
+ };
4103
+ arrowForward: {
4104
+ figmaName: string;
4105
+ figmaCategory: string;
4106
+ figmaPath: string;
4107
+ componentImport: string;
4108
+ };
4109
+ keyboardArrowDown: {
4110
+ figmaName: string;
4111
+ figmaCategory: string;
4112
+ figmaPath: string;
4113
+ componentImport: string;
4114
+ };
4115
+ keyboardArrowUp: {
4116
+ figmaName: string;
4117
+ figmaCategory: string;
4118
+ figmaPath: string;
4119
+ componentImport: string;
4120
+ };
4121
+ home: {
4122
+ figmaName: string;
4123
+ figmaCategory: string;
4124
+ figmaPath: string;
4125
+ componentImport: string;
4126
+ };
4127
+ mobileMenu: {
4128
+ figmaName: string;
4129
+ figmaCategory: string;
4130
+ figmaPath: string;
4131
+ componentImport: string;
4132
+ };
4133
+ search: {
4134
+ figmaName: string;
4135
+ figmaCategory: string;
4136
+ figmaPath: string;
4137
+ componentImport: string;
4138
+ };
4139
+ edit: {
4140
+ figmaName: string;
4141
+ figmaCategory: string;
4142
+ figmaPath: string;
4143
+ componentImport: string;
4144
+ };
4145
+ favorite: {
4146
+ figmaName: string;
4147
+ figmaCategory: string;
4148
+ figmaPath: string;
4149
+ componentImport: string;
4150
+ };
4151
+ favoriteOutlined: {
4152
+ figmaName: string;
4153
+ figmaCategory: string;
4154
+ figmaPath: string;
4155
+ componentImport: string;
4156
+ };
4157
+ deleteOutlined: {
4158
+ figmaName: string;
4159
+ figmaCategory: string;
4160
+ figmaPath: string;
4161
+ componentImport: string;
4162
+ };
4163
+ accountCircle: {
4164
+ figmaName: string;
4165
+ figmaCategory: string;
4166
+ figmaPath: string;
4167
+ componentImport: string;
4168
+ };
4169
+ shoppingBag: {
4170
+ figmaName: string;
4171
+ figmaCategory: string;
4172
+ figmaPath: string;
4173
+ componentImport: string;
4174
+ };
4175
+ localShipping: {
4176
+ figmaName: string;
4177
+ figmaCategory: string;
4178
+ figmaPath: string;
4179
+ componentImport: string;
4180
+ };
4181
+ errorOutline: {
4182
+ figmaName: string;
4183
+ figmaCategory: string;
4184
+ figmaPath: string;
4185
+ componentImport: string;
4186
+ };
4187
+ star: {
4188
+ figmaName: string;
4189
+ figmaCategory: string;
4190
+ figmaPath: string;
4191
+ componentImport: string;
4192
+ };
4193
+ starOutlined: {
4194
+ figmaName: string;
4195
+ figmaCategory: string;
4196
+ figmaPath: string;
4197
+ componentImport: string;
4198
+ };
4199
+ starHalf: {
4200
+ figmaName: string;
4201
+ figmaCategory: string;
4202
+ figmaPath: string;
4203
+ componentImport: string;
4204
+ };
4205
+ minus: {
4206
+ figmaName: string;
4207
+ figmaCategory: string;
4208
+ figmaPath: string;
4209
+ componentImport: string;
4210
+ note: string;
4211
+ };
4212
+ plus: {
4213
+ figmaName: string;
4214
+ figmaCategory: string;
4215
+ figmaPath: string;
4216
+ componentImport: string;
4217
+ note: string;
4218
+ };
4219
+ filter: {
4220
+ figmaName: string;
4221
+ figmaCategory: string;
4222
+ figmaPath: string;
4223
+ componentImport: string;
4224
+ };
4225
+ paymentCard: {
4226
+ figmaName: string;
4227
+ figmaCategory: string;
4228
+ figmaPath: string;
4229
+ componentImport: string;
4230
+ };
4231
+ eye: {
4232
+ figmaName: string;
4233
+ figmaCategory: string;
4234
+ figmaPath: string;
4235
+ componentImport: string;
4236
+ note: string;
4237
+ };
4238
+ attachment: {
4239
+ figmaName: string;
4240
+ figmaCategory: string;
4241
+ figmaPath: string;
4242
+ componentImport: string;
4243
+ };
4244
+ upload: {
4245
+ figmaName: string;
4246
+ figmaCategory: string;
4247
+ figmaPath: string;
4248
+ componentImport: string;
4249
+ };
4250
+ folder: {
4251
+ figmaName: string;
4252
+ figmaCategory: string;
4253
+ figmaPath: string;
4254
+ componentImport: string;
4255
+ };
4256
+ folderOpen: {
4257
+ figmaName: string;
4258
+ figmaCategory: string;
4259
+ figmaPath: string;
4260
+ componentImport: string;
4261
+ };
4262
+ wifiTethering: {
4263
+ figmaName: string;
4264
+ figmaCategory: string;
4265
+ figmaPath: string;
4266
+ componentImport: string;
4267
+ };
4268
+ portrait: {
4269
+ figmaName: string;
4270
+ figmaCategory: string;
4271
+ figmaPath: string;
4272
+ componentImport: string;
4273
+ };
4274
+ volumeUp: {
4275
+ figmaName: string;
4276
+ figmaCategory: string;
4277
+ figmaPath: string;
4278
+ componentImport: string;
4279
+ };
4280
+ contentCopy: {
4281
+ figmaName: string;
4282
+ figmaCategory: string;
4283
+ figmaPath: string;
4284
+ componentImport: string;
4285
+ };
4286
+ thumbUp: {
4287
+ figmaName: string;
4288
+ figmaCategory: string;
4289
+ figmaPath: string;
4290
+ componentImport: string;
4291
+ note: string;
4292
+ };
4293
+ thumbDown: {
4294
+ figmaName: string;
4295
+ figmaCategory: string;
4296
+ figmaPath: string;
4297
+ componentImport: string;
4298
+ note: string;
4299
+ };
4300
+ thumbUpFilled: {
4301
+ figmaName: string;
4302
+ figmaCategory: string;
4303
+ figmaPath: string;
4304
+ componentImport: string;
4305
+ };
4306
+ thumbDownFilled: {
4307
+ figmaName: string;
4308
+ figmaCategory: string;
4309
+ figmaPath: string;
4310
+ componentImport: string;
4311
+ };
4312
+ fileCopy: {
4313
+ figmaName: string;
4314
+ figmaCategory: string;
4315
+ figmaPath: string;
4316
+ componentImport: string;
4317
+ };
4318
+ send: {
4319
+ figmaName: string;
4320
+ figmaCategory: string;
4321
+ figmaPath: string;
4322
+ componentImport: string;
4323
+ };
4324
+ chat: {
4325
+ figmaName: string;
4326
+ figmaCategory: string;
4327
+ figmaPath: string;
4328
+ componentImport: string;
4329
+ };
4330
+ chatBubble: {
4331
+ figmaName: string;
4332
+ figmaCategory: string;
4333
+ figmaPath: string;
4334
+ componentImport: string;
4335
+ };
4336
+ phone: {
4337
+ figmaName: string;
4338
+ figmaCategory: string;
4339
+ figmaPath: string;
4340
+ componentImport: string;
4341
+ };
4342
+ mic: {
4343
+ figmaName: string;
4344
+ figmaCategory: string;
4345
+ figmaPath: string;
4346
+ componentImport: string;
4347
+ };
4348
+ fullscreen: {
4349
+ figmaName: string;
4350
+ figmaCategory: string;
4351
+ figmaPath: string;
4352
+ componentImport: string;
4353
+ };
4354
+ fullscreenExit: {
4355
+ figmaName: string;
4356
+ figmaCategory: string;
4357
+ figmaPath: string;
4358
+ componentImport: string;
4359
+ };
4360
+ success: {
4361
+ figmaName: null;
4362
+ componentImport: string;
4363
+ note: string;
4364
+ };
4365
+ error: {
4366
+ figmaName: null;
4367
+ componentImport: string;
4368
+ note: string;
4369
+ };
4370
+ warning: {
4371
+ figmaName: null;
4372
+ componentImport: string;
4373
+ note: string;
4374
+ };
4375
+ info: {
4376
+ figmaName: null;
4377
+ componentImport: string;
4378
+ note: string;
4379
+ };
4380
+ dot: {
4381
+ figmaName: null;
4382
+ componentImport: string;
4383
+ note: string;
4384
+ };
4385
+ slash: {
4386
+ figmaName: null;
4387
+ componentImport: string;
4388
+ note: string;
4389
+ };
4390
+ ruler: {
4391
+ figmaName: null;
4392
+ componentImport: string;
4393
+ note: string;
4394
+ };
4395
+ processing: {
4396
+ figmaName: null;
4397
+ componentImport: string;
4398
+ note: string;
4399
+ };
4400
+ };
4401
+ figmaNameIndex: {
4402
+ $comment: string;
4403
+ close: string;
4404
+ check: string;
4405
+ arrow_downward: string;
4406
+ chevron_right: string;
4407
+ chevron_left: string;
4408
+ arrow_forward: string;
4409
+ keyboard_arrow_down: string;
4410
+ keyboard_arrow_up: string;
4411
+ home: string;
4412
+ menu: string;
4413
+ search: string;
4414
+ edit: string;
4415
+ favorite: string;
4416
+ favorite_border: string;
4417
+ delete_outline: string;
4418
+ account_circle: string;
4419
+ shopping_bag: string;
4420
+ local_shipping: string;
4421
+ error_outline: string;
4422
+ star: string;
4423
+ star_border: string;
4424
+ star_half: string;
4425
+ remove: string;
4426
+ add: string;
4427
+ filter_list: string;
4428
+ credit_card: string;
4429
+ visibility: string;
4430
+ attachment: string;
4431
+ upload: string;
4432
+ folder: string;
4433
+ folder_open: string;
4434
+ wifi_tethering: string;
4435
+ portrait: string;
4436
+ volume_up: string;
4437
+ content_copy: string;
4438
+ thumb_up_off_alt: string;
4439
+ thumb_down_off_alt: string;
4440
+ thumb_up: string;
4441
+ thumb_down: string;
4442
+ file_copy: string;
4443
+ send: string;
4444
+ chat: string;
4445
+ chat_bubble: string;
4446
+ phone: string;
4447
+ mic: string;
4448
+ fullscreen: string;
4449
+ fullscreen_exit: string;
4450
+ };
4451
+ stats: {
4452
+ total: number;
4453
+ mappedToFigma: number;
4454
+ customNoFigmaEquivalent: number;
4455
+ customIcons: string[];
4456
+ };
4457
+ };
4458
+ };