@carbon/react 1.103.0-rc.0 → 1.104.0-rc.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 (777) hide show
  1. package/.playwright/INTERNAL_AVT_REPORT_DO_NOT_USE.json +950 -950
  2. package/es/_virtual/_rolldown/runtime.js +25 -0
  3. package/es/components/AILabel/index.d.ts +29 -2
  4. package/es/components/AILabel/index.js +114 -169
  5. package/es/components/AISkeleton/AISkeletonIcon.js +23 -27
  6. package/es/components/AISkeleton/AISkeletonPlaceholder.js +19 -27
  7. package/es/components/AISkeleton/AISkeletonText.js +26 -39
  8. package/es/components/Accordion/Accordion.Skeleton.js +55 -79
  9. package/es/components/Accordion/Accordion.js +43 -61
  10. package/es/components/Accordion/AccordionItem.js +102 -156
  11. package/es/components/Accordion/AccordionProvider.js +18 -15
  12. package/es/components/AspectRatio/AspectRatio.js +41 -47
  13. package/es/components/BadgeIndicator/index.js +28 -33
  14. package/es/components/Breadcrumb/Breadcrumb.Skeleton.js +39 -50
  15. package/es/components/Breadcrumb/Breadcrumb.js +39 -51
  16. package/es/components/Breadcrumb/BreadcrumbItem.js +80 -83
  17. package/es/components/Button/Button.Skeleton.js +49 -58
  18. package/es/components/Button/Button.d.ts +1 -1
  19. package/es/components/Button/Button.js +146 -240
  20. package/es/components/Button/ButtonBase.js +82 -104
  21. package/es/components/Button/index.js +13 -6
  22. package/es/components/ButtonSet/ButtonSet.js +74 -98
  23. package/es/components/ButtonSet/index.js +12 -4
  24. package/es/components/ChatButton/ChatButton.Skeleton.js +27 -27
  25. package/es/components/ChatButton/ChatButton.js +64 -79
  26. package/es/components/Checkbox/Checkbox.Skeleton.js +26 -25
  27. package/es/components/Checkbox/Checkbox.js +116 -195
  28. package/es/components/Checkbox/index.js +13 -5
  29. package/es/components/CheckboxGroup/CheckboxGroup.js +100 -148
  30. package/es/components/ClassPrefix/index.js +21 -17
  31. package/es/components/CodeSnippet/CodeSnippet.Skeleton.js +45 -42
  32. package/es/components/CodeSnippet/CodeSnippet.js +210 -299
  33. package/es/components/ComboBox/ComboBox.js +621 -970
  34. package/es/components/ComboBox/index.js +12 -4
  35. package/es/components/ComboButton/index.js +172 -208
  36. package/es/components/ComposedModal/ComposedModal.js +311 -450
  37. package/es/components/ComposedModal/ComposedModalPresence.js +47 -42
  38. package/es/components/ComposedModal/ModalFooter.js +127 -207
  39. package/es/components/ComposedModal/ModalHeader.js +71 -101
  40. package/es/components/ComposedModal/useComposedModalState.js +21 -15
  41. package/es/components/ContainedList/ContainedList.js +67 -102
  42. package/es/components/ContainedList/ContainedListItem/ContainedListItem.js +49 -67
  43. package/es/components/ContainedList/ContainedListItem/index.js +12 -4
  44. package/es/components/ContainedList/index.js +15 -12
  45. package/es/components/ContentSwitcher/ContentSwitcher.js +108 -140
  46. package/es/components/ContextMenu/useContextMenu.js +41 -36
  47. package/es/components/Copy/Copy.js +97 -117
  48. package/es/components/Copy/index.js +12 -4
  49. package/es/components/CopyButton/CopyButton.js +81 -94
  50. package/es/components/CopyButton/index.js +12 -4
  51. package/es/components/DangerButton/DangerButton.js +11 -9
  52. package/es/components/DataTable/DataTable.d.ts +11 -11
  53. package/es/components/DataTable/DataTable.js +448 -630
  54. package/es/components/DataTable/Table.js +111 -156
  55. package/es/components/DataTable/TableActionList.js +14 -6
  56. package/es/components/DataTable/TableBatchAction.js +25 -34
  57. package/es/components/DataTable/TableBatchActions.js +78 -113
  58. package/es/components/DataTable/TableBody.js +26 -19
  59. package/es/components/DataTable/TableCell.js +31 -46
  60. package/es/components/DataTable/TableContainer.js +75 -82
  61. package/es/components/DataTable/TableContext.js +14 -6
  62. package/es/components/DataTable/TableDecoratorRow.js +30 -36
  63. package/es/components/DataTable/TableExpandHeader.js +53 -90
  64. package/es/components/DataTable/TableExpandRow.js +82 -119
  65. package/es/components/DataTable/TableExpandedRow.js +45 -51
  66. package/es/components/DataTable/TableHead.js +7 -5
  67. package/es/components/DataTable/TableHeader.js +138 -181
  68. package/es/components/DataTable/TableRow.d.ts +1 -1
  69. package/es/components/DataTable/TableRow.js +42 -76
  70. package/es/components/DataTable/TableSelectAll.js +42 -70
  71. package/es/components/DataTable/TableSelectRow.js +63 -98
  72. package/es/components/DataTable/TableSlugRow.js +35 -43
  73. package/es/components/DataTable/TableToolbar.js +33 -45
  74. package/es/components/DataTable/TableToolbarAction.js +25 -20
  75. package/es/components/DataTable/TableToolbarContent.js +14 -6
  76. package/es/components/DataTable/TableToolbarMenu.js +35 -46
  77. package/es/components/DataTable/TableToolbarSearch.js +97 -187
  78. package/es/components/DataTable/state/getDerivedStateFromProps.js +38 -43
  79. package/es/components/DataTable/state/sortStates.js +11 -9
  80. package/es/components/DataTable/state/sorting.js +53 -72
  81. package/es/components/DataTable/tools/cells.js +15 -7
  82. package/es/components/DataTable/tools/denormalize.js +27 -19
  83. package/es/components/DataTable/tools/filter.js +21 -22
  84. package/es/components/DataTable/tools/normalize.js +57 -72
  85. package/es/components/DataTable/tools/sorting.js +50 -71
  86. package/es/components/DataTableSkeleton/DataTableSkeleton.js +66 -94
  87. package/es/components/DatePicker/DatePicker.Skeleton.js +44 -51
  88. package/es/components/DatePicker/DatePicker.d.ts +4 -2
  89. package/es/components/DatePicker/DatePicker.js +485 -749
  90. package/es/components/DatePicker/DatePickerLocales.js +75 -126
  91. package/es/components/DatePicker/index.js +13 -5
  92. package/es/components/DatePicker/plugins/appendToPlugin.js +31 -45
  93. package/es/components/DatePicker/plugins/fixEventsPlugin.js +127 -171
  94. package/es/components/DatePicker/plugins/rangePlugin.d.ts +1 -1
  95. package/es/components/DatePicker/plugins/rangePlugin.js +40 -47
  96. package/es/components/DatePicker/utils.d.ts +7 -0
  97. package/es/components/DatePicker/utils.js +18 -0
  98. package/es/components/DatePickerInput/DatePickerInput.js +179 -289
  99. package/es/components/DatePickerInput/index.js +12 -4
  100. package/es/components/Dialog/Dialog.js +303 -574
  101. package/es/components/Dialog/index.js +18 -2
  102. package/es/components/Dropdown/Dropdown.Skeleton.js +26 -38
  103. package/es/components/Dropdown/Dropdown.js +344 -535
  104. package/es/components/Dropdown/index.js +13 -5
  105. package/es/components/ErrorBoundary/ErrorBoundary.js +36 -58
  106. package/es/components/ErrorBoundary/ErrorBoundaryContext.js +14 -9
  107. package/es/components/ExpandableSearch/ExpandableSearch.js +60 -69
  108. package/es/components/ExpandableSearch/index.js +12 -4
  109. package/es/components/FeatureFlags/index.d.ts +11 -2
  110. package/es/components/FeatureFlags/index.js +79 -77
  111. package/es/components/FileUploader/FileUploader.Skeleton.js +35 -30
  112. package/es/components/FileUploader/FileUploader.js +269 -343
  113. package/es/components/FileUploader/FileUploaderButton.js +110 -160
  114. package/es/components/FileUploader/FileUploaderDropContainer.js +144 -221
  115. package/es/components/FileUploader/FileUploaderItem.js +138 -157
  116. package/es/components/FileUploader/Filename.d.ts +1 -1
  117. package/es/components/FileUploader/Filename.js +53 -72
  118. package/es/components/FluidComboBox/FluidComboBox.Skeleton.js +26 -28
  119. package/es/components/FluidComboBox/FluidComboBox.js +54 -105
  120. package/es/components/FluidDatePicker/FluidDatePicker.Skeleton.js +56 -53
  121. package/es/components/FluidDatePicker/FluidDatePicker.js +46 -68
  122. package/es/components/FluidDatePickerInput/FluidDatePickerInput.js +23 -16
  123. package/es/components/FluidDropdown/FluidDropdown.Skeleton.js +26 -28
  124. package/es/components/FluidDropdown/FluidDropdown.js +55 -111
  125. package/es/components/FluidForm/FluidForm.js +29 -31
  126. package/es/components/FluidForm/FormContext.js +12 -6
  127. package/es/components/FluidMultiSelect/FluidMultiSelect.Skeleton.js +26 -28
  128. package/es/components/FluidMultiSelect/FluidMultiSelect.js +67 -197
  129. package/es/components/FluidNumberInput/FluidNumberInput.Skeleton.js +27 -30
  130. package/es/components/FluidNumberInput/FluidNumberInput.js +63 -147
  131. package/es/components/FluidSearch/FluidSearch.Skeleton.js +27 -30
  132. package/es/components/FluidSearch/FluidSearch.js +41 -84
  133. package/es/components/FluidSelect/FluidSelect.Skeleton.js +26 -28
  134. package/es/components/FluidSelect/FluidSelect.js +40 -76
  135. package/es/components/FluidSelect/index.js +13 -5
  136. package/es/components/FluidTextArea/FluidTextArea.Skeleton.js +27 -30
  137. package/es/components/FluidTextArea/FluidTextArea.js +48 -112
  138. package/es/components/FluidTextInput/FluidPasswordInput.js +44 -99
  139. package/es/components/FluidTextInput/FluidTextInput.Skeleton.js +27 -30
  140. package/es/components/FluidTextInput/FluidTextInput.js +49 -104
  141. package/es/components/FluidTextInput/index.js +14 -6
  142. package/es/components/FluidTimePicker/FluidTimePicker.Skeleton.js +30 -33
  143. package/es/components/FluidTimePicker/FluidTimePicker.js +68 -115
  144. package/es/components/FluidTimePickerSelect/FluidTimePickerSelect.js +28 -47
  145. package/es/components/Form/Form.js +23 -25
  146. package/es/components/FormGroup/FormGroup.js +45 -67
  147. package/es/components/FormItem/FormItem.js +23 -25
  148. package/es/components/FormLabel/FormLabel.js +28 -34
  149. package/es/components/Grid/CSSGrid.d.ts +1 -1
  150. package/es/components/Grid/CSSGrid.js +85 -127
  151. package/es/components/Grid/Column.js +192 -324
  152. package/es/components/Grid/ColumnHang.js +28 -36
  153. package/es/components/Grid/FlexGrid.js +40 -60
  154. package/es/components/Grid/Grid.js +29 -42
  155. package/es/components/Grid/GridContext.js +36 -42
  156. package/es/components/Grid/Row.js +31 -49
  157. package/es/components/Heading/index.js +36 -51
  158. package/es/components/Icon/Icon.Skeleton.js +21 -21
  159. package/es/components/IconButton/index.js +117 -178
  160. package/es/components/IconIndicator/index.d.ts +1 -1
  161. package/es/components/IconIndicator/index.js +59 -60
  162. package/es/components/IdPrefix/index.js +21 -17
  163. package/es/components/InlineCheckbox/InlineCheckbox.js +69 -113
  164. package/es/components/InlineCheckbox/index.js +12 -4
  165. package/es/components/InlineLoading/InlineLoading.js +83 -100
  166. package/es/components/InlineLoading/index.js +12 -4
  167. package/es/components/Layer/LayerContext.js +12 -4
  168. package/es/components/Layer/LayerLevel.js +20 -4
  169. package/es/components/Layer/index.js +54 -66
  170. package/es/components/Layout/index.js +77 -109
  171. package/es/components/LayoutDirection/LayoutDirection.d.ts +1 -1
  172. package/es/components/LayoutDirection/LayoutDirection.js +33 -37
  173. package/es/components/LayoutDirection/LayoutDirectionContext.js +12 -6
  174. package/es/components/LayoutDirection/useLayoutDirection.js +15 -7
  175. package/es/components/Link/Link.js +63 -108
  176. package/es/components/Link/index.js +12 -4
  177. package/es/components/ListBox/ListBox.js +78 -126
  178. package/es/components/ListBox/ListBoxField.js +24 -43
  179. package/es/components/ListBox/ListBoxMenu.js +36 -42
  180. package/es/components/ListBox/ListBoxMenuIcon.js +39 -40
  181. package/es/components/ListBox/ListBoxMenuItem.js +67 -88
  182. package/es/components/ListBox/ListBoxPropTypes.js +17 -5
  183. package/es/components/ListBox/ListBoxSelection.js +71 -96
  184. package/es/components/ListBox/index.js +16 -14
  185. package/es/components/ListBox/next/ListBoxSelection.js +79 -117
  186. package/es/components/ListBox/next/ListBoxTrigger.js +44 -48
  187. package/es/components/ListItem/ListItem.js +25 -28
  188. package/es/components/Loading/Loading.js +64 -73
  189. package/es/components/Loading/index.js +12 -4
  190. package/es/components/Menu/Menu.js +220 -363
  191. package/es/components/Menu/MenuContext.d.ts +1 -1
  192. package/es/components/Menu/MenuContext.js +41 -38
  193. package/es/components/Menu/MenuItem.js +282 -413
  194. package/es/components/MenuButton/index.js +134 -195
  195. package/es/components/Modal/Modal.js +500 -660
  196. package/es/components/Modal/ModalPresence.js +39 -37
  197. package/es/components/Modal/index.js +13 -5
  198. package/es/components/ModalWrapper/ModalWrapper.d.ts +2 -2
  199. package/es/components/ModalWrapper/ModalWrapper.js +106 -130
  200. package/es/components/MultiSelect/FilterableMultiSelect.js +605 -918
  201. package/es/components/MultiSelect/MultiSelect.js +454 -716
  202. package/es/components/MultiSelect/MultiSelectPropTypes.js +13 -30
  203. package/es/components/MultiSelect/filter.js +14 -9
  204. package/es/components/MultiSelect/tools/sorting.js +21 -34
  205. package/es/components/Notification/Notification.js +508 -785
  206. package/es/components/NumberInput/NumberFormatPropTypes.js +69 -30
  207. package/es/components/NumberInput/NumberInput.Skeleton.js +29 -33
  208. package/es/components/NumberInput/NumberInput.js +567 -947
  209. package/es/components/OrderedList/OrderedList.js +31 -44
  210. package/es/components/OverflowMenu/OverflowMenu.js +335 -450
  211. package/es/components/OverflowMenu/index.js +25 -16
  212. package/es/components/OverflowMenu/next/index.js +154 -186
  213. package/es/components/OverflowMenuItem/OverflowMenuItem.js +100 -160
  214. package/es/components/OverflowMenuItem/index.js +12 -4
  215. package/es/components/OverflowMenuV2/index.js +15 -13
  216. package/es/components/PageHeader/PageHeader.js +297 -442
  217. package/es/components/PageHeader/index.js +24 -2
  218. package/es/components/Pagination/Pagination.Skeleton.js +34 -35
  219. package/es/components/Pagination/Pagination.d.ts +1 -1
  220. package/es/components/Pagination/Pagination.js +251 -356
  221. package/es/components/Pagination/experimental/PageSelector.js +38 -54
  222. package/es/components/Pagination/experimental/Pagination-story.d.ts +114 -0
  223. package/es/components/Pagination/experimental/Pagination.js +144 -196
  224. package/es/components/PaginationNav/PaginationNav.js +320 -426
  225. package/es/components/Popover/index.js +318 -437
  226. package/es/components/PrimaryButton/PrimaryButton.js +11 -9
  227. package/es/components/ProgressBar/ProgressBar.js +117 -143
  228. package/es/components/ProgressIndicator/ProgressIndicator.Skeleton.js +42 -38
  229. package/es/components/ProgressIndicator/ProgressIndicator.js +146 -243
  230. package/es/components/RadioButton/RadioButton.Skeleton.js +23 -25
  231. package/es/components/RadioButton/RadioButton.js +101 -174
  232. package/es/components/RadioButton/index.js +12 -4
  233. package/es/components/RadioButtonGroup/RadioButtonGroup.js +135 -207
  234. package/es/components/RadioTile/RadioTile.js +104 -168
  235. package/es/components/RadioTile/index.js +12 -4
  236. package/es/components/Search/Search.Skeleton.js +28 -33
  237. package/es/components/Search/Search.js +182 -278
  238. package/es/components/Search/index.js +13 -5
  239. package/es/components/Search/utils.js +11 -3
  240. package/es/components/SecondaryButton/SecondaryButton.js +11 -9
  241. package/es/components/Select/Select.Skeleton.js +27 -30
  242. package/es/components/Select/Select.js +178 -257
  243. package/es/components/Select/index.js +13 -5
  244. package/es/components/SelectItem/SelectItem.js +33 -48
  245. package/es/components/SelectItem/index.js +12 -4
  246. package/es/components/SelectItemGroup/SelectItemGroup.js +27 -37
  247. package/es/components/ShapeIndicator/index.d.ts +1 -1
  248. package/es/components/ShapeIndicator/index.js +74 -80
  249. package/es/components/SkeletonIcon/SkeletonIcon.js +21 -24
  250. package/es/components/SkeletonPlaceholder/SkeletonPlaceholder.js +15 -24
  251. package/es/components/SkeletonText/SkeletonText.js +67 -81
  252. package/es/components/SkeletonText/index.js +12 -4
  253. package/es/components/Slider/Slider.Skeleton.js +68 -91
  254. package/es/components/Slider/Slider.js +864 -1315
  255. package/es/components/Slider/SliderHandles.js +73 -66
  256. package/es/components/Stack/HStack.js +19 -11
  257. package/es/components/Stack/Stack.js +56 -80
  258. package/es/components/Stack/VStack.js +19 -11
  259. package/es/components/StructuredList/StructuredList.Skeleton.js +55 -48
  260. package/es/components/StructuredList/StructuredList.js +178 -317
  261. package/es/components/Switch/IconSwitch.js +99 -145
  262. package/es/components/Switch/Switch.js +66 -99
  263. package/es/components/TabContent/TabContent.js +28 -34
  264. package/es/components/Tabs/Tabs.Skeleton.js +41 -36
  265. package/es/components/Tabs/Tabs.js +732 -1147
  266. package/es/components/Tabs/usePressable.js +97 -112
  267. package/es/components/Tag/DismissibleTag.js +119 -156
  268. package/es/components/Tag/OperationalTag.js +91 -111
  269. package/es/components/Tag/SelectableTag.js +94 -129
  270. package/es/components/Tag/Tag.Skeleton.js +26 -30
  271. package/es/components/Tag/Tag.js +152 -200
  272. package/es/components/Tag/isEllipsisActive.js +13 -8
  273. package/es/components/Text/Text.js +66 -79
  274. package/es/components/Text/TextDirection.js +36 -37
  275. package/es/components/Text/TextDirectionContext.js +14 -8
  276. package/es/components/Text/createTextComponent.js +21 -20
  277. package/es/components/TextArea/TextArea.Skeleton.js +25 -29
  278. package/es/components/TextArea/TextArea.js +315 -422
  279. package/es/components/TextArea/index.js +13 -5
  280. package/es/components/TextInput/ControlledPasswordInput.js +133 -198
  281. package/es/components/TextInput/PasswordInput.js +196 -303
  282. package/es/components/TextInput/TextInput.Skeleton.js +24 -28
  283. package/es/components/TextInput/TextInput.js +219 -317
  284. package/es/components/TextInput/index.js +13 -5
  285. package/es/components/TextInput/util.js +21 -25
  286. package/es/components/Theme/index.js +79 -95
  287. package/es/components/Tile/Tile.d.ts +2 -2
  288. package/es/components/Tile/Tile.js +394 -588
  289. package/es/components/TileGroup/TileGroup.js +70 -111
  290. package/es/components/TimePicker/TimePicker.d.ts +1 -1
  291. package/es/components/TimePicker/TimePicker.js +148 -247
  292. package/es/components/TimePickerSelect/TimePickerSelect.js +43 -58
  293. package/es/components/Toggle/Toggle.Skeleton.js +24 -22
  294. package/es/components/Toggle/Toggle.js +102 -171
  295. package/es/components/ToggleSmall/ToggleSmall.Skeleton.js +46 -51
  296. package/es/components/Toggletip/index.d.ts +2 -2
  297. package/es/components/Toggletip/index.js +170 -256
  298. package/es/components/Tooltip/DefinitionTooltip.js +98 -138
  299. package/es/components/Tooltip/Tooltip.js +188 -263
  300. package/es/components/TreeView/TreeContext.js +13 -5
  301. package/es/components/TreeView/TreeNode.js +361 -500
  302. package/es/components/TreeView/TreeView.js +164 -237
  303. package/es/components/UIShell/Content.js +23 -30
  304. package/es/components/UIShell/Header.js +25 -29
  305. package/es/components/UIShell/HeaderContainer.js +31 -40
  306. package/es/components/UIShell/HeaderGlobalAction.js +65 -90
  307. package/es/components/UIShell/HeaderGlobalBar.js +16 -9
  308. package/es/components/UIShell/HeaderMenu.js +141 -215
  309. package/es/components/UIShell/HeaderMenuButton.js +43 -66
  310. package/es/components/UIShell/HeaderMenuItem.js +49 -76
  311. package/es/components/UIShell/HeaderName.js +32 -44
  312. package/es/components/UIShell/HeaderNavigation.js +32 -37
  313. package/es/components/UIShell/HeaderPanel.js +74 -97
  314. package/es/components/UIShell/HeaderSideNavItems.js +27 -33
  315. package/es/components/UIShell/Link.js +29 -50
  316. package/es/components/UIShell/SideNav.js +132 -241
  317. package/es/components/UIShell/SideNavContext.js +21 -15
  318. package/es/components/UIShell/SideNavDetails.js +29 -34
  319. package/es/components/UIShell/SideNavDivider.js +21 -21
  320. package/es/components/UIShell/SideNavFooter.js +43 -52
  321. package/es/components/UIShell/SideNavHeader.js +26 -35
  322. package/es/components/UIShell/SideNavIcon.js +28 -33
  323. package/es/components/UIShell/SideNavItem.js +28 -33
  324. package/es/components/UIShell/SideNavItems.js +31 -40
  325. package/es/components/UIShell/SideNavLink.js +52 -79
  326. package/es/components/UIShell/SideNavLinkText.js +24 -25
  327. package/es/components/UIShell/SideNavMenu.js +102 -143
  328. package/es/components/UIShell/SideNavMenuItem.js +40 -52
  329. package/es/components/UIShell/SideNavSwitcher.js +59 -68
  330. package/es/components/UIShell/SkipToContent.js +28 -36
  331. package/es/components/UIShell/Switcher.js +69 -99
  332. package/es/components/UIShell/SwitcherDivider.js +16 -24
  333. package/es/components/UIShell/SwitcherItem.js +74 -114
  334. package/es/components/UnorderedList/UnorderedList.js +28 -37
  335. package/es/feature-flags.js +19 -10
  336. package/es/index.js +249 -242
  337. package/es/internal/FloatingMenu.js +246 -292
  338. package/es/internal/OptimizedResize.js +35 -46
  339. package/es/internal/Selection.js +99 -132
  340. package/es/internal/clamp.js +12 -4
  341. package/es/internal/defaultItemToString.js +15 -9
  342. package/es/internal/deprecateFieldOnObject.js +22 -14
  343. package/es/internal/environment.js +15 -7
  344. package/es/internal/getAnnouncement.js +16 -13
  345. package/es/internal/keyboard/keys.js +48 -48
  346. package/es/internal/keyboard/match.js +25 -42
  347. package/es/internal/keyboard/navigation.js +22 -27
  348. package/es/internal/noopFn.js +10 -2
  349. package/es/internal/useAttachedMenu.js +43 -51
  350. package/es/internal/useControllableState.js +43 -48
  351. package/es/internal/useDelayedState.js +30 -35
  352. package/es/internal/useEvent.js +39 -35
  353. package/es/internal/useId.js +51 -87
  354. package/es/internal/useIdPrefix.js +13 -5
  355. package/es/internal/useIsomorphicEffect.js +12 -4
  356. package/es/internal/useMatchMedia.js +29 -21
  357. package/es/internal/useMergedRefs.js +26 -22
  358. package/es/internal/useNoInteractiveChildren.js +70 -99
  359. package/es/internal/useNormalizedInputProps.js +47 -51
  360. package/es/internal/useOutsideClick.js +21 -24
  361. package/es/internal/useOverflowItems.js +89 -90
  362. package/es/internal/usePrefix.js +13 -5
  363. package/es/internal/usePresence.js +51 -54
  364. package/es/internal/usePresenceContext.js +35 -35
  365. package/es/internal/usePreviousValue.js +26 -18
  366. package/es/internal/useResizeObserver.js +57 -66
  367. package/es/internal/useSavedCallback.js +24 -17
  368. package/es/internal/utils.js +17 -9
  369. package/es/internal/warning.js +17 -22
  370. package/es/internal/wrapFocus.js +77 -98
  371. package/es/prop-types/AriaPropTypes.js +14 -6
  372. package/es/prop-types/deprecate.js +30 -27
  373. package/es/prop-types/deprecateComponent.js +17 -8
  374. package/es/prop-types/deprecateValuesWithin.js +18 -21
  375. package/es/prop-types/isRequiredOneOf.js +21 -24
  376. package/es/prop-types/requiredIfGivenPropIsTruthy.js +14 -14
  377. package/es/tools/events.js +17 -21
  378. package/es/tools/mapPopoverAlign.js +19 -18
  379. package/es/tools/mergeRefs.js +14 -17
  380. package/es/tools/setupGetInstanceId.js +16 -8
  381. package/es/tools/toggleClass.js +17 -9
  382. package/es/tools/wrapComponent.js +34 -39
  383. package/icons/index.d.ts +2 -1
  384. package/icons/index.esm.js +2 -2
  385. package/icons/index.js +7 -10
  386. package/lib/_virtual/_rolldown/runtime.js +50 -0
  387. package/lib/components/AILabel/index.d.ts +29 -2
  388. package/lib/components/AILabel/index.js +118 -171
  389. package/lib/components/AISkeleton/AISkeletonIcon.js +27 -31
  390. package/lib/components/AISkeleton/AISkeletonPlaceholder.js +29 -31
  391. package/lib/components/AISkeleton/AISkeletonText.js +30 -43
  392. package/lib/components/Accordion/Accordion.Skeleton.js +59 -84
  393. package/lib/components/Accordion/Accordion.js +47 -65
  394. package/lib/components/Accordion/AccordionItem.js +106 -160
  395. package/lib/components/Accordion/AccordionProvider.js +20 -17
  396. package/lib/components/AspectRatio/AspectRatio.js +45 -51
  397. package/lib/components/BadgeIndicator/index.js +33 -39
  398. package/lib/components/Breadcrumb/Breadcrumb.Skeleton.js +43 -55
  399. package/lib/components/Breadcrumb/Breadcrumb.js +43 -55
  400. package/lib/components/Breadcrumb/BreadcrumbItem.js +84 -87
  401. package/lib/components/Button/Button.Skeleton.js +53 -63
  402. package/lib/components/Button/Button.d.ts +1 -1
  403. package/lib/components/Button/Button.js +149 -244
  404. package/lib/components/Button/ButtonBase.js +85 -108
  405. package/lib/components/Button/index.js +13 -15
  406. package/lib/components/ButtonSet/ButtonSet.js +78 -102
  407. package/lib/components/ButtonSet/index.js +12 -9
  408. package/lib/components/ChatButton/ChatButton.Skeleton.js +31 -31
  409. package/lib/components/ChatButton/ChatButton.js +68 -83
  410. package/lib/components/Checkbox/Checkbox.Skeleton.js +30 -30
  411. package/lib/components/Checkbox/Checkbox.js +119 -198
  412. package/lib/components/Checkbox/index.js +13 -11
  413. package/lib/components/CheckboxGroup/CheckboxGroup.js +104 -152
  414. package/lib/components/ClassPrefix/index.js +24 -19
  415. package/lib/components/CodeSnippet/CodeSnippet.Skeleton.js +49 -47
  416. package/lib/components/CodeSnippet/CodeSnippet.js +215 -303
  417. package/lib/components/ComboBox/ComboBox.js +626 -974
  418. package/lib/components/ComboBox/index.js +12 -9
  419. package/lib/components/ComboButton/index.js +176 -210
  420. package/lib/components/ComposedModal/ComposedModal.js +315 -454
  421. package/lib/components/ComposedModal/ComposedModalPresence.js +49 -44
  422. package/lib/components/ComposedModal/ModalFooter.js +131 -209
  423. package/lib/components/ComposedModal/ModalHeader.js +75 -103
  424. package/lib/components/ComposedModal/useComposedModalState.js +22 -17
  425. package/lib/components/ContainedList/ContainedList.js +77 -106
  426. package/lib/components/ContainedList/ContainedListItem/ContainedListItem.js +59 -71
  427. package/lib/components/ContainedList/ContainedListItem/index.js +12 -9
  428. package/lib/components/ContainedList/index.js +18 -15
  429. package/lib/components/ContentSwitcher/ContentSwitcher.js +112 -142
  430. package/lib/components/ContextMenu/useContextMenu.js +42 -40
  431. package/lib/components/Copy/Copy.js +101 -121
  432. package/lib/components/Copy/index.js +12 -9
  433. package/lib/components/CopyButton/CopyButton.js +85 -98
  434. package/lib/components/CopyButton/index.js +12 -9
  435. package/lib/components/DangerButton/DangerButton.js +19 -13
  436. package/lib/components/DataTable/DataTable.d.ts +11 -11
  437. package/lib/components/DataTable/DataTable.js +474 -655
  438. package/lib/components/DataTable/Table.js +115 -161
  439. package/lib/components/DataTable/TableActionList.js +15 -11
  440. package/lib/components/DataTable/TableBatchAction.js +28 -38
  441. package/lib/components/DataTable/TableBatchActions.js +82 -117
  442. package/lib/components/DataTable/TableBody.js +29 -23
  443. package/lib/components/DataTable/TableCell.js +35 -50
  444. package/lib/components/DataTable/TableContainer.js +79 -86
  445. package/lib/components/DataTable/TableContext.js +15 -8
  446. package/lib/components/DataTable/TableDecoratorRow.js +34 -40
  447. package/lib/components/DataTable/TableExpandHeader.js +57 -94
  448. package/lib/components/DataTable/TableExpandRow.js +86 -123
  449. package/lib/components/DataTable/TableExpandedRow.js +49 -55
  450. package/lib/components/DataTable/TableHead.js +8 -10
  451. package/lib/components/DataTable/TableHeader.js +142 -185
  452. package/lib/components/DataTable/TableRow.d.ts +1 -1
  453. package/lib/components/DataTable/TableRow.js +46 -80
  454. package/lib/components/DataTable/TableSelectAll.js +46 -74
  455. package/lib/components/DataTable/TableSelectRow.js +67 -102
  456. package/lib/components/DataTable/TableSlugRow.js +39 -47
  457. package/lib/components/DataTable/TableToolbar.js +37 -49
  458. package/lib/components/DataTable/TableToolbarAction.js +28 -24
  459. package/lib/components/DataTable/TableToolbarContent.js +15 -11
  460. package/lib/components/DataTable/TableToolbarMenu.js +39 -50
  461. package/lib/components/DataTable/TableToolbarSearch.js +101 -191
  462. package/lib/components/DataTable/state/getDerivedStateFromProps.js +38 -47
  463. package/lib/components/DataTable/state/sortStates.js +11 -10
  464. package/lib/components/DataTable/state/sorting.js +54 -76
  465. package/lib/components/DataTable/tools/cells.js +15 -8
  466. package/lib/components/DataTable/tools/denormalize.js +27 -22
  467. package/lib/components/DataTable/tools/filter.js +21 -23
  468. package/lib/components/DataTable/tools/normalize.js +57 -76
  469. package/lib/components/DataTable/tools/sorting.js +50 -75
  470. package/lib/components/DataTableSkeleton/DataTableSkeleton.js +70 -98
  471. package/lib/components/DatePicker/DatePicker.Skeleton.js +48 -56
  472. package/lib/components/DatePicker/DatePicker.d.ts +4 -2
  473. package/lib/components/DatePicker/DatePicker.js +491 -753
  474. package/lib/components/DatePicker/DatePickerLocales.js +75 -127
  475. package/lib/components/DatePicker/index.js +13 -11
  476. package/lib/components/DatePicker/plugins/appendToPlugin.js +31 -46
  477. package/lib/components/DatePicker/plugins/fixEventsPlugin.js +127 -175
  478. package/lib/components/DatePicker/plugins/rangePlugin.d.ts +1 -1
  479. package/lib/components/DatePicker/plugins/rangePlugin.js +42 -49
  480. package/lib/components/DatePicker/utils.d.ts +7 -0
  481. package/lib/components/DatePicker/utils.js +19 -0
  482. package/lib/components/DatePickerInput/DatePickerInput.js +183 -293
  483. package/lib/components/DatePickerInput/index.js +12 -9
  484. package/lib/components/Dialog/Dialog.js +307 -576
  485. package/lib/components/Dialog/index.js +21 -13
  486. package/lib/components/Dropdown/Dropdown.Skeleton.js +30 -43
  487. package/lib/components/Dropdown/Dropdown.js +348 -539
  488. package/lib/components/Dropdown/index.js +13 -11
  489. package/lib/components/ErrorBoundary/ErrorBoundary.js +39 -62
  490. package/lib/components/ErrorBoundary/ErrorBoundaryContext.js +15 -11
  491. package/lib/components/ExpandableSearch/ExpandableSearch.js +63 -73
  492. package/lib/components/ExpandableSearch/index.js +12 -9
  493. package/lib/components/FeatureFlags/index.d.ts +11 -2
  494. package/lib/components/FeatureFlags/index.js +82 -79
  495. package/lib/components/FileUploader/FileUploader.Skeleton.js +39 -35
  496. package/lib/components/FileUploader/FileUploader.js +273 -347
  497. package/lib/components/FileUploader/FileUploaderButton.js +114 -164
  498. package/lib/components/FileUploader/FileUploaderDropContainer.js +148 -225
  499. package/lib/components/FileUploader/FileUploaderItem.js +142 -161
  500. package/lib/components/FileUploader/Filename.d.ts +1 -1
  501. package/lib/components/FileUploader/Filename.js +56 -76
  502. package/lib/components/FluidComboBox/FluidComboBox.Skeleton.js +30 -32
  503. package/lib/components/FluidComboBox/FluidComboBox.js +58 -109
  504. package/lib/components/FluidDatePicker/FluidDatePicker.Skeleton.js +60 -57
  505. package/lib/components/FluidDatePicker/FluidDatePicker.js +50 -72
  506. package/lib/components/FluidDatePickerInput/FluidDatePickerInput.js +25 -20
  507. package/lib/components/FluidDropdown/FluidDropdown.Skeleton.js +30 -32
  508. package/lib/components/FluidDropdown/FluidDropdown.js +59 -115
  509. package/lib/components/FluidForm/FluidForm.js +33 -35
  510. package/lib/components/FluidForm/FormContext.js +13 -8
  511. package/lib/components/FluidMultiSelect/FluidMultiSelect.Skeleton.js +30 -32
  512. package/lib/components/FluidMultiSelect/FluidMultiSelect.js +71 -201
  513. package/lib/components/FluidNumberInput/FluidNumberInput.Skeleton.js +31 -34
  514. package/lib/components/FluidNumberInput/FluidNumberInput.js +67 -151
  515. package/lib/components/FluidSearch/FluidSearch.Skeleton.js +31 -34
  516. package/lib/components/FluidSearch/FluidSearch.js +45 -88
  517. package/lib/components/FluidSelect/FluidSelect.Skeleton.js +30 -32
  518. package/lib/components/FluidSelect/FluidSelect.js +44 -80
  519. package/lib/components/FluidSelect/index.js +13 -11
  520. package/lib/components/FluidTextArea/FluidTextArea.Skeleton.js +31 -34
  521. package/lib/components/FluidTextArea/FluidTextArea.js +52 -116
  522. package/lib/components/FluidTextInput/FluidPasswordInput.js +48 -103
  523. package/lib/components/FluidTextInput/FluidTextInput.Skeleton.js +31 -34
  524. package/lib/components/FluidTextInput/FluidTextInput.js +53 -108
  525. package/lib/components/FluidTextInput/index.js +14 -13
  526. package/lib/components/FluidTimePicker/FluidTimePicker.Skeleton.js +34 -37
  527. package/lib/components/FluidTimePicker/FluidTimePicker.js +72 -119
  528. package/lib/components/FluidTimePickerSelect/FluidTimePickerSelect.js +31 -51
  529. package/lib/components/Form/Form.js +27 -29
  530. package/lib/components/FormGroup/FormGroup.js +49 -71
  531. package/lib/components/FormItem/FormItem.js +27 -29
  532. package/lib/components/FormLabel/FormLabel.js +32 -38
  533. package/lib/components/Grid/CSSGrid.d.ts +1 -1
  534. package/lib/components/Grid/CSSGrid.js +89 -129
  535. package/lib/components/Grid/Column.js +196 -328
  536. package/lib/components/Grid/ColumnHang.js +32 -38
  537. package/lib/components/Grid/FlexGrid.js +44 -62
  538. package/lib/components/Grid/Grid.js +32 -44
  539. package/lib/components/Grid/GridContext.js +39 -44
  540. package/lib/components/Grid/Row.js +35 -53
  541. package/lib/components/Heading/index.js +39 -53
  542. package/lib/components/Icon/Icon.Skeleton.js +25 -23
  543. package/lib/components/IconButton/index.js +121 -180
  544. package/lib/components/IconIndicator/index.d.ts +1 -1
  545. package/lib/components/IconIndicator/index.js +63 -63
  546. package/lib/components/IdPrefix/index.js +24 -19
  547. package/lib/components/InlineCheckbox/InlineCheckbox.js +72 -117
  548. package/lib/components/InlineCheckbox/index.js +12 -9
  549. package/lib/components/InlineLoading/InlineLoading.js +87 -104
  550. package/lib/components/InlineLoading/index.js +12 -9
  551. package/lib/components/Layer/LayerContext.js +14 -6
  552. package/lib/components/Layer/LayerLevel.js +20 -6
  553. package/lib/components/Layer/index.js +58 -68
  554. package/lib/components/Layout/index.js +81 -111
  555. package/lib/components/LayoutDirection/LayoutDirection.d.ts +1 -1
  556. package/lib/components/LayoutDirection/LayoutDirection.js +36 -40
  557. package/lib/components/LayoutDirection/LayoutDirectionContext.js +14 -8
  558. package/lib/components/LayoutDirection/useLayoutDirection.js +16 -9
  559. package/lib/components/Link/Link.js +67 -112
  560. package/lib/components/Link/index.js +12 -9
  561. package/lib/components/ListBox/ListBox.js +82 -130
  562. package/lib/components/ListBox/ListBoxField.js +33 -47
  563. package/lib/components/ListBox/ListBoxMenu.js +39 -46
  564. package/lib/components/ListBox/ListBoxMenuIcon.js +43 -44
  565. package/lib/components/ListBox/ListBoxMenuItem.js +71 -92
  566. package/lib/components/ListBox/ListBoxPropTypes.js +21 -9
  567. package/lib/components/ListBox/ListBoxSelection.js +75 -100
  568. package/lib/components/ListBox/index.js +17 -21
  569. package/lib/components/ListBox/next/ListBoxSelection.js +83 -121
  570. package/lib/components/ListBox/next/ListBoxTrigger.js +48 -52
  571. package/lib/components/ListItem/ListItem.js +29 -32
  572. package/lib/components/Loading/Loading.js +68 -77
  573. package/lib/components/Loading/index.js +12 -9
  574. package/lib/components/Menu/Menu.js +224 -365
  575. package/lib/components/Menu/MenuContext.d.ts +1 -1
  576. package/lib/components/Menu/MenuContext.js +42 -40
  577. package/lib/components/Menu/MenuItem.js +286 -415
  578. package/lib/components/MenuButton/index.js +138 -197
  579. package/lib/components/Modal/Modal.js +504 -665
  580. package/lib/components/Modal/ModalPresence.js +41 -39
  581. package/lib/components/Modal/index.js +13 -10
  582. package/lib/components/ModalWrapper/ModalWrapper.d.ts +2 -2
  583. package/lib/components/ModalWrapper/ModalWrapper.js +112 -134
  584. package/lib/components/MultiSelect/FilterableMultiSelect.js +611 -920
  585. package/lib/components/MultiSelect/MultiSelect.js +459 -718
  586. package/lib/components/MultiSelect/MultiSelectPropTypes.js +15 -32
  587. package/lib/components/MultiSelect/filter.js +14 -10
  588. package/lib/components/MultiSelect/tools/sorting.js +21 -35
  589. package/lib/components/Notification/Notification.js +514 -787
  590. package/lib/components/NumberInput/NumberFormatPropTypes.js +72 -33
  591. package/lib/components/NumberInput/NumberInput.Skeleton.js +33 -37
  592. package/lib/components/NumberInput/NumberInput.js +571 -950
  593. package/lib/components/OrderedList/OrderedList.js +35 -48
  594. package/lib/components/OverflowMenu/OverflowMenu.js +341 -454
  595. package/lib/components/OverflowMenu/index.js +27 -21
  596. package/lib/components/OverflowMenu/next/index.js +158 -188
  597. package/lib/components/OverflowMenuItem/OverflowMenuItem.js +104 -164
  598. package/lib/components/OverflowMenuItem/index.js +12 -9
  599. package/lib/components/OverflowMenuV2/index.js +25 -15
  600. package/lib/components/PageHeader/PageHeader.js +301 -444
  601. package/lib/components/PageHeader/index.js +27 -19
  602. package/lib/components/Pagination/Pagination.Skeleton.js +38 -37
  603. package/lib/components/Pagination/Pagination.d.ts +1 -1
  604. package/lib/components/Pagination/Pagination.js +256 -360
  605. package/lib/components/Pagination/experimental/PageSelector.js +48 -58
  606. package/lib/components/Pagination/experimental/Pagination-story.d.ts +114 -0
  607. package/lib/components/Pagination/experimental/Pagination.js +148 -200
  608. package/lib/components/PaginationNav/PaginationNav.js +324 -430
  609. package/lib/components/Popover/index.js +323 -440
  610. package/lib/components/PrimaryButton/PrimaryButton.js +19 -13
  611. package/lib/components/ProgressBar/ProgressBar.js +121 -147
  612. package/lib/components/ProgressIndicator/ProgressIndicator.Skeleton.js +46 -43
  613. package/lib/components/ProgressIndicator/ProgressIndicator.js +150 -245
  614. package/lib/components/RadioButton/RadioButton.Skeleton.js +27 -27
  615. package/lib/components/RadioButton/RadioButton.js +105 -178
  616. package/lib/components/RadioButton/index.js +12 -9
  617. package/lib/components/RadioButtonGroup/RadioButtonGroup.js +139 -211
  618. package/lib/components/RadioTile/RadioTile.js +108 -172
  619. package/lib/components/RadioTile/index.js +12 -9
  620. package/lib/components/Search/Search.Skeleton.js +32 -38
  621. package/lib/components/Search/Search.js +185 -281
  622. package/lib/components/Search/index.js +13 -11
  623. package/lib/components/Search/utils.js +11 -4
  624. package/lib/components/SecondaryButton/SecondaryButton.js +19 -13
  625. package/lib/components/Select/Select.Skeleton.js +31 -35
  626. package/lib/components/Select/Select.js +182 -261
  627. package/lib/components/Select/index.js +13 -11
  628. package/lib/components/SelectItem/SelectItem.js +37 -52
  629. package/lib/components/SelectItem/index.js +12 -9
  630. package/lib/components/SelectItemGroup/SelectItemGroup.js +31 -41
  631. package/lib/components/ShapeIndicator/index.d.ts +1 -1
  632. package/lib/components/ShapeIndicator/index.js +78 -83
  633. package/lib/components/SkeletonIcon/SkeletonIcon.js +25 -28
  634. package/lib/components/SkeletonPlaceholder/SkeletonPlaceholder.js +25 -28
  635. package/lib/components/SkeletonText/SkeletonText.js +71 -85
  636. package/lib/components/SkeletonText/index.js +12 -9
  637. package/lib/components/Slider/Slider.Skeleton.js +72 -95
  638. package/lib/components/Slider/Slider.js +868 -1319
  639. package/lib/components/Slider/SliderHandles.js +75 -68
  640. package/lib/components/Stack/HStack.js +22 -14
  641. package/lib/components/Stack/Stack.js +60 -82
  642. package/lib/components/Stack/VStack.js +22 -14
  643. package/lib/components/StructuredList/StructuredList.Skeleton.js +59 -52
  644. package/lib/components/StructuredList/StructuredList.js +182 -319
  645. package/lib/components/Switch/IconSwitch.js +103 -149
  646. package/lib/components/Switch/Switch.js +70 -103
  647. package/lib/components/TabContent/TabContent.js +32 -38
  648. package/lib/components/Tabs/Tabs.Skeleton.js +45 -41
  649. package/lib/components/Tabs/Tabs.js +738 -1151
  650. package/lib/components/Tabs/usePressable.js +98 -114
  651. package/lib/components/Tag/DismissibleTag.js +123 -160
  652. package/lib/components/Tag/OperationalTag.js +95 -115
  653. package/lib/components/Tag/SelectableTag.js +98 -133
  654. package/lib/components/Tag/Tag.Skeleton.js +30 -32
  655. package/lib/components/Tag/Tag.js +156 -204
  656. package/lib/components/Tag/isEllipsisActive.js +13 -9
  657. package/lib/components/Text/Text.js +69 -81
  658. package/lib/components/Text/TextDirection.js +39 -39
  659. package/lib/components/Text/TextDirectionContext.js +15 -10
  660. package/lib/components/Text/createTextComponent.js +29 -22
  661. package/lib/components/TextArea/TextArea.Skeleton.js +29 -34
  662. package/lib/components/TextArea/TextArea.js +319 -426
  663. package/lib/components/TextArea/index.js +13 -11
  664. package/lib/components/TextInput/ControlledPasswordInput.js +137 -202
  665. package/lib/components/TextInput/PasswordInput.js +200 -307
  666. package/lib/components/TextInput/TextInput.Skeleton.js +28 -33
  667. package/lib/components/TextInput/TextInput.js +223 -321
  668. package/lib/components/TextInput/index.js +13 -11
  669. package/lib/components/TextInput/util.js +21 -26
  670. package/lib/components/Theme/index.js +83 -97
  671. package/lib/components/Tile/Tile.d.ts +2 -2
  672. package/lib/components/Tile/Tile.js +398 -590
  673. package/lib/components/TileGroup/TileGroup.js +73 -113
  674. package/lib/components/TimePicker/TimePicker.d.ts +1 -1
  675. package/lib/components/TimePicker/TimePicker.js +152 -251
  676. package/lib/components/TimePickerSelect/TimePickerSelect.js +47 -62
  677. package/lib/components/Toggle/Toggle.Skeleton.js +28 -24
  678. package/lib/components/Toggle/Toggle.js +106 -176
  679. package/lib/components/ToggleSmall/ToggleSmall.Skeleton.js +50 -53
  680. package/lib/components/Toggletip/index.d.ts +2 -2
  681. package/lib/components/Toggletip/index.js +174 -258
  682. package/lib/components/Tooltip/DefinitionTooltip.js +102 -140
  683. package/lib/components/Tooltip/Tooltip.js +192 -265
  684. package/lib/components/TreeView/TreeContext.js +14 -7
  685. package/lib/components/TreeView/TreeNode.js +365 -504
  686. package/lib/components/TreeView/TreeView.js +169 -242
  687. package/lib/components/UIShell/Content.js +27 -34
  688. package/lib/components/UIShell/Header.js +29 -33
  689. package/lib/components/UIShell/HeaderContainer.js +34 -44
  690. package/lib/components/UIShell/HeaderGlobalAction.js +69 -94
  691. package/lib/components/UIShell/HeaderGlobalBar.js +17 -14
  692. package/lib/components/UIShell/HeaderMenu.js +146 -221
  693. package/lib/components/UIShell/HeaderMenuButton.js +47 -70
  694. package/lib/components/UIShell/HeaderMenuItem.js +53 -80
  695. package/lib/components/UIShell/HeaderName.js +36 -48
  696. package/lib/components/UIShell/HeaderNavigation.js +36 -41
  697. package/lib/components/UIShell/HeaderPanel.js +78 -101
  698. package/lib/components/UIShell/HeaderSideNavItems.js +31 -37
  699. package/lib/components/UIShell/Link.js +32 -54
  700. package/lib/components/UIShell/SideNav.js +136 -245
  701. package/lib/components/UIShell/SideNavContext.js +23 -17
  702. package/lib/components/UIShell/SideNavDetails.js +33 -38
  703. package/lib/components/UIShell/SideNavDivider.js +25 -25
  704. package/lib/components/UIShell/SideNavFooter.js +47 -56
  705. package/lib/components/UIShell/SideNavHeader.js +30 -39
  706. package/lib/components/UIShell/SideNavIcon.js +32 -37
  707. package/lib/components/UIShell/SideNavItem.js +32 -37
  708. package/lib/components/UIShell/SideNavItems.js +35 -44
  709. package/lib/components/UIShell/SideNavLink.js +56 -83
  710. package/lib/components/UIShell/SideNavLinkText.js +28 -29
  711. package/lib/components/UIShell/SideNavMenu.js +106 -148
  712. package/lib/components/UIShell/SideNavMenuItem.js +44 -56
  713. package/lib/components/UIShell/SideNavSwitcher.js +63 -72
  714. package/lib/components/UIShell/SkipToContent.js +32 -40
  715. package/lib/components/UIShell/Switcher.js +73 -103
  716. package/lib/components/UIShell/SwitcherDivider.js +26 -28
  717. package/lib/components/UIShell/SwitcherItem.js +78 -118
  718. package/lib/components/UnorderedList/UnorderedList.js +32 -41
  719. package/lib/feature-flags.js +21 -13
  720. package/lib/index.js +622 -602
  721. package/lib/internal/FloatingMenu.js +249 -296
  722. package/lib/internal/OptimizedResize.js +35 -47
  723. package/lib/internal/Selection.js +102 -134
  724. package/lib/internal/clamp.js +12 -5
  725. package/lib/internal/defaultItemToString.js +15 -10
  726. package/lib/internal/deprecateFieldOnObject.js +23 -16
  727. package/lib/internal/environment.js +15 -8
  728. package/lib/internal/getAnnouncement.js +16 -14
  729. package/lib/internal/keyboard/keys.js +48 -49
  730. package/lib/internal/keyboard/match.js +25 -43
  731. package/lib/internal/keyboard/navigation.js +22 -29
  732. package/lib/internal/noopFn.js +10 -3
  733. package/lib/internal/useAttachedMenu.js +44 -53
  734. package/lib/internal/useControllableState.js +44 -50
  735. package/lib/internal/useDelayedState.js +31 -37
  736. package/lib/internal/useEvent.js +40 -37
  737. package/lib/internal/useId.js +54 -91
  738. package/lib/internal/useIdPrefix.js +15 -7
  739. package/lib/internal/useIsomorphicEffect.js +13 -8
  740. package/lib/internal/useMatchMedia.js +30 -23
  741. package/lib/internal/useMergedRefs.js +27 -24
  742. package/lib/internal/useNoInteractiveChildren.js +73 -101
  743. package/lib/internal/useNormalizedInputProps.js +55 -53
  744. package/lib/internal/useOutsideClick.js +22 -26
  745. package/lib/internal/useOverflowItems.js +90 -94
  746. package/lib/internal/usePrefix.js +15 -7
  747. package/lib/internal/usePresence.js +52 -56
  748. package/lib/internal/usePresenceContext.js +36 -37
  749. package/lib/internal/usePreviousValue.js +27 -20
  750. package/lib/internal/useResizeObserver.js +58 -68
  751. package/lib/internal/useSavedCallback.js +25 -19
  752. package/lib/internal/utils.js +18 -11
  753. package/lib/internal/warning.js +24 -23
  754. package/lib/internal/wrapFocus.js +78 -100
  755. package/lib/prop-types/AriaPropTypes.js +17 -9
  756. package/lib/prop-types/deprecate.js +30 -29
  757. package/lib/prop-types/deprecateComponent.js +17 -10
  758. package/lib/prop-types/deprecateValuesWithin.js +18 -23
  759. package/lib/prop-types/isRequiredOneOf.js +21 -25
  760. package/lib/prop-types/requiredIfGivenPropIsTruthy.js +14 -15
  761. package/lib/tools/events.js +17 -22
  762. package/lib/tools/mapPopoverAlign.js +19 -19
  763. package/lib/tools/mergeRefs.js +14 -18
  764. package/lib/tools/setupGetInstanceId.js +16 -9
  765. package/lib/tools/toggleClass.js +17 -10
  766. package/lib/tools/wrapComponent.js +38 -43
  767. package/package.json +10 -16
  768. package/es/_virtual/_rollupPluginBabelHelpers.js +0 -40
  769. package/es/components/DataTable/stories/examples/TableToolbarFilter.d.ts +0 -54
  770. package/es/node_modules/es-toolkit/dist/compat/function/debounce.js +0 -55
  771. package/es/node_modules/es-toolkit/dist/compat/function/throttle.js +0 -23
  772. package/es/node_modules/es-toolkit/dist/function/debounce.js +0 -70
  773. package/lib/_virtual/_rollupPluginBabelHelpers.js +0 -45
  774. package/lib/components/DataTable/stories/examples/TableToolbarFilter.d.ts +0 -54
  775. package/lib/node_modules/es-toolkit/dist/compat/function/debounce.js +0 -57
  776. package/lib/node_modules/es-toolkit/dist/compat/function/throttle.js +0 -25
  777. package/lib/node_modules/es-toolkit/dist/function/debounce.js +0 -72
