@itwin/itwinui-react 3.15.5 → 5.0.0-alpha.0

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 (1742) hide show
  1. package/LICENSE.md +1 -1
  2. package/README.md +16 -87
  3. package/dist/DEV/bricks/Anchor.js +29 -0
  4. package/dist/DEV/bricks/Button.js +22 -0
  5. package/dist/DEV/bricks/Checkbox.js +22 -0
  6. package/dist/DEV/bricks/Divider.js +23 -0
  7. package/dist/DEV/bricks/DropdownMenu.js +90 -0
  8. package/dist/DEV/bricks/Field.js +28 -0
  9. package/dist/DEV/bricks/Icon.js +61 -0
  10. package/dist/DEV/bricks/IconButton.js +31 -0
  11. package/dist/DEV/bricks/Kbd.js +23 -0
  12. package/dist/DEV/bricks/Label.js +21 -0
  13. package/dist/DEV/bricks/ListItem.js +33 -0
  14. package/dist/DEV/bricks/Radio.js +22 -0
  15. package/dist/DEV/bricks/Root.js +144 -0
  16. package/dist/DEV/bricks/Switch.js +23 -0
  17. package/dist/DEV/bricks/Tabs.js +92 -0
  18. package/dist/DEV/bricks/TextBox.js +93 -0
  19. package/dist/DEV/bricks/Textarea.js +28 -0
  20. package/dist/DEV/bricks/Tooltip.js +68 -0
  21. package/dist/DEV/bricks/Tree.js +112 -0
  22. package/dist/DEV/bricks/VisuallyHidden.js +10 -0
  23. package/dist/DEV/bricks/index.js +37 -0
  24. package/dist/DEV/bricks/styles.css.js +8 -0
  25. package/dist/DEV/bricks/~hooks.js +43 -0
  26. package/dist/DEV/bricks/~utils.js +6 -0
  27. package/dist/DEV/foundations/styles.css.js +8 -0
  28. package/dist/bricks/Anchor.d.ts +8 -0
  29. package/dist/bricks/Anchor.js +28 -0
  30. package/dist/bricks/Button.d.ts +20 -0
  31. package/dist/bricks/Button.js +21 -0
  32. package/dist/bricks/Checkbox.d.ts +9 -0
  33. package/dist/bricks/Checkbox.js +21 -0
  34. package/dist/bricks/Divider.d.ts +19 -0
  35. package/dist/bricks/Divider.js +22 -0
  36. package/dist/bricks/DropdownMenu.d.ts +34 -0
  37. package/dist/bricks/DropdownMenu.js +86 -0
  38. package/dist/bricks/Field.d.ts +11 -0
  39. package/dist/bricks/Field.js +27 -0
  40. package/dist/bricks/Icon.d.ts +35 -0
  41. package/dist/bricks/Icon.js +59 -0
  42. package/dist/bricks/IconButton.d.ts +79 -0
  43. package/dist/bricks/IconButton.js +30 -0
  44. package/dist/bricks/Kbd.d.ts +16 -0
  45. package/dist/bricks/Kbd.js +22 -0
  46. package/dist/bricks/Label.d.ts +6 -0
  47. package/dist/bricks/Label.js +20 -0
  48. package/dist/bricks/ListItem.d.ts +11 -0
  49. package/dist/bricks/ListItem.js +31 -0
  50. package/dist/bricks/Radio.d.ts +9 -0
  51. package/dist/bricks/Radio.js +21 -0
  52. package/dist/bricks/Root.d.ts +26 -0
  53. package/dist/bricks/Root.js +143 -0
  54. package/dist/bricks/Switch.d.ts +13 -0
  55. package/dist/bricks/Switch.js +22 -0
  56. package/dist/bricks/Tabs.d.ts +21 -0
  57. package/dist/bricks/Tabs.js +88 -0
  58. package/dist/bricks/TextBox.d.ts +49 -0
  59. package/dist/bricks/TextBox.js +89 -0
  60. package/dist/bricks/Textarea.d.ts +14 -0
  61. package/dist/bricks/Textarea.js +27 -0
  62. package/dist/bricks/Tooltip.d.ts +39 -0
  63. package/dist/bricks/Tooltip.js +67 -0
  64. package/dist/bricks/Tree.d.ts +23 -0
  65. package/dist/bricks/Tree.js +107 -0
  66. package/dist/bricks/VisuallyHidden.d.ts +6 -0
  67. package/dist/bricks/VisuallyHidden.js +9 -0
  68. package/dist/bricks/index.d.ts +17 -0
  69. package/dist/bricks/index.js +37 -0
  70. package/dist/bricks/styles.css.d.ts +2 -0
  71. package/dist/bricks/styles.css.js +8 -0
  72. package/dist/bricks/~hooks.d.ts +49 -0
  73. package/dist/bricks/~hooks.js +43 -0
  74. package/dist/bricks/~utils.d.ts +10 -0
  75. package/dist/bricks/~utils.js +6 -0
  76. package/dist/foundations/styles.css.d.ts +2 -0
  77. package/dist/foundations/styles.css.js +8 -0
  78. package/package.json +59 -150
  79. package/CHANGELOG.md +0 -848
  80. package/DEV-cjs/core/Alert/Alert.js +0 -143
  81. package/DEV-cjs/core/Avatar/Avatar.js +0 -81
  82. package/DEV-cjs/core/AvatarGroup/AvatarGroup.js +0 -75
  83. package/DEV-cjs/core/Backdrop/Backdrop.js +0 -30
  84. package/DEV-cjs/core/Badge/Badge.js +0 -55
  85. package/DEV-cjs/core/Breadcrumbs/Breadcrumbs.js +0 -195
  86. package/DEV-cjs/core/ButtonGroup/ButtonGroup.js +0 -158
  87. package/DEV-cjs/core/Buttons/Button.js +0 -100
  88. package/DEV-cjs/core/Buttons/DropdownButton.js +0 -61
  89. package/DEV-cjs/core/Buttons/IconButton.js +0 -82
  90. package/DEV-cjs/core/Buttons/IdeasButton.js +0 -34
  91. package/DEV-cjs/core/Buttons/SplitButton.js +0 -105
  92. package/DEV-cjs/core/Carousel/Carousel.js +0 -84
  93. package/DEV-cjs/core/Carousel/CarouselContext.js +0 -14
  94. package/DEV-cjs/core/Carousel/CarouselDot.js +0 -35
  95. package/DEV-cjs/core/Carousel/CarouselDotsList.js +0 -164
  96. package/DEV-cjs/core/Carousel/CarouselNavigation.js +0 -108
  97. package/DEV-cjs/core/Carousel/CarouselSlide.js +0 -55
  98. package/DEV-cjs/core/Carousel/CarouselSlider.js +0 -72
  99. package/DEV-cjs/core/Checkbox/Checkbox.js +0 -100
  100. package/DEV-cjs/core/ColorPicker/ColorBuilder.js +0 -344
  101. package/DEV-cjs/core/ColorPicker/ColorInputPanel.js +0 -444
  102. package/DEV-cjs/core/ColorPicker/ColorPalette.js +0 -81
  103. package/DEV-cjs/core/ColorPicker/ColorPicker.js +0 -98
  104. package/DEV-cjs/core/ColorPicker/ColorPickerContext.js +0 -30
  105. package/DEV-cjs/core/ColorPicker/ColorSwatch.js +0 -55
  106. package/DEV-cjs/core/ComboBox/ComboBox.js +0 -415
  107. package/DEV-cjs/core/ComboBox/ComboBox.types-test.js +0 -89
  108. package/DEV-cjs/core/ComboBox/ComboBoxEndIcon.js +0 -40
  109. package/DEV-cjs/core/ComboBox/ComboBoxInput.js +0 -195
  110. package/DEV-cjs/core/ComboBox/ComboBoxInputContainer.js +0 -44
  111. package/DEV-cjs/core/ComboBox/ComboBoxMenu.js +0 -139
  112. package/DEV-cjs/core/ComboBox/ComboBoxMenuItem.js +0 -89
  113. package/DEV-cjs/core/ComboBox/ComboBoxMultipleContainer.js +0 -22
  114. package/DEV-cjs/core/ComboBox/helpers.js +0 -25
  115. package/DEV-cjs/core/DatePicker/DatePicker.js +0 -595
  116. package/DEV-cjs/core/Dialog/Dialog.js +0 -93
  117. package/DEV-cjs/core/Dialog/DialogBackdrop.js +0 -56
  118. package/DEV-cjs/core/Dialog/DialogButtonBar.js +0 -13
  119. package/DEV-cjs/core/Dialog/DialogContent.js +0 -13
  120. package/DEV-cjs/core/Dialog/DialogContext.js +0 -23
  121. package/DEV-cjs/core/Dialog/DialogDragContext.js +0 -28
  122. package/DEV-cjs/core/Dialog/DialogMain.js +0 -183
  123. package/DEV-cjs/core/Dialog/DialogTitleBar.js +0 -76
  124. package/DEV-cjs/core/Dialog/DialogTitleBarTitle.js +0 -13
  125. package/DEV-cjs/core/Divider/Divider.js +0 -26
  126. package/DEV-cjs/core/DropdownMenu/DropdownMenu.js +0 -75
  127. package/DEV-cjs/core/ExpandableBlock/ExpandableBlock.js +0 -221
  128. package/DEV-cjs/core/Fieldset/Fieldset.js +0 -38
  129. package/DEV-cjs/core/FileUpload/FileEmptyCard.js +0 -54
  130. package/DEV-cjs/core/FileUpload/FileUpload.js +0 -98
  131. package/DEV-cjs/core/FileUpload/FileUploadCard.js +0 -210
  132. package/DEV-cjs/core/FileUpload/FileUploadTemplate.js +0 -67
  133. package/DEV-cjs/core/Flex/Flex.js +0 -89
  134. package/DEV-cjs/core/Footer/Footer.js +0 -137
  135. package/DEV-cjs/core/Footer/FooterItem.js +0 -13
  136. package/DEV-cjs/core/Footer/FooterList.js +0 -13
  137. package/DEV-cjs/core/Footer/FooterSeparator.js +0 -15
  138. package/DEV-cjs/core/Header/Header.js +0 -92
  139. package/DEV-cjs/core/Header/HeaderBasicButton.js +0 -33
  140. package/DEV-cjs/core/Header/HeaderBreadcrumbs.js +0 -64
  141. package/DEV-cjs/core/Header/HeaderButton.js +0 -95
  142. package/DEV-cjs/core/Header/HeaderDropdownButton.js +0 -59
  143. package/DEV-cjs/core/Header/HeaderLogo.js +0 -57
  144. package/DEV-cjs/core/Header/HeaderSplitButton.js +0 -81
  145. package/DEV-cjs/core/Icon/Icon.js +0 -46
  146. package/DEV-cjs/core/InformationPanel/InformationPanel.js +0 -103
  147. package/DEV-cjs/core/InformationPanel/InformationPanelBody.js +0 -13
  148. package/DEV-cjs/core/InformationPanel/InformationPanelContent.js +0 -34
  149. package/DEV-cjs/core/InformationPanel/InformationPanelHeader.js +0 -55
  150. package/DEV-cjs/core/InformationPanel/InformationPanelWrapper.js +0 -15
  151. package/DEV-cjs/core/Input/Input.js +0 -30
  152. package/DEV-cjs/core/InputGrid/InputGrid.js +0 -159
  153. package/DEV-cjs/core/InputGroup/InputGroup.js +0 -95
  154. package/DEV-cjs/core/InputWithDecorations/InputWithDecorations.js +0 -77
  155. package/DEV-cjs/core/Label/Label.js +0 -44
  156. package/DEV-cjs/core/LabeledInput/LabeledInput.js +0 -93
  157. package/DEV-cjs/core/LabeledSelect/LabeledSelect.js +0 -75
  158. package/DEV-cjs/core/LabeledSelect/LabeledSelect.types-test.js +0 -103
  159. package/DEV-cjs/core/LabeledTextarea/LabeledTextarea.js +0 -22
  160. package/DEV-cjs/core/LinkAction/LinkAction.js +0 -37
  161. package/DEV-cjs/core/List/List.js +0 -15
  162. package/DEV-cjs/core/List/ListItem.js +0 -53
  163. package/DEV-cjs/core/Menu/Menu.js +0 -226
  164. package/DEV-cjs/core/Menu/MenuDivider.js +0 -15
  165. package/DEV-cjs/core/Menu/MenuExtraContent.js +0 -15
  166. package/DEV-cjs/core/Menu/MenuItem.js +0 -145
  167. package/DEV-cjs/core/Menu/MenuItemSkeleton.js +0 -69
  168. package/DEV-cjs/core/Modal/Modal.js +0 -59
  169. package/DEV-cjs/core/Modal/ModalButtonBar.js +0 -13
  170. package/DEV-cjs/core/Modal/ModalContent.js +0 -13
  171. package/DEV-cjs/core/NonIdealState/ErrorPage.js +0 -214
  172. package/DEV-cjs/core/NonIdealState/NonIdealState.js +0 -89
  173. package/DEV-cjs/core/NotificationMarker/NotificationMarker.js +0 -43
  174. package/DEV-cjs/core/Overlay/Overlay.js +0 -48
  175. package/DEV-cjs/core/Popover/Popover.js +0 -343
  176. package/DEV-cjs/core/ProgressIndicators/ProgressLinear.js +0 -76
  177. package/DEV-cjs/core/ProgressIndicators/ProgressRadial.js +0 -72
  178. package/DEV-cjs/core/Radio/Radio.js +0 -70
  179. package/DEV-cjs/core/RadioTiles/RadioTile.js +0 -92
  180. package/DEV-cjs/core/RadioTiles/RadioTileGroup.js +0 -33
  181. package/DEV-cjs/core/SearchBox/SearchBox.js +0 -227
  182. package/DEV-cjs/core/Select/Select.js +0 -485
  183. package/DEV-cjs/core/Select/Select.types-test.js +0 -115
  184. package/DEV-cjs/core/Select/SelectTag.js +0 -35
  185. package/DEV-cjs/core/Select/SelectTagContainer.js +0 -55
  186. package/DEV-cjs/core/SideNavigation/SideNavigation.js +0 -142
  187. package/DEV-cjs/core/SideNavigation/SidenavButton.js +0 -59
  188. package/DEV-cjs/core/SideNavigation/SidenavSubmenu.js +0 -37
  189. package/DEV-cjs/core/SideNavigation/SidenavSubmenuHeader.js +0 -45
  190. package/DEV-cjs/core/SkipToContentLink/SkipToContentLink.js +0 -32
  191. package/DEV-cjs/core/Slider/Slider.js +0 -374
  192. package/DEV-cjs/core/Slider/Thumb.js +0 -115
  193. package/DEV-cjs/core/Slider/Track.js +0 -102
  194. package/DEV-cjs/core/StatusMessage/StatusMessage.js +0 -50
  195. package/DEV-cjs/core/Stepper/Stepper.js +0 -98
  196. package/DEV-cjs/core/Stepper/StepperStep.js +0 -118
  197. package/DEV-cjs/core/Stepper/WorkflowDiagram.js +0 -45
  198. package/DEV-cjs/core/Stepper/WorkflowDiagramStep.js +0 -52
  199. package/DEV-cjs/core/Surface/Surface.js +0 -116
  200. package/DEV-cjs/core/Table/ColumnHeader.js +0 -187
  201. package/DEV-cjs/core/Table/SubRowExpander.js +0 -48
  202. package/DEV-cjs/core/Table/Table.js +0 -763
  203. package/DEV-cjs/core/Table/TableCell.js +0 -112
  204. package/DEV-cjs/core/Table/TableExpandableContentMemoized.js +0 -47
  205. package/DEV-cjs/core/Table/TablePaginator.js +0 -347
  206. package/DEV-cjs/core/Table/TableRowMemoized.js +0 -176
  207. package/DEV-cjs/core/Table/actionHandlers/expandHandler.js +0 -21
  208. package/DEV-cjs/core/Table/actionHandlers/filterHandler.js +0 -34
  209. package/DEV-cjs/core/Table/actionHandlers/index.js +0 -38
  210. package/DEV-cjs/core/Table/actionHandlers/resizeHandler.js +0 -33
  211. package/DEV-cjs/core/Table/actionHandlers/selectHandler.js +0 -136
  212. package/DEV-cjs/core/Table/cells/DefaultCell.js +0 -97
  213. package/DEV-cjs/core/Table/cells/EditableCell.js +0 -89
  214. package/DEV-cjs/core/Table/cells/index.js +0 -21
  215. package/DEV-cjs/core/Table/columns/actionColumn.js +0 -103
  216. package/DEV-cjs/core/Table/columns/expanderColumn.js +0 -65
  217. package/DEV-cjs/core/Table/columns/index.js +0 -31
  218. package/DEV-cjs/core/Table/columns/selectionColumn.js +0 -88
  219. package/DEV-cjs/core/Table/filters/BaseFilter.js +0 -33
  220. package/DEV-cjs/core/Table/filters/DateRangeFilter/DatePickerInput.js +0 -127
  221. package/DEV-cjs/core/Table/filters/DateRangeFilter/DateRangeFilter.js +0 -122
  222. package/DEV-cjs/core/Table/filters/FilterButtonBar.js +0 -61
  223. package/DEV-cjs/core/Table/filters/FilterToggle.js +0 -77
  224. package/DEV-cjs/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +0 -61
  225. package/DEV-cjs/core/Table/filters/TextFilter/TextFilter.js +0 -41
  226. package/DEV-cjs/core/Table/filters/customFilterFunctions.js +0 -31
  227. package/DEV-cjs/core/Table/filters/defaultFilterFunctions.js +0 -125
  228. package/DEV-cjs/core/Table/filters/index.js +0 -29
  229. package/DEV-cjs/core/Table/filters/tableFilters.js +0 -32
  230. package/DEV-cjs/core/Table/filters/types.js +0 -4
  231. package/DEV-cjs/core/Table/hooks/index.js +0 -45
  232. package/DEV-cjs/core/Table/hooks/useColumnDragAndDrop.js +0 -124
  233. package/DEV-cjs/core/Table/hooks/useExpanderCell.js +0 -41
  234. package/DEV-cjs/core/Table/hooks/useResizeColumns.js +0 -367
  235. package/DEV-cjs/core/Table/hooks/useScrollToRow.js +0 -45
  236. package/DEV-cjs/core/Table/hooks/useSelectionCell.js +0 -28
  237. package/DEV-cjs/core/Table/hooks/useStickyColumns.js +0 -65
  238. package/DEV-cjs/core/Table/hooks/useSubRowFiltering.js +0 -95
  239. package/DEV-cjs/core/Table/hooks/useSubRowSelection.js +0 -43
  240. package/DEV-cjs/core/Table/index.js +0 -48
  241. package/DEV-cjs/core/Table/utils.js +0 -76
  242. package/DEV-cjs/core/Tabs/Tabs.js +0 -428
  243. package/DEV-cjs/core/Tag/Tag.js +0 -84
  244. package/DEV-cjs/core/Tag/TagContainer.js +0 -35
  245. package/DEV-cjs/core/Textarea/Textarea.js +0 -22
  246. package/DEV-cjs/core/ThemeProvider/ThemeContext.js +0 -13
  247. package/DEV-cjs/core/ThemeProvider/ThemeProvider.js +0 -311
  248. package/DEV-cjs/core/Tile/Tile.js +0 -348
  249. package/DEV-cjs/core/TimePicker/TimePicker.js +0 -471
  250. package/DEV-cjs/core/Toast/Toast.js +0 -241
  251. package/DEV-cjs/core/Toast/Toaster.js +0 -160
  252. package/DEV-cjs/core/ToggleSwitch/ToggleSwitch.js +0 -80
  253. package/DEV-cjs/core/Tooltip/Tooltip.js +0 -234
  254. package/DEV-cjs/core/TransferList/TransferList.js +0 -204
  255. package/DEV-cjs/core/Tree/Tree.js +0 -245
  256. package/DEV-cjs/core/Tree/TreeContext.js +0 -28
  257. package/DEV-cjs/core/Tree/TreeNode.js +0 -264
  258. package/DEV-cjs/core/Tree/TreeNodeExpander.js +0 -44
  259. package/DEV-cjs/core/Typography/Anchor.js +0 -45
  260. package/DEV-cjs/core/Typography/Blockquote.js +0 -30
  261. package/DEV-cjs/core/Typography/Code.js +0 -13
  262. package/DEV-cjs/core/Typography/Kbd.js +0 -53
  263. package/DEV-cjs/core/Typography/Text.js +0 -54
  264. package/DEV-cjs/core/VisuallyHidden/VisuallyHidden.js +0 -61
  265. package/DEV-cjs/index.js +0 -482
  266. package/DEV-cjs/package.json +0 -1
  267. package/DEV-cjs/react-table/react-table.js +0 -4
  268. package/DEV-cjs/react-table/react-table.types-test.js +0 -649
  269. package/DEV-cjs/styles.js +0 -17
  270. package/DEV-cjs/utils/color/ColorValue.js +0 -449
  271. package/DEV-cjs/utils/color/index.js +0 -6
  272. package/DEV-cjs/utils/components/AutoclearingHiddenLiveRegion.js +0 -34
  273. package/DEV-cjs/utils/components/Box.js +0 -12
  274. package/DEV-cjs/utils/components/ButtonBase.js +0 -45
  275. package/DEV-cjs/utils/components/FieldsetBase.js +0 -12
  276. package/DEV-cjs/utils/components/FocusTrap.js +0 -51
  277. package/DEV-cjs/utils/components/InputContainer.js +0 -70
  278. package/DEV-cjs/utils/components/InputFlexContainer.js +0 -72
  279. package/DEV-cjs/utils/components/InputWithIcon.js +0 -13
  280. package/DEV-cjs/utils/components/LineClamp.js +0 -44
  281. package/DEV-cjs/utils/components/MiddleTextTruncation.js +0 -47
  282. package/DEV-cjs/utils/components/OverflowContainer.js +0 -63
  283. package/DEV-cjs/utils/components/Portal.js +0 -44
  284. package/DEV-cjs/utils/components/Resizer.js +0 -262
  285. package/DEV-cjs/utils/components/ShadowRoot.js +0 -107
  286. package/DEV-cjs/utils/components/WithCSSTransition.js +0 -60
  287. package/DEV-cjs/utils/components/index.js +0 -20
  288. package/DEV-cjs/utils/functions/colors.js +0 -47
  289. package/DEV-cjs/utils/functions/date.js +0 -18
  290. package/DEV-cjs/utils/functions/dev.js +0 -19
  291. package/DEV-cjs/utils/functions/dom.js +0 -47
  292. package/DEV-cjs/utils/functions/focusable.js +0 -91
  293. package/DEV-cjs/utils/functions/import.js +0 -33
  294. package/DEV-cjs/utils/functions/index.js +0 -15
  295. package/DEV-cjs/utils/functions/numbers.js +0 -34
  296. package/DEV-cjs/utils/functions/polymorphic.js +0 -61
  297. package/DEV-cjs/utils/functions/react.js +0 -28
  298. package/DEV-cjs/utils/functions/supports.js +0 -13
  299. package/DEV-cjs/utils/hooks/index.js +0 -22
  300. package/DEV-cjs/utils/hooks/useContainerWidth.js +0 -34
  301. package/DEV-cjs/utils/hooks/useControlledState.js +0 -31
  302. package/DEV-cjs/utils/hooks/useDragAndDrop.js +0 -116
  303. package/DEV-cjs/utils/hooks/useEventListener.js +0 -26
  304. package/DEV-cjs/utils/hooks/useGlobals.js +0 -57
  305. package/DEV-cjs/utils/hooks/useId.js +0 -21
  306. package/DEV-cjs/utils/hooks/useIntersection.js +0 -41
  307. package/DEV-cjs/utils/hooks/useIsClient.js +0 -19
  308. package/DEV-cjs/utils/hooks/useIsomorphicLayoutEffect.js +0 -14
  309. package/DEV-cjs/utils/hooks/useLatestRef.js +0 -19
  310. package/DEV-cjs/utils/hooks/useMediaQuery.js +0 -35
  311. package/DEV-cjs/utils/hooks/useMergedRefs.js +0 -31
  312. package/DEV-cjs/utils/hooks/useOverflow.js +0 -76
  313. package/DEV-cjs/utils/hooks/useResizeObserver.js +0 -34
  314. package/DEV-cjs/utils/hooks/useSafeContext.js +0 -18
  315. package/DEV-cjs/utils/hooks/useSyncExternalStore.js +0 -43
  316. package/DEV-cjs/utils/hooks/useVirtualScroll.js +0 -61
  317. package/DEV-cjs/utils/hooks/useWarningLogger.js +0 -45
  318. package/DEV-cjs/utils/icons/StatusIconMap.js +0 -38
  319. package/DEV-cjs/utils/icons/Svg.js +0 -16
  320. package/DEV-cjs/utils/icons/SvgCalendar.js +0 -21
  321. package/DEV-cjs/utils/icons/SvgCaretDownSmall.js +0 -21
  322. package/DEV-cjs/utils/icons/SvgCaretRightSmall.js +0 -21
  323. package/DEV-cjs/utils/icons/SvgCaretUpSmall.js +0 -21
  324. package/DEV-cjs/utils/icons/SvgCheckmark.js +0 -21
  325. package/DEV-cjs/utils/icons/SvgCheckmarkSmall.js +0 -21
  326. package/DEV-cjs/utils/icons/SvgChevronLeft.js +0 -21
  327. package/DEV-cjs/utils/icons/SvgChevronLeftDouble.js +0 -21
  328. package/DEV-cjs/utils/icons/SvgChevronRight.js +0 -21
  329. package/DEV-cjs/utils/icons/SvgChevronRightDouble.js +0 -21
  330. package/DEV-cjs/utils/icons/SvgChevronRightSmall.js +0 -21
  331. package/DEV-cjs/utils/icons/SvgClose.js +0 -21
  332. package/DEV-cjs/utils/icons/SvgCloseSmall.js +0 -21
  333. package/DEV-cjs/utils/icons/SvgColumnManager.js +0 -21
  334. package/DEV-cjs/utils/icons/SvgDocument.js +0 -21
  335. package/DEV-cjs/utils/icons/SvgFilter.js +0 -21
  336. package/DEV-cjs/utils/icons/SvgFilterHollow.js +0 -21
  337. package/DEV-cjs/utils/icons/SvgImportantSmall.js +0 -21
  338. package/DEV-cjs/utils/icons/SvgInfoCircular.js +0 -21
  339. package/DEV-cjs/utils/icons/SvgMore.js +0 -21
  340. package/DEV-cjs/utils/icons/SvgMoreVertical.js +0 -21
  341. package/DEV-cjs/utils/icons/SvgNew.js +0 -21
  342. package/DEV-cjs/utils/icons/SvgSearch.js +0 -21
  343. package/DEV-cjs/utils/icons/SvgSmileyHappy.js +0 -21
  344. package/DEV-cjs/utils/icons/SvgSortDown.js +0 -21
  345. package/DEV-cjs/utils/icons/SvgSortUp.js +0 -21
  346. package/DEV-cjs/utils/icons/SvgStatusError.js +0 -21
  347. package/DEV-cjs/utils/icons/SvgStatusSuccess.js +0 -21
  348. package/DEV-cjs/utils/icons/SvgStatusWarning.js +0 -21
  349. package/DEV-cjs/utils/icons/SvgSwap.js +0 -21
  350. package/DEV-cjs/utils/icons/SvgUpload.js +0 -21
  351. package/DEV-cjs/utils/icons/index.js +0 -37
  352. package/DEV-cjs/utils/index.js +0 -13
  353. package/DEV-cjs/utils/meta.js +0 -16
  354. package/DEV-cjs/utils/props.js +0 -4
  355. package/DEV-cjs/utils/providers/HydrationProvider.js +0 -58
  356. package/DEV-cjs/utils/providers/ScopeProvider.js +0 -66
  357. package/DEV-cjs/utils/providers/index.js +0 -7
  358. package/DEV-cjs/utils/types.js +0 -4
  359. package/DEV-esm/core/Alert/Alert.js +0 -133
  360. package/DEV-esm/core/Avatar/Avatar.js +0 -54
  361. package/DEV-esm/core/AvatarGroup/AvatarGroup.js +0 -63
  362. package/DEV-esm/core/Backdrop/Backdrop.js +0 -18
  363. package/DEV-esm/core/Badge/Badge.js +0 -41
  364. package/DEV-esm/core/Breadcrumbs/Breadcrumbs.js +0 -182
  365. package/DEV-esm/core/ButtonGroup/ButtonGroup.js +0 -141
  366. package/DEV-esm/core/Buttons/Button.js +0 -79
  367. package/DEV-esm/core/Buttons/DropdownButton.js +0 -49
  368. package/DEV-esm/core/Buttons/IconButton.js +0 -63
  369. package/DEV-esm/core/Buttons/IdeasButton.js +0 -22
  370. package/DEV-esm/core/Buttons/SplitButton.js +0 -98
  371. package/DEV-esm/core/Carousel/Carousel.js +0 -72
  372. package/DEV-esm/core/Carousel/CarouselContext.js +0 -3
  373. package/DEV-esm/core/Carousel/CarouselDot.js +0 -23
  374. package/DEV-esm/core/Carousel/CarouselDotsList.js +0 -151
  375. package/DEV-esm/core/Carousel/CarouselNavigation.js +0 -96
  376. package/DEV-esm/core/Carousel/CarouselSlide.js +0 -45
  377. package/DEV-esm/core/Carousel/CarouselSlider.js +0 -63
  378. package/DEV-esm/core/Checkbox/Checkbox.js +0 -85
  379. package/DEV-esm/core/ColorPicker/ColorBuilder.js +0 -321
  380. package/DEV-esm/core/ColorPicker/ColorInputPanel.js +0 -433
  381. package/DEV-esm/core/ColorPicker/ColorPalette.js +0 -63
  382. package/DEV-esm/core/ColorPicker/ColorPicker.js +0 -77
  383. package/DEV-esm/core/ColorPicker/ColorPickerContext.js +0 -10
  384. package/DEV-esm/core/ColorPicker/ColorSwatch.js +0 -37
  385. package/DEV-esm/core/ComboBox/ComboBox.js +0 -411
  386. package/DEV-esm/core/ComboBox/ComboBox.types-test.js +0 -85
  387. package/DEV-esm/core/ComboBox/ComboBoxEndIcon.js +0 -28
  388. package/DEV-esm/core/ComboBox/ComboBoxInput.js +0 -178
  389. package/DEV-esm/core/ComboBox/ComboBoxInputContainer.js +0 -39
  390. package/DEV-esm/core/ComboBox/ComboBoxMenu.js +0 -130
  391. package/DEV-esm/core/ComboBox/ComboBoxMenuItem.js +0 -80
  392. package/DEV-esm/core/ComboBox/ComboBoxMultipleContainer.js +0 -11
  393. package/DEV-esm/core/ComboBox/helpers.js +0 -5
  394. package/DEV-esm/core/DatePicker/DatePicker.js +0 -562
  395. package/DEV-esm/core/Dialog/Dialog.js +0 -81
  396. package/DEV-esm/core/Dialog/DialogBackdrop.js +0 -44
  397. package/DEV-esm/core/Dialog/DialogButtonBar.js +0 -3
  398. package/DEV-esm/core/Dialog/DialogContent.js +0 -3
  399. package/DEV-esm/core/Dialog/DialogContext.js +0 -3
  400. package/DEV-esm/core/Dialog/DialogDragContext.js +0 -8
  401. package/DEV-esm/core/Dialog/DialogMain.js +0 -179
  402. package/DEV-esm/core/Dialog/DialogTitleBar.js +0 -57
  403. package/DEV-esm/core/Dialog/DialogTitleBarTitle.js +0 -3
  404. package/DEV-esm/core/Divider/Divider.js +0 -14
  405. package/DEV-esm/core/DropdownMenu/DropdownMenu.js +0 -64
  406. package/DEV-esm/core/ExpandableBlock/ExpandableBlock.js +0 -206
  407. package/DEV-esm/core/Fieldset/Fieldset.js +0 -26
  408. package/DEV-esm/core/FileUpload/FileEmptyCard.js +0 -38
  409. package/DEV-esm/core/FileUpload/FileUpload.js +0 -71
  410. package/DEV-esm/core/FileUpload/FileUploadCard.js +0 -191
  411. package/DEV-esm/core/FileUpload/FileUploadTemplate.js +0 -52
  412. package/DEV-esm/core/Flex/Flex.js +0 -77
  413. package/DEV-esm/core/Footer/Footer.js +0 -115
  414. package/DEV-esm/core/Footer/FooterItem.js +0 -3
  415. package/DEV-esm/core/Footer/FooterList.js +0 -3
  416. package/DEV-esm/core/Footer/FooterSeparator.js +0 -5
  417. package/DEV-esm/core/Header/Header.js +0 -80
  418. package/DEV-esm/core/Header/HeaderBasicButton.js +0 -18
  419. package/DEV-esm/core/Header/HeaderBreadcrumbs.js +0 -45
  420. package/DEV-esm/core/Header/HeaderButton.js +0 -78
  421. package/DEV-esm/core/Header/HeaderDropdownButton.js +0 -48
  422. package/DEV-esm/core/Header/HeaderLogo.js +0 -45
  423. package/DEV-esm/core/Header/HeaderSplitButton.js +0 -71
  424. package/DEV-esm/core/Icon/Icon.js +0 -34
  425. package/DEV-esm/core/InformationPanel/InformationPanel.js +0 -91
  426. package/DEV-esm/core/InformationPanel/InformationPanelBody.js +0 -3
  427. package/DEV-esm/core/InformationPanel/InformationPanelContent.js +0 -24
  428. package/DEV-esm/core/InformationPanel/InformationPanelHeader.js +0 -45
  429. package/DEV-esm/core/InformationPanel/InformationPanelWrapper.js +0 -5
  430. package/DEV-esm/core/Input/Input.js +0 -18
  431. package/DEV-esm/core/InputGrid/InputGrid.js +0 -143
  432. package/DEV-esm/core/InputGroup/InputGroup.js +0 -80
  433. package/DEV-esm/core/InputWithDecorations/InputWithDecorations.js +0 -75
  434. package/DEV-esm/core/Label/Label.js +0 -32
  435. package/DEV-esm/core/LabeledInput/LabeledInput.js +0 -78
  436. package/DEV-esm/core/LabeledSelect/LabeledSelect.js +0 -64
  437. package/DEV-esm/core/LabeledSelect/LabeledSelect.types-test.js +0 -99
  438. package/DEV-esm/core/LabeledTextarea/LabeledTextarea.js +0 -11
  439. package/DEV-esm/core/LinkAction/LinkAction.js +0 -16
  440. package/DEV-esm/core/List/List.js +0 -5
  441. package/DEV-esm/core/List/ListItem.js +0 -41
  442. package/DEV-esm/core/Menu/Menu.js +0 -216
  443. package/DEV-esm/core/Menu/MenuDivider.js +0 -5
  444. package/DEV-esm/core/Menu/MenuExtraContent.js +0 -5
  445. package/DEV-esm/core/Menu/MenuItem.js +0 -137
  446. package/DEV-esm/core/Menu/MenuItemSkeleton.js +0 -53
  447. package/DEV-esm/core/Modal/Modal.js +0 -48
  448. package/DEV-esm/core/Modal/ModalButtonBar.js +0 -3
  449. package/DEV-esm/core/Modal/ModalContent.js +0 -3
  450. package/DEV-esm/core/NonIdealState/ErrorPage.js +0 -167
  451. package/DEV-esm/core/NonIdealState/NonIdealState.js +0 -71
  452. package/DEV-esm/core/NotificationMarker/NotificationMarker.js +0 -31
  453. package/DEV-esm/core/Overlay/Overlay.js +0 -37
  454. package/DEV-esm/core/Popover/Popover.js +0 -343
  455. package/DEV-esm/core/ProgressIndicators/ProgressLinear.js +0 -60
  456. package/DEV-esm/core/ProgressIndicators/ProgressRadial.js +0 -58
  457. package/DEV-esm/core/Radio/Radio.js +0 -55
  458. package/DEV-esm/core/RadioTiles/RadioTile.js +0 -68
  459. package/DEV-esm/core/RadioTiles/RadioTileGroup.js +0 -22
  460. package/DEV-esm/core/SearchBox/SearchBox.js +0 -224
  461. package/DEV-esm/core/Select/Select.js +0 -468
  462. package/DEV-esm/core/Select/Select.types-test.js +0 -111
  463. package/DEV-esm/core/Select/SelectTag.js +0 -23
  464. package/DEV-esm/core/Select/SelectTagContainer.js +0 -37
  465. package/DEV-esm/core/SideNavigation/SideNavigation.js +0 -111
  466. package/DEV-esm/core/SideNavigation/SidenavButton.js +0 -46
  467. package/DEV-esm/core/SideNavigation/SidenavSubmenu.js +0 -22
  468. package/DEV-esm/core/SideNavigation/SidenavSubmenuHeader.js +0 -30
  469. package/DEV-esm/core/SkipToContentLink/SkipToContentLink.js +0 -17
  470. package/DEV-esm/core/Slider/Slider.js +0 -342
  471. package/DEV-esm/core/Slider/Thumb.js +0 -103
  472. package/DEV-esm/core/Slider/Track.js +0 -87
  473. package/DEV-esm/core/StatusMessage/StatusMessage.js +0 -38
  474. package/DEV-esm/core/Stepper/Stepper.js +0 -83
  475. package/DEV-esm/core/Stepper/StepperStep.js +0 -100
  476. package/DEV-esm/core/Stepper/WorkflowDiagram.js +0 -33
  477. package/DEV-esm/core/Stepper/WorkflowDiagramStep.js +0 -34
  478. package/DEV-esm/core/Surface/Surface.js +0 -104
  479. package/DEV-esm/core/Table/ColumnHeader.js +0 -187
  480. package/DEV-esm/core/Table/SubRowExpander.js +0 -37
  481. package/DEV-esm/core/Table/Table.js +0 -770
  482. package/DEV-esm/core/Table/TableCell.js +0 -93
  483. package/DEV-esm/core/Table/TableExpandableContentMemoized.js +0 -33
  484. package/DEV-esm/core/Table/TablePaginator.js +0 -343
  485. package/DEV-esm/core/Table/TableRowMemoized.js +0 -155
  486. package/DEV-esm/core/Table/actionHandlers/expandHandler.js +0 -11
  487. package/DEV-esm/core/Table/actionHandlers/filterHandler.js +0 -24
  488. package/DEV-esm/core/Table/actionHandlers/index.js +0 -8
  489. package/DEV-esm/core/Table/actionHandlers/resizeHandler.js +0 -14
  490. package/DEV-esm/core/Table/actionHandlers/selectHandler.js +0 -114
  491. package/DEV-esm/core/Table/cells/DefaultCell.js +0 -85
  492. package/DEV-esm/core/Table/cells/EditableCell.js +0 -75
  493. package/DEV-esm/core/Table/cells/index.js +0 -2
  494. package/DEV-esm/core/Table/columns/actionColumn.js +0 -92
  495. package/DEV-esm/core/Table/columns/expanderColumn.js +0 -45
  496. package/DEV-esm/core/Table/columns/index.js +0 -3
  497. package/DEV-esm/core/Table/columns/selectionColumn.js +0 -68
  498. package/DEV-esm/core/Table/filters/BaseFilter.js +0 -18
  499. package/DEV-esm/core/Table/filters/DateRangeFilter/DatePickerInput.js +0 -116
  500. package/DEV-esm/core/Table/filters/DateRangeFilter/DateRangeFilter.js +0 -111
  501. package/DEV-esm/core/Table/filters/FilterButtonBar.js +0 -49
  502. package/DEV-esm/core/Table/filters/FilterToggle.js +0 -66
  503. package/DEV-esm/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +0 -50
  504. package/DEV-esm/core/Table/filters/TextFilter/TextFilter.js +0 -30
  505. package/DEV-esm/core/Table/filters/customFilterFunctions.js +0 -21
  506. package/DEV-esm/core/Table/filters/defaultFilterFunctions.js +0 -115
  507. package/DEV-esm/core/Table/filters/index.js +0 -4
  508. package/DEV-esm/core/Table/filters/tableFilters.js +0 -21
  509. package/DEV-esm/core/Table/filters/types.js +0 -1
  510. package/DEV-esm/core/Table/hooks/index.js +0 -8
  511. package/DEV-esm/core/Table/hooks/useColumnDragAndDrop.js +0 -114
  512. package/DEV-esm/core/Table/hooks/useExpanderCell.js +0 -28
  513. package/DEV-esm/core/Table/hooks/useResizeColumns.js +0 -354
  514. package/DEV-esm/core/Table/hooks/useScrollToRow.js +0 -34
  515. package/DEV-esm/core/Table/hooks/useSelectionCell.js +0 -18
  516. package/DEV-esm/core/Table/hooks/useStickyColumns.js +0 -55
  517. package/DEV-esm/core/Table/hooks/useSubRowFiltering.js +0 -84
  518. package/DEV-esm/core/Table/hooks/useSubRowSelection.js +0 -32
  519. package/DEV-esm/core/Table/index.js +0 -9
  520. package/DEV-esm/core/Table/utils.js +0 -50
  521. package/DEV-esm/core/Tabs/Tabs.js +0 -410
  522. package/DEV-esm/core/Tag/Tag.js +0 -62
  523. package/DEV-esm/core/Tag/TagContainer.js +0 -23
  524. package/DEV-esm/core/Textarea/Textarea.js +0 -11
  525. package/DEV-esm/core/ThemeProvider/ThemeContext.js +0 -2
  526. package/DEV-esm/core/ThemeProvider/ThemeProvider.js +0 -298
  527. package/DEV-esm/core/Tile/Tile.js +0 -328
  528. package/DEV-esm/core/TimePicker/TimePicker.js +0 -459
  529. package/DEV-esm/core/Toast/Toast.js +0 -214
  530. package/DEV-esm/core/Toast/Toaster.js +0 -130
  531. package/DEV-esm/core/ToggleSwitch/ToggleSwitch.js +0 -65
  532. package/DEV-esm/core/Tooltip/Tooltip.js +0 -241
  533. package/DEV-esm/core/TransferList/TransferList.js +0 -179
  534. package/DEV-esm/core/Tree/Tree.js +0 -239
  535. package/DEV-esm/core/Tree/TreeContext.js +0 -8
  536. package/DEV-esm/core/Tree/TreeNode.js +0 -238
  537. package/DEV-esm/core/Tree/TreeNodeExpander.js +0 -31
  538. package/DEV-esm/core/Typography/Anchor.js +0 -29
  539. package/DEV-esm/core/Typography/Blockquote.js +0 -18
  540. package/DEV-esm/core/Typography/Code.js +0 -3
  541. package/DEV-esm/core/Typography/Kbd.js +0 -32
  542. package/DEV-esm/core/Typography/Text.js +0 -33
  543. package/DEV-esm/core/VisuallyHidden/VisuallyHidden.js +0 -49
  544. package/DEV-esm/index.js +0 -124
  545. package/DEV-esm/react-table/react-table.js +0 -1
  546. package/DEV-esm/react-table/react-table.types-test.js +0 -656
  547. package/DEV-esm/styles.js +0 -14
  548. package/DEV-esm/utils/color/ColorValue.js +0 -421
  549. package/DEV-esm/utils/color/index.js +0 -1
  550. package/DEV-esm/utils/components/AutoclearingHiddenLiveRegion.js +0 -20
  551. package/DEV-esm/utils/components/Box.js +0 -2
  552. package/DEV-esm/utils/components/ButtonBase.js +0 -33
  553. package/DEV-esm/utils/components/FieldsetBase.js +0 -2
  554. package/DEV-esm/utils/components/FocusTrap.js +0 -40
  555. package/DEV-esm/utils/components/InputContainer.js +0 -58
  556. package/DEV-esm/utils/components/InputFlexContainer.js +0 -39
  557. package/DEV-esm/utils/components/InputWithIcon.js +0 -3
  558. package/DEV-esm/utils/components/LineClamp.js +0 -33
  559. package/DEV-esm/utils/components/MiddleTextTruncation.js +0 -36
  560. package/DEV-esm/utils/components/OverflowContainer.js +0 -50
  561. package/DEV-esm/utils/components/Portal.js +0 -19
  562. package/DEV-esm/utils/components/Resizer.js +0 -255
  563. package/DEV-esm/utils/components/ShadowRoot.js +0 -96
  564. package/DEV-esm/utils/components/WithCSSTransition.js +0 -49
  565. package/DEV-esm/utils/components/index.js +0 -15
  566. package/DEV-esm/utils/functions/colors.js +0 -25
  567. package/DEV-esm/utils/functions/date.js +0 -8
  568. package/DEV-esm/utils/functions/dev.js +0 -10
  569. package/DEV-esm/utils/functions/dom.js +0 -20
  570. package/DEV-esm/utils/functions/focusable.js +0 -68
  571. package/DEV-esm/utils/functions/import.js +0 -23
  572. package/DEV-esm/utils/functions/index.js +0 -10
  573. package/DEV-esm/utils/functions/numbers.js +0 -13
  574. package/DEV-esm/utils/functions/polymorphic.js +0 -49
  575. package/DEV-esm/utils/functions/react.js +0 -17
  576. package/DEV-esm/utils/functions/supports.js +0 -3
  577. package/DEV-esm/utils/hooks/index.js +0 -17
  578. package/DEV-esm/utils/hooks/useContainerWidth.js +0 -18
  579. package/DEV-esm/utils/hooks/useControlledState.js +0 -20
  580. package/DEV-esm/utils/hooks/useDragAndDrop.js +0 -105
  581. package/DEV-esm/utils/hooks/useEventListener.js +0 -15
  582. package/DEV-esm/utils/hooks/useGlobals.js +0 -37
  583. package/DEV-esm/utils/hooks/useId.js +0 -9
  584. package/DEV-esm/utils/hooks/useIntersection.js +0 -30
  585. package/DEV-esm/utils/hooks/useIsClient.js +0 -8
  586. package/DEV-esm/utils/hooks/useIsomorphicLayoutEffect.js +0 -4
  587. package/DEV-esm/utils/hooks/useLatestRef.js +0 -8
  588. package/DEV-esm/utils/hooks/useMediaQuery.js +0 -20
  589. package/DEV-esm/utils/hooks/useMergedRefs.js +0 -11
  590. package/DEV-esm/utils/hooks/useOverflow.js +0 -63
  591. package/DEV-esm/utils/hooks/useResizeObserver.js +0 -23
  592. package/DEV-esm/utils/hooks/useSafeContext.js +0 -7
  593. package/DEV-esm/utils/hooks/useSyncExternalStore.js +0 -32
  594. package/DEV-esm/utils/hooks/useVirtualScroll.js +0 -50
  595. package/DEV-esm/utils/hooks/useWarningLogger.js +0 -32
  596. package/DEV-esm/utils/icons/StatusIconMap.js +0 -27
  597. package/DEV-esm/utils/icons/Svg.js +0 -6
  598. package/DEV-esm/utils/icons/SvgCalendar.js +0 -10
  599. package/DEV-esm/utils/icons/SvgCaretDownSmall.js +0 -10
  600. package/DEV-esm/utils/icons/SvgCaretRightSmall.js +0 -10
  601. package/DEV-esm/utils/icons/SvgCaretUpSmall.js +0 -10
  602. package/DEV-esm/utils/icons/SvgCheckmark.js +0 -10
  603. package/DEV-esm/utils/icons/SvgCheckmarkSmall.js +0 -10
  604. package/DEV-esm/utils/icons/SvgChevronLeft.js +0 -10
  605. package/DEV-esm/utils/icons/SvgChevronLeftDouble.js +0 -10
  606. package/DEV-esm/utils/icons/SvgChevronRight.js +0 -10
  607. package/DEV-esm/utils/icons/SvgChevronRightDouble.js +0 -10
  608. package/DEV-esm/utils/icons/SvgChevronRightSmall.js +0 -10
  609. package/DEV-esm/utils/icons/SvgClose.js +0 -10
  610. package/DEV-esm/utils/icons/SvgCloseSmall.js +0 -10
  611. package/DEV-esm/utils/icons/SvgColumnManager.js +0 -10
  612. package/DEV-esm/utils/icons/SvgDocument.js +0 -10
  613. package/DEV-esm/utils/icons/SvgFilter.js +0 -10
  614. package/DEV-esm/utils/icons/SvgFilterHollow.js +0 -10
  615. package/DEV-esm/utils/icons/SvgImportantSmall.js +0 -10
  616. package/DEV-esm/utils/icons/SvgInfoCircular.js +0 -10
  617. package/DEV-esm/utils/icons/SvgMore.js +0 -10
  618. package/DEV-esm/utils/icons/SvgMoreVertical.js +0 -10
  619. package/DEV-esm/utils/icons/SvgNew.js +0 -10
  620. package/DEV-esm/utils/icons/SvgSearch.js +0 -10
  621. package/DEV-esm/utils/icons/SvgSmileyHappy.js +0 -10
  622. package/DEV-esm/utils/icons/SvgSortDown.js +0 -10
  623. package/DEV-esm/utils/icons/SvgSortUp.js +0 -10
  624. package/DEV-esm/utils/icons/SvgStatusError.js +0 -10
  625. package/DEV-esm/utils/icons/SvgStatusSuccess.js +0 -10
  626. package/DEV-esm/utils/icons/SvgStatusWarning.js +0 -10
  627. package/DEV-esm/utils/icons/SvgSwap.js +0 -10
  628. package/DEV-esm/utils/icons/SvgUpload.js +0 -10
  629. package/DEV-esm/utils/icons/index.js +0 -32
  630. package/DEV-esm/utils/index.js +0 -8
  631. package/DEV-esm/utils/meta.js +0 -6
  632. package/DEV-esm/utils/props.js +0 -1
  633. package/DEV-esm/utils/providers/HydrationProvider.js +0 -38
  634. package/DEV-esm/utils/providers/ScopeProvider.js +0 -43
  635. package/DEV-esm/utils/providers/index.js +0 -2
  636. package/DEV-esm/utils/types.js +0 -1
  637. package/cjs/core/Alert/Alert.d.ts +0 -77
  638. package/cjs/core/Alert/Alert.js +0 -137
  639. package/cjs/core/Avatar/Avatar.d.ts +0 -55
  640. package/cjs/core/Avatar/Avatar.js +0 -80
  641. package/cjs/core/AvatarGroup/AvatarGroup.d.ts +0 -61
  642. package/cjs/core/AvatarGroup/AvatarGroup.js +0 -74
  643. package/cjs/core/Backdrop/Backdrop.d.ts +0 -9
  644. package/cjs/core/Backdrop/Backdrop.js +0 -29
  645. package/cjs/core/Badge/Badge.d.ts +0 -26
  646. package/cjs/core/Badge/Badge.js +0 -54
  647. package/cjs/core/Breadcrumbs/Breadcrumbs.d.ts +0 -92
  648. package/cjs/core/Breadcrumbs/Breadcrumbs.js +0 -189
  649. package/cjs/core/ButtonGroup/ButtonGroup.d.ts +0 -69
  650. package/cjs/core/ButtonGroup/ButtonGroup.js +0 -156
  651. package/cjs/core/Buttons/Button.d.ts +0 -55
  652. package/cjs/core/Buttons/Button.js +0 -99
  653. package/cjs/core/Buttons/DropdownButton.d.ts +0 -31
  654. package/cjs/core/Buttons/DropdownButton.js +0 -60
  655. package/cjs/core/Buttons/IconButton.d.ts +0 -36
  656. package/cjs/core/Buttons/IconButton.js +0 -79
  657. package/cjs/core/Buttons/IdeasButton.d.ts +0 -19
  658. package/cjs/core/Buttons/IdeasButton.js +0 -33
  659. package/cjs/core/Buttons/SplitButton.d.ts +0 -50
  660. package/cjs/core/Buttons/SplitButton.js +0 -104
  661. package/cjs/core/Carousel/Carousel.d.ts +0 -80
  662. package/cjs/core/Carousel/Carousel.js +0 -83
  663. package/cjs/core/Carousel/CarouselContext.d.ts +0 -35
  664. package/cjs/core/Carousel/CarouselContext.js +0 -13
  665. package/cjs/core/Carousel/CarouselDot.d.ts +0 -15
  666. package/cjs/core/Carousel/CarouselDot.js +0 -34
  667. package/cjs/core/Carousel/CarouselDotsList.d.ts +0 -33
  668. package/cjs/core/Carousel/CarouselDotsList.js +0 -163
  669. package/cjs/core/Carousel/CarouselNavigation.d.ts +0 -32
  670. package/cjs/core/Carousel/CarouselNavigation.js +0 -105
  671. package/cjs/core/Carousel/CarouselSlide.d.ts +0 -16
  672. package/cjs/core/Carousel/CarouselSlide.js +0 -54
  673. package/cjs/core/Carousel/CarouselSlider.d.ts +0 -5
  674. package/cjs/core/Carousel/CarouselSlider.js +0 -71
  675. package/cjs/core/Checkbox/Checkbox.d.ts +0 -49
  676. package/cjs/core/Checkbox/Checkbox.js +0 -99
  677. package/cjs/core/ColorPicker/ColorBuilder.d.ts +0 -28
  678. package/cjs/core/ColorPicker/ColorBuilder.js +0 -343
  679. package/cjs/core/ColorPicker/ColorInputPanel.d.ts +0 -44
  680. package/cjs/core/ColorPicker/ColorInputPanel.js +0 -443
  681. package/cjs/core/ColorPicker/ColorPalette.d.ts +0 -37
  682. package/cjs/core/ColorPicker/ColorPalette.js +0 -80
  683. package/cjs/core/ColorPicker/ColorPicker.d.ts +0 -57
  684. package/cjs/core/ColorPicker/ColorPicker.js +0 -97
  685. package/cjs/core/ColorPicker/ColorPickerContext.d.ts +0 -18
  686. package/cjs/core/ColorPicker/ColorPickerContext.js +0 -30
  687. package/cjs/core/ColorPicker/ColorSwatch.d.ts +0 -20
  688. package/cjs/core/ColorPicker/ColorSwatch.js +0 -54
  689. package/cjs/core/ComboBox/ComboBox.d.ts +0 -119
  690. package/cjs/core/ComboBox/ComboBox.js +0 -414
  691. package/cjs/core/ComboBox/ComboBox.types-test.js +0 -89
  692. package/cjs/core/ComboBox/ComboBoxEndIcon.d.ts +0 -7
  693. package/cjs/core/ComboBox/ComboBoxEndIcon.js +0 -39
  694. package/cjs/core/ComboBox/ComboBoxInput.d.ts +0 -8
  695. package/cjs/core/ComboBox/ComboBoxInput.js +0 -194
  696. package/cjs/core/ComboBox/ComboBoxInputContainer.d.ts +0 -4
  697. package/cjs/core/ComboBox/ComboBoxInputContainer.js +0 -43
  698. package/cjs/core/ComboBox/ComboBoxMenu.d.ts +0 -6
  699. package/cjs/core/ComboBox/ComboBoxMenu.js +0 -138
  700. package/cjs/core/ComboBox/ComboBoxMenuItem.d.ts +0 -8
  701. package/cjs/core/ComboBox/ComboBoxMenuItem.js +0 -88
  702. package/cjs/core/ComboBox/ComboBoxMultipleContainer.d.ts +0 -7
  703. package/cjs/core/ComboBox/ComboBoxMultipleContainer.js +0 -21
  704. package/cjs/core/ComboBox/helpers.d.ts +0 -26
  705. package/cjs/core/ComboBox/helpers.js +0 -23
  706. package/cjs/core/DatePicker/DatePicker.d.ts +0 -114
  707. package/cjs/core/DatePicker/DatePicker.js +0 -594
  708. package/cjs/core/Dialog/Dialog.d.ts +0 -44
  709. package/cjs/core/Dialog/Dialog.js +0 -92
  710. package/cjs/core/Dialog/DialogBackdrop.d.ts +0 -12
  711. package/cjs/core/Dialog/DialogBackdrop.js +0 -55
  712. package/cjs/core/Dialog/DialogButtonBar.d.ts +0 -9
  713. package/cjs/core/Dialog/DialogButtonBar.js +0 -12
  714. package/cjs/core/Dialog/DialogContent.d.ts +0 -8
  715. package/cjs/core/Dialog/DialogContent.js +0 -12
  716. package/cjs/core/Dialog/DialogContext.d.ts +0 -89
  717. package/cjs/core/Dialog/DialogContext.js +0 -23
  718. package/cjs/core/Dialog/DialogDragContext.d.ts +0 -8
  719. package/cjs/core/Dialog/DialogDragContext.js +0 -28
  720. package/cjs/core/Dialog/DialogMain.d.ts +0 -35
  721. package/cjs/core/Dialog/DialogMain.js +0 -182
  722. package/cjs/core/Dialog/DialogTitleBar.d.ts +0 -34
  723. package/cjs/core/Dialog/DialogTitleBar.js +0 -75
  724. package/cjs/core/Dialog/DialogTitleBarTitle.d.ts +0 -8
  725. package/cjs/core/Dialog/DialogTitleBarTitle.js +0 -12
  726. package/cjs/core/Divider/Divider.d.ts +0 -13
  727. package/cjs/core/Divider/Divider.js +0 -25
  728. package/cjs/core/DropdownMenu/DropdownMenu.d.ts +0 -50
  729. package/cjs/core/DropdownMenu/DropdownMenu.js +0 -74
  730. package/cjs/core/ExpandableBlock/ExpandableBlock.d.ts +0 -124
  731. package/cjs/core/ExpandableBlock/ExpandableBlock.js +0 -211
  732. package/cjs/core/Fieldset/Fieldset.d.ts +0 -21
  733. package/cjs/core/Fieldset/Fieldset.js +0 -37
  734. package/cjs/core/FileUpload/FileEmptyCard.d.ts +0 -21
  735. package/cjs/core/FileUpload/FileEmptyCard.js +0 -51
  736. package/cjs/core/FileUpload/FileUpload.d.ts +0 -33
  737. package/cjs/core/FileUpload/FileUpload.js +0 -97
  738. package/cjs/core/FileUpload/FileUploadCard.d.ts +0 -76
  739. package/cjs/core/FileUpload/FileUploadCard.js +0 -201
  740. package/cjs/core/FileUpload/FileUploadTemplate.d.ts +0 -43
  741. package/cjs/core/FileUpload/FileUploadTemplate.js +0 -66
  742. package/cjs/core/Flex/Flex.d.ts +0 -138
  743. package/cjs/core/Flex/Flex.js +0 -86
  744. package/cjs/core/Footer/Footer.d.ts +0 -60
  745. package/cjs/core/Footer/Footer.js +0 -136
  746. package/cjs/core/Footer/FooterItem.d.ts +0 -4
  747. package/cjs/core/Footer/FooterItem.js +0 -12
  748. package/cjs/core/Footer/FooterList.d.ts +0 -4
  749. package/cjs/core/Footer/FooterList.js +0 -12
  750. package/cjs/core/Footer/FooterSeparator.d.ts +0 -4
  751. package/cjs/core/Footer/FooterSeparator.js +0 -14
  752. package/cjs/core/Header/Header.d.ts +0 -95
  753. package/cjs/core/Header/Header.js +0 -91
  754. package/cjs/core/Header/HeaderBasicButton.d.ts +0 -3
  755. package/cjs/core/Header/HeaderBasicButton.js +0 -33
  756. package/cjs/core/Header/HeaderBreadcrumbs.d.ts +0 -26
  757. package/cjs/core/Header/HeaderBreadcrumbs.js +0 -63
  758. package/cjs/core/Header/HeaderButton.d.ts +0 -35
  759. package/cjs/core/Header/HeaderButton.js +0 -94
  760. package/cjs/core/Header/HeaderDropdownButton.d.ts +0 -3
  761. package/cjs/core/Header/HeaderDropdownButton.js +0 -59
  762. package/cjs/core/Header/HeaderLogo.d.ts +0 -22
  763. package/cjs/core/Header/HeaderLogo.js +0 -56
  764. package/cjs/core/Header/HeaderSplitButton.d.ts +0 -3
  765. package/cjs/core/Header/HeaderSplitButton.js +0 -81
  766. package/cjs/core/Icon/Icon.d.ts +0 -47
  767. package/cjs/core/Icon/Icon.js +0 -45
  768. package/cjs/core/InformationPanel/InformationPanel.d.ts +0 -46
  769. package/cjs/core/InformationPanel/InformationPanel.js +0 -102
  770. package/cjs/core/InformationPanel/InformationPanelBody.d.ts +0 -4
  771. package/cjs/core/InformationPanel/InformationPanelBody.js +0 -12
  772. package/cjs/core/InformationPanel/InformationPanelContent.d.ts +0 -41
  773. package/cjs/core/InformationPanel/InformationPanelContent.js +0 -33
  774. package/cjs/core/InformationPanel/InformationPanelHeader.d.ts +0 -43
  775. package/cjs/core/InformationPanel/InformationPanelHeader.js +0 -54
  776. package/cjs/core/InformationPanel/InformationPanelWrapper.d.ts +0 -10
  777. package/cjs/core/InformationPanel/InformationPanelWrapper.js +0 -14
  778. package/cjs/core/Input/Input.d.ts +0 -23
  779. package/cjs/core/Input/Input.js +0 -29
  780. package/cjs/core/InputGrid/InputGrid.d.ts +0 -27
  781. package/cjs/core/InputGrid/InputGrid.js +0 -158
  782. package/cjs/core/InputGroup/InputGroup.d.ts +0 -73
  783. package/cjs/core/InputGroup/InputGroup.js +0 -94
  784. package/cjs/core/InputWithDecorations/InputWithDecorations.d.ts +0 -49
  785. package/cjs/core/InputWithDecorations/InputWithDecorations.js +0 -72
  786. package/cjs/core/Label/Label.d.ts +0 -29
  787. package/cjs/core/Label/Label.js +0 -43
  788. package/cjs/core/LabeledInput/LabeledInput.d.ts +0 -60
  789. package/cjs/core/LabeledInput/LabeledInput.js +0 -92
  790. package/cjs/core/LabeledSelect/LabeledSelect.d.ts +0 -107
  791. package/cjs/core/LabeledSelect/LabeledSelect.js +0 -74
  792. package/cjs/core/LabeledSelect/LabeledSelect.types-test.js +0 -103
  793. package/cjs/core/LabeledTextarea/LabeledTextarea.d.ts +0 -58
  794. package/cjs/core/LabeledTextarea/LabeledTextarea.js +0 -21
  795. package/cjs/core/LinkAction/LinkAction.d.ts +0 -24
  796. package/cjs/core/LinkAction/LinkAction.js +0 -35
  797. package/cjs/core/List/List.d.ts +0 -1
  798. package/cjs/core/List/List.js +0 -14
  799. package/cjs/core/List/ListItem.d.ts +0 -80
  800. package/cjs/core/List/ListItem.js +0 -48
  801. package/cjs/core/Menu/Menu.d.ts +0 -95
  802. package/cjs/core/Menu/Menu.js +0 -226
  803. package/cjs/core/Menu/MenuDivider.d.ts +0 -16
  804. package/cjs/core/Menu/MenuDivider.js +0 -14
  805. package/cjs/core/Menu/MenuExtraContent.d.ts +0 -21
  806. package/cjs/core/Menu/MenuExtraContent.js +0 -14
  807. package/cjs/core/Menu/MenuItem.d.ts +0 -71
  808. package/cjs/core/Menu/MenuItem.js +0 -140
  809. package/cjs/core/Menu/MenuItemSkeleton.d.ts +0 -30
  810. package/cjs/core/Menu/MenuItemSkeleton.js +0 -68
  811. package/cjs/core/Modal/Modal.d.ts +0 -80
  812. package/cjs/core/Modal/Modal.js +0 -58
  813. package/cjs/core/Modal/ModalButtonBar.d.ts +0 -4
  814. package/cjs/core/Modal/ModalButtonBar.js +0 -12
  815. package/cjs/core/Modal/ModalContent.d.ts +0 -4
  816. package/cjs/core/Modal/ModalContent.js +0 -12
  817. package/cjs/core/NonIdealState/ErrorPage.d.ts +0 -61
  818. package/cjs/core/NonIdealState/ErrorPage.js +0 -213
  819. package/cjs/core/NonIdealState/NonIdealState.d.ts +0 -66
  820. package/cjs/core/NonIdealState/NonIdealState.js +0 -88
  821. package/cjs/core/NotificationMarker/NotificationMarker.d.ts +0 -52
  822. package/cjs/core/NotificationMarker/NotificationMarker.js +0 -42
  823. package/cjs/core/Overlay/Overlay.d.ts +0 -53
  824. package/cjs/core/Overlay/Overlay.js +0 -44
  825. package/cjs/core/Popover/Popover.d.ts +0 -188
  826. package/cjs/core/Popover/Popover.js +0 -342
  827. package/cjs/core/ProgressIndicators/ProgressLinear.d.ts +0 -56
  828. package/cjs/core/ProgressIndicators/ProgressLinear.js +0 -75
  829. package/cjs/core/ProgressIndicators/ProgressRadial.d.ts +0 -45
  830. package/cjs/core/ProgressIndicators/ProgressRadial.js +0 -71
  831. package/cjs/core/Radio/Radio.d.ts +0 -32
  832. package/cjs/core/Radio/Radio.js +0 -69
  833. package/cjs/core/RadioTiles/RadioTile.d.ts +0 -39
  834. package/cjs/core/RadioTiles/RadioTile.js +0 -91
  835. package/cjs/core/RadioTiles/RadioTileGroup.d.ts +0 -14
  836. package/cjs/core/RadioTiles/RadioTileGroup.js +0 -32
  837. package/cjs/core/SearchBox/SearchBox.d.ts +0 -92
  838. package/cjs/core/SearchBox/SearchBox.js +0 -219
  839. package/cjs/core/Select/Select.d.ts +0 -280
  840. package/cjs/core/Select/Select.js +0 -484
  841. package/cjs/core/Select/Select.types-test.js +0 -115
  842. package/cjs/core/Select/SelectTag.d.ts +0 -13
  843. package/cjs/core/Select/SelectTag.js +0 -35
  844. package/cjs/core/Select/SelectTagContainer.d.ts +0 -12
  845. package/cjs/core/Select/SelectTagContainer.js +0 -55
  846. package/cjs/core/SideNavigation/SideNavigation.d.ts +0 -84
  847. package/cjs/core/SideNavigation/SideNavigation.js +0 -141
  848. package/cjs/core/SideNavigation/SidenavButton.d.ts +0 -20
  849. package/cjs/core/SideNavigation/SidenavButton.js +0 -58
  850. package/cjs/core/SideNavigation/SidenavSubmenu.d.ts +0 -10
  851. package/cjs/core/SideNavigation/SidenavSubmenu.js +0 -36
  852. package/cjs/core/SideNavigation/SidenavSubmenuHeader.d.ts +0 -24
  853. package/cjs/core/SideNavigation/SidenavSubmenuHeader.js +0 -44
  854. package/cjs/core/SkipToContentLink/SkipToContentLink.d.ts +0 -23
  855. package/cjs/core/SkipToContentLink/SkipToContentLink.js +0 -31
  856. package/cjs/core/Slider/Slider.d.ts +0 -129
  857. package/cjs/core/Slider/Slider.js +0 -373
  858. package/cjs/core/Slider/Thumb.d.ts +0 -63
  859. package/cjs/core/Slider/Thumb.js +0 -115
  860. package/cjs/core/Slider/Track.d.ts +0 -14
  861. package/cjs/core/Slider/Track.js +0 -102
  862. package/cjs/core/StatusMessage/StatusMessage.d.ts +0 -36
  863. package/cjs/core/StatusMessage/StatusMessage.js +0 -49
  864. package/cjs/core/Stepper/Stepper.d.ts +0 -63
  865. package/cjs/core/Stepper/Stepper.js +0 -97
  866. package/cjs/core/Stepper/StepperStep.d.ts +0 -49
  867. package/cjs/core/Stepper/StepperStep.js +0 -118
  868. package/cjs/core/Stepper/WorkflowDiagram.d.ts +0 -15
  869. package/cjs/core/Stepper/WorkflowDiagram.js +0 -44
  870. package/cjs/core/Stepper/WorkflowDiagramStep.d.ts +0 -10
  871. package/cjs/core/Stepper/WorkflowDiagramStep.js +0 -52
  872. package/cjs/core/Surface/Surface.d.ts +0 -48
  873. package/cjs/core/Surface/Surface.js +0 -112
  874. package/cjs/core/Table/ColumnHeader.d.ts +0 -15
  875. package/cjs/core/Table/ColumnHeader.js +0 -187
  876. package/cjs/core/Table/SubRowExpander.d.ts +0 -11
  877. package/cjs/core/Table/SubRowExpander.js +0 -48
  878. package/cjs/core/Table/Table.d.ts +0 -274
  879. package/cjs/core/Table/Table.js +0 -754
  880. package/cjs/core/Table/TableCell.d.ts +0 -12
  881. package/cjs/core/Table/TableCell.js +0 -112
  882. package/cjs/core/Table/TableExpandableContentMemoized.d.ts +0 -10
  883. package/cjs/core/Table/TableExpandableContentMemoized.js +0 -47
  884. package/cjs/core/Table/TablePaginator.d.ts +0 -75
  885. package/cjs/core/Table/TablePaginator.js +0 -347
  886. package/cjs/core/Table/TableRowMemoized.d.ts +0 -33
  887. package/cjs/core/Table/TableRowMemoized.js +0 -176
  888. package/cjs/core/Table/actionHandlers/expandHandler.d.ts +0 -2
  889. package/cjs/core/Table/actionHandlers/expandHandler.js +0 -21
  890. package/cjs/core/Table/actionHandlers/filterHandler.d.ts +0 -3
  891. package/cjs/core/Table/actionHandlers/filterHandler.js +0 -34
  892. package/cjs/core/Table/actionHandlers/index.d.ts +0 -4
  893. package/cjs/core/Table/actionHandlers/index.js +0 -38
  894. package/cjs/core/Table/actionHandlers/resizeHandler.d.ts +0 -63
  895. package/cjs/core/Table/actionHandlers/resizeHandler.js +0 -33
  896. package/cjs/core/Table/actionHandlers/selectHandler.d.ts +0 -43
  897. package/cjs/core/Table/actionHandlers/selectHandler.js +0 -136
  898. package/cjs/core/Table/cells/DefaultCell.d.ts +0 -38
  899. package/cjs/core/Table/cells/DefaultCell.js +0 -96
  900. package/cjs/core/Table/cells/EditableCell.d.ts +0 -36
  901. package/cjs/core/Table/cells/EditableCell.js +0 -88
  902. package/cjs/core/Table/cells/index.d.ts +0 -4
  903. package/cjs/core/Table/cells/index.js +0 -21
  904. package/cjs/core/Table/columns/actionColumn.d.ts +0 -40
  905. package/cjs/core/Table/columns/actionColumn.js +0 -103
  906. package/cjs/core/Table/columns/expanderColumn.d.ts +0 -44
  907. package/cjs/core/Table/columns/expanderColumn.js +0 -65
  908. package/cjs/core/Table/columns/index.d.ts +0 -3
  909. package/cjs/core/Table/columns/index.js +0 -31
  910. package/cjs/core/Table/columns/selectionColumn.d.ts +0 -33
  911. package/cjs/core/Table/columns/selectionColumn.js +0 -88
  912. package/cjs/core/Table/filters/BaseFilter.d.ts +0 -16
  913. package/cjs/core/Table/filters/BaseFilter.js +0 -33
  914. package/cjs/core/Table/filters/DateRangeFilter/DatePickerInput.d.ts +0 -24
  915. package/cjs/core/Table/filters/DateRangeFilter/DatePickerInput.js +0 -127
  916. package/cjs/core/Table/filters/DateRangeFilter/DateRangeFilter.d.ts +0 -17
  917. package/cjs/core/Table/filters/DateRangeFilter/DateRangeFilter.js +0 -122
  918. package/cjs/core/Table/filters/FilterButtonBar.d.ts +0 -32
  919. package/cjs/core/Table/filters/FilterButtonBar.js +0 -61
  920. package/cjs/core/Table/filters/FilterToggle.d.ts +0 -10
  921. package/cjs/core/Table/filters/FilterToggle.js +0 -77
  922. package/cjs/core/Table/filters/NumberRangeFilter/NumberRangeFilter.d.ts +0 -11
  923. package/cjs/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +0 -61
  924. package/cjs/core/Table/filters/TextFilter/TextFilter.d.ts +0 -7
  925. package/cjs/core/Table/filters/TextFilter/TextFilter.js +0 -41
  926. package/cjs/core/Table/filters/customFilterFunctions.d.ts +0 -10
  927. package/cjs/core/Table/filters/customFilterFunctions.js +0 -31
  928. package/cjs/core/Table/filters/defaultFilterFunctions.d.ts +0 -61
  929. package/cjs/core/Table/filters/defaultFilterFunctions.js +0 -125
  930. package/cjs/core/Table/filters/index.d.ts +0 -7
  931. package/cjs/core/Table/filters/index.js +0 -29
  932. package/cjs/core/Table/filters/tableFilters.d.ts +0 -53
  933. package/cjs/core/Table/filters/tableFilters.js +0 -32
  934. package/cjs/core/Table/filters/types.d.ts +0 -20
  935. package/cjs/core/Table/filters/types.js +0 -4
  936. package/cjs/core/Table/hooks/index.d.ts +0 -8
  937. package/cjs/core/Table/hooks/index.js +0 -45
  938. package/cjs/core/Table/hooks/useColumnDragAndDrop.d.ts +0 -2
  939. package/cjs/core/Table/hooks/useColumnDragAndDrop.js +0 -124
  940. package/cjs/core/Table/hooks/useExpanderCell.d.ts +0 -3
  941. package/cjs/core/Table/hooks/useExpanderCell.js +0 -41
  942. package/cjs/core/Table/hooks/useResizeColumns.d.ts +0 -37
  943. package/cjs/core/Table/hooks/useResizeColumns.js +0 -367
  944. package/cjs/core/Table/hooks/useScrollToRow.d.ts +0 -11
  945. package/cjs/core/Table/hooks/useScrollToRow.js +0 -45
  946. package/cjs/core/Table/hooks/useSelectionCell.d.ts +0 -2
  947. package/cjs/core/Table/hooks/useSelectionCell.js +0 -28
  948. package/cjs/core/Table/hooks/useStickyColumns.d.ts +0 -2
  949. package/cjs/core/Table/hooks/useStickyColumns.js +0 -65
  950. package/cjs/core/Table/hooks/useSubRowFiltering.d.ts +0 -2
  951. package/cjs/core/Table/hooks/useSubRowFiltering.js +0 -95
  952. package/cjs/core/Table/hooks/useSubRowSelection.d.ts +0 -2
  953. package/cjs/core/Table/hooks/useSubRowSelection.js +0 -43
  954. package/cjs/core/Table/index.d.ts +0 -9
  955. package/cjs/core/Table/index.js +0 -48
  956. package/cjs/core/Table/utils.d.ts +0 -11
  957. package/cjs/core/Table/utils.js +0 -76
  958. package/cjs/core/Tabs/Tabs.d.ts +0 -297
  959. package/cjs/core/Tabs/Tabs.js +0 -417
  960. package/cjs/core/Tag/Tag.d.ts +0 -50
  961. package/cjs/core/Tag/Tag.js +0 -83
  962. package/cjs/core/Tag/TagContainer.d.ts +0 -27
  963. package/cjs/core/Tag/TagContainer.js +0 -34
  964. package/cjs/core/Textarea/Textarea.d.ts +0 -14
  965. package/cjs/core/Textarea/Textarea.js +0 -21
  966. package/cjs/core/ThemeProvider/ThemeContext.d.ts +0 -7
  967. package/cjs/core/ThemeProvider/ThemeContext.js +0 -13
  968. package/cjs/core/ThemeProvider/ThemeProvider.d.ts +0 -103
  969. package/cjs/core/ThemeProvider/ThemeProvider.js +0 -287
  970. package/cjs/core/Tile/Tile.d.ts +0 -329
  971. package/cjs/core/Tile/Tile.js +0 -330
  972. package/cjs/core/TimePicker/TimePicker.d.ts +0 -94
  973. package/cjs/core/TimePicker/TimePicker.js +0 -470
  974. package/cjs/core/Toast/Toast.d.ts +0 -78
  975. package/cjs/core/Toast/Toast.js +0 -241
  976. package/cjs/core/Toast/Toaster.d.ts +0 -47
  977. package/cjs/core/Toast/Toaster.js +0 -158
  978. package/cjs/core/ToggleSwitch/ToggleSwitch.d.ts +0 -52
  979. package/cjs/core/ToggleSwitch/ToggleSwitch.js +0 -79
  980. package/cjs/core/Tooltip/Tooltip.d.ts +0 -95
  981. package/cjs/core/Tooltip/Tooltip.js +0 -233
  982. package/cjs/core/TransferList/TransferList.d.ts +0 -69
  983. package/cjs/core/TransferList/TransferList.js +0 -197
  984. package/cjs/core/Tree/Tree.d.ts +0 -139
  985. package/cjs/core/Tree/Tree.js +0 -244
  986. package/cjs/core/Tree/TreeContext.d.ts +0 -33
  987. package/cjs/core/Tree/TreeContext.js +0 -28
  988. package/cjs/core/Tree/TreeNode.d.ts +0 -132
  989. package/cjs/core/Tree/TreeNode.js +0 -263
  990. package/cjs/core/Tree/TreeNodeExpander.d.ts +0 -9
  991. package/cjs/core/Tree/TreeNodeExpander.js +0 -43
  992. package/cjs/core/Typography/Anchor.d.ts +0 -35
  993. package/cjs/core/Typography/Anchor.js +0 -44
  994. package/cjs/core/Typography/Blockquote.d.ts +0 -18
  995. package/cjs/core/Typography/Blockquote.js +0 -29
  996. package/cjs/core/Typography/Code.d.ts +0 -6
  997. package/cjs/core/Typography/Code.js +0 -12
  998. package/cjs/core/Typography/Kbd.d.ts +0 -33
  999. package/cjs/core/Typography/Kbd.js +0 -52
  1000. package/cjs/core/Typography/Text.d.ts +0 -42
  1001. package/cjs/core/Typography/Text.js +0 -53
  1002. package/cjs/core/VisuallyHidden/VisuallyHidden.d.ts +0 -22
  1003. package/cjs/core/VisuallyHidden/VisuallyHidden.js +0 -60
  1004. package/cjs/index.d.ts +0 -113
  1005. package/cjs/index.js +0 -482
  1006. package/cjs/package.json +0 -1
  1007. package/cjs/react-table/react-table.d.ts +0 -753
  1008. package/cjs/react-table/react-table.js +0 -4
  1009. package/cjs/react-table/react-table.types-test.js +0 -649
  1010. package/cjs/styles.d.ts +0 -6
  1011. package/cjs/styles.js +0 -17
  1012. package/cjs/utils/color/ColorValue.d.ts +0 -180
  1013. package/cjs/utils/color/ColorValue.js +0 -449
  1014. package/cjs/utils/color/index.d.ts +0 -1
  1015. package/cjs/utils/color/index.js +0 -6
  1016. package/cjs/utils/components/AutoclearingHiddenLiveRegion.d.ts +0 -12
  1017. package/cjs/utils/components/AutoclearingHiddenLiveRegion.js +0 -34
  1018. package/cjs/utils/components/Box.d.ts +0 -6
  1019. package/cjs/utils/components/Box.js +0 -12
  1020. package/cjs/utils/components/ButtonBase.d.ts +0 -14
  1021. package/cjs/utils/components/ButtonBase.js +0 -44
  1022. package/cjs/utils/components/FieldsetBase.d.ts +0 -6
  1023. package/cjs/utils/components/FieldsetBase.js +0 -12
  1024. package/cjs/utils/components/FocusTrap.d.ts +0 -12
  1025. package/cjs/utils/components/FocusTrap.js +0 -51
  1026. package/cjs/utils/components/InputContainer.d.ts +0 -19
  1027. package/cjs/utils/components/InputContainer.js +0 -70
  1028. package/cjs/utils/components/InputFlexContainer.d.ts +0 -36
  1029. package/cjs/utils/components/InputFlexContainer.js +0 -72
  1030. package/cjs/utils/components/InputWithIcon.d.ts +0 -2
  1031. package/cjs/utils/components/InputWithIcon.js +0 -12
  1032. package/cjs/utils/components/LineClamp.d.ts +0 -5
  1033. package/cjs/utils/components/LineClamp.js +0 -44
  1034. package/cjs/utils/components/MiddleTextTruncation.d.ts +0 -37
  1035. package/cjs/utils/components/MiddleTextTruncation.js +0 -46
  1036. package/cjs/utils/components/OverflowContainer.d.ts +0 -37
  1037. package/cjs/utils/components/OverflowContainer.js +0 -62
  1038. package/cjs/utils/components/Portal.d.ts +0 -35
  1039. package/cjs/utils/components/Portal.js +0 -44
  1040. package/cjs/utils/components/Resizer.d.ts +0 -37
  1041. package/cjs/utils/components/Resizer.js +0 -262
  1042. package/cjs/utils/components/ShadowRoot.d.ts +0 -13
  1043. package/cjs/utils/components/ShadowRoot.js +0 -107
  1044. package/cjs/utils/components/WithCSSTransition.d.ts +0 -6
  1045. package/cjs/utils/components/WithCSSTransition.js +0 -60
  1046. package/cjs/utils/components/index.d.ts +0 -15
  1047. package/cjs/utils/components/index.js +0 -20
  1048. package/cjs/utils/functions/colors.d.ts +0 -20
  1049. package/cjs/utils/functions/colors.js +0 -47
  1050. package/cjs/utils/functions/date.d.ts +0 -4
  1051. package/cjs/utils/functions/date.js +0 -18
  1052. package/cjs/utils/functions/dev.d.ts +0 -2
  1053. package/cjs/utils/functions/dev.js +0 -19
  1054. package/cjs/utils/functions/dom.d.ts +0 -22
  1055. package/cjs/utils/functions/dom.js +0 -47
  1056. package/cjs/utils/functions/focusable.d.ts +0 -31
  1057. package/cjs/utils/functions/focusable.js +0 -91
  1058. package/cjs/utils/functions/import.d.ts +0 -12
  1059. package/cjs/utils/functions/import.js +0 -33
  1060. package/cjs/utils/functions/index.d.ts +0 -10
  1061. package/cjs/utils/functions/index.js +0 -15
  1062. package/cjs/utils/functions/numbers.d.ts +0 -15
  1063. package/cjs/utils/functions/numbers.js +0 -34
  1064. package/cjs/utils/functions/polymorphic.d.ts +0 -21
  1065. package/cjs/utils/functions/polymorphic.js +0 -60
  1066. package/cjs/utils/functions/react.d.ts +0 -8
  1067. package/cjs/utils/functions/react.js +0 -28
  1068. package/cjs/utils/functions/supports.d.ts +0 -4
  1069. package/cjs/utils/functions/supports.js +0 -13
  1070. package/cjs/utils/hooks/index.d.ts +0 -17
  1071. package/cjs/utils/hooks/index.js +0 -22
  1072. package/cjs/utils/hooks/useContainerWidth.d.ts +0 -16
  1073. package/cjs/utils/hooks/useContainerWidth.js +0 -34
  1074. package/cjs/utils/hooks/useControlledState.d.ts +0 -13
  1075. package/cjs/utils/hooks/useControlledState.js +0 -31
  1076. package/cjs/utils/hooks/useDragAndDrop.d.ts +0 -13
  1077. package/cjs/utils/hooks/useDragAndDrop.js +0 -116
  1078. package/cjs/utils/hooks/useEventListener.d.ts +0 -10
  1079. package/cjs/utils/hooks/useEventListener.js +0 -26
  1080. package/cjs/utils/hooks/useGlobals.d.ts +0 -15
  1081. package/cjs/utils/hooks/useGlobals.js +0 -39
  1082. package/cjs/utils/hooks/useId.d.ts +0 -5
  1083. package/cjs/utils/hooks/useId.js +0 -21
  1084. package/cjs/utils/hooks/useIntersection.d.ts +0 -13
  1085. package/cjs/utils/hooks/useIntersection.js +0 -41
  1086. package/cjs/utils/hooks/useIsClient.d.ts +0 -1
  1087. package/cjs/utils/hooks/useIsClient.js +0 -19
  1088. package/cjs/utils/hooks/useIsomorphicLayoutEffect.d.ts +0 -10
  1089. package/cjs/utils/hooks/useIsomorphicLayoutEffect.js +0 -14
  1090. package/cjs/utils/hooks/useLatestRef.d.ts +0 -9
  1091. package/cjs/utils/hooks/useLatestRef.js +0 -19
  1092. package/cjs/utils/hooks/useMediaQuery.d.ts +0 -1
  1093. package/cjs/utils/hooks/useMediaQuery.js +0 -35
  1094. package/cjs/utils/hooks/useMergedRefs.d.ts +0 -9
  1095. package/cjs/utils/hooks/useMergedRefs.js +0 -31
  1096. package/cjs/utils/hooks/useOverflow.d.ts +0 -23
  1097. package/cjs/utils/hooks/useOverflow.js +0 -76
  1098. package/cjs/utils/hooks/useResizeObserver.d.ts +0 -13
  1099. package/cjs/utils/hooks/useResizeObserver.js +0 -34
  1100. package/cjs/utils/hooks/useSafeContext.d.ts +0 -6
  1101. package/cjs/utils/hooks/useSafeContext.js +0 -18
  1102. package/cjs/utils/hooks/useSyncExternalStore.d.ts +0 -5
  1103. package/cjs/utils/hooks/useSyncExternalStore.js +0 -43
  1104. package/cjs/utils/hooks/useVirtualScroll.d.ts +0 -34
  1105. package/cjs/utils/hooks/useVirtualScroll.js +0 -61
  1106. package/cjs/utils/hooks/useWarningLogger.d.ts +0 -15
  1107. package/cjs/utils/hooks/useWarningLogger.js +0 -18
  1108. package/cjs/utils/icons/StatusIconMap.d.ts +0 -7
  1109. package/cjs/utils/icons/StatusIconMap.js +0 -38
  1110. package/cjs/utils/icons/Svg.d.ts +0 -1
  1111. package/cjs/utils/icons/Svg.js +0 -16
  1112. package/cjs/utils/icons/SvgCalendar.d.ts +0 -2
  1113. package/cjs/utils/icons/SvgCalendar.js +0 -21
  1114. package/cjs/utils/icons/SvgCaretDownSmall.d.ts +0 -2
  1115. package/cjs/utils/icons/SvgCaretDownSmall.js +0 -21
  1116. package/cjs/utils/icons/SvgCaretRightSmall.d.ts +0 -2
  1117. package/cjs/utils/icons/SvgCaretRightSmall.js +0 -21
  1118. package/cjs/utils/icons/SvgCaretUpSmall.d.ts +0 -2
  1119. package/cjs/utils/icons/SvgCaretUpSmall.js +0 -21
  1120. package/cjs/utils/icons/SvgCheckmark.d.ts +0 -2
  1121. package/cjs/utils/icons/SvgCheckmark.js +0 -21
  1122. package/cjs/utils/icons/SvgCheckmarkSmall.d.ts +0 -2
  1123. package/cjs/utils/icons/SvgCheckmarkSmall.js +0 -21
  1124. package/cjs/utils/icons/SvgChevronLeft.d.ts +0 -2
  1125. package/cjs/utils/icons/SvgChevronLeft.js +0 -21
  1126. package/cjs/utils/icons/SvgChevronLeftDouble.d.ts +0 -2
  1127. package/cjs/utils/icons/SvgChevronLeftDouble.js +0 -21
  1128. package/cjs/utils/icons/SvgChevronRight.d.ts +0 -2
  1129. package/cjs/utils/icons/SvgChevronRight.js +0 -21
  1130. package/cjs/utils/icons/SvgChevronRightDouble.d.ts +0 -2
  1131. package/cjs/utils/icons/SvgChevronRightDouble.js +0 -21
  1132. package/cjs/utils/icons/SvgChevronRightSmall.d.ts +0 -2
  1133. package/cjs/utils/icons/SvgChevronRightSmall.js +0 -21
  1134. package/cjs/utils/icons/SvgClose.d.ts +0 -2
  1135. package/cjs/utils/icons/SvgClose.js +0 -21
  1136. package/cjs/utils/icons/SvgCloseSmall.d.ts +0 -2
  1137. package/cjs/utils/icons/SvgCloseSmall.js +0 -21
  1138. package/cjs/utils/icons/SvgColumnManager.d.ts +0 -2
  1139. package/cjs/utils/icons/SvgColumnManager.js +0 -21
  1140. package/cjs/utils/icons/SvgDocument.d.ts +0 -2
  1141. package/cjs/utils/icons/SvgDocument.js +0 -21
  1142. package/cjs/utils/icons/SvgFilter.d.ts +0 -2
  1143. package/cjs/utils/icons/SvgFilter.js +0 -21
  1144. package/cjs/utils/icons/SvgFilterHollow.d.ts +0 -2
  1145. package/cjs/utils/icons/SvgFilterHollow.js +0 -21
  1146. package/cjs/utils/icons/SvgImportantSmall.d.ts +0 -2
  1147. package/cjs/utils/icons/SvgImportantSmall.js +0 -21
  1148. package/cjs/utils/icons/SvgInfoCircular.d.ts +0 -2
  1149. package/cjs/utils/icons/SvgInfoCircular.js +0 -21
  1150. package/cjs/utils/icons/SvgMore.d.ts +0 -2
  1151. package/cjs/utils/icons/SvgMore.js +0 -21
  1152. package/cjs/utils/icons/SvgMoreVertical.d.ts +0 -2
  1153. package/cjs/utils/icons/SvgMoreVertical.js +0 -21
  1154. package/cjs/utils/icons/SvgNew.d.ts +0 -2
  1155. package/cjs/utils/icons/SvgNew.js +0 -21
  1156. package/cjs/utils/icons/SvgSearch.d.ts +0 -2
  1157. package/cjs/utils/icons/SvgSearch.js +0 -21
  1158. package/cjs/utils/icons/SvgSmileyHappy.d.ts +0 -2
  1159. package/cjs/utils/icons/SvgSmileyHappy.js +0 -21
  1160. package/cjs/utils/icons/SvgSortDown.d.ts +0 -2
  1161. package/cjs/utils/icons/SvgSortDown.js +0 -21
  1162. package/cjs/utils/icons/SvgSortUp.d.ts +0 -2
  1163. package/cjs/utils/icons/SvgSortUp.js +0 -21
  1164. package/cjs/utils/icons/SvgStatusError.d.ts +0 -2
  1165. package/cjs/utils/icons/SvgStatusError.js +0 -21
  1166. package/cjs/utils/icons/SvgStatusSuccess.d.ts +0 -2
  1167. package/cjs/utils/icons/SvgStatusSuccess.js +0 -21
  1168. package/cjs/utils/icons/SvgStatusWarning.d.ts +0 -2
  1169. package/cjs/utils/icons/SvgStatusWarning.js +0 -21
  1170. package/cjs/utils/icons/SvgSwap.d.ts +0 -2
  1171. package/cjs/utils/icons/SvgSwap.js +0 -21
  1172. package/cjs/utils/icons/SvgUpload.d.ts +0 -2
  1173. package/cjs/utils/icons/SvgUpload.js +0 -21
  1174. package/cjs/utils/icons/index.d.ts +0 -32
  1175. package/cjs/utils/icons/index.js +0 -37
  1176. package/cjs/utils/index.d.ts +0 -8
  1177. package/cjs/utils/index.js +0 -13
  1178. package/cjs/utils/meta.d.ts +0 -7
  1179. package/cjs/utils/meta.js +0 -16
  1180. package/cjs/utils/props.d.ts +0 -28
  1181. package/cjs/utils/props.js +0 -4
  1182. package/cjs/utils/providers/HydrationProvider.d.ts +0 -16
  1183. package/cjs/utils/providers/HydrationProvider.js +0 -58
  1184. package/cjs/utils/providers/ScopeProvider.d.ts +0 -26
  1185. package/cjs/utils/providers/ScopeProvider.js +0 -66
  1186. package/cjs/utils/providers/index.d.ts +0 -2
  1187. package/cjs/utils/providers/index.js +0 -7
  1188. package/cjs/utils/types.d.ts +0 -5
  1189. package/cjs/utils/types.js +0 -4
  1190. package/esm/core/Alert/Alert.d.ts +0 -77
  1191. package/esm/core/Alert/Alert.js +0 -127
  1192. package/esm/core/Avatar/Avatar.d.ts +0 -55
  1193. package/esm/core/Avatar/Avatar.js +0 -53
  1194. package/esm/core/AvatarGroup/AvatarGroup.d.ts +0 -61
  1195. package/esm/core/AvatarGroup/AvatarGroup.js +0 -62
  1196. package/esm/core/Backdrop/Backdrop.d.ts +0 -9
  1197. package/esm/core/Backdrop/Backdrop.js +0 -17
  1198. package/esm/core/Badge/Badge.d.ts +0 -26
  1199. package/esm/core/Badge/Badge.js +0 -40
  1200. package/esm/core/Breadcrumbs/Breadcrumbs.d.ts +0 -92
  1201. package/esm/core/Breadcrumbs/Breadcrumbs.js +0 -176
  1202. package/esm/core/ButtonGroup/ButtonGroup.d.ts +0 -69
  1203. package/esm/core/ButtonGroup/ButtonGroup.js +0 -139
  1204. package/esm/core/Buttons/Button.d.ts +0 -55
  1205. package/esm/core/Buttons/Button.js +0 -78
  1206. package/esm/core/Buttons/DropdownButton.d.ts +0 -31
  1207. package/esm/core/Buttons/DropdownButton.js +0 -48
  1208. package/esm/core/Buttons/IconButton.d.ts +0 -36
  1209. package/esm/core/Buttons/IconButton.js +0 -60
  1210. package/esm/core/Buttons/IdeasButton.d.ts +0 -19
  1211. package/esm/core/Buttons/IdeasButton.js +0 -21
  1212. package/esm/core/Buttons/SplitButton.d.ts +0 -50
  1213. package/esm/core/Buttons/SplitButton.js +0 -97
  1214. package/esm/core/Carousel/Carousel.d.ts +0 -80
  1215. package/esm/core/Carousel/Carousel.js +0 -71
  1216. package/esm/core/Carousel/CarouselContext.d.ts +0 -35
  1217. package/esm/core/Carousel/CarouselContext.js +0 -2
  1218. package/esm/core/Carousel/CarouselDot.d.ts +0 -15
  1219. package/esm/core/Carousel/CarouselDot.js +0 -22
  1220. package/esm/core/Carousel/CarouselDotsList.d.ts +0 -33
  1221. package/esm/core/Carousel/CarouselDotsList.js +0 -150
  1222. package/esm/core/Carousel/CarouselNavigation.d.ts +0 -32
  1223. package/esm/core/Carousel/CarouselNavigation.js +0 -93
  1224. package/esm/core/Carousel/CarouselSlide.d.ts +0 -16
  1225. package/esm/core/Carousel/CarouselSlide.js +0 -44
  1226. package/esm/core/Carousel/CarouselSlider.d.ts +0 -5
  1227. package/esm/core/Carousel/CarouselSlider.js +0 -62
  1228. package/esm/core/Checkbox/Checkbox.d.ts +0 -49
  1229. package/esm/core/Checkbox/Checkbox.js +0 -84
  1230. package/esm/core/ColorPicker/ColorBuilder.d.ts +0 -28
  1231. package/esm/core/ColorPicker/ColorBuilder.js +0 -320
  1232. package/esm/core/ColorPicker/ColorInputPanel.d.ts +0 -44
  1233. package/esm/core/ColorPicker/ColorInputPanel.js +0 -432
  1234. package/esm/core/ColorPicker/ColorPalette.d.ts +0 -37
  1235. package/esm/core/ColorPicker/ColorPalette.js +0 -62
  1236. package/esm/core/ColorPicker/ColorPicker.d.ts +0 -57
  1237. package/esm/core/ColorPicker/ColorPicker.js +0 -76
  1238. package/esm/core/ColorPicker/ColorPickerContext.d.ts +0 -18
  1239. package/esm/core/ColorPicker/ColorPickerContext.js +0 -10
  1240. package/esm/core/ColorPicker/ColorSwatch.d.ts +0 -20
  1241. package/esm/core/ColorPicker/ColorSwatch.js +0 -36
  1242. package/esm/core/ComboBox/ComboBox.d.ts +0 -119
  1243. package/esm/core/ComboBox/ComboBox.js +0 -410
  1244. package/esm/core/ComboBox/ComboBox.types-test.js +0 -85
  1245. package/esm/core/ComboBox/ComboBoxEndIcon.d.ts +0 -7
  1246. package/esm/core/ComboBox/ComboBoxEndIcon.js +0 -27
  1247. package/esm/core/ComboBox/ComboBoxInput.d.ts +0 -8
  1248. package/esm/core/ComboBox/ComboBoxInput.js +0 -177
  1249. package/esm/core/ComboBox/ComboBoxInputContainer.d.ts +0 -4
  1250. package/esm/core/ComboBox/ComboBoxInputContainer.js +0 -38
  1251. package/esm/core/ComboBox/ComboBoxMenu.d.ts +0 -6
  1252. package/esm/core/ComboBox/ComboBoxMenu.js +0 -129
  1253. package/esm/core/ComboBox/ComboBoxMenuItem.d.ts +0 -8
  1254. package/esm/core/ComboBox/ComboBoxMenuItem.js +0 -79
  1255. package/esm/core/ComboBox/ComboBoxMultipleContainer.d.ts +0 -7
  1256. package/esm/core/ComboBox/ComboBoxMultipleContainer.js +0 -10
  1257. package/esm/core/ComboBox/helpers.d.ts +0 -26
  1258. package/esm/core/ComboBox/helpers.js +0 -3
  1259. package/esm/core/DatePicker/DatePicker.d.ts +0 -114
  1260. package/esm/core/DatePicker/DatePicker.js +0 -561
  1261. package/esm/core/Dialog/Dialog.d.ts +0 -44
  1262. package/esm/core/Dialog/Dialog.js +0 -80
  1263. package/esm/core/Dialog/DialogBackdrop.d.ts +0 -12
  1264. package/esm/core/Dialog/DialogBackdrop.js +0 -43
  1265. package/esm/core/Dialog/DialogButtonBar.d.ts +0 -9
  1266. package/esm/core/Dialog/DialogButtonBar.js +0 -2
  1267. package/esm/core/Dialog/DialogContent.d.ts +0 -8
  1268. package/esm/core/Dialog/DialogContent.js +0 -2
  1269. package/esm/core/Dialog/DialogContext.d.ts +0 -89
  1270. package/esm/core/Dialog/DialogContext.js +0 -3
  1271. package/esm/core/Dialog/DialogDragContext.d.ts +0 -8
  1272. package/esm/core/Dialog/DialogDragContext.js +0 -8
  1273. package/esm/core/Dialog/DialogMain.d.ts +0 -35
  1274. package/esm/core/Dialog/DialogMain.js +0 -178
  1275. package/esm/core/Dialog/DialogTitleBar.d.ts +0 -34
  1276. package/esm/core/Dialog/DialogTitleBar.js +0 -56
  1277. package/esm/core/Dialog/DialogTitleBarTitle.d.ts +0 -8
  1278. package/esm/core/Dialog/DialogTitleBarTitle.js +0 -2
  1279. package/esm/core/Divider/Divider.d.ts +0 -13
  1280. package/esm/core/Divider/Divider.js +0 -13
  1281. package/esm/core/DropdownMenu/DropdownMenu.d.ts +0 -50
  1282. package/esm/core/DropdownMenu/DropdownMenu.js +0 -63
  1283. package/esm/core/ExpandableBlock/ExpandableBlock.d.ts +0 -124
  1284. package/esm/core/ExpandableBlock/ExpandableBlock.js +0 -196
  1285. package/esm/core/Fieldset/Fieldset.d.ts +0 -21
  1286. package/esm/core/Fieldset/Fieldset.js +0 -25
  1287. package/esm/core/FileUpload/FileEmptyCard.d.ts +0 -21
  1288. package/esm/core/FileUpload/FileEmptyCard.js +0 -35
  1289. package/esm/core/FileUpload/FileUpload.d.ts +0 -33
  1290. package/esm/core/FileUpload/FileUpload.js +0 -70
  1291. package/esm/core/FileUpload/FileUploadCard.d.ts +0 -76
  1292. package/esm/core/FileUpload/FileUploadCard.js +0 -182
  1293. package/esm/core/FileUpload/FileUploadTemplate.d.ts +0 -43
  1294. package/esm/core/FileUpload/FileUploadTemplate.js +0 -51
  1295. package/esm/core/Flex/Flex.d.ts +0 -138
  1296. package/esm/core/Flex/Flex.js +0 -74
  1297. package/esm/core/Footer/Footer.d.ts +0 -60
  1298. package/esm/core/Footer/Footer.js +0 -114
  1299. package/esm/core/Footer/FooterItem.d.ts +0 -4
  1300. package/esm/core/Footer/FooterItem.js +0 -2
  1301. package/esm/core/Footer/FooterList.d.ts +0 -4
  1302. package/esm/core/Footer/FooterList.js +0 -2
  1303. package/esm/core/Footer/FooterSeparator.d.ts +0 -4
  1304. package/esm/core/Footer/FooterSeparator.js +0 -4
  1305. package/esm/core/Header/Header.d.ts +0 -95
  1306. package/esm/core/Header/Header.js +0 -79
  1307. package/esm/core/Header/HeaderBasicButton.d.ts +0 -3
  1308. package/esm/core/Header/HeaderBasicButton.js +0 -18
  1309. package/esm/core/Header/HeaderBreadcrumbs.d.ts +0 -26
  1310. package/esm/core/Header/HeaderBreadcrumbs.js +0 -44
  1311. package/esm/core/Header/HeaderButton.d.ts +0 -35
  1312. package/esm/core/Header/HeaderButton.js +0 -77
  1313. package/esm/core/Header/HeaderDropdownButton.d.ts +0 -3
  1314. package/esm/core/Header/HeaderDropdownButton.js +0 -48
  1315. package/esm/core/Header/HeaderLogo.d.ts +0 -22
  1316. package/esm/core/Header/HeaderLogo.js +0 -44
  1317. package/esm/core/Header/HeaderSplitButton.d.ts +0 -3
  1318. package/esm/core/Header/HeaderSplitButton.js +0 -71
  1319. package/esm/core/Icon/Icon.d.ts +0 -47
  1320. package/esm/core/Icon/Icon.js +0 -33
  1321. package/esm/core/InformationPanel/InformationPanel.d.ts +0 -46
  1322. package/esm/core/InformationPanel/InformationPanel.js +0 -90
  1323. package/esm/core/InformationPanel/InformationPanelBody.d.ts +0 -4
  1324. package/esm/core/InformationPanel/InformationPanelBody.js +0 -2
  1325. package/esm/core/InformationPanel/InformationPanelContent.d.ts +0 -41
  1326. package/esm/core/InformationPanel/InformationPanelContent.js +0 -23
  1327. package/esm/core/InformationPanel/InformationPanelHeader.d.ts +0 -43
  1328. package/esm/core/InformationPanel/InformationPanelHeader.js +0 -44
  1329. package/esm/core/InformationPanel/InformationPanelWrapper.d.ts +0 -10
  1330. package/esm/core/InformationPanel/InformationPanelWrapper.js +0 -4
  1331. package/esm/core/Input/Input.d.ts +0 -23
  1332. package/esm/core/Input/Input.js +0 -17
  1333. package/esm/core/InputGrid/InputGrid.d.ts +0 -27
  1334. package/esm/core/InputGrid/InputGrid.js +0 -142
  1335. package/esm/core/InputGroup/InputGroup.d.ts +0 -73
  1336. package/esm/core/InputGroup/InputGroup.js +0 -79
  1337. package/esm/core/InputWithDecorations/InputWithDecorations.d.ts +0 -49
  1338. package/esm/core/InputWithDecorations/InputWithDecorations.js +0 -70
  1339. package/esm/core/Label/Label.d.ts +0 -29
  1340. package/esm/core/Label/Label.js +0 -31
  1341. package/esm/core/LabeledInput/LabeledInput.d.ts +0 -60
  1342. package/esm/core/LabeledInput/LabeledInput.js +0 -77
  1343. package/esm/core/LabeledSelect/LabeledSelect.d.ts +0 -107
  1344. package/esm/core/LabeledSelect/LabeledSelect.js +0 -63
  1345. package/esm/core/LabeledSelect/LabeledSelect.types-test.js +0 -99
  1346. package/esm/core/LabeledTextarea/LabeledTextarea.d.ts +0 -58
  1347. package/esm/core/LabeledTextarea/LabeledTextarea.js +0 -10
  1348. package/esm/core/LinkAction/LinkAction.d.ts +0 -24
  1349. package/esm/core/LinkAction/LinkAction.js +0 -14
  1350. package/esm/core/List/List.d.ts +0 -1
  1351. package/esm/core/List/List.js +0 -4
  1352. package/esm/core/List/ListItem.d.ts +0 -80
  1353. package/esm/core/List/ListItem.js +0 -36
  1354. package/esm/core/Menu/Menu.d.ts +0 -95
  1355. package/esm/core/Menu/Menu.js +0 -216
  1356. package/esm/core/Menu/MenuDivider.d.ts +0 -16
  1357. package/esm/core/Menu/MenuDivider.js +0 -4
  1358. package/esm/core/Menu/MenuExtraContent.d.ts +0 -21
  1359. package/esm/core/Menu/MenuExtraContent.js +0 -4
  1360. package/esm/core/Menu/MenuItem.d.ts +0 -71
  1361. package/esm/core/Menu/MenuItem.js +0 -132
  1362. package/esm/core/Menu/MenuItemSkeleton.d.ts +0 -30
  1363. package/esm/core/Menu/MenuItemSkeleton.js +0 -52
  1364. package/esm/core/Modal/Modal.d.ts +0 -80
  1365. package/esm/core/Modal/Modal.js +0 -47
  1366. package/esm/core/Modal/ModalButtonBar.d.ts +0 -4
  1367. package/esm/core/Modal/ModalButtonBar.js +0 -2
  1368. package/esm/core/Modal/ModalContent.d.ts +0 -4
  1369. package/esm/core/Modal/ModalContent.js +0 -2
  1370. package/esm/core/NonIdealState/ErrorPage.d.ts +0 -61
  1371. package/esm/core/NonIdealState/ErrorPage.js +0 -166
  1372. package/esm/core/NonIdealState/NonIdealState.d.ts +0 -66
  1373. package/esm/core/NonIdealState/NonIdealState.js +0 -70
  1374. package/esm/core/NotificationMarker/NotificationMarker.d.ts +0 -52
  1375. package/esm/core/NotificationMarker/NotificationMarker.js +0 -30
  1376. package/esm/core/Overlay/Overlay.d.ts +0 -53
  1377. package/esm/core/Overlay/Overlay.js +0 -33
  1378. package/esm/core/Popover/Popover.d.ts +0 -188
  1379. package/esm/core/Popover/Popover.js +0 -342
  1380. package/esm/core/ProgressIndicators/ProgressLinear.d.ts +0 -56
  1381. package/esm/core/ProgressIndicators/ProgressLinear.js +0 -59
  1382. package/esm/core/ProgressIndicators/ProgressRadial.d.ts +0 -45
  1383. package/esm/core/ProgressIndicators/ProgressRadial.js +0 -57
  1384. package/esm/core/Radio/Radio.d.ts +0 -32
  1385. package/esm/core/Radio/Radio.js +0 -54
  1386. package/esm/core/RadioTiles/RadioTile.d.ts +0 -39
  1387. package/esm/core/RadioTiles/RadioTile.js +0 -67
  1388. package/esm/core/RadioTiles/RadioTileGroup.d.ts +0 -14
  1389. package/esm/core/RadioTiles/RadioTileGroup.js +0 -21
  1390. package/esm/core/SearchBox/SearchBox.d.ts +0 -92
  1391. package/esm/core/SearchBox/SearchBox.js +0 -216
  1392. package/esm/core/Select/Select.d.ts +0 -280
  1393. package/esm/core/Select/Select.js +0 -467
  1394. package/esm/core/Select/Select.types-test.js +0 -111
  1395. package/esm/core/Select/SelectTag.d.ts +0 -13
  1396. package/esm/core/Select/SelectTag.js +0 -23
  1397. package/esm/core/Select/SelectTagContainer.d.ts +0 -12
  1398. package/esm/core/Select/SelectTagContainer.js +0 -37
  1399. package/esm/core/SideNavigation/SideNavigation.d.ts +0 -84
  1400. package/esm/core/SideNavigation/SideNavigation.js +0 -110
  1401. package/esm/core/SideNavigation/SidenavButton.d.ts +0 -20
  1402. package/esm/core/SideNavigation/SidenavButton.js +0 -45
  1403. package/esm/core/SideNavigation/SidenavSubmenu.d.ts +0 -10
  1404. package/esm/core/SideNavigation/SidenavSubmenu.js +0 -21
  1405. package/esm/core/SideNavigation/SidenavSubmenuHeader.d.ts +0 -24
  1406. package/esm/core/SideNavigation/SidenavSubmenuHeader.js +0 -29
  1407. package/esm/core/SkipToContentLink/SkipToContentLink.d.ts +0 -23
  1408. package/esm/core/SkipToContentLink/SkipToContentLink.js +0 -16
  1409. package/esm/core/Slider/Slider.d.ts +0 -129
  1410. package/esm/core/Slider/Slider.js +0 -341
  1411. package/esm/core/Slider/Thumb.d.ts +0 -63
  1412. package/esm/core/Slider/Thumb.js +0 -103
  1413. package/esm/core/Slider/Track.d.ts +0 -14
  1414. package/esm/core/Slider/Track.js +0 -87
  1415. package/esm/core/StatusMessage/StatusMessage.d.ts +0 -36
  1416. package/esm/core/StatusMessage/StatusMessage.js +0 -37
  1417. package/esm/core/Stepper/Stepper.d.ts +0 -63
  1418. package/esm/core/Stepper/Stepper.js +0 -82
  1419. package/esm/core/Stepper/StepperStep.d.ts +0 -49
  1420. package/esm/core/Stepper/StepperStep.js +0 -100
  1421. package/esm/core/Stepper/WorkflowDiagram.d.ts +0 -15
  1422. package/esm/core/Stepper/WorkflowDiagram.js +0 -32
  1423. package/esm/core/Stepper/WorkflowDiagramStep.d.ts +0 -10
  1424. package/esm/core/Stepper/WorkflowDiagramStep.js +0 -34
  1425. package/esm/core/Surface/Surface.d.ts +0 -48
  1426. package/esm/core/Surface/Surface.js +0 -100
  1427. package/esm/core/Table/ColumnHeader.d.ts +0 -15
  1428. package/esm/core/Table/ColumnHeader.js +0 -187
  1429. package/esm/core/Table/SubRowExpander.d.ts +0 -11
  1430. package/esm/core/Table/SubRowExpander.js +0 -37
  1431. package/esm/core/Table/Table.d.ts +0 -274
  1432. package/esm/core/Table/Table.js +0 -761
  1433. package/esm/core/Table/TableCell.d.ts +0 -12
  1434. package/esm/core/Table/TableCell.js +0 -93
  1435. package/esm/core/Table/TableExpandableContentMemoized.d.ts +0 -10
  1436. package/esm/core/Table/TableExpandableContentMemoized.js +0 -33
  1437. package/esm/core/Table/TablePaginator.d.ts +0 -75
  1438. package/esm/core/Table/TablePaginator.js +0 -343
  1439. package/esm/core/Table/TableRowMemoized.d.ts +0 -33
  1440. package/esm/core/Table/TableRowMemoized.js +0 -155
  1441. package/esm/core/Table/actionHandlers/expandHandler.d.ts +0 -2
  1442. package/esm/core/Table/actionHandlers/expandHandler.js +0 -11
  1443. package/esm/core/Table/actionHandlers/filterHandler.d.ts +0 -3
  1444. package/esm/core/Table/actionHandlers/filterHandler.js +0 -24
  1445. package/esm/core/Table/actionHandlers/index.d.ts +0 -4
  1446. package/esm/core/Table/actionHandlers/index.js +0 -8
  1447. package/esm/core/Table/actionHandlers/resizeHandler.d.ts +0 -63
  1448. package/esm/core/Table/actionHandlers/resizeHandler.js +0 -14
  1449. package/esm/core/Table/actionHandlers/selectHandler.d.ts +0 -43
  1450. package/esm/core/Table/actionHandlers/selectHandler.js +0 -114
  1451. package/esm/core/Table/cells/DefaultCell.d.ts +0 -38
  1452. package/esm/core/Table/cells/DefaultCell.js +0 -84
  1453. package/esm/core/Table/cells/EditableCell.d.ts +0 -36
  1454. package/esm/core/Table/cells/EditableCell.js +0 -74
  1455. package/esm/core/Table/cells/index.d.ts +0 -4
  1456. package/esm/core/Table/cells/index.js +0 -2
  1457. package/esm/core/Table/columns/actionColumn.d.ts +0 -40
  1458. package/esm/core/Table/columns/actionColumn.js +0 -92
  1459. package/esm/core/Table/columns/expanderColumn.d.ts +0 -44
  1460. package/esm/core/Table/columns/expanderColumn.js +0 -45
  1461. package/esm/core/Table/columns/index.d.ts +0 -3
  1462. package/esm/core/Table/columns/index.js +0 -3
  1463. package/esm/core/Table/columns/selectionColumn.d.ts +0 -33
  1464. package/esm/core/Table/columns/selectionColumn.js +0 -68
  1465. package/esm/core/Table/filters/BaseFilter.d.ts +0 -16
  1466. package/esm/core/Table/filters/BaseFilter.js +0 -18
  1467. package/esm/core/Table/filters/DateRangeFilter/DatePickerInput.d.ts +0 -24
  1468. package/esm/core/Table/filters/DateRangeFilter/DatePickerInput.js +0 -116
  1469. package/esm/core/Table/filters/DateRangeFilter/DateRangeFilter.d.ts +0 -17
  1470. package/esm/core/Table/filters/DateRangeFilter/DateRangeFilter.js +0 -111
  1471. package/esm/core/Table/filters/FilterButtonBar.d.ts +0 -32
  1472. package/esm/core/Table/filters/FilterButtonBar.js +0 -49
  1473. package/esm/core/Table/filters/FilterToggle.d.ts +0 -10
  1474. package/esm/core/Table/filters/FilterToggle.js +0 -66
  1475. package/esm/core/Table/filters/NumberRangeFilter/NumberRangeFilter.d.ts +0 -11
  1476. package/esm/core/Table/filters/NumberRangeFilter/NumberRangeFilter.js +0 -50
  1477. package/esm/core/Table/filters/TextFilter/TextFilter.d.ts +0 -7
  1478. package/esm/core/Table/filters/TextFilter/TextFilter.js +0 -30
  1479. package/esm/core/Table/filters/customFilterFunctions.d.ts +0 -10
  1480. package/esm/core/Table/filters/customFilterFunctions.js +0 -21
  1481. package/esm/core/Table/filters/defaultFilterFunctions.d.ts +0 -61
  1482. package/esm/core/Table/filters/defaultFilterFunctions.js +0 -115
  1483. package/esm/core/Table/filters/index.d.ts +0 -7
  1484. package/esm/core/Table/filters/index.js +0 -4
  1485. package/esm/core/Table/filters/tableFilters.d.ts +0 -53
  1486. package/esm/core/Table/filters/tableFilters.js +0 -21
  1487. package/esm/core/Table/filters/types.d.ts +0 -20
  1488. package/esm/core/Table/filters/types.js +0 -1
  1489. package/esm/core/Table/hooks/index.d.ts +0 -8
  1490. package/esm/core/Table/hooks/index.js +0 -8
  1491. package/esm/core/Table/hooks/useColumnDragAndDrop.d.ts +0 -2
  1492. package/esm/core/Table/hooks/useColumnDragAndDrop.js +0 -114
  1493. package/esm/core/Table/hooks/useExpanderCell.d.ts +0 -3
  1494. package/esm/core/Table/hooks/useExpanderCell.js +0 -28
  1495. package/esm/core/Table/hooks/useResizeColumns.d.ts +0 -37
  1496. package/esm/core/Table/hooks/useResizeColumns.js +0 -354
  1497. package/esm/core/Table/hooks/useScrollToRow.d.ts +0 -11
  1498. package/esm/core/Table/hooks/useScrollToRow.js +0 -34
  1499. package/esm/core/Table/hooks/useSelectionCell.d.ts +0 -2
  1500. package/esm/core/Table/hooks/useSelectionCell.js +0 -18
  1501. package/esm/core/Table/hooks/useStickyColumns.d.ts +0 -2
  1502. package/esm/core/Table/hooks/useStickyColumns.js +0 -55
  1503. package/esm/core/Table/hooks/useSubRowFiltering.d.ts +0 -2
  1504. package/esm/core/Table/hooks/useSubRowFiltering.js +0 -84
  1505. package/esm/core/Table/hooks/useSubRowSelection.d.ts +0 -2
  1506. package/esm/core/Table/hooks/useSubRowSelection.js +0 -32
  1507. package/esm/core/Table/index.d.ts +0 -9
  1508. package/esm/core/Table/index.js +0 -9
  1509. package/esm/core/Table/utils.d.ts +0 -11
  1510. package/esm/core/Table/utils.js +0 -50
  1511. package/esm/core/Tabs/Tabs.d.ts +0 -297
  1512. package/esm/core/Tabs/Tabs.js +0 -399
  1513. package/esm/core/Tag/Tag.d.ts +0 -50
  1514. package/esm/core/Tag/Tag.js +0 -61
  1515. package/esm/core/Tag/TagContainer.d.ts +0 -27
  1516. package/esm/core/Tag/TagContainer.js +0 -22
  1517. package/esm/core/Textarea/Textarea.d.ts +0 -14
  1518. package/esm/core/Textarea/Textarea.js +0 -10
  1519. package/esm/core/ThemeProvider/ThemeContext.d.ts +0 -7
  1520. package/esm/core/ThemeProvider/ThemeContext.js +0 -2
  1521. package/esm/core/ThemeProvider/ThemeProvider.d.ts +0 -103
  1522. package/esm/core/ThemeProvider/ThemeProvider.js +0 -274
  1523. package/esm/core/Tile/Tile.d.ts +0 -329
  1524. package/esm/core/Tile/Tile.js +0 -310
  1525. package/esm/core/TimePicker/TimePicker.d.ts +0 -94
  1526. package/esm/core/TimePicker/TimePicker.js +0 -458
  1527. package/esm/core/Toast/Toast.d.ts +0 -78
  1528. package/esm/core/Toast/Toast.js +0 -214
  1529. package/esm/core/Toast/Toaster.d.ts +0 -47
  1530. package/esm/core/Toast/Toaster.js +0 -128
  1531. package/esm/core/ToggleSwitch/ToggleSwitch.d.ts +0 -52
  1532. package/esm/core/ToggleSwitch/ToggleSwitch.js +0 -64
  1533. package/esm/core/Tooltip/Tooltip.d.ts +0 -95
  1534. package/esm/core/Tooltip/Tooltip.js +0 -240
  1535. package/esm/core/TransferList/TransferList.d.ts +0 -69
  1536. package/esm/core/TransferList/TransferList.js +0 -172
  1537. package/esm/core/Tree/Tree.d.ts +0 -139
  1538. package/esm/core/Tree/Tree.js +0 -238
  1539. package/esm/core/Tree/TreeContext.d.ts +0 -33
  1540. package/esm/core/Tree/TreeContext.js +0 -8
  1541. package/esm/core/Tree/TreeNode.d.ts +0 -132
  1542. package/esm/core/Tree/TreeNode.js +0 -237
  1543. package/esm/core/Tree/TreeNodeExpander.d.ts +0 -9
  1544. package/esm/core/Tree/TreeNodeExpander.js +0 -30
  1545. package/esm/core/Typography/Anchor.d.ts +0 -35
  1546. package/esm/core/Typography/Anchor.js +0 -28
  1547. package/esm/core/Typography/Blockquote.d.ts +0 -18
  1548. package/esm/core/Typography/Blockquote.js +0 -17
  1549. package/esm/core/Typography/Code.d.ts +0 -6
  1550. package/esm/core/Typography/Code.js +0 -2
  1551. package/esm/core/Typography/Kbd.d.ts +0 -33
  1552. package/esm/core/Typography/Kbd.js +0 -31
  1553. package/esm/core/Typography/Text.d.ts +0 -42
  1554. package/esm/core/Typography/Text.js +0 -32
  1555. package/esm/core/VisuallyHidden/VisuallyHidden.d.ts +0 -22
  1556. package/esm/core/VisuallyHidden/VisuallyHidden.js +0 -48
  1557. package/esm/index.d.ts +0 -113
  1558. package/esm/index.js +0 -124
  1559. package/esm/react-table/react-table.d.ts +0 -753
  1560. package/esm/react-table/react-table.js +0 -1
  1561. package/esm/react-table/react-table.types-test.js +0 -656
  1562. package/esm/styles.d.ts +0 -6
  1563. package/esm/styles.js +0 -14
  1564. package/esm/utils/color/ColorValue.d.ts +0 -180
  1565. package/esm/utils/color/ColorValue.js +0 -421
  1566. package/esm/utils/color/index.d.ts +0 -1
  1567. package/esm/utils/color/index.js +0 -1
  1568. package/esm/utils/components/AutoclearingHiddenLiveRegion.d.ts +0 -12
  1569. package/esm/utils/components/AutoclearingHiddenLiveRegion.js +0 -20
  1570. package/esm/utils/components/Box.d.ts +0 -6
  1571. package/esm/utils/components/Box.js +0 -2
  1572. package/esm/utils/components/ButtonBase.d.ts +0 -14
  1573. package/esm/utils/components/ButtonBase.js +0 -32
  1574. package/esm/utils/components/FieldsetBase.d.ts +0 -6
  1575. package/esm/utils/components/FieldsetBase.js +0 -2
  1576. package/esm/utils/components/FocusTrap.d.ts +0 -12
  1577. package/esm/utils/components/FocusTrap.js +0 -40
  1578. package/esm/utils/components/InputContainer.d.ts +0 -19
  1579. package/esm/utils/components/InputContainer.js +0 -58
  1580. package/esm/utils/components/InputFlexContainer.d.ts +0 -36
  1581. package/esm/utils/components/InputFlexContainer.js +0 -39
  1582. package/esm/utils/components/InputWithIcon.d.ts +0 -2
  1583. package/esm/utils/components/InputWithIcon.js +0 -2
  1584. package/esm/utils/components/LineClamp.d.ts +0 -5
  1585. package/esm/utils/components/LineClamp.js +0 -33
  1586. package/esm/utils/components/MiddleTextTruncation.d.ts +0 -37
  1587. package/esm/utils/components/MiddleTextTruncation.js +0 -35
  1588. package/esm/utils/components/OverflowContainer.d.ts +0 -37
  1589. package/esm/utils/components/OverflowContainer.js +0 -49
  1590. package/esm/utils/components/Portal.d.ts +0 -35
  1591. package/esm/utils/components/Portal.js +0 -19
  1592. package/esm/utils/components/Resizer.d.ts +0 -37
  1593. package/esm/utils/components/Resizer.js +0 -255
  1594. package/esm/utils/components/ShadowRoot.d.ts +0 -13
  1595. package/esm/utils/components/ShadowRoot.js +0 -96
  1596. package/esm/utils/components/WithCSSTransition.d.ts +0 -6
  1597. package/esm/utils/components/WithCSSTransition.js +0 -49
  1598. package/esm/utils/components/index.d.ts +0 -15
  1599. package/esm/utils/components/index.js +0 -15
  1600. package/esm/utils/functions/colors.d.ts +0 -20
  1601. package/esm/utils/functions/colors.js +0 -25
  1602. package/esm/utils/functions/date.d.ts +0 -4
  1603. package/esm/utils/functions/date.js +0 -8
  1604. package/esm/utils/functions/dev.d.ts +0 -2
  1605. package/esm/utils/functions/dev.js +0 -10
  1606. package/esm/utils/functions/dom.d.ts +0 -22
  1607. package/esm/utils/functions/dom.js +0 -20
  1608. package/esm/utils/functions/focusable.d.ts +0 -31
  1609. package/esm/utils/functions/focusable.js +0 -68
  1610. package/esm/utils/functions/import.d.ts +0 -12
  1611. package/esm/utils/functions/import.js +0 -23
  1612. package/esm/utils/functions/index.d.ts +0 -10
  1613. package/esm/utils/functions/index.js +0 -10
  1614. package/esm/utils/functions/numbers.d.ts +0 -15
  1615. package/esm/utils/functions/numbers.js +0 -13
  1616. package/esm/utils/functions/polymorphic.d.ts +0 -21
  1617. package/esm/utils/functions/polymorphic.js +0 -48
  1618. package/esm/utils/functions/react.d.ts +0 -8
  1619. package/esm/utils/functions/react.js +0 -17
  1620. package/esm/utils/functions/supports.d.ts +0 -4
  1621. package/esm/utils/functions/supports.js +0 -3
  1622. package/esm/utils/hooks/index.d.ts +0 -17
  1623. package/esm/utils/hooks/index.js +0 -17
  1624. package/esm/utils/hooks/useContainerWidth.d.ts +0 -16
  1625. package/esm/utils/hooks/useContainerWidth.js +0 -18
  1626. package/esm/utils/hooks/useControlledState.d.ts +0 -13
  1627. package/esm/utils/hooks/useControlledState.js +0 -20
  1628. package/esm/utils/hooks/useDragAndDrop.d.ts +0 -13
  1629. package/esm/utils/hooks/useDragAndDrop.js +0 -105
  1630. package/esm/utils/hooks/useEventListener.d.ts +0 -10
  1631. package/esm/utils/hooks/useEventListener.js +0 -15
  1632. package/esm/utils/hooks/useGlobals.d.ts +0 -15
  1633. package/esm/utils/hooks/useGlobals.js +0 -19
  1634. package/esm/utils/hooks/useId.d.ts +0 -5
  1635. package/esm/utils/hooks/useId.js +0 -9
  1636. package/esm/utils/hooks/useIntersection.d.ts +0 -13
  1637. package/esm/utils/hooks/useIntersection.js +0 -30
  1638. package/esm/utils/hooks/useIsClient.d.ts +0 -1
  1639. package/esm/utils/hooks/useIsClient.js +0 -8
  1640. package/esm/utils/hooks/useIsomorphicLayoutEffect.d.ts +0 -10
  1641. package/esm/utils/hooks/useIsomorphicLayoutEffect.js +0 -4
  1642. package/esm/utils/hooks/useLatestRef.d.ts +0 -9
  1643. package/esm/utils/hooks/useLatestRef.js +0 -8
  1644. package/esm/utils/hooks/useMediaQuery.d.ts +0 -1
  1645. package/esm/utils/hooks/useMediaQuery.js +0 -20
  1646. package/esm/utils/hooks/useMergedRefs.d.ts +0 -9
  1647. package/esm/utils/hooks/useMergedRefs.js +0 -11
  1648. package/esm/utils/hooks/useOverflow.d.ts +0 -23
  1649. package/esm/utils/hooks/useOverflow.js +0 -63
  1650. package/esm/utils/hooks/useResizeObserver.d.ts +0 -13
  1651. package/esm/utils/hooks/useResizeObserver.js +0 -23
  1652. package/esm/utils/hooks/useSafeContext.d.ts +0 -6
  1653. package/esm/utils/hooks/useSafeContext.js +0 -7
  1654. package/esm/utils/hooks/useSyncExternalStore.d.ts +0 -5
  1655. package/esm/utils/hooks/useSyncExternalStore.js +0 -32
  1656. package/esm/utils/hooks/useVirtualScroll.d.ts +0 -34
  1657. package/esm/utils/hooks/useVirtualScroll.js +0 -50
  1658. package/esm/utils/hooks/useWarningLogger.d.ts +0 -15
  1659. package/esm/utils/hooks/useWarningLogger.js +0 -6
  1660. package/esm/utils/icons/StatusIconMap.d.ts +0 -7
  1661. package/esm/utils/icons/StatusIconMap.js +0 -27
  1662. package/esm/utils/icons/Svg.d.ts +0 -1
  1663. package/esm/utils/icons/Svg.js +0 -6
  1664. package/esm/utils/icons/SvgCalendar.d.ts +0 -2
  1665. package/esm/utils/icons/SvgCalendar.js +0 -10
  1666. package/esm/utils/icons/SvgCaretDownSmall.d.ts +0 -2
  1667. package/esm/utils/icons/SvgCaretDownSmall.js +0 -10
  1668. package/esm/utils/icons/SvgCaretRightSmall.d.ts +0 -2
  1669. package/esm/utils/icons/SvgCaretRightSmall.js +0 -10
  1670. package/esm/utils/icons/SvgCaretUpSmall.d.ts +0 -2
  1671. package/esm/utils/icons/SvgCaretUpSmall.js +0 -10
  1672. package/esm/utils/icons/SvgCheckmark.d.ts +0 -2
  1673. package/esm/utils/icons/SvgCheckmark.js +0 -10
  1674. package/esm/utils/icons/SvgCheckmarkSmall.d.ts +0 -2
  1675. package/esm/utils/icons/SvgCheckmarkSmall.js +0 -10
  1676. package/esm/utils/icons/SvgChevronLeft.d.ts +0 -2
  1677. package/esm/utils/icons/SvgChevronLeft.js +0 -10
  1678. package/esm/utils/icons/SvgChevronLeftDouble.d.ts +0 -2
  1679. package/esm/utils/icons/SvgChevronLeftDouble.js +0 -10
  1680. package/esm/utils/icons/SvgChevronRight.d.ts +0 -2
  1681. package/esm/utils/icons/SvgChevronRight.js +0 -10
  1682. package/esm/utils/icons/SvgChevronRightDouble.d.ts +0 -2
  1683. package/esm/utils/icons/SvgChevronRightDouble.js +0 -10
  1684. package/esm/utils/icons/SvgChevronRightSmall.d.ts +0 -2
  1685. package/esm/utils/icons/SvgChevronRightSmall.js +0 -10
  1686. package/esm/utils/icons/SvgClose.d.ts +0 -2
  1687. package/esm/utils/icons/SvgClose.js +0 -10
  1688. package/esm/utils/icons/SvgCloseSmall.d.ts +0 -2
  1689. package/esm/utils/icons/SvgCloseSmall.js +0 -10
  1690. package/esm/utils/icons/SvgColumnManager.d.ts +0 -2
  1691. package/esm/utils/icons/SvgColumnManager.js +0 -10
  1692. package/esm/utils/icons/SvgDocument.d.ts +0 -2
  1693. package/esm/utils/icons/SvgDocument.js +0 -10
  1694. package/esm/utils/icons/SvgFilter.d.ts +0 -2
  1695. package/esm/utils/icons/SvgFilter.js +0 -10
  1696. package/esm/utils/icons/SvgFilterHollow.d.ts +0 -2
  1697. package/esm/utils/icons/SvgFilterHollow.js +0 -10
  1698. package/esm/utils/icons/SvgImportantSmall.d.ts +0 -2
  1699. package/esm/utils/icons/SvgImportantSmall.js +0 -10
  1700. package/esm/utils/icons/SvgInfoCircular.d.ts +0 -2
  1701. package/esm/utils/icons/SvgInfoCircular.js +0 -10
  1702. package/esm/utils/icons/SvgMore.d.ts +0 -2
  1703. package/esm/utils/icons/SvgMore.js +0 -10
  1704. package/esm/utils/icons/SvgMoreVertical.d.ts +0 -2
  1705. package/esm/utils/icons/SvgMoreVertical.js +0 -10
  1706. package/esm/utils/icons/SvgNew.d.ts +0 -2
  1707. package/esm/utils/icons/SvgNew.js +0 -10
  1708. package/esm/utils/icons/SvgSearch.d.ts +0 -2
  1709. package/esm/utils/icons/SvgSearch.js +0 -10
  1710. package/esm/utils/icons/SvgSmileyHappy.d.ts +0 -2
  1711. package/esm/utils/icons/SvgSmileyHappy.js +0 -10
  1712. package/esm/utils/icons/SvgSortDown.d.ts +0 -2
  1713. package/esm/utils/icons/SvgSortDown.js +0 -10
  1714. package/esm/utils/icons/SvgSortUp.d.ts +0 -2
  1715. package/esm/utils/icons/SvgSortUp.js +0 -10
  1716. package/esm/utils/icons/SvgStatusError.d.ts +0 -2
  1717. package/esm/utils/icons/SvgStatusError.js +0 -10
  1718. package/esm/utils/icons/SvgStatusSuccess.d.ts +0 -2
  1719. package/esm/utils/icons/SvgStatusSuccess.js +0 -10
  1720. package/esm/utils/icons/SvgStatusWarning.d.ts +0 -2
  1721. package/esm/utils/icons/SvgStatusWarning.js +0 -10
  1722. package/esm/utils/icons/SvgSwap.d.ts +0 -2
  1723. package/esm/utils/icons/SvgSwap.js +0 -10
  1724. package/esm/utils/icons/SvgUpload.d.ts +0 -2
  1725. package/esm/utils/icons/SvgUpload.js +0 -10
  1726. package/esm/utils/icons/index.d.ts +0 -32
  1727. package/esm/utils/icons/index.js +0 -32
  1728. package/esm/utils/index.d.ts +0 -8
  1729. package/esm/utils/index.js +0 -8
  1730. package/esm/utils/meta.d.ts +0 -7
  1731. package/esm/utils/meta.js +0 -6
  1732. package/esm/utils/props.d.ts +0 -28
  1733. package/esm/utils/props.js +0 -1
  1734. package/esm/utils/providers/HydrationProvider.d.ts +0 -16
  1735. package/esm/utils/providers/HydrationProvider.js +0 -38
  1736. package/esm/utils/providers/ScopeProvider.d.ts +0 -26
  1737. package/esm/utils/providers/ScopeProvider.js +0 -43
  1738. package/esm/utils/providers/index.d.ts +0 -2
  1739. package/esm/utils/providers/index.js +0 -2
  1740. package/esm/utils/types.d.ts +0 -5
  1741. package/esm/utils/types.js +0 -1
  1742. package/styles.css +0 -396
