@spaced-out/ui-design-system 0.5.7-beta.3 → 0.5.7

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 (790) hide show
  1. package/.vscode/settings.json +3 -1
  2. package/CHANGELOG.md +19 -0
  3. package/babel.config.js +16 -3
  4. package/gulpfile.js +7 -17
  5. package/lib/components/Accordion/Accordion.js +39 -33
  6. package/lib/components/Accordion/AccordionGroup.js +7 -5
  7. package/lib/components/Accordion/index.d.ts +2 -2
  8. package/lib/components/Accordion/index.js +2 -2
  9. package/lib/components/Avatar/Avatar.d.ts +3 -3
  10. package/lib/components/Avatar/Avatar.js +85 -74
  11. package/lib/components/Avatar/index.d.ts +1 -1
  12. package/lib/components/Avatar/index.js +1 -1
  13. package/lib/components/AvatarGroup/AvatarGroup.d.ts +2 -2
  14. package/lib/components/AvatarGroup/AvatarGroup.js +39 -32
  15. package/lib/components/AvatarGroup/index.d.ts +1 -1
  16. package/lib/components/AvatarGroup/index.js +1 -1
  17. package/lib/components/Badge/Badge.d.ts +1 -1
  18. package/lib/components/Badge/Badge.js +30 -26
  19. package/lib/components/Badge/index.d.ts +1 -1
  20. package/lib/components/Badge/index.js +1 -1
  21. package/lib/components/BadgedIcon/BadgedIcon.d.ts +1 -1
  22. package/lib/components/BadgedIcon/BadgedIcon.js +28 -23
  23. package/lib/components/BadgedIcon/index.d.ts +1 -1
  24. package/lib/components/BadgedIcon/index.js +1 -1
  25. package/lib/components/Banner/Banner.d.ts +1 -1
  26. package/lib/components/Banner/Banner.js +27 -24
  27. package/lib/components/Banner/index.d.ts +1 -1
  28. package/lib/components/Banner/index.js +1 -1
  29. package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.d.ts +1 -1
  30. package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.js +7 -6
  31. package/lib/components/Breadcrumbs/BreadcrumbLink/index.d.ts +1 -1
  32. package/lib/components/Breadcrumbs/BreadcrumbLink/index.js +1 -1
  33. package/lib/components/Breadcrumbs/Breadcrumbs.d.ts +1 -1
  34. package/lib/components/Breadcrumbs/Breadcrumbs.js +18 -16
  35. package/lib/components/Breadcrumbs/index.d.ts +2 -2
  36. package/lib/components/Breadcrumbs/index.js +2 -2
  37. package/lib/components/Button/Button.d.ts +1 -1
  38. package/lib/components/Button/Button.js +85 -69
  39. package/lib/components/Button/index.d.ts +2 -2
  40. package/lib/components/Button/index.js +1 -1
  41. package/lib/components/ButtonDropdown/ButtonDropdown.d.ts +4 -4
  42. package/lib/components/ButtonDropdown/ButtonDropdown.js +94 -82
  43. package/lib/components/ButtonDropdown/SimpleButtonDropdown.d.ts +6 -6
  44. package/lib/components/ButtonDropdown/SimpleButtonDropdown.js +8 -6
  45. package/lib/components/ButtonDropdown/index.d.ts +2 -2
  46. package/lib/components/ButtonDropdown/index.js +2 -2
  47. package/lib/components/ButtonTabs/ButtonTab/ButtonTab.d.ts +1 -1
  48. package/lib/components/ButtonTabs/ButtonTab/ButtonTab.js +9 -7
  49. package/lib/components/ButtonTabs/ButtonTab/index.d.ts +1 -1
  50. package/lib/components/ButtonTabs/ButtonTab/index.js +1 -1
  51. package/lib/components/ButtonTabs/ButtonTabDropdown.d.ts +3 -3
  52. package/lib/components/ButtonTabs/ButtonTabDropdown.js +60 -51
  53. package/lib/components/ButtonTabs/ButtonTabs.d.ts +2 -2
  54. package/lib/components/ButtonTabs/ButtonTabs.js +12 -9
  55. package/lib/components/ButtonTabs/index.d.ts +2 -2
  56. package/lib/components/ButtonTabs/index.js +2 -2
  57. package/lib/components/Card/Card.js +38 -25
  58. package/lib/components/Card/index.d.ts +1 -1
  59. package/lib/components/Card/index.js +1 -1
  60. package/lib/components/Charts/ChartTooltip/index.d.ts +1 -1
  61. package/lib/components/Charts/ChartTooltip/index.js +2 -2
  62. package/lib/components/Charts/ChartWrapper/ChartWrapper.js +32 -24
  63. package/lib/components/Charts/ChartWrapper/index.d.ts +1 -1
  64. package/lib/components/Charts/ChartWrapper/index.js +1 -1
  65. package/lib/components/Charts/ColumnChart/ColumnChart.d.ts +2 -2
  66. package/lib/components/Charts/ColumnChart/ColumnChart.js +16 -14
  67. package/lib/components/Charts/ColumnChart/index.d.ts +1 -1
  68. package/lib/components/Charts/ColumnChart/index.js +1 -1
  69. package/lib/components/Charts/DonutChart/DonutChart.d.ts +2 -2
  70. package/lib/components/Charts/DonutChart/DonutChart.js +17 -15
  71. package/lib/components/Charts/DonutChart/index.d.ts +1 -1
  72. package/lib/components/Charts/DonutChart/index.js +1 -1
  73. package/lib/components/Charts/FunnelChart/FunnelChart.d.ts +2 -2
  74. package/lib/components/Charts/FunnelChart/FunnelChart.js +17 -15
  75. package/lib/components/Charts/FunnelChart/index.d.ts +1 -1
  76. package/lib/components/Charts/FunnelChart/index.js +1 -1
  77. package/lib/components/Charts/LineChart/LineChart.d.ts +2 -2
  78. package/lib/components/Charts/LineChart/LineChart.js +16 -14
  79. package/lib/components/Charts/LineChart/index.d.ts +1 -1
  80. package/lib/components/Charts/LineChart/index.js +1 -1
  81. package/lib/components/Charts/SankeyChart/SankeyChart.d.ts +2 -2
  82. package/lib/components/Charts/SankeyChart/SankeyChart.js +16 -14
  83. package/lib/components/Charts/SankeyChart/index.d.ts +1 -1
  84. package/lib/components/Charts/SankeyChart/index.js +1 -1
  85. package/lib/components/Charts/SpiderChart/SpiderChart.d.ts +2 -2
  86. package/lib/components/Charts/SpiderChart/SpiderChart.js +16 -14
  87. package/lib/components/Charts/SpiderChart/index.d.ts +1 -1
  88. package/lib/components/Charts/SpiderChart/index.js +1 -1
  89. package/lib/components/Charts/StackedBarChart/StackedBarChart.d.ts +2 -2
  90. package/lib/components/Charts/StackedBarChart/StackedBarChart.js +16 -14
  91. package/lib/components/Charts/StackedBarChart/index.d.ts +1 -1
  92. package/lib/components/Charts/StackedBarChart/index.js +1 -1
  93. package/lib/components/Charts/index.d.ts +9 -9
  94. package/lib/components/Charts/index.js +9 -9
  95. package/lib/components/ChatBubble/ChatBubble.d.ts +2 -2
  96. package/lib/components/ChatBubble/ChatBubble.js +60 -46
  97. package/lib/components/ChatBubble/index.d.ts +1 -1
  98. package/lib/components/ChatBubble/index.js +1 -1
  99. package/lib/components/Checkbox/Checkbox.d.ts +1 -1
  100. package/lib/components/Checkbox/Checkbox.js +45 -40
  101. package/lib/components/Checkbox/CheckboxGroup.d.ts +1 -1
  102. package/lib/components/Checkbox/CheckboxGroup.js +20 -16
  103. package/lib/components/Checkbox/index.d.ts +2 -2
  104. package/lib/components/Checkbox/index.js +2 -2
  105. package/lib/components/Chip/Chip.d.ts +1 -1
  106. package/lib/components/Chip/Chip.js +44 -42
  107. package/lib/components/Chip/index.d.ts +2 -2
  108. package/lib/components/Chip/index.js +1 -1
  109. package/lib/components/CircularLoader/CircularLoader.d.ts +1 -1
  110. package/lib/components/CircularLoader/CircularLoader.js +22 -19
  111. package/lib/components/CircularLoader/index.d.ts +1 -1
  112. package/lib/components/CircularLoader/index.js +1 -1
  113. package/lib/components/CollapsibleCard/CollapsibleCard.d.ts +1 -1
  114. package/lib/components/CollapsibleCard/CollapsibleCard.js +51 -41
  115. package/lib/components/CollapsibleCard/index.d.ts +1 -1
  116. package/lib/components/CollapsibleCard/index.js +1 -1
  117. package/lib/components/Combobox/Combobox.d.ts +3 -3
  118. package/lib/components/Combobox/Combobox.js +99 -89
  119. package/lib/components/Combobox/helper.d.ts +1 -1
  120. package/lib/components/Combobox/index.d.ts +1 -1
  121. package/lib/components/Combobox/index.js +1 -1
  122. package/lib/components/ConditionalWrapper/index.d.ts +1 -1
  123. package/lib/components/ConditionalWrapper/index.js +1 -1
  124. package/lib/components/DateRangePicker/Calendar.d.ts +2 -2
  125. package/lib/components/DateRangePicker/Calendar.js +43 -41
  126. package/lib/components/DateRangePicker/DateRangePicker.d.ts +1 -1
  127. package/lib/components/DateRangePicker/DateRangePicker.js +7 -6
  128. package/lib/components/DateRangePicker/DateRangeWrapper.d.ts +2 -2
  129. package/lib/components/DateRangePicker/DateRangeWrapper.js +163 -146
  130. package/lib/components/DateRangePicker/Day.js +16 -13
  131. package/lib/components/DateRangePicker/index.d.ts +1 -1
  132. package/lib/components/DateRangePicker/index.js +1 -1
  133. package/lib/components/Dialog/Dialog.d.ts +1 -1
  134. package/lib/components/Dialog/Dialog.js +75 -52
  135. package/lib/components/Dialog/index.d.ts +1 -1
  136. package/lib/components/Dialog/index.js +1 -1
  137. package/lib/components/Disclaimer/Disclaimer.d.ts +1 -1
  138. package/lib/components/Disclaimer/Disclaimer.js +8 -8
  139. package/lib/components/Disclaimer/index.d.ts +1 -1
  140. package/lib/components/Disclaimer/index.js +1 -1
  141. package/lib/components/Dropdown/Dropdown.d.ts +4 -4
  142. package/lib/components/Dropdown/Dropdown.js +93 -85
  143. package/lib/components/Dropdown/SimpleDropdown.d.ts +5 -5
  144. package/lib/components/Dropdown/SimpleDropdown.js +6 -5
  145. package/lib/components/Dropdown/index.d.ts +2 -2
  146. package/lib/components/Dropdown/index.js +2 -2
  147. package/lib/components/EmptyState/EmptyImages/CalendarEmptyImage.js +85 -83
  148. package/lib/components/EmptyState/EmptyImages/ChartEmptyImage.js +163 -161
  149. package/lib/components/EmptyState/EmptyImages/DataEmptyImage.js +99 -95
  150. package/lib/components/EmptyState/EmptyImages/FileEmptyImage.js +102 -100
  151. package/lib/components/EmptyState/EmptyImages/MessageEmptyImage.js +47 -45
  152. package/lib/components/EmptyState/EmptyImages/UploadEmptyImage.js +49 -47
  153. package/lib/components/EmptyState/EmptyImages/index.d.ts +6 -6
  154. package/lib/components/EmptyState/EmptyImages/index.js +6 -6
  155. package/lib/components/EmptyState/EmptyState.js +25 -19
  156. package/lib/components/EmptyState/index.d.ts +1 -1
  157. package/lib/components/EmptyState/index.js +1 -1
  158. package/lib/components/ErrorMessage/ErrorImages/ForbiddenImage.js +64 -62
  159. package/lib/components/ErrorMessage/ErrorImages/NotFoundImage.js +95 -90
  160. package/lib/components/ErrorMessage/ErrorImages/ServerErrorImage.js +189 -187
  161. package/lib/components/ErrorMessage/ErrorImages/UnauthorizedImage.js +53 -51
  162. package/lib/components/ErrorMessage/ErrorImages/index.d.ts +4 -4
  163. package/lib/components/ErrorMessage/ErrorImages/index.js +4 -4
  164. package/lib/components/ErrorMessage/ErrorMessage.js +28 -21
  165. package/lib/components/ErrorMessage/index.d.ts +1 -1
  166. package/lib/components/ErrorMessage/index.js +1 -1
  167. package/lib/components/FileUpload/FileBlock/FileBlock.d.ts +1 -1
  168. package/lib/components/FileUpload/FileBlock/FileBlock.js +66 -46
  169. package/lib/components/FileUpload/FileBlock/index.d.ts +1 -1
  170. package/lib/components/FileUpload/FileBlock/index.js +1 -1
  171. package/lib/components/FileUpload/FileUpload.js +48 -37
  172. package/lib/components/FileUpload/index.d.ts +2 -2
  173. package/lib/components/FileUpload/index.js +2 -2
  174. package/lib/components/FilterButtonOverlay/FilterButtonOverlay.d.ts +4 -4
  175. package/lib/components/FilterButtonOverlay/FilterButtonOverlay.js +70 -61
  176. package/lib/components/FilterButtonOverlay/index.d.ts +1 -1
  177. package/lib/components/FilterButtonOverlay/index.js +1 -1
  178. package/lib/components/FocusManager/FocusManager.js +13 -10
  179. package/lib/components/FocusManager/index.d.ts +1 -1
  180. package/lib/components/FocusManager/index.js +1 -1
  181. package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.d.ts +1 -1
  182. package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.js +19 -14
  183. package/lib/components/FocusManagerWithArrowKeyNavigation/index.d.ts +1 -1
  184. package/lib/components/FocusManagerWithArrowKeyNavigation/index.js +1 -1
  185. package/lib/components/FormTitleWrapper/FormTitleWrapper.d.ts +2 -2
  186. package/lib/components/FormTitleWrapper/FormTitleWrapper.js +22 -17
  187. package/lib/components/FormTitleWrapper/index.d.ts +1 -1
  188. package/lib/components/FormTitleWrapper/index.js +1 -1
  189. package/lib/components/Grid/Grid.js +11 -8
  190. package/lib/components/Grid/index.d.ts +1 -1
  191. package/lib/components/Grid/index.js +1 -1
  192. package/lib/components/Icon/ClickableIcon.d.ts +2 -2
  193. package/lib/components/Icon/ClickableIcon.js +20 -17
  194. package/lib/components/Icon/Icon.d.ts +1 -1
  195. package/lib/components/Icon/Icon.docs.js +2 -2
  196. package/lib/components/Icon/Icon.js +17 -13
  197. package/lib/components/Icon/SemanticIcon.d.ts +2 -2
  198. package/lib/components/Icon/SemanticIcon.js +17 -13
  199. package/lib/components/Icon/index.d.ts +3 -3
  200. package/lib/components/Icon/index.js +3 -3
  201. package/lib/components/InContextAlert/InContextAlert.d.ts +3 -3
  202. package/lib/components/InContextAlert/InContextAlert.js +55 -47
  203. package/lib/components/InContextAlert/index.d.ts +1 -1
  204. package/lib/components/InContextAlert/index.js +1 -1
  205. package/lib/components/InContextAlertWithMultipleActions/InContextAlertWithMultipleActions.d.ts +2 -2
  206. package/lib/components/InContextAlertWithMultipleActions/InContextAlertWithMultipleActions.js +54 -43
  207. package/lib/components/InContextAlertWithMultipleActions/index.d.ts +1 -1
  208. package/lib/components/InContextAlertWithMultipleActions/index.js +1 -1
  209. package/lib/components/InfinitePagination/InfinitePagination.d.ts +1 -1
  210. package/lib/components/InfinitePagination/InfinitePagination.js +37 -31
  211. package/lib/components/InfinitePagination/index.d.ts +1 -1
  212. package/lib/components/InfinitePagination/index.js +1 -1
  213. package/lib/components/InlineDropdown/InlineDropdown.d.ts +5 -5
  214. package/lib/components/InlineDropdown/InlineDropdown.js +88 -77
  215. package/lib/components/InlineDropdown/SimpleInlineDropdown.d.ts +6 -6
  216. package/lib/components/InlineDropdown/SimpleInlineDropdown.js +8 -6
  217. package/lib/components/InlineDropdown/index.d.ts +2 -2
  218. package/lib/components/InlineDropdown/index.js +2 -2
  219. package/lib/components/Input/Input.d.ts +1 -1
  220. package/lib/components/Input/Input.js +94 -80
  221. package/lib/components/Input/index.d.ts +1 -1
  222. package/lib/components/Input/index.js +1 -1
  223. package/lib/components/KPIBox/KPIBox.d.ts +2 -2
  224. package/lib/components/KPIBox/KPIBox.js +26 -20
  225. package/lib/components/KPIBox/index.d.ts +1 -1
  226. package/lib/components/KPIBox/index.js +1 -1
  227. package/lib/components/LinearLoader/LinearLoader.js +18 -16
  228. package/lib/components/LinearLoader/index.d.ts +1 -1
  229. package/lib/components/LinearLoader/index.js +1 -1
  230. package/lib/components/Link/Link.d.ts +2 -2
  231. package/lib/components/Link/Link.js +36 -30
  232. package/lib/components/Link/index.d.ts +1 -1
  233. package/lib/components/Link/index.js +1 -1
  234. package/lib/components/Menu/Menu.d.ts +2 -2
  235. package/lib/components/Menu/Menu.js +104 -89
  236. package/lib/components/Menu/MenuOptionButton.d.ts +1 -1
  237. package/lib/components/Menu/MenuOptionButton.js +58 -47
  238. package/lib/components/Menu/index.d.ts +2 -2
  239. package/lib/components/Menu/index.js +2 -2
  240. package/lib/components/Modal/Modal.js +76 -61
  241. package/lib/components/Modal/index.d.ts +2 -2
  242. package/lib/components/Modal/index.js +1 -1
  243. package/lib/components/Notification/Notification.d.ts +1 -1
  244. package/lib/components/Notification/Notification.js +38 -32
  245. package/lib/components/Notification/index.d.ts +1 -1
  246. package/lib/components/Notification/index.js +1 -1
  247. package/lib/components/OptionButton/OptionButton.d.ts +5 -5
  248. package/lib/components/OptionButton/OptionButton.js +61 -56
  249. package/lib/components/OptionButton/SimpleOptionButton.d.ts +6 -6
  250. package/lib/components/OptionButton/SimpleOptionButton.js +8 -6
  251. package/lib/components/OptionButton/index.d.ts +2 -2
  252. package/lib/components/OptionButton/index.js +2 -2
  253. package/lib/components/PageTitle/PageTitle.js +60 -44
  254. package/lib/components/PageTitle/index.d.ts +1 -1
  255. package/lib/components/PageTitle/index.js +1 -1
  256. package/lib/components/Pagination/Pagination.js +46 -39
  257. package/lib/components/Pagination/PaginationItem.d.ts +1 -1
  258. package/lib/components/Pagination/PaginationItem.js +23 -17
  259. package/lib/components/Pagination/index.d.ts +1 -1
  260. package/lib/components/Pagination/index.js +1 -1
  261. package/lib/components/Panel/Panel.d.ts +1 -1
  262. package/lib/components/Panel/Panel.js +45 -33
  263. package/lib/components/Panel/index.d.ts +2 -2
  264. package/lib/components/Panel/index.js +1 -1
  265. package/lib/components/ProgressDonut/ProgressDonut.d.ts +1 -1
  266. package/lib/components/ProgressDonut/ProgressDonut.js +37 -32
  267. package/lib/components/ProgressDonut/index.d.ts +1 -1
  268. package/lib/components/ProgressDonut/index.js +1 -1
  269. package/lib/components/PromptChip/PromptChip.d.ts +3 -3
  270. package/lib/components/PromptChip/PromptChip.js +62 -50
  271. package/lib/components/PromptChip/index.d.ts +1 -1
  272. package/lib/components/PromptChip/index.js +1 -1
  273. package/lib/components/PromptInput/PromptInput.d.ts +1 -1
  274. package/lib/components/PromptInput/PromptInput.js +57 -50
  275. package/lib/components/PromptInput/index.d.ts +1 -1
  276. package/lib/components/PromptInput/index.js +1 -1
  277. package/lib/components/RadioButton/RadioButton.d.ts +1 -1
  278. package/lib/components/RadioButton/RadioButton.js +31 -28
  279. package/lib/components/RadioButton/RadioGroup.d.ts +1 -1
  280. package/lib/components/RadioButton/RadioGroup.js +20 -16
  281. package/lib/components/RadioButton/index.d.ts +2 -2
  282. package/lib/components/RadioButton/index.js +2 -2
  283. package/lib/components/RadioTile/RadioTile.d.ts +2 -2
  284. package/lib/components/RadioTile/RadioTile.js +52 -42
  285. package/lib/components/RadioTile/index.d.ts +1 -1
  286. package/lib/components/RadioTile/index.js +1 -1
  287. package/lib/components/RangeSlider/RangeSlider.d.ts +1 -1
  288. package/lib/components/RangeSlider/RangeSlider.js +73 -68
  289. package/lib/components/RangeSlider/index.d.ts +1 -1
  290. package/lib/components/RangeSlider/index.js +1 -1
  291. package/lib/components/Rating/Rating.d.ts +2 -2
  292. package/lib/components/Rating/Rating.js +48 -43
  293. package/lib/components/Rating/index.d.ts +1 -1
  294. package/lib/components/Rating/index.js +1 -1
  295. package/lib/components/ScoreBar/ScoreBar.js +29 -26
  296. package/lib/components/ScoreBar/index.d.ts +1 -1
  297. package/lib/components/ScoreBar/index.js +1 -1
  298. package/lib/components/SearchInput/SearchInput.d.ts +1 -1
  299. package/lib/components/SearchInput/SearchInput.js +35 -32
  300. package/lib/components/SearchInput/index.d.ts +2 -2
  301. package/lib/components/SearchInput/index.js +1 -1
  302. package/lib/components/Separator/Separator.js +5 -4
  303. package/lib/components/Separator/index.d.ts +1 -1
  304. package/lib/components/Separator/index.js +1 -1
  305. package/lib/components/Shimmer/Shimmer.js +39 -31
  306. package/lib/components/Shimmer/index.d.ts +1 -1
  307. package/lib/components/Shimmer/index.js +1 -1
  308. package/lib/components/SideMenuLink/SideMenuLink.d.ts +3 -3
  309. package/lib/components/SideMenuLink/SideMenuLink.js +63 -52
  310. package/lib/components/SideMenuLink/index.d.ts +1 -1
  311. package/lib/components/SideMenuLink/index.js +1 -1
  312. package/lib/components/StatusIndicator/StatusIndicator.d.ts +1 -1
  313. package/lib/components/StatusIndicator/StatusIndicator.js +7 -6
  314. package/lib/components/StatusIndicator/index.d.ts +1 -1
  315. package/lib/components/StatusIndicator/index.js +1 -1
  316. package/lib/components/Stepper/Step/Step.d.ts +1 -1
  317. package/lib/components/Stepper/Step/Step.js +33 -27
  318. package/lib/components/Stepper/Step/StepContent.js +7 -5
  319. package/lib/components/Stepper/Step/StepLabel.js +7 -5
  320. package/lib/components/Stepper/Step/index.d.ts +3 -3
  321. package/lib/components/Stepper/Step/index.js +3 -3
  322. package/lib/components/Stepper/Stepper.js +7 -5
  323. package/lib/components/Stepper/index.d.ts +2 -2
  324. package/lib/components/Stepper/index.js +2 -2
  325. package/lib/components/StickyBar/StickyBar.js +18 -12
  326. package/lib/components/StickyBar/index.d.ts +1 -1
  327. package/lib/components/StickyBar/index.js +1 -1
  328. package/lib/components/SubMenu/SubMenu.d.ts +1 -1
  329. package/lib/components/SubMenu/SubMenu.js +41 -35
  330. package/lib/components/SubMenu/SubMenuGroup.d.ts +2 -2
  331. package/lib/components/SubMenu/SubMenuGroup.js +63 -54
  332. package/lib/components/SubMenu/SubMenuItem.d.ts +3 -3
  333. package/lib/components/SubMenu/SubMenuItem.js +35 -24
  334. package/lib/components/SubMenu/SubMenuLink.d.ts +1 -1
  335. package/lib/components/SubMenu/SubMenuLink.js +34 -27
  336. package/lib/components/SubMenu/index.d.ts +4 -4
  337. package/lib/components/SubMenu/index.js +4 -4
  338. package/lib/components/Table/Cell.d.ts +1 -1
  339. package/lib/components/Table/Cell.js +44 -34
  340. package/lib/components/Table/DefaultRow.d.ts +3 -3
  341. package/lib/components/Table/DefaultRow.js +64 -57
  342. package/lib/components/Table/DefaultTableHeader.d.ts +3 -3
  343. package/lib/components/Table/DefaultTableHeader.js +103 -89
  344. package/lib/components/Table/StaticTable.d.ts +3 -3
  345. package/lib/components/Table/StaticTable.js +124 -114
  346. package/lib/components/Table/Table.d.ts +3 -3
  347. package/lib/components/Table/Table.js +10 -6
  348. package/lib/components/Table/TableActionBar.d.ts +2 -2
  349. package/lib/components/Table/TableActionBar.js +16 -12
  350. package/lib/components/Table/TableBottomBar.js +8 -6
  351. package/lib/components/Table/TableTopBar.js +8 -6
  352. package/lib/components/Table/hooks.d.ts +1 -1
  353. package/lib/components/Table/index.d.ts +8 -8
  354. package/lib/components/Table/index.js +8 -8
  355. package/lib/components/Tabs/Tab/Tab.d.ts +2 -2
  356. package/lib/components/Tabs/Tab/Tab.js +64 -53
  357. package/lib/components/Tabs/Tab/index.d.ts +1 -1
  358. package/lib/components/Tabs/Tab/index.js +1 -1
  359. package/lib/components/Tabs/TabList/TabDropdown.d.ts +4 -4
  360. package/lib/components/Tabs/TabList/TabDropdown.js +62 -53
  361. package/lib/components/Tabs/TabList/TabList.d.ts +1 -1
  362. package/lib/components/Tabs/TabList/TabList.js +13 -12
  363. package/lib/components/Tabs/TabList/index.d.ts +1 -1
  364. package/lib/components/Tabs/TabList/index.js +1 -1
  365. package/lib/components/Tabs/index.d.ts +2 -2
  366. package/lib/components/Tabs/index.js +2 -2
  367. package/lib/components/Text/Text.d.ts +1 -1
  368. package/lib/components/Text/Text.js +303 -251
  369. package/lib/components/Text/index.d.ts +3 -3
  370. package/lib/components/Text/index.js +2 -2
  371. package/lib/components/TextTile/TextTile.js +21 -14
  372. package/lib/components/TextTile/index.d.ts +1 -1
  373. package/lib/components/TextTile/index.js +1 -1
  374. package/lib/components/Textarea/Textarea.js +49 -39
  375. package/lib/components/Textarea/index.d.ts +2 -2
  376. package/lib/components/Textarea/index.js +1 -1
  377. package/lib/components/Timeline/Timeline.js +7 -5
  378. package/lib/components/Timeline/TimelineItem/TimelineItem.d.ts +3 -3
  379. package/lib/components/Timeline/TimelineItem/TimelineItem.js +55 -45
  380. package/lib/components/Timeline/TimelineItem/index.d.ts +1 -1
  381. package/lib/components/Timeline/TimelineItem/index.js +1 -1
  382. package/lib/components/Timeline/index.d.ts +2 -2
  383. package/lib/components/Timeline/index.js +2 -2
  384. package/lib/components/Toast/Toast.js +55 -46
  385. package/lib/components/Toast/ToastContainer.js +10 -9
  386. package/lib/components/Toast/ToastManager.d.ts +1 -1
  387. package/lib/components/Toast/ToastManager.js +1 -1
  388. package/lib/components/Toast/index.d.ts +4 -4
  389. package/lib/components/Toast/index.js +3 -3
  390. package/lib/components/Toggle/Toggle.js +30 -25
  391. package/lib/components/Toggle/index.d.ts +1 -1
  392. package/lib/components/Toggle/index.js +1 -1
  393. package/lib/components/TokenListInput/TokenListInput.d.ts +5 -5
  394. package/lib/components/TokenListInput/TokenListInput.js +152 -137
  395. package/lib/components/TokenListInput/TokenValueChips.js +13 -11
  396. package/lib/components/TokenListInput/index.d.ts +1 -1
  397. package/lib/components/TokenListInput/index.js +1 -1
  398. package/lib/components/Tooltip/Tooltip.js +44 -32
  399. package/lib/components/Tooltip/index.d.ts +1 -1
  400. package/lib/components/Tooltip/index.js +1 -1
  401. package/lib/components/Truncate/Truncate.js +11 -8
  402. package/lib/components/Truncate/index.d.ts +2 -2
  403. package/lib/components/Truncate/index.js +1 -1
  404. package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.d.ts +1 -1
  405. package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.js +23 -18
  406. package/lib/components/TruncatedTextWithTooltip/index.d.ts +1 -1
  407. package/lib/components/TruncatedTextWithTooltip/index.js +1 -1
  408. package/lib/components/Typeahead/SimpleTypeahead.d.ts +5 -5
  409. package/lib/components/Typeahead/SimpleTypeahead.js +6 -5
  410. package/lib/components/Typeahead/Typeahead.d.ts +4 -4
  411. package/lib/components/Typeahead/Typeahead.js +111 -99
  412. package/lib/components/Typeahead/index.d.ts +2 -2
  413. package/lib/components/Typeahead/index.js +2 -2
  414. package/lib/components/WeekdayPicker/WeekdayPicker.js +52 -47
  415. package/lib/components/WeekdayPicker/index.d.ts +1 -1
  416. package/lib/components/WeekdayPicker/index.js +1 -1
  417. package/lib/components/index.d.ts +75 -75
  418. package/lib/components/index.js +75 -75
  419. package/lib/hooks/index.d.ts +16 -16
  420. package/lib/hooks/index.js +16 -16
  421. package/lib/hooks/useArbitraryOptionAddition/index.d.ts +1 -1
  422. package/lib/hooks/useArbitraryOptionAddition/index.js +1 -1
  423. package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.d.ts +1 -1
  424. package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.js +1 -1
  425. package/lib/hooks/useCopyToClipboard/index.d.ts +1 -1
  426. package/lib/hooks/useCopyToClipboard/index.js +1 -1
  427. package/lib/hooks/useDebounce/index.d.ts +1 -1
  428. package/lib/hooks/useDebounce/index.js +1 -1
  429. package/lib/hooks/useFileUpload/index.d.ts +1 -1
  430. package/lib/hooks/useFileUpload/index.js +1 -1
  431. package/lib/hooks/useFileUpload/useFileUpload.d.ts +1 -1
  432. package/lib/hooks/useFileUpload/useFileUpload.js +1 -1
  433. package/lib/hooks/useFilteredOptions/index.d.ts +1 -1
  434. package/lib/hooks/useFilteredOptions/index.js +1 -1
  435. package/lib/hooks/useInfiniteScroll/index.d.ts +1 -1
  436. package/lib/hooks/useInfiniteScroll/index.js +1 -1
  437. package/lib/hooks/useInputState/index.d.ts +1 -1
  438. package/lib/hooks/useInputState/index.js +1 -1
  439. package/lib/hooks/useLockedBody/index.d.ts +1 -1
  440. package/lib/hooks/useLockedBody/index.js +1 -1
  441. package/lib/hooks/useModal/index.d.ts +1 -1
  442. package/lib/hooks/useModal/index.js +1 -1
  443. package/lib/hooks/useModal/useModal.d.ts +1 -1
  444. package/lib/hooks/useModal/useModal.js +1 -1
  445. package/lib/hooks/usePagination/index.d.ts +1 -1
  446. package/lib/hooks/usePagination/index.js +1 -1
  447. package/lib/hooks/usePagination/usePagination.d.ts +1 -1
  448. package/lib/hooks/usePagination/usePagination.js +1 -1
  449. package/lib/hooks/useReferenceElementWidth/index.d.ts +1 -1
  450. package/lib/hooks/useReferenceElementWidth/index.js +1 -1
  451. package/lib/hooks/useReferenceElementWidth/useReferenceElementWidth.js +1 -1
  452. package/lib/hooks/useResizeObserver/index.d.ts +1 -1
  453. package/lib/hooks/useResizeObserver/index.js +1 -1
  454. package/lib/hooks/useToastPortal/index.d.ts +1 -1
  455. package/lib/hooks/useToastPortal/index.js +1 -1
  456. package/lib/hooks/useToastPortal/useToastPortal.js +2 -2
  457. package/lib/hooks/useToggle/index.d.ts +1 -1
  458. package/lib/hooks/useToggle/index.js +1 -1
  459. package/lib/hooks/useWindowSize/index.d.ts +1 -1
  460. package/lib/hooks/useWindowSize/index.js +1 -1
  461. package/lib/index.d.ts +5 -5
  462. package/lib/index.js +5 -5
  463. package/lib/types/index.d.ts +7 -7
  464. package/lib/types/index.js +7 -7
  465. package/lib/utils/array/index.d.ts +1 -1
  466. package/lib/utils/array/index.js +1 -1
  467. package/lib/utils/charts/charts.d.ts +1 -1
  468. package/lib/utils/charts/charts.js +5 -5
  469. package/lib/utils/charts/columnChart.d.ts +1 -1
  470. package/lib/utils/charts/columnChart.js +3 -3
  471. package/lib/utils/charts/donutChart.d.ts +1 -1
  472. package/lib/utils/charts/donutChart.js +2 -2
  473. package/lib/utils/charts/funnelChart.d.ts +2 -2
  474. package/lib/utils/charts/funnelChart.js +4 -4
  475. package/lib/utils/charts/helpers.js +2 -2
  476. package/lib/utils/charts/index.d.ts +10 -10
  477. package/lib/utils/charts/index.js +10 -10
  478. package/lib/utils/charts/lineChart.d.ts +1 -1
  479. package/lib/utils/charts/lineChart.js +4 -4
  480. package/lib/utils/charts/sankeyChart.d.ts +1 -1
  481. package/lib/utils/charts/sankeyChart.js +2 -2
  482. package/lib/utils/charts/spiderChart.d.ts +1 -1
  483. package/lib/utils/charts/spiderChart.js +4 -4
  484. package/lib/utils/charts/stackedBarChart.d.ts +1 -1
  485. package/lib/utils/charts/stackedBarChart.js +3 -3
  486. package/lib/utils/charts/typography.js +2 -2
  487. package/lib/utils/click-away/click-away.js +1 -1
  488. package/lib/utils/click-away/index.d.ts +1 -1
  489. package/lib/utils/click-away/index.js +1 -1
  490. package/lib/utils/date-range-picker/date-range-picker.d.ts +2 -2
  491. package/lib/utils/date-range-picker/date-range-picker.js +1 -1
  492. package/lib/utils/date-range-picker/index.d.ts +2 -2
  493. package/lib/utils/date-range-picker/index.js +2 -2
  494. package/lib/utils/dom/index.d.ts +1 -1
  495. package/lib/utils/dom/index.js +1 -1
  496. package/lib/utils/helpers/index.d.ts +1 -1
  497. package/lib/utils/helpers/index.js +1 -1
  498. package/lib/utils/index.d.ts +14 -14
  499. package/lib/utils/index.js +14 -14
  500. package/lib/utils/makeClassNameComponent/index.d.ts +1 -1
  501. package/lib/utils/makeClassNameComponent/index.js +1 -1
  502. package/lib/utils/makeClassNameComponent/makeClassNameComponent.js +1 -1
  503. package/lib/utils/menu/index.d.ts +1 -1
  504. package/lib/utils/menu/index.js +1 -1
  505. package/lib/utils/menu/menu.d.ts +1 -1
  506. package/lib/utils/merge-refs/index.d.ts +1 -1
  507. package/lib/utils/merge-refs/index.js +1 -1
  508. package/lib/utils/rating/index.d.ts +1 -1
  509. package/lib/utils/rating/index.js +1 -1
  510. package/lib/utils/score-bar/index.d.ts +1 -1
  511. package/lib/utils/score-bar/index.js +1 -1
  512. package/lib/utils/score-bar/score-bar.d.ts +1 -1
  513. package/lib/utils/string/index.d.ts +1 -1
  514. package/lib/utils/string/index.js +1 -1
  515. package/lib/utils/tokens/index.d.ts +1 -1
  516. package/lib/utils/tokens/index.js +1 -1
  517. package/package.json +4 -2
  518. package/tsconfig.declaration.json +14 -2
  519. package/lib/components/AIPromptFlow/AIPromptFlow.stories.d.ts +0 -19
  520. package/lib/components/AIPromptFlow/AIPromptFlow.stories.d.ts.map +0 -1
  521. package/lib/components/Accordion/Accordion.stories.d.ts +0 -144
  522. package/lib/components/Accordion/Accordion.stories.d.ts.map +0 -1
  523. package/lib/components/Accordion/AccordionGroup.stories.d.ts +0 -90
  524. package/lib/components/Accordion/AccordionGroup.stories.d.ts.map +0 -1
  525. package/lib/components/Avatar/Avatar.stories.d.ts +0 -149
  526. package/lib/components/Avatar/Avatar.stories.d.ts.map +0 -1
  527. package/lib/components/AvatarGroup/AvatarGroup.stories.d.ts +0 -101
  528. package/lib/components/AvatarGroup/AvatarGroup.stories.d.ts.map +0 -1
  529. package/lib/components/Badge/Badge.stories.d.ts +0 -123
  530. package/lib/components/Badge/Badge.stories.d.ts.map +0 -1
  531. package/lib/components/BadgedIcon/BadgedIcon.stories.d.ts +0 -111
  532. package/lib/components/BadgedIcon/BadgedIcon.stories.d.ts.map +0 -1
  533. package/lib/components/Banner/Banner.stories.d.ts +0 -187
  534. package/lib/components/Banner/Banner.stories.d.ts.map +0 -1
  535. package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.stories.d.ts +0 -98
  536. package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.stories.d.ts.map +0 -1
  537. package/lib/components/Breadcrumbs/Breadcrumbs.stories.d.ts +0 -57
  538. package/lib/components/Breadcrumbs/Breadcrumbs.stories.d.ts.map +0 -1
  539. package/lib/components/Button/Button.stories.d.ts +0 -245
  540. package/lib/components/Button/Button.stories.d.ts.map +0 -1
  541. package/lib/components/ButtonDropdown/ButtonDropdown.stories.d.ts +0 -1978
  542. package/lib/components/ButtonDropdown/ButtonDropdown.stories.d.ts.map +0 -1
  543. package/lib/components/ButtonDropdown/SimpleButtonDropdown.stories.d.ts +0 -2900
  544. package/lib/components/ButtonDropdown/SimpleButtonDropdown.stories.d.ts.map +0 -1
  545. package/lib/components/ButtonTabs/ButtonTab/ButtonTab.stories.d.ts +0 -142
  546. package/lib/components/ButtonTabs/ButtonTab/ButtonTab.stories.d.ts.map +0 -1
  547. package/lib/components/ButtonTabs/ButtonTabs.stories.d.ts +0 -201
  548. package/lib/components/ButtonTabs/ButtonTabs.stories.d.ts.map +0 -1
  549. package/lib/components/Card/Card.stories.d.ts +0 -150
  550. package/lib/components/Card/Card.stories.d.ts.map +0 -1
  551. package/lib/components/Charts/ColumnChart/ColumnChart.stories.d.ts +0 -446
  552. package/lib/components/Charts/ColumnChart/ColumnChart.stories.d.ts.map +0 -1
  553. package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +0 -227
  554. package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts.map +0 -1
  555. package/lib/components/Charts/FunnelChart/FunnelChart.stories.d.ts +0 -308
  556. package/lib/components/Charts/FunnelChart/FunnelChart.stories.d.ts.map +0 -1
  557. package/lib/components/Charts/LineChart/LineChart.stories.d.ts +0 -311
  558. package/lib/components/Charts/LineChart/LineChart.stories.d.ts.map +0 -1
  559. package/lib/components/Charts/SankeyChart/SankeyChart.stories.d.ts +0 -267
  560. package/lib/components/Charts/SankeyChart/SankeyChart.stories.d.ts.map +0 -1
  561. package/lib/components/Charts/SpiderChart/SpiderChart.stories.d.ts +0 -150
  562. package/lib/components/Charts/SpiderChart/SpiderChart.stories.d.ts.map +0 -1
  563. package/lib/components/Charts/StackedBarChart/StackedBarChart.stories.d.ts +0 -192
  564. package/lib/components/Charts/StackedBarChart/StackedBarChart.stories.d.ts.map +0 -1
  565. package/lib/components/ChatBubble/ChatAnchor.stories.d.ts +0 -101
  566. package/lib/components/ChatBubble/ChatAnchor.stories.d.ts.map +0 -1
  567. package/lib/components/ChatBubble/ChatBubble.stories.d.ts +0 -102
  568. package/lib/components/ChatBubble/ChatBubble.stories.d.ts.map +0 -1
  569. package/lib/components/Checkbox/Checkbox.stories.d.ts +0 -168
  570. package/lib/components/Checkbox/Checkbox.stories.d.ts.map +0 -1
  571. package/lib/components/Checkbox/CheckboxGroup.stories.d.ts +0 -163
  572. package/lib/components/Checkbox/CheckboxGroup.stories.d.ts.map +0 -1
  573. package/lib/components/Chip/Chip.stories.d.ts +0 -238
  574. package/lib/components/Chip/Chip.stories.d.ts.map +0 -1
  575. package/lib/components/CircularLoader/CircularLoader.stories.d.ts +0 -64
  576. package/lib/components/CircularLoader/CircularLoader.stories.d.ts.map +0 -1
  577. package/lib/components/CollapsibleCard/CollapsibleCard.stories.d.ts +0 -225
  578. package/lib/components/CollapsibleCard/CollapsibleCard.stories.d.ts.map +0 -1
  579. package/lib/components/Combobox/Combobox.stories.d.ts +0 -198
  580. package/lib/components/Combobox/Combobox.stories.d.ts.map +0 -1
  581. package/lib/components/ConditionalWrapper/ConditionalWrapper.stories.d.ts +0 -16
  582. package/lib/components/ConditionalWrapper/ConditionalWrapper.stories.d.ts.map +0 -1
  583. package/lib/components/DateRangePicker/DateRangePicker.stories.d.ts +0 -184
  584. package/lib/components/DateRangePicker/DateRangePicker.stories.d.ts.map +0 -1
  585. package/lib/components/Dialog/Dialog.stories.d.ts +0 -171
  586. package/lib/components/Dialog/Dialog.stories.d.ts.map +0 -1
  587. package/lib/components/Disclaimer/Disclaimer.stories.d.ts +0 -156
  588. package/lib/components/Disclaimer/Disclaimer.stories.d.ts.map +0 -1
  589. package/lib/components/Dropdown/Dropdown.stories.d.ts +0 -417
  590. package/lib/components/Dropdown/Dropdown.stories.d.ts.map +0 -1
  591. package/lib/components/Dropdown/SimpleDropdown.stories.d.ts +0 -424
  592. package/lib/components/Dropdown/SimpleDropdown.stories.d.ts.map +0 -1
  593. package/lib/components/EmptyState/EmptyState.stories.d.ts +0 -91
  594. package/lib/components/EmptyState/EmptyState.stories.d.ts.map +0 -1
  595. package/lib/components/ErrorMessage/ErrorMessage.stories.d.ts +0 -97
  596. package/lib/components/ErrorMessage/ErrorMessage.stories.d.ts.map +0 -1
  597. package/lib/components/FileUpload/FileBlock/FileBlock.stories.d.ts +0 -82
  598. package/lib/components/FileUpload/FileBlock/FileBlock.stories.d.ts.map +0 -1
  599. package/lib/components/FileUpload/FileUpload.stories.d.ts +0 -341
  600. package/lib/components/FileUpload/FileUpload.stories.d.ts.map +0 -1
  601. package/lib/components/FilterButtonOverlay/FilterButtonOverlay.stories.d.ts +0 -300
  602. package/lib/components/FilterButtonOverlay/FilterButtonOverlay.stories.d.ts.map +0 -1
  603. package/lib/components/FocusManager/FocusManager.stories.d.ts +0 -103
  604. package/lib/components/FocusManager/FocusManager.stories.d.ts.map +0 -1
  605. package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.stories.d.ts +0 -175
  606. package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.stories.d.ts.map +0 -1
  607. package/lib/components/FormTitleWrapper/FormTitleWrapper.stories.d.ts +0 -128
  608. package/lib/components/FormTitleWrapper/FormTitleWrapper.stories.d.ts.map +0 -1
  609. package/lib/components/Grid/Col.stories.d.ts +0 -66
  610. package/lib/components/Grid/Col.stories.d.ts.map +0 -1
  611. package/lib/components/Grid/GridPatterns.stories.d.ts +0 -18
  612. package/lib/components/Grid/GridPatterns.stories.d.ts.map +0 -1
  613. package/lib/components/Grid/Row.stories.d.ts +0 -41
  614. package/lib/components/Grid/Row.stories.d.ts.map +0 -1
  615. package/lib/components/Grid/Tablist.layout.stories.d.ts +0 -20
  616. package/lib/components/Grid/Tablist.layout.stories.d.ts.map +0 -1
  617. package/lib/components/Icon/Icon.stories.d.ts +0 -193
  618. package/lib/components/Icon/Icon.stories.d.ts.map +0 -1
  619. package/lib/components/Icon/SemanticIcon.stories.d.ts +0 -190
  620. package/lib/components/Icon/SemanticIcon.stories.d.ts.map +0 -1
  621. package/lib/components/InContextAlert/InContextAlert.stories.d.ts +0 -181
  622. package/lib/components/InContextAlert/InContextAlert.stories.d.ts.map +0 -1
  623. package/lib/components/InContextAlertWithMultipleActions/InContextAlertWithMultipleActions.stories.d.ts +0 -249
  624. package/lib/components/InContextAlertWithMultipleActions/InContextAlertWithMultipleActions.stories.d.ts.map +0 -1
  625. package/lib/components/InfinitePagination/InfinitePagination.stories.d.ts +0 -145
  626. package/lib/components/InfinitePagination/InfinitePagination.stories.d.ts.map +0 -1
  627. package/lib/components/InlineDropdown/InlineDropdown.stories.d.ts +0 -1202
  628. package/lib/components/InlineDropdown/InlineDropdown.stories.d.ts.map +0 -1
  629. package/lib/components/InlineDropdown/SimpleInlineDropdown.stories.d.ts +0 -2173
  630. package/lib/components/InlineDropdown/SimpleInlineDropdown.stories.d.ts.map +0 -1
  631. package/lib/components/Input/Input.stories.d.ts +0 -502
  632. package/lib/components/Input/Input.stories.d.ts.map +0 -1
  633. package/lib/components/Input/NativeColorpicker.stories.d.ts +0 -370
  634. package/lib/components/Input/NativeColorpicker.stories.d.ts.map +0 -1
  635. package/lib/components/Input/NativeDatepicker.stories.d.ts +0 -388
  636. package/lib/components/Input/NativeDatepicker.stories.d.ts.map +0 -1
  637. package/lib/components/KPIBox/KPIBox.stories.d.ts +0 -132
  638. package/lib/components/KPIBox/KPIBox.stories.d.ts.map +0 -1
  639. package/lib/components/LinearLoader/LinearLoader.stories.d.ts +0 -78
  640. package/lib/components/LinearLoader/LinearLoader.stories.d.ts.map +0 -1
  641. package/lib/components/Link/Link.stories.d.ts +0 -284
  642. package/lib/components/Link/Link.stories.d.ts.map +0 -1
  643. package/lib/components/Menu/Menu.stories.d.ts +0 -526
  644. package/lib/components/Menu/Menu.stories.d.ts.map +0 -1
  645. package/lib/components/Modal/Modal.stories.d.ts +0 -149
  646. package/lib/components/Modal/Modal.stories.d.ts.map +0 -1
  647. package/lib/components/Notification/Notification.stories.d.ts +0 -136
  648. package/lib/components/Notification/Notification.stories.d.ts.map +0 -1
  649. package/lib/components/OptionButton/OptionButton.stories.d.ts +0 -366
  650. package/lib/components/OptionButton/OptionButton.stories.d.ts.map +0 -1
  651. package/lib/components/OptionButton/SimpleOptionButton.stories.d.ts +0 -1638
  652. package/lib/components/OptionButton/SimpleOptionButton.stories.d.ts.map +0 -1
  653. package/lib/components/PageTitle/PageTitle.stories.d.ts +0 -83
  654. package/lib/components/PageTitle/PageTitle.stories.d.ts.map +0 -1
  655. package/lib/components/Pagination/Pagination.stories.d.ts +0 -203
  656. package/lib/components/Pagination/Pagination.stories.d.ts.map +0 -1
  657. package/lib/components/Panel/Panel.stories.d.ts +0 -187
  658. package/lib/components/Panel/Panel.stories.d.ts.map +0 -1
  659. package/lib/components/ProgressDonut/ProgressDonut.stories.d.ts +0 -72
  660. package/lib/components/ProgressDonut/ProgressDonut.stories.d.ts.map +0 -1
  661. package/lib/components/PromptChip/PromptChip.stories.d.ts +0 -205
  662. package/lib/components/PromptChip/PromptChip.stories.d.ts.map +0 -1
  663. package/lib/components/PromptInput/PromptInput.stories.d.ts +0 -265
  664. package/lib/components/PromptInput/PromptInput.stories.d.ts.map +0 -1
  665. package/lib/components/RadioButton/RadioButton.stories.d.ts +0 -149
  666. package/lib/components/RadioButton/RadioButton.stories.d.ts.map +0 -1
  667. package/lib/components/RadioButton/RadioGroup.stories.d.ts +0 -137
  668. package/lib/components/RadioButton/RadioGroup.stories.d.ts.map +0 -1
  669. package/lib/components/RadioTile/RadioTile.stories.d.ts +0 -171
  670. package/lib/components/RadioTile/RadioTile.stories.d.ts.map +0 -1
  671. package/lib/components/RangeSlider/RangeSlider.stories.d.ts +0 -287
  672. package/lib/components/RangeSlider/RangeSlider.stories.d.ts.map +0 -1
  673. package/lib/components/Rating/Rating.stories.d.ts +0 -237
  674. package/lib/components/Rating/Rating.stories.d.ts.map +0 -1
  675. package/lib/components/ScoreBar/ScoreBar.stories.d.ts +0 -156
  676. package/lib/components/ScoreBar/ScoreBar.stories.d.ts.map +0 -1
  677. package/lib/components/SearchInput/SearchInput.stories.d.ts +0 -260
  678. package/lib/components/SearchInput/SearchInput.stories.d.ts.map +0 -1
  679. package/lib/components/Separator/Separator.stories.d.ts +0 -79
  680. package/lib/components/Separator/Separator.stories.d.ts.map +0 -1
  681. package/lib/components/Shimmer/Shimmer.stories.d.ts +0 -213
  682. package/lib/components/Shimmer/Shimmer.stories.d.ts.map +0 -1
  683. package/lib/components/SideMenuLink/SideMenuLink.stories.d.ts +0 -96
  684. package/lib/components/SideMenuLink/SideMenuLink.stories.d.ts.map +0 -1
  685. package/lib/components/StatusIndicator/StatusIndicator.stories.d.ts +0 -92
  686. package/lib/components/StatusIndicator/StatusIndicator.stories.d.ts.map +0 -1
  687. package/lib/components/Stepper/Step/Step.stories.d.ts +0 -120
  688. package/lib/components/Stepper/Step/Step.stories.d.ts.map +0 -1
  689. package/lib/components/Stepper/Stepper.stories.d.ts +0 -210
  690. package/lib/components/Stepper/Stepper.stories.d.ts.map +0 -1
  691. package/lib/components/StickyBar/StickyBar.stories.d.ts +0 -35
  692. package/lib/components/StickyBar/StickyBar.stories.d.ts.map +0 -1
  693. package/lib/components/SubMenu/SubMenu.stories.d.ts +0 -114
  694. package/lib/components/SubMenu/SubMenu.stories.d.ts.map +0 -1
  695. package/lib/components/Table/BasicTable.stories.d.ts +0 -691
  696. package/lib/components/Table/BasicTable.stories.d.ts.map +0 -1
  697. package/lib/components/Table/BulkActions.stories.d.ts +0 -327
  698. package/lib/components/Table/BulkActions.stories.d.ts.map +0 -1
  699. package/lib/components/Table/InlineEdit.stories.d.ts +0 -314
  700. package/lib/components/Table/InlineEdit.stories.d.ts.map +0 -1
  701. package/lib/components/Tabs/Tab/Tab.stories.d.ts +0 -156
  702. package/lib/components/Tabs/Tab/Tab.stories.d.ts.map +0 -1
  703. package/lib/components/Tabs/TabList/TabList.stories.d.ts +0 -133
  704. package/lib/components/Tabs/TabList/TabList.stories.d.ts.map +0 -1
  705. package/lib/components/Text/HighlightedText.stories.d.ts +0 -120
  706. package/lib/components/Text/HighlightedText.stories.d.ts.map +0 -1
  707. package/lib/components/Text/Text.stories.d.ts +0 -271
  708. package/lib/components/Text/Text.stories.d.ts.map +0 -1
  709. package/lib/components/TextTile/TextTile.stories.d.ts +0 -76
  710. package/lib/components/TextTile/TextTile.stories.d.ts.map +0 -1
  711. package/lib/components/Textarea/Textarea.stories.d.ts +0 -264
  712. package/lib/components/Textarea/Textarea.stories.d.ts.map +0 -1
  713. package/lib/components/Timeline/Timeline.stories.d.ts +0 -62
  714. package/lib/components/Timeline/Timeline.stories.d.ts.map +0 -1
  715. package/lib/components/Timeline/TimelineItem/TimelineItem.stories.d.ts +0 -184
  716. package/lib/components/Timeline/TimelineItem/TimelineItem.stories.d.ts.map +0 -1
  717. package/lib/components/Toast/Toast.stories.d.ts +0 -105
  718. package/lib/components/Toast/Toast.stories.d.ts.map +0 -1
  719. package/lib/components/Toggle/Toggle.stories.d.ts +0 -142
  720. package/lib/components/Toggle/Toggle.stories.d.ts.map +0 -1
  721. package/lib/components/TokenListInput/TokenListInput.stories.d.ts +0 -379
  722. package/lib/components/TokenListInput/TokenListInput.stories.d.ts.map +0 -1
  723. package/lib/components/Tooltip/Tooltip.stories.d.ts +0 -172
  724. package/lib/components/Tooltip/Tooltip.stories.d.ts.map +0 -1
  725. package/lib/components/Truncate/Truncate.stories.d.ts +0 -94
  726. package/lib/components/Truncate/Truncate.stories.d.ts.map +0 -1
  727. package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.stories.d.ts +0 -110
  728. package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.stories.d.ts.map +0 -1
  729. package/lib/components/Typeahead/SimpleTypeahead.stories.d.ts +0 -396
  730. package/lib/components/Typeahead/SimpleTypeahead.stories.d.ts.map +0 -1
  731. package/lib/components/Typeahead/Typeahead.stories.d.ts +0 -399
  732. package/lib/components/Typeahead/Typeahead.stories.d.ts.map +0 -1
  733. package/lib/components/WeekdayPicker/WeekdayPicker.stories.d.ts +0 -238
  734. package/lib/components/WeekdayPicker/WeekdayPicker.stories.d.ts.map +0 -1
  735. package/lib/devtools/DependencyGraph/DependencyGraph.stories.d.ts +0 -19
  736. package/lib/devtools/DependencyGraph/DependencyGraph.stories.d.ts.map +0 -1
  737. package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.stories.d.ts +0 -18
  738. package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.stories.d.ts.map +0 -1
  739. package/lib/hooks/useCopyToClipboard/useCopyToClipboard.stories.d.ts +0 -24
  740. package/lib/hooks/useCopyToClipboard/useCopyToClipboard.stories.d.ts.map +0 -1
  741. package/lib/hooks/useDebounce/useDebounce.stories.d.ts +0 -26
  742. package/lib/hooks/useDebounce/useDebounce.stories.d.ts.map +0 -1
  743. package/lib/hooks/useFileUpload/useFileUpload.stories.d.ts +0 -16
  744. package/lib/hooks/useFileUpload/useFileUpload.stories.d.ts.map +0 -1
  745. package/lib/hooks/useFilteredOptions/useFilteredOptions.stories.d.ts +0 -18
  746. package/lib/hooks/useFilteredOptions/useFilteredOptions.stories.d.ts.map +0 -1
  747. package/lib/hooks/useInputState/useInputState.stories.d.ts +0 -16
  748. package/lib/hooks/useInputState/useInputState.stories.d.ts.map +0 -1
  749. package/lib/hooks/useLockedBody/useLockedBody.stories.d.ts +0 -17
  750. package/lib/hooks/useLockedBody/useLockedBody.stories.d.ts.map +0 -1
  751. package/lib/hooks/useModal/useModal.stories.d.ts +0 -17
  752. package/lib/hooks/useModal/useModal.stories.d.ts.map +0 -1
  753. package/lib/hooks/useMountTransition/useMountTransition.stories.d.ts +0 -16
  754. package/lib/hooks/useMountTransition/useMountTransition.stories.d.ts.map +0 -1
  755. package/lib/hooks/usePagination/usePagination.stories.d.ts +0 -18
  756. package/lib/hooks/usePagination/usePagination.stories.d.ts.map +0 -1
  757. package/lib/hooks/useToggle/useToggle.stories.d.ts +0 -17
  758. package/lib/hooks/useToggle/useToggle.stories.d.ts.map +0 -1
  759. package/lib/hooks/useWindowSize/useWindowSize.stories.d.ts +0 -17
  760. package/lib/hooks/useWindowSize/useWindowSize.stories.d.ts.map +0 -1
  761. package/lib/stories/Border/Border.stories.d.ts +0 -12
  762. package/lib/stories/Border/Border.stories.d.ts.map +0 -1
  763. package/lib/stories/Color/Color.stories.d.ts +0 -13
  764. package/lib/stories/Color/Color.stories.d.ts.map +0 -1
  765. package/lib/stories/Elevation/Elevation.stories.d.ts +0 -12
  766. package/lib/stories/Elevation/Elevation.stories.d.ts.map +0 -1
  767. package/lib/stories/Motion/Motion.stories.d.ts +0 -12
  768. package/lib/stories/Motion/Motion.stories.d.ts.map +0 -1
  769. package/lib/stories/Opacity/Opacity.stories.d.ts +0 -12
  770. package/lib/stories/Opacity/Opacity.stories.d.ts.map +0 -1
  771. package/lib/stories/Shadow/Shadow.stories.d.ts +0 -12
  772. package/lib/stories/Shadow/Shadow.stories.d.ts.map +0 -1
  773. package/lib/stories/Size/Size.stories.d.ts +0 -12
  774. package/lib/stories/Size/Size.stories.d.ts.map +0 -1
  775. package/lib/stories/Space/Space.stories.d.ts +0 -12
  776. package/lib/stories/Space/Space.stories.d.ts.map +0 -1
  777. package/lib/utils/classify/classify.stories.d.ts +0 -17
  778. package/lib/utils/classify/classify.stories.d.ts.map +0 -1
  779. package/lib/utils/click-away/ClickAway.stories.d.ts +0 -106
  780. package/lib/utils/click-away/ClickAway.stories.d.ts.map +0 -1
  781. package/lib/utils/dom/dom.stories.d.ts +0 -15
  782. package/lib/utils/dom/dom.stories.d.ts.map +0 -1
  783. package/lib/utils/helpers/helpers.stories.d.ts +0 -15
  784. package/lib/utils/helpers/helpers.stories.d.ts.map +0 -1
  785. package/lib/utils/makeClassNameComponent/makeClassNameComponent.stories.d.ts +0 -15
  786. package/lib/utils/makeClassNameComponent/makeClassNameComponent.stories.d.ts.map +0 -1
  787. package/lib/utils/merge-refs/merge-refs.stories.d.ts +0 -15
  788. package/lib/utils/merge-refs/merge-refs.stories.d.ts.map +0 -1
  789. package/lib/utils/string/string.stories.d.ts +0 -15
  790. package/lib/utils/string/string.stories.d.ts.map +0 -1