@@ -1,470 +1,331 @@
1
1
  /**
2
- * Copyright IBM Corp. 2016, 2023
2
+ * Copyright IBM Corp. 2016, 2026
3
3
  *
4
4
  * This source code is licensed under the Apache-2.0 license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
 
8
- 'use strict';
8
+ const require_runtime = require('../../_virtual/_rolldown/runtime.js');
9
+ const require_usePrefix = require('../../internal/usePrefix.js');
10
+ const require_keys = require('../../internal/keyboard/keys.js');
11
+ const require_match = require('../../internal/keyboard/match.js');
12
+ const require_useId = require('../../internal/useId.js');
13
+ const require_warning = require('../../internal/warning.js');
14
+ const require_deprecate = require('../../prop-types/deprecate.js');
15
+ const require_index = require('../FeatureFlags/index.js');
16
+ const require_index$1 = require('../AILabel/index.js');
17
+ const require_utils = require('../../internal/utils.js');
18
+ const require_useResizeObserver = require('../../internal/useResizeObserver.js');
19
+ const require_events = require('../../tools/events.js');
20
+ const require_mergeRefs = require('../../tools/mergeRefs.js');
21
+ const require_index$2 = require('../Layer/index.js');
22
+ const require_ModalHeader = require('./ModalHeader.js');
23
+ const require_ModalFooter = require('./ModalFooter.js');
24
+ const require_toggleClass = require('../../tools/toggleClass.js');
25
+ const require_requiredIfGivenPropIsTruthy = require('../../prop-types/requiredIfGivenPropIsTruthy.js');
26
+ const require_wrapFocus = require('../../internal/wrapFocus.js');
27
+ const require_Dialog = require('../Dialog/Dialog.js');
28
+ const require_useComposedModalState = require('./useComposedModalState.js');
29
+ const require_ComposedModalPresence = require('./ComposedModalPresence.js');
30
+ let classnames = require("classnames");
31
+ classnames = require_runtime.__toESM(classnames);
32
+ let react = require("react");
33
+ react = require_runtime.__toESM(react);
34
+ let prop_types = require("prop-types");
35
+ prop_types = require_runtime.__toESM(prop_types);
36
+ let react_jsx_runtime = require("react/jsx-runtime");
37
+ let _floating_ui_react = require("@floating-ui/react");
9
38
 
10
- Object.defineProperty(exports, '__esModule', { value: true });
11
-
12
- var _rollupPluginBabelHelpers = require('../../_virtual/_rollupPluginBabelHelpers.js');
13
- var React = require('react');
14
- var useResizeObserver = require('../../internal/useResizeObserver.js');
15
- var PropTypes = require('prop-types');
16
- var index = require('../Layer/index.js');
17
- var ModalHeader = require('./ModalHeader.js');
18
- var ModalFooter = require('./ModalFooter.js');
19
- var mergeRefs = require('../../tools/mergeRefs.js');
20
- var cx = require('classnames');
21
- var toggleClass = require('../../tools/toggleClass.js');
22
- var requiredIfGivenPropIsTruthy = require('../../prop-types/requiredIfGivenPropIsTruthy.js');
23
- var wrapFocus = require('../../internal/wrapFocus.js');
24
- var usePrefix = require('../../internal/usePrefix.js');
25
- var keys = require('../../internal/keyboard/keys.js');
26
- var match = require('../../internal/keyboard/match.js');
27
- var index$1 = require('../FeatureFlags/index.js');
28
- var events = require('../../tools/events.js');
29
- var deprecate = require('../../prop-types/deprecate.js');
30
- var Dialog = require('../Dialog/Dialog.js');
31
- var warning = require('../../internal/warning.js');
32
- var index$2 = require('../AILabel/index.js');
33
- var utils = require('../../internal/utils.js');
34
- var react = require('@floating-ui/react');
35
- var ComposedModalPresence = require('./ComposedModalPresence.js');
36
- var useId = require('../../internal/useId.js');
37
- var useComposedModalState = require('./useComposedModalState.js');
38
-
39
- const ModalBody = /*#__PURE__*/React.forwardRef(function ModalBody({
40
- className: customClassName,
41
- children,
42
- hasForm,
43
- hasScrollingContent,
44
- ...rest
45
- }, ref) {
46
- const prefix = usePrefix.usePrefix();
47
- const contentRef = React.useRef(null);
48
- const {
49
- height
50
- } = useResizeObserver.useResizeObserver({
51
- ref: contentRef
52
- });
53
-
54
- /**
55
- * isScrollable is implicitly dependent on height, when height gets updated
56
- * via `useResizeObserver`, clientHeight and scrollHeight get updated too
57
- */
58
- const isScrollable = !!contentRef.current && contentRef?.current?.scrollHeight > contentRef?.current?.clientHeight;
59
- const contentClass = cx({
60
- [`${prefix}--modal-content`]: true,
61
- [`${prefix}--modal-content--with-form`]: hasForm,
62
- [`${prefix}--modal-scroll-content`]: hasScrollingContent || isScrollable,
63
- [`${prefix}--modal-scroll-content--no-fade`]: height <= 300
64
- }, customClassName);
65
- const hasScrollingContentProps = hasScrollingContent || isScrollable ? {
66
- tabIndex: 0,
67
- role: 'region'
68
- } : {};
69
- return /*#__PURE__*/React.createElement(index.Layer, _rollupPluginBabelHelpers.extends({
70
- className: contentClass
71
- }, hasScrollingContentProps, rest, {
72
- ref: mergeRefs.mergeRefs(contentRef, ref)
73
- }), children);
39
+ //#region src/components/ComposedModal/ComposedModal.tsx
40
+ /**
41
+ * Copyright IBM Corp. 2023, 2026
42
+ *
43
+ * This source code is licensed under the Apache-2.0 license found in the
44
+ * LICENSE file in the root directory of this source tree.
45
+ */
46
+ const ModalBody = react.default.forwardRef(function ModalBody({ className: customClassName, children, hasForm, hasScrollingContent, ...rest }, ref) {
47
+ const prefix = require_usePrefix.usePrefix();
48
+ const contentRef = (0, react.useRef)(null);
49
+ const { height } = require_useResizeObserver.useResizeObserver({ ref: contentRef });
50
+ /**
51
+ * isScrollable is implicitly dependent on height, when height gets updated
52
+ * via `useResizeObserver`, clientHeight and scrollHeight get updated too
53
+ */
54
+ const isScrollable = !!contentRef.current && contentRef?.current?.scrollHeight > contentRef?.current?.clientHeight;
55
+ return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_index$2.Layer, {
56
+ className: (0, classnames.default)({
57
+ [`${prefix}--modal-content`]: true,
58
+ [`${prefix}--modal-content--with-form`]: hasForm,
59
+ [`${prefix}--modal-scroll-content`]: hasScrollingContent || isScrollable,
60
+ [`${prefix}--modal-scroll-content--no-fade`]: height <= 300
61
+ }, customClassName),
62
+ ...hasScrollingContent || isScrollable ? {
63
+ tabIndex: 0,
64
+ role: "region"
65
+ } : {},
66
+ ...rest,
67
+ ref: require_mergeRefs.mergeRefs(contentRef, ref),
68
+ children
69
+ });
74
70
  });
75
71
  ModalBody.propTypes = {
76
- /**
77
- * Required props for the accessibility label of the header
78
- */
79
- ['aria-label']: requiredIfGivenPropIsTruthy.requiredIfGivenPropIsTruthy('hasScrollingContent', PropTypes.string),
80
- /**
81
- * Specify the content to be placed in the ModalBody
82
- */
83
- children: PropTypes.node,
84
- /**
85
- * Specify an optional className to be added to the Modal Body node
86
- */
87
- className: PropTypes.string,
88
- /**
89
- * Provide whether the modal content has a form element.
90
- * If `true` is used here, non-form child content should have `cds--modal-content__regular-content` class.
91
- */
92
- hasForm: PropTypes.bool,
93
- /**
94
- * Specify whether the modal contains scrolling content
95
- */
96
- hasScrollingContent: PropTypes.bool
72
+ ["aria-label"]: require_requiredIfGivenPropIsTruthy.requiredIfGivenPropIsTruthy("hasScrollingContent", prop_types.default.string),
73
+ children: prop_types.default.node,
74
+ className: prop_types.default.string,
75
+ hasForm: prop_types.default.bool,
76
+ hasScrollingContent: prop_types.default.bool
97
77
  };
98
- const ComposedModal = /*#__PURE__*/React.forwardRef(function ComposedModal({
99
- open,
100
- ...props
101
- }, ref) {
102
- const id = useId.useId();
103
- const enablePresence = index$1.useFeatureFlag('enable-presence');
104
- const hasPresenceContext = Boolean(React.useContext(ComposedModalPresence.ComposedModalPresenceContext));
105
- const hasPresenceOptIn = enablePresence || hasPresenceContext;
106
- const exclusivePresenceContext = ComposedModalPresence.useExclusiveComposedModalPresenceContext(id);
107
-
108
- // if opt in and not exclusive to a presence context, wrap with presence
109
- if (hasPresenceOptIn && !exclusivePresenceContext) {
110
- return /*#__PURE__*/React.createElement(ComposedModalPresence.ComposedModalPresence, {
111
- open: open ?? false,
112
- _presenceId: id
113
- // do not auto enable styles for opt-in by feature flag
114
- ,
115
- _autoEnablePresence: hasPresenceContext
116
- }, /*#__PURE__*/React.createElement(ComposedModalDialog, _rollupPluginBabelHelpers.extends({
117
- open: true,
118
- ref: ref
119
- }, props)));
120
- }
121
- return /*#__PURE__*/React.createElement(ComposedModalDialog, _rollupPluginBabelHelpers.extends({
122
- ref: ref,
123
- open: open
124
- }, props));
78
+ const ComposedModal = react.default.forwardRef(function ComposedModal({ open, ...props }, ref) {
79
+ const id = require_useId.useId();
80
+ const enablePresence = require_index.useFeatureFlag("enable-presence");
81
+ const hasPresenceContext = Boolean((0, react.useContext)(require_ComposedModalPresence.ComposedModalPresenceContext));
82
+ const hasPresenceOptIn = enablePresence || hasPresenceContext;
83
+ const exclusivePresenceContext = require_ComposedModalPresence.useExclusiveComposedModalPresenceContext(id);
84
+ if (hasPresenceOptIn && !exclusivePresenceContext) return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_ComposedModalPresence.ComposedModalPresence, {
85
+ open: open ?? false,
86
+ _presenceId: id,
87
+ _autoEnablePresence: hasPresenceContext,
88
+ children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)(ComposedModalDialog, {
89
+ open: true,
90
+ ref,
91
+ ...props
92
+ })
93
+ });
94
+ return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(ComposedModalDialog, {
95
+ ref,
96
+ open,
97
+ ...props
98
+ });
125
99
  });
126
- const ComposedModalDialog = /*#__PURE__*/React.forwardRef(function ComposedModalDialog({
127
- ['aria-labelledby']: ariaLabelledBy,
128
- ['aria-label']: ariaLabel,
129
- children,
130
- className: customClassName,
131
- containerClassName,
132
- danger,
133
- decorator,
134
- isFullWidth,
135
- onClose,
136
- onKeyDown,
137
- open: externalOpen,
138
- preventCloseOnClickOutside,
139
- selectorPrimaryFocus = '[data-modal-primary-focus]',
140
- selectorsFloatingMenus,
141
- size,
142
- launcherButtonRef,
143
- slug,
144
- ...rest
145
- }, ref) {
146
- const prefix = usePrefix.usePrefix();
147
- const innerModal = React.useRef(null);
148
- const button = React.useRef(null);
149
- const startSentinel = React.useRef(null);
150
- const endSentinel = React.useRef(null);
151
- const onMouseDownTarget = React.useRef(null);
152
- const presenceContext = React.useContext(ComposedModalPresence.ComposedModalPresenceContext);
153
- const mergedRefs = react.useMergeRefs([ref, presenceContext?.presenceRef]);
154
- const enablePresence = index$1.useFeatureFlag('enable-presence') || presenceContext?.autoEnablePresence;
155
-
156
- // always mark as open when mounted with presence
157
- const open = externalOpen || enablePresence;
158
- const modalState = useComposedModalState.useComposedModalState(open);
159
- const [isOpen, setIsOpen] = presenceContext?.modalState ?? modalState;
160
- const enableDialogElement = index$1.useFeatureFlag('enable-dialog-element');
161
- const deprecatedFlag = index$1.useFeatureFlag('enable-experimental-focus-wrap-without-sentinels');
162
- const focusTrapWithoutSentinelsFlag = index$1.useFeatureFlag('enable-focus-wrap-without-sentinels');
163
- const focusTrapWithoutSentinels = deprecatedFlag || focusTrapWithoutSentinelsFlag;
164
- process.env.NODE_ENV !== "production" ? warning.warning(!(focusTrapWithoutSentinels && enableDialogElement), '`<Modal>` detected both `focusTrapWithoutSentinels` and ' + '`enableDialogElement` feature flags are enabled. The native dialog ' + 'element handles focus, so `enableDialogElement` must be off for ' + '`focusTrapWithoutSentinels` to have any effect.') : void 0;
165
-
166
- // Propagate open/close state to the document.body
167
- React.useEffect(() => {
168
- if (!enableDialogElement) {
169
- toggleClass.toggleClass(document.body, `${prefix}--body--with-modal-open`, !!open);
170
- }
171
- // eslint-disable-next-line react-hooks/exhaustive-deps -- https://github.com/carbon-design-system/carbon/issues/20452
172
- }, [open, prefix]);
173
- // Remove the document.body className on unmount
174
- React.useEffect(() => {
175
- if (!enableDialogElement) {
176
- return () => {
177
- toggleClass.toggleClass(document.body, `${prefix}--body--with-modal-open`, false);
178
- };
179
- }
180
- }, []); // eslint-disable-line react-hooks/exhaustive-deps
181
-
182
- function handleKeyDown(event) {
183
- if (!enableDialogElement) {
184
- if (focusTrapWithoutSentinels && open && match.match(event, keys.Tab) && innerModal.current) {
185
- wrapFocus.wrapFocusWithoutSentinels({
186
- containerNode: innerModal.current,
187
- currentActiveNode: event.target,
188
- event: event
189
- });
190
- }
191
- }
192
- onKeyDown?.(event);
193
- }
194
- function handleOnMouseDown(evt) {
195
- const target = evt.target;
196
- onMouseDownTarget.current = target;
197
- }
198
- function handleOnClick(evt) {
199
- const {
200
- target
201
- } = evt;
202
- const mouseDownTarget = onMouseDownTarget.current;
203
- const shouldCloseOnOutsideClick =
204
- // Passive modals can close on clicks outside the modal when
205
- // preventCloseOnClickOutside is undefined or explicitly set to false.
206
- isPassive && !preventCloseOnClickOutside ||
207
- // Non-passive modals have to explicitly opt-in for close on outside
208
- // behavior by explicitly setting preventCloseOnClickOutside to false,
209
- // rather than just leaving it undefined.
210
- !isPassive && preventCloseOnClickOutside === false;
211
- if (shouldCloseOnOutsideClick && target instanceof Node && !wrapFocus.elementOrParentIsFloatingMenu(target, selectorsFloatingMenus, prefix) && innerModal.current && !innerModal.current.contains(target) && !innerModal.current.contains(mouseDownTarget)) {
212
- closeModal(evt);
213
- }
214
- }
215
- function handleBlur({
216
- target: oldActiveNode,
217
- relatedTarget: currentActiveNode
218
- }) {
219
- if (!enableDialogElement && !focusTrapWithoutSentinels && open && currentActiveNode && oldActiveNode && innerModal.current) {
220
- const {
221
- current: bodyNode
222
- } = innerModal;
223
- const {
224
- current: startSentinelNode
225
- } = startSentinel;
226
- const {
227
- current: endSentinelNode
228
- } = endSentinel;
229
- wrapFocus.wrapFocus({
230
- bodyNode,
231
- startTrapNode: startSentinelNode,
232
- endTrapNode: endSentinelNode,
233
- currentActiveNode,
234
- oldActiveNode,
235
- selectorsFloatingMenus: selectorsFloatingMenus?.filter(Boolean),
236
- prefix
237
- });
238
- }
239
-
240
- // Adjust scroll if needed so that element with focus is not obscured by gradient
241
- const modalContent = document.querySelector(`.${prefix}--modal-content`);
242
- if (!modalContent || !modalContent.classList.contains(`${prefix}--modal-scroll-content`) || !currentActiveNode || !modalContent.contains(currentActiveNode)) {
243
- return;
244
- }
245
- currentActiveNode.scrollIntoView({
246
- block: 'center'
247
- });
248
- }
249
- function closeModal(evt) {
250
- if (!onClose || onClose(evt) !== false) {
251
- setIsOpen(false);
252
- }
253
- }
254
- const modalClass = cx(`${prefix}--modal`, {
255
- 'is-visible': enablePresence || isOpen,
256
- [`${prefix}--modal--enable-presence`]: presenceContext?.autoEnablePresence,
257
- [`${prefix}--modal--danger`]: danger,
258
- [`${prefix}--modal--slug`]: slug,
259
- [`${prefix}--modal--decorator`]: decorator
260
- }, customClassName);
261
- const containerClass = cx(`${prefix}--modal-container`, size && `${prefix}--modal-container--${size}`, isFullWidth && `${prefix}--modal-container--full-width`, containerClassName);
262
-
263
- // Generate aria-label based on Modal Header label if one is not provided (L253)
264
- let generatedAriaLabel;
265
- const childrenWithProps = React.Children.toArray(children).map(child => {
266
- if (utils.isComponentElement(child, ModalHeader.ModalHeader)) {
267
- generatedAriaLabel = child.props.label;
268
- return /*#__PURE__*/React.cloneElement(child, {
269
- closeModal
270
- });
271
- }
272
- if (utils.isComponentElement(child, ModalFooter.ModalFooter)) {
273
- return /*#__PURE__*/React.cloneElement(child, {
274
- closeModal,
275
- inputref: button,
276
- danger
277
- });
278
- }
279
- return child;
280
- });
281
-
282
- // Modals without a footer are considered passive and carry limitations as
283
- // outlined in the design spec.
284
- const containsModalFooter = React.Children.toArray(childrenWithProps).some(child => utils.isComponentElement(child, ModalFooter.ModalFooter));
285
- const isPassive = !containsModalFooter;
286
- process.env.NODE_ENV !== "production" ? warning.warning(!(!isPassive && preventCloseOnClickOutside === false), '`<ComposedModal>` prop `preventCloseOnClickOutside` should not be ' + '`false` when `<ModalFooter>` is present. Transactional, non-passive ' + 'Modals should not be dissmissable by clicking outside. ' + 'See: https://carbondesignsystem.com/components/modal/usage/#transactional-modal') : void 0;
287
- React.useEffect(() => {
288
- if (!open) return;
289
- const handleEscapeKey = event => {
290
- if (match.match(event, keys.Escape)) {
291
- event.preventDefault();
292
- event.stopPropagation();
293
- closeModal(event);
294
- }
295
- };
296
- document.addEventListener('keydown', handleEscapeKey, true);
297
- return () => {
298
- document.removeEventListener('keydown', handleEscapeKey, true);
299
- };
300
- // eslint-disable-next-line react-hooks/exhaustive-deps -- https://github.com/carbon-design-system/carbon/issues/20452
301
- }, [open]);
302
- React.useEffect(() => {
303
- if (!enableDialogElement && !enablePresence && !open && launcherButtonRef) {
304
- setTimeout(() => {
305
- launcherButtonRef.current?.focus();
306
- });
307
- }
308
- }, [enableDialogElement, enablePresence, open, launcherButtonRef]);
309
- // Focus launcherButtonRef on unmount
310
- React.useEffect(() => {
311
- const launcherButton = launcherButtonRef?.current;
312
- return () => {
313
- if (enablePresence && launcherButton) {
314
- setTimeout(() => {
315
- launcherButton.focus();
316
- });
317
- }
318
- };
319
- }, [enablePresence, launcherButtonRef]);
320
- React.useEffect(() => {
321
- if (!enableDialogElement) {
322
- const initialFocus = focusContainerElement => {
323
- const containerElement = focusContainerElement || innerModal.current;
324
- const primaryFocusElement = containerElement ? containerElement.querySelector(danger ? `.${prefix}--btn--secondary` : selectorPrimaryFocus) : null;
325
- if (primaryFocusElement) {
326
- return primaryFocusElement;
327
- }
328
- return button && button.current;
329
- };
330
- const focusButton = focusContainerElement => {
331
- const target = initialFocus(focusContainerElement);
332
- const closeButton = focusContainerElement.querySelector(`.${prefix}--modal-close`);
333
- if (target) {
334
- target.focus();
335
- } else if (!target && closeButton) {
336
- closeButton?.focus();
337
- }
338
- };
339
- if (open && isOpen) {
340
- focusButton(innerModal.current);
341
- }
342
- }
343
- // eslint-disable-next-line react-hooks/exhaustive-deps -- https://github.com/carbon-design-system/carbon/issues/20452
344
- }, [open, selectorPrimaryFocus, isOpen]);
345
-
346
- // AILabel is always size `sm`
347
- const candidate = slug ?? decorator;
348
- const candidateIsAILabel = utils.isComponentElement(candidate, index$2.AILabel);
349
- const normalizedDecorator = candidateIsAILabel ? /*#__PURE__*/React.cloneElement(candidate, {
350
- size: 'sm'
351
- }) : candidate;
352
- const modalBody = enableDialogElement ? /*#__PURE__*/React.createElement(Dialog.Dialog, {
353
- open: open,
354
- focusAfterCloseRef: launcherButtonRef,
355
- modal: true,
356
- className: containerClass,
357
- "aria-label": ariaLabel ? ariaLabel : generatedAriaLabel,
358
- "aria-labelledby": ariaLabelledBy,
359
- "data-exiting": presenceContext?.isExiting || undefined
360
- }, /*#__PURE__*/React.createElement("div", {
361
- ref: innerModal,
362
- className: `${prefix}--modal-container-body`
363
- }, slug ? normalizedDecorator : decorator ? /*#__PURE__*/React.createElement("div", {
364
- className: `${prefix}--modal--inner__decorator`
365
- }, normalizedDecorator) : '', childrenWithProps)) : /*#__PURE__*/React.createElement("div", {
366
- className: containerClass,
367
- role: "dialog",
368
- "aria-modal": "true",
369
- "aria-label": ariaLabel ? ariaLabel : generatedAriaLabel,
370
- "aria-labelledby": ariaLabelledBy
371
- }, !focusTrapWithoutSentinels && /*#__PURE__*/React.createElement("button", {
372
- type: "button",
373
- ref: startSentinel,
374
- className: `${prefix}--visually-hidden`
375
- }, "Focus sentinel"), /*#__PURE__*/React.createElement("div", {
376
- ref: innerModal,
377
- className: `${prefix}--modal-container-body`
378
- }, slug ? normalizedDecorator : decorator ? /*#__PURE__*/React.createElement("div", {
379
- className: `${prefix}--modal--inner__decorator`
380
- }, normalizedDecorator) : '', childrenWithProps), !focusTrapWithoutSentinels && /*#__PURE__*/React.createElement("button", {
381
- type: "button",
382
- ref: endSentinel,
383
- className: `${prefix}--visually-hidden`
384
- }, "Focus sentinel"));
385
- return /*#__PURE__*/React.createElement(index.Layer, _rollupPluginBabelHelpers.extends({}, rest, {
386
- level: 0,
387
- role: "presentation",
388
- ref: mergedRefs,
389
- "aria-hidden": !open,
390
- onBlur: handleBlur,
391
- onClick: events.composeEventHandlers([rest?.onClick, handleOnClick]),
392
- onMouseDown: events.composeEventHandlers([rest?.onMouseDown, handleOnMouseDown]),
393
- onKeyDown: handleKeyDown,
394
- className: modalClass,
395
- "data-exiting": presenceContext?.isExiting || undefined
396
- }), modalBody);
100
+ const ComposedModalDialog = react.default.forwardRef(function ComposedModalDialog({ ["aria-labelledby"]: ariaLabelledBy, ["aria-label"]: ariaLabel, children, className: customClassName, containerClassName, danger, decorator, isFullWidth, onClose, onKeyDown, open: externalOpen, preventCloseOnClickOutside, selectorPrimaryFocus = "[data-modal-primary-focus]", selectorsFloatingMenus, size, launcherButtonRef, slug, ...rest }, ref) {
101
+ const prefix = require_usePrefix.usePrefix();
102
+ const innerModal = (0, react.useRef)(null);
103
+ const button = (0, react.useRef)(null);
104
+ const startSentinel = (0, react.useRef)(null);
105
+ const endSentinel = (0, react.useRef)(null);
106
+ const onMouseDownTarget = (0, react.useRef)(null);
107
+ const presenceContext = (0, react.useContext)(require_ComposedModalPresence.ComposedModalPresenceContext);
108
+ const mergedRefs = (0, _floating_ui_react.useMergeRefs)([ref, presenceContext?.presenceRef]);
109
+ const enablePresence = require_index.useFeatureFlag("enable-presence") || presenceContext?.autoEnablePresence;
110
+ const open = externalOpen || enablePresence;
111
+ const modalState = require_useComposedModalState.useComposedModalState(open);
112
+ const [isOpen, setIsOpen] = presenceContext?.modalState ?? modalState;
113
+ const enableDialogElement = require_index.useFeatureFlag("enable-dialog-element");
114
+ const deprecatedFlag = require_index.useFeatureFlag("enable-experimental-focus-wrap-without-sentinels");
115
+ const focusTrapWithoutSentinelsFlag = require_index.useFeatureFlag("enable-focus-wrap-without-sentinels");
116
+ const focusTrapWithoutSentinels = deprecatedFlag || focusTrapWithoutSentinelsFlag;
117
+ require_warning.warning(!(focusTrapWithoutSentinels && enableDialogElement), "`<Modal>` detected both `focusTrapWithoutSentinels` and `enableDialogElement` feature flags are enabled. The native dialog element handles focus, so `enableDialogElement` must be off for `focusTrapWithoutSentinels` to have any effect.");
118
+ (0, react.useEffect)(() => {
119
+ if (!enableDialogElement) require_toggleClass.toggleClass(document.body, `${prefix}--body--with-modal-open`, !!open);
120
+ }, [open, prefix]);
121
+ (0, react.useEffect)(() => {
122
+ if (!enableDialogElement) return () => {
123
+ require_toggleClass.toggleClass(document.body, `${prefix}--body--with-modal-open`, false);
124
+ };
125
+ }, []);
126
+ function handleKeyDown(event) {
127
+ if (!enableDialogElement) {
128
+ if (focusTrapWithoutSentinels && open && require_match.match(event, require_keys.Tab) && innerModal.current) require_wrapFocus.wrapFocusWithoutSentinels({
129
+ containerNode: innerModal.current,
130
+ currentActiveNode: event.target,
131
+ event
132
+ });
133
+ }
134
+ onKeyDown?.(event);
135
+ }
136
+ function handleOnMouseDown(evt) {
137
+ onMouseDownTarget.current = evt.target;
138
+ }
139
+ function handleOnClick(evt) {
140
+ const { target } = evt;
141
+ const mouseDownTarget = onMouseDownTarget.current;
142
+ if ((isPassive && !preventCloseOnClickOutside || !isPassive && preventCloseOnClickOutside === false) && target instanceof Node && !require_wrapFocus.elementOrParentIsFloatingMenu(target, selectorsFloatingMenus, prefix) && innerModal.current && !innerModal.current.contains(target) && !innerModal.current.contains(mouseDownTarget)) closeModal(evt);
143
+ }
144
+ function handleBlur({ target: oldActiveNode, relatedTarget: currentActiveNode }) {
145
+ if (!enableDialogElement && !focusTrapWithoutSentinels && open && currentActiveNode && oldActiveNode && innerModal.current) {
146
+ const { current: bodyNode } = innerModal;
147
+ const { current: startSentinelNode } = startSentinel;
148
+ const { current: endSentinelNode } = endSentinel;
149
+ require_wrapFocus.wrapFocus({
150
+ bodyNode,
151
+ startTrapNode: startSentinelNode,
152
+ endTrapNode: endSentinelNode,
153
+ currentActiveNode,
154
+ oldActiveNode,
155
+ selectorsFloatingMenus: selectorsFloatingMenus?.filter(Boolean),
156
+ prefix
157
+ });
158
+ }
159
+ const modalContent = document.querySelector(`.${prefix}--modal-content`);
160
+ if (!modalContent || !modalContent.classList.contains(`${prefix}--modal-scroll-content`) || !currentActiveNode || !modalContent.contains(currentActiveNode)) return;
161
+ currentActiveNode.scrollIntoView({ block: "center" });
162
+ }
163
+ function closeModal(evt) {
164
+ if (!onClose || onClose(evt) !== false) setIsOpen(false);
165
+ }
166
+ const modalClass = (0, classnames.default)(`${prefix}--modal`, {
167
+ "is-visible": enablePresence || isOpen,
168
+ [`${prefix}--modal--enable-presence`]: presenceContext?.autoEnablePresence,
169
+ [`${prefix}--modal--danger`]: danger,
170
+ [`${prefix}--modal--slug`]: slug,
171
+ [`${prefix}--modal--decorator`]: decorator
172
+ }, customClassName);
173
+ const containerClass = (0, classnames.default)(`${prefix}--modal-container`, size && `${prefix}--modal-container--${size}`, isFullWidth && `${prefix}--modal-container--full-width`, containerClassName);
174
+ let generatedAriaLabel;
175
+ const childrenWithProps = react.default.Children.toArray(children).map((child) => {
176
+ if (require_utils.isComponentElement(child, require_ModalHeader.ModalHeader)) {
177
+ generatedAriaLabel = child.props.label;
178
+ return (0, react.cloneElement)(child, { closeModal });
179
+ }
180
+ if (require_utils.isComponentElement(child, require_ModalFooter.ModalFooter)) return (0, react.cloneElement)(child, {
181
+ closeModal,
182
+ inputref: button,
183
+ danger
184
+ });
185
+ return child;
186
+ });
187
+ const isPassive = !react.Children.toArray(childrenWithProps).some((child) => require_utils.isComponentElement(child, require_ModalFooter.ModalFooter));
188
+ require_warning.warning(!(!isPassive && preventCloseOnClickOutside === false), "`<ComposedModal>` prop `preventCloseOnClickOutside` should not be `false` when `<ModalFooter>` is present. Transactional, non-passive Modals should not be dissmissable by clicking outside. See: https://carbondesignsystem.com/components/modal/usage/#transactional-modal");
189
+ (0, react.useEffect)(() => {
190
+ if (!open) return;
191
+ const handleEscapeKey = (event) => {
192
+ if (require_match.match(event, require_keys.Escape)) {
193
+ event.preventDefault();
194
+ event.stopPropagation();
195
+ closeModal(event);
196
+ }
197
+ };
198
+ document.addEventListener("keydown", handleEscapeKey, true);
199
+ return () => {
200
+ document.removeEventListener("keydown", handleEscapeKey, true);
201
+ };
202
+ }, [open]);
203
+ (0, react.useEffect)(() => {
204
+ if (!enableDialogElement && !enablePresence && !open && launcherButtonRef) setTimeout(() => {
205
+ launcherButtonRef.current?.focus();
206
+ });
207
+ }, [
208
+ enableDialogElement,
209
+ enablePresence,
210
+ open,
211
+ launcherButtonRef
212
+ ]);
213
+ (0, react.useEffect)(() => {
214
+ const launcherButton = launcherButtonRef?.current;
215
+ return () => {
216
+ if (enablePresence && launcherButton) setTimeout(() => {
217
+ launcherButton.focus();
218
+ });
219
+ };
220
+ }, [enablePresence, launcherButtonRef]);
221
+ (0, react.useEffect)(() => {
222
+ if (!enableDialogElement) {
223
+ const initialFocus = (focusContainerElement) => {
224
+ const containerElement = focusContainerElement || innerModal.current;
225
+ const primaryFocusElement = containerElement ? containerElement.querySelector(danger ? `.${prefix}--btn--secondary` : selectorPrimaryFocus) : null;
226
+ if (primaryFocusElement) return primaryFocusElement;
227
+ return button && button.current;
228
+ };
229
+ const focusButton = (focusContainerElement) => {
230
+ const target = initialFocus(focusContainerElement);
231
+ const closeButton = focusContainerElement.querySelector(`.${prefix}--modal-close`);
232
+ if (target) target.focus();
233
+ else if (!target && closeButton) closeButton?.focus();
234
+ };
235
+ if (open && isOpen) focusButton(innerModal.current);
236
+ }
237
+ }, [
238
+ open,
239
+ selectorPrimaryFocus,
240
+ isOpen
241
+ ]);
242
+ const candidate = slug ?? decorator;
243
+ const normalizedDecorator = require_utils.isComponentElement(candidate, require_index$1.AILabel) ? (0, react.cloneElement)(candidate, { size: "sm" }) : candidate;
244
+ const modalBody = enableDialogElement ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_Dialog.Dialog, {
245
+ open,
246
+ focusAfterCloseRef: launcherButtonRef,
247
+ modal: true,
248
+ className: containerClass,
249
+ "aria-label": ariaLabel ? ariaLabel : generatedAriaLabel,
250
+ "aria-labelledby": ariaLabelledBy,
251
+ "data-exiting": presenceContext?.isExiting || void 0,
252
+ children: /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
253
+ ref: innerModal,
254
+ className: `${prefix}--modal-container-body`,
255
+ children: [slug ? normalizedDecorator : decorator ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("div", {
256
+ className: `${prefix}--modal--inner__decorator`,
257
+ children: normalizedDecorator
258
+ }) : "", childrenWithProps]
259
+ })
260
+ }) : /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
261
+ className: containerClass,
262
+ role: "dialog",
263
+ "aria-modal": "true",
264
+ "aria-label": ariaLabel ? ariaLabel : generatedAriaLabel,
265
+ "aria-labelledby": ariaLabelledBy,
266
+ children: [
267
+ !focusTrapWithoutSentinels && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
268
+ type: "button",
269
+ ref: startSentinel,
270
+ className: `${prefix}--visually-hidden`,
271
+ children: "Focus sentinel"
272
+ }),
273
+ /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("div", {
274
+ ref: innerModal,
275
+ className: `${prefix}--modal-container-body`,
276
+ children: [slug ? normalizedDecorator : decorator ? /* @__PURE__ */ (0, react_jsx_runtime.jsx)("div", {
277
+ className: `${prefix}--modal--inner__decorator`,
278
+ children: normalizedDecorator
279
+ }) : "", childrenWithProps]
280
+ }),
281
+ !focusTrapWithoutSentinels && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("button", {
282
+ type: "button",
283
+ ref: endSentinel,
284
+ className: `${prefix}--visually-hidden`,
285
+ children: "Focus sentinel"
286
+ })
287
+ ]
288
+ });
289
+ return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_index$2.Layer, {
290
+ ...rest,
291
+ level: 0,
292
+ role: "presentation",
293
+ ref: mergedRefs,
294
+ "aria-hidden": !open,
295
+ onBlur: handleBlur,
296
+ onClick: require_events.composeEventHandlers([rest?.onClick, handleOnClick]),
297
+ onMouseDown: require_events.composeEventHandlers([rest?.onMouseDown, handleOnMouseDown]),
298
+ onKeyDown: handleKeyDown,
299
+ className: modalClass,
300
+ "data-exiting": presenceContext?.isExiting || void 0,
301
+ children: modalBody
302
+ });
397
303
  });