package/CHANGELOG.md DELETED
@@ -1,848 +0,0 @@
1
- # Changelog
2
-
3
- ## 3.15.5
4
-
5
- ### Patch Changes
6
-
7
- - [#2306](https://github.com/iTwin/iTwinUI/pull/2306): Fixed broken expandable content (`subComponent`) when `Table` is asynchronously re-rendered.
8
- - [#2306](https://github.com/iTwin/iTwinUI/pull/2306): Fixed `Table`'s max depth reached error caused when passing the `getRowId` prop.
9
-
10
- ## 3.15.4
11
-
12
- ### Patch Changes
13
-
14
- - [#2297](https://github.com/iTwin/iTwinUI/pull/2297): More robust fix for an issue where nested `Popover`s were automatically closing due to faulty "outside click" detection.
15
- - [#2295](https://github.com/iTwin/iTwinUI/pull/2295): `ComboBox` with `multiple={true}` properly clears its input's value whenever the filter is cleared. e.g. when an option is toggled or the combobox is unfocused.
16
- - [#2288](https://github.com/iTwin/iTwinUI/pull/2288): `Table` now displays development-only console warnings when both `subRows` and `subComponent` are simultaneously passed to it.
17
- - [#2301](https://github.com/iTwin/iTwinUI/pull/2301): Fixed arrow keys page navigation in `TablePaginator`.
18
- - [#2303](https://github.com/iTwin/iTwinUI/pull/2303): `TablePaginator` shows ellipses only whenever needed.
19
-
20
- ## 3.15.3
21
-
22
- ### Patch Changes
23
-
24
- - [#2285](https://github.com/iTwin/iTwinUI/pull/2285): Fixed an issue in `ProgressLinear` where passing a `style` prop would cause it to lose its `value`.
25
- - [#2281](https://github.com/iTwin/iTwinUI/pull/2281): Inputs (e.g. `Input`, `ComboBox`, etc.) with "small" size now have the same height as other field elements with "small" size (e.g. `Button`).
26
- - [#2274](https://github.com/iTwin/iTwinUI/pull/2274): `IconButton`s inside `TransferList.Toolbar` will now show tooltips on the right side by default to avoid obscuring adjacent buttons in the group. This placement can be changed using the `labelProps.placement` prop on the `IconButton`.
27
- - [#2274](https://github.com/iTwin/iTwinUI/pull/2274): `TransferList.Toolbar` implements the previously missing [toolbar pattern](https://www.w3.org/WAI/ARIA/apg/patterns/toolbar/), including the arrow-key navigation functionality.
28
-
29
- ## 3.15.2
30
-
31
- ### Patch Changes
32
-
33
- - [#2275](https://github.com/iTwin/iTwinUI/pull/2275): Made the `ActionType.type` type in `Table` more specific. This will help when using the `action` argument in the `stateReducer` function, for example.
34
- - [#2273](https://github.com/iTwin/iTwinUI/pull/2273): Fixed an issue where the internal unit test detection logic was incorrectly treating Cypress like a unit test environment.
35
-
36
- ## 3.15.1
37
-
38
- ### Patch Changes
39
-
40
- - [#2263](https://github.com/iTwin/iTwinUI/pull/2263): Default `Tooltip` delay is now correctly applied.
41
- - [#2266](https://github.com/iTwin/iTwinUI/pull/2266): All instances of `user-select: all` have been removed.
42
- - Affected components: `Code`, `InformationPanel`, `Slider`, `Stepper`, `Tile`.
43
-
44
- ## 3.15.0
45
-
46
- ### Minor Changes
47
-
48
- - [#2233](https://github.com/iTwin/iTwinUI/pull/2233): `Popover` now enables the [`hide` middleware](https://floating-ui.com/docs/hide) to hide the floating content when the trigger is hidden.
49
-
50
- - This also affects other popover-like components (e.g. `Select`, `ComboBox`, `DropdownMenu`, `SplitButton`).
51
- - If the floating content gets hidden even when it shouldn't (e.g. due to some custom styles interfering with the trigger's hide detection), consider disabling the `hide` middleware.
52
-
53
- - [#2233](https://github.com/iTwin/iTwinUI/pull/2233): Added a new `dropdownMenuProps` prop to `SplitButton` for additional control over the menu (e.g. to disable the [`hide` middleware](https://floating-ui.com/docs/hide)).
54
-
55
- - [#2259](https://github.com/iTwin/iTwinUI/pull/2259): `ComboBox` and `Select` now allow customizing the portal behavior of the floating listbox.
56
-
57
- - To customize `ComboBox` portaling behavior, use `dropdownMenuProps.portal`.
58
- - To customize `Select` portaling behavior, use `popoverProps.portal`.
59
-
60
- <details>
61
- <summary>Example</summary>
62
-
63
- To turn off the default portaling behavior, use `portal: false`.
64
-
65
- ```jsx
66
- <ComboBox
67
- options={[…]}
68
- dropdownMenuProps={{ portal: false }}
69
- />
70
- ```
71
-
72
- ```jsx
73
- <Select
74
- options={[…]}
75
- popoverProps={{ portal: false }}
76
- />
77
- ```
78
-
79
- </details>
80
-
81
- - [#2238](https://github.com/iTwin/iTwinUI/pull/2238): Passing `styleType="borderless"` to `SearchBox.ExpandButton` now works as expected. This is because collapsed `SearchBox` will now hide its border and background in favor of the ones from `SearchBox.ExpandButton`.
82
-
83
- <details>
84
- <summary>Example</summary>
85
-
86
- ```diff
87
- <SearchBox expandable>
88
- <SearchBox.CollapsedState>
89
- - <SearchBox.ExpandButton/>
90
- + <SearchBox.ExpandButton styleType="borderless"/>
91
- </SearchBox.CollapsedState>
92
- <SearchBox.ExpandedState>…</SearchBox.ExpandedState>
93
- </SearchBox>
94
- ```
95
-
96
- </details>
97
-
98
- - [#2211](https://github.com/iTwin/iTwinUI/pull/2211): Added the ability to have custom `props` for each sub-component of `ColorPicker`.
99
- - New **ColorBuilder** props: `colorFieldProps`, `colorDotProps`, `opacitySliderProps`, and `hueSliderProps`.
100
- - New **ColorInputPanel** props: `panelLabelProps`, `colorInputContainerProps`, `inputFieldsGroupProps` and `swapColorFormatButtonProps`.
101
- - New **ColorPalette** props: `labelProps`, and `paletteContainerProps`.
102
-
103
- ### Patch Changes
104
-
105
- - [#2208](https://github.com/iTwin/iTwinUI/pull/2208): Fixed an issue in `Table` where `subComponent` was broken when enabling virtualization.
106
- - [#2239](https://github.com/iTwin/iTwinUI/pull/2239): Fixed `scrollToRow` in un-virtualized `Table`. In virtualized `Table`, `scrollToRow` now scrolls to the top for consistent behavior.
107
- - [#2233](https://github.com/iTwin/iTwinUI/pull/2233): `Popover`'s `middleware.hide` prop is now respected.
108
- - [#2208](https://github.com/iTwin/iTwinUI/pull/2208): `Table`'s animation to show and hide its `subComponent` is now removed.
109
- - [#2252](https://github.com/iTwin/iTwinUI/pull/2252): Fixed an issue where some components (e.g. `VisuallyHidden` inside `ProgressRadial`) were losing their styles when reparented into a different window.
110
-
111
- ## 3.14.2
112
-
113
- ### Patch Changes
114
-
115
- - [#2217](https://github.com/iTwin/iTwinUI/pull/2217): Fixed the `Footer`'s `translatedTitles` prop's type to allow passing partial translations.
116
- - [#2218](https://github.com/iTwin/iTwinUI/pull/2218): Fixed a `Table` bug where custom `Cell` content was not taking up the entire available width in some cases.
117
- - [#2216](https://github.com/iTwin/iTwinUI/pull/2216): Fixed the fallback CSS logic in `ThemeProvider` to load the correct stylesheet version.
118
-
119
- ## 3.14.1
120
-
121
- ### Patch Changes
122
-
123
- - [#2209](https://github.com/iTwin/iTwinUI/pull/2209): Fixed an issue where nested `Popover`s were automatically closing due to faulty "outside click" detection.
124
- - [#2213](https://github.com/iTwin/iTwinUI/pull/2213): Dev-only warnings have been improved so that they are correctly shown for every individual instance of a component. Additionally, these warnings are now logged using `console.error`, which results in a better stack trace.
125
-
126
- ## 3.14.0
127
-
128
- ### Minor Changes
129
-
130
- - [#2040](https://github.com/iTwin/iTwinUI/pull/2040): The colors of disabled controls have been adjusted make them easier to distinguish from regular controls.
131
- - Also added hover state to disabled button, select, input, textarea, and actionable list item to help with accessibility.
132
- - [#2153](https://github.com/iTwin/iTwinUI/pull/2153): Nested `ThemeProvider`s will now reuse the same toaster instead of creating new ones.
133
- - [#2201](https://github.com/iTwin/iTwinUI/pull/2201): `List` and `ListItem` will now be rendered as `<div>`s instead of `<ul>`/`<li>`. This change makes these components less restrictive and less error-prone to use.
134
- - [#2187](https://github.com/iTwin/iTwinUI/pull/2187): Floating elements will now use `position: fixed` instead of `position: absolute`.
135
- - This fixes some issues when a floating element is placed near the edge of the viewport.
136
- - Some components affected: `Tooltip`, `Popover`, `Select`, `DropdownMenu`, `ComboBox`, etc.
137
- - [#2190](https://github.com/iTwin/iTwinUI/pull/2190): `Popover` now enables the [`size` middleware](https://floating-ui.com/docs/size) to prevent it from overflowing the viewport.
138
- - This also affects other popover-like components (e.g. `Select`, `ComboBox`, `DropdownMenu`).
139
- - `Popover` now also sets a default max-height of `400px` to prevent it from becoming too large. This can be customized using the `middleware.size.maxHeight` prop.
140
- - [#2205](https://github.com/iTwin/iTwinUI/pull/2205): `tableFilters.TextFilter` now prevents the user from applying the filter when the text input is empty.
141
- - [#2205](https://github.com/iTwin/iTwinUI/pull/2205): `BaseFilter` now renders as a `<form>` and `FilterButtonBar` now renders a `<button type="submit">`. Together, this enables the use of browser's built-in validation before applying filters.
142
-
143
- - The `setFilter` prop in `FilterButtonBar` has been deprecated, as `onSubmit` should be used instead.
144
- <details>
145
- <summary>Diff</summary>
146
-
147
- ```diff
148
- <BaseFilter
149
- + onSubmit={() => setFilter(text)}
150
- >
151
-
152
- <FilterButtonBar
153
- - setFilter={() => setFilter(text)}
154
- />
155
- </BaseFilter>
156
- ```
157
-
158
- </details>
159
-
160
- ### Patch Changes
161
-
162
- - [#2194](https://github.com/iTwin/iTwinUI/pull/2194): Fixed an issue where CommonJS files in the development build output (`DEV-cjs/` directory) were being treated as ESM, inadvertently causing runtime errors during development.
163
- - [#2185](https://github.com/iTwin/iTwinUI/pull/2185): Portal containers will now default to a `<div>` rendered at the end of `<body>` instead of a `<div>` rendered inside the `<ThemeProvider>`.
164
- - [#2202](https://github.com/iTwin/iTwinUI/pull/2202): `IconButton` will now reroute the HTML `title` prop to its own `label` prop for better accessibility. The `title` prop has also been marked deprecated to encourage the use of `label`.
165
- - [#2168](https://github.com/iTwin/iTwinUI/pull/2168): Adjusted focus management in `Popover` so that it allows interactive elements inside the popover to be more easily focused. This more closely matches the behavior of the HTML `<dialog>` element, which focuses the first interactive element inside it.
166
- - [#2207](https://github.com/iTwin/iTwinUI/pull/2207): Fixed a bug where `pointer-events: none` was sometimes applied to the main `<body>` when a `MenuItem` was hovered in a popout window.
167
- - [#2189](https://github.com/iTwin/iTwinUI/pull/2189): Floating elements will now have a few pixels of padding from the edge of the viewport.
168
- - [#2202](https://github.com/iTwin/iTwinUI/pull/2202): `IconButton` will now display warnings during development when it's missing a label.
169
- - [#2178](https://github.com/iTwin/iTwinUI/pull/2178): Reduced layout thrashing on `Table` component by memoizing an expensive `ref` function.
170
- - [#2194](https://github.com/iTwin/iTwinUI/pull/2194): The development build output is now also formatted using `prettier` for easier debugging.
171
-
172
- ## 3.13.4
173
-
174
- ### Patch Changes
175
-
176
- - [#2138](https://github.com/iTwin/iTwinUI/pull/2138): Fixed an issue in `Table` column resizing where passing in a `width` value that was less than the column's default `minWidth` would cause an undesirable shift when the column was resized.
177
- - [#2170](https://github.com/iTwin/iTwinUI/pull/2170): Fixed an issue in virtualized `Tree` where the `style` prop passed to `TreeNode` was not respected.
178
- - [#2170](https://github.com/iTwin/iTwinUI/pull/2170): Fixed an issue in virtualized `Tree` where horizontal scroll was impossible to achieve.
179
- - [#2174](https://github.com/iTwin/iTwinUI/pull/2174): Fixed an issue in `Table` where the virtualizer was being initialized when the `enableVirtualization` prop wasn't set to `true`.
180
-
181
- ## 3.13.3
182
-
183
- ### Patch Changes
184
-
185
- - [#2163](https://github.com/iTwin/iTwinUI/pull/2163): Fixed an issue in virtualized `Table` where horizontal scroll was broken.
186
-
187
- ## 3.13.2
188
-
189
- ### Patch Changes
190
-
191
- - [#2143](https://github.com/iTwin/iTwinUI/pull/2143): Added `border-radius` to the `Table` component so that the border radius is correctly applied to the `Table`'s corners.
192
- - [#2161](https://github.com/iTwin/iTwinUI/pull/2161): Fixed issue where `emptyTableContent` would not appear on virutalized `Table` components.
193
-
194
- ## 3.13.1
195
-
196
- ### Patch Changes
197
-
198
- - [#2147](https://github.com/iTwin/iTwinUI/pull/2147): Fixed a CSS issue in `ExpandableBlock` where its content wouldn't stay constrained by the width of the parent.
199
- - [#2148](https://github.com/iTwin/iTwinUI/pull/2148): Fixed regression where the value of the `toggleRowSelected` action for the `Table` would be undefined when `selectSubRows` was set to `false`.
200
-
201
- ## 3.13.0
202
-
203
- ### Minor Changes
204
-
205
- - [#2106](https://github.com/iTwin/iTwinUI/pull/2106): All internal CSS class prefixes have been changed to prevent style conflicts across minor versions.
206
-
207
- - While this is _not_ considered a breaking change according to our [support policy](https://github.com/iTwin/iTwinUI/wiki/Support-policy), this change might affect you if you ignore our pleas to not rely on these internal class names. The recommendation is to pass your own custom `className` through props.
208
-
209
- - [#2131](https://github.com/iTwin/iTwinUI/pull/2131): Development-only warnings will now be properly excluded from the production build. This is done using a separate `"development"` entrypoint listed in `package.json#exports`.
210
-
211
- - [#2135](https://github.com/iTwin/iTwinUI/pull/2135): Changed the column manager from a `DropdownMenu` to a `Popover` to fix invalid markup and accessibility issues.
212
-
213
- - Added dependency on `@tanstack/react-virtual` to replace the custom virtual-scroll implementation. This affects the `enableVirtualization` prop in `ComboBox`, `Table`, and `Tree`.
214
-
215
- - [#2061](https://github.com/iTwin/iTwinUI/pull/2061): Virtualized `ComboBox` now correctly supports dynamic sizing, e.g. when options both with and without `subLabel` are present.
216
- - [#2092](https://github.com/iTwin/iTwinUI/pull/2092): Virtualized `Table` has been improved so that scrolling no longer jumps when rows are scrolled past.
217
- - [#2139](https://github.com/iTwin/iTwinUI/pull/2139): Virtualized `Tree` no longer requires a wrapping scrollable element, since the tree itself is scrollable now.
218
- <details>
219
- <summary>Diff</summary>
220
-
221
- ```diff
222
- - <div style={{overflow: 'auto', height: 'min(400px, 90vh)'}}>
223
- <Tree
224
- enableVirtualization
225
- + style={{height: 'min(400px, 90vh)'}}
226
- />
227
- - </div>
228
- ```
229
-
230
- </details>
231
-
232
- ### Patch Changes
233
-
234
- - [#2139](https://github.com/iTwin/iTwinUI/pull/2139): Added `overflow: auto` to `Tree` component to provide more consistent styling across components.
235
- - [#2137](https://github.com/iTwin/iTwinUI/pull/2137): Console warnings will now be displayed during development when multiple versions of iTwinUI are detected.
236
- - [#2145](https://github.com/iTwin/iTwinUI/pull/2145): Fixed an issue where the `Overlay` component was causing bundler warnings about a non-analyzable expression used in a dependency.
237
- - [#2135](https://github.com/iTwin/iTwinUI/pull/2135): The `Table` column manager button's open state no longer has the `Button`'s blue active color.
238
- - [#2142](https://github.com/iTwin/iTwinUI/pull/2142): Added `displayName`s to all components that were previously missing them.
239
- - [#2141](https://github.com/iTwin/iTwinUI/pull/2141): `displayName`s have been eliminated from the production build, so they only show up during development.
240
- - [#2135](https://github.com/iTwin/iTwinUI/pull/2135): `ActionColumn`'s `dropdownMenuProps` no longer exposes the unnecessary `matchWidth` prop.
241
-
242
- ## 3.12.2
243
-
244
- ### Patch Changes
245
-
246
- - [#2127](https://github.com/iTwin/iTwinUI/pull/2127): Fixed an issue in `Dialog` and `Modal`, where long titles were not wrapping properly.
247
-
248
- ## 3.12.1
249
-
250
- ### Patch Changes
251
-
252
- - [#2124](https://github.com/iTwin/iTwinUI/pull/2124): Fixed a CommonJS-related error where an internal variable was accidentally trying to override the [`module`](https://nodejs.org/api/modules.html#the-module-object) object.
253
- - [#2122](https://github.com/iTwin/iTwinUI/pull/2122): The new JSX transform added in [v3.12.0](https://github.com/iTwin/iTwinUI/releases/tag/%40itwin%2Fitwinui-react%403.12.0) has been reverted, because React 17 [doesn't properly support it](https://github.com/facebook/react/issues/20235).
254
-
255
- ## 3.12.0
256
-
257
- ### Minor Changes
258
-
259
- - [#2048](https://github.com/iTwin/iTwinUI/pull/2048): Added a new `defaultValue` prop to `ComboBox`. This is useful when you don't want to maintain your own state but still want to control the initial `value`.
260
- - [#2076](https://github.com/iTwin/iTwinUI/pull/2076): Added open popover styling to `Button` (and `IconButton`). When an associated `Popover` or `DropdownMenu` is open, the button will now get a subtle visual indication.
261
- - [#2111](https://github.com/iTwin/iTwinUI/pull/2111): Added the ability to pass arbitrary DOM props to `TreeNode`.
262
- - [#2107](https://github.com/iTwin/iTwinUI/pull/2107): A new `meta` object is exported, containing meta information about the package.
263
-
264
- ```ts
265
- import { meta } from '@itwin/itwinui-react';
266
-
267
- console.log(meta.version, meta.module); // 3.12.0, ESM
268
- ```
269
-
270
- - [#2048](https://github.com/iTwin/iTwinUI/pull/2048): Fixed a bug in `ComboBox` where the controlled state (`value` prop) was not given priority over the uncontrolled state. As a result:
271
-
272
- - Setting the default value using `value={myDefaultValue}` will no longer work. Instead, use the new `defaultValue` prop.
273
- - Resetting the value using `value={null}` will now force the ComboBox to be in _controlled_ mode. If you want to reset the value but be in _uncontrolled_ mode, then use `value={undefined}` instead.
274
-
275
- - [#2101](https://github.com/iTwin/iTwinUI/pull/2101): Passing an `IconButton` to `Tile.QuickAction` and `Tile.TypeIndicator` is now deprecated. Use `Tile.IconButton` instead.
276
- - [#2021](https://github.com/iTwin/iTwinUI/pull/2021): In menu-like components (`DropdownMenu`, `SplitButton`, `Table`'s column manager), using the _mouse_ to operate the menu will no longer move focus like it does when using the _keyboard_.
277
- - [#2021](https://github.com/iTwin/iTwinUI/pull/2021): `MenuItem`'s `tabIndex` now is `0` when it's selected and `-1` when it's not. Additionally, `MenuItem` passed inside most menu type components (e.g. `DropdownMenu`, `SplitButton`, `Table`'s column manager, etc.) have roving `tabIndex`.
278
- - Dependency changes:
279
- - [#2116](https://github.com/iTwin/iTwinUI/pull/2116): Bumped the minimum required version of `@floating-ui/react` to `0.26.18`.
280
- - [#2100](https://github.com/iTwin/iTwinUI/pull/2100): Replaced dependency on `tslib` with `@swc/helpers`. This is used mainly by the CommonJS build for [interop reasons](https://www.typescriptlang.org/docs/handbook/modules/appendices/esm-cjs-interop.html).
281
-
282
- ### Patch Changes
283
-
284
- - [#2117](https://github.com/iTwin/iTwinUI/pull/2117): Fixed an error in `Select` caused by updating `@floating-ui/react` to `0.26.18`.
285
- - [#2101](https://github.com/iTwin/iTwinUI/pull/2101): Fixed a small visual bug in `Tile.IconButton` where the hover state wasn't working.
286
- - [#2021](https://github.com/iTwin/iTwinUI/pull/2021): `MenuItem` now renders as a `<button>` instead of a `<div>`.
287
- - [#2113](https://github.com/iTwin/iTwinUI/pull/2113): Fixed an issue where a portaled `Popover` was sometimes showing up in the wrong window during the first render.
288
- - [#2048](https://github.com/iTwin/iTwinUI/pull/2048): Fixed a bug in `ComboBox` where the `isSelected` passed to `itemRenderer` was always `false` whenever `multiple` was `true`.
289
-
290
- ### Build Output Changes
291
-
292
- - [#2102](https://github.com/iTwin/iTwinUI/pull/2102): The build output is now generated using SWC and uses the [new JSX transform](https://react.dev/link/new-jsx-transform) instead of `React.createElement`.
293
- - [#2118](https://github.com/iTwin/iTwinUI/pull/2118): Type declarations are now generated using TypeScript 5.5 with `"module": "NodeNext"`.
294
- - [#2118](https://github.com/iTwin/iTwinUI/pull/2118): The `"exports"` fallback for `/react-table` types is now handled using [`typesVersions`](https://www.typescriptlang.org/docs/handbook/declaration-files/publishing.html#version-selection-with-typesversions).
295
- - [#2100](https://github.com/iTwin/iTwinUI/pull/2100): The build output is now (again) formatted using `prettier` for easier debugging.
296
- - [#2100](https://github.com/iTwin/iTwinUI/pull/2100): All code comments have been removed from the build output.
297
-
298
- ## 3.11.3
299
-
300
- ### Patch Changes
301
-
302
- - [#2098](https://github.com/iTwin/iTwinUI/pull/2098): Fixed a regression in `Table` component where `selectSubRows` prop being set to `false` would cause parent rows to become uncheckable.
303
-
304
- ## 3.11.2
305
-
306
- ### Patch Changes
307
-
308
- - [#2084](https://github.com/iTwin/iTwinUI/pull/2084): Fixed an issue where a portaled `ThemeProvider` would try to re-render infinitely.
309
- - [#2083](https://github.com/iTwin/iTwinUI/pull/2083): Removed the accidentally added no-op `loading` prop in `IconButton`.
310
- - [#2083](https://github.com/iTwin/iTwinUI/pull/2083): Fixed a visual bug where elements like `startIcon` and `endIcon` inside the `Button` (or its derivatives) were not hidden when the button was in a loading state. Now,`loading={true}` on `Button` hides _all_ its children except the `ProgressRadial`.
311
-
312
- ## 3.11.1
313
-
314
- ### Patch Changes
315
-
316
- - [#2074](https://github.com/iTwin/iTwinUI/pull/2074): Fixed indentation of `Tree` nodes to be aligned regardless of the presence of expander button.
317
- - [#2064](https://github.com/iTwin/iTwinUI/pull/2064): Adjusted `Dialog` and `ExpandableBlock` to round some CSS `transform` values. This helps avoid blurry text on Windows in some cases.
318
- - [#2055](https://github.com/iTwin/iTwinUI/pull/2055): Fixed an issue in `Breadcrumbs.Item` where using a custom link component (e.g. `as={Link}` for client side routing) would break the CSS styling.
319
- - [#2071](https://github.com/iTwin/iTwinUI/pull/2071): Fixed a minor issue in `ComboBox` where a `label` attribute was accidentally being added to options in the DOM.
320
- - [#2068](https://github.com/iTwin/iTwinUI/pull/2068): Fixed `EditableCell` so that it correctly merges `className` and `style` props with the corresponding internal props.
321
- - [#2073](https://github.com/iTwin/iTwinUI/pull/2073): Fixed CommonJS types exports for the `/react-table` entrypoint.
322
- - [#2055](https://github.com/iTwin/iTwinUI/pull/2055): Fixed a regression from `v3.10.0` where non-button and non-link `Breadcrumbs.Item`s were getting a hover styling as if it were a button.
323
-
324
- ## 3.11.0
325
-
326
- ### Minor Changes
327
-
328
- - [#2058](https://github.com/iTwin/iTwinUI/pull/2058): Added new `loading` prop to `Button`. This is useful when you want to display a brief loading state after the user clicks the button.
329
-
330
- ```jsx
331
- <Button loading={isProcessing}>Click me</Button>
332
- ```
333
-
334
- - [#2057](https://github.com/iTwin/iTwinUI/pull/2057): Updated warning and negative background colors to better match the rest of the color palette.
335
- - [#2060](https://github.com/iTwin/iTwinUI/pull/2060): Updated `Tooltip` to automatically use the [`popover` API](https://developer.mozilla.org/en-US/docs/Web/API/Popover_API) in supported browsers. This ensures that tooltips appear in the top layer, avoiding stacking context issues.
336
- - [#2022](https://github.com/iTwin/iTwinUI/pull/2022): Added optional props to `TreeNode` for customization: `nodeProps`, `contentProps`, `labelProps`, `titleProps`, `sublabelProps`, `checkboxProps`, `iconProps`, `expanderProps` and `subTreeProps`.
337
-
338
- ### Patch Changes
339
-
340
- - [#2042](https://github.com/iTwin/iTwinUI/pull/2042): Fixed `Table` empty state horizontal alignment when table is very narrow.
341
- - [#2054](https://github.com/iTwin/iTwinUI/pull/2054): Removed unnecessary gap below the inline `<InputGrid>` when no secondary line (`StatusMessage`) is present. Some other affected components: `LabeledInput`, `LabeledSelect`, `LabeledTextarea`.
342
- - [#2049](https://github.com/iTwin/iTwinUI/pull/2049): Adjusted disabled controls' borders to slightly increase color contrast.
343
- - [#2043](https://github.com/iTwin/iTwinUI/pull/2043): Adjusted the behavior of buttons so that double tapping them doesn't zoom the viewport on iOS.
344
- - [#2044](https://github.com/iTwin/iTwinUI/pull/2044): Fixed a rare hydration error in `Surface` caused by using an empty string inside the `style` attribute.
345
-
346
- ## 3.10.1
347
-
348
- ### Patch Changes
349
-
350
- - [#2031](https://github.com/iTwin/iTwinUI/pull/2031): Fixed an issue where popovers and dropdown menus used with `SidenavButton` were showing up inside a tooltip.
351
- - [#2030](https://github.com/iTwin/iTwinUI/pull/2030): Fixed a visual bug where items in a `ButtonGroup` were displaying a double border when an associated `Popover` was opened.
352
- - [#2026](https://github.com/iTwin/iTwinUI/pull/2026): Submenus within a `DropdownMenu` will now consistently require less precision when moving the mouse between the parent item and the submenu.
353
-
354
- ## 3.10.0
355
-
356
- ### Minor Changes
357
-
358
- - [#1942](https://github.com/iTwin/iTwinUI/pull/1942): Clicking a `MenuItem` with `submenuItems` now toggles the submenu visibility.
359
- - If both `submenuItems` and `onClick` props are passed, then clicking the `MenuItem` will toggle the submenu visibility but also _still_ call the `onClick`. However, this behavior can lead to a confusing UX and is not recommended, so a warning will be shown.
360
- - [#1919](https://github.com/iTwin/iTwinUI/pull/1919): Aggregated a subset of CSS styles across some field components: `Button`, `Input`, `Textarea`, and `Select`, in order to reduce the CSS size and improve visual consistency. Some resulting changes:
361
- - `Input`, `Textarea`, and `Select` have a similar hover state as `Button`.
362
- - `Input`, `Textarea`, and `Select` now show their value as greyed out when disabled.
363
- - [#1942](https://github.com/iTwin/iTwinUI/pull/1942): `DropdownMenu`'s keyboard navigation, hover triggers, and overall behavior has been improved.
364
- - [#2010](https://github.com/iTwin/iTwinUI/pull/2010): Added new `labelProps` to `ToggleSwitch` to allow for customization of the label element.
365
- - [#2011](https://github.com/iTwin/iTwinUI/pull/2011): Added dependency on `jotai`.
366
-
367
- ### Patch Changes
368
-
369
- - [#1942](https://github.com/iTwin/iTwinUI/pull/1942): Disabled `MenuItem`s no longer show their submenu.
370
- - [#1942](https://github.com/iTwin/iTwinUI/pull/1942): Fixed an issue in `DropdownMenu` where the submenus would not close in some circumstances, despite calling `close()` in `onClick`.
371
- - [#2013](https://github.com/iTwin/iTwinUI/pull/2013): Fixed an issue with `Table` row selection not correctly deselecting all sub rows when the row has disabled sub rows or when some rows are filtered out.
372
- - [#2009](https://github.com/iTwin/iTwinUI/pull/2009): Fixed an issue where `Popover` wasn't respecting the `ThemeProvider`'s `portalContainer`.
373
- - [#2011](https://github.com/iTwin/iTwinUI/pull/2011): When `ThemeProvider` is portaled into popup windows, it will now automatically create a portal container in the correct document, avoiding the need to manually specify `portalContainer`.
374
- - [#1919](https://github.com/iTwin/iTwinUI/pull/1919): The small sized `TablePaginator`'s buttons are now squares instead of rectangles. This makes it consistent with the shape of the regular sized `TablePaginator` buttons.
375
- - [#1919](https://github.com/iTwin/iTwinUI/pull/1919): The hover styling of `Breadcrumbs.Item` has been made more consistent across buttons and anchors.
376
-
377
- ## 3.9.1
378
-
379
- ### Patch Changes
380
-
381
- - [#2005](https://github.com/iTwin/iTwinUI/pull/2005): Improved `IconButton` so that its tooltip is removed from the DOM when not visible.
382
- - [#2004](https://github.com/iTwin/iTwinUI/pull/2004): Fixed a performance issue in `Tooltip` where expensive calculations were being run even when the tooltip was not visible.
383
-
384
- ## 3.9.0
385
-
386
- ### Minor Changes
387
-
388
- - [#1994](https://github.com/iTwin/iTwinUI/pull/1994): Added `role="toolbar"` support to `ButtonGroup`. Use this to enable the [toolbar pattern](https://www.w3.org/WAI/ARIA/apg/patterns/toolbar/), with arrow-key navigation functionality.
389
-
390
- ```jsx
391
- <ButtonGroup role="toolbar">
392
- ```
393
-
394
- - [#1986](https://github.com/iTwin/iTwinUI/pull/1986): `tableFilters.DateRangeFilter` now accepts `showYearSelection` to enable year-selection buttons.
395
-
396
- ```js
397
- tableFilters.DateRangeFilter({ showYearSelection: true });
398
- ```
399
-
400
- - [#1971](https://github.com/iTwin/iTwinUI/pull/1971): Added a new `stretched` prop to `Button` to allow it to span the full width of its container.
401
- - [#1996](https://github.com/iTwin/iTwinUI/pull/1996): `Anchor` elements inside `Text` will now be underlined by default.
402
-
403
- ### Patch Changes
404
-
405
- - [#1997](https://github.com/iTwin/iTwinUI/pull/1997): Fixed an issue where draggable `Dialog` was overriding its intrinsic size after mount.
406
- - [#1981](https://github.com/iTwin/iTwinUI/pull/1981): Fixed `jest` detection logic to correctly exit from scenarios that should not be executed in unit test environments.
407
- - [#1982](https://github.com/iTwin/iTwinUI/pull/1982): Fixed an issue where some components (such as `InputGroup`) were trying to render `undefined`, which is not supported in React 17.
408
- - [#1986](https://github.com/iTwin/iTwinUI/pull/1986): Updated the date pickers in `tableFilters.DateRangeFilter` to _not_ display dates outside the current month.
409
-
410
- ## 3.8.1
411
-
412
- ### Patch Changes
413
-
414
- - [#1964](https://github.com/iTwin/iTwinUI/pull/1964): Fixed a bug with `InformationPanel` where changing orientation after resizing the panel would cause the panel to maintain it's resized width/height.
415
-
416
- ## 3.8.0
417
-
418
- ### Minor Changes
419
-
420
- - [#1957](https://github.com/iTwin/iTwinUI/pull/1957): Bumped the minimum required version of `@floating-ui/react` from `^0.26.3` to `^0.26.10`. (Make sure to also update transitive deps!)
421
-
422
- ### Patch Changes
423
-
424
- - [#1962](https://github.com/iTwin/iTwinUI/pull/1962): Hydration checks have been added in some components to facilitate showing pure client-rendered content more eagerly.
425
- - [#1968](https://github.com/iTwin/iTwinUI/pull/1968): Fixed a regression in `Table` where the layout of a custom `Cell` unexpectedly changed from horizontal to vertical.
426
-
427
- ## 3.7.4
428
-
429
- ### Patch Changes
430
-
431
- - [#1944](https://github.com/iTwin/iTwinUI/pull/1944): Fixed an issue where `Tooltip` would stay open after clicking on the trigger element. The tooltip will now be correctly dismissed upon click.
432
-
433
- Also affects other components that use tooltips internally: `IconButton`, `SideNavigation`, etc.
434
-
435
- - [#1955](https://github.com/iTwin/iTwinUI/pull/1955): Fixed a regression in `Tabs` where the panel content was not occupying the full width of the container.
436
- - [#1954](https://github.com/iTwin/iTwinUI/pull/1954): Fixed an issue in older Safari versions where visually-hidden styles inside `ProgressRadial` were not being applied.
437
-
438
- ## 3.7.3
439
-
440
- ### Patch Changes
441
-
442
- - [#1946](https://github.com/iTwin/iTwinUI/pull/1946): Fixed a bug in `Table` where resizing the columns and then toggling the column visibility in the column manager would trigger an unnecessary auto-scroll in the vertical direction.
443
- - [#1943](https://github.com/iTwin/iTwinUI/pull/1943): Fixed a z-index issue in `Table` where the table resizer appeared above the sticky header cells.
444
-
445
- ## 3.7.2
446
-
447
- ### Patch Changes
448
-
449
- - [#1939](https://github.com/iTwin/iTwinUI/pull/1939): Fixed an issue in `ButtonGroup` where the overflow logic was running even when `overflowButton` prop was not passed.
450
-
451
- ## 3.7.1
452
-
453
- ### Patch Changes
454
-
455
- - [#1934](https://github.com/iTwin/iTwinUI/pull/1934): Fixed the types for `Table` column `filter` to allow `"includesSome"`, which is an already-supported filter function. Also improved the types for the `filter` prop to improve TS autocompletion.
456
- - [#1936](https://github.com/iTwin/iTwinUI/pull/1936): Fixed an issue in `ProgressRadial` where the visually hidden "Loading." text was sometimes incorrectly displayed for a short while in the beginning.
457
-
458
- ## 3.7.0
459
-
460
- ### Minor Changes
461
-
462
- - [#1863](https://github.com/iTwin/iTwinUI/pull/1863): The filter button inside a `Table` will now always be visible, instead of only being shown on hover/focus.
463
- - [#1891](https://github.com/iTwin/iTwinUI/pull/1891): The entire `Table` is now scrollable instead of just the `Table`'s body. This leads to a better scroll experience (e.g. the `Table`'s header now scrolls horizontally when hovering a dragged column near the header's left or right edges).
464
- - [#1863](https://github.com/iTwin/iTwinUI/pull/1863): The responsive behavior of `Table` columns has been improved in a few different ways:
465
- - All columns now have a non-zero default min-width. While we still recommend passing a custom min-width based on your data, this default will help prevent resizable columns from becoming too small.
466
- - The filter and sort icons in a column header will now wrap to the next line, before the text starts wrapping.
467
- - For cells that have a string value, the value will be automatically truncated after three lines.
468
-
469
- ## 3.6.3
470
-
471
- ### Patch Changes
472
-
473
- - [#1916](https://github.com/iTwin/iTwinUI/pull/1916): Fixed the hover background for default tabs.
474
-
475
- ## 3.6.2
476
-
477
- ### Patch Changes
478
-
479
- - [#1921](https://github.com/iTwin/iTwinUI/pull/1921): Fixed `Carousel.Dot`'s incorrect height.
480
-
481
- ## 3.6.1
482
-
483
- ### Patch Changes
484
-
485
- - [#1909](https://github.com/iTwin/iTwinUI/pull/1909): Remove `margin-block` from `Badge`.
486
-
487
- ## 3.6.0
488
-
489
- ### Minor Changes
490
-
491
- - [#1879](https://github.com/iTwin/iTwinUI/pull/1879): Added a new `native` prop to `Select` and `LabeledSelect`. When true, a native `<select>` element will be rendered.
492
- - [#1886](https://github.com/iTwin/iTwinUI/pull/1886): Native `Select` (`<Select native>`) offers a new `styleType` prop that accepts the values: `default` (pre-existing) and `borderless` (new).
493
- - [#1877](https://github.com/iTwin/iTwinUI/pull/1877): Fixed a bug in `InputGroup` where nested `<StatusMessage>`s were rendered when using `message={<StatusMessage>}`. As a result, non-string `message` values are no longer automatically wrapped in `<StatusMessage>`.
494
- - If you were passing a custom `ReactNode`, you might need to wrap it with `<StatusMessage>` for proper styling of `message`.
495
- - [#1881](https://github.com/iTwin/iTwinUI/pull/1881): Added a new subcomponent `InputWithDecorations.Icon` to replace direct usage of `Icon` inside `InputWithDecorations`.
496
- - Visual changes:
497
- - [#1828](https://github.com/iTwin/iTwinUI/pull/1828): Inline padding of `Icon` no longer changes with the icon size. It is now a constant of `--iui-size-xs`.
498
- - [#1881](https://github.com/iTwin/iTwinUI/pull/1881): `Input`'s and `Textarea`'s start/end inline padding when inside `InputWithDecorations` is now collapsed when it is preceded/followed by a `InputWithDecorations.Icon` or `InputWithDecorations.Button`. This prevents unnecessary empty space in `InputWithDecorations`.
499
- - [#1888](https://github.com/iTwin/iTwinUI/pull/1888): The expandable `SearchBox` now shows a regular-sized button in the collapsed state. Previously, it used to incorrectly be a square button.
500
- - [#1828](https://github.com/iTwin/iTwinUI/pull/1828): `SearchBox.Icon` no longer has the same width as `SearchBox.Button`. Its width also no longer changes with the `SearchBox` size. This is because its padding behavior is now similar to `Icon`'s padding behavior, where it uses a constant padding.
501
- - [#1897](https://github.com/iTwin/iTwinUI/pull/1897): All instances of `<SvgStatusError>` have been updated to reflect the new octagon shape from the latest version of iTwinUI-icons. Some components affected: `Icon`, `Alert`, `Toast`, `StatusMessage`.
502
- - [#1888](https://github.com/iTwin/iTwinUI/pull/1888): The expandable `SearchBox`'s animation/transition between the expanded and the collapsed states is now removed.
503
-
504
- ### Patch Changes
505
-
506
- - [#1865](https://github.com/iTwin/iTwinUI/pull/1865): `Dialog`/`Modal` will no longer keep its wrapper in the DOM when `isOpen=false`.
507
- - [#1889](https://github.com/iTwin/iTwinUI/pull/1889): `Dialog`/`Modal`'s close button will now be visually aligned based on the icon inside it, excluding the padding.
508
- - [#1906](https://github.com/iTwin/iTwinUI/pull/1906): `Dialog`/`Modal` title will now wrap to multiple lines instead of getting clipped.
509
- - [#1873](https://github.com/iTwin/iTwinUI/pull/1873): Fixed `Tab` stripe size and position calculation that sometimes used to cause unnecessary overflow and thus cause a horizontal scrollbar in `TabList`.
510
- - [#1884](https://github.com/iTwin/iTwinUI/pull/1884): Fixed a bug that caused the `Tabs.Wrapper` to change size dependent on which `Tabs.Tab` was active.
511
- - [#1901](https://github.com/iTwin/iTwinUI/pull/1901): Fixed a bug in `Table` where `initialState.columnOrder` was not being respected.
512
- - [#1894](https://github.com/iTwin/iTwinUI/pull/1894): All instances of `box-sizing: content-box` have been reinforced with `!important` to prevent accidental overrides from application styles.
513
- - [#1828](https://github.com/iTwin/iTwinUI/pull/1828): `InputWithDecorations` now has an inline padding of `1px` to account for the `1px` border's inline edges. This prevents content that touches the border's inline edges from being overlapped by the border by `1px`. Slightly modified expandable `SearchBox` styles to account for the new padding.
514
-
515
- ## 3.5.0
516
-
517
- ### Minor Changes
518
-
519
- - [#1844](https://github.com/iTwin/iTwinUI/pull/1844): Interactive elements will now be correctly focused on Safari 17+.
520
- - [#1860](https://github.com/iTwin/iTwinUI/pull/1860): `ThemeProvider` will now automatically specify an `accent-color` to match the current theme.
521
- - [#1856](https://github.com/iTwin/iTwinUI/pull/1856): Added new `isExternal` prop to `Anchor`. When true, displays an icon at the end of link text.
522
- - [#1858](https://github.com/iTwin/iTwinUI/pull/1858): `ToggleSwitch` will now show a checkmark icon by default in the checked state. `SvgCheckmark` no longer needs to be manually passed into the `icon` prop.
523
- - [#1862](https://github.com/iTwin/iTwinUI/pull/1862): `Select` will now correctly reset its `value` if `null` is passed.
524
- - [#1864](https://github.com/iTwin/iTwinUI/pull/1864): Added a new `underline` prop to `Anchor`. When true, anchors will be underlined by default instead of only on hover.
525
- - [#1856](https://github.com/iTwin/iTwinUI/pull/1856): `Anchor` links that open in a new tab will now add a visually-hidden warning for screen-reader users. This can be combined with the `isExternal` prop, which adds a visual indication for sighted users.
526
- - [#1859](https://github.com/iTwin/iTwinUI/pull/1859): `ProgressRadial` and `ProgressLinear` will now include a visually hidden "Loading" text alternative for non-sighted users.
527
-
528
- ### Patch Changes
529
-
530
- - [#1845](https://github.com/iTwin/iTwinUI/pull/1845): Removed `:focus-visible` fallback styles for older browsers.
531
- - [#1861](https://github.com/iTwin/iTwinUI/pull/1861): Added `width`/`height` attributes to inlined svgs, to make them more resilient in case CSS fails.
532
-
533
- ## 3.4.2
534
-
535
- ### Patch Changes
536
-
537
- - [#1848](https://github.com/iTwin/iTwinUI/pull/1848): Removed `jsdom` from direct dependencies.
538
-
539
- ## 3.4.1
540
-
541
- ### Patch Changes
542
-
543
- - [#1835](https://github.com/iTwin/iTwinUI/pull/1835): Fixed the bug where `Dialog`/`Modal` was invisible on the first render with `isOpen={true}`.
544
- - [#1836](https://github.com/iTwin/iTwinUI/pull/1836): Updated Dialog resizer positioning to protrude outside the dialog.
545
-
546
- ## 3.4.0
547
-
548
- ### Minor Changes
549
-
550
- - [#1824](https://github.com/iTwin/iTwinUI/pull/1824): `LinkAction` will now automatically render a `<button>` by default if no `href` is passed.
551
- - [#1815](https://github.com/iTwin/iTwinUI/pull/1815): Removed unnecessary `Tag` styles, and added support for tags to be used as `<button>` elements.
552
- - [#1813](https://github.com/iTwin/iTwinUI/pull/1813): Added warning status for `ProgressRadial`/`ProgressLinear`
553
- - [#1815](https://github.com/iTwin/iTwinUI/pull/1815): Added `labelProps` and `removeButtonProps` to `Tag` to allow customizing internal parts.
554
- - [#1821](https://github.com/iTwin/iTwinUI/pull/1821): Added new props to `Modal` to allow customizing inner DOM elements: `wrapperProps`, `backdropProps`, `titleBarProps`.
555
- - [#1822](https://github.com/iTwin/iTwinUI/pull/1822): Added new `showDatesOutsideMonth` prop to `DatePicker`. Currently defaults to `true` but is recommended to be set to `false`.
556
-
557
- ## 3.3.4
558
-
559
- ### Patch Changes
560
-
561
- - [#1816](https://github.com/iTwin/iTwinUI/pull/1816): Fixed an issue where `Table` was showing a dummy vertical scrollbar track inside the table header in Chromium 121 + Windows.
562
- - [#1810](https://github.com/iTwin/iTwinUI/pull/1810): Fixed `Surface.Body` not being visually aligned with `Surface.Header` depending on scrollbar visibility.
563
- - [#1776](https://github.com/iTwin/iTwinUI/pull/1776): Fixed broken animation in full-page `Modal` and `Dialog`.
564
- - [#1809](https://github.com/iTwin/iTwinUI/pull/1809): Fixed `Table` bug where the table-body had an incorrect horizontal scrollbar/overflow when the `Table`'s width is reduced below the initial width.
565
-
566
- ## 3.3.3
567
-
568
- ### Patch Changes
569
-
570
- - [#1800](https://github.com/iTwin/iTwinUI/pull/1800): Updated internal usage of `ResizeObserver` to prevent throwing a benign "ResizeObserver loop limit exceeded" error in React 17 apps. Some affected components: `ButtonGroup`, `Tabs`, `Table`, `Tree`, `Breadcrumbs`, etc.
571
- - [#1807](https://github.com/iTwin/iTwinUI/pull/1807): iTwinUI will now also check for `vitest` and `mocha` (in addition to `jest`) before running any code that would cause problems in these test runners.
572
-
573
- ## 3.3.2
574
-
575
- ### Patch Changes
576
-
577
- - [#1799](https://github.com/iTwin/iTwinUI/pull/1799): Fixed `Table` bug where columns were not resizable when their widths were specified as strings (E.g. `"20%"`, `"50ch"`).
578
-
579
- ## 3.3.1
580
-
581
- ### Patch Changes
582
-
583
- - [#1796](https://github.com/iTwin/iTwinUI/pull/1796): Fixed a visual issue in `Table` where column headers were not aligned with rows when using expandable `subRows`.
584
- - [#1795](https://github.com/iTwin/iTwinUI/pull/1795): Fixed blurring and resizing issues in Dialog/Modal by removing `overflow: hidden` and inline `transform` styles.
585
-
586
- ## 3.3.0
587
-
588
- ### Minor Changes
589
-
590
- - [#1753](https://github.com/iTwin/iTwinUI/pull/1753): `LabeledInput` and `LabeledTextarea` have been slightly reworked to fix alignment and consistency issues when used with `svgIcon`.
591
- - [#1777](https://github.com/iTwin/iTwinUI/pull/1777): `InputGrid` will now attempt to automatically associate labels, inputs and status messages with each other, in the event that they haven't been explicitly associated.
592
- - [#1777](https://github.com/iTwin/iTwinUI/pull/1777): The `message` passed to `LabeledInput`, `LabeledTextarea`, `LabeledSelect` and `ComboBox` will now be associated with the input using `aria-describedby` for better accessibility.
593
- - [#1794](https://github.com/iTwin/iTwinUI/pull/1794): `ExpandableBlock` now internally uses `LinkAction` for the trigger element. This slightly improves the accessibility, and opens up the possibility of including secondary actions.
594
- - [#1786](https://github.com/iTwin/iTwinUI/pull/1786): The `portal.to` prop in floating elements now also accepts `null | undefined` which acts identically to the default prop behavior (i.e. as if `portal` was not passed). Components affected: `Dialog`, `DropdownMenu`, `Modal`, `Popover`, `SplitButton`, and `Tooltip`.
595
- - [#1791](https://github.com/iTwin/iTwinUI/pull/1791): Added new `ListItem.Action` component for rendering links inside `ListItem`s while ensuring that clicking anywhere on the list item triggers the link. This component is a wrapper over the existing `LinkAction` component.
596
- - [#1780](https://github.com/iTwin/iTwinUI/pull/1780): `ComboBox` now forwards its `ref`.
597
- - [#1753](https://github.com/iTwin/iTwinUI/pull/1753): `StatusMessage` now renders no status icon if `startIcon === null`.
598
-
599
- ### Patch Changes
600
-
601
- - [#1783](https://github.com/iTwin/iTwinUI/pull/1783): Fixed a Firefox-specific bug where focus outlines were not appearing correctly around menu items inside `ComboBox`.
602
- - [#1792](https://github.com/iTwin/iTwinUI/pull/1792): Fixed an issue in `Table` where the "select all" checkbox was disabled if all top-level rows were disabled. The logic has been updated to also consider sub-rows.
603
- - [#1788](https://github.com/iTwin/iTwinUI/pull/1788): `LinkAction` will no longer override styles from other components (such as `Anchor`).
604
- - [#1753](https://github.com/iTwin/iTwinUI/pull/1753): Deprecated `svgIcon` in `LabeledSelect` in favor of passing `<StatusMessage startIcon={svgIcon} />` to the `message` prop.
605
- - [#1787](https://github.com/iTwin/iTwinUI/pull/1787): Button, radial progress indicator, & select icons now use the correct icon variable color fill.
606
-
607
- ## 3.2.4
608
-
609
- ### Patch Changes
610
-
611
- - [#1774](https://github.com/iTwin/iTwinUI/pull/1774): Fixed `Select` and `LabeledSelect` to correctly handle generic types.
612
-
613
- ## 3.2.3
614
-
615
- ### Patch Changes
616
-
617
- - [#1772](https://github.com/iTwin/iTwinUI/pull/1772): Added `package.json` to exports map.
618
-
619
- ## 3.2.2
620
-
621
- ### Patch Changes
622
-
623
- - [#1763](https://github.com/iTwin/iTwinUI/pull/1763): Reduced bundle size by optimizing how CSS modules are handled internally.
624
-
625
- ## 3.2.1
626
-
627
- ### Patch Changes
628
-
629
- - [#1760](https://github.com/iTwin/iTwinUI/pull/1760): Fixed `ComboBox` to correctly merge `inputProps.style` with internal styles.
630
-
631
- ## 3.2.0
632
-
633
- ### Minor Changes
634
-
635
- - [#1734](https://github.com/iTwin/iTwinUI/pull/1734): `ThemeProvider` will now attempt to automatically load `styles.css` if using `theme="inherit"` (or `includeCss` if using other themes).
636
-
637
- While applications are still advised to manually import `styles.css`, this new behavior is intended to ease the migration for applications that may be using an older version of iTwinUI but want to consume dependencies that rely on iTwinUI v3.
638
-
639
- - [#1744](https://github.com/iTwin/iTwinUI/pull/1744): `@itwin/itwinui-illustrations-react` has been made a direct dependency again, to avoid issues with bundlers attempting to bundle it even if `ErrorPage` is not used anywhere.
640
-
641
- ### Patch Changes
642
-
643
- - [#1742](https://github.com/iTwin/iTwinUI/pull/1742): Fixed `ErrorPage` to correctly lazy import from `@itwin/itwinui-illustrations-react`.
644
-
645
- ## 3.1.2
646
-
647
- ### Patch Changes
648
-
649
- - [#1740](https://github.com/iTwin/iTwinUI/pull/1740): Fixed `Select` and `Slider` to allow passing refs into `triggerProps` and `thumbProps` respectively.
650
-
651
- ## 3.1.1
652
-
653
- ### Patch Changes
654
-
655
- - [#1738](https://github.com/iTwin/iTwinUI/pull/1738): Added missing `sideEffects` to prevent tree-shaking `styles.css` in webpack.
656
-
657
- ## 3.1.0
658
-
659
- ### Minor Changes
660
-
661
- - [#1731](https://github.com/iTwin/iTwinUI/pull/1731): ThemeProvider will now correctly inherit theme changes from a v2 ancestor.
662
- - [#1710](https://github.com/iTwin/iTwinUI/pull/1710): Added new `middleware` and `positionReference` props to `Popover` for more control over the positioning logic.
663
- - [#1676](https://github.com/iTwin/iTwinUI/pull/1676): Added `size="small` prop to `Tree`, and decreased indentations on default size tree.
664
- - [#1707](https://github.com/iTwin/iTwinUI/pull/1707): `FileUpload`'s `onFileDropped` prop will now expose the underlying drop event as the second argument. This can be useful for accessing information about the directory structure.
665
- - [#1709](https://github.com/iTwin/iTwinUI/pull/1709): `IconButton`s inside a vertical `ButtonGroup` will now show tooltips on the right side by default, to avoid obscuring adjacent buttons in the group. The behavior of these tooltips can also be customized using the new `labelProps` prop, which can contain `labelProps.placement`, etc.
666
-
667
- ### Patch Changes
668
-
669
- - [#1733](https://github.com/iTwin/iTwinUI/pull/1733): Fixed an overflow-related layout shift in vertical `Tabs`.
670
- - [#1725](https://github.com/iTwin/iTwinUI/pull/1725): Table is now scrollable horizontally even when no rows are present.
671
-
672
- ## 3.0.11
673
-
674
- ### Patch Changes
675
-
676
- - [#1716](https://github.com/iTwin/iTwinUI/pull/1716): Truncate the `select-tag` when only one tag is present in `select-tag-container`
677
-
678
- ## 3.0.10
679
-
680
- ### Patch Changes
681
-
682
- - [#1711](https://github.com/iTwin/iTwinUI/pull/1711): Fixed an issue with `Tree` nodes not taking up the full width.
683
-
684
- ## 3.0.9
685
-
686
- ### Patch Changes
687
-
688
- - [#1705](https://github.com/iTwin/iTwinUI/pull/1705): Fixed a hydration mismatch warning due to `id` in `ComboBox` and `Carousel`.
689
-
690
- ## 3.0.8
691
-
692
- ### Patch Changes
693
-
694
- - [#1702](https://github.com/iTwin/iTwinUI/pull/1702): Fixed `Select` so that it works in uncontrolled mode (without `value`/`onChange` props).
695
-
696
- ## 3.0.7
697
-
698
- ### Patch Changes
699
-
700
- - [#1700](https://github.com/iTwin/iTwinUI/pull/1700): Fixed an issue where Table was sometimes triggering sort after filtering.
701
-
702
- ## 3.0.6
703
-
704
- ### Patch Changes
705
-
706
- - [#1693](https://github.com/iTwin/iTwinUI/pull/1693): Fixed an issue where Dialog content was appearing blurred on Windows.
707
-
708
- ## 3.0.5
709
-
710
- ### Patch Changes
711
-
712
- - [#1683](https://github.com/iTwin/iTwinUI/pull/1683): Improved `ExpandableBlock` animation so that it doesn't push content outside its bounds.
713
- - [#1687](https://github.com/iTwin/iTwinUI/pull/1687): Fixed `Overlay` component to correctly add polyfill for `inert`.
714
-
715
- ## 3.0.4
716
-
717
- ### Patch Changes
718
-
719
- - [#1682](https://github.com/iTwin/iTwinUI/pull/1682): Memoize `useToaster`'s return value so that it can be more reliably used in dependency arrays.
720
- - [#1681](https://github.com/iTwin/iTwinUI/pull/1681): Fixed an issue where `Select`'s menu was being positioned incorrectly after its first render.
721
-
722
- ## 3.0.3
723
-
724
- ### Patch Changes
725
-
726
- - [#1660](https://github.com/iTwin/iTwinUI/pull/1660): Made Table's Ctrl+Shift click implementation more consistent with Windows Explorer's implementation.
727
- - [#1660](https://github.com/iTwin/iTwinUI/pull/1660): Fixed occasional mismatch between the Table's visually selected rows and Table state's selected rows
728
-
729
- ## 3.0.2
730
-
731
- ### Patch Changes
732
-
733
- - [#1663](https://github.com/iTwin/iTwinUI/pull/1663): Fixed `ThemeProvider` to correctly inherit `highContrast` option when using `theme="inherit"`.
734
-
735
- ## 3.0.1
736
-
737
- ### Patch Changes
738
-
739
- - [#1661](https://github.com/iTwin/iTwinUI/pull/1661): Fixed Select re-rendering infinitely when used with React 17.
740
-
741
- ## 3.0.0
742
-
743
- Welcome to the v3 release of `@itwin/itwinui-react`. 🎉
744
-
745
- This release includes a few breaking changes which have been briefly listed below. For more details, see the [v3 migration guide](https://github.com/iTwin/iTwinUI/wiki/iTwinUI-react-v3-migration-guide).
746
-
747
- ### Major Changes
748
-
749
- - [#1302](https://github.com/iTwin/iTwinUI/pull/1302): The dependencies on `@itwin/itwinui-css` and `@itwin/itwinui-variable` have been removed. This means `@itwin/itwinui-react` will expose its own stylesheet.
750
- - [#1322](https://github.com/iTwin/iTwinUI/pull/1322): All css imports within components have been removed. `@itwin/itwinui-react/styles.css` must now be manually imported at the entrypoint.
751
- - [#1302](https://github.com/iTwin/iTwinUI/pull/1302): All elements have had their class names changed to prevent conflict with older versions. It is strongly recommended to switch these internal classes with your own classes or data attributes.
752
- - [#1389](https://github.com/iTwin/iTwinUI/pull/1389): iTwinUI now correctly supports both ESM and CJS environments.
753
- - [#1583](https://github.com/iTwin/iTwinUI/pull/1583): Bumped minimum required react version to 17. If you're still on react 16, please update to react 17 (which has no breaking changes).
754
- - [#1514](https://github.com/iTwin/iTwinUI/pull/1514): Table now has better type support. Types must now be imported from `@itwin/itwinui-react/react-table` instead of from `@types/react-table`.
755
- - [#1346](https://github.com/iTwin/iTwinUI/pull/1346): The build now targets `es2020` instead of `es2018`.
756
- - [#1311](https://github.com/iTwin/iTwinUI/pull/1311), [#1506](https://github.com/iTwin/iTwinUI/pull/1506): Replaced `tippy.js` with `floating-ui` in all popover-based components. While the basic usage is unchanged, all advanced props from tippy are no longer available. Components affected: Select, ComboBox, DropdownMenu, DropdownButton, SplitButton.
757
- - [#1351](https://github.com/iTwin/iTwinUI/pull/1351): `toaster` import has been removed and replaced with `useToaster` which returns a toaster object with the same API.
758
- - [#1265](https://github.com/iTwin/iTwinUI/pull/1265): Removed the deprecated `useTheme` hook. `<ThemeProvider>` is now always required to be wrapped around all iTwinUI components.
759
- - [#1433](https://github.com/iTwin/iTwinUI/pull/1433): Updated `exports` to prevent importing internal utilities.
760
- - [#1298](https://github.com/iTwin/iTwinUI/pull/1298): `Props` types will no longer be exported for any component. Use `React.ComponentProps` instead.
761
- - [#1400](https://github.com/iTwin/iTwinUI/pull/1400): `ErrorPage` will now dynamically import illustrations. The peer dependency on `@itwin/itwinui-illustrations-react` will need to be manually installed if using `ErrorPage`.
762
- - [#1478](https://github.com/iTwin/iTwinUI/pull/1478): ThemeProvider now defaults the `theme` value to `"inherit"` and falls back to `"light"` there is no parent theme found. Also the inherit behavior has been made more resilient for cases where react context fails.
763
- - [#1269](https://github.com/iTwin/iTwinUI/pull/1269): All dialog variants have `flex` applied by default. This means the content should be wrapped with `Dialog.Content` or `ModalContent` for optimal layout.
764
- - [#1300](https://github.com/iTwin/iTwinUI/pull/1300): `modalRootId` and `ownerDocument` props have been removed from `Modal`, in favor of the new `portal` prop (also available in `Dialog`).
765
- - [#1461](https://github.com/iTwin/iTwinUI/pull/1461): Changed disabled button behavior to make them focusable and use `aria-disabled` instead of `disabled` attribute.
766
- - [#1565](https://github.com/iTwin/iTwinUI/pull/1565): Removed `Menu` component. Use `DropdownMenu` instead.
767
- - [#1406](https://github.com/iTwin/iTwinUI/pull/1406): Removed `setFocus` prop from Checkbox, ColorPicker, ComboBox, Input, LabeledInput, LabeledTextarea, Radio, RadioTile, Select, Slider, ToggleSwitch. Instead, `ref` can be used to focus the element.
768
- - [#1548](https://github.com/iTwin/iTwinUI/pull/1548): Tabs are now always scrollable. Deprecated `overflowOptions` prop.
769
- - [#1370](https://github.com/iTwin/iTwinUI/pull/1370): ProgressLinear has been refactored to be a single `<div>`.
770
- - [#1356](https://github.com/iTwin/iTwinUI/pull/1356): ProgressRadial has been refactored to be a single `<div>` instead of using a nested svg. Also it is recommended to explicitly set `size` when using in other components.
771
- - [#1544](https://github.com/iTwin/iTwinUI/pull/1544): Removed `iconDisplayStyle` prop from `LabeledInput` and `LabeledTextarea` components. `svgIcon` is now added inline. Users must use `StatusMessage` to add custom icon to the message.
772
- - [#1626](https://github.com/iTwin/iTwinUI/pull/1626): Improved carousel accessibility and changed the markup so that the dots are present before the slides.
773
- - [#1278](https://github.com/iTwin/iTwinUI/pull/1278): Adjusted calculations in ButtonGroup's `overflowButton` callback, so that it respects `overflowPlacement` and considers the presence of the overflowButton itself.
774
- - [#1355](https://github.com/iTwin/iTwinUI/pull/1355): Removed `inputStyle` and `inputClassName` props from `LabeledInput`; style and className props are being passed down to input.
775
- - [#1355](https://github.com/iTwin/iTwinUI/pull/1355): Removed `selectStyle` and `selectClassName` props from `LabeledSelect`; style and className props are being passed down to textarea.
776
- - [#1355](https://github.com/iTwin/iTwinUI/pull/1355): Removed `textareaStyle` and `textareaClassName` props from `LabeledTextarea`; style and className props are being passed down to textarea.
777
- - [#1371](https://github.com/iTwin/iTwinUI/pull/1371): `Checkbox`'s top-level `className` and `style` props will now always be applied on the checkbox input element instead of conditionally being applied on the wrapper.
778
- - [#1409](https://github.com/iTwin/iTwinUI/pull/1409): `RadioTile`'s top-level `className` and `style` props will now be applied on the `<input>` element instead of the wrapper.
779
- - [#1458](https://github.com/iTwin/iTwinUI/pull/1458): `SideNavButton`'s top-level props (className, style, etc) are now passed to the button instead of to the wrapper.
780
- - [#1435](https://github.com/iTwin/iTwinUI/pull/1435): `SplitButton`'s top-level props (className, style, etc) are now passed to the button instead of the component wrapper.
781
- - [#1304](https://github.com/iTwin/iTwinUI/pull/1304): Instead of cloning passed icons to set classes on them, the classes will now be set on a wrapping element. Affected components: `Header`, `Select`, `MenuItem`, `RadioTile`, `Tabs`, `Tile`, `ToggleSwitch`, `TreeNode`, `InputContainer` (and all input variants).
782
- - [#1469](https://github.com/iTwin/iTwinUI/pull/1469): Updated internal DOM structure in Slider.
783
- - [#1388](https://github.com/iTwin/iTwinUI/pull/1388): Removed previously-deprecated `HorizontalTabs` and `VerticalTabs` (replaced by `orientation` prop in `Tabs`).
784
- - [#1383](https://github.com/iTwin/iTwinUI/pull/1383): Removed previously-deprecated `UserIcon` and `UserIconGroup` components. Also removed `userIcon` prop from `Header`.
785
- - [#1296](https://github.com/iTwin/iTwinUI/pull/1296): Removed previously-deprecated typography components (`Body`, `Headline`, `Leading`, `Small`, `Subheading`, `Title`) which have been replaced by `Text`.
786
- - [#1384](https://github.com/iTwin/iTwinUI/pull/1384): Removed previously-deprecated `Wizard` component (replaced by `Stepper` and `WorkflowDiagram`).
787
- - [#1295](https://github.com/iTwin/iTwinUI/pull/1295): Deprecated MenuItem's `icon` and `badge` props in favor of new `startIcon` and `endIcon` props. Also affects `Select` and `ComboBox` options.
788
- - [#1330](https://github.com/iTwin/iTwinUI/pull/1330): Deprecated `FileUploadTemplate`. Removed all of its references.
789
-
790
- ### Minor Changes
791
-
792
- - [#1298](https://github.com/iTwin/iTwinUI/pull/1298): Most components are now polymorphic and forward their rest props and ref.
793
- - [#1506](https://github.com/iTwin/iTwinUI/pull/1506): Added new `Popover` component for public use.
794
- - [#1323](https://github.com/iTwin/iTwinUI/pull/1323): Added `placement` prop to `Dialog` to allow placing it at one of the corners.
795
- - [#1523](https://github.com/iTwin/iTwinUI/pull/1523): Added `ariaStrategy` prop to Tooltip. Can be used to change how the tooltip is associated with the trigger element.
796
- - [#1477](https://github.com/iTwin/iTwinUI/pull/1477): Added a new `portalContainer` prop to `ThemeProvider`. When specified, all floating elements (tooltips, toasts, dialogs) under the ThemeProvider will read this prop from context and portal into it.
797
- - [#1362](https://github.com/iTwin/iTwinUI/pull/1362): All elements under the root will now get a default focus styling matching `--iui-color-border-accent`.
798
- - [#1373](https://github.com/iTwin/iTwinUI/pull/1373): Converted all physical CSS properties to their logical equivalents.
799
- - [#1328](https://github.com/iTwin/iTwinUI/pull/1328): Added new `Overlay` component with customizable subcomponents: `Overlay.Wrapper`, `Overlay.HiddenContent`, `Overlay.Overlay`.
800
- - [#1355](https://github.com/iTwin/iTwinUI/pull/1355): Added `status` prop to `Input`, `Textarea` and `Select`.
801
- - [#1355](https://github.com/iTwin/iTwinUI/pull/1355): Added two new components for building complex input layouts.
802
-
803
- - `InputGrid` for the "outer" layout (label, inputs and statusMessage)
804
- - `InputWithDecorations` for the "inner" layout (start icon/button, end icon/button)
805
-
806
- `LabeledInput`, `LabeledSelect`, `LabeledTextarea` and table `DatePickerInput` have been updated to make use of these new components internally.
807
-
808
- - [#1531](https://github.com/iTwin/iTwinUI/pull/1531): Selected options in Select/ComboBox will now have a checkmark.
809
- - [#1573](https://github.com/iTwin/iTwinUI/pull/1573): Added `applyBackground` prop to ColorPicker and DatePicker.
810
- - [#1321](https://github.com/iTwin/iTwinUI/pull/1321): Added `disabled` prop to ExpandableBlock component. When activated, it triggers the "disabled" CSS styling for the ExpandableBlock and disables user interaction with it.
811
- - [#1355](https://github.com/iTwin/iTwinUI/pull/1355): Added new `padded` prop to `Icon`.
812
- - [#1457](https://github.com/iTwin/iTwinUI/pull/1457): Added `htmlName` prop to the `HeaderButton` subcomponent which handles the native `name` attribute in `<button>`.
813
- - [#1548](https://github.com/iTwin/iTwinUI/pull/1548): Added composition API to `Tabs`. Subcomponents: Wrapper, TabList, Tab, TabLabel, TabIcon, TabDescription, Actions, Panel.
814
- - [#1255](https://github.com/iTwin/iTwinUI/pull/1255): Updated `Tile` component to allow composition of customizable subcomponents: `<Tile.Wrapper/>`, `<Tile.Name/>`, `<Tile.NameIcon/>`, `<Tile.NameLabel/>`, `<Tile.ThumbnailArea/>`, `<Tile.ThumbnailPicture/>`, `<Tile.BadgeContainer/>`, `<Tile.TypeIndicator/>`, `<Tile.QuickAction/>`, `<Tile.ContentArea/>`, `<Tile.Description/>`, `<Tile.MoreOptions/>`, `<Tile.Metadata/>`, `<Tile.Buttons/>`.
815
- - [#1073](https://github.com/iTwin/iTwinUI/pull/1073): Added new `TransferList` component which is used to move one or more items between lists. Added the following subcomponents: `TransferList.ListWrapper`, `TransferList.ListboxWrapper`, `TransferList.ListboxLabel`, `TransferList.Listbox`, `TransferList.Item`, and `TransferList.Toolbar`
816
- - [#1247](https://github.com/iTwin/iTwinUI/pull/1247): Alert can now be used through customizable subcomponents. The `onClose`, `clickableText`, and `clickableTextProps` props have been deprecated.
817
- - [#1419](https://github.com/iTwin/iTwinUI/pull/1419): Added `htmlSize` prop to the `Input` component which handles the native `size` attribute in `<input>`.
818
- - [#1369](https://github.com/iTwin/iTwinUI/pull/1369): Added new `Breadcrumbs.Item` subcomponent to use within `Breadcrumbs`. Directly passing `<a>`/`<Button>`/`<span>` as children is still supported but is deprecated.
819
- - [#1403](https://github.com/iTwin/iTwinUI/pull/1403): Updated `DropdownMenu` to additionally accept list of JSX elements or a JSX fragment for `menuItems` prop.
820
- - [#1610](https://github.com/iTwin/iTwinUI/pull/1610): Added `border` prop to `Surface`.
821
- - [#1354](https://github.com/iTwin/iTwinUI/pull/1354): Updated `ExpandableBlock` to support customizable subcomponents: `<ExpandableBlock.Wrapper/>`, `<ExpandableBlock.Trigger/>`, `<ExpandableBlock.ExpandIcon/>`, `<ExpandableBlock.LabelArea/>`, `<ExpandableBlock.Title/>`, `<ExpandableBlock.Caption/>`, `<ExpandableBlock.EndIcon/>`, `<ExpandableBlock.Content/>`
822
- - [#1435](https://github.com/iTwin/iTwinUI/pull/1435), [#1430](https://github.com/iTwin/iTwinUI/pull/1430), [#1510](https://github.com/iTwin/iTwinUI/pull/1510), [#1437](https://github.com/iTwin/iTwinUI/pull/1437), [#1466](https://github.com/iTwin/iTwinUI/pull/1466), [#1567](https://github.com/iTwin/iTwinUI/pull/1567), [#1440](https://github.com/iTwin/iTwinUI/pull/1440), [#1409](https://github.com/iTwin/iTwinUI/pull/1409), [#1355](https://github.com/iTwin/iTwinUI/pull/1355), [#1371](https://github.com/iTwin/iTwinUI/pull/1371), […]: Added new props to various components to allow passing custom class names for every DOM element.
823
-
824
- ### Patch Changes
825
-
826
- - [#1605](https://github.com/iTwin/iTwinUI/pull/1605): Added `'use client'` directive for React Server Components support.
827
- - [#1533](https://github.com/iTwin/iTwinUI/pull/1533): Fixed missing accessible name in SplitButton.
828
- - [#1649](https://github.com/iTwin/iTwinUI/pull/1649): ThemeProvider will now inherit `portalContainer` if also inheriting theme.
829
- - [#1446](https://github.com/iTwin/iTwinUI/pull/1446): Avatar has been refactored to be a single `<span>`. The colors have been updated to pass AAA contrast ratio.
830
- - [#1354](https://github.com/iTwin/iTwinUI/pull/1354): Expandable block animation now uses pure css instead of javascript for transitioning.
831
- - [#1609](https://github.com/iTwin/iTwinUI/pull/1609): Adjusted padding value for `Surface.Body`.
832
- - [#1632](https://github.com/iTwin/iTwinUI/pull/1632): Adjusted gap between adjacent icons in searchbox.
833
- - [#1492](https://github.com/iTwin/iTwinUI/pull/1492): Fixed `aria-owns` syntax for `TreeNode`
834
- - [#1618](https://github.com/iTwin/iTwinUI/pull/1618): Improved accessibility of ColorPicker/ColorPalette/ColorSwatch.
835
- - [#1389](https://github.com/iTwin/iTwinUI/pull/1389): The build output is now more readable, using a combination of `prettier` for formatting and `tslib` for import helpers.
836
- - [#1360](https://github.com/iTwin/iTwinUI/pull/1360): The `color-scheme` property will now be correctly set for dark theme, resulting in better theming of built-in html elements.
837
- - [#1495](https://github.com/iTwin/iTwinUI/pull/1495): Added accessible name to dropdown menu button in HeaderSplitButton.
838
- - [#1486](https://github.com/iTwin/iTwinUI/pull/1486): DatePicker date tables now have accessible labels.
839
- - [#1496](https://github.com/iTwin/iTwinUI/pull/1496): Added accessible button name to SideNavigation expand button.
840
- - [#1499](https://github.com/iTwin/iTwinUI/pull/1499): Removed special handling of iPhone notch in Header and SideNavigation.
841
- - [#1505](https://github.com/iTwin/iTwinUI/pull/1505): Gave accessible label to the sub-row toggle in <Table>.
842
- - [#1397](https://github.com/iTwin/iTwinUI/pull/1397): Avatar will no longer incorrectly set aria-label on the status dot.
843
- - [#1404](https://github.com/iTwin/iTwinUI/pull/1404): `aria-orientation` attribute removed from ButtonGroup to meet accessibility requirements.
844
- - [#1420](https://github.com/iTwin/iTwinUI/pull/1420): RadioTile DOM has been simplified to remove a content wrapper `div`.
845
-
846
- ## 2.x
847
-
848
- For any changes prior to 3.0.0, check out the [2.X changelog](https://github.com/iTwin/iTwinUI/blob/legacy/v2/packages/itwinui-react/CHANGELOG.md).