@@ -5,13 +5,13 @@ Object.defineProperty(exports, "__esModule", {
5
5
  });
6
6
  exports.TitleMedium = exports.SubTitleSmall = exports.SubTitleMedium = exports.SubTitleLarge = exports.SubTitleExtraSmall = exports.MenuTextSmall = exports.MenuTextMedium = exports.JumboSmall = exports.JumboMedium = exports.JumboLarge = exports.FormLabelSmall = exports.FormLabelMedium = exports.FormInputSmall = exports.FormInputMedium = exports.ButtonTextSmallUnderline = exports.ButtonTextSmall = exports.ButtonTextMediumUnderline = exports.ButtonTextMedium = exports.ButtonTextExtraSmallUnderline = exports.ButtonTextExtraSmall = exports.BodySmallBold = exports.BodySmall = exports.BodyMediumBold = exports.BodyMedium = exports.BodyLargeBold = exports.BodyLarge = void 0;
7
7
  var React = _interopRequireWildcard(require("react"));
8
- var _typography = require("src/types/typography");
9
- var _classify = _interopRequireDefault(require("src/utils/classify"));
10
- var _string = require("src/utils/string");
11
- var _typographyModule = _interopRequireDefault(require("src/styles/typography.module.css"));
8
+ var _typography = require("../../types/typography");
9
+ var _classify = _interopRequireDefault(require("../../utils/classify"));
10
+ var _string = require("../../utils/string");
11
+ var _typographyModule = _interopRequireDefault(require("../../styles/typography.module.css"));
12
+ var _jsxRuntime = require("react/jsx-runtime");
12
13
  function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
