@luscii-healthtech/web-ui 0.0.0-alpha.ccdf511 → 0.0.0-alpha.d330180

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 (1140) hide show
  1. package/README.md +69 -1
  2. package/dist/.storybook/constants.d.ts +35 -0
  3. package/dist/.storybook/decorators.d.ts +31 -0
  4. package/dist/codemods/v48-tag-props-update.d.ts +2 -0
  5. package/dist/codemods/v48-tag-props-update.js +163 -0
  6. package/dist/index.development.js +5119 -3957
  7. package/dist/index.development.js.map +1 -1
  8. package/dist/index.js +1 -1
  9. package/dist/index.js.map +1 -1
  10. package/dist/src/components/Accordion/Accordion.d.ts +15 -0
  11. package/dist/src/components/Accordion/AccordionItem.d.ts +17 -0
  12. package/dist/src/components/AccordionList/AccordionList.d.ts +54 -0
  13. package/dist/src/components/AccordionList/subcomponents/AccordionListActions.d.ts +18 -0
  14. package/dist/src/components/ActionController/ActionController.d.ts +38 -0
  15. package/dist/src/components/Alerts/AlertWidget.d.ts +20 -0
  16. package/dist/src/components/AsideLayout/AsideLayout.d.ts +7 -0
  17. package/dist/src/components/Avatar/Avatar.d.ts +53 -0
  18. package/dist/src/components/Avatar/AvatarGroup.d.ts +31 -0
  19. package/dist/src/components/Badge/Badge.d.ts +11 -0
  20. package/dist/src/components/BaseList/BaseList.d.ts +7 -0
  21. package/dist/src/components/BaseList/BaseList.types.d.ts +88 -0
  22. package/dist/src/components/BaseList/BaseListEmptyState.d.ts +7 -0
  23. package/dist/src/components/BaseList/BaseListIcon.d.ts +5 -0
  24. package/dist/src/components/BaseList/BaseListItem.d.ts +4 -0
  25. package/dist/src/components/BaseList/DraggableBaseList/DraggableBaseList.d.ts +4 -0
  26. package/dist/src/components/BaseList/DraggableBaseList/DraggableBaseListItem.d.ts +3 -0
  27. package/dist/src/components/BaseList/ListSkeleton/ListItemSkeleton.d.ts +1 -0
  28. package/dist/src/components/BaseList/ListSkeleton/ListSkeleton.d.ts +7 -0
  29. package/dist/src/components/BaseList/SortableBaseList/SortableBaseList.d.ts +4 -0
  30. package/dist/src/components/BaseList/SortableBaseList/SortableBaseListItem.d.ts +3 -0
  31. package/dist/src/components/BaseList/utils.d.ts +10 -0
  32. package/dist/src/components/Box/Box.d.ts +69 -0
  33. package/dist/src/components/Breadcrumbs/BreadcrumbItem.d.ts +4 -0
  34. package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +3 -0
  35. package/dist/src/components/Breadcrumbs/Breadcrumbs.types.d.ts +25 -0
  36. package/dist/src/components/ButtonV2/ButtonProps.type.d.ts +104 -0
  37. package/dist/src/components/ButtonV2/ButtonV2.d.ts +3 -0
  38. package/dist/src/components/ButtonV2/PrimaryButton.d.ts +3 -0
  39. package/dist/src/components/ButtonV2/PrimaryIconButton.d.ts +3 -0
  40. package/dist/src/components/ButtonV2/SecondaryButton.d.ts +3 -0
  41. package/dist/src/components/ButtonV2/SecondaryIconButton.d.ts +3 -0
  42. package/dist/src/components/ButtonV2/TertiaryButton.d.ts +3 -0
  43. package/dist/src/components/ButtonV2/TertiaryIconButton.d.ts +15 -0
  44. package/dist/src/components/Card/Actions.d.ts +2 -0
  45. package/dist/src/components/Card/Card.d.ts +78 -0
  46. package/dist/src/components/Card/Padding.d.ts +6 -0
  47. package/dist/src/components/Card/Section.d.ts +6 -0
  48. package/dist/src/components/Card/TopBar.d.ts +10 -0
  49. package/dist/src/components/Carousel/Carousel.d.ts +30 -0
  50. package/dist/src/components/CenteredHero/CenteredHero.d.ts +16 -0
  51. package/dist/src/components/ChatBubble/ChatBubble.d.ts +58 -0
  52. package/dist/src/components/CheckBoxListModal/CheckboxListModal.d.ts +35 -0
  53. package/dist/src/components/Checkbox/Checkbox.d.ts +81 -0
  54. package/dist/src/components/Checkbox/LabeledCheckbox.d.ts +75 -0
  55. package/dist/src/components/Checkbox/LabeledCheckboxCardGroup.d.ts +26 -0
  56. package/dist/src/components/Checkbox/LabeledCheckboxGroup.d.ts +23 -0
  57. package/dist/src/components/Checkbox/StyledCheckbox.d.ts +4 -0
  58. package/dist/src/components/CheckboxList/CheckboxGroup.d.ts +7 -0
  59. package/dist/src/components/CheckboxList/CheckboxList.d.ts +10 -0
  60. package/dist/src/components/CheckboxList/CheckboxList.types.d.ts +74 -0
  61. package/dist/src/components/Chip/Chip.d.ts +9 -0
  62. package/dist/src/components/Collapse/Collapse.d.ts +25 -0
  63. package/dist/src/components/ConfirmationDialog/ConfirmationDialog.d.ts +3 -0
  64. package/dist/src/components/ConfirmationDialog/ConfirmationDialogChoices.d.ts +7 -0
  65. package/dist/src/components/ConfirmationDialog/ConfirmationDialogMessage.d.ts +4 -0
  66. package/dist/src/components/ConfirmationDialog/ConfirmationDialogTitle.d.ts +3 -0
  67. package/dist/src/components/ConfirmationDialog/types/ConfirmationDialog.types.d.ts +52 -0
  68. package/dist/src/components/Container/FlexColumn.d.ts +7 -0
  69. package/dist/src/components/Container/FlexContainer.d.ts +9 -0
  70. package/dist/src/components/Container/FlexRow.d.ts +7 -0
  71. package/dist/src/components/Container/types/FlexContainerProps.type.d.ts +26 -0
  72. package/dist/src/components/DatePicker/DatePicker.d.ts +72 -0
  73. package/dist/src/components/DatePicker/LabeledDatePicker.d.ts +9 -0
  74. package/dist/src/components/DetailsDisclosure/DetailsDisclosure.d.ts +87 -0
  75. package/dist/src/components/Divider/Divider.d.ts +36 -0
  76. package/dist/src/components/DragHandle/DragHandle.d.ts +6 -0
  77. package/dist/src/components/DragHandle/DragHandle.types.d.ts +5 -0
  78. package/dist/src/components/Dropdown/Dropdown.d.ts +61 -0
  79. package/dist/src/components/Dropzone/Dropzone.d.ts +7 -0
  80. package/dist/src/components/EmptyListMessage/EmptyListMessage.d.ts +13 -0
  81. package/dist/src/components/FilePreviewModal/FilePreview.d.ts +25 -0
  82. package/dist/src/components/FileUpload/FileUpload.d.ts +36 -0
  83. package/dist/src/components/FilterBar/ActiveFilters.d.ts +9 -0
  84. package/dist/src/components/FilterBar/FilterBar.d.ts +111 -0
  85. package/dist/src/components/FilterBar/FilterBar.utils.d.ts +32 -0
  86. package/dist/src/components/FilterBar/FilterBarProps.type.d.ts +135 -0
  87. package/dist/src/components/FilterBar/FilterMenu.d.ts +10 -0
  88. package/dist/src/components/FilterBar/FiltersMenus.d.ts +11 -0
  89. package/dist/src/components/FilterBar/PresetFiltersMenu.d.ts +9 -0
  90. package/dist/src/components/FilterBar/SortMenu.d.ts +9 -0
  91. package/dist/src/components/FlyOutMenu/FlyOutMenu.d.ts +64 -0
  92. package/dist/src/components/Heading/Heading.d.ts +29 -0
  93. package/dist/src/components/HoverCard/HoverCard.d.ts +40 -0
  94. package/dist/src/components/HoverCard/index.d.ts +1 -0
  95. package/dist/src/components/HoverIndicatorControl/HoverIndicatorControl.d.ts +24 -0
  96. package/dist/src/components/Icon/Icon.d.ts +17 -0
  97. package/dist/src/components/Icons/AbsentIcon.d.ts +4 -0
  98. package/dist/src/components/Icons/AddNoteIcon.d.ts +4 -0
  99. package/dist/src/components/Icons/AlarmClockIcon.d.ts +4 -0
  100. package/dist/src/components/Icons/AmberAlertIcon.d.ts +4 -0
  101. package/dist/src/components/Icons/ArrowBackward.d.ts +4 -0
  102. package/dist/src/components/Icons/ArrowForward.d.ts +4 -0
  103. package/dist/src/components/Icons/AssignIcon.d.ts +4 -0
  104. package/dist/src/components/Icons/AssignedIcon.d.ts +4 -0
  105. package/dist/src/components/Icons/BellIcon.d.ts +4 -0
  106. package/dist/src/components/Icons/BellIconSlashed.d.ts +4 -0
  107. package/dist/src/components/Icons/BluetoothIcon.d.ts +4 -0
  108. package/dist/src/components/Icons/BrushIcon.d.ts +4 -0
  109. package/dist/src/components/Icons/CakeIcon.d.ts +4 -0
  110. package/dist/src/components/Icons/CalendarDayIcon.d.ts +4 -0
  111. package/dist/src/components/Icons/CalendarMonthIcon.d.ts +4 -0
  112. package/dist/src/components/Icons/CalendarRepeatIcon.d.ts +4 -0
  113. package/dist/src/components/Icons/ChartBarsIcon.d.ts +4 -0
  114. package/dist/src/components/Icons/ChartLineAndBarsIcon.d.ts +4 -0
  115. package/dist/src/components/Icons/ChartLineIcon.d.ts +4 -0
  116. package/dist/src/components/Icons/ChatBubbleIcon.d.ts +4 -0
  117. package/dist/src/components/Icons/ChatBubbleWithTextIcon.d.ts +4 -0
  118. package/dist/src/components/Icons/CheckIcon.d.ts +4 -0
  119. package/dist/src/components/Icons/ChevronDoubleIcon.d.ts +4 -0
  120. package/dist/src/components/Icons/ChevronDownIcon.d.ts +4 -0
  121. package/dist/src/components/Icons/ChevronLeftIcon.d.ts +4 -0
  122. package/dist/src/components/Icons/ChevronRightIcon.d.ts +4 -0
  123. package/dist/src/components/Icons/ClockIcon.d.ts +4 -0
  124. package/dist/src/components/Icons/CogwheelIcon.d.ts +4 -0
  125. package/dist/src/components/Icons/CompareIcon.d.ts +4 -0
  126. package/dist/src/components/Icons/CopyToClipboardIcon.d.ts +4 -0
  127. package/dist/src/components/Icons/CrossIcon.d.ts +4 -0
  128. package/dist/src/components/Icons/CrossInCircleIcon.d.ts +4 -0
  129. package/dist/src/components/Icons/CrossInFilledCircleIcon.d.ts +4 -0
  130. package/dist/src/components/Icons/DatabaseIcon.d.ts +4 -0
  131. package/dist/src/components/Icons/DownloadIcon.d.ts +4 -0
  132. package/dist/src/components/Icons/DragIndicatorIcon.d.ts +4 -0
  133. package/dist/src/components/Icons/EarthIcon.d.ts +4 -0
  134. package/dist/src/components/Icons/EmailIcon.d.ts +4 -0
  135. package/dist/src/components/Icons/EmojiIcon.d.ts +4 -0
  136. package/dist/src/components/Icons/EmptyIcon.d.ts +4 -0
  137. package/dist/src/components/Icons/ExclamationMarkIcon.d.ts +4 -0
  138. package/dist/src/components/Icons/ExportIcon.d.ts +4 -0
  139. package/dist/src/components/Icons/ExternalLinkIcon.d.ts +4 -0
  140. package/dist/src/components/Icons/EyeClosedIcon.d.ts +4 -0
  141. package/dist/src/components/Icons/EyeOpenIcon.d.ts +4 -0
  142. package/dist/src/components/Icons/FilterIcon.d.ts +4 -0
  143. package/dist/src/components/Icons/FireIcon.d.ts +4 -0
  144. package/dist/src/components/Icons/FirstAidKitIcon.d.ts +4 -0
  145. package/dist/src/components/Icons/FlagIcon.d.ts +4 -0
  146. package/dist/src/components/Icons/FolderIcon.d.ts +4 -0
  147. package/dist/src/components/Icons/ForwardIcon.d.ts +4 -0
  148. package/dist/src/components/Icons/GifIcon.d.ts +4 -0
  149. package/dist/src/components/Icons/GrayAlertIcon.d.ts +4 -0
  150. package/dist/src/components/Icons/GroupIcon.d.ts +4 -0
  151. package/dist/src/components/Icons/GroupOfThreeIcon.d.ts +4 -0
  152. package/dist/src/components/Icons/HamburgerIcon.d.ts +4 -0
  153. package/dist/src/components/Icons/HandUp.d.ts +4 -0
  154. package/dist/src/components/Icons/HandshakeIcon.d.ts +4 -0
  155. package/dist/src/components/Icons/HeartIcon.d.ts +4 -0
  156. package/dist/src/components/Icons/HeartMinusIcon.d.ts +4 -0
  157. package/dist/src/components/Icons/HomeIcon.d.ts +4 -0
  158. package/dist/src/components/Icons/IdBadgeIcon.d.ts +4 -0
  159. package/dist/src/components/Icons/ImageIcon.d.ts +4 -0
  160. package/dist/src/components/Icons/ImageLibraryIcon.d.ts +4 -0
  161. package/dist/src/components/Icons/InfoIcon.d.ts +4 -0
  162. package/dist/src/components/Icons/LifebuoyIcon.d.ts +4 -0
  163. package/dist/src/components/Icons/LightBulbIcon.d.ts +4 -0
  164. package/dist/src/components/Icons/LinkIcon.d.ts +4 -0
  165. package/dist/src/components/Icons/ListDescIcon.d.ts +4 -0
  166. package/dist/src/components/Icons/ListIcon.d.ts +4 -0
  167. package/dist/src/components/Icons/LockIcon.d.ts +4 -0
  168. package/dist/src/components/Icons/LogInIcon.d.ts +4 -0
  169. package/dist/src/components/Icons/LogOutIcon.d.ts +4 -0
  170. package/dist/src/components/Icons/MessageWithArrowIcon.d.ts +4 -0
  171. package/dist/src/components/Icons/MoreIcon.d.ts +4 -0
  172. package/dist/src/components/Icons/MouseIcon.d.ts +4 -0
  173. package/dist/src/components/Icons/NoteIcon.d.ts +4 -0
  174. package/dist/src/components/Icons/OpenAlertIcon.d.ts +4 -0
  175. package/dist/src/components/Icons/OpenFolderIcon.d.ts +4 -0
  176. package/dist/src/components/Icons/PageIcon.d.ts +4 -0
  177. package/dist/src/components/Icons/PageViewIcon.d.ts +4 -0
  178. package/dist/src/components/Icons/PaperclipIcon.d.ts +4 -0
  179. package/dist/src/components/Icons/PatientIcon.d.ts +4 -0
  180. package/dist/src/components/Icons/PencilIcon.d.ts +4 -0
  181. package/dist/src/components/Icons/PersonIcon.d.ts +4 -0
  182. package/dist/src/components/Icons/PhoneIcon.d.ts +4 -0
  183. package/dist/src/components/Icons/PieChartIcon.d.ts +4 -0
  184. package/dist/src/components/Icons/PinIcon.d.ts +4 -0
  185. package/dist/src/components/Icons/PlusIcon.d.ts +4 -0
  186. package/dist/src/components/Icons/PrinterIcon.d.ts +4 -0
  187. package/dist/src/components/Icons/RedAlertIcon.d.ts +4 -0
  188. package/dist/src/components/Icons/RobotIcon.d.ts +4 -0
  189. package/dist/src/components/Icons/RocketIcon.d.ts +4 -0
  190. package/dist/src/components/Icons/SearchIcon.d.ts +4 -0
  191. package/dist/src/components/Icons/SendIcon.d.ts +4 -0
  192. package/dist/src/components/Icons/ShareIcon.d.ts +4 -0
  193. package/dist/src/components/Icons/SidebarIcon.d.ts +4 -0
  194. package/dist/src/components/Icons/SmallArrowDownIcon.d.ts +4 -0
  195. package/dist/src/components/Icons/SmallArrowUpIcon.d.ts +4 -0
  196. package/dist/src/components/Icons/SmallCircleIcon.d.ts +4 -0
  197. package/dist/src/components/Icons/SmallDiamondIcon.d.ts +4 -0
  198. package/dist/src/components/Icons/SmallSquareIcon.d.ts +4 -0
  199. package/dist/src/components/Icons/SmallUpsideDownTriangleIcon.d.ts +4 -0
  200. package/dist/src/components/Icons/StarFilledIcon.d.ts +4 -0
  201. package/dist/src/components/Icons/StarIcon.d.ts +4 -0
  202. package/dist/src/components/Icons/StopwatchIcon.d.ts +4 -0
  203. package/dist/src/components/Icons/SummaryIcon.d.ts +4 -0
  204. package/dist/src/components/Icons/TadaIcon.d.ts +4 -0
  205. package/dist/src/components/Icons/ThresholdIcon.d.ts +4 -0
  206. package/dist/src/components/Icons/TrashBinIcon.d.ts +4 -0
  207. package/dist/src/components/Icons/TreeIcon.d.ts +4 -0
  208. package/dist/src/components/Icons/UnassignedIcon.d.ts +4 -0
  209. package/dist/src/components/Icons/UnlinkIcon.d.ts +4 -0
  210. package/dist/src/components/Icons/UnpinIcon.d.ts +4 -0
  211. package/dist/src/components/Icons/UploadIcon.d.ts +4 -0
  212. package/dist/src/components/Icons/VideoIcon.d.ts +4 -0
  213. package/dist/src/components/Icons/WorkflowIcon.d.ts +4 -0
  214. package/dist/src/components/Icons/iconWrapper/iconWrapper.d.ts +4 -0
  215. package/dist/src/components/Icons/index.d.ts +294 -0
  216. package/dist/src/components/Icons/special-icons/AmberAlertColoredIcon.d.ts +4 -0
  217. package/dist/src/components/Icons/special-icons/BeterDichtbijColoredIcon.d.ts +4 -0
  218. package/dist/src/components/Icons/special-icons/ChartLineColoredIcon.d.ts +4 -0
  219. package/dist/src/components/Icons/special-icons/CheckFilledColoredIcon.d.ts +4 -0
  220. package/dist/src/components/Icons/special-icons/FlagDeColoredIcon.d.ts +4 -0
  221. package/dist/src/components/Icons/special-icons/FlagFrColoredIcon.d.ts +4 -0
  222. package/dist/src/components/Icons/special-icons/FlagNlColoredIcon.d.ts +4 -0
  223. package/dist/src/components/Icons/special-icons/FlagPtColoredIcon.d.ts +4 -0
  224. package/dist/src/components/Icons/special-icons/FlagUkColoredIcon.d.ts +4 -0
  225. package/dist/src/components/Icons/special-icons/GearColoredIcon.d.ts +4 -0
  226. package/dist/src/components/Icons/special-icons/GrayAlertColoredIcon.d.ts +4 -0
  227. package/dist/src/components/Icons/special-icons/GreenAlertColoredIcon.d.ts +4 -0
  228. package/dist/src/components/Icons/special-icons/GroupColoredIcon.d.ts +4 -0
  229. package/dist/src/components/Icons/special-icons/RedAlertColoredIcon.d.ts +4 -0
  230. package/dist/src/components/Icons/special-icons/StatusActiveColoredIcon.d.ts +4 -0
  231. package/dist/src/components/Icons/special-icons/StatusAddedColoredIcon.d.ts +4 -0
  232. package/dist/src/components/Icons/special-icons/StatusBlockedColoredIcon.d.ts +4 -0
  233. package/dist/src/components/Icons/special-icons/StatusCancelledColoredIcon.d.ts +4 -0
  234. package/dist/src/components/Icons/special-icons/StatusColoredIcon.d.ts +4 -0
  235. package/dist/src/components/Icons/special-icons/StatusStoppedColoredIcon.d.ts +4 -0
  236. package/dist/src/components/Icons/special-icons/VaultColoredIcon.d.ts +4 -0
  237. package/dist/src/components/Icons/special-icons/index.d.ts +21 -0
  238. package/dist/src/components/Icons/types/IconProps.type.d.ts +18 -0
  239. package/dist/src/components/Image/Image.d.ts +17 -0
  240. package/dist/src/components/InfoField/InfoField.d.ts +28 -0
  241. package/dist/src/components/Input/Input.d.ts +55 -0
  242. package/dist/src/components/Input/LabeledInput.d.ts +24 -0
  243. package/dist/src/components/Input/StyledInput.d.ts +14 -0
  244. package/dist/src/components/InputSelect/InputSelect.d.ts +37 -0
  245. package/dist/src/components/InputSelect/InputSelect.utils.d.ts +9 -0
  246. package/dist/src/components/InputSelect/InputSelectInput.d.ts +11 -0
  247. package/dist/src/components/InputSelect/InputSelectSelect.d.ts +9 -0
  248. package/dist/src/components/Line/Line.d.ts +14 -0
  249. package/dist/src/components/Link/Link.d.ts +19 -0
  250. package/dist/src/components/List/List.d.ts +9 -0
  251. package/dist/src/components/List/List.types.d.ts +30 -0
  252. package/dist/src/components/List/ListItem.d.ts +4 -0
  253. package/dist/src/components/LoadingIndicator/LoadingIndicator.d.ts +11 -0
  254. package/dist/src/components/MediaPicker/ImageCategory.d.ts +14 -0
  255. package/dist/src/components/MediaPicker/MediaPicker.d.ts +91 -0
  256. package/dist/src/components/Modal/FullPageModal.d.ts +41 -0
  257. package/dist/src/components/Modal/FullPageModalHeader.d.ts +13 -0
  258. package/dist/src/components/Modal/Modal.d.ts +18 -0
  259. package/dist/src/components/Modal/ModalBase.d.ts +21 -0
  260. package/dist/src/components/Modal/ModalFooter.d.ts +27 -0
  261. package/dist/src/components/Modal/ModalHeader.d.ts +6 -0
  262. package/dist/src/components/Modal/subcomponents/FullPageModalActions.d.ts +18 -0
  263. package/dist/src/components/ModalDialog/ModalDialog.d.ts +111 -0
  264. package/dist/src/components/ModalDialog/use-on-close-animation-finished.d.ts +8 -0
  265. package/dist/src/components/NaturalLanguageForm/NaturalLanguageForm.d.ts +77 -0
  266. package/dist/src/components/NaturalLanguageForm/NaturalLanguageFormContext.d.ts +8 -0
  267. package/dist/src/components/NaturalLanguageForm/NaturalLanguageFormInput.d.ts +11 -0
  268. package/dist/src/components/NaturalLanguageForm/NaturalLanguageFormInputSelect.d.ts +21 -0
  269. package/dist/src/components/NaturalLanguageForm/NaturalLanguageFormSelect.d.ts +9 -0
  270. package/dist/src/components/NaturalLanguageForm/NaturalLanguageFormText.d.ts +8 -0
  271. package/dist/src/components/NavMenu/NavLayout.d.ts +47 -0
  272. package/dist/src/components/NotificationBanner/NotificationBanner.d.ts +35 -0
  273. package/dist/src/components/Page/CRUDPage.d.ts +4 -0
  274. package/dist/src/components/Page/CRUDPage.types.d.ts +83 -0
  275. package/dist/src/components/Page/Page.d.ts +56 -0
  276. package/dist/src/components/PageHeader/PageHeader.d.ts +4 -0
  277. package/dist/src/components/PageHeader/PageHeader.types.d.ts +46 -0
  278. package/dist/src/components/PageWithCenteredContentLayout/PageWithCenteredContentLayout.d.ts +28 -0
  279. package/dist/src/components/PaginationMenu/PaginationMenu.d.ts +2 -0
  280. package/dist/src/components/PaginationMenu/PaginationMenu.types.d.ts +62 -0
  281. package/dist/src/components/PaginationMenu/PaginationMenu.utils.d.ts +15 -0
  282. package/dist/src/components/PaginationMenu/PaginationMenuCursor.d.ts +3 -0
  283. package/dist/src/components/PaginationMenu/PaginationMenuLarge.d.ts +3 -0
  284. package/dist/src/components/PaginationMenu/PaginationMenuSmall.d.ts +2 -0
  285. package/dist/src/components/PreviewPhone/PreviewPhone.d.ts +7 -0
  286. package/dist/src/components/PreviewPhone/useWindowDimensions.d.ts +4 -0
  287. package/dist/src/components/PrimaryTabBar/PrimaryTabBar.d.ts +48 -0
  288. package/dist/src/components/PrimaryTabBar/PrimaryTabBarContent.d.ts +5 -0
  289. package/dist/src/components/PrimaryTabBar/PrimaryTabBarExtras.d.ts +5 -0
  290. package/dist/src/components/PrimaryTabBar/PrimaryTabBarList.d.ts +5 -0
  291. package/dist/src/components/PrimaryTabBar/PrimaryTabBarOverflowIndicator.d.ts +7 -0
  292. package/dist/src/components/PrimaryTabBar/PrimaryTabBarRoot.d.ts +5 -0
  293. package/dist/src/components/PrimaryTabBar/PrimaryTabBarTrigger.d.ts +7 -0
  294. package/dist/src/components/Radio/LabeledRadio.d.ts +67 -0
  295. package/dist/src/components/Radio/LabeledRadioCard.d.ts +69 -0
  296. package/dist/src/components/Radio/LabeledRadioCardGroup.d.ts +28 -0
  297. package/dist/src/components/Radio/LabeledRadioGroup.d.ts +23 -0
  298. package/dist/src/components/Radio/RadioV2.d.ts +23 -0
  299. package/dist/src/components/Radio/StyledRadio.d.ts +4 -0
  300. package/dist/src/components/RadioGroup/RadioGroupV2.d.ts +23 -0
  301. package/dist/src/components/RangeCoverage/RangeCoverage.d.ts +99 -0
  302. package/dist/src/components/Section/Section.d.ts +29 -0
  303. package/dist/src/components/Section/SectionItem.d.ts +9 -0
  304. package/dist/src/components/Section/SectionItemWithContent.d.ts +8 -0
  305. package/dist/src/components/Section/subcomponents/SectionActions.d.ts +21 -0
  306. package/dist/src/components/Section/subcomponents/SectionFooter.d.ts +6 -0
  307. package/dist/src/components/Section/subcomponents/SectionHeader.d.ts +8 -0
  308. package/dist/src/components/Select/LabeledSelect.d.ts +22 -0
  309. package/dist/src/components/Select/Select.d.ts +49 -0
  310. package/dist/src/components/Select/Select.types.d.ts +4 -0
  311. package/dist/src/components/Select/SelectDropdownIndicator.d.ts +3 -0
  312. package/dist/src/components/Select/SelectLoadingIndicator.d.ts +3 -0
  313. package/dist/src/components/Select/StyledSelect.d.ts +12 -0
  314. package/dist/src/components/SettingsMenuButton/SettingsMenuButton.d.ts +19 -0
  315. package/dist/src/components/Skeleton/Skeleton.d.ts +9 -0
  316. package/dist/src/components/Spinner/Spinner.d.ts +6 -0
  317. package/dist/src/components/SplitViewLayout/SplitViewLayout.d.ts +20 -0
  318. package/dist/src/components/Stack/Stack.d.ts +55 -0
  319. package/dist/src/components/StatusIndicator/StatusIndicator.d.ts +16 -0
  320. package/dist/src/components/Steps/Steps.d.ts +11 -0
  321. package/dist/src/components/Steps/subcomponents/Step.d.ts +7 -0
  322. package/dist/src/components/StyledLists/StyledBaseList.d.ts +33 -0
  323. package/dist/src/components/StyledLists/StyledOrderedList.d.ts +25 -0
  324. package/dist/src/components/StyledLists/StyledUnorderedList.d.ts +43 -0
  325. package/dist/src/components/Switch/Switch.d.ts +23 -0
  326. package/dist/src/components/Switcher/Switcher.d.ts +26 -0
  327. package/dist/src/components/Switcher/SwitcherItem.d.ts +24 -0
  328. package/dist/src/components/Tabbar/Tabbar.d.ts +20 -0
  329. package/dist/src/components/Tabbar/TabbarItem.d.ts +15 -0
  330. package/dist/src/components/Table/Table.d.ts +55 -0
  331. package/dist/src/components/Table/Table.types.d.ts +41 -0
  332. package/dist/src/components/Table/Table.utils.d.ts +58 -0
  333. package/dist/src/components/Table/TableBody.d.ts +32 -0
  334. package/dist/src/components/Table/TableBodyRowDataCell.d.ts +7 -0
  335. package/dist/src/components/Table/TableFooter.d.ts +7 -0
  336. package/dist/src/components/Table/TableHeader.d.ts +18 -0
  337. package/dist/src/components/TableNew/TableNew.d.ts +71 -0
  338. package/dist/src/components/TableNew/index.d.ts +1 -0
  339. package/dist/src/components/Tabs/Tabs.d.ts +50 -0
  340. package/dist/src/components/Tabs/index.d.ts +1 -0
  341. package/dist/src/components/Tag/Tag.d.ts +18 -0
  342. package/dist/src/components/Tag/TagGroup.d.ts +23 -0
  343. package/dist/src/components/Text/Text.d.ts +199 -0
  344. package/dist/src/components/TextEditor/LinkTooltip.d.ts +9 -0
  345. package/dist/src/components/TextEditor/TextEditor.d.ts +64 -0
  346. package/dist/src/components/TextEditor/TextEditorToolbar.d.ts +13 -0
  347. package/dist/src/components/TextEditor/TextEditorToolbarButton.d.ts +8 -0
  348. package/dist/src/components/TextLink/TextLink.d.ts +13 -0
  349. package/dist/src/components/Textarea/Textarea.d.ts +30 -0
  350. package/dist/src/components/Timeline/Timeline.d.ts +13 -0
  351. package/dist/src/components/Timeline/TimelineHeader.d.ts +10 -0
  352. package/dist/src/components/Timeline/TimelineStep.d.ts +10 -0
  353. package/dist/src/components/TimelineCard/LoadingState.d.ts +1 -0
  354. package/dist/src/components/TimelineCard/TimelineCard.d.ts +52 -0
  355. package/dist/src/components/TimelineCardLayout/TimelineCardLayout.d.ts +18 -0
  356. package/dist/src/components/Title/PageTitle.d.ts +6 -0
  357. package/dist/src/components/Title/Title.d.ts +44 -0
  358. package/dist/src/components/Toaster/Toaster.d.ts +3 -0
  359. package/dist/src/components/Toaster/ToasterPanel.d.ts +15 -0
  360. package/dist/src/components/Tooltip/Tooltip.d.ts +42 -0
  361. package/dist/src/components/Tooltip/index.d.ts +3 -0
  362. package/dist/src/components/UnorderedList/UnorderedList.d.ts +63 -0
  363. package/dist/src/components/VerticalMenu/VerticalMenu.d.ts +125 -0
  364. package/dist/src/components/WeekdaysPicker/WeekdaysPicker.d.ts +42 -0
  365. package/dist/src/components/forms/shared/HelperAndErrorText.d.ts +13 -0
  366. package/dist/src/components/forms/shared/LabelText.d.ts +5 -0
  367. package/dist/src/context/LocaleContext.d.ts +3 -0
  368. package/dist/src/generated/components/Accordion/Accordion.d.ts +15 -0
  369. package/dist/src/generated/components/Accordion/AccordionItem.d.ts +17 -0
  370. package/dist/src/generated/components/AccordionList/AccordionList.d.ts +54 -0
  371. package/dist/src/generated/components/AccordionList/subcomponents/AccordionListActions.d.ts +18 -0
  372. package/dist/src/generated/components/ActionController/ActionController.d.ts +38 -0
  373. package/dist/src/generated/components/Alerts/AlertWidget.d.ts +20 -0
  374. package/dist/src/generated/components/AsideLayout/AsideLayout.d.ts +7 -0
  375. package/dist/src/generated/components/Avatar/Avatar.d.ts +53 -0
  376. package/dist/src/generated/components/Avatar/AvatarGroup.d.ts +31 -0
  377. package/dist/src/generated/components/Badge/Badge.d.ts +11 -0
  378. package/dist/src/generated/components/BaseList/BaseList.d.ts +7 -0
  379. package/dist/src/generated/components/BaseList/BaseList.types.d.ts +88 -0
  380. package/dist/src/generated/components/BaseList/BaseListEmptyState.d.ts +7 -0
  381. package/dist/src/generated/components/BaseList/BaseListHeader.d.ts +4 -0
  382. package/dist/src/generated/components/BaseList/BaseListIcon.d.ts +5 -0
  383. package/dist/src/generated/components/BaseList/BaseListItem.d.ts +4 -0
  384. package/dist/src/generated/components/BaseList/DraggableBaseList/DraggableBaseList.d.ts +4 -0
  385. package/dist/src/generated/components/BaseList/DraggableBaseList/DraggableBaseListItem.d.ts +3 -0
  386. package/dist/src/generated/components/BaseList/DraggableBaseList/index.d.ts +2 -0
  387. package/dist/src/generated/components/BaseList/ListSkeleton/ListItemSkeleton.d.ts +1 -0
  388. package/dist/src/generated/components/BaseList/ListSkeleton/ListSkeleton.d.ts +7 -0
  389. package/dist/src/generated/components/BaseList/SortableBaseList/SortableBaseList.d.ts +4 -0
  390. package/dist/src/generated/components/BaseList/SortableBaseList/SortableBaseListItem.d.ts +3 -0
  391. package/dist/src/generated/components/BaseList/SortableBaseList/index.d.ts +2 -0
  392. package/dist/src/generated/components/BaseList/index.d.ts +6 -0
  393. package/dist/src/generated/components/BaseList/utils.d.ts +10 -0
  394. package/dist/src/generated/components/Box/Box.d.ts +69 -0
  395. package/dist/src/generated/components/Breadcrumbs/BreadcrumbItem.d.ts +4 -0
  396. package/dist/src/generated/components/Breadcrumbs/Breadcrumbs.d.ts +3 -0
  397. package/dist/src/generated/components/Breadcrumbs/Breadcrumbs.types.d.ts +25 -0
  398. package/dist/src/generated/components/Breadcrumbs/index.d.ts +2 -0
  399. package/dist/src/generated/components/ButtonV2/ButtonProps.type.d.ts +104 -0
  400. package/dist/src/generated/components/ButtonV2/ButtonV2.d.ts +3 -0
  401. package/dist/src/generated/components/ButtonV2/PrimaryButton.d.ts +3 -0
  402. package/dist/src/generated/components/ButtonV2/PrimaryIconButton.d.ts +3 -0
  403. package/dist/src/generated/components/ButtonV2/SecondaryButton.d.ts +3 -0
  404. package/dist/src/generated/components/ButtonV2/SecondaryIconButton.d.ts +3 -0
  405. package/dist/src/generated/components/ButtonV2/TertiaryButton.d.ts +3 -0
  406. package/dist/src/generated/components/ButtonV2/TertiaryIconButton.d.ts +15 -0
  407. package/dist/src/generated/components/Card/Actions.d.ts +2 -0
  408. package/dist/src/generated/components/Card/Card.d.ts +78 -0
  409. package/dist/src/generated/components/Card/Padding.d.ts +6 -0
  410. package/dist/src/generated/components/Card/Section.d.ts +6 -0
  411. package/dist/src/generated/components/Card/TopBar.d.ts +10 -0
  412. package/dist/src/generated/components/Carousel/Carousel.d.ts +30 -0
  413. package/dist/src/generated/components/CenteredHero/CenteredHero.d.ts +16 -0
  414. package/dist/src/generated/components/ChatBubble/ChatBubble.d.ts +58 -0
  415. package/dist/src/generated/components/CheckBoxListModal/CheckboxListModal.d.ts +35 -0
  416. package/dist/src/generated/components/Checkbox/Checkbox.d.ts +81 -0
  417. package/dist/src/generated/components/Checkbox/LabeledCheckbox.d.ts +75 -0
  418. package/dist/src/generated/components/Checkbox/LabeledCheckboxCardGroup.d.ts +26 -0
  419. package/dist/src/generated/components/Checkbox/LabeledCheckboxGroup.d.ts +23 -0
  420. package/dist/src/generated/components/Checkbox/StyledCheckbox.d.ts +4 -0
  421. package/dist/src/generated/components/CheckboxList/CheckboxGroup.d.ts +7 -0
  422. package/dist/src/generated/components/CheckboxList/CheckboxList.d.ts +10 -0
  423. package/dist/src/generated/components/CheckboxList/CheckboxList.types.d.ts +74 -0
  424. package/dist/src/generated/components/Chip/Chip.d.ts +9 -0
  425. package/dist/src/generated/components/Collapse/Collapse.d.ts +25 -0
  426. package/dist/src/generated/components/ConfirmationDialog/ConfirmationDialog.d.ts +3 -0
  427. package/dist/src/generated/components/ConfirmationDialog/ConfirmationDialogChoices.d.ts +7 -0
  428. package/dist/src/generated/components/ConfirmationDialog/ConfirmationDialogMessage.d.ts +4 -0
  429. package/dist/src/generated/components/ConfirmationDialog/ConfirmationDialogTitle.d.ts +3 -0
  430. package/dist/src/generated/components/ConfirmationDialog/types/ConfirmationDialog.types.d.ts +52 -0
  431. package/dist/src/generated/components/Container/FlexColumn.d.ts +7 -0
  432. package/dist/src/generated/components/Container/FlexContainer.d.ts +9 -0
  433. package/dist/src/generated/components/Container/FlexRow.d.ts +7 -0
  434. package/dist/src/generated/components/Container/types/FlexContainerProps.type.d.ts +26 -0
  435. package/dist/src/generated/components/DatePicker/DatePicker.d.ts +72 -0
  436. package/dist/src/generated/components/DatePicker/LabeledDatePicker.d.ts +9 -0
  437. package/dist/src/generated/components/DetailsDisclosure/DetailsDisclosure.d.ts +87 -0
  438. package/dist/src/generated/components/Divider/Divider.d.ts +36 -0
  439. package/dist/src/generated/components/DragHandle/DragHandle.d.ts +6 -0
  440. package/dist/src/generated/components/DragHandle/DragHandle.types.d.ts +5 -0
  441. package/dist/src/generated/components/DragHandle/index.d.ts +2 -0
  442. package/dist/src/generated/components/Dropdown/Dropdown.d.ts +61 -0
  443. package/dist/src/generated/components/Dropzone/Dropzone.d.ts +7 -0
  444. package/dist/src/generated/components/EmptyListMessage/EmptyListMessage.d.ts +13 -0
  445. package/dist/src/generated/components/FilePreviewModal/FilePreview.d.ts +25 -0
  446. package/dist/src/generated/components/FileUpload/FileUpload.d.ts +36 -0
  447. package/dist/src/generated/components/FilterBar/ActiveFilters.d.ts +9 -0
  448. package/dist/src/generated/components/FilterBar/FilterBar.d.ts +111 -0
  449. package/dist/src/generated/components/FilterBar/FilterBar.utils.d.ts +32 -0
  450. package/dist/src/generated/components/FilterBar/FilterBarProps.type.d.ts +135 -0
  451. package/dist/src/generated/components/FilterBar/FilterMenu.d.ts +10 -0
  452. package/dist/src/generated/components/FilterBar/FiltersMenus.d.ts +11 -0
  453. package/dist/src/generated/components/FilterBar/PresetFiltersMenu.d.ts +9 -0
  454. package/dist/src/generated/components/FilterBar/SortMenu.d.ts +9 -0
  455. package/dist/src/generated/components/FilterBar/index.d.ts +2 -0
  456. package/dist/src/generated/components/FlyOutMenu/FlyOutMenu.d.ts +64 -0
  457. package/dist/src/generated/components/Heading/Heading.d.ts +29 -0
  458. package/dist/src/generated/components/HoverCard/HoverCard.d.ts +40 -0
  459. package/dist/src/generated/components/HoverCard/index.d.ts +1 -0
  460. package/dist/src/generated/components/HoverIndicatorControl/HoverIndicatorControl.d.ts +24 -0
  461. package/dist/src/generated/components/Icon/Icon.d.ts +17 -0
  462. package/dist/src/generated/components/Icon/index.d.ts +1 -0
  463. package/dist/src/generated/components/Icons/AbsentIcon.d.ts +4 -0
  464. package/dist/src/generated/components/Icons/AddNoteIcon.d.ts +4 -0
  465. package/dist/src/generated/components/Icons/AlarmClockIcon.d.ts +4 -0
  466. package/dist/src/generated/components/Icons/AmberAlertIcon.d.ts +4 -0
  467. package/dist/src/generated/components/Icons/ArrowBackward.d.ts +4 -0
  468. package/dist/src/generated/components/Icons/ArrowForward.d.ts +4 -0
  469. package/dist/src/generated/components/Icons/AssignIcon.d.ts +4 -0
  470. package/dist/src/generated/components/Icons/AssignedIcon.d.ts +4 -0
  471. package/dist/src/generated/components/Icons/BellIcon.d.ts +4 -0
  472. package/dist/src/generated/components/Icons/BellIconSlashed.d.ts +4 -0
  473. package/dist/src/generated/components/Icons/BluetoothIcon.d.ts +4 -0
  474. package/dist/src/generated/components/Icons/BrushIcon.d.ts +4 -0
  475. package/dist/src/generated/components/Icons/CakeIcon.d.ts +4 -0
  476. package/dist/src/generated/components/Icons/CalendarDayIcon.d.ts +4 -0
  477. package/dist/src/generated/components/Icons/CalendarMonthIcon.d.ts +4 -0
  478. package/dist/src/generated/components/Icons/CalendarRepeatIcon.d.ts +4 -0
  479. package/dist/src/generated/components/Icons/ChartBarsIcon.d.ts +4 -0
  480. package/dist/src/generated/components/Icons/ChartLineAndBarsIcon.d.ts +4 -0
  481. package/dist/src/generated/components/Icons/ChartLineIcon.d.ts +4 -0
  482. package/dist/src/generated/components/Icons/ChatBubbleIcon.d.ts +4 -0
  483. package/dist/src/generated/components/Icons/ChatBubbleWithTextIcon.d.ts +4 -0
  484. package/dist/src/generated/components/Icons/CheckIcon.d.ts +4 -0
  485. package/dist/src/generated/components/Icons/ChevronDoubleIcon.d.ts +4 -0
  486. package/dist/src/generated/components/Icons/ChevronDownIcon.d.ts +4 -0
  487. package/dist/src/generated/components/Icons/ChevronLeftIcon.d.ts +4 -0
  488. package/dist/src/generated/components/Icons/ChevronRightIcon.d.ts +4 -0
  489. package/dist/src/generated/components/Icons/ClockIcon.d.ts +4 -0
  490. package/dist/src/generated/components/Icons/CogwheelIcon.d.ts +4 -0
  491. package/dist/src/generated/components/Icons/CompareIcon.d.ts +4 -0
  492. package/dist/src/generated/components/Icons/CopyToClipboardIcon.d.ts +4 -0
  493. package/dist/src/generated/components/Icons/CrossIcon.d.ts +4 -0
  494. package/dist/src/generated/components/Icons/CrossInCircleIcon.d.ts +4 -0
  495. package/dist/src/generated/components/Icons/CrossInFilledCircleIcon.d.ts +4 -0
  496. package/dist/src/generated/components/Icons/DatabaseIcon.d.ts +4 -0
  497. package/dist/src/generated/components/Icons/DownloadIcon.d.ts +4 -0
  498. package/dist/src/generated/components/Icons/DragIndicatorIcon.d.ts +4 -0
  499. package/dist/src/generated/components/Icons/EarthIcon.d.ts +4 -0
  500. package/dist/src/generated/components/Icons/EmailIcon.d.ts +4 -0
  501. package/dist/src/generated/components/Icons/EmojiIcon.d.ts +4 -0
  502. package/dist/src/generated/components/Icons/EmptyIcon.d.ts +4 -0
  503. package/dist/src/generated/components/Icons/ExclamationMarkIcon.d.ts +4 -0
  504. package/dist/src/generated/components/Icons/ExportIcon.d.ts +4 -0
  505. package/dist/src/generated/components/Icons/ExternalLinkIcon.d.ts +4 -0
  506. package/dist/src/generated/components/Icons/EyeClosedIcon.d.ts +4 -0
  507. package/dist/src/generated/components/Icons/EyeOpenIcon.d.ts +4 -0
  508. package/dist/src/generated/components/Icons/FilterIcon.d.ts +4 -0
  509. package/dist/src/generated/components/Icons/FireIcon.d.ts +4 -0
  510. package/dist/src/generated/components/Icons/FirstAidKitIcon.d.ts +4 -0
  511. package/dist/src/generated/components/Icons/FlagIcon.d.ts +4 -0
  512. package/dist/src/generated/components/Icons/FolderIcon.d.ts +4 -0
  513. package/dist/src/generated/components/Icons/ForwardIcon.d.ts +4 -0
  514. package/dist/src/generated/components/Icons/GifIcon.d.ts +4 -0
  515. package/dist/src/generated/components/Icons/GrayAlertIcon.d.ts +4 -0
  516. package/dist/src/generated/components/Icons/GroupIcon.d.ts +4 -0
  517. package/dist/src/generated/components/Icons/GroupOfThreeIcon.d.ts +4 -0
  518. package/dist/src/generated/components/Icons/HamburgerIcon.d.ts +4 -0
  519. package/dist/src/generated/components/Icons/HandUp.d.ts +4 -0
  520. package/dist/src/generated/components/Icons/HandshakeIcon.d.ts +4 -0
  521. package/dist/src/generated/components/Icons/HeartIcon.d.ts +4 -0
  522. package/dist/src/generated/components/Icons/HeartMinusIcon.d.ts +4 -0
  523. package/dist/src/generated/components/Icons/HomeIcon.d.ts +4 -0
  524. package/dist/src/generated/components/Icons/IdBadgeIcon.d.ts +4 -0
  525. package/dist/src/generated/components/Icons/ImageIcon.d.ts +4 -0
  526. package/dist/src/generated/components/Icons/ImageLibraryIcon.d.ts +4 -0
  527. package/dist/src/generated/components/Icons/InfoIcon.d.ts +4 -0
  528. package/dist/src/generated/components/Icons/LifebuoyIcon.d.ts +4 -0
  529. package/dist/src/generated/components/Icons/LightBulbIcon.d.ts +4 -0
  530. package/dist/src/generated/components/Icons/LinkIcon.d.ts +4 -0
  531. package/dist/src/generated/components/Icons/ListDescIcon.d.ts +4 -0
  532. package/dist/src/generated/components/Icons/ListIcon.d.ts +4 -0
  533. package/dist/src/generated/components/Icons/LockIcon.d.ts +4 -0
  534. package/dist/src/generated/components/Icons/LogInIcon.d.ts +4 -0
  535. package/dist/src/generated/components/Icons/LogOutIcon.d.ts +4 -0
  536. package/dist/src/generated/components/Icons/MessageWithArrowIcon.d.ts +4 -0
  537. package/dist/src/generated/components/Icons/MoreIcon.d.ts +4 -0
  538. package/dist/src/generated/components/Icons/MouseIcon.d.ts +4 -0
  539. package/dist/src/generated/components/Icons/NoteIcon.d.ts +4 -0
  540. package/dist/src/generated/components/Icons/OpenAlertIcon.d.ts +4 -0
  541. package/dist/src/generated/components/Icons/OpenFolderIcon.d.ts +4 -0
  542. package/dist/src/generated/components/Icons/PageIcon.d.ts +4 -0
  543. package/dist/src/generated/components/Icons/PageViewIcon.d.ts +4 -0
  544. package/dist/src/generated/components/Icons/PaperclipIcon.d.ts +4 -0
  545. package/dist/src/generated/components/Icons/PatientIcon.d.ts +4 -0
  546. package/dist/src/generated/components/Icons/PencilIcon.d.ts +4 -0
  547. package/dist/src/generated/components/Icons/PersonIcon.d.ts +4 -0
  548. package/dist/src/generated/components/Icons/PhoneIcon.d.ts +4 -0
  549. package/dist/src/generated/components/Icons/PieChartIcon.d.ts +4 -0
  550. package/dist/src/generated/components/Icons/PinIcon.d.ts +4 -0
  551. package/dist/src/generated/components/Icons/PlusIcon.d.ts +4 -0
  552. package/dist/src/generated/components/Icons/PrinterIcon.d.ts +4 -0
  553. package/dist/src/generated/components/Icons/RedAlertIcon.d.ts +4 -0
  554. package/dist/src/generated/components/Icons/RobotIcon.d.ts +4 -0
  555. package/dist/src/generated/components/Icons/RocketIcon.d.ts +4 -0
  556. package/dist/src/generated/components/Icons/SearchIcon.d.ts +4 -0
  557. package/dist/src/generated/components/Icons/SendIcon.d.ts +4 -0
  558. package/dist/src/generated/components/Icons/ShareIcon.d.ts +4 -0
  559. package/dist/src/generated/components/Icons/SidebarIcon.d.ts +4 -0
  560. package/dist/src/generated/components/Icons/SmallArrowDownIcon.d.ts +4 -0
  561. package/dist/src/generated/components/Icons/SmallArrowUpIcon.d.ts +4 -0
  562. package/dist/src/generated/components/Icons/SmallCircleIcon.d.ts +4 -0
  563. package/dist/src/generated/components/Icons/SmallDiamondIcon.d.ts +4 -0
  564. package/dist/src/generated/components/Icons/SmallSquareIcon.d.ts +4 -0
  565. package/dist/src/generated/components/Icons/SmallUpsideDownTriangleIcon.d.ts +4 -0
  566. package/dist/src/generated/components/Icons/StarFilledIcon.d.ts +4 -0
  567. package/dist/src/generated/components/Icons/StarIcon.d.ts +4 -0
  568. package/dist/src/generated/components/Icons/StopwatchIcon.d.ts +4 -0
  569. package/dist/src/generated/components/Icons/SummaryIcon.d.ts +4 -0
  570. package/dist/src/generated/components/Icons/TadaIcon.d.ts +4 -0
  571. package/dist/src/generated/components/Icons/ThresholdIcon.d.ts +4 -0
  572. package/dist/src/generated/components/Icons/TrashBinIcon.d.ts +4 -0
  573. package/dist/src/generated/components/Icons/TreeIcon.d.ts +4 -0
  574. package/dist/src/generated/components/Icons/UnassignedIcon.d.ts +4 -0
  575. package/dist/src/generated/components/Icons/UnlinkIcon.d.ts +4 -0
  576. package/dist/src/generated/components/Icons/UnpinIcon.d.ts +4 -0
  577. package/dist/src/generated/components/Icons/UploadIcon.d.ts +4 -0
  578. package/dist/src/generated/components/Icons/VideoIcon.d.ts +4 -0
  579. package/dist/src/generated/components/Icons/WorkflowIcon.d.ts +4 -0
  580. package/dist/src/generated/components/Icons/iconWrapper/iconWrapper.d.ts +4 -0
  581. package/dist/src/generated/components/Icons/iconWrapper/index.d.ts +1 -0
  582. package/dist/src/generated/components/Icons/index.d.ts +294 -0
  583. package/dist/src/generated/components/Icons/special-icons/AmberAlertColoredIcon.d.ts +4 -0
  584. package/dist/src/generated/components/Icons/special-icons/BeterDichtbijColoredIcon.d.ts +4 -0
  585. package/dist/src/generated/components/Icons/special-icons/ChartLineColoredIcon.d.ts +4 -0
  586. package/dist/src/generated/components/Icons/special-icons/CheckFilledColoredIcon.d.ts +4 -0
  587. package/dist/src/generated/components/Icons/special-icons/FlagDeColoredIcon.d.ts +4 -0
  588. package/dist/src/generated/components/Icons/special-icons/FlagFrColoredIcon.d.ts +4 -0
  589. package/dist/src/generated/components/Icons/special-icons/FlagNlColoredIcon.d.ts +4 -0
  590. package/dist/src/generated/components/Icons/special-icons/FlagPtColoredIcon.d.ts +4 -0
  591. package/dist/src/generated/components/Icons/special-icons/FlagUkColoredIcon.d.ts +4 -0
  592. package/dist/src/generated/components/Icons/special-icons/GearColoredIcon.d.ts +4 -0
  593. package/dist/src/generated/components/Icons/special-icons/GrayAlertColoredIcon.d.ts +4 -0
  594. package/dist/src/generated/components/Icons/special-icons/GreenAlertColoredIcon.d.ts +4 -0
  595. package/dist/src/generated/components/Icons/special-icons/GroupColoredIcon.d.ts +4 -0
  596. package/dist/src/generated/components/Icons/special-icons/RedAlertColoredIcon.d.ts +4 -0
  597. package/dist/src/generated/components/Icons/special-icons/StatusActiveColoredIcon.d.ts +4 -0
  598. package/dist/src/generated/components/Icons/special-icons/StatusAddedColoredIcon.d.ts +4 -0
  599. package/dist/src/generated/components/Icons/special-icons/StatusBlockedColoredIcon.d.ts +4 -0
  600. package/dist/src/generated/components/Icons/special-icons/StatusCancelledColoredIcon.d.ts +4 -0
  601. package/dist/src/generated/components/Icons/special-icons/StatusColoredIcon.d.ts +4 -0
  602. package/dist/src/generated/components/Icons/special-icons/StatusStoppedColoredIcon.d.ts +4 -0
  603. package/dist/src/generated/components/Icons/special-icons/VaultColoredIcon.d.ts +4 -0
  604. package/dist/src/generated/components/Icons/special-icons/index.d.ts +21 -0
  605. package/dist/src/generated/components/Icons/types/IconProps.type.d.ts +18 -0
  606. package/dist/src/generated/components/Image/Image.d.ts +17 -0
  607. package/dist/src/generated/components/InfoField/InfoField.d.ts +28 -0
  608. package/dist/src/generated/components/Input/Input.d.ts +55 -0
  609. package/dist/src/generated/components/Input/LabeledInput.d.ts +24 -0
  610. package/dist/src/generated/components/Input/SearchInput.d.ts +24 -0
  611. package/dist/src/generated/components/Input/StyledInput.d.ts +14 -0
  612. package/dist/src/generated/components/InputSelect/InputSelect.d.ts +37 -0
  613. package/dist/src/generated/components/InputSelect/InputSelect.utils.d.ts +9 -0
  614. package/dist/src/generated/components/InputSelect/InputSelectInput.d.ts +11 -0
  615. package/dist/src/generated/components/InputSelect/InputSelectSelect.d.ts +9 -0
  616. package/dist/src/generated/components/Line/Line.d.ts +14 -0
  617. package/dist/src/generated/components/Link/Link.d.ts +19 -0
  618. package/dist/src/generated/components/List/List.d.ts +9 -0
  619. package/dist/src/generated/components/List/List.types.d.ts +30 -0
  620. package/dist/src/generated/components/List/ListItem.d.ts +4 -0
  621. package/dist/src/generated/components/List/index.d.ts +5 -0
  622. package/dist/src/generated/components/LoadingIndicator/LoadingIndicator.d.ts +11 -0
  623. package/dist/src/generated/components/MediaPicker/ImageCategory.d.ts +14 -0
  624. package/dist/src/generated/components/MediaPicker/MediaPicker.d.ts +91 -0
  625. package/dist/src/generated/components/Modal/FullPageModal.d.ts +41 -0
  626. package/dist/src/generated/components/Modal/FullPageModalHeader.d.ts +13 -0
  627. package/dist/src/generated/components/Modal/Modal.d.ts +18 -0
  628. package/dist/src/generated/components/Modal/ModalBase.d.ts +21 -0
  629. package/dist/src/generated/components/Modal/ModalFooter.d.ts +27 -0
  630. package/dist/src/generated/components/Modal/ModalHeader.d.ts +6 -0
  631. package/dist/src/generated/components/Modal/subcomponents/FullPageModalActions.d.ts +18 -0
  632. package/dist/src/generated/components/ModalDialog/ModalDialog.d.ts +111 -0
  633. package/dist/src/generated/components/ModalDialog/use-on-close-animation-finished.d.ts +8 -0
  634. package/dist/src/generated/components/NaturalLanguageForm/NaturalLanguageForm.d.ts +77 -0
  635. package/dist/src/generated/components/NaturalLanguageForm/NaturalLanguageFormContext.d.ts +8 -0
  636. package/dist/src/generated/components/NaturalLanguageForm/NaturalLanguageFormInput.d.ts +11 -0
  637. package/dist/src/generated/components/NaturalLanguageForm/NaturalLanguageFormInputSelect.d.ts +21 -0
  638. package/dist/src/generated/components/NaturalLanguageForm/NaturalLanguageFormSelect.d.ts +9 -0
  639. package/dist/src/generated/components/NaturalLanguageForm/NaturalLanguageFormText.d.ts +8 -0
  640. package/dist/src/generated/components/NavMenu/NavLayout.d.ts +47 -0
  641. package/dist/src/generated/components/NotificationBanner/NotificationBanner.d.ts +35 -0
  642. package/dist/src/generated/components/Page/CRUDPage.d.ts +4 -0
  643. package/dist/src/generated/components/Page/CRUDPage.types.d.ts +83 -0
  644. package/dist/src/generated/components/Page/Page.d.ts +56 -0
  645. package/dist/src/generated/components/Page/index.d.ts +3 -0
  646. package/dist/src/generated/components/PageHeader/PageHeader.d.ts +4 -0
  647. package/dist/src/generated/components/PageHeader/PageHeader.types.d.ts +46 -0
  648. package/dist/src/generated/components/PageHeader/index.d.ts +2 -0
  649. package/dist/src/generated/components/PageWithCenteredContentLayout/PageWithCenteredContentLayout.d.ts +28 -0
  650. package/dist/src/generated/components/PaginationMenu/PaginationMenu.d.ts +2 -0
  651. package/dist/src/generated/components/PaginationMenu/PaginationMenu.types.d.ts +62 -0
  652. package/dist/src/generated/components/PaginationMenu/PaginationMenu.utils.d.ts +15 -0
  653. package/dist/src/generated/components/PaginationMenu/PaginationMenuCursor.d.ts +3 -0
  654. package/dist/src/generated/components/PaginationMenu/PaginationMenuLarge.d.ts +3 -0
  655. package/dist/src/generated/components/PaginationMenu/PaginationMenuSmall.d.ts +2 -0
  656. package/dist/src/generated/components/PreviewPhone/PreviewPhone.d.ts +7 -0
  657. package/dist/src/generated/components/PreviewPhone/useWindowDimensions.d.ts +4 -0
  658. package/dist/src/generated/components/PrimaryTabBar/PrimaryTabBar.d.ts +48 -0
  659. package/dist/src/generated/components/PrimaryTabBar/PrimaryTabBarContent.d.ts +5 -0
  660. package/dist/src/generated/components/PrimaryTabBar/PrimaryTabBarExtras.d.ts +5 -0
  661. package/dist/src/generated/components/PrimaryTabBar/PrimaryTabBarList.d.ts +5 -0
  662. package/dist/src/generated/components/PrimaryTabBar/PrimaryTabBarOverflowIndicator.d.ts +7 -0
  663. package/dist/src/generated/components/PrimaryTabBar/PrimaryTabBarRoot.d.ts +5 -0
  664. package/dist/src/generated/components/PrimaryTabBar/PrimaryTabBarTrigger.d.ts +7 -0
  665. package/dist/src/generated/components/Radio/LabeledRadio.d.ts +67 -0
  666. package/dist/src/generated/components/Radio/LabeledRadioCard.d.ts +69 -0
  667. package/dist/src/generated/components/Radio/LabeledRadioCardGroup.d.ts +28 -0
  668. package/dist/src/generated/components/Radio/LabeledRadioGroup.d.ts +23 -0
  669. package/dist/src/generated/components/Radio/RadioV2.d.ts +23 -0
  670. package/dist/src/generated/components/Radio/StyledRadio.d.ts +4 -0
  671. package/dist/src/generated/components/RadioGroup/RadioGroupV2.d.ts +23 -0
  672. package/dist/src/generated/components/RangeCoverage/RangeCoverage.d.ts +99 -0
  673. package/dist/src/generated/components/Section/Section.d.ts +29 -0
  674. package/dist/src/generated/components/Section/SectionItem.d.ts +9 -0
  675. package/dist/src/generated/components/Section/SectionItemWithContent.d.ts +8 -0
  676. package/dist/src/generated/components/Section/subcomponents/SectionActions.d.ts +21 -0
  677. package/dist/src/generated/components/Section/subcomponents/SectionFooter.d.ts +6 -0
  678. package/dist/src/generated/components/Section/subcomponents/SectionHeader.d.ts +8 -0
  679. package/dist/src/generated/components/Select/LabeledSelect.d.ts +22 -0
  680. package/dist/src/generated/components/Select/Select.d.ts +49 -0
  681. package/dist/src/generated/components/Select/Select.types.d.ts +4 -0
  682. package/dist/src/generated/components/Select/SelectDropdownIndicator.d.ts +3 -0
  683. package/dist/src/generated/components/Select/SelectLoadingIndicator.d.ts +3 -0
  684. package/dist/src/generated/components/Select/StyledSelect.d.ts +12 -0
  685. package/dist/src/generated/components/SettingsMenuButton/SettingsMenuButton.d.ts +19 -0
  686. package/dist/src/generated/components/Skeleton/Skeleton.d.ts +9 -0
  687. package/dist/src/generated/components/Spinner/Spinner.d.ts +6 -0
  688. package/dist/src/generated/components/SplitViewLayout/SplitViewLayout.d.ts +20 -0
  689. package/dist/src/generated/components/Stack/Stack.d.ts +55 -0
  690. package/dist/src/generated/components/StatusIndicator/StatusIndicator.d.ts +16 -0
  691. package/dist/src/generated/components/Steps/Steps.d.ts +11 -0
  692. package/dist/src/generated/components/Steps/subcomponents/Step.d.ts +7 -0
  693. package/dist/src/generated/components/StyledLists/StyledBaseList.d.ts +33 -0
  694. package/dist/src/generated/components/StyledLists/StyledOrderedList.d.ts +25 -0
  695. package/dist/src/generated/components/StyledLists/StyledUnorderedList.d.ts +43 -0
  696. package/dist/src/generated/components/Switch/Switch.d.ts +23 -0
  697. package/dist/src/generated/components/Switcher/Switcher.d.ts +26 -0
  698. package/dist/src/generated/components/Switcher/SwitcherItem.d.ts +24 -0
  699. package/dist/src/generated/components/Tabbar/Tabbar.d.ts +20 -0
  700. package/dist/src/generated/components/Tabbar/TabbarItem.d.ts +15 -0
  701. package/dist/src/generated/components/Table/Table.d.ts +55 -0
  702. package/dist/src/generated/components/Table/Table.types.d.ts +41 -0
  703. package/dist/src/generated/components/Table/Table.utils.d.ts +58 -0
  704. package/dist/src/generated/components/Table/TableBody.d.ts +32 -0
  705. package/dist/src/generated/components/Table/TableBodyRowDataCell.d.ts +7 -0
  706. package/dist/src/generated/components/Table/TableFooter.d.ts +7 -0
  707. package/dist/src/generated/components/Table/TableHeader.d.ts +18 -0
  708. package/dist/src/generated/components/TableNew/TableNew.d.ts +71 -0
  709. package/dist/src/generated/components/TableNew/index.d.ts +1 -0
  710. package/dist/src/generated/components/Tabs/Tabs.d.ts +50 -0
  711. package/dist/src/generated/components/Tabs/index.d.ts +1 -0
  712. package/dist/src/generated/components/Tag/Tag.d.ts +18 -0
  713. package/dist/src/generated/components/Tag/TagGroup.d.ts +23 -0
  714. package/dist/src/generated/components/Text/Text.d.ts +199 -0
  715. package/dist/src/generated/components/TextEditor/LinkTooltip.d.ts +9 -0
  716. package/dist/src/generated/components/TextEditor/TextEditor.d.ts +64 -0
  717. package/dist/src/generated/components/TextEditor/TextEditorToolbar.d.ts +13 -0
  718. package/dist/src/generated/components/TextEditor/TextEditorToolbarButton.d.ts +8 -0
  719. package/dist/src/generated/components/TextLink/TextLink.d.ts +13 -0
  720. package/dist/src/generated/components/Textarea/Textarea.d.ts +30 -0
  721. package/dist/src/generated/components/Timeline/Timeline.d.ts +13 -0
  722. package/dist/src/generated/components/Timeline/TimelineHeader.d.ts +10 -0
  723. package/dist/src/generated/components/Timeline/TimelineStep.d.ts +10 -0
  724. package/dist/src/generated/components/TimelineCard/LoadingState.d.ts +1 -0
  725. package/dist/src/generated/components/TimelineCard/TimelineCard.d.ts +52 -0
  726. package/dist/src/generated/components/TimelineCardLayout/TimelineCardLayout.d.ts +18 -0
  727. package/dist/src/generated/components/Title/PageTitle.d.ts +6 -0
  728. package/dist/src/generated/components/Title/Title.d.ts +44 -0
  729. package/dist/src/generated/components/Toaster/Toaster.d.ts +3 -0
  730. package/dist/src/generated/components/Toaster/ToasterPanel.d.ts +15 -0
  731. package/dist/src/generated/components/Toaster/toast.d.ts +12 -0
  732. package/dist/src/generated/components/Tooltip/Tooltip.d.ts +42 -0
  733. package/dist/src/generated/components/Tooltip/index.d.ts +3 -0
  734. package/dist/src/generated/components/UnorderedList/UnorderedList.d.ts +63 -0
  735. package/dist/src/generated/components/VerticalMenu/VerticalMenu.d.ts +125 -0
  736. package/dist/src/generated/components/WeekdaysPicker/WeekdaysPicker.d.ts +42 -0
  737. package/dist/src/generated/components/forms/shared/HelperAndErrorText.d.ts +13 -0
  738. package/dist/src/generated/components/forms/shared/LabelText.d.ts +5 -0
  739. package/dist/src/generated/context/LocaleContext.d.ts +3 -0
  740. package/dist/src/generated/generated/iconNames.d.ts +6 -0
  741. package/dist/src/generated/iconNames.d.ts +6 -0
  742. package/dist/src/generated/iconNames.js +118 -0
  743. package/dist/src/generated/iconNames.js.map +1 -0
  744. package/dist/src/generated/index.d.ts +140 -0
  745. package/dist/src/generated/system/Elevation.d.ts +9 -0
  746. package/dist/src/generated/system/Locale.d.ts +3 -0
  747. package/dist/src/generated/system/Sizes.d.ts +62 -0
  748. package/dist/src/generated/tokens/generated/tokens.d.ts +1526 -0
  749. package/dist/src/generated/types/general.types.d.ts +17 -0
  750. package/dist/src/generated/utils/prefixKeys.d.ts +13 -0
  751. package/dist/src/generated/utils/radius.utils.d.ts +37 -0
  752. package/dist/src/generated/utils/responsiveness.utils.d.ts +30 -0
  753. package/dist/src/generated/utils/shadow.utils.d.ts +21 -0
  754. package/dist/src/generated/utils/useOutsideClick.d.ts +2 -0
  755. package/dist/src/index.d.ts +140 -0
  756. package/dist/src/system/Elevation.d.ts +9 -0
  757. package/dist/src/system/Locale.d.ts +3 -0
  758. package/dist/src/system/Sizes.d.ts +62 -0
  759. package/dist/src/tokens/generated/tokens.d.ts +1526 -0
  760. package/dist/src/types/general.types.d.ts +17 -0
  761. package/dist/src/utils/prefixKeys.d.ts +13 -0
  762. package/dist/src/utils/radius.utils.d.ts +37 -0
  763. package/dist/src/utils/responsiveness.utils.d.ts +30 -0
  764. package/dist/src/utils/shadow.utils.d.ts +21 -0
  765. package/dist/src/utils/string.utils.d.ts +7 -0
  766. package/dist/src/utils/useOutsideClick.d.ts +2 -0
  767. package/dist/stories/Accordion.stories.d.ts +21 -0
  768. package/dist/stories/AccordionList.stories.d.ts +118 -0
  769. package/dist/stories/AccordionListRecipe.stories.d.ts +58 -0
  770. package/dist/stories/ActionController.stories.d.ts +74 -0
  771. package/dist/stories/AlertsWidget.stories.d.ts +14 -0
  772. package/dist/stories/AsideLayout.stories.d.ts +37 -0
  773. package/dist/stories/Avatar.stories.d.ts +46 -0
  774. package/dist/stories/Badge.stories.d.ts +21 -0
  775. package/dist/stories/BaseList.stories.d.ts +16 -0
  776. package/dist/stories/Box.stories.d.ts +16 -0
  777. package/dist/stories/Breadcrumbs.stories.d.ts +10 -0
  778. package/dist/stories/Button.stories.d.ts +12 -0
  779. package/dist/stories/CRUDPage.stories.d.ts +15 -0
  780. package/dist/stories/Card.stories.d.ts +44 -0
  781. package/dist/stories/CardTableRecipe.stories.d.ts +37 -0
  782. package/dist/stories/Carousel.stories.d.ts +44 -0
  783. package/dist/stories/CenteredHero.stories.d.ts +14 -0
  784. package/dist/stories/ChatBubble.stories.d.ts +49 -0
  785. package/dist/stories/CheckBoxListModal.stories.d.ts +145 -0
  786. package/dist/stories/Checkbox.stories.d.ts +61 -0
  787. package/dist/stories/CheckboxList.stories.d.ts +20 -0
  788. package/dist/stories/Chip.stories.d.ts +15 -0
  789. package/dist/stories/Collapse.stories.d.ts +22 -0
  790. package/dist/stories/ConfirmationDialog.stories.d.ts +21 -0
  791. package/dist/stories/DatePicker.stories.d.ts +56 -0
  792. package/dist/stories/DetailsDisclosure.stories.d.ts +10001 -0
  793. package/dist/stories/Divider.stories.d.ts +99 -0
  794. package/dist/stories/DragHandle.stories.d.ts +23 -0
  795. package/dist/stories/DraggableAccordionList.stories.d.ts +11 -0
  796. package/dist/stories/DraggableList.stories.d.ts +9 -0
  797. package/dist/stories/Dropdown.stories.d.ts +10 -0
  798. package/dist/stories/Dropzone.stories.d.ts +14 -0
  799. package/dist/stories/EmptyListMessage.stories.d.ts +21 -0
  800. package/dist/stories/FilePreview.stories.d.ts +29 -0
  801. package/dist/stories/FileUpload.stories.d.ts +10 -0
  802. package/dist/stories/FilterBar.stories.d.ts +34 -0
  803. package/dist/stories/FlexContainer.stories.d.ts +13 -0
  804. package/dist/stories/FlyOutMenu.stories.d.ts +15 -0
  805. package/dist/stories/FullPageModal.stories.d.ts +50 -0
  806. package/dist/stories/Heading.stories.d.ts +31 -0
  807. package/dist/stories/HoverCard.stories.d.ts +8 -0
  808. package/dist/stories/HoverIndicatorControl.stories.d.ts +46 -0
  809. package/dist/stories/Icon.stories.d.ts +16 -0
  810. package/dist/stories/InfoField.stories.d.ts +32 -0
  811. package/dist/stories/Input.stories.d.ts +27 -0
  812. package/dist/stories/InputSelect.stories.d.ts +34 -0
  813. package/dist/stories/LabeledCheckbox.stories.d.ts +36 -0
  814. package/dist/stories/LabeledDatePicker.stories.d.ts +55 -0
  815. package/dist/stories/LabeledInput.stories.d.ts +44 -0
  816. package/dist/stories/LabeledRadio.stories.d.ts +37 -0
  817. package/dist/stories/Line.stories.d.ts +22 -0
  818. package/dist/stories/Link.stories.d.ts +17 -0
  819. package/dist/stories/LinkIcon.stories.d.ts +13 -0
  820. package/dist/stories/List.stories.d.ts +256 -0
  821. package/dist/stories/ListRecipe.stories.d.ts +57 -0
  822. package/dist/stories/LoadingIndicator.stories.d.ts +26 -0
  823. package/dist/stories/MediaPicker.stories.d.ts +11 -0
  824. package/dist/stories/Modal.stories.d.ts +149 -0
  825. package/dist/stories/ModalDialog.stories.d.ts +26535 -0
  826. package/dist/stories/NaturalLanguageForm.stories.d.ts +74 -0
  827. package/dist/stories/NavLayout.stories.d.ts +26 -0
  828. package/dist/stories/NotificationBanner.stories.d.ts +43 -0
  829. package/dist/stories/Page.stories.d.ts +36 -0
  830. package/dist/stories/PageHeader.stories.d.ts +23 -0
  831. package/dist/stories/PageWithCenteredContentLayout.stories.d.ts +98 -0
  832. package/dist/stories/Pagination.stories.d.ts +20 -0
  833. package/dist/stories/PreviewPhone.stories.d.ts +17 -0
  834. package/dist/stories/PrimaryButton.stories.d.ts +18 -0
  835. package/dist/stories/PrimaryIconButton.stories.d.ts +13 -0
  836. package/dist/stories/PrimaryTabBar.stories.d.ts +299 -0
  837. package/dist/stories/PrimitiveColors.d.ts +1 -0
  838. package/dist/stories/RadioGroupV2.stories.d.ts +37 -0
  839. package/dist/stories/RadioV2.stories.d.ts +42 -0
  840. package/dist/stories/RangeCoverage.stories.d.ts +31 -0
  841. package/dist/stories/SearchInput.stories.d.ts +11 -0
  842. package/dist/stories/SecondaryButton.stories.d.ts +15 -0
  843. package/dist/stories/SecondaryIconButton.stories.d.ts +12 -0
  844. package/dist/stories/Section.stories.d.ts +83 -0
  845. package/dist/stories/SectionItem.stories.d.ts +16 -0
  846. package/dist/stories/SectionItemWithContent.stories.d.ts +16 -0
  847. package/dist/stories/Select.stories.d.ts +181 -0
  848. package/dist/stories/SemanticColors.d.ts +12 -0
  849. package/dist/stories/SettingsMenuButton.stories.d.ts +98 -0
  850. package/dist/stories/Skeleton.stories.d.ts +19 -0
  851. package/dist/stories/SortableList.stories.d.ts +9 -0
  852. package/dist/stories/Spinner.stories.d.ts +14 -0
  853. package/dist/stories/SplitViewLayout.stories.d.ts +44 -0
  854. package/dist/stories/Stack.stories.d.ts +22 -0
  855. package/dist/stories/StatusIndicator.stories.d.ts +19 -0
  856. package/dist/stories/Steps.stories.d.ts +26 -0
  857. package/dist/stories/StyledOrderedList.stories.d.ts +281 -0
  858. package/dist/stories/StyledSelect.stories.d.ts +18 -0
  859. package/dist/stories/StyledUnorderedList.stories.d.ts +285 -0
  860. package/dist/stories/Switch.stories.d.ts +11 -0
  861. package/dist/stories/Switcher.stories.d.ts +40 -0
  862. package/dist/stories/Tabbar.stories.d.ts +8 -0
  863. package/dist/stories/Table.stories.d.ts +3264 -0
  864. package/dist/stories/TableCardRecipe.stories.d.ts +56 -0
  865. package/dist/stories/TableNew.stories.d.ts +33 -0
  866. package/dist/stories/Tabs.stories.d.ts +44 -0
  867. package/dist/stories/Tag.stories.d.ts +18 -0
  868. package/dist/stories/TertiaryButton.stories.d.ts +14 -0
  869. package/dist/stories/TertiaryIconButton.stories.d.ts +20 -0
  870. package/dist/stories/Text.stories.d.ts +78 -0
  871. package/dist/stories/TextColors.stories.d.ts +16 -0
  872. package/dist/stories/TextEditor.stories.d.ts +25 -0
  873. package/dist/stories/TextLegacy.stories.d.ts +32 -0
  874. package/dist/stories/TextLink.stories.d.ts +10 -0
  875. package/dist/stories/Textarea.stories.d.ts +65 -0
  876. package/dist/stories/Timeline.stories.d.ts +11 -0
  877. package/dist/stories/TimelineCard.stories.d.ts +39 -0
  878. package/dist/stories/TimelineCardLayout.stories.d.ts +56 -0
  879. package/dist/stories/Title.stories.d.ts +16 -0
  880. package/dist/stories/Toaster.stories.d.ts +12 -0
  881. package/dist/stories/Tooltip.stories.d.ts +8 -0
  882. package/dist/stories/UnorderedList.stories.d.ts +39 -0
  883. package/dist/stories/VerticalMenu.stories.d.ts +117 -0
  884. package/dist/stories/WeekdaysPicker.stories.d.ts +39 -0
  885. package/dist/web-ui-tailwind.css +6380 -2810
  886. package/dist/web-ui.esm.js +1 -1
  887. package/dist/web-ui.esm.js.map +1 -1
  888. package/package.json +110 -90
  889. package/dist/components/Accordion/Accordion.d.ts +0 -15
  890. package/dist/components/Accordion/AccordionItem.d.ts +0 -17
  891. package/dist/components/AccordionList/AccordionList.d.ts +0 -45
  892. package/dist/components/AccordionList/subcomponents/AccordionListActions.d.ts +0 -18
  893. package/dist/components/Avatar/Avatar.d.ts +0 -23
  894. package/dist/components/Badge/Badge.d.ts +0 -7
  895. package/dist/components/BaseList/BaseList.d.ts +0 -7
  896. package/dist/components/BaseList/BaseList.types.d.ts +0 -55
  897. package/dist/components/BaseList/BaseListEmptyState.d.ts +0 -7
  898. package/dist/components/BaseList/BaseListIcon.d.ts +0 -5
  899. package/dist/components/BaseList/BaseListItem.d.ts +0 -4
  900. package/dist/components/BaseList/DraggableBaseList/DraggableBaseList.d.ts +0 -4
  901. package/dist/components/BaseList/DraggableBaseList/DraggableBaseListItem.d.ts +0 -3
  902. package/dist/components/BaseList/ListSkeleton/ListItemSkeleton.d.ts +0 -2
  903. package/dist/components/BaseList/ListSkeleton/ListSkeleton.d.ts +0 -8
  904. package/dist/components/BaseList/SortableBaseList/SortableBaseList.d.ts +0 -4
  905. package/dist/components/BaseList/SortableBaseList/SortableBaseListItem.d.ts +0 -3
  906. package/dist/components/BaseList/utils.d.ts +0 -10
  907. package/dist/components/Breadcrumbs/BreadcrumbItem.d.ts +0 -4
  908. package/dist/components/Breadcrumbs/Breadcrumbs.d.ts +0 -3
  909. package/dist/components/Breadcrumbs/Breadcrumbs.types.d.ts +0 -14
  910. package/dist/components/Button/Button.d.ts +0 -9
  911. package/dist/components/Button/Button.types.d.ts +0 -32
  912. package/dist/components/Button/ButtonIcon.d.ts +0 -7
  913. package/dist/components/ButtonV2/ButtonProps.type.d.ts +0 -54
  914. package/dist/components/ButtonV2/ButtonV2.d.ts +0 -3
  915. package/dist/components/ButtonV2/PrimaryButton.d.ts +0 -3
  916. package/dist/components/ButtonV2/SecondaryButton.d.ts +0 -3
  917. package/dist/components/ButtonV2/TertiaryButton.d.ts +0 -3
  918. package/dist/components/Card/Actions.d.ts +0 -2
  919. package/dist/components/Card/Card.d.ts +0 -57
  920. package/dist/components/Card/Padding.d.ts +0 -6
  921. package/dist/components/Card/Section.d.ts +0 -6
  922. package/dist/components/Card/TopBar.d.ts +0 -9
  923. package/dist/components/Carousel/Carousel.d.ts +0 -9
  924. package/dist/components/Carousel/GliderContainer.d.ts +0 -7
  925. package/dist/components/CenteredHero/CenteredHero.d.ts +0 -14
  926. package/dist/components/CheckBoxListModal/CheckboxListModal.d.ts +0 -30
  927. package/dist/components/Checkbox/Checkbox.d.ts +0 -64
  928. package/dist/components/CheckboxList/CheckboxGroup.d.ts +0 -3
  929. package/dist/components/CheckboxList/CheckboxList.d.ts +0 -4
  930. package/dist/components/CheckboxList/CheckboxList.types.d.ts +0 -74
  931. package/dist/components/ConfirmationDialog/ConfirmationDialog.d.ts +0 -3
  932. package/dist/components/ConfirmationDialog/ConfirmationDialogChoices.d.ts +0 -7
  933. package/dist/components/ConfirmationDialog/ConfirmationDialogMessage.d.ts +0 -4
  934. package/dist/components/ConfirmationDialog/ConfirmationDialogTitle.d.ts +0 -3
  935. package/dist/components/ConfirmationDialog/types/ConfirmationDialog.types.d.ts +0 -41
  936. package/dist/components/Container/FlexColumn.d.ts +0 -7
  937. package/dist/components/Container/FlexContainer.d.ts +0 -9
  938. package/dist/components/Container/FlexRow.d.ts +0 -7
  939. package/dist/components/Container/types/FlexContainerProps.type.d.ts +0 -26
  940. package/dist/components/Divider/Divider.d.ts +0 -17
  941. package/dist/components/DragHandle/DragHandle.d.ts +0 -7
  942. package/dist/components/DragHandle/DragHandle.types.d.ts +0 -6
  943. package/dist/components/Dropzone/Dropzone.d.ts +0 -6
  944. package/dist/components/Dropzone/Dropzone.types.d.ts +0 -33
  945. package/dist/components/Dropzone/index.d.ts +0 -2
  946. package/dist/components/EmptyListMessage/EmptyListMessage.d.ts +0 -14
  947. package/dist/components/FilterBar/ActiveFilters.d.ts +0 -9
  948. package/dist/components/FilterBar/FilterBar.d.ts +0 -96
  949. package/dist/components/FilterBar/FilterBar.utils.d.ts +0 -32
  950. package/dist/components/FilterBar/FilterBarProps.type.d.ts +0 -86
  951. package/dist/components/FilterBar/FiltersMenus.d.ts +0 -8
  952. package/dist/components/FilterBar/SortMenu.d.ts +0 -9
  953. package/dist/components/Form/Form.d.ts +0 -30
  954. package/dist/components/Form/FormFieldCheckbox.d.ts +0 -9
  955. package/dist/components/Form/FormFieldCheckboxList.d.ts +0 -9
  956. package/dist/components/Form/FormFieldErrorMessages.d.ts +0 -8
  957. package/dist/components/Form/FormFieldLabeler.d.ts +0 -8
  958. package/dist/components/Form/FormImagePicker.d.ts +0 -9
  959. package/dist/components/Form/FormInput.d.ts +0 -14
  960. package/dist/components/Form/FormRadioGroup.d.ts +0 -13
  961. package/dist/components/Form/FormSelect.d.ts +0 -10
  962. package/dist/components/Form/FormTextarea.d.ts +0 -14
  963. package/dist/components/Form/form.transformer.d.ts +0 -3
  964. package/dist/components/Form/form.types.d.ts +0 -92
  965. package/dist/components/Icon/Icon.d.ts +0 -17
  966. package/dist/components/Icons/BellIcon.d.ts +0 -4
  967. package/dist/components/Icons/BluetoothIcon.d.ts +0 -4
  968. package/dist/components/Icons/BrushIcon.d.ts +0 -4
  969. package/dist/components/Icons/CalendarDayIcon.d.ts +0 -4
  970. package/dist/components/Icons/CalendarMonthIcon.d.ts +0 -4
  971. package/dist/components/Icons/CalendarRepeatIcon.d.ts +0 -4
  972. package/dist/components/Icons/ChartBarsIcon.d.ts +0 -4
  973. package/dist/components/Icons/ChartLineAndBarsIcon.d.ts +0 -4
  974. package/dist/components/Icons/ChatBubbleIcon.d.ts +0 -4
  975. package/dist/components/Icons/ChatBubbleWithTextIcon.d.ts +0 -4
  976. package/dist/components/Icons/CheckIcon.d.ts +0 -4
  977. package/dist/components/Icons/ChevronDoubleIcon.d.ts +0 -4
  978. package/dist/components/Icons/ChevronDownIcon.d.ts +0 -4
  979. package/dist/components/Icons/ChevronLeftIcon.d.ts +0 -4
  980. package/dist/components/Icons/ChevronRightIcon.d.ts +0 -4
  981. package/dist/components/Icons/ClockIcon.d.ts +0 -4
  982. package/dist/components/Icons/CogwheelIcon.d.ts +0 -4
  983. package/dist/components/Icons/CopyToClipboardIcon.d.ts +0 -4
  984. package/dist/components/Icons/CrossIcon.d.ts +0 -4
  985. package/dist/components/Icons/CrossInCircleIcon.d.ts +0 -4
  986. package/dist/components/Icons/CrossInFilledCircleIcon.d.ts +0 -4
  987. package/dist/components/Icons/DatabaseIcon.d.ts +0 -4
  988. package/dist/components/Icons/DragIndicatorIcon.d.ts +0 -4
  989. package/dist/components/Icons/EarthIcon.d.ts +0 -4
  990. package/dist/components/Icons/EmailIcon.d.ts +0 -4
  991. package/dist/components/Icons/EmptyIcon.d.ts +0 -4
  992. package/dist/components/Icons/ExclamationMarkIcon.d.ts +0 -4
  993. package/dist/components/Icons/ExportIcon.d.ts +0 -4
  994. package/dist/components/Icons/EyeClosedIcon.d.ts +0 -4
  995. package/dist/components/Icons/EyeIconSlashed.d.ts +0 -4
  996. package/dist/components/Icons/EyeOpenIcon.d.ts +0 -4
  997. package/dist/components/Icons/FilterIcon.d.ts +0 -4
  998. package/dist/components/Icons/FireIcon.d.ts +0 -4
  999. package/dist/components/Icons/FirstAidKitIcon.d.ts +0 -4
  1000. package/dist/components/Icons/FlagIcon.d.ts +0 -4
  1001. package/dist/components/Icons/ForwardIcon.d.ts +0 -4
  1002. package/dist/components/Icons/GroupIcon.d.ts +0 -4
  1003. package/dist/components/Icons/GroupOfThreeIcon.d.ts +0 -4
  1004. package/dist/components/Icons/HamburgerIcon.d.ts +0 -4
  1005. package/dist/components/Icons/HandshakeIcon.d.ts +0 -4
  1006. package/dist/components/Icons/HeartIcon.d.ts +0 -4
  1007. package/dist/components/Icons/HomeIcon.d.ts +0 -4
  1008. package/dist/components/Icons/ImageIcon.d.ts +0 -4
  1009. package/dist/components/Icons/InfoIcon.d.ts +0 -4
  1010. package/dist/components/Icons/LifebuoyIcon.d.ts +0 -4
  1011. package/dist/components/Icons/LightBulbIcon.d.ts +0 -4
  1012. package/dist/components/Icons/LinkIcon.d.ts +0 -4
  1013. package/dist/components/Icons/LockIcon.d.ts +0 -4
  1014. package/dist/components/Icons/LogInIcon.d.ts +0 -4
  1015. package/dist/components/Icons/LogOutIcon.d.ts +0 -4
  1016. package/dist/components/Icons/MessageWithArrowIcon.d.ts +0 -4
  1017. package/dist/components/Icons/MoreIcon.d.ts +0 -4
  1018. package/dist/components/Icons/MouseIcon.d.ts +0 -4
  1019. package/dist/components/Icons/NoteIcon.d.ts +0 -4
  1020. package/dist/components/Icons/PageViewIcon.d.ts +0 -4
  1021. package/dist/components/Icons/PatientIcon.d.ts +0 -4
  1022. package/dist/components/Icons/PencilIcon.d.ts +0 -4
  1023. package/dist/components/Icons/PhoneIcon.d.ts +0 -4
  1024. package/dist/components/Icons/PieChartIcon.d.ts +0 -4
  1025. package/dist/components/Icons/PinIcon.d.ts +0 -4
  1026. package/dist/components/Icons/PlusIcon.d.ts +0 -4
  1027. package/dist/components/Icons/PrinterIcon.d.ts +0 -4
  1028. package/dist/components/Icons/RobotIcon.d.ts +0 -4
  1029. package/dist/components/Icons/RocketIcon.d.ts +0 -4
  1030. package/dist/components/Icons/SearchIcon.d.ts +0 -4
  1031. package/dist/components/Icons/ShareIcon.d.ts +0 -4
  1032. package/dist/components/Icons/SmallCircleIcon.d.ts +0 -4
  1033. package/dist/components/Icons/SmallDiamondIcon.d.ts +0 -4
  1034. package/dist/components/Icons/SmallSquareIcon.d.ts +0 -4
  1035. package/dist/components/Icons/StarIcon.d.ts +0 -4
  1036. package/dist/components/Icons/TrashBinIcon.d.ts +0 -4
  1037. package/dist/components/Icons/TreeIcon.d.ts +0 -4
  1038. package/dist/components/Icons/iconWrapper/iconWrapper.d.ts +0 -4
  1039. package/dist/components/Icons/index.d.ts +0 -248
  1040. package/dist/components/Icons/special-icons/ChartLineColoredIcon.d.ts +0 -4
  1041. package/dist/components/Icons/special-icons/GearColoredIcon.d.ts +0 -4
  1042. package/dist/components/Icons/special-icons/GroupColoredIcon.d.ts +0 -4
  1043. package/dist/components/Icons/special-icons/StatusColoredIcon.d.ts +0 -4
  1044. package/dist/components/Icons/special-icons/index.d.ts +0 -4
  1045. package/dist/components/Icons/types/IconProps.type.d.ts +0 -8
  1046. package/dist/components/Image/Image.d.ts +0 -10
  1047. package/dist/components/InfoField/InfoField.d.ts +0 -28
  1048. package/dist/components/Input/Input.d.ts +0 -56
  1049. package/dist/components/Link/Link.d.ts +0 -19
  1050. package/dist/components/List/List.d.ts +0 -6
  1051. package/dist/components/List/List.types.d.ts +0 -19
  1052. package/dist/components/List/ListItem.d.ts +0 -4
  1053. package/dist/components/LoadingIndicator/LoadingIndicator.d.ts +0 -12
  1054. package/dist/components/MediaPicker/ImageCategory.d.ts +0 -14
  1055. package/dist/components/MediaPicker/MediaPicker.d.ts +0 -91
  1056. package/dist/components/Modal/FullPageModal.d.ts +0 -41
  1057. package/dist/components/Modal/FullPageModalHeader.d.ts +0 -13
  1058. package/dist/components/Modal/Modal.d.ts +0 -11
  1059. package/dist/components/Modal/ModalBase.d.ts +0 -16
  1060. package/dist/components/Modal/ModalFooter.d.ts +0 -12
  1061. package/dist/components/Modal/ModalHeader.d.ts +0 -6
  1062. package/dist/components/Modal/subcomponents/FullPageModalActions.d.ts +0 -18
  1063. package/dist/components/NavMenu/NavLayout.d.ts +0 -35
  1064. package/dist/components/NavMenu/NavMenu.d.ts +0 -16
  1065. package/dist/components/NavMenu/NavMenuContent.d.ts +0 -3
  1066. package/dist/components/NavMenu/NavMenuFooter.d.ts +0 -3
  1067. package/dist/components/NavMenu/NavMenuHeader.d.ts +0 -3
  1068. package/dist/components/NavMenu/NavMenuItem.d.ts +0 -3
  1069. package/dist/components/NavMenu/types/NavMenuFooterProps.type.d.ts +0 -5
  1070. package/dist/components/NavMenu/types/NavMenuHeaderProps.type.d.ts +0 -11
  1071. package/dist/components/NavMenu/types/NavMenuItemProps.type.d.ts +0 -11
  1072. package/dist/components/NotificationBanner/NotificationBanner.d.ts +0 -41
  1073. package/dist/components/Page/CRUDPage.d.ts +0 -4
  1074. package/dist/components/Page/CRUDPage.types.d.ts +0 -36
  1075. package/dist/components/PageHeader/PageHeader.d.ts +0 -4
  1076. package/dist/components/PageHeader/PageHeader.types.d.ts +0 -32
  1077. package/dist/components/PaginationMenu/PaginationMenu.d.ts +0 -3
  1078. package/dist/components/PaginationMenu/PaginationMenu.types.d.ts +0 -37
  1079. package/dist/components/PaginationMenu/PaginationMenu.utils.d.ts +0 -15
  1080. package/dist/components/PaginationMenu/PaginationMenuLarge.d.ts +0 -3
  1081. package/dist/components/PaginationMenu/PaginationMenuSmall.d.ts +0 -3
  1082. package/dist/components/PreviewPhone/PreviewPhone.d.ts +0 -7
  1083. package/dist/components/Radio/RadioV2.d.ts +0 -17
  1084. package/dist/components/RadioGroup/RadioGroupV2.d.ts +0 -10
  1085. package/dist/components/Section/Section.d.ts +0 -25
  1086. package/dist/components/Section/SectionItem.d.ts +0 -9
  1087. package/dist/components/Section/SectionItemWithContent.d.ts +0 -9
  1088. package/dist/components/Section/subcomponents/SectionActions.d.ts +0 -21
  1089. package/dist/components/Select/Select.d.ts +0 -46
  1090. package/dist/components/Select/SelectDropdownIndicator.d.ts +0 -3
  1091. package/dist/components/Select/SelectLoadingIndicator.d.ts +0 -3
  1092. package/dist/components/SettingsMenuButton/SettingsMenuButton.d.ts +0 -19
  1093. package/dist/components/Spinner/Spinner.d.ts +0 -6
  1094. package/dist/components/Steps/Step.d.ts +0 -10
  1095. package/dist/components/Steps/Steps.d.ts +0 -10
  1096. package/dist/components/Tabbar/Tabbar.d.ts +0 -21
  1097. package/dist/components/Tabbar/TabbarItem.d.ts +0 -16
  1098. package/dist/components/Table/Table.d.ts +0 -16
  1099. package/dist/components/Table/Table.types.d.ts +0 -42
  1100. package/dist/components/Table/Table.utils.d.ts +0 -3
  1101. package/dist/components/Table/TableBody.d.ts +0 -13
  1102. package/dist/components/Table/TableBodyRow.d.ts +0 -10
  1103. package/dist/components/Table/TableBodyRowDataCell.d.ts +0 -8
  1104. package/dist/components/Table/TableFooter.d.ts +0 -8
  1105. package/dist/components/Table/TableHeader.d.ts +0 -7
  1106. package/dist/components/Tag/Tag.d.ts +0 -26
  1107. package/dist/components/Tag/TagGroup.d.ts +0 -23
  1108. package/dist/components/Text/Text.d.ts +0 -115
  1109. package/dist/components/TextEditor/TextEditor.d.ts +0 -53
  1110. package/dist/components/TextLink/TextLink.d.ts +0 -14
  1111. package/dist/components/Textarea/Textarea.d.ts +0 -33
  1112. package/dist/components/Timeline/Timeline.d.ts +0 -14
  1113. package/dist/components/Timeline/TimelineHeader.d.ts +0 -10
  1114. package/dist/components/Timeline/TimelineStep.d.ts +0 -10
  1115. package/dist/components/Title/PageTitle.d.ts +0 -6
  1116. package/dist/components/Title/Title.d.ts +0 -31
  1117. package/dist/components/Toaster/Toaster.d.ts +0 -17
  1118. package/dist/components/Toaster/toast-elements-getter.d.ts +0 -22
  1119. package/dist/components/Toaster/toast-progress-animator.d.ts +0 -12
  1120. package/dist/components/UnorderedList/UnorderedList.d.ts +0 -61
  1121. package/dist/components/VerticalMenu/VerticalMenu.d.ts +0 -86
  1122. package/dist/components/ViewItem/ViewItem.d.ts +0 -16
  1123. package/dist/components/WeekdaysPicker/WeekdaysPicker.d.ts +0 -42
  1124. package/dist/index.d.ts +0 -89
  1125. package/dist/types/general.types.d.ts +0 -8
  1126. /package/dist/{components → src/components}/BaseList/BaseListHeader.d.ts +0 -0
  1127. /package/dist/{components → src/components}/BaseList/DraggableBaseList/index.d.ts +0 -0
  1128. /package/dist/{components → src/components}/BaseList/SortableBaseList/index.d.ts +0 -0
  1129. /package/dist/{components → src/components}/BaseList/index.d.ts +0 -0
  1130. /package/dist/{components → src/components}/Breadcrumbs/index.d.ts +0 -0
  1131. /package/dist/{components → src/components}/DragHandle/index.d.ts +0 -0
  1132. /package/dist/{components → src/components}/FilterBar/index.d.ts +0 -0
  1133. /package/dist/{components → src/components}/Icon/index.d.ts +0 -0
  1134. /package/dist/{components → src/components}/Icons/iconWrapper/index.d.ts +0 -0
  1135. /package/dist/{components → src/components}/Input/SearchInput.d.ts +0 -0
  1136. /package/dist/{components → src/components}/List/index.d.ts +0 -0
  1137. /package/dist/{components → src/components}/Page/index.d.ts +0 -0
  1138. /package/dist/{components → src/components}/PageHeader/index.d.ts +0 -0
  1139. /package/dist/{components → src/components}/Toaster/toast.d.ts +0 -0
  1140. /package/dist/{utils → src/generated/utils}/string.utils.d.ts +0 -0
