@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,46 +0,0 @@
1
- import * as React from 'react';
2
- import type { PolymorphicForwardRefComponent } from '../../utils/index.js';
3
- type InformationPanelProps = {
4
- /**
5
- * Is the panel open?
6
- * @default false
7
- */
8
- isOpen?: boolean;
9
- /**
10
- * Orientation of the panel.
11
- * @default 'vertical'
12
- */
13
- orientation?: 'vertical' | 'horizontal';
14
- /**
15
- * Set to false to make the panel non-resizable.
16
- * @default true
17
- */
18
- resizable?: boolean;
19
- /**
20
- * Content of the panel.
21
- */
22
- children?: React.ReactNode;
23
- };
24
- /**
25
- * InformationPanel provides a way to view additional content or attributes
26
- * without leaving the main content area (e.g. Table).
27
- *
28
- * The panel appears as an overlay on top of the main content.
29
- * @example
30
- * <InformationPanelWrapper>
31
- * <Table ... /> // component to overlay
32
- * <InformationPanel isOpen={true}>
33
- * <InformationPanelHeader onClose={() => {}}>
34
- * <Text variant='subheading'>InfoPanel heading</Text>
35
- * </InformationPanelHeader>
36
- * <InformationPanelBody>
37
- * <Text>Metadata</Text>
38
- * <InformationPanelContent ... />
39
- * <Text>Attributes</Text>
40
- * <InformationPanelContent ... />
41
- * </InformationPanelBody>
42
- * </InformationPanel>
43
- * </InformationPanelWrapper>
44
- */
45
- export declare const InformationPanel: PolymorphicForwardRefComponent<"div", InformationPanelProps>;
46
- export {};
@@ -1,90 +0,0 @@
1
- import cx from 'classnames';
2
- import * as React from 'react';
3
- import { useMergedRefs, Box } from '../../utils/index.js';
4
- export const InformationPanel = React.forwardRef((props, forwardedRef) => {
5
- let {
6
- className,
7
- isOpen = false,
8
- orientation = 'vertical',
9
- resizable = true,
10
- children,
11
- ...rest
12
- } = props;
13
- let [infoPanelSize, setInfoPanelSize] = React.useState({
14
- width: void 0,
15
- height: void 0,
16
- });
17
- let infoPanelRef = React.useRef(null);
18
- let refs = useMergedRefs(forwardedRef, infoPanelRef);
19
- let startResize = (e) => {
20
- if (!infoPanelRef.current) return;
21
- if (void 0 != e.button && 0 !== e.button) return;
22
- e.preventDefault();
23
- e.stopPropagation();
24
- infoPanelRef.current.ownerDocument.addEventListener(
25
- 'pointermove',
26
- onResize,
27
- );
28
- infoPanelRef.current.ownerDocument.addEventListener(
29
- 'pointerup',
30
- () =>
31
- infoPanelRef.current?.ownerDocument.removeEventListener(
32
- 'pointermove',
33
- onResize,
34
- ),
35
- {
36
- once: true,
37
- },
38
- );
39
- };
40
- let onResize = React.useCallback(
41
- (e) => {
42
- e.preventDefault();
43
- if (!infoPanelRef.current) return;
44
- let { right, bottom } = infoPanelRef.current.getBoundingClientRect();
45
- 'vertical' === orientation
46
- ? setInfoPanelSize({
47
- width: right - e.clientX,
48
- height: void 0,
49
- })
50
- : setInfoPanelSize({
51
- height: bottom - e.clientY,
52
- width: void 0,
53
- });
54
- },
55
- [orientation],
56
- );
57
- return React.createElement(
58
- Box,
59
- {
60
- className: cx(
61
- 'iui-information-panel',
62
- {
63
- 'iui-right': 'vertical' === orientation,
64
- 'iui-bottom': 'horizontal' === orientation,
65
- 'iui-visible': isOpen,
66
- },
67
- className,
68
- ),
69
- ref: refs,
70
- ...rest,
71
- style: {
72
- width: 'vertical' === orientation ? infoPanelSize.width : void 0,
73
- height: 'horizontal' === orientation ? infoPanelSize.height : void 0,
74
- ...props.style,
75
- },
76
- },
77
- resizable &&
78
- React.createElement(
79
- Box,
80
- {
81
- className: 'iui-resizer',
82
- onPointerDown: startResize,
83
- },
84
- React.createElement(Box, {
85
- className: 'iui-resizer-bar',
86
- }),
87
- ),
88
- children,
89
- );
90
- });
@@ -1,4 +0,0 @@
1
- /**
2
- * Body of the `InformationPanel` containing the main content.
3
- */
4
- export declare const InformationPanelBody: import("../../utils/props.js").PolymorphicForwardRefComponent<"div", {}>;
@@ -1,2 +0,0 @@
1
- import { polymorphic } from '../../utils/index.js';
2
- export const InformationPanelBody = polymorphic.div('iui-information-body');
@@ -1,41 +0,0 @@
1
- import * as React from 'react';
2
- import type { PolymorphicForwardRefComponent } from '../../utils/index.js';
3
- type InformationPanelContentProps = {
4
- /**
5
- * If set to 'inline', the label/input pairs will be shown on the same line.
6
- * The component handles the spacing and alignment automatically.
7
- *
8
- * @default 'default'
9
- */
10
- displayStyle?: 'default' | 'inline';
11
- /**
12
- * Content of the component.
13
- * Should ideally be pairs of `Label` and input components.
14
- */
15
- children: React.ReactNode;
16
- };
17
- /**
18
- * The `InformationPanelContent` component should be used inside `InformationPanelBody`
19
- * to style rows of key/value pairs, where the key is ideally represented by a `Label` component
20
- * and the value can be any input element (including readonly inputs for non-modifiable fields).
21
- *
22
- * By default, the pairs are displayed of label and input are displayed in separate lines,
23
- * but displayStyle can be set to 'inline' to show them in the same line with correct alignment.
24
- *
25
- * You can use multiple `InformationPanelContent` instances inside one `InformationPanelBody`; this is
26
- * useful when you want to show other content, e.g. separate headings for different sections of key/value pairs.
27
- *
28
- * @example
29
- * <InformationPanelContent displayStyle='inline'>
30
- * <Label htmlFor='name-input'>File name</Label>
31
- * <Input id='name-input' value='Alpha.mp3' />
32
- *
33
- * <Label htmlFor='year-input'>Year</Label>
34
- * <Input id='year-input' value='2021' />
35
- *
36
- * <Label htmlFor='path-input'>Path</Label>
37
- * <Input id='path-input' value='/Shared/Music/' />
38
- * </InformationPanelContent>
39
- */
40
- export declare const InformationPanelContent: PolymorphicForwardRefComponent<"div", InformationPanelContentProps>;
41
- export {};
@@ -1,23 +0,0 @@
1
- import cx from 'classnames';
2
- import * as React from 'react';
3
- import { Box } from '../../utils/index.js';
4
- export const InformationPanelContent = React.forwardRef(
5
- (props, forwardedRef) => {
6
- let { className, displayStyle = 'default', children, ...rest } = props;
7
- return React.createElement(
8
- Box,
9
- {
10
- className: cx(
11
- 'iui-information-body-content',
12
- {
13
- 'iui-inline': 'inline' === displayStyle,
14
- },
15
- className,
16
- ),
17
- ref: forwardedRef,
18
- ...rest,
19
- },
20
- children,
21
- );
22
- },
23
- );
@@ -1,43 +0,0 @@
1
- import * as React from 'react';
2
- import type { PolymorphicForwardRefComponent } from '../../utils/index.js';
3
- type InformationPanelHeaderProps = {
4
- /**
5
- * Callback fired when close icon is clicked.
6
- *
7
- * If not specified, close icon will not be shown.
8
- */
9
- onClose?: (e: React.MouseEvent) => void;
10
- /**
11
- * Custom header action buttons shown alongside the close button.
12
- * @example
13
- * actions={(
14
- * <>
15
- * <IconButton styleType='borderless' onClick={() => {}}><SvgEdit /></IconButton>
16
- * <IconButton styleType='borderless' onClick={() => {}}><SvgDelete /></IconButton>
17
- * </>
18
- * )}
19
- */
20
- actions?: React.ReactNode;
21
- /**
22
- * Content of the panel header.
23
- */
24
- children?: React.ReactNode;
25
- };
26
- /**
27
- * Header of the InformationPanel to be passed in the `header` prop.
28
- *
29
- * @example
30
- * <InformationPanelHeader
31
- * onClose={() => {}}
32
- * actions={(
33
- * <>
34
- * <IconButton styleType='borderless' onClick={() => {}}><SvgEdit /></IconButton>
35
- * <IconButton styleType='borderless' onClick={() => {}}><SvgDelete /></IconButton>
36
- * </>
37
- * )}
38
- * >
39
- * <Text variant='subheading'>InfoPanel heading</Text>
40
- * </InformationPanelHeader>
41
- */
42
- export declare const InformationPanelHeader: PolymorphicForwardRefComponent<"div", InformationPanelHeaderProps>;
43
- export {};
@@ -1,44 +0,0 @@
1
- import * as React from 'react';
2
- import cx from 'classnames';
3
- import { IconButton } from '../Buttons/IconButton.js';
4
- import { SvgCloseSmall, Box } from '../../utils/index.js';
5
- export const InformationPanelHeader = React.forwardRef(
6
- (props, forwardedRef) => {
7
- let { children, onClose, actions, className, ...rest } = props;
8
- return React.createElement(
9
- Box,
10
- {
11
- className: cx('iui-information-header', className),
12
- ref: forwardedRef,
13
- ...rest,
14
- },
15
- React.createElement(
16
- Box,
17
- {
18
- as: 'span',
19
- className: 'iui-information-header-label',
20
- },
21
- children,
22
- ),
23
- React.createElement(
24
- Box,
25
- {
26
- className: 'iui-information-header-actions',
27
- },
28
- actions,
29
- onClose &&
30
- React.createElement(
31
- IconButton,
32
- {
33
- styleType: 'borderless',
34
- onClick: onClose,
35
- 'aria-label': 'Close',
36
- },
37
- React.createElement(SvgCloseSmall, {
38
- 'aria-hidden': true,
39
- }),
40
- ),
41
- ),
42
- );
43
- },
44
- );
@@ -1,10 +0,0 @@
1
- /**
2
- * InformationPanelWrapper should contain the `InformationPanel`
3
- * and the component over which the panel will overlay.
4
- * @example
5
- * <InformationPanelWrapper>
6
- * <Table ... />
7
- * <InformationPanel ... />
8
- * </InformationPanelWrapper>
9
- */
10
- export declare const InformationPanelWrapper: import("../../utils/props.js").PolymorphicForwardRefComponent<"div", {}>;
@@ -1,4 +0,0 @@
1
- import { polymorphic } from '../../utils/index.js';
2
- export const InformationPanelWrapper = polymorphic.div(
3
- 'iui-information-panel-wrapper',
4
- );
@@ -1,23 +0,0 @@
1
- import type { PolymorphicForwardRefComponent } from '../../utils/index.js';
2
- export type InputProps = {
3
- /**
4
- * Modify size of the input.
5
- */
6
- size?: 'small' | 'large';
7
- /**
8
- * Status of input.
9
- */
10
- status?: 'positive' | 'warning' | 'negative';
11
- /**
12
- * Modify the native `size` attribute of the `<input>` element.
13
- * The `width` or `inline-size` property must be unset in order to use this prop.
14
- */
15
- htmlSize?: number;
16
- };
17
- /**
18
- * Basic input component
19
- * @example
20
- * <Input disabled />
21
- * <Input size='small' />
22
- */
23
- export declare const Input: PolymorphicForwardRefComponent<"input", InputProps>;
@@ -1,17 +0,0 @@
1
- import cx from 'classnames';
2
- import * as React from 'react';
3
- import { useMergedRefs, Box } from '../../utils/index.js';
4
- export const Input = React.forwardRef((props, ref) => {
5
- let { size, htmlSize, status, className, ...rest } = props;
6
- let inputRef = React.useRef(null);
7
- let refs = useMergedRefs(inputRef, ref);
8
- return React.createElement(Box, {
9
- as: 'input',
10
- className: cx('iui-input', 'iui-field', className),
11
- 'data-iui-size': size,
12
- 'data-iui-status': status,
13
- size: htmlSize,
14
- ref: refs,
15
- ...rest,
16
- });
17
- });
@@ -1,27 +0,0 @@
1
- import type { PolymorphicForwardRefComponent } from '../../utils/index.js';
2
- type InputGridOwnProps = {
3
- /**
4
- * Set display style of label.
5
- * Supported values:
6
- * - 'default' - label appears above input.
7
- * - 'inline' - appears in the same line as input.
8
- * @default 'default'
9
- */
10
- labelPlacement?: 'default' | 'inline';
11
- };
12
- /**
13
- * InputGrid component is used to display form fields (input, textarea, select)
14
- * with label and/or status message
15
- *
16
- * Form fields are automatically associated with the label and status message for
17
- * better accessibility.
18
- *
19
- * @example
20
- * <InputGrid>
21
- * <Label>This is a label</Label>
22
- * <Input />
23
- * <StatusMessage>This is a message</StatusMessage>
24
- * </InputGrid>
25
- */
26
- export declare const InputGrid: PolymorphicForwardRefComponent<"div", InputGridOwnProps>;
27
- export {};
@@ -1,142 +0,0 @@
1
- import * as React from 'react';
2
- import {
3
- Box,
4
- InputWithIcon,
5
- cloneElementWithRef,
6
- useId,
7
- } from '../../utils/index.js';
8
- import cx from 'classnames';
9
- import { Label } from '../Label/Label.js';
10
- import { Input } from '../Input/Input.js';
11
- import { Textarea } from '../Textarea/Textarea.js';
12
- import { StatusMessage } from '../StatusMessage/StatusMessage.js';
13
- import { InputWithDecorations } from '../InputWithDecorations/InputWithDecorations.js';
14
- import { ComboBox } from '../ComboBox/ComboBox.js';
15
- import { Select } from '../Select/Select.js';
16
- export const InputGrid = React.forwardRef((props, ref) => {
17
- let { children: childrenProp, className, labelPlacement, ...rest } = props;
18
- let children = useChildrenWithIds(childrenProp);
19
- return React.createElement(
20
- Box,
21
- {
22
- className: cx('iui-input-grid', className),
23
- 'data-iui-label-placement': labelPlacement,
24
- ref: ref,
25
- ...rest,
26
- },
27
- children,
28
- );
29
- });
30
- let useChildrenWithIds = (children) => {
31
- let { labelId, inputId, messageId } = useSetup(children);
32
- return React.useMemo(
33
- () =>
34
- React.Children.map(children, (child) => {
35
- if (!React.isValidElement(child)) return child;
36
- if (child.type === Label || 'label' === child.type)
37
- return cloneElementWithRef(child, (child) => ({
38
- ...child.props,
39
- htmlFor: child.props.htmlFor || inputId,
40
- id: child.props.id || labelId,
41
- }));
42
- if (child.type === StatusMessage)
43
- return cloneElementWithRef(child, (child) => ({
44
- ...child.props,
45
- id: child.props.id || messageId,
46
- }));
47
- if (
48
- isInput(child) ||
49
- child.type === InputWithDecorations ||
50
- child.type === InputWithIcon
51
- )
52
- return handleCloningInputs(child, {
53
- labelId,
54
- inputId,
55
- messageId,
56
- });
57
- return child;
58
- }),
59
- [children, inputId, labelId, messageId],
60
- );
61
- };
62
- let useSetup = (children) => {
63
- let idPrefix = useId();
64
- let labelId;
65
- let inputId;
66
- let messageId;
67
- let hasLabel = false;
68
- let hasSelect = false;
69
- let findInputId = (child) => {
70
- if (!React.isValidElement(child)) return;
71
- if (child.type === ComboBox)
72
- return child.props.inputProps?.id || `${idPrefix}--input`;
73
- if (child.type !== Select) return child.props.id || `${idPrefix}--input`;
74
- };
75
- React.Children.forEach(children, (child) => {
76
- if (!React.isValidElement(child)) return;
77
- if (child.type === Label || 'label' === child.type) {
78
- hasLabel = true;
79
- labelId || (labelId = child.props.id || `${idPrefix}--label`);
80
- }
81
- if (child.type === StatusMessage)
82
- messageId || (messageId = child.props.id || `${idPrefix}--message`);
83
- if (child.type === InputWithDecorations || child.type === InputWithIcon)
84
- React.Children.forEach(child.props.children, (child) => {
85
- if (isInput(child)) inputId || (inputId = findInputId(child));
86
- });
87
- else if (isInput(child)) inputId || (inputId = findInputId(child));
88
- if (child.type === Select) hasSelect = true;
89
- });
90
- return {
91
- labelId: hasSelect ? labelId : void 0,
92
- inputId: hasLabel && !hasSelect ? inputId : void 0,
93
- messageId,
94
- };
95
- };
96
- let handleCloningInputs = (child, { labelId, inputId, messageId }) => {
97
- let inputProps = (props = {}) => {
98
- let ariaDescribedBy = [props['aria-describedby'], messageId]
99
- .filter(Boolean)
100
- .join(' ');
101
- return {
102
- ...props,
103
- ...(child.type !== Select && {
104
- id: props.id || inputId,
105
- }),
106
- 'aria-describedby': ariaDescribedBy?.trim() || void 0,
107
- };
108
- };
109
- let cloneInput = (child) => {
110
- if (child.type === ComboBox)
111
- return cloneElementWithRef(child, (child) => ({
112
- inputProps: inputProps(child.props.inputProps),
113
- }));
114
- if (child.type === Select)
115
- return cloneElementWithRef(child, (child) => ({
116
- triggerProps: {
117
- 'aria-labelledby': labelId,
118
- ...inputProps(child.props.triggerProps),
119
- },
120
- }));
121
- return cloneElementWithRef(child, (child) => inputProps(child.props));
122
- };
123
- if (child.type === InputWithDecorations || child.type === InputWithIcon)
124
- return cloneElementWithRef(child, (child) => ({
125
- children: React.Children.map(child.props.children, (child) => {
126
- if (React.isValidElement(child) && isInput(child))
127
- return cloneInput(child);
128
- return child;
129
- }),
130
- }));
131
- return cloneInput(child);
132
- };
133
- let isInput = (child) =>
134
- React.isValidElement(child) &&
135
- ('input' === child.type ||
136
- 'textarea' === child.type ||
137
- 'select' === child.type ||
138
- child.type === Input ||
139
- child.type === Textarea ||
140
- child.type === InputWithDecorations.Input ||
141
- child.type === Select ||
142
- child.type === ComboBox);
@@ -1,73 +0,0 @@
1
- import * as React from 'react';
2
- import type { PolymorphicForwardRefComponent } from '../../utils/index.js';
3
- import { StatusMessage } from '../StatusMessage/StatusMessage.js';
4
- type InputGroupProps = {
5
- /**
6
- * Label of the group.
7
- */
8
- label?: React.ReactNode;
9
- /**
10
- * Status of the group.
11
- */
12
- status?: 'positive' | 'warning' | 'negative';
13
- /**
14
- * Message below the group. Does not apply to 'inline' group.
15
- *
16
- * When `typeof message === "string"`, it is automatically wrapped with {@link StatusMessage}.
17
- * If you are passing a non-string message that is not `<StatusMessage>`, you may need to wrap it with
18
- * `<StatusMessage>` yourself for proper styling of `message`.
19
- */
20
- message?: React.ReactNode;
21
- /**
22
- * You can choose between default and inline.
23
- * @default 'default'
24
- */
25
- displayStyle?: 'default' | 'inline';
26
- /**
27
- * Disable whole group.
28
- * @default false
29
- */
30
- disabled?: boolean;
31
- /**
32
- * Whether the whole input group is required.
33
- * @default false
34
- */
35
- required?: boolean;
36
- /**
37
- * Custom icon. If group has status, default status icon is used instead.
38
- */
39
- svgIcon?: React.ComponentPropsWithoutRef<typeof StatusMessage>['startIcon'];
40
- /**
41
- * Child inputs inside group.
42
- */
43
- children: React.ReactNode;
44
- /**
45
- * Passes properties for label.
46
- */
47
- labelProps?: React.ComponentProps<'label'>;
48
- /**
49
- * Passes properties for message.
50
- */
51
- messageProps?: Pick<React.ComponentProps<typeof StatusMessage>, 'iconProps' | 'contentProps'>;
52
- /**
53
- * Passes properties for inner input group element.
54
- */
55
- innerProps?: React.ComponentProps<'div'>;
56
- };
57
- /**
58
- * Group Checkbox/Radio components together
59
- * @example
60
- * <caption>Group checkboxes</caption>
61
- * <InputGroup label='Checkbox group'>
62
- * <Checkbox />
63
- * <Checkbox />
64
- * </InputGroup>
65
- * @example
66
- * <caption>Group radios</caption>
67
- * <InputGroup label='Radio group'>
68
- * <Radio />
69
- * <Radio />
70
- * </InputGroup>
71
- */
72
- export declare const InputGroup: PolymorphicForwardRefComponent<"div", InputGroupProps>;
73
- export {};
@@ -1,79 +0,0 @@
1
- import * as React from 'react';
2
- import cx from 'classnames';
3
- import { Box } from '../../utils/index.js';
4
- import { InputGrid } from '../InputGrid/InputGrid.js';
5
- import { Label } from '../Label/Label.js';
6
- import { StatusMessage } from '../StatusMessage/StatusMessage.js';
7
- export const InputGroup = React.forwardRef((props, forwardedRef) => {
8
- let {
9
- className,
10
- children,
11
- disabled = false,
12
- displayStyle = 'default',
13
- label,
14
- status,
15
- required = false,
16
- labelProps,
17
- innerProps,
18
- message,
19
- svgIcon,
20
- messageProps,
21
- ...rest
22
- } = props;
23
- return React.createElement(
24
- InputGrid,
25
- {
26
- ref: forwardedRef,
27
- as: 'div',
28
- labelPlacement: displayStyle,
29
- className: cx('iui-input-group-wrapper', className),
30
- 'data-iui-status': status,
31
- ...rest,
32
- },
33
- label &&
34
- React.createElement(
35
- Label,
36
- {
37
- as: 'label',
38
- required: required,
39
- disabled: disabled,
40
- ...labelProps,
41
- },
42
- label,
43
- ),
44
- React.createElement(
45
- Box,
46
- {
47
- as: 'div',
48
- ...innerProps,
49
- className: cx('iui-input-group', innerProps?.className),
50
- },
51
- children,
52
- ),
53
- React.createElement(BottomMessage, {
54
- message: message,
55
- status: status,
56
- svgIcon: svgIcon,
57
- displayStyle: displayStyle,
58
- messageProps: messageProps,
59
- }),
60
- );
61
- });
62
- let BottomMessage = (props) => {
63
- let { message, status, svgIcon, displayStyle, messageProps } = props;
64
- if (message && 'string' != typeof message) return message;
65
- if (message || status || svgIcon)
66
- return React.createElement(
67
- StatusMessage,
68
- {
69
- iconProps: {
70
- 'aria-hidden': true,
71
- },
72
- startIcon: svgIcon,
73
- status: status,
74
- ...messageProps,
75
- },
76
- 'inline' !== displayStyle && message,
77
- );
78
- return null;
79
- };