13
14
  function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
14
- function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
15
15
  const HighlightText = /*#__PURE__*/React.forwardRef((_ref, ref) => {
16
16
  let {
17
17
  text,
@@ -25,18 +25,18 @@ const HighlightText = /*#__PURE__*/React.forwardRef((_ref, ref) => {
25
25
  const highlightArray = [].concat(highlight).filter(item => item !== '');
26
26
  const highlights = highlightArray.map(_string.escapeRegExp).join('|');
27
27
  const parts = text.split(new RegExp(`(${highlights})`, caseSensitiveHighlighting ? '' : 'gi')).filter(part => part !== '');
28
- return /*#__PURE__*/React.createElement("span", {
29
- ref: ref
30
- }, parts.map((part, idx) => {
31
- const isHighlighted = highlightArray.some(highlightTerm => caseSensitiveHighlighting ? (0, _string.escapeRegExp)(part).includes((0, _string.escapeRegExp)(highlightTerm)) : (0, _string.escapeRegExp)(part).toLowerCase().includes((0, _string.escapeRegExp)(highlightTerm).toLowerCase()));
32
- return isHighlighted ? /*#__PURE__*/React.createElement("span", {
33
- // eslint-disable-next-line react/no-array-index-key
34
- key: idx,
35
- className: (0, _classify.default)(_typographyModule.default.highlightText, {
36
- [_typographyModule.default.bgHighlighting]: highlightWithBackground
37
- }, highlightClassName)
38
- }, part) : part;
39
- }));
28
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
29
+ ref: ref,
30
+ children: parts.map((part, idx) => {
31
+ const isHighlighted = highlightArray.some(highlightTerm => caseSensitiveHighlighting ? (0, _string.escapeRegExp)(part).includes((0, _string.escapeRegExp)(highlightTerm)) : (0, _string.escapeRegExp)(part).toLowerCase().includes((0, _string.escapeRegExp)(highlightTerm).toLowerCase()));
32
+ return isHighlighted ? /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
33
+ className: (0, _classify.default)(_typographyModule.default.highlightText, {
34
+ [_typographyModule.default.bgHighlighting]: highlightWithBackground
35
+ }, highlightClassName),
36
+ children: part
37
+ }, idx) : part;
38
+ })
39
+ });
40
40
  });