package/README.md CHANGED
@@ -29,7 +29,18 @@ function MyComponent() {
29
29
 
30
30
  ### Fonts
31
31
 
32
- WebUI uses the Avenir Next LT Pro font family for some headings. If you want to use these, you need to make them available in your project. You can do this by declaring the following `@font-face` rules in your CSS:
32
+ WebUI uses the Inter font family for most of its text. This font should be provided by your application if you're using WebUI. The weights needed to show the full gamut of weights in the design system are 300, 400, 500, 600 and 700. One way of doing this is using a Google Fonts link in your HTML file:
33
+
34
+ ```html
35
+ <link rel="preconnect" href="https://fonts.googleapis.com" />
36
+ <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
37
+ <link
38
+ href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap"
39
+ rel="stylesheet"
40
+ />
41
+ ```
42
+
43
+ For some headings WebUI uses the Avenir Next LT Pro font family. If you want to use these, you need to make them available in your project. You can do this by declaring the following `@font-face` rules in your CSS:
33
44
 
34
45
  ```css
35
46
  @font-face {
@@ -55,6 +66,63 @@ The `font-family` property value is important, as this is what WebUI is referenc
55
66
 
56
67
  If you don't declare these `@font-face` rules, the font will not be available and the headings will gracefully fall back to next available font in your application.
57
68
 
69
+ ### LocaleProvider
70
+
71
+ WebUI exposes a `LocaleProvider`, which is used to make components adjust their data formats to the locale of the application.
72
+ You should wrap your app with the `LocaleProvider`.
73
+
74
+ ```tsx
75
+ import { LocaleProvider } from "@luscii-healthtech/web-ui";
76
+ import React from "react";
77
+ import { createRoot } from "react-dom/client";
78
+ import App from "./App";
79
+
80
+ function start() {
81
+ const root = createRoot(document.querySelector("#root"));
82
+ root.render(
83
+ <LocaleProvider value="nl-NL">
84
+ <App />
85
+ </LocaleProvider>
86
+ );
87
+ }
88
+ ```
89
+
90
+ The locale passed should adhere to the `{language}-{region}` format, for example:
91
+
92
+ - `nl-NL`
93
+ - `en-GB`
94
+ - `pt-PT`
95
+ - `de-DE`
96
+ - `fr-FR`
97
+
98
+ ### Tooltip Provider
99
+
100
+ Install the `@radix-ui/react-tooltip` peer dependency into your project:
101
+
102
+ ```bash
103
+ yarn add @radix-ui/react-tooltip
104
+ ```
105
+
106
+ Wrap your app with the `Tooltip.Provider` component:
107
+
108
+ ```tsx
109
+ import * as Tooltip from "@radix-ui/react-tooltip";
110
+ import React from "react";
111
+ import { createRoot } from "react-dom/client";
112
+ import App from "./App";
113
+
114
+ function start() {
115
+ const root = createRoot(document.querySelector("#root"));
116
+ root.render(
117
+ <Tooltip.Provider delayDuration={800} skipDelayDuration={500}>
118
+ <App />
119
+ </Tooltip.Provider>
120
+ );
121
+ }
122
+ ```
123
+
124
+ More about this component can be found in its [documentation](https://www.radix-ui.com/primitives/docs/components/tooltip).
125
+
58
126
  ## How to use
59
127
 
60
128
  The primary goal of WebUI is to make frontend development faster. It does this by providing a set of commonly used components that can be composed together to build user interfaces.
@@ -0,0 +1,35 @@
1
+ import { type Meta } from "@storybook/react-vite";
2
+ export declare const BADGES: {
3
+ readonly NEEDS_REVISION: "needs-revision";
4
+ readonly DOCUMENTED: "documented";
5
+ readonly STABLE: "stable";
6
+ readonly NEW: "new";
7
+ readonly DEPRECATED: "deprecated";
8
+ };
9
+ type TAGS = (typeof BADGES)[keyof typeof BADGES][];
10
+ /**
11
+ * A drop-in replacements for `"@storybook/react"`'s Meta type which extends the type with web-ui's tags.
12
+ *
13
+ * @example
14
+ *
15
+ * const meta = {
16
+ * title: "Layout/SplitViewLayout",
17
+ * component: Component,
18
+ * tags: ["new"], // `tags` is now type-checked and auto-completes
19
+ * } satisfies MMeta<typeof Component>;
20
+ */
21
+ export type MMeta<T> = Meta<T> & {
22
+ tags: TAGS;
23
+ };
24
+ /**
25
+ * For stories specifically used in the Docs page that are not intended
26
+ * to be used for snapshots. E.g. stories that are used to demonstrate
27
+ * what NOT to do, or stories that are used to demonstrate a component
28
+ * and that don't need to show up in snapshots.
29
+ */
30
+ export declare const NO_SNAPSHOT_PARAMS: {
31
+ chromatic: {
32
+ disableSnapshot: boolean;
33
+ };
34
+ };
35
+ export {};
@@ -0,0 +1,31 @@
1
+ import { type Decorator } from "@storybook/react-vite";
2
+ import { type ComponentProps, type HTMLAttributes, type ReactNode } from "react";
3
+ import { ModalDialog } from "../src";
4
+ export declare const LocaleDecorator: Decorator;
5
+ export declare const TooltipDecorator: Decorator;
6
+ export declare const createHoverCardDecorator: (trigger: ReactNode) => Decorator;
7
+ export declare const CenteredDecorator: Decorator;
8
+ /**
9
+ * Wraps the story in a div with the provided role.
10
+ *
11
+ * @example // Wrap the story within <div role="status"><Story /></div>
12
+ *
13
+ * const story = {
14
+ * // ...
15
+ * decorators: [createRoleDecorator("status")]
16
+ * }
17
+ *
18
+ */
19
+ export declare const createRoleDecorator: (role: HTMLAttributes<HTMLDivElement>["role"]) => Decorator;
20
+ /**
21
+ * Wraps the story in a ModalDialog.
22
+ *
23
+ * @example // Wrap the story within <ModalDialog variant="side-modal" size="l"><ModalDialog.Body><Story /></ModalDialog.Body></ModalDialog>
24
+ *
25
+ * const story = {
26
+ * // ...
27
+ * decorators: [createModalDialogDecorator({ size: "l", variant: "side-modal" })]
28
+ * }
29
+ *
30
+ */
31
+ export declare const createModalDialogDecorator: (options?: Pick<ComponentProps<typeof ModalDialog>, "variant" | "size">) => Decorator;
@@ -0,0 +1,2 @@
1
+ import type { API, FileInfo } from "jscodeshift";
2
+ export default function transformer(file: FileInfo, api: API): string;
@@ -0,0 +1,163 @@
1
+ "use strict";
2
+ // Codemod for Tag component breaking changes.
3
+ //
4
+ // Handles:
5
+ // - colorTheme="red"|"amber"|"green"|"gray"|"blue" → _type="danger"|"negative"|"positive"|"neutral"|"info"
6
+ // - size="base" → _size="large", size="small" → _size="small"
7
+ // - variant → _variant
8
+ // - truncate → _truncate
9
+ // - text="..." → children (prop removed, value becomes children)
10
+ // - showIcon → _leadingIcon with a TODO comment (boolean → ReactNode, can't auto-migrate)
11
+ // - as → _as (on direct <Tag> elements only)
12
+ // - Also handles polymorphic usage via `as={Tag}` (e.g. <Stack as={Tag} variant="bordered" />),
13
+ // transforming Tag-specific props on the parent element (but not renaming `as` itself)
14
+ //
15
+ // Usage: npx jscodeshift --parser=tsx --extensions=tsx,ts -t @luscii-healthtech/web-ui/dist/codemods/v48-tag-props-update <target-dir>
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.default = transformer;
18
+ const COLOR_THEME_TO_TYPE = {
19
+ red: "danger",
20
+ amber: "negative",
21
+ green: "positive",
22
+ gray: "neutral",
23
+ blue: "info",
24
+ };
25
+ // Props that simply get an underscore prefix (no value change)
26
+ const RENAMED_PROPS = {
27
+ type: "_type",
28
+ variant: "_variant",
29
+ truncate: "_truncate",
30
+ };
31
+ /**
32
+ * Transform Tag-specific props on a JSX opening element.
33
+ * Returns true if any changes were made.
34
+ */
35
+ function transformTagProps(opening, j) {
36
+ var _a, _b, _c, _d, _e, _f;
37
+ let changed = false;
38
+ // --- colorTheme → _type (with value mapping) ---
39
+ const colorThemeAttr = findAttribute(opening, "colorTheme");
40
+ if (colorThemeAttr) {
41
+ colorThemeAttr.name = j.jsxIdentifier("_type");
42
+ if (((_a = colorThemeAttr.value) === null || _a === void 0 ? void 0 : _a.type) === "StringLiteral") {
43
+ const mapped = COLOR_THEME_TO_TYPE[colorThemeAttr.value.value];
44
+ if (mapped) {
45
+ colorThemeAttr.value = j.stringLiteral(mapped);
46
+ }
47
+ }
48
+ else if (((_b = colorThemeAttr.value) === null || _b === void 0 ? void 0 : _b.type) === "JSXExpressionContainer" &&
49
+ colorThemeAttr.value.expression.type === "StringLiteral") {
50
+ const mapped = COLOR_THEME_TO_TYPE[colorThemeAttr.value.expression.value];
51
+ if (mapped) {
52
+ colorThemeAttr.value = j.stringLiteral(mapped);
53
+ }
54
+ }
55
+ changed = true;
56
+ }
57
+ // --- size → _size (with "base" → "large") ---
58
+ const sizeAttr = findAttribute(opening, "size");
59
+ if (sizeAttr) {
60
+ sizeAttr.name = j.jsxIdentifier("_size");
61
+ if (((_c = sizeAttr.value) === null || _c === void 0 ? void 0 : _c.type) === "StringLiteral") {
62
+ if (sizeAttr.value.value === "base") {
63
+ sizeAttr.value = j.stringLiteral("large");
64
+ }
65
+ }
66
+ else if (((_d = sizeAttr.value) === null || _d === void 0 ? void 0 : _d.type) === "JSXExpressionContainer" &&
67
+ sizeAttr.value.expression.type === "StringLiteral" &&
68
+ sizeAttr.value.expression.value === "base") {
69
+ sizeAttr.value = j.stringLiteral("large");
70
+ }
71
+ changed = true;
72
+ }
73
+ // --- Simple renames (variant → _variant, truncate → _truncate) ---
74
+ for (const [oldName, newName] of Object.entries(RENAMED_PROPS)) {
75
+ const attr = findAttribute(opening, oldName);
76
+ if (attr) {
77
+ attr.name = j.jsxIdentifier(newName);
78
+ changed = true;
79
+ }
80
+ }
81
+ // --- showIcon → _leadingIcon with TODO ---
82
+ const showIconAttr = findAttribute(opening, "showIcon");
83
+ if (showIconAttr) {
84
+ const attrIndex = (_f = (_e = opening.attributes) === null || _e === void 0 ? void 0 : _e.indexOf(showIconAttr)) !== null && _f !== void 0 ? _f : -1;
85
+ if (attrIndex !== -1 && opening.attributes) {
86
+ opening.attributes[attrIndex] = j.jsxAttribute(j.jsxIdentifier("_leadingIcon"), j.jsxExpressionContainer(j.identifier("undefined /* TODO: showIcon was removed — pass a ReactNode icon to _leadingIcon instead */")));
87
+ }
88
+ changed = true;
89
+ }
90
+ return changed;
91
+ }
92
+ function transformer(file, api) {
93
+ const j = api.jscodeshift;
94
+ const root = j(file.source);
95
+ let hasChanges = false;
96
+ // --- Pass 1: Direct <Tag> elements ---
97
+ root.findJSXElements("Tag").forEach((path) => {
98
+ var _a;
99
+ const opening = path.value.openingElement;
100
+ if (transformTagProps(opening, j)) {
101
+ hasChanges = true;
102
+ }
103
+ // --- as → _as (Tag's own polymorphic prop) ---
104
+ const asAttr = findAttribute(opening, "as");
105
+ if (asAttr) {
106
+ asAttr.name = j.jsxIdentifier("_as");
107
+ hasChanges = true;
108
+ }
109
+ // --- text="..." → children (only for direct <Tag> usage) ---
110
+ const textAttr = findAttribute(opening, "text");
111
+ if (textAttr) {
112
+ const textValue = textAttr.value;
113
+ // Remove the text attribute
114
+ opening.attributes = (_a = opening.attributes) === null || _a === void 0 ? void 0 : _a.filter((a) => {
115
+ if (a.type !== "JSXAttribute") {
116
+ return true;
117
+ }
118
+ return a.name.type === "JSXIdentifier" && a.name.name !== "text";
119
+ });
120
+ // Convert self-closing to open/close if needed
121
+ if (path.value.openingElement.selfClosing) {
122
+ path.value.openingElement.selfClosing = false;
123
+ path.value.closingElement = j.jsxClosingElement(j.jsxIdentifier("Tag"));
124
+ }
125
+ if ((textValue === null || textValue === void 0 ? void 0 : textValue.type) === "StringLiteral") {
126
+ path.value.children = [j.jsxText(textValue.value)];
127
+ }
128
+ else if ((textValue === null || textValue === void 0 ? void 0 : textValue.type) === "JSXExpressionContainer") {
129
+ path.value.children = [textValue];
130
+ }
131
+ hasChanges = true;
132
+ }
133
+ });
134
+ // --- Pass 2: Polymorphic as={Tag} usage (e.g. <Stack as={Tag} variant="bordered" />) ---
135
+ root.find(j.JSXOpeningElement).forEach((path) => {
136
+ var _a;
137
+ const opening = path.value;
138
+ const asAttr = findAttribute(opening, "as");
139
+ if (!asAttr) {
140
+ return;
141
+ }
142
+ // Check for as={Tag}
143
+ const isTagAs = ((_a = asAttr.value) === null || _a === void 0 ? void 0 : _a.type) === "JSXExpressionContainer" &&
144
+ asAttr.value.expression.type === "Identifier" &&
145
+ asAttr.value.expression.name === "Tag";
146
+ if (!isTagAs) {
147
+ return;
148
+ }
149
+ if (transformTagProps(opening, j)) {
150
+ hasChanges = true;
151
+ }
152
+ });
153
+ if (!hasChanges) {
154
+ return file.source;
155
+ }
156
+ return root.toSource({ quote: "double" });
157
+ }
158
+ function findAttribute(opening, name) {
159
+ var _a;
160
+ return (_a = opening.attributes) === null || _a === void 0 ? void 0 : _a.find((attr) => attr.type === "JSXAttribute" &&
161
+ attr.name.type === "JSXIdentifier" &&
162
+ attr.name.name === name);
163
+ }