@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
@@ -1,367 +0,0 @@
1
- 'use strict';
2
- Object.defineProperty(exports, '__esModule', {
3
- value: true,
4
- });
5
- Object.defineProperty(exports, 'useResizeColumns', {
6
- enumerable: true,
7
- get: function () {
8
- return useResizeColumns;
9
- },
10
- });
11
- const _reacttable = require('react-table');
12
- const useResizeColumns = (ownerDocument) => (hooks) => {
13
- hooks.getResizerProps = [defaultGetResizerProps(ownerDocument)];
14
- hooks.stateReducers.push(reducer);
15
- hooks.useInstanceBeforeDimensions.push(useInstanceBeforeDimensions);
16
- };
17
- const isTouchEvent = (event) => 'touchstart' === event.type;
18
- const defaultGetResizerProps =
19
- (ownerDocument) =>
20
- (props, { instance, header, nextHeader }) => {
21
- let { dispatch } = instance;
22
- let onResizeStart = (e, header) => {
23
- if (isTouchEvent(e) && e.touches && e.touches.length > 1) return;
24
- let headerIdWidths = getLeafHeaders(header).map((d) => [
25
- d.id,
26
- getHeaderWidth(d),
27
- ]);
28
- let nextHeaderIdWidths = nextHeader
29
- ? getLeafHeaders(nextHeader).map((d) => [d.id, getHeaderWidth(d)])
30
- : [];
31
- let clientX = isTouchEvent(e)
32
- ? Math.round(e.touches[0].clientX)
33
- : e.clientX;
34
- let dispatchMove = (clientXPos) =>
35
- dispatch({
36
- type: _reacttable.actions.columnResizing,
37
- clientX: clientXPos,
38
- });
39
- let dispatchEnd = () =>
40
- dispatch({
41
- type: _reacttable.actions.columnDoneResizing,
42
- });
43
- let handlersAndEvents = {
44
- mouse: {
45
- moveEvent: 'mousemove',
46
- moveHandler: (e) => dispatchMove(e.clientX),
47
- upEvent: 'mouseup',
48
- upHandler: () => {
49
- ownerDocument.current?.removeEventListener(
50
- 'mousemove',
51
- handlersAndEvents.mouse.moveHandler,
52
- );
53
- ownerDocument.current?.removeEventListener(
54
- 'mouseup',
55
- handlersAndEvents.mouse.upHandler,
56
- );
57
- ownerDocument.current?.removeEventListener(
58
- 'mouseleave',
59
- handlersAndEvents.mouse.upHandler,
60
- );
61
- dispatchEnd();
62
- },
63
- },
64
- touch: {
65
- moveEvent: 'touchmove',
66
- moveHandler: (e) => {
67
- if (e.cancelable) {
68
- e.preventDefault();
69
- e.stopPropagation();
70
- }
71
- dispatchMove(e.touches[0].clientX);
72
- },
73
- upEvent: 'touchend',
74
- upHandler: () => {
75
- ownerDocument.current?.removeEventListener(
76
- handlersAndEvents.touch.moveEvent,
77
- handlersAndEvents.touch.moveHandler,
78
- );
79
- ownerDocument.current?.removeEventListener(
80
- handlersAndEvents.touch.upEvent,
81
- handlersAndEvents.touch.moveHandler,
82
- );
83
- dispatchEnd();
84
- },
85
- },
86
- };
87
- let events = isTouchEvent(e)
88
- ? handlersAndEvents.touch
89
- : handlersAndEvents.mouse;
90
- let passiveIfSupported = !!passiveEventSupported() && {
91
- passive: false,
92
- };
93
- ownerDocument.current?.addEventListener(
94
- events.moveEvent,
95
- events.moveHandler,
96
- passiveIfSupported,
97
- );
98
- ownerDocument.current?.addEventListener(
99
- events.upEvent,
100
- events.upHandler,
101
- passiveIfSupported,
102
- );
103
- if (!isTouchEvent(e))
104
- ownerDocument.current?.addEventListener(
105
- 'mouseleave',
106
- handlersAndEvents.mouse.upHandler,
107
- passiveIfSupported,
108
- );
109
- dispatch({
110
- type: _reacttable.actions.columnStartResizing,
111
- columnId: header.id,
112
- columnWidth: getHeaderWidth(header),
113
- nextColumnWidth: getHeaderWidth(nextHeader),
114
- headerIdWidths,
115
- nextHeaderIdWidths,
116
- clientX,
117
- });
118
- };
119
- return [
120
- props,
121
- {
122
- onClick: (e) => {
123
- e.stopPropagation();
124
- },
125
- onMouseDown: (e) => {
126
- e.persist();
127
- e.preventDefault();
128
- e.stopPropagation();
129
- onResizeStart(e, header);
130
- },
131
- onTouchStart: (e) => {
132
- e.persist();
133
- e.preventDefault();
134
- onResizeStart(e, header);
135
- },
136
- style: {
137
- cursor: 'col-resize',
138
- },
139
- draggable: false,
140
- role: 'separator',
141
- },
142
- ];
143
- };
144
- useResizeColumns.pluginName = 'useResizeColumns';
145
- const reducer = (newState, action, previousState, instance) => {
146
- if (action.type === _reacttable.actions.init)
147
- return {
148
- ...newState,
149
- columnResizing: {
150
- columnWidths: {},
151
- },
152
- };
153
- if (action.type === _reacttable.actions.resetResize)
154
- return {
155
- ...newState,
156
- columnResizing: {
157
- columnWidths: {},
158
- },
159
- };
160
- if (action.type === _reacttable.actions.columnStartResizing) {
161
- let {
162
- clientX,
163
- columnId,
164
- columnWidth,
165
- nextColumnWidth,
166
- headerIdWidths,
167
- nextHeaderIdWidths,
168
- } = action;
169
- return {
170
- ...newState,
171
- columnResizing: {
172
- ...newState.columnResizing,
173
- startX: clientX,
174
- columnWidth,
175
- nextColumnWidth,
176
- headerIdWidths,
177
- nextHeaderIdWidths,
178
- isResizingColumn: columnId,
179
- },
180
- };
181
- }
182
- if (action.type === _reacttable.actions.columnResizing) {
183
- let { clientX } = action;
184
- let {
185
- startX = 0,
186
- columnWidth = 1,
187
- nextColumnWidth = 1,
188
- headerIdWidths = [],
189
- nextHeaderIdWidths = [],
190
- } = newState.columnResizing;
191
- if (!instance) return newState;
192
- let deltaX = clientX - startX;
193
- let newColumnWidths = getColumnWidths(headerIdWidths, deltaX / columnWidth);
194
- let isTableWidthDecreasing =
195
- calculateTableWidth(newColumnWidths, instance.flatHeaders) <
196
- instance.tableWidth;
197
- let newNextColumnWidths =
198
- instance?.columnResizeMode === 'fit' ||
199
- (instance?.columnResizeMode === 'expand' && isTableWidthDecreasing)
200
- ? getColumnWidths(nextHeaderIdWidths, -deltaX / nextColumnWidth)
201
- : {};
202
- if (
203
- !isNewColumnWidthsValid(newColumnWidths, instance.flatHeaders) ||
204
- !isNewColumnWidthsValid(newNextColumnWidths, instance.flatHeaders) ||
205
- !isNewTableWidthValid(
206
- {
207
- ...newColumnWidths,
208
- ...newNextColumnWidths,
209
- },
210
- instance,
211
- )
212
- )
213
- return newState;
214
- instance?.flatHeaders.forEach((h) => {
215
- if (!h.width) h.width = h.resizeWidth;
216
- });
217
- return {
218
- ...newState,
219
- columnResizing: {
220
- ...newState.columnResizing,
221
- columnWidths: {
222
- ...newState.columnResizing.columnWidths,
223
- ...newColumnWidths,
224
- ...newNextColumnWidths,
225
- },
226
- },
227
- };
228
- }
229
- if (action.type === _reacttable.actions.columnDoneResizing)
230
- return {
231
- ...newState,
232
- columnResizing: {
233
- ...newState.columnResizing,
234
- startX: void 0,
235
- isResizingColumn: void 0,
236
- },
237
- };
238
- return newState;
239
- };
240
- const getColumnWidths = (headerIdWidths, deltaPercentage) => {
241
- let columnWidths = {};
242
- headerIdWidths.forEach(([headerId, headerWidth]) => {
243
- columnWidths[headerId] = Math.max(
244
- headerWidth + headerWidth * deltaPercentage,
245
- 0,
246
- );
247
- });
248
- return columnWidths;
249
- };
250
- const isNewColumnWidthsValid = (columnWidths, headers) => {
251
- if (Object.values(columnWidths).some((width) => width <= 1)) return false;
252
- for (let [headerId, width] of Object.entries(columnWidths)) {
253
- let header = headers?.find((h) => h.id === headerId);
254
- if (!header) continue;
255
- let minWidth = header.minWidth || 0;
256
- let maxWidth = header.maxWidth || 1 / 0;
257
- if (width < minWidth || width > maxWidth) return false;
258
- }
259
- return true;
260
- };
261
- const isNewTableWidthValid = (columnWidths, instance) => {
262
- if ('fit' === instance.columnResizeMode) return true;
263
- let newTableWidth = 0;
264
- for (let header of instance.flatHeaders)
265
- newTableWidth += columnWidths[header.id]
266
- ? columnWidths[header.id]
267
- : getHeaderWidth(header);
268
- if (Math.round(newTableWidth) < instance.tableWidth) return false;
269
- return true;
270
- };
271
- const useInstanceBeforeDimensions = (instance) => {
272
- let {
273
- flatHeaders,
274
- getHooks,
275
- state: { columnResizing },
276
- columnResizeMode,
277
- } = instance;
278
- let getInstance = (0, _reacttable.useGetLatest)(instance);
279
- flatHeaders.forEach((header, index) => {
280
- let resizeWidth = columnResizing.columnWidths[header.id];
281
- header.width = resizeWidth || header.width || header.originalWidth;
282
- header.isResizing = columnResizing.isResizingColumn === header.id;
283
- let headerToResize =
284
- header.disableResizing && 'fit' === columnResizeMode
285
- ? getPreviousResizableHeader(header, instance)
286
- : header;
287
- let nextResizableHeader =
288
- 'expand' === columnResizeMode && index === flatHeaders.length - 1
289
- ? getPreviousResizableHeader(header, instance)
290
- : getNextResizableHeader(header, instance);
291
- header.canResize =
292
- null == header.disableResizing || !header.disableResizing;
293
- if ('fit' === columnResizeMode)
294
- header.isResizerVisible =
295
- (header.canResize && !!nextResizableHeader) ||
296
- (headerToResize && !!instance.flatHeaders[index + 1]?.canResize);
297
- else header.isResizerVisible = header.canResize && !!headerToResize;
298
- header.getResizerProps = (0, _reacttable.makePropGetter)(
299
- getHooks().getResizerProps,
300
- {
301
- instance: getInstance(),
302
- header: headerToResize,
303
- nextHeader: nextResizableHeader,
304
- },
305
- );
306
- });
307
- };
308
- const getPreviousResizableHeader = (headerColumn, instance) => {
309
- let headersList = (
310
- headerColumn.parent?.columns || instance.flatHeaders
311
- ).filter(({ isVisible }) => isVisible);
312
- let headerIndex = headersList.findIndex((h) => h.id === headerColumn.id);
313
- return [...headersList]
314
- .slice(0, headerIndex)
315
- .reverse()
316
- .find((h) => !h.disableResizing);
317
- };
318
- const getNextResizableHeader = (headerColumn, instance) => {
319
- let headersList = (
320
- headerColumn.parent?.columns || instance.flatHeaders
321
- ).filter(({ isVisible }) => isVisible);
322
- let headerIndex = headersList.findIndex((h) => h.id === headerColumn.id);
323
- return [...headersList]
324
- .slice(headerIndex + 1)
325
- .find((h) => !h.disableResizing);
326
- };
327
- function getLeafHeaders(header) {
328
- let leafHeaders = [];
329
- let recurseHeader = (header) => {
330
- if (header.columns && header.columns.length)
331
- header.columns.map(recurseHeader);
332
- leafHeaders.push(header);
333
- };
334
- recurseHeader(header);
335
- return leafHeaders;
336
- }
337
- const getHeaderWidth = (header) => {
338
- if (!header) return 0;
339
- return 'string' == typeof header.width && Number.isNaN(Number(header.width))
340
- ? Number(header.resizeWidth || 0)
341
- : Number(header.width || header.resizeWidth || 0);
342
- };
343
- const calculateTableWidth = (columnWidths, headers) => {
344
- let newTableWidth = 0;
345
- for (let header of headers)
346
- newTableWidth += columnWidths[header.id]
347
- ? columnWidths[header.id]
348
- : getHeaderWidth(header);
349
- return newTableWidth;
350
- };
351
- let passiveSupported = null;
352
- const passiveEventSupported = () => {
353
- if (null != passiveSupported) return passiveSupported;
354
- try {
355
- let options = {
356
- once: true,
357
- get passive() {
358
- passiveSupported = true;
359
- return false;
360
- },
361
- };
362
- window.addEventListener('test', () => {}, options);
363
- } catch {
364
- passiveSupported = false;
365
- }
366
- return passiveSupported;
367
- };
@@ -1,11 +0,0 @@
1
- import type { Row } from '../../../react-table/react-table.js';
2
- import type { TableProps } from '../Table.js';
3
- type ScrollToRow<T extends Record<string, unknown>> = {
4
- scrollToIndex: number | undefined;
5
- tableRowRef: (row: Row<T>) => (element: HTMLDivElement) => void;
6
- };
7
- type ScrollToRowProps<T extends Record<string, unknown>> = TableProps<T> & {
8
- page: Row<T>[];
9
- };
10
- export declare function useScrollToRow<T extends Record<string, unknown>>({ data, enableVirtualization, page, paginatorRenderer, scrollToRow, }: ScrollToRowProps<T>): ScrollToRow<T>;
11
- export {};
@@ -1,45 +0,0 @@
1
- 'use strict';
2
- Object.defineProperty(exports, '__esModule', {
3
- value: true,
4
- });
5
- Object.defineProperty(exports, 'useScrollToRow', {
6
- enumerable: true,
7
- get: function () {
8
- return useScrollToRow;
9
- },
10
- });
11
- const _interop_require_wildcard = require('@swc/helpers/_/_interop_require_wildcard');
12
- const _react = _interop_require_wildcard._(require('react'));
13
- function useScrollToRow({
14
- data,
15
- enableVirtualization,
16
- page,
17
- paginatorRenderer,
18
- scrollToRow,
19
- }) {
20
- let rowRefs = _react.useRef({});
21
- let pageRef = _react.useRef(page);
22
- pageRef.current = page;
23
- let dataRef = _react.useRef(data);
24
- dataRef.current = data;
25
- let scrollToIndex = _react.useMemo(() => {
26
- if (!scrollToRow || paginatorRenderer) return;
27
- let index = scrollToRow(pageRef.current, dataRef.current);
28
- return index < 0 ? void 0 : index;
29
- }, [paginatorRenderer, scrollToRow]);
30
- _react.useEffect(() => {
31
- if (enableVirtualization || null == scrollToIndex || scrollToIndex < 0)
32
- return;
33
- rowRefs.current[pageRef.current[scrollToIndex]?.id]?.scrollIntoView();
34
- }, [enableVirtualization, scrollToIndex]);
35
- let tableRowRef = _react.useCallback(
36
- (row) => (element) => {
37
- rowRefs.current[row.id] = element;
38
- },
39
- [],
40
- );
41
- return {
42
- scrollToIndex,
43
- tableRowRef,
44
- };
45
- }
@@ -1,2 +0,0 @@
1
- import type { Hooks } from '../../../react-table/react-table.js';
2
- export declare const useSelectionCell: <T extends Record<string, unknown>>(isSelectable: boolean, selectionMode: "multi" | "single", isRowDisabled?: (rowData: T) => boolean, density?: "default" | "condensed" | "extra-condensed") => (hooks: Hooks<T>) => void;
@@ -1,28 +0,0 @@
1
- 'use strict';
2
- Object.defineProperty(exports, '__esModule', {
3
- value: true,
4
- });
5
- Object.defineProperty(exports, 'useSelectionCell', {
6
- enumerable: true,
7
- get: function () {
8
- return useSelectionCell;
9
- },
10
- });
11
- const _index = require('../columns/index.js');
12
- const useSelectionCell =
13
- (isSelectable, selectionMode, isRowDisabled, density = 'default') =>
14
- (hooks) => {
15
- if (!isSelectable) return;
16
- hooks.allColumns.push((columns) =>
17
- 'single' === selectionMode ||
18
- columns.find((c) => c.id === _index.SELECTION_CELL_ID)
19
- ? columns
20
- : [
21
- (0, _index.SelectionColumn)({
22
- isDisabled: isRowDisabled,
23
- density: density,
24
- }),
25
- ...columns,
26
- ],
27
- );
28
- };
@@ -1,2 +0,0 @@
1
- import type { Hooks } from '../../../react-table/react-table.js';
2
- export declare const useStickyColumns: <T extends Record<string, unknown>>(hooks: Hooks<T>) => void;
@@ -1,65 +0,0 @@
1
- 'use strict';
2
- Object.defineProperty(exports, '__esModule', {
3
- value: true,
4
- });
5
- Object.defineProperty(exports, 'useStickyColumns', {
6
- enumerable: true,
7
- get: function () {
8
- return useStickyColumns;
9
- },
10
- });
11
- const _reacttable = require('react-table');
12
- _reacttable.actions.setScrolledLeft = 'setScrolledLeft';
13
- _reacttable.actions.setScrolledRight = 'setScrolledRight';
14
- const useStickyColumns = (hooks) => {
15
- hooks.stateReducers.push(reducer);
16
- hooks.useInstance.push(useInstance);
17
- };
18
- const reducer = (newState, action) => {
19
- if (action.type === _reacttable.actions.init)
20
- return {
21
- ...newState,
22
- sticky: {},
23
- };
24
- if (
25
- action.type === _reacttable.actions.setScrolledLeft &&
26
- newState.sticky?.isScrolledToLeft !== action.value
27
- )
28
- return {
29
- ...newState,
30
- sticky: {
31
- ...newState.sticky,
32
- isScrolledToLeft: action.value,
33
- },
34
- };
35
- if (
36
- action.type === _reacttable.actions.setScrolledRight &&
37
- newState.sticky?.isScrolledToRight !== action.value
38
- )
39
- return {
40
- ...newState,
41
- sticky: {
42
- ...newState.sticky,
43
- isScrolledToRight: action.value,
44
- },
45
- };
46
- return newState;
47
- };
48
- const useInstance = (instance) => {
49
- let { flatHeaders } = instance;
50
- flatHeaders.forEach((header) => {
51
- if (!header.originalSticky) header.originalSticky = header.sticky ?? 'none';
52
- header.sticky =
53
- 'none' === header.originalSticky ? void 0 : header.originalSticky;
54
- });
55
- let hasLeftStickyColumn = false;
56
- [...flatHeaders].reverse().forEach((header) => {
57
- if ('left' === header.sticky) hasLeftStickyColumn = true;
58
- if (hasLeftStickyColumn) header.sticky = 'left';
59
- });
60
- let hasRightStickyColumn = false;
61
- flatHeaders.forEach((header) => {
62
- if ('right' === header.sticky) hasRightStickyColumn = true;
63
- if (hasRightStickyColumn) header.sticky = 'right';
64
- });
65
- };
@@ -1,2 +0,0 @@
1
- import type { Hooks } from '../../../react-table/react-table.js';
2
- export declare const useSubRowFiltering: <T extends Record<string, unknown>>(hasAnySubRows: boolean) => (hooks: Hooks<T>) => void;
@@ -1,95 +0,0 @@
1
- 'use strict';
2
- Object.defineProperty(exports, '__esModule', {
3
- value: true,
4
- });
5
- Object.defineProperty(exports, 'useSubRowFiltering', {
6
- enumerable: true,
7
- get: function () {
8
- return useSubRowFiltering;
9
- },
10
- });
11
- const _interop_require_wildcard = require('@swc/helpers/_/_interop_require_wildcard');
12
- const _react = _interop_require_wildcard._(require('react'));
13
- const _defaultFilterFunctions = require('../filters/defaultFilterFunctions.js');
14
- const useSubRowFiltering = (hasAnySubRows) => (hooks) => {
15
- hooks.useInstance.push(useInstance.bind({}, hasAnySubRows));
16
- };
17
- const useInstance = (hasAnySubRows, instance) => {
18
- let setInitialSubRows = (rows) => {
19
- rows.forEach((row) => {
20
- if (!row.initialSubRows) row.initialSubRows = row.subRows;
21
- setInitialSubRows(row.subRows);
22
- });
23
- };
24
- setInitialSubRows(instance.initialRows);
25
- let {
26
- filteredRows = instance.filteredRows,
27
- filteredFlatRows = instance.filteredFlatRows,
28
- filteredRowsById = instance.filteredRowsById,
29
- } = _react.useMemo(() => {
30
- if (!hasAnySubRows) return {};
31
- let setSubRows = (rows) => {
32
- rows.forEach((row) => {
33
- row.subRows = row.initialSubRows ?? [];
34
- setSubRows(row.subRows);
35
- });
36
- };
37
- setSubRows(instance.initialRows);
38
- let currentlyFilteredRows = [...instance.initialRows];
39
- instance.state.filters.forEach(({ id: columnId, value: filterValue }) => {
40
- let column = instance.allColumns.find((c) => c.id === columnId);
41
- if (!column) return;
42
- let filterTypes = {
43
- ..._defaultFilterFunctions.defaultFilterFunctions,
44
- ...instance.filterTypes,
45
- };
46
- let filterFn =
47
- 'function' == typeof column.filter
48
- ? column.filter
49
- : filterTypes[column.filter ?? 'text'];
50
- currentlyFilteredRows = currentlyFilteredRows.filter((row) =>
51
- handleRowFiltering(row, filterFn, columnId, filterValue),
52
- );
53
- });
54
- let filteredRows = [];
55
- let filteredFlatRows = [];
56
- let filteredRowsById = {};
57
- let populateRows = (row) => {
58
- if (0 === row.depth) filteredRows.push(row);
59
- filteredFlatRows.push(row);
60
- filteredRowsById[row.id] = row;
61
- if (row.subRows.length) row.subRows.forEach((r) => populateRows(r));
62
- };
63
- currentlyFilteredRows.forEach((row) => populateRows(row));
64
- return {
65
- filteredRows,
66
- filteredFlatRows,
67
- filteredRowsById,
68
- };
69
- }, [
70
- instance.allColumns,
71
- instance.filterTypes,
72
- instance.initialRows,
73
- instance.state.filters,
74
- hasAnySubRows,
75
- ]);
76
- Object.assign(instance, {
77
- filteredRows,
78
- filteredFlatRows,
79
- filteredRowsById,
80
- rows: filteredRows,
81
- flatRows: filteredFlatRows,
82
- rowsById: filteredRowsById,
83
- });
84
- };
85
- const handleRowFiltering = (row, filterFn, columnId, filterValue) => {
86
- let hasFilteredSubRows = false;
87
- row.subRows = row.initialSubRows.filter((subRow) => {
88
- let result = handleRowFiltering(subRow, filterFn, columnId, filterValue);
89
- if (result) hasFilteredSubRows = true;
90
- return result;
91
- });
92
- if (hasFilteredSubRows) return true;
93
- let result = filterFn([row], [columnId], filterValue);
94
- return !!result.length;
95
- };
@@ -1,2 +0,0 @@
1
- import type { Hooks } from '../../../react-table/react-table.js';
2
- export declare const useSubRowSelection: <T extends Record<string, unknown>>(hooks: Hooks<T>) => void;
@@ -1,43 +0,0 @@
1
- 'use strict';
2
- Object.defineProperty(exports, '__esModule', {
3
- value: true,
4
- });
5
- Object.defineProperty(exports, 'useSubRowSelection', {
6
- enumerable: true,
7
- get: function () {
8
- return useSubRowSelection;
9
- },
10
- });
11
- const _interop_require_wildcard = require('@swc/helpers/_/_interop_require_wildcard');
12
- const _react = _interop_require_wildcard._(require('react'));
13
- const useSubRowSelection = (hooks) => {
14
- hooks.useInstance.push(useInstance);
15
- };
16
- const useInstance = (instance) => {
17
- let selectedFlatRows = _react.useMemo(() => {
18
- let selectedFlatRows = [];
19
- let setSelectionState = (row, selectedRowIds) => {
20
- let isSomeSubRowsSelected = false;
21
- row.initialSubRows.forEach((subRow) => {
22
- setSelectionState(subRow, selectedRowIds);
23
- if (subRow.isSelected || subRow.isSomeSelected)
24
- isSomeSubRowsSelected = true;
25
- });
26
- if (selectedRowIds[row.id]) {
27
- row.isSelected = true;
28
- row.isSomeSelected = false;
29
- selectedFlatRows.push(row);
30
- } else {
31
- row.isSelected = false;
32
- row.isSomeSelected = isSomeSubRowsSelected;
33
- }
34
- };
35
- instance.rows.forEach((row) =>
36
- setSelectionState(row, instance.state.selectedRowIds),
37
- );
38
- return selectedFlatRows;
39
- }, [instance.rows, instance.state.selectedRowIds]);
40
- Object.assign(instance, {
41
- selectedFlatRows,
42
- });
43
- };
@@ -1,9 +0,0 @@
1
- export { Table } from './Table.js';
2
- export type { TablePaginatorRendererProps } from './Table.js';
3
- export { BaseFilter, FilterButtonBar, tableFilters } from './filters/index.js';
4
- export type { DateRangeFilterOptions, FilterButtonBarProps, FilterButtonBarTranslation, TableFilterProps, TableFilterValue, } from './filters/index.js';
5
- export { DefaultCell, EditableCell } from './cells/index.js';
6
- export type { DefaultCellProps, EditableCellProps } from './cells/index.js';
7
- export { TablePaginator } from './TablePaginator.js';
8
- export type { TablePaginatorProps } from './TablePaginator.js';
9
- export { ActionColumn, ExpanderColumn, SelectionColumn, } from './columns/index.js';