41
41
  const JumboLarge = exports.JumboLarge = /*#__PURE__*/React.forwardRef((_ref2, ref) => {
42
42
  let {
@@ -49,16 +49,18 @@ const JumboLarge = exports.JumboLarge = /*#__PURE__*/React.forwardRef((_ref2, re
49
49
  highlightWithBackground,
50
50
  ...props
51
51
  } = _ref2;
52
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
52
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
53
+ ...props,
53
54
  className: (0, _classify.default)(_typographyModule.default.jumboLarge, _typographyModule.default[color], className),
54
- ref: ref
55
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
56
- text: children,
57
- highlight: highlightString,
58
- caseSensitiveHighlighting: caseSensitiveHighlighting,
59
- highlightClassName: highlightedTextClassName,
60
- highlightWithBackground: highlightWithBackground
61
- }) : children);
55
+ ref: ref,
56
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
57
+ text: children,
58
+ highlight: highlightString,
59
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
60
+ highlightClassName: highlightedTextClassName,
61
+ highlightWithBackground: highlightWithBackground
62
+ }) : children
63
+ });
62
64
  });
63
65
  const JumboMedium = exports.JumboMedium = /*#__PURE__*/React.forwardRef((_ref3, ref) => {
64
66
  let {
@@ -71,16 +73,18 @@ const JumboMedium = exports.JumboMedium = /*#__PURE__*/React.forwardRef((_ref3,
71
73
  highlightWithBackground,
72
74
  ...props
73
75
  } = _ref3;
74
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
76
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
77
+ ...props,
75
78
  className: (0, _classify.default)(_typographyModule.default.jumboMedium, _typographyModule.default[color], className),
76
- ref: ref
77
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
78
- text: children,
79
- highlight: highlightString,
80
- caseSensitiveHighlighting: caseSensitiveHighlighting,
81
- highlightClassName: highlightedTextClassName,
82
- highlightWithBackground: highlightWithBackground
83
- }) : children);
79
+ ref: ref,
80
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
81
+ text: children,
82
+ highlight: highlightString,
83
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
84
+ highlightClassName: highlightedTextClassName,
85
+ highlightWithBackground: highlightWithBackground
86
+ }) : children
87
+ });
84
88
  });