398
304
  ComposedModal.propTypes = {
399
- /**
400
- * Specify the aria-label for cds--modal-container
401
- */
402
- ['aria-label']: PropTypes.string,
403
- /**
404
- * Specify the aria-labelledby for cds--modal-container
405
- */
406
- ['aria-labelledby']: PropTypes.string,
407
- /**
408
- * Specify the content to be placed in the ComposedModal
409
- */
410
- children: PropTypes.node,
411
- /**
412
- * Specify an optional className to be applied to the modal root node
413
- */
414
- className: PropTypes.string,
415
- /**
416
- * Specify an optional className to be applied to the modal node
417
- */
418
- containerClassName: PropTypes.string,
419
- /**
420
- * Specify whether the primary button should be replaced with danger button.
421
- * Note that this prop is not applied if you render primary/danger button by yourself
422
- */
423
- danger: PropTypes.bool,
424
- /**
425
- * **Experimental**: Provide a `decorator` component to be rendered inside the `ComposedModal` component
426
- */
427
- decorator: PropTypes.node,
428
- /**
429
- * Specify whether the Modal content should have any inner padding.
430
- */
431
- isFullWidth: PropTypes.bool,
432
- /**
433
- * Provide a ref to return focus to once the modal is closed.
434
- */
435
- launcherButtonRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({
436
- current: PropTypes.any
437
- })]),
438
- /**
439
- * Specify an optional handler for closing modal.
440
- * Returning `false` here prevents closing modal.
441
- */
442
- onClose: PropTypes.func,
443
- /**
444
- * Specify an optional handler for the `onKeyDown` event. Called for all
445
- * `onKeyDown` events that do not close the modal
446
- */
447
- onKeyDown: PropTypes.func,
448
- /**
449
- * Specify whether the Modal is currently open
450
- */
451
- open: PropTypes.bool,
452
- preventCloseOnClickOutside: PropTypes.bool,
453
- /**
454
- * Specify a CSS selector that matches the DOM element that should be
455
- * focused when the Modal opens
456
- */
457
- selectorPrimaryFocus: PropTypes.string,
458
- /**
459
- * Specify the CSS selectors that match the floating menus
460
- */
461
- selectorsFloatingMenus: PropTypes.arrayOf(PropTypes.string.isRequired),
462
- /**
463
- * Specify the size variant.
464
- */
465
- size: PropTypes.oneOf(['xs', 'sm', 'md', 'lg']),
466
- slug: deprecate.deprecate(PropTypes.node, 'The `slug` prop for `ComposedModal` has ' + 'been deprecated in favor of the new `decorator` prop. It will be removed in the next major release.')
305
+ ["aria-label"]: prop_types.default.string,
306
+ ["aria-labelledby"]: prop_types.default.string,
307
+ children: prop_types.default.node,
308
+ className: prop_types.default.string,
309
+ containerClassName: prop_types.default.string,
310
+ danger: prop_types.default.bool,
311
+ decorator: prop_types.default.node,
312
+ isFullWidth: prop_types.default.bool,
313
+ launcherButtonRef: prop_types.default.oneOfType([prop_types.default.func, prop_types.default.shape({ current: prop_types.default.any })]),
314
+ onClose: prop_types.default.func,
315
+ onKeyDown: prop_types.default.func,
316
+ open: prop_types.default.bool,
317
+ preventCloseOnClickOutside: prop_types.default.bool,
318
+ selectorPrimaryFocus: prop_types.default.string,
319
+ selectorsFloatingMenus: prop_types.default.arrayOf(prop_types.default.string.isRequired),
320
+ size: prop_types.default.oneOf([
321
+ "xs",
322
+ "sm",
323
+ "md",
324
+ "lg"
325
+ ]),
326
+ slug: require_deprecate.deprecate(prop_types.default.node, "The `slug` prop for `ComposedModal` has been deprecated in favor of the new `decorator` prop. It will be removed in the next major release.")
467
327
  };
468
328
 
329
+ //#endregion
469
330
  exports.ModalBody = ModalBody;
470
- exports.default = ComposedModal;
331
+ exports.default = ComposedModal;