@carbon/ibm-products 2.89.0 → 2.90.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 (919) hide show
  1. package/css/carbon.css +374 -417
  2. package/css/carbon.css.map +1 -1
  3. package/css/index-full-carbon.css +496 -430
  4. package/css/index-full-carbon.css.map +1 -1
  5. package/css/index-full-carbon.min.css +1 -1
  6. package/css/index-full-carbon.min.css.map +1 -1
  7. package/css/index-without-carbon-released-only.css +117 -13
  8. package/css/index-without-carbon-released-only.css.map +1 -1
  9. package/css/index-without-carbon-released-only.min.css +1 -1
  10. package/css/index-without-carbon-released-only.min.css.map +1 -1
  11. package/css/index-without-carbon.css +143 -13
  12. package/css/index-without-carbon.css.map +1 -1
  13. package/css/index-without-carbon.min.css +1 -1
  14. package/css/index-without-carbon.min.css.map +1 -1
  15. package/css/index.css +359 -283
  16. package/css/index.css.map +1 -1
  17. package/css/index.min.css +1 -1
  18. package/css/index.min.css.map +1 -1
  19. package/es/_virtual/_rolldown/runtime.js +13 -22
  20. package/es/components/APIKeyModal/APIKeyDownloader.js +19 -3
  21. package/es/components/APIKeyModal/APIKeyModal.js +161 -3
  22. package/es/components/AboutModal/AboutModal.js +44 -3
  23. package/es/components/ActionBar/ActionBar.js +41 -3
  24. package/es/components/ActionBar/ActionBarItem.js +30 -3
  25. package/es/components/ActionBar/ActionBarOverflowItems.js +20 -3
  26. package/es/components/ActionSet/ActionSet.js +35 -3
  27. package/es/components/AddSelect/AddSelect.js +7 -3
  28. package/es/components/AddSelect/AddSelectBody.js +3 -3
  29. package/es/components/AddSelect/AddSelectBreadcrumbs.js +1 -3
  30. package/es/components/AddSelect/AddSelectColumn.js +2 -4
  31. package/es/components/AddSelect/AddSelectFilter.js +1 -3
  32. package/es/components/AddSelect/AddSelectFormControl.js +1 -3
  33. package/es/components/AddSelect/AddSelectList.js +1 -3
  34. package/es/components/AddSelect/AddSelectMetaPanel.js +1 -3
  35. package/es/components/AddSelect/AddSelectRow.js +1 -3
  36. package/es/components/AddSelect/AddSelectSidebar.js +1 -3
  37. package/es/components/AddSelect/AddSelectSort.js +1 -3
  38. package/es/components/AddSelect/add-select-utils.js +1 -2
  39. package/es/components/AddSelect/hooks/useFocus.js +1 -3
  40. package/es/components/AddSelect/hooks/useItemSort.js +1 -3
  41. package/es/components/AddSelect/hooks/useParentSelect.js +1 -3
  42. package/es/components/AddSelect/hooks/usePath.js +1 -3
  43. package/es/components/BigNumber/BigNumber.js +52 -6
  44. package/es/components/BigNumber/BigNumberSkeleton.js +12 -9
  45. package/es/components/BigNumber/constants.js +1 -19
  46. package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +37 -3
  47. package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +28 -4
  48. package/es/components/Card/Card.js +20 -3
  49. package/es/components/Card/CardFooter.js +1 -3
  50. package/es/components/Card/CardHeader.js +12 -3
  51. package/es/components/Carousel/Carousel.js +33 -3
  52. package/es/components/Carousel/CarouselItem.js +7 -3
  53. package/es/components/Cascade/Cascade.js +12 -3
  54. package/es/components/Checklist/Checklist.js +65 -11
  55. package/es/components/Checklist/ChecklistChart.js +13 -7
  56. package/es/components/Checklist/ChecklistIcon.js +17 -11
  57. package/es/components/Coachmark/Coachmark.js +60 -6
  58. package/es/components/Coachmark/CoachmarkDragbar.js +17 -3
  59. package/es/components/Coachmark/CoachmarkHeader.js +13 -3
  60. package/es/components/Coachmark/CoachmarkOverlay.js +24 -6
  61. package/es/components/Coachmark/CoachmarkTagline.js +13 -3
  62. package/es/components/Coachmark/next/Coachmark/Coachmark.d.ts +5 -1
  63. package/es/components/Coachmark/next/Coachmark/Coachmark.d.ts.map +1 -1
  64. package/es/components/Coachmark/next/Coachmark/Coachmark.js +56 -9
  65. package/es/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.js +17 -3
  66. package/es/components/Coachmark/next/Coachmark/CoachmarkContent.js +8 -3
  67. package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +18 -3
  68. package/es/components/Coachmark/next/Coachmark/ContentBody.js +8 -3
  69. package/es/components/Coachmark/next/Coachmark/ContentHeader.js +13 -3
  70. package/es/components/Coachmark/next/Coachmark/context.js +1 -3
  71. package/es/components/Coachmark/utils/constants.js +15 -23
  72. package/es/components/Coachmark/utils/context.js +1 -3
  73. package/es/components/Coachmark/utils/enums.js +1 -2
  74. package/es/components/Coachmark/utils/hooks.js +3 -5
  75. package/es/components/CoachmarkBeacon/CoachmarkBeacon.js +17 -3
  76. package/es/components/CoachmarkButton/CoachmarkButton.js +7 -3
  77. package/es/components/CoachmarkFixed/CoachmarkFixed.js +31 -5
  78. package/es/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +14 -3
  79. package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +33 -3
  80. package/es/components/CoachmarkStack/CoachmarkStack.js +43 -5
  81. package/es/components/CoachmarkStack/CoachmarkStackHome.js +41 -3
  82. package/es/components/ComboButton/ComboButton.js +5 -3
  83. package/es/components/ComboButton/ComboButtonItem/index.js +5 -3
  84. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +48 -5
  85. package/es/components/ConditionBuilder/ConditionBuilder.d.ts.map +1 -1
  86. package/es/components/ConditionBuilder/ConditionBuilder.js +65 -4
  87. package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +13 -0
  88. package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts.map +1 -1
  89. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts.map +1 -1
  90. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +15 -5
  91. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +29 -3
  92. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +39 -3
  93. package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +12 -5
  94. package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +1 -3
  95. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts.map +1 -1
  96. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +37 -15
  97. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts.map +1 -1
  98. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +35 -3
  99. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +1 -2
  100. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +37 -3
  101. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +10 -3
  102. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +10 -3
  103. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +10 -3
  104. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +10 -3
  105. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +13 -3
  106. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +10 -3
  107. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts.map +1 -1
  108. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +29 -7
  109. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +10 -3
  110. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.js +6 -8
  111. package/es/components/ConditionBuilder/utils/useDataConfigs.js +1 -3
  112. package/es/components/ConditionBuilder/utils/useEvent.js +1 -3
  113. package/es/components/ConditionBuilder/utils/useTranslations.js +1 -3
  114. package/es/components/ConditionBuilder/utils/util.js +1 -3
  115. package/es/components/CreateFullPage/CreateFullPage.js +79 -3
  116. package/es/components/CreateFullPage/CreateFullPageStep.js +51 -3
  117. package/es/components/CreateInfluencer/CreateInfluencer.js +16 -3
  118. package/es/components/CreateModal/CreateModal.js +43 -3
  119. package/es/components/CreateSidePanel/CreateSidePanel.js +59 -3
  120. package/es/components/CreateTearsheet/CreateTearsheet.js +82 -4
  121. package/es/components/CreateTearsheet/CreateTearsheetDivider.js +6 -4
  122. package/es/components/CreateTearsheet/CreateTearsheetStep.js +72 -3
  123. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +56 -3
  124. package/es/components/DataSpreadsheet/DataSpreadsheet.js +61 -3
  125. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +115 -3
  126. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +76 -3
  127. package/es/components/DataSpreadsheet/hooks/useMoveActiveCell.js +1 -3
  128. package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +1 -3
  129. package/es/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +1 -3
  130. package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +1 -3
  131. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +1 -3
  132. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +1 -3
  133. package/es/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +1 -3
  134. package/es/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +1 -3
  135. package/es/components/DataSpreadsheet/utils/checkForHoldingKey.js +1 -2
  136. package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +1 -3
  137. package/es/components/DataSpreadsheet/utils/commonEventHandlers.js +1 -3
  138. package/es/components/DataSpreadsheet/utils/createActiveCellFn.js +1 -3
  139. package/es/components/DataSpreadsheet/utils/createCellSelectionArea.js +1 -3
  140. package/es/components/DataSpreadsheet/utils/getCellSize.js +1 -3
  141. package/es/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +1 -2
  142. package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +1 -3
  143. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +1 -3
  144. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +1 -3
  145. package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +1 -3
  146. package/es/components/DataSpreadsheet/utils/handleEditSubmit.js +1 -3
  147. package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +1 -3
  148. package/es/components/DataSpreadsheet/utils/handleMultipleKeys.js +1 -3
  149. package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +1 -3
  150. package/es/components/DataSpreadsheet/utils/removeCellSelections.js +1 -3
  151. package/es/components/DataSpreadsheet/utils/selectAllCells.js +1 -3
  152. package/es/components/Datagrid/Datagrid/Datagrid.js +9 -3
  153. package/es/components/Datagrid/Datagrid/DatagridBody.js +1 -3
  154. package/es/components/Datagrid/Datagrid/DatagridContent.js +3 -5
  155. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +1 -3
  156. package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +1 -3
  157. package/es/components/Datagrid/Datagrid/DatagridHead.js +1 -3
  158. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +3 -5
  159. package/es/components/Datagrid/Datagrid/DatagridRefBody.js +1 -3
  160. package/es/components/Datagrid/Datagrid/DatagridRow.js +3 -5
  161. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +1 -3
  162. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +1 -3
  163. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.js +1 -3
  164. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +1 -3
  165. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +1 -3
  166. package/es/components/Datagrid/Datagrid/DraggableElement.js +1 -3
  167. package/es/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +6 -4
  168. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +1 -3
  169. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +1 -3
  170. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +1 -3
  171. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +1 -3
  172. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +1 -3
  173. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +1 -3
  174. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -2
  175. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +43 -3
  176. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +19 -14
  177. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +8 -10
  178. package/es/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +1 -3
  179. package/es/components/Datagrid/Datagrid/addons/Filtering/constants.js +1 -2
  180. package/es/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +1 -2
  181. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +1 -3
  182. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +9 -11
  183. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +1 -3
  184. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +1 -3
  185. package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +10 -12
  186. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +1 -3
  187. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +1 -3
  188. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +1 -3
  189. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +1 -2
  190. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +1 -3
  191. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +1 -2
  192. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +1 -3
  193. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +1 -3
  194. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +1 -3
  195. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +1 -3
  196. package/es/components/Datagrid/Datagrid/addons/stateReducer.js +1 -3
  197. package/es/components/Datagrid/common-column-ids.js +1 -2
  198. package/es/components/Datagrid/useActionsColumn.js +1 -3
  199. package/es/components/Datagrid/useColumnCenterAlign.js +1 -3
  200. package/es/components/Datagrid/useColumnOrder.js +1 -3
  201. package/es/components/Datagrid/useColumnRightAlign.js +1 -3
  202. package/es/components/Datagrid/useCustomizeColumns.js +1 -3
  203. package/es/components/Datagrid/useDatagrid.js +1 -3
  204. package/es/components/Datagrid/useDefaultStringRenderer.js +1 -3
  205. package/es/components/Datagrid/useDisableSelectRows.js +1 -2
  206. package/es/components/Datagrid/useEditableCell.js +1 -3
  207. package/es/components/Datagrid/useExpandedRow.js +1 -3
  208. package/es/components/Datagrid/useFiltering.js +1 -3
  209. package/es/components/Datagrid/useFlexResize.js +1 -3
  210. package/es/components/Datagrid/useFloatingScroll.js +1 -3
  211. package/es/components/Datagrid/useFocusRowExpander.js +1 -3
  212. package/es/components/Datagrid/useInfiniteScroll.js +1 -3
  213. package/es/components/Datagrid/useInitialColumnSort.js +1 -3
  214. package/es/components/Datagrid/useInlineEdit.js +1 -3
  215. package/es/components/Datagrid/useNestedRowExpander.js +1 -3
  216. package/es/components/Datagrid/useNestedRows.js +1 -3
  217. package/es/components/Datagrid/useOnRowClick.js +1 -3
  218. package/es/components/Datagrid/useParentDimensions.js +1 -3
  219. package/es/components/Datagrid/useResizeTable.js +1 -3
  220. package/es/components/Datagrid/useRowExpander.js +1 -3
  221. package/es/components/Datagrid/useRowIsMouseOver.js +1 -3
  222. package/es/components/Datagrid/useRowRenderer.js +1 -3
  223. package/es/components/Datagrid/useRowSize.js +1 -3
  224. package/es/components/Datagrid/useSelectAllToggle.js +4 -6
  225. package/es/components/Datagrid/useSelectRows.js +1 -3
  226. package/es/components/Datagrid/useSkeletonRows.js +1 -2
  227. package/es/components/Datagrid/useSortableColumns.js +1 -3
  228. package/es/components/Datagrid/useStickyColumn.js +1 -3
  229. package/es/components/Datagrid/utils/getAutoSizedColumnWidth.js +1 -2
  230. package/es/components/Decorator/Decorator.js +55 -3
  231. package/es/components/DecoratorBase/DecoratorBase.js +4 -3
  232. package/es/components/DecoratorBase/DecoratorIcon.js +10 -3
  233. package/es/components/DecoratorBase/utils.js +1 -2
  234. package/es/components/DecoratorDualButton/DecoratorDualButton.js +74 -3
  235. package/es/components/DecoratorLink/DecoratorLink.js +66 -3
  236. package/es/components/DecoratorSingleButton/DecoratorSingleButton.js +66 -3
  237. package/es/components/DelimitedList/DelimitedList.js +13 -3
  238. package/es/components/DescriptionList/DescriptionList.js +5 -3
  239. package/es/components/DescriptionList/DescriptionListBody.js +3 -3
  240. package/es/components/DescriptionList/DescriptionListCell.js +3 -3
  241. package/es/components/DescriptionList/DescriptionListRow.js +3 -3
  242. package/es/components/DescriptionList/constants.js +1 -2
  243. package/es/components/EditFullPage/EditFullPage.js +7 -3
  244. package/es/components/EditInPlace/EditInPlace.d.ts.map +1 -1
  245. package/es/components/EditInPlace/EditInPlace.js +136 -28
  246. package/es/components/EditSidePanel/EditSidePanel.js +66 -3
  247. package/es/components/EditTearsheet/EditTearsheet.js +53 -3
  248. package/es/components/EditTearsheet/EditTearsheetForm.js +33 -3
  249. package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.js +7 -3
  250. package/es/components/EditUpdateCards/EditUpdateCards.js +70 -3
  251. package/es/components/EmptyStates/EmptyState.js +41 -9
  252. package/es/components/EmptyStates/EmptyStateContent.js +21 -3
  253. package/es/components/EmptyStates/EmptyStateIllustration.deprecated.js +1 -3
  254. package/es/components/EmptyStates/EmptyStateV2.deprecated.js +39 -3
  255. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +37 -3
  256. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +37 -3
  257. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +37 -3
  258. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +37 -3
  259. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +37 -3
  260. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +37 -3
  261. package/es/components/EmptyStates/assets/ErrorIllustration.js +1 -3
  262. package/es/components/EmptyStates/assets/NoDataIllustration.js +1 -3
  263. package/es/components/EmptyStates/assets/NoTagsIllustration.js +1 -3
  264. package/es/components/EmptyStates/assets/NotFoundIllustration.js +1 -3
  265. package/es/components/EmptyStates/assets/NotificationsIllustration.js +1 -3
  266. package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +1 -3
  267. package/es/components/ExportModal/ExportModal.js +80 -3
  268. package/es/components/ExpressiveCard/ExpressiveCard.js +76 -3
  269. package/es/components/FeatureFlags/index.js +4 -3
  270. package/es/components/FilterPanel/FilterPanel.js +10 -3
  271. package/es/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +19 -3
  272. package/es/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +22 -3
  273. package/es/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +16 -3
  274. package/es/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +34 -3
  275. package/es/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +16 -3
  276. package/es/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +13 -3
  277. package/es/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +13 -4
  278. package/es/components/FilterSummary/FilterSummary.js +2 -3
  279. package/es/components/FullPageError/FullPageError.js +20 -3
  280. package/es/components/FullPageError/assets/Error403SVG.js +1 -3
  281. package/es/components/FullPageError/assets/Error404SVG.js +1 -3
  282. package/es/components/FullPageError/assets/ErrorGenericSVG.js +1 -3
  283. package/es/components/GetStartedCard/GetStartedCard.js +37 -3
  284. package/es/components/Guidebanner/Guidebanner.js +49 -5
  285. package/es/components/Guidebanner/GuidebannerElement.js +14 -3
  286. package/es/components/Guidebanner/GuidebannerElementButton.js +11 -3
  287. package/es/components/Guidebanner/GuidebannerElementLink.js +7 -3
  288. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +23 -3
  289. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +23 -3
  290. package/es/components/HTTPErrors/HTTPErrorContent.js +19 -3
  291. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +23 -3
  292. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +1 -3
  293. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +1 -3
  294. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1 -3
  295. package/es/components/ImportModal/ImportModal.js +88 -3
  296. package/es/components/InlineTip/InlineTip.js +56 -3
  297. package/es/components/InlineTip/InlineTipButton.js +7 -3
  298. package/es/components/InlineTip/InlineTipLink.js +7 -3
  299. package/es/components/InlineTip/utils.js +1 -2
  300. package/es/components/InterstitialScreen/InterstitialScreen.js +23 -3
  301. package/es/components/InterstitialScreen/InterstitialScreenBody.js +13 -3
  302. package/es/components/InterstitialScreen/InterstitialScreenFooter.js +24 -3
  303. package/es/components/InterstitialScreen/InterstitialScreenHeader.js +20 -3
  304. package/es/components/InterstitialScreen/InterstitialScreenView.js +13 -3
  305. package/es/components/InterstitialScreen/context.js +1 -3
  306. package/es/components/MultiAddSelect/MultiAddSelect.js +81 -3
  307. package/es/components/Nav/Nav.js +16 -3
  308. package/es/components/Nav/NavItem.js +37 -3
  309. package/es/components/Nav/NavItemLink.js +4 -4
  310. package/es/components/Nav/NavList.js +12 -3
  311. package/es/components/NonLinearReading/NonLinearReading.js +13 -3
  312. package/es/components/NotificationsPanel/NotificationsPanel.js +118 -3
  313. package/es/components/NotificationsPanel/utils.js +1 -2
  314. package/es/components/OptionsTile/OptionsTile.js +52 -3
  315. package/es/components/PageHeader/PageHeader.js +219 -3
  316. package/es/components/PageHeader/PageHeaderTitle.js +24 -3
  317. package/es/components/PageHeader/PageHeaderUtils.js +1 -3
  318. package/es/components/PageHeader/next/PageHeader.d.ts +2 -1
  319. package/es/components/PageHeader/next/PageHeader.d.ts.map +1 -1
  320. package/es/components/PageHeader/next/PageHeader.js +1 -3
  321. package/es/components/PageHeader/next/PageHeaderBreadcrumbBar.d.ts.map +1 -1
  322. package/es/components/PageHeader/next/PageHeaderBreadcrumbBar.js +2 -6
  323. package/es/components/PageHeader/next/PageHeaderBreadcrumbOverflow.js +1 -3
  324. package/es/components/PageHeader/next/PageHeaderBreadcrumbPageActions.js +16 -3
  325. package/es/components/PageHeader/next/PageHeaderContent.d.ts.map +1 -1
  326. package/es/components/PageHeader/next/PageHeaderContent.js +32 -9
  327. package/es/components/PageHeader/next/PageHeaderContentPageActions.d.ts.map +1 -1
  328. package/es/components/PageHeader/next/PageHeaderContentPageActions.js +21 -7
  329. package/es/components/PageHeader/next/PageHeaderContentText.js +10 -3
  330. package/es/components/PageHeader/next/PageHeaderHeroImage.d.ts +13 -1
  331. package/es/components/PageHeader/next/PageHeaderHeroImage.d.ts.map +1 -1
  332. package/es/components/PageHeader/next/PageHeaderHeroImage.js +22 -6
  333. package/es/components/PageHeader/next/PageHeaderScrollButton.js +1 -3
  334. package/es/components/PageHeader/next/PageHeaderTabBar.js +3 -5
  335. package/es/components/PageHeader/next/PageHeaderTagOverflow.js +1 -3
  336. package/es/components/PageHeader/next/PageHeaderTitleBreadcrumb.js +1 -3
  337. package/es/components/PageHeader/next/context.d.ts +2 -2
  338. package/es/components/PageHeader/next/context.d.ts.map +1 -1
  339. package/es/components/PageHeader/next/context.js +1 -3
  340. package/es/components/PageHeader/next/index.js +1 -3
  341. package/es/components/PageHeader/next/overflowHandler.js +1 -2
  342. package/es/components/PageHeader/next/utils.js +1 -2
  343. package/es/components/ProductiveCard/ProductiveCard.js +93 -3
  344. package/es/components/RemoveModal/RemoveModal.js +58 -3
  345. package/es/components/Saving/Saving.js +43 -3
  346. package/es/components/ScrollGradient/ScrollGradient.js +12 -3
  347. package/es/components/ScrollGradient/constants.js +1 -3
  348. package/es/components/SearchBar/SearchBar.js +31 -4
  349. package/es/components/SidePanel/SidePanel.js +116 -3
  350. package/es/components/SidePanel/constants.js +1 -2
  351. package/es/components/SimpleHeader/SimpleHeader.js +15 -3
  352. package/es/components/SingleAddSelect/SingleAddSelect.js +52 -3
  353. package/es/components/StatusIcon/StatusIcon.js +16 -3
  354. package/es/components/StatusIndicator/StatusIndicator.js +21 -3
  355. package/es/components/StatusIndicator/StatusIndicatorStep.js +13 -3
  356. package/es/components/StringFormatter/StringFormatter.js +9 -3
  357. package/es/components/StringFormatter/utils/enums.js +1 -2
  358. package/es/components/TagOverflow/TagOverflow.js +65 -3
  359. package/es/components/TagOverflow/TagOverflowModal.js +1 -3
  360. package/es/components/TagOverflow/TagOverflowPopover.js +31 -3
  361. package/es/components/TagOverflow/constants.js +1 -2
  362. package/es/components/TagSet/TagSet.js +66 -3
  363. package/es/components/TagSet/TagSetModal.js +1 -3
  364. package/es/components/TagSet/TagSetOverflow.js +38 -3
  365. package/es/components/Tearsheet/Tearsheet.js +103 -4
  366. package/es/components/Tearsheet/TearsheetNarrow.js +76 -4
  367. package/es/components/Tearsheet/TearsheetPresence.js +1 -3
  368. package/es/components/Tearsheet/TearsheetShell.js +119 -3
  369. package/es/components/Tearsheet/next/StackContext.js +1 -3
  370. package/es/components/Tearsheet/next/Tearsheet.js +1 -3
  371. package/es/components/Tearsheet/next/TearsheetBody.js +1 -3
  372. package/es/components/Tearsheet/next/TearsheetFooter.js +1 -3
  373. package/es/components/Tearsheet/next/TearsheetHeader.js +1 -3
  374. package/es/components/Tearsheet/next/TearsheetHeaderActions.js +1 -3
  375. package/es/components/Tearsheet/next/TearsheetHeaderContent.js +1 -3
  376. package/es/components/Tearsheet/next/context.js +1 -3
  377. package/es/components/Tearsheet/usePresence.js +7 -3
  378. package/es/components/Tearsheet/usePresenceContext.js +1 -3
  379. package/es/components/Toolbar/Toolbar.js +4 -3
  380. package/es/components/Toolbar/ToolbarButton.js +12 -4
  381. package/es/components/Toolbar/ToolbarGroup.js +3 -3
  382. package/es/components/TooltipTrigger/TooltipTrigger.js +7 -3
  383. package/es/components/TruncatedList/TruncatedList.js +32 -3
  384. package/es/components/TruncatedText/TruncatedText.d.ts.map +1 -1
  385. package/es/components/TruncatedText/TruncatedText.js +7 -6
  386. package/es/components/TruncatedText/useTruncatedText.js +1 -3
  387. package/es/components/UserAvatar/UserAvatar.js +32 -3
  388. package/es/components/UserProfileImage/UserProfileImage.js +37 -3
  389. package/es/components/WebTerminal/WebTerminal.js +27 -3
  390. package/es/components/WebTerminal/WebTerminalContentWrapper.js +6 -4
  391. package/es/components/WebTerminal/hooks/index.js +6 -4
  392. package/es/components/_Canary/Canary.js +3 -3
  393. package/es/global/js/hooks/useActiveElement.js +1 -3
  394. package/es/global/js/hooks/useClickOutside.js +1 -3
  395. package/es/global/js/hooks/useCollapsible.js +1 -3
  396. package/es/global/js/hooks/useControllableState.js +1 -3
  397. package/es/global/js/hooks/useCreateComponentFocus.js +1 -3
  398. package/es/global/js/hooks/useCreateComponentStepChange.js +1 -3
  399. package/es/global/js/hooks/useFocus.js +1 -3
  400. package/es/global/js/hooks/useIsomorphicEffect.js +1 -3
  401. package/es/global/js/hooks/useMatchMedia.js +1 -3
  402. package/es/global/js/hooks/useMergedRefs.js +1 -3
  403. package/es/global/js/hooks/useOverflowItems/useOverflowItems.js +1 -3
  404. package/es/global/js/hooks/useOverflowString.js +1 -3
  405. package/es/global/js/hooks/usePortalTarget.js +1 -3
  406. package/es/global/js/hooks/usePrefersReducedMotion.js +1 -3
  407. package/es/global/js/hooks/usePrefix.js +1 -3
  408. package/es/global/js/hooks/usePresence.js +1 -3
  409. package/es/global/js/hooks/usePreviousValue.js +1 -3
  410. package/es/global/js/hooks/useResetCreateComponent.js +1 -3
  411. package/es/global/js/hooks/useResizeObserver.js +1 -3
  412. package/es/global/js/hooks/useRetrieveFormTitles.js +1 -3
  413. package/es/global/js/hooks/useRetrieveStepData.js +1 -3
  414. package/es/global/js/hooks/useValidCreateStepCount.js +1 -3
  415. package/es/global/js/hooks/useWindowResize.js +1 -3
  416. package/es/global/js/hooks/useWindowScroll.js +1 -3
  417. package/es/global/js/package-settings.js +1 -2
  418. package/es/global/js/utils/Wrap.js +25 -3
  419. package/es/global/js/utils/checkForOverflow.js +1 -2
  420. package/es/global/js/utils/clamp.js +1 -2
  421. package/es/global/js/utils/debounce.js +1 -2
  422. package/es/global/js/utils/deepCloneObject.js +1 -2
  423. package/es/global/js/utils/deepCompareObject.js +1 -2
  424. package/es/global/js/utils/devtools.js +1 -3
  425. package/es/global/js/utils/getFocusableElements.js +1 -2
  426. package/es/global/js/utils/getNodeTextContent.js +1 -2
  427. package/es/global/js/utils/getNumberOfHiddenSteps.js +1 -2
  428. package/es/global/js/utils/getScrollbarWidth.js +1 -2
  429. package/es/global/js/utils/getSupportedLocale.js +1 -2
  430. package/es/global/js/utils/lastIndexInArray.js +1 -2
  431. package/es/global/js/utils/makeDraggable/makeDraggable.js +1 -2
  432. package/es/global/js/utils/pconsole.js +5 -11
  433. package/es/global/js/utils/props-helper.js +1 -3
  434. package/es/global/js/utils/rangeWithCallback.js +1 -2
  435. package/es/global/js/utils/scrollableAncestor.js +1 -2
  436. package/es/global/js/utils/throttle.js +1 -2
  437. package/es/global/js/utils/useId.js +1 -3
  438. package/es/global/js/utils/uuidv4.js +1 -2
  439. package/es/global/js/utils/wait.js +1 -2
  440. package/es/index.js +2 -5
  441. package/es/node_modules/@carbon/colors/es/index.js +1 -2
  442. package/es/node_modules/@carbon/icon-helpers/es/index.js +1 -2
  443. package/es/node_modules/@carbon/icons-react/es/Icon.js +1 -3
  444. package/es/node_modules/@carbon/icons-react/es/generated/bucket-11.js +351 -328
  445. package/es/node_modules/@carbon/icons-react/es/generated/bucket-3.js +185 -192
  446. package/es/node_modules/@carbon/icons-react/es/{iconPropTypes-B1cP964Y.js → iconPropTypes-BElKp6Sn.js} +2 -4
  447. package/es/node_modules/classnames/index.js +1 -4
  448. package/es/settings.js +1 -3
  449. package/lib/_virtual/_rolldown/runtime.js +13 -23
  450. package/lib/components/APIKeyModal/APIKeyDownloader.js +21 -5
  451. package/lib/components/APIKeyModal/APIKeyModal.js +170 -12
  452. package/lib/components/AboutModal/AboutModal.js +51 -10
  453. package/lib/components/ActionBar/ActionBar.js +49 -11
  454. package/lib/components/ActionBar/ActionBarItem.js +33 -6
  455. package/lib/components/ActionBar/ActionBarOverflowItems.js +24 -7
  456. package/lib/components/ActionSet/ActionSet.js +40 -8
  457. package/lib/components/AddSelect/AddSelect.js +10 -6
  458. package/lib/components/AddSelect/AddSelectBody.js +19 -19
  459. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +4 -6
  460. package/lib/components/AddSelect/AddSelectColumn.js +9 -11
  461. package/lib/components/AddSelect/AddSelectFilter.js +4 -6
  462. package/lib/components/AddSelect/AddSelectFormControl.js +4 -6
  463. package/lib/components/AddSelect/AddSelectList.js +6 -8
  464. package/lib/components/AddSelect/AddSelectMetaPanel.js +3 -5
  465. package/lib/components/AddSelect/AddSelectRow.js +5 -7
  466. package/lib/components/AddSelect/AddSelectSidebar.js +5 -7
  467. package/lib/components/AddSelect/AddSelectSort.js +3 -5
  468. package/lib/components/AddSelect/add-select-utils.js +1 -3
  469. package/lib/components/AddSelect/hooks/useFocus.js +2 -4
  470. package/lib/components/AddSelect/hooks/useItemSort.js +2 -4
  471. package/lib/components/AddSelect/hooks/useParentSelect.js +2 -4
  472. package/lib/components/AddSelect/hooks/usePath.js +2 -4
  473. package/lib/components/BigNumber/BigNumber.js +59 -13
  474. package/lib/components/BigNumber/BigNumberSkeleton.js +16 -13
  475. package/lib/components/BigNumber/constants.js +1 -22
  476. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +49 -15
  477. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +33 -9
  478. package/lib/components/Card/Card.js +25 -8
  479. package/lib/components/Card/CardFooter.js +4 -6
  480. package/lib/components/Card/CardHeader.js +15 -6
  481. package/lib/components/Carousel/Carousel.js +39 -9
  482. package/lib/components/Carousel/CarouselItem.js +11 -7
  483. package/lib/components/Cascade/Cascade.js +16 -7
  484. package/lib/components/Checklist/Checklist.js +72 -18
  485. package/lib/components/Checklist/ChecklistChart.js +19 -13
  486. package/lib/components/Checklist/ChecklistIcon.js +21 -15
  487. package/lib/components/Coachmark/Coachmark.js +69 -15
  488. package/lib/components/Coachmark/CoachmarkDragbar.js +22 -8
  489. package/lib/components/Coachmark/CoachmarkHeader.js +18 -8
  490. package/lib/components/Coachmark/CoachmarkOverlay.js +35 -17
  491. package/lib/components/Coachmark/CoachmarkTagline.js +18 -8
  492. package/lib/components/Coachmark/next/Coachmark/Coachmark.d.ts +5 -1
  493. package/lib/components/Coachmark/next/Coachmark/Coachmark.d.ts.map +1 -1
  494. package/lib/components/Coachmark/next/Coachmark/Coachmark.js +64 -17
  495. package/lib/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.js +21 -7
  496. package/lib/components/Coachmark/next/Coachmark/CoachmarkContent.js +12 -7
  497. package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +22 -7
  498. package/lib/components/Coachmark/next/Coachmark/ContentBody.js +11 -6
  499. package/lib/components/Coachmark/next/Coachmark/ContentHeader.js +18 -8
  500. package/lib/components/Coachmark/next/Coachmark/context.js +4 -7
  501. package/lib/components/Coachmark/utils/constants.js +15 -23
  502. package/lib/components/Coachmark/utils/context.js +2 -4
  503. package/lib/components/Coachmark/utils/enums.js +1 -3
  504. package/lib/components/Coachmark/utils/hooks.js +5 -7
  505. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +21 -7
  506. package/lib/components/CoachmarkButton/CoachmarkButton.js +12 -8
  507. package/lib/components/CoachmarkFixed/CoachmarkFixed.js +40 -14
  508. package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +18 -7
  509. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +41 -11
  510. package/lib/components/CoachmarkStack/CoachmarkStack.js +52 -14
  511. package/lib/components/CoachmarkStack/CoachmarkStackHome.js +48 -10
  512. package/lib/components/ComboButton/ComboButton.js +9 -7
  513. package/lib/components/ComboButton/ComboButtonItem/index.js +6 -4
  514. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +64 -21
  515. package/lib/components/ConditionBuilder/ConditionBuilder.d.ts.map +1 -1
  516. package/lib/components/ConditionBuilder/ConditionBuilder.js +72 -11
  517. package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +13 -0
  518. package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts.map +1 -1
  519. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts.map +1 -1
  520. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +25 -15
  521. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +35 -9
  522. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +43 -7
  523. package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +19 -12
  524. package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +8 -10
  525. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts.map +1 -1
  526. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +46 -24
  527. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts.map +1 -1
  528. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +37 -5
  529. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +1 -3
  530. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +45 -11
  531. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +14 -7
  532. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +13 -6
  533. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +14 -7
  534. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +14 -7
  535. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +15 -5
  536. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +12 -5
  537. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts.map +1 -1
  538. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +40 -18
  539. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +16 -9
  540. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +6 -8
  541. package/lib/components/ConditionBuilder/utils/useDataConfigs.js +4 -6
  542. package/lib/components/ConditionBuilder/utils/useEvent.js +2 -4
  543. package/lib/components/ConditionBuilder/utils/useTranslations.js +4 -6
  544. package/lib/components/ConditionBuilder/utils/util.js +2 -5
  545. package/lib/components/CreateFullPage/CreateFullPage.js +92 -16
  546. package/lib/components/CreateFullPage/CreateFullPageStep.js +58 -10
  547. package/lib/components/CreateInfluencer/CreateInfluencer.js +20 -7
  548. package/lib/components/CreateModal/CreateModal.js +48 -8
  549. package/lib/components/CreateSidePanel/CreateSidePanel.js +65 -9
  550. package/lib/components/CreateTearsheet/CreateTearsheet.js +96 -18
  551. package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +9 -7
  552. package/lib/components/CreateTearsheet/CreateTearsheetStep.js +79 -10
  553. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +62 -9
  554. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +85 -27
  555. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +128 -16
  556. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +88 -15
  557. package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +2 -4
  558. package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +4 -6
  559. package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +3 -5
  560. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +4 -6
  561. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +4 -6
  562. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +4 -6
  563. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +4 -6
  564. package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +2 -4
  565. package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.js +1 -3
  566. package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +2 -4
  567. package/lib/components/DataSpreadsheet/utils/commonEventHandlers.js +11 -13
  568. package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +3 -5
  569. package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +4 -6
  570. package/lib/components/DataSpreadsheet/utils/getCellSize.js +2 -4
  571. package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +1 -3
  572. package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +2 -4
  573. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +2 -4
  574. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +2 -4
  575. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +3 -5
  576. package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +3 -5
  577. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +5 -7
  578. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +4 -6
  579. package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +3 -5
  580. package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +2 -4
  581. package/lib/components/DataSpreadsheet/utils/selectAllCells.js +3 -5
  582. package/lib/components/Datagrid/Datagrid/Datagrid.js +17 -11
  583. package/lib/components/Datagrid/Datagrid/DatagridBody.js +6 -8
  584. package/lib/components/Datagrid/Datagrid/DatagridContent.js +19 -21
  585. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +7 -9
  586. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +4 -6
  587. package/lib/components/Datagrid/Datagrid/DatagridHead.js +2 -4
  588. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +10 -12
  589. package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +4 -6
  590. package/lib/components/Datagrid/Datagrid/DatagridRow.js +7 -9
  591. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +6 -8
  592. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +5 -7
  593. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +4 -6
  594. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +6 -8
  595. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +6 -8
  596. package/lib/components/Datagrid/Datagrid/DraggableElement.js +4 -6
  597. package/lib/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +7 -5
  598. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +3 -5
  599. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +3 -5
  600. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +6 -8
  601. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +6 -8
  602. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +7 -9
  603. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +4 -6
  604. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -3
  605. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +54 -14
  606. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +31 -26
  607. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +9 -11
  608. package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +4 -6
  609. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +1 -3
  610. package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +1 -3
  611. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +3 -5
  612. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +16 -18
  613. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +3 -5
  614. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +3 -5
  615. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +10 -12
  616. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +4 -6
  617. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +9 -11
  618. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +4 -6
  619. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +1 -3
  620. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +2 -5
  621. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +1 -3
  622. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +4 -6
  623. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +4 -6
  624. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +5 -7
  625. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +3 -5
  626. package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +2 -4
  627. package/lib/components/Datagrid/common-column-ids.js +1 -3
  628. package/lib/components/Datagrid/useActionsColumn.js +5 -7
  629. package/lib/components/Datagrid/useColumnCenterAlign.js +4 -6
  630. package/lib/components/Datagrid/useColumnOrder.js +3 -6
  631. package/lib/components/Datagrid/useColumnRightAlign.js +4 -6
  632. package/lib/components/Datagrid/useCustomizeColumns.js +4 -6
  633. package/lib/components/Datagrid/useDatagrid.js +11 -13
  634. package/lib/components/Datagrid/useDefaultStringRenderer.js +4 -6
  635. package/lib/components/Datagrid/useDisableSelectRows.js +1 -3
  636. package/lib/components/Datagrid/useEditableCell.js +2 -4
  637. package/lib/components/Datagrid/useExpandedRow.js +4 -6
  638. package/lib/components/Datagrid/useFiltering.js +4 -6
  639. package/lib/components/Datagrid/useFlexResize.js +2 -4
  640. package/lib/components/Datagrid/useFloatingScroll.js +4 -6
  641. package/lib/components/Datagrid/useFocusRowExpander.js +2 -4
  642. package/lib/components/Datagrid/useInfiniteScroll.js +5 -7
  643. package/lib/components/Datagrid/useInitialColumnSort.js +3 -5
  644. package/lib/components/Datagrid/useInlineEdit.js +5 -7
  645. package/lib/components/Datagrid/useNestedRowExpander.js +6 -8
  646. package/lib/components/Datagrid/useNestedRows.js +5 -7
  647. package/lib/components/Datagrid/useOnRowClick.js +3 -5
  648. package/lib/components/Datagrid/useParentDimensions.js +2 -4
  649. package/lib/components/Datagrid/useResizeTable.js +2 -4
  650. package/lib/components/Datagrid/useRowExpander.js +5 -7
  651. package/lib/components/Datagrid/useRowIsMouseOver.js +3 -5
  652. package/lib/components/Datagrid/useRowRenderer.js +2 -4
  653. package/lib/components/Datagrid/useRowSize.js +3 -5
  654. package/lib/components/Datagrid/useSelectAllToggle.js +9 -11
  655. package/lib/components/Datagrid/useSelectRows.js +8 -10
  656. package/lib/components/Datagrid/useSkeletonRows.js +1 -3
  657. package/lib/components/Datagrid/useSortableColumns.js +6 -8
  658. package/lib/components/Datagrid/useStickyColumn.js +6 -8
  659. package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +1 -3
  660. package/lib/components/Decorator/Decorator.js +65 -13
  661. package/lib/components/DecoratorBase/DecoratorBase.js +9 -8
  662. package/lib/components/DecoratorBase/DecoratorIcon.js +19 -12
  663. package/lib/components/DecoratorBase/utils.js +1 -3
  664. package/lib/components/DecoratorDualButton/DecoratorDualButton.js +84 -13
  665. package/lib/components/DecoratorLink/DecoratorLink.js +76 -13
  666. package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +76 -13
  667. package/lib/components/DelimitedList/DelimitedList.js +17 -7
  668. package/lib/components/DescriptionList/DescriptionList.js +15 -13
  669. package/lib/components/DescriptionList/DescriptionListBody.js +12 -12
  670. package/lib/components/DescriptionList/DescriptionListCell.js +12 -12
  671. package/lib/components/DescriptionList/DescriptionListRow.js +12 -12
  672. package/lib/components/DescriptionList/constants.js +1 -3
  673. package/lib/components/EditFullPage/EditFullPage.js +11 -7
  674. package/lib/components/EditInPlace/EditInPlace.d.ts.map +1 -1
  675. package/lib/components/EditInPlace/EditInPlace.js +139 -31
  676. package/lib/components/EditSidePanel/EditSidePanel.js +73 -10
  677. package/lib/components/EditTearsheet/EditTearsheet.js +59 -9
  678. package/lib/components/EditTearsheet/EditTearsheetForm.js +39 -9
  679. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +11 -7
  680. package/lib/components/EditUpdateCards/EditUpdateCards.js +75 -8
  681. package/lib/components/EmptyStates/EmptyState.js +48 -16
  682. package/lib/components/EmptyStates/EmptyStateContent.js +24 -6
  683. package/lib/components/EmptyStates/EmptyStateIllustration.deprecated.js +2 -4
  684. package/lib/components/EmptyStates/EmptyStateV2.deprecated.js +45 -9
  685. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +44 -10
  686. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +44 -10
  687. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +44 -10
  688. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +44 -10
  689. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +44 -10
  690. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +44 -10
  691. package/lib/components/EmptyStates/assets/ErrorIllustration.js +5 -7
  692. package/lib/components/EmptyStates/assets/NoDataIllustration.js +5 -7
  693. package/lib/components/EmptyStates/assets/NoTagsIllustration.js +5 -7
  694. package/lib/components/EmptyStates/assets/NotFoundIllustration.js +5 -7
  695. package/lib/components/EmptyStates/assets/NotificationsIllustration.js +5 -7
  696. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +5 -7
  697. package/lib/components/ExportModal/ExportModal.js +86 -9
  698. package/lib/components/ExpressiveCard/ExpressiveCard.js +80 -7
  699. package/lib/components/FeatureFlags/index.js +6 -5
  700. package/lib/components/FilterPanel/FilterPanel.js +19 -12
  701. package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +29 -13
  702. package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +33 -14
  703. package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +26 -13
  704. package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +44 -13
  705. package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +26 -13
  706. package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +22 -12
  707. package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +22 -13
  708. package/lib/components/FilterSummary/FilterSummary.js +12 -13
  709. package/lib/components/FullPageError/FullPageError.js +27 -10
  710. package/lib/components/FullPageError/assets/Error403SVG.js +2 -4
  711. package/lib/components/FullPageError/assets/Error404SVG.js +2 -4
  712. package/lib/components/FullPageError/assets/ErrorGenericSVG.js +2 -4
  713. package/lib/components/GetStartedCard/GetStartedCard.js +40 -6
  714. package/lib/components/Guidebanner/Guidebanner.js +57 -13
  715. package/lib/components/Guidebanner/GuidebannerElement.js +18 -7
  716. package/lib/components/Guidebanner/GuidebannerElementButton.js +15 -7
  717. package/lib/components/Guidebanner/GuidebannerElementLink.js +11 -7
  718. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +29 -9
  719. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +29 -9
  720. package/lib/components/HTTPErrors/HTTPErrorContent.js +21 -5
  721. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +29 -9
  722. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +3 -5
  723. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +3 -5
  724. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +3 -5
  725. package/lib/components/ImportModal/ImportModal.js +94 -9
  726. package/lib/components/InlineTip/InlineTip.js +62 -9
  727. package/lib/components/InlineTip/InlineTipButton.js +11 -7
  728. package/lib/components/InlineTip/InlineTipLink.js +11 -7
  729. package/lib/components/InlineTip/utils.js +1 -3
  730. package/lib/components/InterstitialScreen/InterstitialScreen.js +30 -10
  731. package/lib/components/InterstitialScreen/InterstitialScreenBody.js +17 -7
  732. package/lib/components/InterstitialScreen/InterstitialScreenFooter.js +28 -7
  733. package/lib/components/InterstitialScreen/InterstitialScreenHeader.js +24 -7
  734. package/lib/components/InterstitialScreen/InterstitialScreenView.js +15 -5
  735. package/lib/components/InterstitialScreen/context.js +3 -5
  736. package/lib/components/MultiAddSelect/MultiAddSelect.js +84 -6
  737. package/lib/components/Nav/Nav.js +27 -14
  738. package/lib/components/Nav/NavItem.js +48 -14
  739. package/lib/components/Nav/NavItemLink.js +5 -5
  740. package/lib/components/Nav/NavList.js +22 -13
  741. package/lib/components/NonLinearReading/NonLinearReading.js +18 -8
  742. package/lib/components/NotificationsPanel/NotificationsPanel.js +130 -15
  743. package/lib/components/NotificationsPanel/utils.js +1 -3
  744. package/lib/components/OptionsTile/OptionsTile.js +59 -10
  745. package/lib/components/PageHeader/PageHeader.js +234 -18
  746. package/lib/components/PageHeader/PageHeaderTitle.js +28 -7
  747. package/lib/components/PageHeader/PageHeaderUtils.js +5 -7
  748. package/lib/components/PageHeader/next/PageHeader.d.ts +2 -1
  749. package/lib/components/PageHeader/next/PageHeader.d.ts.map +1 -1
  750. package/lib/components/PageHeader/next/PageHeader.js +19 -21
  751. package/lib/components/PageHeader/next/PageHeaderBreadcrumbBar.d.ts.map +1 -1
  752. package/lib/components/PageHeader/next/PageHeaderBreadcrumbBar.js +6 -10
  753. package/lib/components/PageHeader/next/PageHeaderBreadcrumbOverflow.js +6 -8
  754. package/lib/components/PageHeader/next/PageHeaderBreadcrumbPageActions.js +19 -6
  755. package/lib/components/PageHeader/next/PageHeaderContent.d.ts.map +1 -1
  756. package/lib/components/PageHeader/next/PageHeaderContent.js +36 -13
  757. package/lib/components/PageHeader/next/PageHeaderContentPageActions.d.ts.map +1 -1
  758. package/lib/components/PageHeader/next/PageHeaderContentPageActions.js +26 -12
  759. package/lib/components/PageHeader/next/PageHeaderContentText.js +13 -6
  760. package/lib/components/PageHeader/next/PageHeaderHeroImage.d.ts +13 -1
  761. package/lib/components/PageHeader/next/PageHeaderHeroImage.d.ts.map +1 -1
  762. package/lib/components/PageHeader/next/PageHeaderHeroImage.js +25 -9
  763. package/lib/components/PageHeader/next/PageHeaderScrollButton.js +6 -8
  764. package/lib/components/PageHeader/next/PageHeaderTabBar.js +7 -9
  765. package/lib/components/PageHeader/next/PageHeaderTagOverflow.js +6 -8
  766. package/lib/components/PageHeader/next/PageHeaderTitleBreadcrumb.js +5 -7
  767. package/lib/components/PageHeader/next/context.d.ts +2 -2
  768. package/lib/components/PageHeader/next/context.d.ts.map +1 -1
  769. package/lib/components/PageHeader/next/context.js +2 -4
  770. package/lib/components/PageHeader/next/index.js +19 -21
  771. package/lib/components/PageHeader/next/overflowHandler.js +1 -3
  772. package/lib/components/PageHeader/next/utils.js +1 -3
  773. package/lib/components/ProductiveCard/ProductiveCard.js +97 -7
  774. package/lib/components/RemoveModal/RemoveModal.js +65 -10
  775. package/lib/components/Saving/Saving.js +47 -7
  776. package/lib/components/ScrollGradient/ScrollGradient.js +23 -14
  777. package/lib/components/ScrollGradient/constants.js +3 -5
  778. package/lib/components/SearchBar/SearchBar.js +35 -8
  779. package/lib/components/SidePanel/SidePanel.js +129 -16
  780. package/lib/components/SidePanel/constants.js +1 -3
  781. package/lib/components/SimpleHeader/SimpleHeader.js +20 -8
  782. package/lib/components/SingleAddSelect/SingleAddSelect.js +56 -7
  783. package/lib/components/StatusIcon/StatusIcon.js +20 -7
  784. package/lib/components/StatusIndicator/StatusIndicator.js +30 -12
  785. package/lib/components/StatusIndicator/StatusIndicatorStep.js +22 -12
  786. package/lib/components/StringFormatter/StringFormatter.js +21 -15
  787. package/lib/components/StringFormatter/utils/enums.js +1 -3
  788. package/lib/components/TagOverflow/TagOverflow.js +73 -11
  789. package/lib/components/TagOverflow/TagOverflowModal.js +6 -8
  790. package/lib/components/TagOverflow/TagOverflowPopover.js +35 -7
  791. package/lib/components/TagOverflow/constants.js +1 -3
  792. package/lib/components/TagSet/TagSet.js +73 -10
  793. package/lib/components/TagSet/TagSetModal.js +6 -8
  794. package/lib/components/TagSet/TagSetOverflow.js +42 -7
  795. package/lib/components/Tearsheet/Tearsheet.js +107 -8
  796. package/lib/components/Tearsheet/TearsheetNarrow.js +80 -8
  797. package/lib/components/Tearsheet/TearsheetPresence.js +3 -5
  798. package/lib/components/Tearsheet/TearsheetShell.js +135 -19
  799. package/lib/components/Tearsheet/next/StackContext.js +3 -5
  800. package/lib/components/Tearsheet/next/Tearsheet.js +15 -17
  801. package/lib/components/Tearsheet/next/TearsheetBody.js +6 -8
  802. package/lib/components/Tearsheet/next/TearsheetFooter.js +5 -7
  803. package/lib/components/Tearsheet/next/TearsheetHeader.js +4 -6
  804. package/lib/components/Tearsheet/next/TearsheetHeaderActions.js +5 -7
  805. package/lib/components/Tearsheet/next/TearsheetHeaderContent.js +5 -7
  806. package/lib/components/Tearsheet/next/context.js +4 -7
  807. package/lib/components/Tearsheet/usePresence.js +9 -5
  808. package/lib/components/Tearsheet/usePresenceContext.js +3 -5
  809. package/lib/components/Toolbar/Toolbar.js +9 -8
  810. package/lib/components/Toolbar/ToolbarButton.js +15 -7
  811. package/lib/components/Toolbar/ToolbarGroup.js +6 -6
  812. package/lib/components/TooltipTrigger/TooltipTrigger.js +10 -6
  813. package/lib/components/TruncatedList/TruncatedList.js +37 -8
  814. package/lib/components/TruncatedText/TruncatedText.d.ts.map +1 -1
  815. package/lib/components/TruncatedText/TruncatedText.js +12 -11
  816. package/lib/components/TruncatedText/useTruncatedText.js +3 -5
  817. package/lib/components/UserAvatar/UserAvatar.js +38 -9
  818. package/lib/components/UserProfileImage/UserProfileImage.js +43 -9
  819. package/lib/components/WebTerminal/WebTerminal.js +33 -9
  820. package/lib/components/WebTerminal/WebTerminalContentWrapper.js +10 -8
  821. package/lib/components/WebTerminal/hooks/index.js +7 -5
  822. package/lib/components/_Canary/Canary.js +6 -6
  823. package/lib/global/js/hooks/useActiveElement.js +2 -4
  824. package/lib/global/js/hooks/useClickOutside.js +2 -4
  825. package/lib/global/js/hooks/useCollapsible.js +2 -4
  826. package/lib/global/js/hooks/useControllableState.js +2 -4
  827. package/lib/global/js/hooks/useCreateComponentFocus.js +3 -5
  828. package/lib/global/js/hooks/useCreateComponentStepChange.js +2 -4
  829. package/lib/global/js/hooks/useFocus.js +3 -5
  830. package/lib/global/js/hooks/useIsomorphicEffect.js +2 -4
  831. package/lib/global/js/hooks/useMatchMedia.js +2 -4
  832. package/lib/global/js/hooks/useMergedRefs.js +2 -4
  833. package/lib/global/js/hooks/useOverflowItems/useOverflowItems.js +3 -5
  834. package/lib/global/js/hooks/useOverflowString.js +2 -4
  835. package/lib/global/js/hooks/usePortalTarget.js +4 -6
  836. package/lib/global/js/hooks/usePrefersReducedMotion.js +3 -5
  837. package/lib/global/js/hooks/usePrefix.js +2 -4
  838. package/lib/global/js/hooks/usePresence.js +2 -4
  839. package/lib/global/js/hooks/usePreviousValue.js +2 -4
  840. package/lib/global/js/hooks/useResetCreateComponent.js +3 -5
  841. package/lib/global/js/hooks/useResizeObserver.js +3 -5
  842. package/lib/global/js/hooks/useRetrieveFormTitles.js +2 -4
  843. package/lib/global/js/hooks/useRetrieveStepData.js +2 -4
  844. package/lib/global/js/hooks/useValidCreateStepCount.js +2 -4
  845. package/lib/global/js/hooks/useWindowResize.js +3 -5
  846. package/lib/global/js/hooks/useWindowScroll.js +4 -6
  847. package/lib/global/js/package-settings.js +1 -3
  848. package/lib/global/js/utils/Wrap.js +26 -4
  849. package/lib/global/js/utils/checkForOverflow.js +1 -3
  850. package/lib/global/js/utils/clamp.js +1 -3
  851. package/lib/global/js/utils/debounce.js +1 -3
  852. package/lib/global/js/utils/deepCloneObject.js +1 -3
  853. package/lib/global/js/utils/deepCompareObject.js +1 -3
  854. package/lib/global/js/utils/devtools.js +2 -4
  855. package/lib/global/js/utils/getFocusableElements.js +1 -3
  856. package/lib/global/js/utils/getNodeTextContent.js +1 -3
  857. package/lib/global/js/utils/getNumberOfHiddenSteps.js +1 -3
  858. package/lib/global/js/utils/getScrollbarWidth.js +1 -3
  859. package/lib/global/js/utils/getSupportedLocale.js +1 -3
  860. package/lib/global/js/utils/lastIndexInArray.js +1 -3
  861. package/lib/global/js/utils/makeDraggable/makeDraggable.js +1 -3
  862. package/lib/global/js/utils/pconsole.js +4 -9
  863. package/lib/global/js/utils/props-helper.js +2 -4
  864. package/lib/global/js/utils/rangeWithCallback.js +1 -3
  865. package/lib/global/js/utils/scrollableAncestor.js +1 -3
  866. package/lib/global/js/utils/throttle.js +1 -3
  867. package/lib/global/js/utils/useId.js +3 -5
  868. package/lib/global/js/utils/uuidv4.js +1 -3
  869. package/lib/global/js/utils/wait.js +1 -3
  870. package/lib/index.js +264 -267
  871. package/lib/node_modules/@carbon/colors/lib/index.js +15 -21
  872. package/lib/node_modules/@carbon/icon-helpers/lib/index.js +7 -10
  873. package/lib/node_modules/@carbon/icons-react/lib/{Icon.js → Icon-2zUDcllO.js} +44 -17
  874. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-0.js +274 -278
  875. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-1.js +303 -316
  876. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-10.js +478 -472
  877. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-11.js +491 -468
  878. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-12.js +482 -474
  879. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-13.js +509 -547
  880. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-14.js +546 -596
  881. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-15.js +596 -538
  882. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-16.js +571 -616
  883. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-17.js +669 -654
  884. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-18.js +683 -661
  885. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-19.js +701 -718
  886. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-2.js +332 -330
  887. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-20.js +743 -783
  888. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-21.js +548 -40
  889. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-3.js +340 -349
  890. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-4.js +360 -380
  891. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-5.js +397 -405
  892. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-6.js +405 -392
  893. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-7.js +418 -437
  894. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-8.js +456 -496
  895. package/lib/node_modules/@carbon/icons-react/lib/generated/bucket-9.js +489 -480
  896. package/lib/node_modules/@carbon/icons-react/lib/{iconPropTypes-U9gLABJo.js → iconPropTypes-DaTOKOBs.js} +12 -14
  897. package/lib/node_modules/@carbon/icons-react/lib/index.js +425 -395
  898. package/lib/node_modules/classnames/index.js +7 -10
  899. package/lib/settings.js +5 -7
  900. package/package.json +17 -17
  901. package/scss/components/EditInPlace/_edit-in-place.scss +30 -6
  902. package/scss/components/PageHeader/_page-header.scss +66 -6
  903. package/scss/components/TruncatedText/_truncated-text.scss +21 -0
  904. package/telemetry.yml +12 -3
  905. package/es/components/Checklist/Checklist.types.js +0 -30
  906. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts +0 -39
  907. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts.map +0 -1
  908. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts +0 -25
  909. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts.map +0 -1
  910. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts +0 -11
  911. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts.map +0 -1
  912. package/lib/components/Checklist/Checklist.types.js +0 -32
  913. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts +0 -39
  914. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts.map +0 -1
  915. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts +0 -25
  916. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts.map +0 -1
  917. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts +0 -11
  918. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts.map +0 -1
  919. package/lib/node_modules/@carbon/icons-react/lib/chunk-CsKB0u1v.js +0 -54