85
89
  const JumboSmall = exports.JumboSmall = /*#__PURE__*/React.forwardRef((_ref4, ref) => {
86
90
  let {
@@ -93,16 +97,18 @@ const JumboSmall = exports.JumboSmall = /*#__PURE__*/React.forwardRef((_ref4, re
93
97
  highlightWithBackground,
94
98
  ...props
95
99
  } = _ref4;
96
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
100
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
101
+ ...props,
97
102
  className: (0, _classify.default)(_typographyModule.default.jumboSmall, _typographyModule.default[color], className),
98
- ref: ref
99
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
100
- text: children,
101
- highlight: highlightString,
102
- caseSensitiveHighlighting: caseSensitiveHighlighting,
103
- highlightClassName: highlightedTextClassName,
104
- highlightWithBackground: highlightWithBackground
105
- }) : children);
103
+ ref: ref,
104
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
105
+ text: children,
106
+ highlight: highlightString,
107
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
108
+ highlightClassName: highlightedTextClassName,
109
+ highlightWithBackground: highlightWithBackground
110
+ }) : children
111
+ });
106
112
  });
107
113
  const TitleMedium = exports.TitleMedium = /*#__PURE__*/React.forwardRef((_ref5, ref) => {
108
114
  let {
@@ -115,16 +121,18 @@ const TitleMedium = exports.TitleMedium = /*#__PURE__*/React.forwardRef((_ref5,
115
121
  highlightWithBackground,
116
122
  ...props
117
123
  } = _ref5;
118
- return /*#__PURE__*/React.createElement("h1", _extends({}, props, {
124
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("h1", {
125
+ ...props,
119
126
  className: (0, _classify.default)(_typographyModule.default.titleMedium, _typographyModule.default[color], className),
120
- ref: ref
121
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
122
- text: children,
123
- highlight: highlightString,
124
- caseSensitiveHighlighting: caseSensitiveHighlighting,
125
- highlightClassName: highlightedTextClassName,
126
- highlightWithBackground: highlightWithBackground
127
- }) : children);
127
+ ref: ref,
128
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
129
+ text: children,
130
+ highlight: highlightString,
131
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
132
+ highlightClassName: highlightedTextClassName,
133
+ highlightWithBackground: highlightWithBackground
134
+ }) : children
135
+ });
128
136
  });
129
137
  const SubTitleLarge = exports.SubTitleLarge = /*#__PURE__*/React.forwardRef((_ref6, ref) => {
130
138
  let {
@@ -137,16 +145,18 @@ const SubTitleLarge = exports.SubTitleLarge = /*#__PURE__*/React.forwardRef((_re
137
145
  highlightWithBackground,
138
146
  ...props
139
147
  } = _ref6;
140
- return /*#__PURE__*/React.createElement("h2", _extends({}, props, {
148
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("h2", {
149
+ ...props,
141
150
  className: (0, _classify.default)(_typographyModule.default.subTitleLarge, _typographyModule.default[color], className),
142
- ref: ref
143
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
144
- text: children,
145
- highlight: highlightString,
146
- caseSensitiveHighlighting: caseSensitiveHighlighting,
147
- highlightClassName: highlightedTextClassName,
148
- highlightWithBackground: highlightWithBackground
149
- }) : children);
151
+ ref: ref,
152
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
153
+ text: children,
154
+ highlight: highlightString,
155
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
156
+ highlightClassName: highlightedTextClassName,
157
+ highlightWithBackground: highlightWithBackground
158
+ }) : children
159
+ });
150
160
  });
151
161
  const SubTitleMedium = exports.SubTitleMedium = /*#__PURE__*/React.forwardRef((_ref7, ref) => {
152
162
  let {
@@ -159,16 +169,18 @@ const SubTitleMedium = exports.SubTitleMedium = /*#__PURE__*/React.forwardRef((_
159
169
  highlightWithBackground,
160
170
  ...props
161
171
  } = _ref7;
162
- return /*#__PURE__*/React.createElement("h3", _extends({}, props, {
172
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("h3", {
173
+ ...props,
163
174
  className: (0, _classify.default)(_typographyModule.default.subTitleMedium, _typographyModule.default[color], className),
164
- ref: ref
165
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
166
- text: children,
167
- highlight: highlightString,
168
- caseSensitiveHighlighting: caseSensitiveHighlighting,
169
- highlightClassName: highlightedTextClassName,
170
- highlightWithBackground: highlightWithBackground
171
- }) : children);
175
+ ref: ref,
176
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
177
+ text: children,
178
+ highlight: highlightString,
179
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
180
+ highlightClassName: highlightedTextClassName,
181
+ highlightWithBackground: highlightWithBackground
182
+ }) : children
183
+ });
172
184
  });