@@ -5,11 +5,9 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
 
8
- const require_runtime = require('../../../../../_virtual/_rolldown/runtime.js');
9
- const require_chunk_CsKB0u1v$1 = require('../chunk-CsKB0u1v.js');
10
- const require_Icon$1 = require('../Icon.js');
11
- const require_iconPropTypes_U9gLABJo$1 = require('../iconPropTypes-U9gLABJo.js');
12
-
8
+ const require_runtime = require("../../../../../_virtual/_rolldown/runtime.js");
9
+ const require_Icon_2zUDcllO$1 = require("../Icon-2zUDcllO.js");
10
+ const require_iconPropTypes_DaTOKOBs$1 = require("../iconPropTypes-DaTOKOBs.js");
13
11
  //#region ../../node_modules/@carbon/icons-react/lib/generated/bucket-21.js
14
12
  var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports) => {
15
13
  /**
@@ -21,14 +19,491 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
21
19
  * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
22
20
  */
23
21
  Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
24
- const require_chunk = require_chunk_CsKB0u1v$1.default;
25
- const require_Icon_js = require_Icon$1.default;
26
- const require_iconPropTypes = require_iconPropTypes_U9gLABJo$1.default;
22
+ const require_Icon = require_Icon_2zUDcllO$1.default;
23
+ const require_iconPropTypes = require_iconPropTypes_DaTOKOBs$1.default;
27
24
  let react = require("react");
28
- react = require_chunk.__toESM(react);
25
+ react = require_Icon.__toESM(react);
29
26
  let react_jsx_runtime = require("react/jsx-runtime");
30
- const ZipReference = react.default.forwardRef(function ZipReference({ children, size = 16, ...rest }, ref) {
31
- return react.default.createElement(require_Icon_js, {
27
+ const WindStream = /* @__PURE__ */ react.default.forwardRef(function WindStream({ children, size = 16, ...rest }, ref) {
28
+ return react.default.createElement(require_Icon.Icon, {
29
+ width: size,
30
+ height: size,
31
+ ref,
32
+ xmlns: "http://www.w3.org/2000/svg",
33
+ viewBox: "0 0 32 32",
34
+ fill: "currentColor",
35
+ ...rest
36
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,2,23.5859,3.4141,26.1719,6h-5.09a16.93,16.93,0,0,0-6.3139,1.2158L10.4893,8.9272A14.93,14.93,0,0,1,4.9185,10H2v2H4.9185a16.93,16.93,0,0,0,6.3139-1.2158l4.2783-1.7114A14.93,14.93,0,0,1,21.0815,8h5.09l-2.586,2.5859L25,12l5-5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,11l-1.4141,1.4141L22.1719,15H18.9014a16.9422,16.9422,0,0,0-5.9693,1.0825l-2.5664.9624A14.9456,14.9456,0,0,1,5.0986,18H2v2H5.0986a16.9422,16.9422,0,0,0,5.9693-1.0825l2.5664-.9624A14.9456,14.9456,0,0,1,18.9014,17h3.2705l-2.586,2.5859L21,21l5-5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,20l-1.4141,1.4141L18.1719,24H16.5967a16.9879,16.9879,0,0,0-5.3765.8721l-1.0727.3584A14.9852,14.9852,0,0,1,5.4033,26H2v2H5.4033a16.9879,16.9879,0,0,0,5.3765-.8721l1.0727-.3584A14.9852,14.9852,0,0,1,16.5967,26h1.5752l-2.586,2.5859L17,30l5-5Z" }), children);
37
+ });
38
+ if (process.env.NODE_ENV !== "production") WindStream.propTypes = require_iconPropTypes.iconPropTypes;
39
+ const WatsonHealthWindowAuto = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthWindowAuto({ children, size = 16, ...rest }, ref) {
40
+ return react.default.createElement(require_Icon.Icon, {
41
+ width: size,
42
+ height: size,
43
+ ref,
44
+ xmlns: "http://www.w3.org/2000/svg",
45
+ viewBox: "0 0 32 32",
46
+ fill: "currentColor",
47
+ ...rest
48
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 4H17V7H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 15H28V17H25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 25H17V28H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 15H7V17H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
49
+ d: "M7.55 7.04H9.55V10.04H7.55z",
50
+ transform: "rotate(-45 8.55 8.548)"
51
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
52
+ d: "M21.96 7.55H24.96V9.55H21.96z",
53
+ transform: "rotate(-45 23.454 8.555)"
54
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
55
+ d: "M22.45 21.95H24.45V24.95H22.45z",
56
+ transform: "rotate(-45 23.452 23.446)"
57
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
58
+ d: "M7.05 22.45H10.05V24.45H7.05z",
59
+ transform: "rotate(-45 8.544 23.451)"
60
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 30H28V32H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 0H28V2H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,10a6,6,0,1,0,6,6A6,6,0,0,0,16,10Zm-4,6a4,4,0,0,1,4-4v8A4,4,0,0,1,12,16Z" }), children);
61
+ });
62
+ if (process.env.NODE_ENV !== "production") WatsonHealthWindowAuto.propTypes = require_iconPropTypes.iconPropTypes;
63
+ const WatsonHealthWindowBase = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthWindowBase({ children, size = 16, ...rest }, ref) {
64
+ return react.default.createElement(require_Icon.Icon, {
65
+ width: size,
66
+ height: size,
67
+ ref,
68
+ xmlns: "http://www.w3.org/2000/svg",
69
+ viewBox: "0 0 32 32",
70
+ fill: "currentColor",
71
+ ...rest
72
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 2H17V5H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 13H28V15H25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 23H17V26H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 13H7V15H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
73
+ d: "M7.55 5.03H9.55V8.030000000000001H7.55z",
74
+ transform: "rotate(-45 8.56 6.544)"
75
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
76
+ d: "M21.96 5.54H24.96V7.54H21.96z",
77
+ transform: "rotate(-45 23.469 6.539)"
78
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
79
+ d: "M22.46 19.94H24.46V22.94H22.46z",
80
+ transform: "rotate(-45 23.462 21.442)"
81
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
82
+ d: "M7.04 20.45H10.04V22.45H7.04z",
83
+ transform: "rotate(-45 8.554 21.447)"
84
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 28H28V30H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,20a6,6,0,1,0-6-6A6,6,0,0,0,16,20Zm0-10v8a4,4,0,0,1,0-8Z" }), children);
85
+ });
86
+ if (process.env.NODE_ENV !== "production") WatsonHealthWindowBase.propTypes = require_iconPropTypes.iconPropTypes;
87
+ const WatsonHealthWindowBlackSaturation = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthWindowBlackSaturation({ children, size = 16, ...rest }, ref) {
88
+ return react.default.createElement(require_Icon.Icon, {
89
+ width: size,
90
+ height: size,
91
+ ref,
92
+ xmlns: "http://www.w3.org/2000/svg",
93
+ viewBox: "0 0 32 32",
94
+ fill: "currentColor",
95
+ ...rest
96
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 2H17V5H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27 15H30V17H27z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 27H17V30H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 15H5V17H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
97
+ d: "M6.225 5.729H8.228V8.732H6.225z",
98
+ transform: "rotate(-45 7.227 7.23)"
99
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
100
+ d: "M23.267 6.227H26.267V8.227H23.267z",
101
+ transform: "rotate(-45 24.767 7.227)"
102
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
103
+ d: "M23.769 23.269H25.770999999999997V26.270999999999997H23.769z",
104
+ transform: "rotate(-44.999 24.77 24.77)"
105
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M5.47 25.126 7.591 23 9 24.419 6.884 26.54 5.47 25.126z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 13H17V15H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 13H21V15H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 11H19V13H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 15H19V17H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 19H19V21H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 17H17V19H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 17H21V19H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,7a9,9,0,1,0,9,9A9.01,9.01,0,0,0,16,7ZM9,16a7.004,7.004,0,0,1,6-6.92V11h2V9.08a6.9231,6.9231,0,0,1,2,.605V11h1.89c.0374.0366.074.0732.11.11V13h1.3149a6.931,6.931,0,0,1,.6053,2H21v2h1.92a6.931,6.931,0,0,1-.6053,2H21v1.89c-.0364.0372-.073.0738-.11.11H19v1.3149a6.9231,6.9231,0,0,1-2,.605V21H15v1.92A7.004,7.004,0,0,1,9,16Z" }), children);
106
+ });
107
+ if (process.env.NODE_ENV !== "production") WatsonHealthWindowBlackSaturation.propTypes = require_iconPropTypes.iconPropTypes;
108
+ const WatsonHealthWindowOverlay = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthWindowOverlay({ children, size = 16, ...rest }, ref) {
109
+ return react.default.createElement(require_Icon.Icon, {
110
+ width: size,
111
+ height: size,
112
+ ref,
113
+ xmlns: "http://www.w3.org/2000/svg",
114
+ viewBox: "0 0 32 32",
115
+ fill: "currentColor",
116
+ ...rest
117
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 6H17V9H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25 17H28V19H25z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 27H17V30H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 17H7V19H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
118
+ d: "M7.55 9.03H9.55V12.03H7.55z",
119
+ transform: "rotate(-45 8.558 10.545)"
120
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
121
+ d: "M21.96 9.54H24.96V11.54H21.96z",
122
+ transform: "rotate(-45 23.466 10.54)"
123
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
124
+ d: "M22.46 23.94H24.46V26.94H22.46z",
125
+ transform: "rotate(-45 23.459 25.443)"
126
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
127
+ d: "M7.04 24.45H10.04V26.45H7.04z",
128
+ transform: "rotate(-45 8.55 25.448)"
129
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 2H28V4H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,24a6,6,0,1,0-6-6A6,6,0,0,0,16,24Zm0-10v8a4,4,0,0,1,0-8Z" }), children);
130
+ });
131
+ if (process.env.NODE_ENV !== "production") WatsonHealthWindowOverlay.propTypes = require_iconPropTypes.iconPropTypes;
132
+ const WatsonHealthWindowPreset = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthWindowPreset({ children, size = 16, ...rest }, ref) {
133
+ return react.default.createElement(require_Icon.Icon, {
134
+ width: size,
135
+ height: size,
136
+ ref,
137
+ xmlns: "http://www.w3.org/2000/svg",
138
+ viewBox: "0 0 32 32",
139
+ fill: "currentColor",
140
+ ...rest
141
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 6H17V8H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 15H26V17H24z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 24H17V26H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 15H8V17H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
142
+ d: "M8.586 8.586H10.586V10.586H8.586z",
143
+ transform: "rotate(-45 9.586 9.586)"
144
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
145
+ d: "M21.414 8.586H23.414V10.586H21.414z",
146
+ transform: "rotate(-45 22.414 9.586)"
147
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
148
+ d: "M21.414 21.414H23.414V23.414H21.414z",
149
+ transform: "rotate(-45 22.414 22.414)"
150
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
151
+ d: "M8.586 21.414H10.586V23.414H8.586z",
152
+ transform: "rotate(-45 9.586 22.414)"
153
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,22a6,6,0,1,0-6-6A6,6,0,0,0,16,22Zm0-10v8a4,4,0,0,1,0-8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H28a2.0021,2.0021,0,0,1,2,2V28A2.0021,2.0021,0,0,1,28,30ZM4,4V28H28V4Z" }), children);
154
+ });
155
+ if (process.env.NODE_ENV !== "production") WatsonHealthWindowPreset.propTypes = require_iconPropTypes.iconPropTypes;
156
+ const Windy = /* @__PURE__ */ react.default.forwardRef(function Windy({ children, size = 16, ...rest }, ref) {
157
+ return react.default.createElement(require_Icon.Icon, {
158
+ width: size,
159
+ height: size,
160
+ ref,
161
+ xmlns: "http://www.w3.org/2000/svg",
162
+ viewBox: "0 0 32 32",
163
+ fill: "currentColor",
164
+ ...rest
165
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,15H8V13H21a3,3,0,1,0-3-3H16a5,5,0,1,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,28a5.0057,5.0057,0,0,1-5-5h2a3,3,0,1,0,3-3H4V18H23a5,5,0,0,1,0,10Z" }), children);
166
+ });
167
+ if (process.env.NODE_ENV !== "production") Windy.propTypes = require_iconPropTypes.iconPropTypes;
168
+ const WindyDust = /* @__PURE__ */ react.default.forwardRef(function WindyDust({ children, size = 16, ...rest }, ref) {
169
+ return react.default.createElement(require_Icon.Icon, {
170
+ width: size,
171
+ height: size,
172
+ ref,
173
+ xmlns: "http://www.w3.org/2000/svg",
174
+ viewBox: "0 0 32 32",
175
+ fill: "currentColor",
176
+ ...rest
177
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,28a5.0057,5.0057,0,0,1-5-5h2a3,3,0,1,0,3-3H22V18h1a5,5,0,0,1,0,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 18H20V20H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 18H14V20H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 18H8V20H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,15H20V13h1a3,3,0,1,0-3-3H16a5,5,0,1,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 13H18V15H14z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 13H12V15H8z" }), children);
178
+ });
179
+ if (process.env.NODE_ENV !== "production") WindyDust.propTypes = require_iconPropTypes.iconPropTypes;
180
+ const WindySnow = /* @__PURE__ */ react.default.forwardRef(function WindySnow({ children, size = 16, ...rest }, ref) {
181
+ return react.default.createElement(require_Icon.Icon, {
182
+ width: size,
183
+ height: size,
184
+ ref,
185
+ xmlns: "http://www.w3.org/2000/svg",
186
+ viewBox: "0 0 32 32",
187
+ fill: "currentColor",
188
+ ...rest
189
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,28a5.0057,5.0057,0,0,1-5-5h2a3,3,0,1,0,3-3H6V18H25a5,5,0,0,1,0,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,15H10V13H23a3,3,0,1,0-3-3H18a5,5,0,1,1,5,5Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 23H13V25H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 25H15V27H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 27H17V29H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 23H17V25H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11 27H13V29H11z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 4H8V6H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 6H10V8H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 8H12V10H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 4H12V6H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 8H8V10H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 26H4V28H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 28H6V30H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 30H8V32H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 26H8V28H6z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 30H4V32H2z" }), children);
190
+ });
191
+ if (process.env.NODE_ENV !== "production") WindySnow.propTypes = require_iconPropTypes.iconPropTypes;
192
+ const WindyStrong = /* @__PURE__ */ react.default.forwardRef(function WindyStrong({ children, size = 16, ...rest }, ref) {
193
+ return react.default.createElement(require_Icon.Icon, {
194
+ width: size,
195
+ height: size,
196
+ ref,
197
+ xmlns: "http://www.w3.org/2000/svg",
198
+ viewBox: "0 0 32 32",
199
+ fill: "currentColor",
200
+ ...rest
201
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,30a5.0057,5.0057,0,0,1-5-5h2a3,3,0,1,0,3-3H4V20h9a5,5,0,0,1,0,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M25,25a5.0057,5.0057,0,0,1-5-5h2a3,3,0,1,0,3-3H2V15H25a5,5,0,0,1,0,10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,12H6V10H21a3,3,0,1,0-3-3H16a5,5,0,1,1,5,5Z" }), children);
202
+ });
203
+ if (process.env.NODE_ENV !== "production") WindyStrong.propTypes = require_iconPropTypes.iconPropTypes;
204
+ const WinterWarning = /* @__PURE__ */ react.default.forwardRef(function WinterWarning({ children, size = 16, ...rest }, ref) {
205
+ return react.default.createElement(require_Icon.Icon, {
206
+ width: size,
207
+ height: size,
208
+ ref,
209
+ xmlns: "http://www.w3.org/2000/svg",
210
+ viewBox: "0 0 32 32",
211
+ fill: "currentColor",
212
+ ...rest
213
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.684 19.051 19.167 19.891 13 15.486 13 7.369 15.555 5.665 14.445 4.001 12 5.631 9.555 4.001 8.445 5.665 11 7.369 11 14.057 6 10.486 6 8 4 8 4 10.279 1.684 11.051 2.316 12.949 4.833 12.11 10.28 16.001 4.833 19.891 2.316 19.051 1.684 20.949 4 21.721 4 24 6 24 6 21.515 11 17.944 11 24.631 8.445 26.335 9.555 27.999 12 26.368 14.445 27.999 15.555 26.335 13 24.631 13 17.943 18 21.515 18 24 20 24 20 21.721 22.316 20.949 21.684 19.051z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", {
214
+ fill: "none",
215
+ d: "M23.75,10h-1.5V6h1.5ZM23,11a1,1,0,1,0,1,1A1,1,0,0,0,23,11Z"
216
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29.9115,13.9355,23.6284,2.3706a.7181.7181,0,0,0-1.2568,0L16.0885,13.9355A.72.72,0,0,0,16.72,15H29.28A.72.72,0,0,0,29.9115,13.9355ZM22.25,6h1.5v4h-1.5ZM23,13a1,1,0,1,1,1-1A1,1,0,0,1,23,13Z" }), children);
217
+ });
218
+ if (process.env.NODE_ENV !== "production") WinterWarning.propTypes = require_iconPropTypes.iconPropTypes;
219
+ const WintryMix = /* @__PURE__ */ react.default.forwardRef(function WintryMix({ children, size = 16, ...rest }, ref) {
220
+ return react.default.createElement(require_Icon.Icon, {
221
+ width: size,
222
+ height: size,
223
+ ref,
224
+ xmlns: "http://www.w3.org/2000/svg",
225
+ viewBox: "0 0 32 32",
226
+ fill: "currentColor",
227
+ ...rest
228
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 26H17V28H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 28H19V30H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 30H21V32H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 26H21V28H19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 30H17V32H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 16H15V18H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15 18H17V20H15z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 20H19V22H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17 16H19V18H17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13 20H15V22H13z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,30a1,1,0,0,1-.8944-1.4474l2-4.0005a1,1,0,1,1,1.7888.8947l-2,4A.9981.9981,0,0,1,10,30Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.8008,9.1362a8.9943,8.9943,0,0,0-17.6006,0A6.5321,6.5321,0,0,0,2,15.5V22l1,2,1-2V20.18a6.4891,6.4891,0,0,0,3.4294,1.7246L6.106,24.5527a1,1,0,1,0,1.7885.8946l2-4a1,1,0,0,0-.447-1.3418.977.977,0,0,0-.489-.0894V20H8.5a4.4975,4.4975,0,0,1-.356-8.981l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,20h-.542v.0083A.9955.9955,0,0,0,22,21v3l1,2,1-2V21.9746a6.4473,6.4473,0,0,0,2-.4761V26l1,2,1-2V20.18A6.4876,6.4876,0,0,0,24.8008,9.1362Z" }), children);
229
+ });
230
+ if (process.env.NODE_ENV !== "production") WintryMix.propTypes = require_iconPropTypes.iconPropTypes;
231
+ const WirelessCheckout = /* @__PURE__ */ react.default.forwardRef(function WirelessCheckout({ children, size = 16, ...rest }, ref) {
232
+ return react.default.createElement(require_Icon.Icon, {
233
+ width: size,
234
+ height: size,
235
+ ref,
236
+ xmlns: "http://www.w3.org/2000/svg",
237
+ viewBox: "0 0 32 32",
238
+ fill: "currentColor",
239
+ ...rest
240
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,28V26A10,10,0,0,0,28,16h2A12,12,0,0,1,18,28Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,23V21a5,5,0,0,0,5-5h2A7,7,0,0,1,18,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,11H21V7a3,3,0,0,0-3-3H12A3,3,0,0,0,9,7v4H3a1,1,0,0,0-1,1.15L3.88,24.3a2,2,0,0,0,2,1.7H15V24H5.86L4.17,13H27ZM11,7a1,1,0,0,1,1-1h6a1,1,0,0,1,1,1v4H11Z" }), children);
241
+ });
242
+ if (process.env.NODE_ENV !== "production") WirelessCheckout.propTypes = require_iconPropTypes.iconPropTypes;
243
+ const Wmv = /* @__PURE__ */ react.default.forwardRef(function Wmv({ children, size = 16, ...rest }, ref) {
244
+ return react.default.createElement(require_Icon.Icon, {
245
+ width: size,
246
+ height: size,
247
+ ref,
248
+ xmlns: "http://www.w3.org/2000/svg",
249
+ viewBox: "0 0 32 32",
250
+ fill: "currentColor",
251
+ ...rest
252
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29 9 27 22 25 9 23 9 25.52 23 28.48 23 31 9 29 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M19 9 17.48 14 17 15.98 16.54 14 15 9 13 9 13 23 15 23 15 15 14.84 13 15.42 15 17 19.63 18.58 15 19.16 13 19 15 19 23 21 23 21 9 19 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9.2 9 8.86 17 8.6 21.54 8.19 18 7.51 12.54 5.49 12.54 4.81 18 4.4 21.54 4.14 17 3.8 9 2 9 3 23 5.27 23 6.03 18.07 6.49 14 6.5 13.97 6.51 14 6.97 18.07 7.73 23 10 23 11 9 9.2 9z" }), children);
253
+ });
254
+ if (process.env.NODE_ENV !== "production") Wmv.propTypes = require_iconPropTypes.iconPropTypes;
255
+ const WordCloud = /* @__PURE__ */ react.default.forwardRef(function WordCloud({ children, size = 16, ...rest }, ref) {
256
+ return react.default.createElement(require_Icon.Icon, {
257
+ width: size,
258
+ height: size,
259
+ ref,
260
+ xmlns: "http://www.w3.org/2000/svg",
261
+ viewBox: "0 0 32 32",
262
+ fill: "currentColor",
263
+ ...rest
264
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 16H22V18H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 20H18V22H10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,7h0a8.0233,8.0233,0,0,1,7.8649,6.4935l.2591,1.346,1.3488.244A5.5019,5.5019,0,0,1,24.5076,26H7.4954a5.5019,5.5019,0,0,1-.9695-10.9165l1.3488-.244.2591-1.346A8.0256,8.0256,0,0,1,16,7m0-2a10.0244,10.0244,0,0,0-9.83,8.1155A7.5019,7.5019,0,0,0,7.4911,28H24.5076a7.5019,7.5019,0,0,0,1.3213-14.8845A10.0229,10.0229,0,0,0,15.9883,5Z" }), children);
265
+ });
266
+ if (process.env.NODE_ENV !== "production") WordCloud.propTypes = require_iconPropTypes.iconPropTypes;
267
+ const WorkflowAutomation = /* @__PURE__ */ react.default.forwardRef(function WorkflowAutomation({ children, size = 16, ...rest }, ref) {
268
+ return react.default.createElement(require_Icon.Icon, {
269
+ width: size,
270
+ height: size,
271
+ ref,
272
+ xmlns: "http://www.w3.org/2000/svg",
273
+ viewBox: "0 0 32 32",
274
+ fill: "currentColor",
275
+ ...rest
276
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("switch", { children: [/* @__PURE__ */ (0, react_jsx_runtime.jsx)("foreignObject", {
277
+ width: "1",
278
+ height: "1",
279
+ x: "0",
280
+ y: "0",
281
+ requiredExtensions: "http://ns.adobe.com/AdobeIllustrator/10.0/"
282
+ }), /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("g", { children: [
283
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,27c-3.6,0-7.1-1.8-9.2-5H12v-2H4v8h2v-3.7c2.5,3,6.1,4.7,10,4.7V27z" }),
284
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,23v-2h-2.1c-0.1-0.6-0.4-1.2-0.7-1.8l1.5-1.5l-1.4-1.4l-1.5,1.5c-0.5-0.3-1.1-0.6-1.8-0.7V15h-2v2.1 c-0.6,0.1-1.2,0.4-1.8,0.7l-1.5-1.5l-1.4,1.4l1.5,1.5c-0.3,0.5-0.6,1.1-0.7,1.8H17v2h2.1c0.1,0.6,0.4,1.2,0.7,1.8l-1.5,1.5 l1.4,1.4l1.5-1.5c0.5,0.3,1.1,0.6,1.8,0.7V29h2v-2.1c0.6-0.1,1.2-0.4,1.8-0.7l1.5,1.5l1.4-1.4l-1.5-1.5c0.3-0.5,0.6-1.1,0.7-1.8 H31z M24,25c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3S25.7,25,24,25z" }),
285
+ /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,10h5.2C21.9,4.9,15.1,3.5,10,6.8c-3.1,2-5,5.5-5,9.2H3C3,8.8,8.8,3,16,3c3.9,0,7.5,1.7,10,4.7V4h2v8h-8V10z" })
286
+ ] })] }), children);
287
+ });
288
+ if (process.env.NODE_ENV !== "production") WorkflowAutomation.propTypes = require_iconPropTypes.iconPropTypes;
289
+ const Workspace = /* @__PURE__ */ react.default.forwardRef(function Workspace({ children, size = 16, ...rest }, ref) {
290
+ return react.default.createElement(require_Icon.Icon, {
291
+ width: size,
292
+ height: size,
293
+ ref,
294
+ xmlns: "http://www.w3.org/2000/svg",
295
+ viewBox: "0 0 32 32",
296
+ fill: "currentColor",
297
+ ...rest
298
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,17v8H6V17H16m0-2H6a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2H16a2,2,0,0,0,2-2V17a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,6v5H17V6H27m0-2H17a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,17v5H22V17h5m0-2H22a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2h5a2,2,0,0,0,2-2V17a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,6v5H6V6h5m0-2H6A2,2,0,0,0,4,6v5a2,2,0,0,0,2,2h5a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), children);
299
+ });
300
+ if (process.env.NODE_ENV !== "production") Workspace.propTypes = require_iconPropTypes.iconPropTypes;
301
+ const WorkspaceImport = /* @__PURE__ */ react.default.forwardRef(function WorkspaceImport({ children, size = 16, ...rest }, ref) {
302
+ return react.default.createElement(require_Icon.Icon, {
303
+ width: size,
304
+ height: size,
305
+ ref,
306
+ xmlns: "http://www.w3.org/2000/svg",
307
+ viewBox: "0 0 32 32",
308
+ fill: "currentColor",
309
+ ...rest
310
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,6v5H17V6H27m0-2H17a2,2,0,0,0-2,2v5a2,2,0,0,0,2,2H27a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,25H6V17h6V15H6a2,2,0,0,0-2,2v8a2,2,0,0,0,2,2h6Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30 20 16.828 20 19.414 17.414 18 16 13 21 18 26 19.414 24.586 16.828 22 30 22 30 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11,6v5H6V6h5m0-2H6A2,2,0,0,0,4,6v5a2,2,0,0,0,2,2h5a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2Z" }), children);
311
+ });
312
+ if (process.env.NODE_ENV !== "production") WorkspaceImport.propTypes = require_iconPropTypes.iconPropTypes;
313
+ const Worship = /* @__PURE__ */ react.default.forwardRef(function Worship({ children, size = 16, ...rest }, ref) {
314
+ return react.default.createElement(require_Icon.Icon, {
315
+ width: size,
316
+ height: size,
317
+ ref,
318
+ xmlns: "http://www.w3.org/2000/svg",
319
+ viewBox: "0 0 32 32",
320
+ fill: "currentColor",
321
+ ...rest
322
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26.5859,17,22,21.5859v0h0l-5-5a2.002,2.002,0,0,0-2.8286,0L9.585,21.1709A2.0031,2.0031,0,0,0,9.585,24l4.0009,4H6v2H16a1,1,0,0,0,.707-1.707L11,22.585,15.5852,18l5.7078,5.707a.9995.9995,0,0,0,1.414,0L28,18.4141Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.5,17A3.5,3.5,0,1,1,25,13.5,3.5042,3.5042,0,0,1,21.5,17Zm0-5A1.5,1.5,0,1,0,23,13.5,1.5017,1.5017,0,0,0,21.5,12Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,10.5977l12-6.462,12.5264,6.7452.9472-1.7618-13-7a1.0045,1.0045,0,0,0-.9472,0l-13,7A1,1,0,0,0,2,10V30H4Z" }), children);
323
+ });
324
+ if (process.env.NODE_ENV !== "production") Worship.propTypes = require_iconPropTypes.iconPropTypes;
325
+ const WorshipChristian = /* @__PURE__ */ react.default.forwardRef(function WorshipChristian({ children, size = 16, ...rest }, ref) {
326
+ return react.default.createElement(require_Icon.Icon, {
327
+ width: size,
328
+ height: size,
329
+ ref,
330
+ xmlns: "http://www.w3.org/2000/svg",
331
+ viewBox: "0 0 32 32",
332
+ fill: "currentColor",
333
+ ...rest
334
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M17,30H15a2.0021,2.0021,0,0,1-2-2V14H8a2.0021,2.0021,0,0,1-2-2V10A2.0021,2.0021,0,0,1,8,8h5V4a2.0021,2.0021,0,0,1,2-2h2a2.0021,2.0021,0,0,1,2,2V8h5a2.0021,2.0021,0,0,1,2,2v2a2.0021,2.0021,0,0,1-2,2H19V28A2.0021,2.0021,0,0,1,17,30ZM8,10v2h7V28h2V12h7V10H17V4H15v6Z" }), children);
335
+ });
336
+ if (process.env.NODE_ENV !== "production") WorshipChristian.propTypes = require_iconPropTypes.iconPropTypes;
337
+ const WorshipJewish = /* @__PURE__ */ react.default.forwardRef(function WorshipJewish({ children, size = 16, ...rest }, ref) {
338
+ return react.default.createElement(require_Icon.Icon, {
339
+ width: size,
340
+ height: size,
341
+ ref,
342
+ xmlns: "http://www.w3.org/2000/svg",
343
+ viewBox: "0 0 32 32",
344
+ fill: "currentColor",
345
+ ...rest
346
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24.291,16l3.585-6.5181A1,1,0,0,0,27,8H19.8911L16.876,2.5181a1,1,0,0,0-1.752,0L12.1089,8H5a1,1,0,0,0-.876,1.4819L7.709,16,4.124,22.5181A1,1,0,0,0,5,24h7.1089l3.0151,5.4819a1,1,0,0,0,1.752,0L19.8911,24H27a1,1,0,0,0,.876-1.4819Zm-5.5823,6L16,26.9248,13.2913,22h-6.6l3.3-6-3.3-6h6.6L16,5.0752,18.7087,10h6.6l-3.3,6,3.3,6Z" }), children);
347
+ });
348
+ if (process.env.NODE_ENV !== "production") WorshipJewish.propTypes = require_iconPropTypes.iconPropTypes;
349
+ const WorshipMuslim = /* @__PURE__ */ react.default.forwardRef(function WorshipMuslim({ children, size = 16, ...rest }, ref) {
350
+ return react.default.createElement(require_Icon.Icon, {
351
+ width: size,
352
+ height: size,
353
+ ref,
354
+ xmlns: "http://www.w3.org/2000/svg",
355
+ viewBox: "0 0 32 32",
356
+ fill: "currentColor",
357
+ ...rest
358
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,18a.9986.9986,0,0,1-.5415-.1594L22,14.9688l-4.4585,2.8718a1,1,0,0,1-1.5088-1.095l1.35-5.1318L14.3105,8.69a1,1,0,0,1,.5508-1.7146l4.3745-.6128,1.8663-3.8032A1.0008,1.0008,0,0,1,21.9878,2a1.0171,1.0171,0,0,1,.8989.5378L24.88,6.3625l4.2622.6133A1,1,0,0,1,29.69,8.69l-3.0723,2.9239,1.35,5.1318A1,1,0,0,1,27,18Zm-5-5.2207a.999.999,0,0,1,.5415.1594l2.8369,1.8272-.8457-3.2149a1.0006,1.0006,0,0,1,.2778-.9787l2.0074-1.91-2.73-.3929a.9994.9994,0,0,1-.7441-.5275L22.0269,5.2151,20.7979,7.72a1.0008,1.0008,0,0,1-.7593.55L17.19,8.6687l2,1.9036a1.0006,1.0006,0,0,1,.2778.9787l-.8457,3.2149,2.8369-1.8272A.999.999,0,0,1,22,12.7793Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M15.8169,30A13.8137,13.8137,0,0,1,9.0752,4.1277a1,1,0,0,1,1.3613,1.3611A11.8091,11.8091,0,0,0,26.5107,21.5635a1,1,0,0,1,1.3619,1.3611A13.8411,13.8411,0,0,1,15.8169,30ZM7.3271,7.9727a11.81,11.81,0,0,0,16.7,16.7,13.8086,13.8086,0,0,1-16.7-16.7Z" }), children);
359
+ });
360
+ if (process.env.NODE_ENV !== "production") WorshipMuslim.propTypes = require_iconPropTypes.iconPropTypes;
361
+ const QX = /* @__PURE__ */ react.default.forwardRef(function QX({ children, size = 16, ...rest }, ref) {
362
+ return react.default.createElement(require_Icon.Icon, {
363
+ width: size,
364
+ height: size,
365
+ ref,
366
+ xmlns: "http://www.w3.org/2000/svg",
367
+ viewBox: "0 0 32 32",
368
+ fill: "currentColor",
369
+ ...rest
370
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 9 18 9 16 15 14 9 12 9 14.75 16 12 23 14 23 16 17 18 23 20 23 17.25 16 20 9z" }), children);
371
+ });
372
+ if (process.env.NODE_ENV !== "production") QX.propTypes = require_iconPropTypes.iconPropTypes;
373
+ const XAxis = /* @__PURE__ */ react.default.forwardRef(function XAxis({ children, size = 16, ...rest }, ref) {
374
+ return react.default.createElement(require_Icon.Icon, {
375
+ width: size,
376
+ height: size,
377
+ ref,
378
+ xmlns: "http://www.w3.org/2000/svg",
379
+ viewBox: "0 0 32 32",
380
+ fill: "currentColor",
381
+ ...rest
382
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M23,20l-1.4141,1.4141L24.1719,24H6V4H4V24a2.0023,2.0023,0,0,0,2,2H24.1719l-2.586,2.5859L23,30l5-5Z" }), children);
383
+ });
384
+ if (process.env.NODE_ENV !== "production") XAxis.propTypes = require_iconPropTypes.iconPropTypes;
385
+ const Xls = /* @__PURE__ */ react.default.forwardRef(function Xls({ children, size = 16, ...rest }, ref) {
386
+ return react.default.createElement(require_Icon.Icon, {
387
+ width: size,
388
+ height: size,
389
+ ref,
390
+ xmlns: "http://www.w3.org/2000/svg",
391
+ viewBox: "0 0 32 32",
392
+ fill: "currentColor",
393
+ ...rest
394
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,23H22V21h6V17H24a2.002,2.002,0,0,1-2-2V11a2.002,2.002,0,0,1,2-2h6v2H24v4h4a2.002,2.002,0,0,1,2,2v4A2.0023,2.0023,0,0,1,28,23Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M14 21 14 9 12 9 12 23 20 23 20 21 14 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 9 8 9 6 15 4 9 2 9 4.752 16 2 23 4 23 6 17 8 23 10 23 7.245 16 10 9z" }), children);
395
+ });
396
+ if (process.env.NODE_ENV !== "production") Xls.propTypes = require_iconPropTypes.iconPropTypes;
397
+ const Xml = /* @__PURE__ */ react.default.forwardRef(function Xml({ children, size = 16, ...rest }, ref) {
398
+ return react.default.createElement(require_Icon.Icon, {
399
+ width: size,
400
+ height: size,
401
+ ref,
402
+ xmlns: "http://www.w3.org/2000/svg",
403
+ viewBox: "0 0 32 32",
404
+ fill: "currentColor",
405
+ ...rest
406
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 21 24 9 22 9 22 23 30 23 30 21 24 21z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 9 16.48 14 16 15.98 15.54 14 14 9 12 9 12 23 14 23 14 15 13.84 13 14.42 15 16 19.63 17.58 15 18.16 13 18 15 18 23 20 23 20 9 18 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 9 8 9 6 15 4 9 2 9 4.75 16 2 23 4 23 6 17 8 23 10 23 7.25 16 10 9z" }), children);
407
+ });
408
+ if (process.env.NODE_ENV !== "production") Xml.propTypes = require_iconPropTypes.iconPropTypes;
409
+ const QY = /* @__PURE__ */ react.default.forwardRef(function QY({ children, size = 16, ...rest }, ref) {
410
+ return react.default.createElement(require_Icon.Icon, {
411
+ width: size,
412
+ height: size,
413
+ ref,
414
+ xmlns: "http://www.w3.org/2000/svg",
415
+ viewBox: "0 0 32 32",
416
+ fill: "currentColor",
417
+ ...rest
418
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 9 18 9 16 16 14 9 12 9 15 18 15 23 17 23 17 18 20 9z" }), children);
419
+ });
420
+ if (process.env.NODE_ENV !== "production") QY.propTypes = require_iconPropTypes.iconPropTypes;
421
+ const YAxis = /* @__PURE__ */ react.default.forwardRef(function YAxis({ children, size = 16, ...rest }, ref) {
422
+ return react.default.createElement(require_Icon.Icon, {
423
+ width: size,
424
+ height: size,
425
+ ref,
426
+ xmlns: "http://www.w3.org/2000/svg",
427
+ viewBox: "0 0 32 32",
428
+ fill: "currentColor",
429
+ ...rest
430
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,26V7.8281l2.5859,2.586L12,9,7,4,2,9l1.4141,1.4141L6,7.8281V26a2.0023,2.0023,0,0,0,2,2H28V26Z" }), children);
431
+ });
432
+ if (process.env.NODE_ENV !== "production") YAxis.propTypes = require_iconPropTypes.iconPropTypes;
433
+ const QZ = /* @__PURE__ */ react.default.forwardRef(function QZ({ children, size = 16, ...rest }, ref) {
434
+ return react.default.createElement(require_Icon.Icon, {
435
+ width: size,
436
+ height: size,
437
+ ref,
438
+ xmlns: "http://www.w3.org/2000/svg",
439
+ viewBox: "0 0 32 32",
440
+ fill: "currentColor",
441
+ ...rest
442
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20 9 12 9 12 11 18 11 12 21 12 23 20 23 20 21 14 21 20 11 20 9z" }), children);
443
+ });
444
+ if (process.env.NODE_ENV !== "production") QZ.propTypes = require_iconPropTypes.iconPropTypes;
445
+ const ZLpar = /* @__PURE__ */ react.default.forwardRef(function ZLpar({ children, size = 16, ...rest }, ref) {
446
+ return react.default.createElement(require_Icon.Icon, {
447
+ width: size,
448
+ height: size,
449
+ ref,
450
+ xmlns: "http://www.w3.org/2000/svg",
451
+ viewBox: "0 0 32 32",
452
+ fill: "currentColor",
453
+ ...rest
454
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24,10h4c1.1046,0,2-.8954,2-2V4c0-1.1046-.8954-2-2-2h-4c-1.1046,0-2,.8954-2,2v1h-3c-1.1046,0-2,.8954-2,2V15h-3V5c0-1.1046-.8954-2-2-2H4c-1.1046,0-2,.8954-2,2V27c0,1.1046,.8954,2,2,2H12c1.1046,0,2-.8954,2-2v-10h3v8c0,1.1046,.8954,2,2,2h3v1c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-4c-1.1046,0-2,.8954-2,2v1h-3v-8h3v1c0,1.1046,.8954,2,2,2h4c1.1046,0,2-.8954,2-2v-4c0-1.1046-.8954-2-2-2h-4c-1.1046,0-2,.8954-2,2v1h-3V7h3v1c0,1.1046,.8954,2,2,2Zm0-6h4v4s-4,0-4,0V4ZM11.3992,12l-7.3992,5.9194V6.0806l7.3992,5.9194Zm.6013,2.0801l.0007,11.8403-7.4004-5.9204,7.3997-5.9199Zm-.0002-4.1606L5.8508,5h6.1492l.0002,4.9194ZM4,22.0806l6.1492,4.9194H4v-4.9194Zm20,1.9194h4v4h-4v-4Zm0-10h4v4h-4v-4Z" }), children);
455
+ });
456
+ if (process.env.NODE_ENV !== "production") ZLpar.propTypes = require_iconPropTypes.iconPropTypes;
457
+ const ZSystems = /* @__PURE__ */ react.default.forwardRef(function ZSystems({ children, size = 16, ...rest }, ref) {
458
+ return react.default.createElement(require_Icon.Icon, {
459
+ width: size,
460
+ height: size,
461
+ ref,
462
+ xmlns: "http://www.w3.org/2000/svg",
463
+ viewBox: "0 0 32 32",
464
+ fill: "currentColor",
465
+ ...rest
466
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27,3h-8c-1.1028,0-2,.8975-2,2V27c0,1.1025,.8972,2,2,2h8c1.1028,0,2-.8975,2-2V5c0-1.1025-.8972-2-2-2Zm.0002,6.9194l-6.1494-4.9194h6.1492l.0002,4.9194Zm-.6011,2.0806l-7.3992,5.9194V6.0806l7.3992,5.9194Zm.6013,2.0801l.0007,11.8403-7.4004-5.9204,7.3997-5.9199Zm-8.0005,8.0005l6.1492,4.9194h-6.1492v-4.9194Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M13,3H5c-1.1028,0-2,.8975-2,2V27c0,1.1025,.8972,2,2,2H13c1.1028,0,2-.8975,2-2V5c0-1.1025-.8972-2-2-2Zm.0002,6.9194L6.8508,5h6.1492l.0002,4.9194Zm-.6011,2.0806l-7.3992,5.9194V6.0806l7.3992,5.9194Zm.6013,2.0801l.0007,11.8403-7.4004-5.9204,7.3997-5.9199ZM5,22.0806l6.1492,4.9194H5v-4.9194Z" }), children);
467
+ });
468
+ if (process.env.NODE_ENV !== "production") ZSystems.propTypes = require_iconPropTypes.iconPropTypes;
469
+ const ZAxis = /* @__PURE__ */ react.default.forwardRef(function ZAxis({ children, size = 16, ...rest }, ref) {
470
+ return react.default.createElement(require_Icon.Icon, {
471
+ width: size,
472
+ height: size,
473
+ ref,
474
+ xmlns: "http://www.w3.org/2000/svg",
475
+ viewBox: "0 0 32 32",
476
+ fill: "currentColor",
477
+ ...rest
478
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26 22 26 25.586 17 16.586 17 10 17 6 17 5.828 19.586 8.414 21 7 16 2 11 7 12.414 8.414 15 5.828 15 6 15 10 15 16.586 6 25.586 6 22 4 22 4 29 11 29 11 27 7.414 27 16 18.414 24.586 27 21 27 21 29 28 29 28 22 26 22z" }), children);
479
+ });
480
+ if (process.env.NODE_ENV !== "production") ZAxis.propTypes = require_iconPropTypes.iconPropTypes;
481
+ const ZHyperLink = /* @__PURE__ */ react.default.forwardRef(function ZHyperLink({ children, size = 16, ...rest }, ref) {
482
+ return react.default.createElement(require_Icon.Icon, {
483
+ width: size,
484
+ height: size,
485
+ ref,
486
+ xmlns: "http://www.w3.org/2000/svg",
487
+ viewBox: "0 0 32 32",
488
+ fill: "currentColor",
489
+ ...rest
490
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M29,5v22c0,1.1-.9,2-2,2h-8c-1.1,0-2-.9-2-2v-4h2v4h8V5h-8v4h-2v-4c0-1.1.9-2,2-2h8c1.1,0,2,.9,2,2ZM13,27H5V5h8v4h2v-4c0-1.1-.9-2-2-2H5c-1.1,0-2,.9-2,2v22c0,1.1.9,2,2,2h8c1.1,0,2-.9,2-2v-4h-2v4ZM13.1,12.7l-1.4-1.4-4.7,4.7,4.7,4.7,1.4-1.4-2.3-2.3h10.4l-2.3,2.3,1.4,1.4,4.7-4.7-4.7-4.7-1.4,1.4,2.3,2.3h-10.4l2.3-2.3Z" }), children);
491
+ });
492
+ if (process.env.NODE_ENV !== "production") ZHyperLink.propTypes = require_iconPropTypes.iconPropTypes;
493
+ const Zip = /* @__PURE__ */ react.default.forwardRef(function Zip({ children, size = 16, ...rest }, ref) {
494
+ return react.default.createElement(require_Icon.Icon, {
495
+ width: size,
496
+ height: size,
497
+ ref,
498
+ xmlns: "http://www.w3.org/2000/svg",
499
+ viewBox: "0 0 32 32",
500
+ fill: "currentColor",
501
+ ...rest
502
+ }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,9H22V23h2V18h4a2,2,0,0,0,2-2V11A2,2,0,0,0,28,9Zm0,7H24V11h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 9 12 11 15 11 15 21 12 21 12 23 20 23 20 21 17 21 17 11 20 11 20 9 12 9z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10 9 2 9 2 11 8 11 2 21 2 23 10 23 10 21 4 21 10 11 10 9z" }), children);
503
+ });
504
+ if (process.env.NODE_ENV !== "production") Zip.propTypes = require_iconPropTypes.iconPropTypes;
505
+ const ZipReference = /* @__PURE__ */ react.default.forwardRef(function ZipReference({ children, size = 16, ...rest }, ref) {
506
+ return react.default.createElement(require_Icon.Icon, {
32
507
  width: size,
33
508
  height: size,
34
509
  ref,
@@ -39,8 +514,8 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
39
514
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 20 4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M28,2H22V16h2V11h4a2,2,0,0,0,2-2V4A2,2,0,0,0,28,2Zm0,7H24V4h4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 4 15 4 15 14 12 14 12 16 20 16 20 14 17 14 17 4 20 4 20 2 12 2 12 4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 4 8 4 2 14 2 16 10 16 10 14 4 14 10 4 10 2 2 2 2 4z" }), children);
40
515
  });
41
516
  if (process.env.NODE_ENV !== "production") ZipReference.propTypes = require_iconPropTypes.iconPropTypes;
42
- const ZoomArea = react.default.forwardRef(function ZoomArea({ children, size = 16, ...rest }, ref) {
43
- return react.default.createElement(require_Icon_js, {
517
+ const ZoomArea = /* @__PURE__ */ react.default.forwardRef(function ZoomArea({ children, size = 16, ...rest }, ref) {
518
+ return react.default.createElement(require_Icon.Icon, {
44
519
  width: size,
45
520
  height: size,
46
521
  ref,
@@ -51,8 +526,8 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
51
526
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,29.5859l-4.6885-4.6884a8.028,8.028,0,1,0-1.414,1.414L29.5859,31ZM20,26a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,20,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,26H4a2.0021,2.0021,0,0,1-2-2V20H4v4H8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 12H4V16H2z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,8H24V4H20V2h4a2.0021,2.0021,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 2H16V4H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,8H2V4A2.0021,2.0021,0,0,1,4,2H8V4H4Z" }), children);
52
527
  });
53
528
  if (process.env.NODE_ENV !== "production") ZoomArea.propTypes = require_iconPropTypes.iconPropTypes;
54
- const ZoomFit = react.default.forwardRef(function ZoomFit({ children, size = 16, ...rest }, ref) {
55
- return react.default.createElement(require_Icon_js, {
529
+ const ZoomFit = /* @__PURE__ */ react.default.forwardRef(function ZoomFit({ children, size = 16, ...rest }, ref) {
530
+ return react.default.createElement(require_Icon.Icon, {
56
531
  width: size,
57
532
  height: size,
58
533
  ref,
@@ -63,8 +538,8 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
63
538
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.4479,20A10.856,10.856,0,0,0,24,13,11,11,0,1,0,13,24a10.856,10.856,0,0,0,7-2.5521L27.5859,29,29,27.5859ZM13,22a9,9,0,1,1,9-9A9.01,9.01,0,0,1,13,22Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10,12H8V10a2.0023,2.0023,0,0,1,2-2h2v2H10Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18,12H16V10H14V8h2a2.0023,2.0023,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12,18H10a2.0023,2.0023,0,0,1-2-2V14h2v2h2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16,18H14V16h2V14h2v2A2.0023,2.0023,0,0,1,16,18Z" }), children);
64
539
  });
65
540
  if (process.env.NODE_ENV !== "production") ZoomFit.propTypes = require_iconPropTypes.iconPropTypes;
66
- const ZoomIn = react.default.forwardRef(function ZoomIn({ children, size = 16, ...rest }, ref) {
67
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
541
+ const ZoomIn = /* @__PURE__ */ react.default.forwardRef(function ZoomIn({ children, size = 16, ...rest }, ref) {
542
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
68
543
  width: size,
69
544
  height: size,
70
545
  ref,
@@ -73,7 +548,7 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
73
548
  fill: "currentColor",
74
549
  ...rest
75
550
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M9 6 7 6 7 4 6 4 6 6 4 6 4 7 6 7 6 9 7 9 7 7 9 7z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.7,10C11.5,9,12,7.8,12,6.5C12,3.5,9.5,1,6.5,1S1,3.5,1,6.5S3.5,12,6.5,12c1.3,0,2.5-0.5,3.5-1.3l3.8,3.8l0.7-0.7 L10.7,10z M6.5,11C4,11,2,9,2,6.5S4,2,6.5,2S11,4,11,6.5S9,11,6.5,11L6.5,11z" }), children);
76
- return react.default.createElement(require_Icon_js, {
551
+ return react.default.createElement(require_Icon.Icon, {
77
552
  width: size,
78
553
  height: size,
79
554
  ref,
@@ -84,8 +559,8 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
84
559
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M18 12 14 12 14 8 12 8 12 12 8 12 8 14 12 14 12 18 14 18 14 14 18 14 18 12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.4479,20A10.856,10.856,0,0,0,24,13,11,11,0,1,0,13,24a10.856,10.856,0,0,0,7-2.5521L27.5859,29,29,27.5859ZM13,22a9,9,0,1,1,9-9A9.01,9.01,0,0,1,13,22Z" }), children);
85
560
  });
86
561
  if (process.env.NODE_ENV !== "production") ZoomIn.propTypes = require_iconPropTypes.iconPropTypes;
87
- const ZoomInArea = react.default.forwardRef(function ZoomInArea({ children, size = 16, ...rest }, ref) {
88
- return react.default.createElement(require_Icon_js, {
562
+ const ZoomInArea = /* @__PURE__ */ react.default.forwardRef(function ZoomInArea({ children, size = 16, ...rest }, ref) {
563
+ return react.default.createElement(require_Icon.Icon, {
89
564
  width: size,
90
565
  height: size,
91
566
  ref,
@@ -96,8 +571,8 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
96
571
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M24 19 21 19 21 16 19 16 19 19 16 19 16 21 19 21 19 24 21 24 21 21 24 21 24 19z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,29.5859l-4.6885-4.6884a8.028,8.028,0,1,0-1.414,1.414L29.5859,31ZM20,26a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,20,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,8H2V4A2.0021,2.0021,0,0,1,4,2H8V4H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,8H24V4H20V2h4a2.0021,2.0021,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 2H16V4H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,26H4a2.0021,2.0021,0,0,1-2-2V20H4v4H8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 12H4V16H2z" }), children);
97
572
  });
98
573
  if (process.env.NODE_ENV !== "production") ZoomInArea.propTypes = require_iconPropTypes.iconPropTypes;
99
- const ZoomOut = react.default.forwardRef(function ZoomOut({ children, size = 16, ...rest }, ref) {
100
- if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon_js, {
574
+ const ZoomOut = /* @__PURE__ */ react.default.forwardRef(function ZoomOut({ children, size = 16, ...rest }, ref) {
575
+ if (size === 16 || size === "16" || size === "16px") return react.default.createElement(require_Icon.Icon, {
101
576
  width: size,
102
577
  height: size,
103
578
  ref,
@@ -106,7 +581,7 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
106
581
  fill: "currentColor",
107
582
  ...rest
108
583
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4 6H9V7H4z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M10.7,10C11.5,9,12,7.8,12,6.5C12,3.5,9.5,1,6.5,1S1,3.5,1,6.5S3.5,12,6.5,12c1.3,0,2.5-0.5,3.5-1.3l3.8,3.8l0.7-0.7 L10.7,10z M6.5,11C4,11,2,9,2,6.5S4,2,6.5,2S11,4,11,6.5S9,11,6.5,11L6.5,11z" }), children);
109
- return react.default.createElement(require_Icon_js, {
584
+ return react.default.createElement(require_Icon.Icon, {
110
585
  width: size,
111
586
  height: size,
112
587
  ref,
@@ -117,8 +592,8 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
117
592
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8 12H18V14H8z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21.4479,20A10.856,10.856,0,0,0,24,13,11,11,0,1,0,13,24a10.856,10.856,0,0,0,7-2.5521L27.5859,29,29,27.5859ZM13,22a9,9,0,1,1,9-9A9.01,9.01,0,0,1,13,22Z" }), children);
118
593
  });
119
594
  if (process.env.NODE_ENV !== "production") ZoomOut.propTypes = require_iconPropTypes.iconPropTypes;
120
- const ZoomOutArea = react.default.forwardRef(function ZoomOutArea({ children, size = 16, ...rest }, ref) {
121
- return react.default.createElement(require_Icon_js, {
595
+ const ZoomOutArea = /* @__PURE__ */ react.default.forwardRef(function ZoomOutArea({ children, size = 16, ...rest }, ref) {
596
+ return react.default.createElement(require_Icon.Icon, {
122
597
  width: size,
123
598
  height: size,
124
599
  ref,
@@ -129,8 +604,8 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
129
604
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 19H24V21H16z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M31,29.5859l-4.6885-4.6884a8.028,8.028,0,1,0-1.414,1.414L29.5859,31ZM20,26a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,20,26Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M4,8H2V4A2.0021,2.0021,0,0,1,4,2H8V4H4Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M26,8H24V4H20V2h4a2.0021,2.0021,0,0,1,2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M12 2H16V4H12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M8,26H4a2.0021,2.0021,0,0,1-2-2V20H4v4H8Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M2 12H4V16H2z" }), children);
130
605
  });
131
606
  if (process.env.NODE_ENV !== "production") ZoomOutArea.propTypes = require_iconPropTypes.iconPropTypes;
132
- const ZoomReset = react.default.forwardRef(function ZoomReset({ children, size = 16, ...rest }, ref) {
133
- return react.default.createElement(require_Icon_js, {
607
+ const ZoomReset = /* @__PURE__ */ react.default.forwardRef(function ZoomReset({ children, size = 16, ...rest }, ref) {
608
+ return react.default.createElement(require_Icon.Icon, {
134
609
  width: size,
135
610
  height: size,
136
611
  ref,
@@ -141,8 +616,8 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
141
616
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22.4478,21A10.855,10.855,0,0,0,25,14,10.99,10.99,0,0,0,6,6.4658V2H4v8h8V8H7.332a8.9768,8.9768,0,1,1-2.1,8H3.1912A11.0118,11.0118,0,0,0,14,25a10.855,10.855,0,0,0,7-2.5522L28.5859,30,30,28.5859Z" }), children);
142
617
  });
143
618
  if (process.env.NODE_ENV !== "production") ZoomReset.propTypes = require_iconPropTypes.iconPropTypes;
144
- const WatsonHealthZoomPan = react.default.forwardRef(function WatsonHealthZoomPan({ children, size = 16, ...rest }, ref) {
145
- return react.default.createElement(require_Icon_js, {
619
+ const WatsonHealthZoomPan = /* @__PURE__ */ react.default.forwardRef(function WatsonHealthZoomPan({ children, size = 16, ...rest }, ref) {
620
+ return react.default.createElement(require_Icon.Icon, {
146
621
  width: size,
147
622
  height: size,
148
623
  ref,
@@ -153,8 +628,8 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
153
628
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M27.01 12 25.6 13.41 28.18 16 25.59 18.59 27.01 20 31.01 16 27.01 12z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6.41 13.42 5 12 1 16 5 20 6.42 18.59 3.83 16 6.41 13.42z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 28.17 13.41 25.58 12 27 16 31 20 27 18.59 25.59 16 28.17z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M16 3.83 18.58 6.41 20 5 16 1 12 5 13.41 6.42 16 3.83z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M22,16a6,6,0,1,0-2.53,4.89l3.82,3.82,1.42-1.42-3.82-3.82A6,6,0,0,0,22,16Zm-6,4a4,4,0,1,1,4-4A4,4,0,0,1,16,20Z" }), children);
154
629
  });
155
630
  if (process.env.NODE_ENV !== "production") WatsonHealthZoomPan.propTypes = require_iconPropTypes.iconPropTypes;
156
- const Zos = react.default.forwardRef(function Zos({ children, size = 16, ...rest }, ref) {
157
- return react.default.createElement(require_Icon_js, {
631
+ const Zos = /* @__PURE__ */ react.default.forwardRef(function Zos({ children, size = 16, ...rest }, ref) {
632
+ return react.default.createElement(require_Icon.Icon, {
158
633
  width: size,
159
634
  height: size,
160
635
  ref,
@@ -165,8 +640,8 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
165
640
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M30,22h-5v-2h5v-3h-3c-1.1028,0-2-.8972-2-2v-3c0-1.1028,.8972-2,2-2h5v2h-5v3h3c1.1028,0,2,.8972,2,2v3c0,1.1028-.8972,2-2,2Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M21,22h-3c-1.1028,0-2-.8972-2-2V12c0-1.1028,.8972-2,2-2h3c1.1028,0,2,.8972,2,2v8c0,1.1028-.8972,2-2,2Zm-3-10v8h3V12h-3Z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M11.9458 10 7.9458 22 10.0542 22 14.0542 10 11.9458 10z" }), /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M6 22 0 22 0 19.6973 3.7981 14 0 14 0 12 6 12 6 14.3027 2.2019 20 6 20 6 22z" }), children);
166
641
  });
167
642
  if (process.env.NODE_ENV !== "production") Zos.propTypes = require_iconPropTypes.iconPropTypes;
168
- const ZosSysplex = react.default.forwardRef(function ZosSysplex({ children, size = 16, ...rest }, ref) {
169
- return react.default.createElement(require_Icon_js, {
643
+ const ZosSysplex = /* @__PURE__ */ react.default.forwardRef(function ZosSysplex({ children, size = 16, ...rest }, ref) {
644
+ return react.default.createElement(require_Icon.Icon, {
170
645
  width: size,
171
646
  height: size,
172
647
  ref,
@@ -177,7 +652,41 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
177
652
  }, /* @__PURE__ */ (0, react_jsx_runtime.jsx)("path", { d: "M20,14h8c1.1028,0,2-.8975,2-2V4c0-1.1025-.8972-2-2-2h-8c-1.1028,0-2,.8975-2,2v1H9c-1.1028,0-2,.8975-2,2v3H4c-1.1028,0-2,.8975-2,2v8c0,1.1025,.8972,2,2,2h3v3c0,1.1025,.8972,2,2,2h9v1c0,1.1025,.8972,2,2,2h8c1.1028,0,2-.8975,2-2v-8c0-1.1025-.8972-2-2-2h-8c-1.1028,0-2,.8975-2,2v5H9v-3h3c1.1028,0,2-.8975,2-2V12c0-1.1025-.8972-2-2-2h-3v-3h9v5c0,1.1025,.8972,2,2,2Zm1.4141,14l6.5862-6.5859-.0002,6.5859h-6.5859Zm5.1719-8l-6.5859,6.5859v-6.5859h6.5859ZM10.5522,12l-6.5522,6.5522v-6.5522h6.5522Zm-5.1719,8l6.6199-6.6196,.001,6.6196H5.3804ZM21.4141,12l6.5862-6.5859-.0002,6.5859h-6.5859Zm5.1719-8l-6.5859,6.5859V4h6.5859Z" }), children);
178
653
  });
179
654
  if (process.env.NODE_ENV !== "production") ZosSysplex.propTypes = require_iconPropTypes.iconPropTypes;
655
+ exports.QX = QX;
656
+ exports.QY = QY;
657
+ exports.QZ = QZ;
658
+ exports.WatsonHealthWindowAuto = WatsonHealthWindowAuto;
659
+ exports.WatsonHealthWindowBase = WatsonHealthWindowBase;
660
+ exports.WatsonHealthWindowBlackSaturation = WatsonHealthWindowBlackSaturation;
661
+ exports.WatsonHealthWindowOverlay = WatsonHealthWindowOverlay;
662
+ exports.WatsonHealthWindowPreset = WatsonHealthWindowPreset;
180
663
  exports.WatsonHealthZoomPan = WatsonHealthZoomPan;
664
+ exports.WindStream = WindStream;
665
+ exports.Windy = Windy;
666
+ exports.WindyDust = WindyDust;
667
+ exports.WindySnow = WindySnow;
668
+ exports.WindyStrong = WindyStrong;
669
+ exports.WinterWarning = WinterWarning;
670
+ exports.WintryMix = WintryMix;
671
+ exports.WirelessCheckout = WirelessCheckout;
672
+ exports.Wmv = Wmv;
673
+ exports.WordCloud = WordCloud;
674
+ exports.WorkflowAutomation = WorkflowAutomation;
675
+ exports.Workspace = Workspace;
676
+ exports.WorkspaceImport = WorkspaceImport;
677
+ exports.Worship = Worship;
678
+ exports.WorshipChristian = WorshipChristian;
679
+ exports.WorshipJewish = WorshipJewish;
680
+ exports.WorshipMuslim = WorshipMuslim;
681
+ exports.XAxis = XAxis;
682
+ exports.Xls = Xls;
683
+ exports.Xml = Xml;
684
+ exports.YAxis = YAxis;
685
+ exports.ZAxis = ZAxis;
686
+ exports.ZHyperLink = ZHyperLink;
687
+ exports.ZLpar = ZLpar;
688
+ exports.ZSystems = ZSystems;
689
+ exports.Zip = Zip;
181
690
  exports.ZipReference = ZipReference;
182
691
  exports.ZoomArea = ZoomArea;
183
692
  exports.ZoomFit = ZoomFit;
@@ -189,11 +698,10 @@ var require_bucket_21 = /* @__PURE__ */ require_runtime.__commonJSMin(((exports)
189
698
  exports.Zos = Zos;
190
699
  exports.ZosSysplex = ZosSysplex;
191
700
  }));
192
-
193
701
  //#endregion
194
- Object.defineProperty(exports, 'default', {
195
- enumerable: true,
196
- get: function () {
197
- return require_bucket_21();
198
- }
199
- });
702
+ Object.defineProperty(exports, "default", {
703
+ enumerable: true,
704
+ get: function() {
705
+ return require_bucket_21();
706
+ }
707
+ });