173
185
  const SubTitleSmall = exports.SubTitleSmall = /*#__PURE__*/React.forwardRef((_ref8, ref) => {
174
186
  let {
@@ -181,16 +193,18 @@ const SubTitleSmall = exports.SubTitleSmall = /*#__PURE__*/React.forwardRef((_re
181
193
  highlightWithBackground,
182
194
  ...props
183
195
  } = _ref8;
184
- return /*#__PURE__*/React.createElement("h4", _extends({}, props, {
196
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("h4", {
197
+ ...props,
185
198
  className: (0, _classify.default)(_typographyModule.default.subTitleSmall, _typographyModule.default[color], className),
186
- ref: ref
187
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
188
- text: children,
189
- highlight: highlightString,
190
- caseSensitiveHighlighting: caseSensitiveHighlighting,
191
- highlightClassName: highlightedTextClassName,
192
- highlightWithBackground: highlightWithBackground
193
- }) : children);
199
+ ref: ref,
200
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
201
+ text: children,
202
+ highlight: highlightString,
203
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
204
+ highlightClassName: highlightedTextClassName,
205
+ highlightWithBackground: highlightWithBackground
206
+ }) : children
207
+ });
194
208
  });
195
209
  const SubTitleExtraSmall = exports.SubTitleExtraSmall = /*#__PURE__*/React.forwardRef((_ref9, ref) => {
196
210
  let {
@@ -203,16 +217,18 @@ const SubTitleExtraSmall = exports.SubTitleExtraSmall = /*#__PURE__*/React.forwa
203
217
  highlightWithBackground,
204
218
  ...props
205
219
  } = _ref9;
206
- return /*#__PURE__*/React.createElement("h5", _extends({}, props, {
220
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("h5", {
221
+ ...props,
207
222
  className: (0, _classify.default)(_typographyModule.default.subTitleExtraSmall, _typographyModule.default[color], className),
208
- ref: ref
209
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
210
- text: children,
211
- highlight: highlightString,
212
- caseSensitiveHighlighting: caseSensitiveHighlighting,
213
- highlightClassName: highlightedTextClassName,
214
- highlightWithBackground: highlightWithBackground
215
- }) : children);
223
+ ref: ref,
224
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
225
+ text: children,
226
+ highlight: highlightString,
227
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
228
+ highlightClassName: highlightedTextClassName,
229
+ highlightWithBackground: highlightWithBackground
230
+ }) : children
231
+ });
216
232
  });
217
233
  const ButtonTextMedium = exports.ButtonTextMedium = /*#__PURE__*/React.forwardRef((_ref0, ref) => {
218
234
  let {
@@ -225,16 +241,18 @@ const ButtonTextMedium = exports.ButtonTextMedium = /*#__PURE__*/React.forwardRe
225
241
  highlightWithBackground,
226
242
  ...props
227
243
  } = _ref0;
228
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
244
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
245
+ ...props,
229
246
  className: (0, _classify.default)(_typographyModule.default.buttonTextMedium, _typographyModule.default[color], className),
230
- ref: ref
231
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
232
- text: children,
233
- highlight: highlightString,
234
- caseSensitiveHighlighting: caseSensitiveHighlighting,
235
- highlightClassName: highlightedTextClassName,
236
- highlightWithBackground: highlightWithBackground
237
- }) : children);
247
+ ref: ref,
248
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
249
+ text: children,
250
+ highlight: highlightString,
251
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
252
+ highlightClassName: highlightedTextClassName,
253
+ highlightWithBackground: highlightWithBackground
254
+ }) : children
255
+ });
238
256
  });
239
257
  const ButtonTextSmall = exports.ButtonTextSmall = /*#__PURE__*/React.forwardRef((_ref1, ref) => {
240
258
  let {
@@ -247,16 +265,18 @@ const ButtonTextSmall = exports.ButtonTextSmall = /*#__PURE__*/React.forwardRef(
247
265
  highlightWithBackground,
248
266
  ...props
249
267
  } = _ref1;
250
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
268
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
269
+ ...props,
251
270
  className: (0, _classify.default)(_typographyModule.default.buttonTextSmall, _typographyModule.default[color], className),
252
- ref: ref
253
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
254
- text: children,
255
- highlight: highlightString,
256
- caseSensitiveHighlighting: caseSensitiveHighlighting,
257
- highlightClassName: highlightedTextClassName,
258
- highlightWithBackground: highlightWithBackground
259
- }) : children);
271
+ ref: ref,
272
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
273
+ text: children,
274
+ highlight: highlightString,
275
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
276
+ highlightClassName: highlightedTextClassName,
277
+ highlightWithBackground: highlightWithBackground
278
+ }) : children
279
+ });
260
280
  });
261
281
  const MenuTextMedium = exports.MenuTextMedium = /*#__PURE__*/React.forwardRef((_ref10, ref) => {
262
282
  let {
@@ -269,16 +289,18 @@ const MenuTextMedium = exports.MenuTextMedium = /*#__PURE__*/React.forwardRef((_
269
289
  highlightWithBackground,
270
290
  ...props
271
291
  } = _ref10;
272
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
292
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
293
+ ...props,
273
294
  className: (0, _classify.default)(_typographyModule.default.menuTextMedium, _typographyModule.default[color], className),
274
- ref: ref
275
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
276
- text: children,
277
- highlight: highlightString,
278
- caseSensitiveHighlighting: caseSensitiveHighlighting,
279
- highlightClassName: highlightedTextClassName,
280
- highlightWithBackground: highlightWithBackground
281
- }) : children);
295
+ ref: ref,
296
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
297
+ text: children,
298
+ highlight: highlightString,
299
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
300
+ highlightClassName: highlightedTextClassName,
301
+ highlightWithBackground: highlightWithBackground
302
+ }) : children
303
+ });
282
304
  });
283
305
  const MenuTextSmall = exports.MenuTextSmall = /*#__PURE__*/React.forwardRef((_ref11, ref) => {
284
306
  let {
@@ -291,16 +313,18 @@ const MenuTextSmall = exports.MenuTextSmall = /*#__PURE__*/React.forwardRef((_re
291
313
  highlightWithBackground,
292
314
  ...props
293
315
  } = _ref11;
294
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
316
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
317
+ ...props,
295
318
  className: (0, _classify.default)(_typographyModule.default.menuTextSmall, _typographyModule.default[color], className),
296
- ref: ref
297
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
298
- text: children,
299
- highlight: highlightString,
300
- caseSensitiveHighlighting: caseSensitiveHighlighting,
301
- highlightClassName: highlightedTextClassName,
302
- highlightWithBackground: highlightWithBackground
303
- }) : children);
319
+ ref: ref,
320
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
321
+ text: children,
322
+ highlight: highlightString,
323
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
324
+ highlightClassName: highlightedTextClassName,
325
+ highlightWithBackground: highlightWithBackground
326
+ }) : children
327
+ });
304
328
  });
305
329
  const ButtonTextExtraSmall = exports.ButtonTextExtraSmall = /*#__PURE__*/React.forwardRef((_ref12, ref) => {
306
330
  let {
@@ -313,16 +337,18 @@ const ButtonTextExtraSmall = exports.ButtonTextExtraSmall = /*#__PURE__*/React.f
313
337
  highlightWithBackground,
314
338
  ...props
315
339
  } = _ref12;
316
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
340
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
341
+ ...props,
317
342
  className: (0, _classify.default)(_typographyModule.default.buttonTextExtraSmall, _typographyModule.default[color], className),
318
- ref: ref
319
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
320
- text: children,
321
- highlight: highlightString,
322
- caseSensitiveHighlighting: caseSensitiveHighlighting,
323
- highlightClassName: highlightedTextClassName,
324
- highlightWithBackground: highlightWithBackground
325
- }) : children);
343
+ ref: ref,
344
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
345
+ text: children,
346
+ highlight: highlightString,
347
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
348
+ highlightClassName: highlightedTextClassName,
349
+ highlightWithBackground: highlightWithBackground
350
+ }) : children
351
+ });
326
352
  });
327
353
  const ButtonTextMediumUnderline = exports.ButtonTextMediumUnderline = /*#__PURE__*/React.forwardRef((_ref13, ref) => {
328
354
  let {
@@ -335,16 +361,18 @@ const ButtonTextMediumUnderline = exports.ButtonTextMediumUnderline = /*#__PURE_
335
361
  highlightWithBackground,
336
362
  ...props
337
363
  } = _ref13;
338
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
364
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
365
+ ...props,
339
366
  className: (0, _classify.default)(_typographyModule.default.buttonTextMedium, _typographyModule.default.underline, _typographyModule.default[color], className),
340
- ref: ref
341
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
342
- text: children,
343
- highlight: highlightString,
344
- caseSensitiveHighlighting: caseSensitiveHighlighting,
345
- highlightClassName: highlightedTextClassName,
346
- highlightWithBackground: highlightWithBackground
347
- }) : children);
367
+ ref: ref,
368
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
369
+ text: children,
370
+ highlight: highlightString,
371
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
372
+ highlightClassName: highlightedTextClassName,
373
+ highlightWithBackground: highlightWithBackground
374
+ }) : children
375
+ });
348
376
  });
349
377
  const ButtonTextSmallUnderline = exports.ButtonTextSmallUnderline = /*#__PURE__*/React.forwardRef((_ref14, ref) => {
350
378
  let {
@@ -357,16 +385,18 @@ const ButtonTextSmallUnderline = exports.ButtonTextSmallUnderline = /*#__PURE__*
357
385
  highlightWithBackground,
358
386
  ...props
359
387
  } = _ref14;
360
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
388
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
389
+ ...props,
361
390
  className: (0, _classify.default)(_typographyModule.default.buttonTextSmall, _typographyModule.default.underline, _typographyModule.default[color], className),
362
- ref: ref
363
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
364
- text: children,
365
- highlight: highlightString,
366
- caseSensitiveHighlighting: caseSensitiveHighlighting,
367
- highlightClassName: highlightedTextClassName,
368
- highlightWithBackground: highlightWithBackground
369
- }) : children);
391
+ ref: ref,
392
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
393
+ text: children,
394
+ highlight: highlightString,
395
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
396
+ highlightClassName: highlightedTextClassName,
397
+ highlightWithBackground: highlightWithBackground
398
+ }) : children
399
+ });
370
400
  });
371
401
  const ButtonTextExtraSmallUnderline = exports.ButtonTextExtraSmallUnderline = /*#__PURE__*/React.forwardRef((_ref15, ref) => {
372
402
  let {
@@ -379,16 +409,18 @@ const ButtonTextExtraSmallUnderline = exports.ButtonTextExtraSmallUnderline = /*
379
409
  highlightWithBackground,
380
410
  ...props
381
411
  } = _ref15;
382
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
412
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
413
+ ...props,
383
414
  className: (0, _classify.default)(_typographyModule.default.buttonTextExtraSmall, _typographyModule.default.underline, _typographyModule.default[color], className),
384
- ref: ref
385
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
386
- text: children,
387
- highlight: highlightString,
388
- caseSensitiveHighlighting: caseSensitiveHighlighting,
389
- highlightClassName: highlightedTextClassName,
390
- highlightWithBackground: highlightWithBackground
391
- }) : children);
415
+ ref: ref,
416
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
417
+ text: children,
418
+ highlight: highlightString,
419
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
420
+ highlightClassName: highlightedTextClassName,
421
+ highlightWithBackground: highlightWithBackground
422
+ }) : children
423
+ });
392
424
  });
393
425
  const FormInputMedium = exports.FormInputMedium = /*#__PURE__*/React.forwardRef((_ref16, ref) => {
394
426
  let {
@@ -401,16 +433,18 @@ const FormInputMedium = exports.FormInputMedium = /*#__PURE__*/React.forwardRef(
401
433
  highlightWithBackground,
402
434
  ...props
403
435
  } = _ref16;
404
- return /*#__PURE__*/React.createElement("p", _extends({}, props, {
436
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("p", {
437
+ ...props,
405
438
  className: (0, _classify.default)(_typographyModule.default.formInputMedium, _typographyModule.default[color], className),
406
- ref: ref
407
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
408
- text: children,
409
- highlight: highlightString,
410
- caseSensitiveHighlighting: caseSensitiveHighlighting,
411
- highlightClassName: highlightedTextClassName,
412
- highlightWithBackground: highlightWithBackground
413
- }) : children);
439
+ ref: ref,
440
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
441
+ text: children,
442
+ highlight: highlightString,
443
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
444
+ highlightClassName: highlightedTextClassName,
445
+ highlightWithBackground: highlightWithBackground
446
+ }) : children
447
+ });
414
448
  });
415
449
  const FormInputSmall = exports.FormInputSmall = /*#__PURE__*/React.forwardRef((_ref17, ref) => {
416
450
  let {
@@ -423,16 +457,18 @@ const FormInputSmall = exports.FormInputSmall = /*#__PURE__*/React.forwardRef((_
423
457
  highlightWithBackground,
424
458
  ...props
425
459
  } = _ref17;
426
- return /*#__PURE__*/React.createElement("p", _extends({}, props, {
460
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("p", {
461
+ ...props,
427
462
  className: (0, _classify.default)(_typographyModule.default.formInputSmall, _typographyModule.default[color], className),
428
- ref: ref
429
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
430
- text: children,
431
- highlight: highlightString,
432
- caseSensitiveHighlighting: caseSensitiveHighlighting,
433
- highlightClassName: highlightedTextClassName,
434
- highlightWithBackground: highlightWithBackground
435
- }) : children);
463
+ ref: ref,
464
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
465
+ text: children,
466
+ highlight: highlightString,
467
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
468
+ highlightClassName: highlightedTextClassName,
469
+ highlightWithBackground: highlightWithBackground
470
+ }) : children
471
+ });
436
472
  });
437
473
  const BodyLarge = exports.BodyLarge = /*#__PURE__*/React.forwardRef((_ref18, ref) => {
438
474
  let {
@@ -445,16 +481,18 @@ const BodyLarge = exports.BodyLarge = /*#__PURE__*/React.forwardRef((_ref18, ref
445
481
  highlightWithBackground,
446
482
  ...props
447
483
  } = _ref18;
448
- return /*#__PURE__*/React.createElement("p", _extends({}, props, {
484
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("p", {
485
+ ...props,
449
486
  className: (0, _classify.default)(_typographyModule.default.bodyLarge, _typographyModule.default[color], className),
450
- ref: ref
451
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
452
- text: children,
453
- highlight: highlightString,
454
- caseSensitiveHighlighting: caseSensitiveHighlighting,
455
- highlightClassName: highlightedTextClassName,
456
- highlightWithBackground: highlightWithBackground
457
- }) : children);
487
+ ref: ref,
488
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
489
+ text: children,
490
+ highlight: highlightString,
491
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
492
+ highlightClassName: highlightedTextClassName,
493
+ highlightWithBackground: highlightWithBackground
494
+ }) : children
495
+ });
458
496
  });
459
497
  const BodyMedium = exports.BodyMedium = /*#__PURE__*/React.forwardRef((_ref19, ref) => {
460
498
  let {
@@ -467,16 +505,18 @@ const BodyMedium = exports.BodyMedium = /*#__PURE__*/React.forwardRef((_ref19, r
467
505
  highlightWithBackground,
468
506
  ...props
469
507
  } = _ref19;
470
- return /*#__PURE__*/React.createElement("p", _extends({}, props, {
508
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("p", {
509
+ ...props,
471
510
  className: (0, _classify.default)(_typographyModule.default.bodyMedium, _typographyModule.default[color], className),
472
- ref: ref
473
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
474
- text: children,
475
- highlight: highlightString,
476
- caseSensitiveHighlighting: caseSensitiveHighlighting,
477
- highlightClassName: highlightedTextClassName,
478
- highlightWithBackground: highlightWithBackground
479
- }) : children);
511
+ ref: ref,
512
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
513
+ text: children,
514
+ highlight: highlightString,
515
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
516
+ highlightClassName: highlightedTextClassName,
517
+ highlightWithBackground: highlightWithBackground
518
+ }) : children
519
+ });
480
520
  });
481
521
  const BodySmall = exports.BodySmall = /*#__PURE__*/React.forwardRef((_ref20, ref) => {
482
522
  let {
@@ -489,16 +529,18 @@ const BodySmall = exports.BodySmall = /*#__PURE__*/React.forwardRef((_ref20, ref
489
529
  highlightWithBackground,
490
530
  ...props
491
531
  } = _ref20;
492
- return /*#__PURE__*/React.createElement("p", _extends({}, props, {
532
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("p", {
533
+ ...props,
493
534
  className: (0, _classify.default)(_typographyModule.default.bodySmall, _typographyModule.default[color], className),
494
- ref: ref
495
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
496
- text: children,
497
- highlight: highlightString,
498
- caseSensitiveHighlighting: caseSensitiveHighlighting,
499
- highlightClassName: highlightedTextClassName,
500
- highlightWithBackground: highlightWithBackground
501
- }) : children);
535
+ ref: ref,
536
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
537
+ text: children,
538
+ highlight: highlightString,
539
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
540
+ highlightClassName: highlightedTextClassName,
541
+ highlightWithBackground: highlightWithBackground
542
+ }) : children
543
+ });
502
544
  });
503
545
  const BodyLargeBold = exports.BodyLargeBold = /*#__PURE__*/React.forwardRef((_ref21, ref) => {
504
546
  let {
@@ -511,16 +553,18 @@ const BodyLargeBold = exports.BodyLargeBold = /*#__PURE__*/React.forwardRef((_re
511
553
  highlightWithBackground,
512
554
  ...props
513
555
  } = _ref21;
514
- return /*#__PURE__*/React.createElement("p", _extends({}, props, {
556
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("p", {
557
+ ...props,
515
558
  className: (0, _classify.default)(_typographyModule.default.bodyLarge, _typographyModule.default.bold, _typographyModule.default[color], className),
516
- ref: ref
517
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
518
- text: children,
519
- highlight: highlightString,
520
- caseSensitiveHighlighting: caseSensitiveHighlighting,
521
- highlightClassName: highlightedTextClassName,
522
- highlightWithBackground: highlightWithBackground
523
- }) : children);
559
+ ref: ref,
560
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
561
+ text: children,
562
+ highlight: highlightString,
563
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
564
+ highlightClassName: highlightedTextClassName,
565
+ highlightWithBackground: highlightWithBackground
566
+ }) : children
567
+ });
524
568
  });
525
569
  const BodyMediumBold = exports.BodyMediumBold = /*#__PURE__*/React.forwardRef((_ref22, ref) => {
526
570
  let {
@@ -533,16 +577,18 @@ const BodyMediumBold = exports.BodyMediumBold = /*#__PURE__*/React.forwardRef((_
533
577
  highlightWithBackground,
534
578
  ...props
535
579
  } = _ref22;
536
- return /*#__PURE__*/React.createElement("p", _extends({}, props, {
580
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("p", {
581
+ ...props,
537
582
  className: (0, _classify.default)(_typographyModule.default.bodyMedium, _typographyModule.default.bold, _typographyModule.default[color], className),
538
- ref: ref
539
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
540
- text: children,
541
- highlight: highlightString,
542
- caseSensitiveHighlighting: caseSensitiveHighlighting,
543
- highlightClassName: highlightedTextClassName,
544
- highlightWithBackground: highlightWithBackground
545
- }) : children);
583
+ ref: ref,
584
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
585
+ text: children,
586
+ highlight: highlightString,
587
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
588
+ highlightClassName: highlightedTextClassName,
589
+ highlightWithBackground: highlightWithBackground
590
+ }) : children
591
+ });
546
592
  });
547
593
  const BodySmallBold = exports.BodySmallBold = /*#__PURE__*/React.forwardRef((_ref23, ref) => {
548
594
  let {
@@ -555,16 +601,18 @@ const BodySmallBold = exports.BodySmallBold = /*#__PURE__*/React.forwardRef((_re
555
601
  highlightWithBackground,
556
602
  ...props
557
603
  } = _ref23;
558
- return /*#__PURE__*/React.createElement("p", _extends({}, props, {
604
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("p", {
605
+ ...props,
559
606
  className: (0, _classify.default)(_typographyModule.default.bodySmall, _typographyModule.default.bold, _typographyModule.default[color], className),
560
- ref: ref
561
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
562
- text: children,
563
- highlight: highlightString,
564
- caseSensitiveHighlighting: caseSensitiveHighlighting,
565
- highlightClassName: highlightedTextClassName,
566
- highlightWithBackground: highlightWithBackground
567
- }) : children);
607
+ ref: ref,
608
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
609
+ text: children,
610
+ highlight: highlightString,
611
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
612
+ highlightClassName: highlightedTextClassName,
613
+ highlightWithBackground: highlightWithBackground
614
+ }) : children
615
+ });
568
616
  });
569
617
  const FormLabelMedium = exports.FormLabelMedium = /*#__PURE__*/React.forwardRef((_ref24, ref) => {
570
618
  let {
@@ -577,16 +625,18 @@ const FormLabelMedium = exports.FormLabelMedium = /*#__PURE__*/React.forwardRef(
577
625
  highlightWithBackground,
578
626
  ...props
579
627
  } = _ref24;
580
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
628
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
629
+ ...props,
581
630
  className: (0, _classify.default)(_typographyModule.default.formLabelMedium, _typographyModule.default[color], className),
582
- ref: ref
583
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
584
- text: children,
585
- highlight: highlightString,
586
- caseSensitiveHighlighting: caseSensitiveHighlighting,
587
- highlightClassName: highlightedTextClassName,
588
- highlightWithBackground: highlightWithBackground
589
- }) : children);
631
+ ref: ref,
632
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
633
+ text: children,
634
+ highlight: highlightString,
635
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
636
+ highlightClassName: highlightedTextClassName,
637
+ highlightWithBackground: highlightWithBackground
638
+ }) : children
639
+ });
590
640
  });
591
641
  const FormLabelSmall = exports.FormLabelSmall = /*#__PURE__*/React.forwardRef((_ref25, ref) => {
592
642
  let {
@@ -599,14 +649,16 @@ const FormLabelSmall = exports.FormLabelSmall = /*#__PURE__*/React.forwardRef((_
599
649
  highlightWithBackground,
600
650
  ...props
601
651
  } = _ref25;
602
- return /*#__PURE__*/React.createElement("span", _extends({}, props, {
652
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
653
+ ...props,
603
654
  className: (0, _classify.default)(_typographyModule.default.formLabelSmall, _typographyModule.default[color], className),
604
- ref: ref
605
- }), !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/React.createElement(HighlightText, {
606
- text: children,
607
- highlight: highlightString,
608
- caseSensitiveHighlighting: caseSensitiveHighlighting,
609
- highlightClassName: highlightedTextClassName,
610
- highlightWithBackground: highlightWithBackground
611
- }) : children);
655
+ ref: ref,
656
+ children: !!highlightString?.length && typeof children === 'string' ? /*#__PURE__*/(0, _jsxRuntime.jsx)(HighlightText, {
657
+ text: children,
658
+ highlight: highlightString,
659
+ caseSensitiveHighlighting: caseSensitiveHighlighting,
660
+ highlightClassName: highlightedTextClassName,
661
+ highlightWithBackground: highlightWithBackground
662
+ }) : children
663
+ });
612
664
  });