@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
@@ -6,10 +6,9 @@
6
6
  */
7
7
 
8
8
  import { Icon } from "../Icon.js";
9
- import { iconPropTypes } from "../iconPropTypes-B1cP964Y.js";
9
+ import { iconPropTypes } from "../iconPropTypes-BElKp6Sn.js";
10
10
  import React from "react";
11
11
  import { jsx } from "react/jsx-runtime";
12
-
13
12
  //#region ../../node_modules/@carbon/icons-react/es/generated/bucket-3.js
14
13
  /**
15
14
  * Copyright IBM Corp. 2016, 2023
@@ -19,7 +18,70 @@ import { jsx } from "react/jsx-runtime";
19
18
  *
20
19
  * Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
21
20
  */
22
- const ChartLineData = React.forwardRef(function ChartLineData({ children, size = 16, ...rest }, ref) {
21
+ const ChartDonut = /* @__PURE__ */ React.forwardRef(function ChartDonut({ children, size = 16, ...rest }, ref) {
22
+ return React.createElement(Icon, {
23
+ width: size,
24
+ height: size,
25
+ ref,
26
+ xmlns: "http://www.w3.org/2000/svg",
27
+ viewBox: "0 0 32 32",
28
+ fill: "currentColor",
29
+ ...rest
30
+ }, /* @__PURE__ */ jsx("path", { d: "M16,4.0194c-6.6167,0-12,5.3833-12,12s5.3833,12,12,12,12-5.3833,12-12-5.3833-12-12-12ZM11,16.0194c0-2.7568,2.2432-5,5-5s5,2.2432,5,5-2.2432,5-5,5-5-2.2432-5-5ZM6,16.0194c0-5.1766,3.9537-9.4459,9-9.9493v3.0292c-3.3866.4878-6,3.4006-6,6.9202,0,1.5647.5223,3.0061,1.393,4.1729l-2.14,2.14c-1.4066-1.723-2.2531-3.9203-2.2531-6.3129h.0001ZM16,26.0194c-2.4028,0-4.6096-.8528-6.3358-2.2703l2.14-2.1399c1.1708.8811,2.6209,1.4102,4.1958,1.4102,3.8599,0,7-3.1401,7-7,0-3.5195-2.6134-6.4324-6-6.9202v-3.0292c5.0463.5034,9,4.7727,9,9.9493,0,5.5142-4.4858,10-10,10h0Z" }), children);
31
+ });
32
+ ChartDonut.propTypes = iconPropTypes;
33
+ const ChartEvaluation = /* @__PURE__ */ React.forwardRef(function ChartEvaluation({ children, size = 16, ...rest }, ref) {
34
+ return React.createElement(Icon, {
35
+ width: size,
36
+ height: size,
37
+ ref,
38
+ xmlns: "http://www.w3.org/2000/svg",
39
+ viewBox: "0 0 32 32",
40
+ fill: "currentColor",
41
+ ...rest
42
+ }, /* @__PURE__ */ jsx("path", {
43
+ d: "M25.672 6.207H29.915V8.206H25.672z",
44
+ transform: "rotate(-45.02 27.793 7.207)"
45
+ }), /* @__PURE__ */ jsx("path", { d: "M16 20.5 11 15.539 12.59 13.969 16 17.349 23.41 10 25 11.579 16 20.5z" }), /* @__PURE__ */ jsx("path", { d: "M4,28V25.4131L10.4141,19,9,17.585l-5,5V2H2V28a2,2,0,0,0,2,2H30V28Z" }), children);
46
+ });
47
+ ChartEvaluation.propTypes = iconPropTypes;
48
+ const ChartHighLow = /* @__PURE__ */ React.forwardRef(function ChartHighLow({ children, size = 16, ...rest }, ref) {
49
+ return React.createElement(Icon, {
50
+ width: size,
51
+ height: size,
52
+ ref,
53
+ xmlns: "http://www.w3.org/2000/svg",
54
+ viewBox: "0 0 32 32",
55
+ fill: "currentColor",
56
+ ...rest
57
+ }, /* @__PURE__ */ jsx("path", { d: "M15 8 12 8 12 6 10 6 10 20 7 20 7 22 10 22 10 24 12 24 12 10 15 10 15 8z" }), /* @__PURE__ */ jsx("path", { d: "M27 10 24 10 24 6 22 6 22 18 19 18 19 20 22 20 22 24 24 24 24 12 27 12 27 10z" }), /* @__PURE__ */ jsx("path", { d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z" }), children);
58
+ });
59
+ ChartHighLow.propTypes = iconPropTypes;
60
+ const ChartHistogram = /* @__PURE__ */ React.forwardRef(function ChartHistogram({ children, size = 16, ...rest }, ref) {
61
+ return React.createElement(Icon, {
62
+ width: size,
63
+ height: size,
64
+ ref,
65
+ xmlns: "http://www.w3.org/2000/svg",
66
+ viewBox: "0 0 32 32",
67
+ fill: "currentColor",
68
+ ...rest
69
+ }, /* @__PURE__ */ jsx("path", { d: "M6,16c2.9727,0,4.2324-2.251,5.3447-4.2373C12.4741,9.7441,13.45,8,16,8s3.5259,1.7441,4.6553,3.7627C21.7676,13.749,23.0273,16,26,16h4V14H26c-1.7129,0-2.4834-1.2207-3.5991-3.2144C21.2075,8.6543,19.7231,6,16,6s-5.2075,2.6543-6.4009,4.7856C8.4834,12.7793,7.7129,14,6,14H4V2H2V28a2,2,0,0,0,2,2H30V28H28V22H26v6H21.9992L22,20H20v8H16V16H14V28H9.9992L10,20H8v8H4V16Z" }), children);
70
+ });
71
+ ChartHistogram.propTypes = iconPropTypes;
72
+ const ChartLine = /* @__PURE__ */ React.forwardRef(function ChartLine({ children, size = 16, ...rest }, ref) {
73
+ return React.createElement(Icon, {
74
+ width: size,
75
+ height: size,
76
+ ref,
77
+ xmlns: "http://www.w3.org/2000/svg",
78
+ viewBox: "0 0 32 32",
79
+ fill: "currentColor",
80
+ ...rest
81
+ }, /* @__PURE__ */ jsx("path", { d: "M4.67,28l6.39-12,7.3,6.49a2,2,0,0,0,1.7.47,2,2,0,0,0,1.42-1.07L27,10.9,25.18,10,19.69,21l-7.3-6.49A2,2,0,0,0,10.71,14a2,2,0,0,0-1.42,1L4,25V2H2V28a2,2,0,0,0,2,2H30V28Z" }), children);
82
+ });
83
+ ChartLine.propTypes = iconPropTypes;
84
+ const ChartLineData = /* @__PURE__ */ React.forwardRef(function ChartLineData({ children, size = 16, ...rest }, ref) {
23
85
  return React.createElement(Icon, {
24
86
  width: size,
25
87
  height: size,
@@ -31,7 +93,7 @@ const ChartLineData = React.forwardRef(function ChartLineData({ children, size =
31
93
  }, /* @__PURE__ */ jsx("path", { d: "M10.06,17.88A4.25,4.25,0,0,0,11,18a4,4,0,0,0,2.23-.68l3.22,2.87a3.88,3.88,0,0,0-.2,3.17A4,4,0,1,0,22.62,19l2.54-5.09a3.78,3.78,0,0,0,2.91-.53A4,4,0,1,0,23.38,13l-2.54,5.09A3.86,3.86,0,0,0,20,18a4,4,0,0,0-2.23.68l-3.22-2.87a3.88,3.88,0,0,0,.2-3.17A4,4,0,1,0,8.3,16.93L4,25V2H2V28a2,2,0,0,0,2,2H30V28H4.67ZM26,8a2,2,0,1,1-2,2A2,2,0,0,1,26,8ZM22,22a2,2,0,1,1-2-2A2,2,0,0,1,22,22ZM11,12a2,2,0,1,1-2,2A2,2,0,0,1,11,12Z" }), children);
32
94
  });
33
95
  ChartLineData.propTypes = iconPropTypes;
34
- const ChartLineSmooth = React.forwardRef(function ChartLineSmooth({ children, size = 16, ...rest }, ref) {
96
+ const ChartLineSmooth = /* @__PURE__ */ React.forwardRef(function ChartLineSmooth({ children, size = 16, ...rest }, ref) {
35
97
  return React.createElement(Icon, {
36
98
  width: size,
37
99
  height: size,
@@ -43,7 +105,7 @@ const ChartLineSmooth = React.forwardRef(function ChartLineSmooth({ children, si
43
105
  }, /* @__PURE__ */ jsx("path", { d: "M13,15c1.4854,0,2.5544,1.4966,3.6863,3.0811C17.9983,19.918,19.4854,22,22,22c5.6709,0,7.78-10.79,8-12l-1.9678-.3584C27.55,12.2827,25.3938,20,22,20c-1.4854,0-2.5544-1.4966-3.6863-3.0811C17.0017,15.082,15.5146,13,13,13c-4.186,0-7.4448,7.4043-9,11.7617V2H2V28a2.0025,2.0025,0,0,0,2,2H30V28H5.0439C6.5544,22.8574,9.9634,15,13,15Z" }), children);
44
106
  });
45
107
  ChartLineSmooth.propTypes = iconPropTypes;
46
- const ChartLogisticRegression = React.forwardRef(function ChartLogisticRegression({ children, size = 16, ...rest }, ref) {
108
+ const ChartLogisticRegression = /* @__PURE__ */ React.forwardRef(function ChartLogisticRegression({ children, size = 16, ...rest }, ref) {
47
109
  return React.createElement(Icon, {
48
110
  width: size,
49
111
  height: size,
@@ -71,7 +133,7 @@ const ChartLogisticRegression = React.forwardRef(function ChartLogisticRegressio
71
133
  }), /* @__PURE__ */ jsx("path", { d: "m8.2339,24c3.8799,0,7.311-2.4731,8.5383-6.1543l2.353-7.0591c.9543-2.8628,3.6233-4.7866,6.6409-4.7866h4.2339v-2h-4.2339c-3.8799,0-7.311,2.4731-8.5383,6.1543l-2.353,7.0591c-.9543,2.8628-3.6233,4.7866-6.6409,4.7866h-4.2339V2h-2v26c0,1.1025.897,2,2,2h26v-2H4v-4h4.2339Z" }), children);
72
134
  });
73
135
  ChartLogisticRegression.propTypes = iconPropTypes;
74
- const ChartLollipop = React.forwardRef(function ChartLollipop({ children, size = 16, ...rest }, ref) {
136
+ const ChartLollipop = /* @__PURE__ */ React.forwardRef(function ChartLollipop({ children, size = 16, ...rest }, ref) {
75
137
  return React.createElement(Icon, {
76
138
  width: size,
77
139
  height: size,
@@ -83,7 +145,7 @@ const ChartLollipop = React.forwardRef(function ChartLollipop({ children, size =
83
145
  }, /* @__PURE__ */ jsx("path", { d: "M25,28v-9.1c1.7-.4,3-2,3-3.9s-1.8-4-4-4-4,1.8-4,4,1.3,3.4,3,3.9v9.1h-5V10.9c1.7-.4,3-2,3-3.9s-1.8-4-4-4-4,1.8-4,4,1.3,3.4,3,3.9v17.1h-5v-6.1c1.7-.4,3-2,3-3.9s-1.8-4-4-4-4,1.8-4,4,1.3,3.4,3,3.9v6.1h-5V2h-2v26c0,1.1.9,2,2,2h26v-2h-5ZM22,15c0-1.1.9-2,2-2s2,.9,2,2-.9,2-2,2-2-.9-2-2ZM15,7c0-1.1.9-2,2-2s2,.9,2,2-.9,2-2,2-2-.9-2-2ZM8,18c0-1.1.9-2,2-2s2,.9,2,2-.9,2-2,2-2-.9-2-2Z" }), children);
84
146
  });
85
147
  ChartLollipop.propTypes = iconPropTypes;
86
- const ChartMarimekko = React.forwardRef(function ChartMarimekko({ children, size = 16, ...rest }, ref) {
148
+ const ChartMarimekko = /* @__PURE__ */ React.forwardRef(function ChartMarimekko({ children, size = 16, ...rest }, ref) {
87
149
  return React.createElement(Icon, {
88
150
  width: size,
89
151
  height: size,
@@ -95,7 +157,7 @@ const ChartMarimekko = React.forwardRef(function ChartMarimekko({ children, size
95
157
  }, /* @__PURE__ */ jsx("path", { d: "M27,3H5A2.0025,2.0025,0,0,0,3,5V27a2.0025,2.0025,0,0,0,2,2H27a2.0025,2.0025,0,0,0,2-2V5A2.0025,2.0025,0,0,0,27,3Zm0,7H21V5h6ZM19,8H13V5h6Zm0,2v8H13V10ZM11,22H5V12h6Zm2-2h6v7H13Zm8-8h6v4H21ZM11,5v5H5V5ZM5,24h6v3H5Zm16,3V18h6v9Z" }), children);
96
158
  });
97
159
  ChartMarimekko.propTypes = iconPropTypes;
98
- const ChartMaximum = React.forwardRef(function ChartMaximum({ children, size = 16, ...rest }, ref) {
160
+ const ChartMaximum = /* @__PURE__ */ React.forwardRef(function ChartMaximum({ children, size = 16, ...rest }, ref) {
99
161
  return React.createElement(Icon, {
100
162
  width: size,
101
163
  height: size,
@@ -107,7 +169,7 @@ const ChartMaximum = React.forwardRef(function ChartMaximum({ children, size = 1
107
169
  }, /* @__PURE__ */ jsx("path", { d: "M8 6H10V8H8z" }), /* @__PURE__ */ jsx("path", { d: "M12 6H14V8H12z" }), /* @__PURE__ */ jsx("path", { d: "M20 6H22V8H20z" }), /* @__PURE__ */ jsx("path", { d: "M24 6H26V8H24z" }), /* @__PURE__ */ jsx("path", { d: "M28 6H30V8H28z" }), /* @__PURE__ */ jsx("path", { d: "M27.989,28l-.0271-.1631C26.5105,19.0742,24.0662,9.0894,18,8.0889V6H16V8.085c-6.084.978-8.533,10.9775-9.9863,19.7519L5.9866,28H4V8H6V6H4V2H2V28a2,2,0,0,0,2,2H30V28ZM8.0151,28c2.024-12.1084,4.959-18,8.9727-18s6.9487,5.8916,8.9726,18Z" }), children);
108
170
  });
109
171
  ChartMaximum.propTypes = iconPropTypes;
110
- const ChartMedian = React.forwardRef(function ChartMedian({ children, size = 16, ...rest }, ref) {
172
+ const ChartMedian = /* @__PURE__ */ React.forwardRef(function ChartMedian({ children, size = 16, ...rest }, ref) {
111
173
  return React.createElement(Icon, {
112
174
  width: size,
113
175
  height: size,
@@ -128,7 +190,7 @@ const ChartMedian = React.forwardRef(function ChartMedian({ children, size = 16,
128
190
  }), children);
129
191
  });
130
192
  ChartMedian.propTypes = iconPropTypes;
131
- const ChartMinimum = React.forwardRef(function ChartMinimum({ children, size = 16, ...rest }, ref) {
193
+ const ChartMinimum = /* @__PURE__ */ React.forwardRef(function ChartMinimum({ children, size = 16, ...rest }, ref) {
132
194
  return React.createElement(Icon, {
133
195
  width: size,
134
196
  height: size,
@@ -140,7 +202,7 @@ const ChartMinimum = React.forwardRef(function ChartMinimum({ children, size = 1
140
202
  }, /* @__PURE__ */ jsx("path", { d: "M4,28V26H6V24H4V2H2V28a2,2,0,0,0,2,2H30V28Z" }), /* @__PURE__ */ jsx("path", { d: "M8 24H10V26H8z" }), /* @__PURE__ */ jsx("path", { d: "M12 24H14V26H12z" }), /* @__PURE__ */ jsx("path", { d: "M20 24H22V26H20z" }), /* @__PURE__ */ jsx("path", { d: "M24 24H26V26H24z" }), /* @__PURE__ */ jsx("path", { d: "M28 24H30V26H28z" }), /* @__PURE__ */ jsx("path", { d: "M27.9463,4.3281,25.9727,4C23.9487,16.1084,21.0137,22,17,22S10.0513,16.1084,8.0271,4l-1.9734.3281C7.51,13.0566,9.9631,22.93,16,23.9131V26h2V23.9131C24.0371,22.93,26.4907,13.0566,27.9463,4.3281Z" }), children);
141
203
  });
142
204
  ChartMinimum.propTypes = iconPropTypes;
143
- const ChartMultiLine = React.forwardRef(function ChartMultiLine({ children, size = 16, ...rest }, ref) {
205
+ const ChartMultiLine = /* @__PURE__ */ React.forwardRef(function ChartMultiLine({ children, size = 16, ...rest }, ref) {
144
206
  return React.createElement(Icon, {
145
207
  width: size,
146
208
  height: size,
@@ -152,7 +214,7 @@ const ChartMultiLine = React.forwardRef(function ChartMultiLine({ children, size
152
214
  }, /* @__PURE__ */ jsx("path", { d: "M4.5859,28l7.1783-5.998L19.7578,23.94a2.021,2.021,0,0,0,1.314-.1206L28,20.5811l-.8479-1.8121-6.9163,3.229L12.2422,20.06a2.0033,2.0033,0,0,0-1.74.3838L4,25.8818V20.49l7.7642-6.4877L19.7578,15.94a2.021,2.021,0,0,0,1.314-.1206l6.9287-3.2383-.8467-1.812-6.918,3.2285L12.2422,12.06a2.0049,2.0049,0,0,0-1.74.3838L4,17.8818V12.49L11.7642,6.002,19.7578,7.94a2.021,2.021,0,0,0,1.314-.1206L28,4.5859l-.8457-1.8115L20.2358,5.998,12.2422,4.06a2.0033,2.0033,0,0,0-1.74.3838L4,9.8818V2H2V28a2,2,0,0,0,2,2H30V28Z" }), children);
153
215
  });
154
216
  ChartMultiLine.propTypes = iconPropTypes;
155
- const ChartMultitype = React.forwardRef(function ChartMultitype({ children, size = 16, ...rest }, ref) {
217
+ const ChartMultitype = /* @__PURE__ */ React.forwardRef(function ChartMultitype({ children, size = 16, ...rest }, ref) {
156
218
  return React.createElement(Icon, {
157
219
  width: size,
158
220
  height: size,
@@ -184,7 +246,7 @@ const ChartMultitype = React.forwardRef(function ChartMultitype({ children, size
184
246
  }), children);
185
247
  });
186
248
  ChartMultitype.propTypes = iconPropTypes;
187
- const ChartNetwork = React.forwardRef(function ChartNetwork({ children, size = 16, ...rest }, ref) {
249
+ const ChartNetwork = /* @__PURE__ */ React.forwardRef(function ChartNetwork({ children, size = 16, ...rest }, ref) {
188
250
  return React.createElement(Icon, {
189
251
  width: size,
190
252
  height: size,
@@ -196,7 +258,7 @@ const ChartNetwork = React.forwardRef(function ChartNetwork({ children, size = 1
196
258
  }, /* @__PURE__ */ jsx("path", { d: "M26,14a2,2,0,0,0,2-2V6a2,2,0,0,0-2-2H20a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h2v4.1A5,5,0,0,0,18.1,22H14V20a2,2,0,0,0-2-2H10V13.9a5,5,0,1,0-2,0V18H6a2,2,0,0,0-2,2v6a2,2,0,0,0,2,2h6a2,2,0,0,0,2-2V24h4.1A5,5,0,1,0,24,18.1V14ZM6,9a3,3,0,1,1,3,3A3,3,0,0,1,6,9Zm6,17H6V20h6Zm14-3a3,3,0,1,1-3-3A3,3,0,0,1,26,23ZM20,6h6v6H20Z" }), children);
197
259
  });
198
260
  ChartNetwork.propTypes = iconPropTypes;
199
- const ChartParallel = React.forwardRef(function ChartParallel({ children, size = 16, ...rest }, ref) {
261
+ const ChartParallel = /* @__PURE__ */ React.forwardRef(function ChartParallel({ children, size = 16, ...rest }, ref) {
200
262
  return React.createElement(Icon, {
201
263
  width: size,
202
264
  height: size,
@@ -208,7 +270,7 @@ const ChartParallel = React.forwardRef(function ChartParallel({ children, size =
208
270
  }, /* @__PURE__ */ jsx("path", { d: "M28,2V5.3071l-6,2.25V2H20V7.5229l-8-3.2V2H10V4.4458l-6,3.75V2H2V30H4V27.6182l6-3V30h2V24.3442l8,2.4V30h2V26.5542l6-3.75V30h2V2Zm0,5.4429V12.5L22,17V9.6929ZM20,9.6768v7.5571l-8-4.8V6.4771ZM10,6.8042v5.7417l-6,5.25V10.5542ZM4,25.3818V20.4541l6-5.25v7.1777Zm8-3.1259v-7.49l8,4.8v5.0894Zm10,1.94V19.5L28,15v5.4458Z" }), children);
209
271
  });
210
272
  ChartParallel.propTypes = iconPropTypes;
211
- const ChartPie = React.forwardRef(function ChartPie({ children, size = 16, ...rest }, ref) {
273
+ const ChartPie = /* @__PURE__ */ React.forwardRef(function ChartPie({ children, size = 16, ...rest }, ref) {
212
274
  return React.createElement(Icon, {
213
275
  width: size,
214
276
  height: size,
@@ -220,7 +282,7 @@ const ChartPie = React.forwardRef(function ChartPie({ children, size = 16, ...re
220
282
  }, /* @__PURE__ */ jsx("path", { d: "M16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4ZM26,15H17V6.05A10,10,0,0,1,26,15ZM15.42,26A10,10,0,0,1,15,6.05v9a2,2,0,0,0,2,2h9A10,10,0,0,1,15.42,26Z" }), children);
221
283
  });
222
284
  ChartPie.propTypes = iconPropTypes;
223
- const ChartPlanningWaterfall = React.forwardRef(function ChartPlanningWaterfall({ children, size = 16, ...rest }, ref) {
285
+ const ChartPlanningWaterfall = /* @__PURE__ */ React.forwardRef(function ChartPlanningWaterfall({ children, size = 16, ...rest }, ref) {
224
286
  return React.createElement(Icon, {
225
287
  width: size,
226
288
  height: size,
@@ -232,7 +294,7 @@ const ChartPlanningWaterfall = React.forwardRef(function ChartPlanningWaterfall(
232
294
  }, /* @__PURE__ */ jsx("path", { d: "m29,8c0-.5522-.4478-1-1-1h-4c-.5522,0-1,.4478-1,1v7h-2V3c0-.5522-.4478-1-1-1h-4c-.5522,0-1,.4478-1,1v12h-2V5c0-.5522-.4478-1-1-1h-4c-.5522,0-1,.4478-1,1v10H3v12c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-10h2v5c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-5h2v12c0,.5522.4478,1,1,1h4c.5522,0,1-.4478,1-1v-12h4v-9ZM7,26h-2v-9h2v9Zm8-5h-2v-4h2v4Zm2-6V4h2v11h-2Zm10,0h-2v-6h2v6Z" }), children);
233
295
  });
234
296
  ChartPlanningWaterfall.propTypes = iconPropTypes;
235
- const ChartPoint = React.forwardRef(function ChartPoint({ children, size = 16, ...rest }, ref) {
297
+ const ChartPoint = /* @__PURE__ */ React.forwardRef(function ChartPoint({ children, size = 16, ...rest }, ref) {
236
298
  return React.createElement(Icon, {
237
299
  width: size,
238
300
  height: size,
@@ -264,7 +326,7 @@ const ChartPoint = React.forwardRef(function ChartPoint({ children, size = 16, .
264
326
  }), /* @__PURE__ */ jsx("path", { d: "M27,17a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,27,17Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,27,13Z" }), /* @__PURE__ */ jsx("path", { d: "M18,26a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,18,26Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,18,22Z" }), /* @__PURE__ */ jsx("path", { d: "M18,8a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,18,8Zm0-4a1,1,0,1,0,1,1A1.001,1.001,0,0,0,18,4Z" }), children);
265
327
  });
266
328
  ChartPoint.propTypes = iconPropTypes;
267
- const ChartPopulation = React.forwardRef(function ChartPopulation({ children, size = 16, ...rest }, ref) {
329
+ const ChartPopulation = /* @__PURE__ */ React.forwardRef(function ChartPopulation({ children, size = 16, ...rest }, ref) {
268
330
  return React.createElement(Icon, {
269
331
  width: size,
270
332
  height: size,
@@ -276,7 +338,7 @@ const ChartPopulation = React.forwardRef(function ChartPopulation({ children, si
276
338
  }, /* @__PURE__ */ jsx("path", { d: "M30,22H17V20h9V14H17V12h5V6H17V2H15V6H10v6h5v2H6v6h9v2H2v6H15v2h2V28H30ZM20,8v2H17V8Zm-8,2V8h3v2Zm12,6v2H17V16ZM8,18V16h7v2ZM4,26V24H15v2Zm24,0H17V24H28Z" }), children);
277
339
  });
278
340
  ChartPopulation.propTypes = iconPropTypes;
279
- const ChartRadar = React.forwardRef(function ChartRadar({ children, size = 16, ...rest }, ref) {
341
+ const ChartRadar = /* @__PURE__ */ React.forwardRef(function ChartRadar({ children, size = 16, ...rest }, ref) {
280
342
  return React.createElement(Icon, {
281
343
  width: size,
282
344
  height: size,
@@ -288,7 +350,7 @@ const ChartRadar = React.forwardRef(function ChartRadar({ children, size = 16, .
288
350
  }, /* @__PURE__ */ jsx("path", { d: "M16,2,2,13,8,30H24l6-17Zm2.5818,19.2651-5.9861,1.3306-1.4226-7.8252,4.91-4.209,5.4416,4.0816Zm.1977,2.0054L21.3264,28H10.6736l1.7912-3.3267ZM9.59,13.4937,5.74,12.605,15,5.3291V8.8569ZM17,8.75V5.3291l9.26,7.2759-3.15.727ZM4.6143,14.3979l4.6535,1.0738,1.4844,8.164-1.738,3.2281ZM22.9858,26.8638l-2.5766-4.7852,3.0063-6.7646,3.97-.9161Z" }), children);
289
351
  });
290
352
  ChartRadar.propTypes = iconPropTypes;
291
- const ChartRadial = React.forwardRef(function ChartRadial({ children, size = 16, ...rest }, ref) {
353
+ const ChartRadial = /* @__PURE__ */ React.forwardRef(function ChartRadial({ children, size = 16, ...rest }, ref) {
292
354
  return React.createElement(Icon, {
293
355
  width: size,
294
356
  height: size,
@@ -300,7 +362,7 @@ const ChartRadial = React.forwardRef(function ChartRadial({ children, size = 16,
300
362
  }, /* @__PURE__ */ jsx("path", { d: "M16,30A14.0158,14.0158,0,0,1,2,16H4A12,12,0,1,0,16,4V2a14,14,0,0,1,0,28Z" }), /* @__PURE__ */ jsx("path", { d: "M16,26A10.0115,10.0115,0,0,1,6,16H8a8,8,0,1,0,8-8V6a10,10,0,0,1,0,20Z" }), /* @__PURE__ */ jsx("path", { d: "M16,22a6.0069,6.0069,0,0,1-6-6h2a4,4,0,1,0,4-4V10a6,6,0,0,1,0,12Z" }), children);
301
363
  });
302
364
  ChartRadial.propTypes = iconPropTypes;
303
- const ChartRelationship = React.forwardRef(function ChartRelationship({ children, size = 16, ...rest }, ref) {
365
+ const ChartRelationship = /* @__PURE__ */ React.forwardRef(function ChartRelationship({ children, size = 16, ...rest }, ref) {
304
366
  return React.createElement(Icon, {
305
367
  width: size,
306
368
  height: size,
@@ -312,7 +374,7 @@ const ChartRelationship = React.forwardRef(function ChartRelationship({ children
312
374
  }, /* @__PURE__ */ jsx("path", { d: "M26,6a3.9963,3.9963,0,0,0-3.8579,3H17.9305A7.9964,7.9964,0,1,0,9,17.9307v4.2114a4,4,0,1,0,2,0V17.9307a7.951,7.951,0,0,0,3.8976-1.6192l3.6693,3.67A3.9529,3.9529,0,0,0,18,22a4,4,0,1,0,4-4,3.9521,3.9521,0,0,0-2.019.5669l-3.6694-3.6694A7.9493,7.9493,0,0,0,17.9305,11h4.2116A3.9934,3.9934,0,1,0,26,6ZM12,26a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,12,26ZM10,16a6,6,0,1,1,6-6A6.0066,6.0066,0,0,1,10,16Zm14,6a2,2,0,1,1-2-2A2.0023,2.0023,0,0,1,24,22Zm2-10a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,12Z" }), children);
313
375
  });
314
376
  ChartRelationship.propTypes = iconPropTypes;
315
- const ChartRing = React.forwardRef(function ChartRing({ children, size = 16, ...rest }, ref) {
377
+ const ChartRing = /* @__PURE__ */ React.forwardRef(function ChartRing({ children, size = 16, ...rest }, ref) {
316
378
  return React.createElement(Icon, {
317
379
  width: size,
318
380
  height: size,
@@ -324,7 +386,7 @@ const ChartRing = React.forwardRef(function ChartRing({ children, size = 16, ...
324
386
  }, /* @__PURE__ */ jsx("path", { d: "M16,2A14,14,0,1,0,30,16,14.0158,14.0158,0,0,0,16,2ZM27.9493,15.001H21.91a5.9825,5.9825,0,0,0-9.3806-3.8853l-4.27-4.27a11.9783,11.9783,0,0,1,19.69,8.1548ZM16,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,20ZM4,16A11.937,11.937,0,0,1,6.8455,8.26l4.27,4.2695A5.9836,5.9836,0,0,0,15,21.9106v6.04A12.0105,12.0105,0,0,1,4,16ZM17,27.95v-6.04A6.0069,6.0069,0,0,0,21.91,17h6.04A12.0082,12.0082,0,0,1,17,27.95Z" }), children);
325
387
  });
326
388
  ChartRing.propTypes = iconPropTypes;
327
- const ChartRiver = React.forwardRef(function ChartRiver({ children, size = 16, ...rest }, ref) {
389
+ const ChartRiver = /* @__PURE__ */ React.forwardRef(function ChartRiver({ children, size = 16, ...rest }, ref) {
328
390
  return React.createElement(Icon, {
329
391
  width: size,
330
392
  height: size,
@@ -336,7 +398,7 @@ const ChartRiver = React.forwardRef(function ChartRiver({ children, size = 16, .
336
398
  }, /* @__PURE__ */ jsx("path", { d: "M12.4326,20.0171l8.0376,4.68a1.958,1.958,0,0,0,1.0508.3012,2.2412,2.2412,0,0,0,.4888-.0556l7.2532-1.9769A1,1,0,0,0,30,22.0007V7.996A1,1,0,0,0,28.74,7.0305L21.5034,8.9829l-8.0371-4.68a1.9917,1.9917,0,0,0-1.8652-.1352L4,7.4727V2H2V28a2,2,0,0,0,2,2H30V28H4V23.6577ZM28,21.2344l-6.4966,1.75-8.0371-4.68a1.9931,1.9931,0,0,0-1.8652-.1353L4,21.4746V16.6572l8.4326-3.6416L20.47,17.6968a1.962,1.962,0,0,0,1.0508.3008,2.2112,2.2112,0,0,0,.4888-.0557L28,16.31ZM12.4326,6.0156l8.0376,4.68a2.0091,2.0091,0,0,0,1.54.2451L28,9.3081v4.9258l-6.4966,1.7505-8.0371-4.6812a1.9917,1.9917,0,0,0-1.8652-.1352L4,14.4736V9.6562Z" }), children);
337
399
  });
338
400
  ChartRiver.propTypes = iconPropTypes;
339
- const ChartRose = React.forwardRef(function ChartRose({ children, size = 16, ...rest }, ref) {
401
+ const ChartRose = /* @__PURE__ */ React.forwardRef(function ChartRose({ children, size = 16, ...rest }, ref) {
340
402
  return React.createElement(Icon, {
341
403
  width: size,
342
404
  height: size,
@@ -348,7 +410,7 @@ const ChartRose = React.forwardRef(function ChartRose({ children, size = 16, ...
348
410
  }, /* @__PURE__ */ jsx("path", { d: "M30,17A15.017,15.017,0,0,0,15,2H14V8.0591A9.0122,9.0122,0,0,0,6.0591,16H4v1A11.0109,11.0109,0,0,0,14,27.9492V30h1A13.0084,13.0084,0,0,0,27.9492,18H30ZM16,4.0381A13.0217,13.0217,0,0,1,27.9619,16H16ZM14,10.08V16H8.08A7.0037,7.0037,0,0,1,14,10.08ZM6.0552,18H14v7.939A9.0134,9.0134,0,0,1,6.0552,18ZM16,27.9551V18h9.9551A11.0191,11.0191,0,0,1,16,27.9551Z" }), children);
349
411
  });
350
412
  ChartRose.propTypes = iconPropTypes;
351
- const ChartScatter = React.forwardRef(function ChartScatter({ children, size = 16, ...rest }, ref) {
413
+ const ChartScatter = /* @__PURE__ */ React.forwardRef(function ChartScatter({ children, size = 16, ...rest }, ref) {
352
414
  return React.createElement(Icon, {
353
415
  width: size,
354
416
  height: size,
@@ -380,7 +442,7 @@ const ChartScatter = React.forwardRef(function ChartScatter({ children, size = 1
380
442
  }), children);
381
443
  });
382
444
  ChartScatter.propTypes = iconPropTypes;
383
- const ChartSpiral = React.forwardRef(function ChartSpiral({ children, size = 16, ...rest }, ref) {
445
+ const ChartSpiral = /* @__PURE__ */ React.forwardRef(function ChartSpiral({ children, size = 16, ...rest }, ref) {
384
446
  return React.createElement(Icon, {
385
447
  width: size,
386
448
  height: size,
@@ -392,7 +454,7 @@ const ChartSpiral = React.forwardRef(function ChartSpiral({ children, size = 16,
392
454
  }, /* @__PURE__ */ jsx("path", { d: "M16,2A13.919,13.919,0,0,0,7.3245,5.0327,1.9728,1.9728,0,0,0,7,5,2,2,0,0,0,5,7a1.9752,1.9752,0,0,0,.0327.3247A13.986,13.986,0,1,0,16,2Zm0,26A11.977,11.977,0,0,1,6.3589,8.8857a1.8311,1.8311,0,0,0,1.1528.04l1.4634,1.4634a8.9862,8.9862,0,0,0,11.8311,13.207,1.9916,1.9916,0,0,0,2.79-2.79,8.9294,8.9294,0,0,0,0-9.6124,1.9916,1.9916,0,0,0-2.79-2.79,8.9445,8.9445,0,0,0-10.417.5713L8.9258,7.5117a1.8294,1.8294,0,0,0-.04-1.1528A11.9925,11.9925,0,1,1,16,28Zm0-14a2,2,0,1,1-2,2A2.0025,2.0025,0,0,1,16,14Zm3.4331-.019,2.0552-2.0552a2.0443,2.0443,0,0,0,.2265.0454,6.9573,6.9573,0,0,1,0,8.0576,2.0443,2.0443,0,0,0-.2265.0454L19.4331,18.019a3.8788,3.8788,0,0,0,0-4.038Zm.5957-3.6958a1.9993,1.9993,0,0,0,.0454.2265L18.019,12.5669a3.8788,3.8788,0,0,0-4.038,0l-2.1653-2.1655a6.9522,6.9522,0,0,1,8.2131-.1162ZM12.5669,13.981A3.951,3.951,0,0,0,12,16a4.0045,4.0045,0,0,0,4,4,3.9521,3.9521,0,0,0,2.019-.5669l2.0552,2.0552a1.9993,1.9993,0,0,0-.0454.2265,6.988,6.988,0,0,1-9.6272-9.8994Z" }), children);
393
455
  });
394
456
  ChartSpiral.propTypes = iconPropTypes;
395
- const ChartStacked = React.forwardRef(function ChartStacked({ children, size = 16, ...rest }, ref) {
457
+ const ChartStacked = /* @__PURE__ */ React.forwardRef(function ChartStacked({ children, size = 16, ...rest }, ref) {
396
458
  return React.createElement(Icon, {
397
459
  width: size,
398
460
  height: size,
@@ -404,7 +466,7 @@ const ChartStacked = React.forwardRef(function ChartStacked({ children, size = 1
404
466
  }, /* @__PURE__ */ jsx("path", { d: "M28,28V6H20V28H16V14H8V28H4V2H2V28a2,2,0,0,0,2,2H30V28ZM22,8h4V18H22ZM10,16h4v6H10Z" }), children);
405
467
  });
406
468
  ChartStacked.propTypes = iconPropTypes;
407
- const ChartStepper = React.forwardRef(function ChartStepper({ children, size = 16, ...rest }, ref) {
469
+ const ChartStepper = /* @__PURE__ */ React.forwardRef(function ChartStepper({ children, size = 16, ...rest }, ref) {
408
470
  return React.createElement(Icon, {
409
471
  width: size,
410
472
  height: size,
@@ -416,7 +478,7 @@ const ChartStepper = React.forwardRef(function ChartStepper({ children, size = 1
416
478
  }, /* @__PURE__ */ jsx("path", { d: "M14,22V14h8V6h8V4H20v8H12v8H4V2H2V28a2.0025,2.0025,0,0,0,2,2H30V28H4V22Z" }), children);
417
479
  });
418
480
  ChartStepper.propTypes = iconPropTypes;
419
- const ChartSunburst = React.forwardRef(function ChartSunburst({ children, size = 16, ...rest }, ref) {
481
+ const ChartSunburst = /* @__PURE__ */ React.forwardRef(function ChartSunburst({ children, size = 16, ...rest }, ref) {
420
482
  return React.createElement(Icon, {
421
483
  width: size,
422
484
  height: size,
@@ -428,7 +490,7 @@ const ChartSunburst = React.forwardRef(function ChartSunburst({ children, size =
428
490
  }, /* @__PURE__ */ jsx("path", { d: "M16,2a1,1,0,0,0-1,1v7.09a5.9618,5.9618,0,0,0-2.46,1.043L7.8384,6.4311a1.4554,1.4554,0,0,0-2.087.0244A14.05,14.05,0,0,0,9.8047,28.5972a10.8482,10.8482,0,0,0,1.8989.7676,14.0982,14.0982,0,0,0,13.8443-3.1319,1.4336,1.4336,0,0,0,.0278-2.0639L20.877,19.47A5.963,5.963,0,0,0,21.91,17H29a1,1,0,0,0,1-1A14.0158,14.0158,0,0,0,16,2Zm0,10a4,4,0,1,1-4,4A4.0045,4.0045,0,0,1,16,12ZM6.83,8.251l4.2959,4.2959a5.91,5.91,0,0,0-.0113,6.9243L6.8381,23.7481A12.0168,12.0168,0,0,1,6.83,8.251Zm1.4228,16.91,4.2759-4.2759A5.9589,5.9589,0,0,0,15,21.91v6.042A11.8783,11.8783,0,0,1,8.2529,25.1612ZM17,27.9561V21.9092a5.9631,5.9631,0,0,0,2.4609-1.0273l4.2818,4.2817A11.8905,11.8905,0,0,1,17,27.9561ZM21.91,15A6.0063,6.0063,0,0,0,17,10.09V4.041A12.0208,12.0208,0,0,1,27.9585,15Z" }), children);
429
491
  });
430
492
  ChartSunburst.propTypes = iconPropTypes;
431
- const ChartTSne = React.forwardRef(function ChartTSne({ children, size = 16, ...rest }, ref) {
493
+ const ChartTSne = /* @__PURE__ */ React.forwardRef(function ChartTSne({ children, size = 16, ...rest }, ref) {
432
494
  return React.createElement(Icon, {
433
495
  width: size,
434
496
  height: size,
@@ -496,7 +558,7 @@ const ChartTSne = React.forwardRef(function ChartTSne({ children, size = 16, ...
496
558
  }), children);
497
559
  });
498
560
  ChartTSne.propTypes = iconPropTypes;
499
- const ChartTreemap = React.forwardRef(function ChartTreemap({ children, size = 16, ...rest }, ref) {
561
+ const ChartTreemap = /* @__PURE__ */ React.forwardRef(function ChartTreemap({ children, size = 16, ...rest }, ref) {
500
562
  return React.createElement(Icon, {
501
563
  width: size,
502
564
  height: size,
@@ -508,7 +570,7 @@ const ChartTreemap = React.forwardRef(function ChartTreemap({ children, size = 1
508
570
  }, /* @__PURE__ */ jsx("path", { d: "M28,2H4A2.0023,2.0023,0,0,0,2,4V28a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V4A2.0023,2.0023,0,0,0,28,2Zm0,12H23V4h5ZM16,4h5V14H16ZM14,4V20H4V4ZM4,22H14v6H4Zm12,6V16H28V28Z" }), children);
509
571
  });
510
572
  ChartTreemap.propTypes = iconPropTypes;
511
- const ChartVennDiagram = React.forwardRef(function ChartVennDiagram({ children, size = 16, ...rest }, ref) {
573
+ const ChartVennDiagram = /* @__PURE__ */ React.forwardRef(function ChartVennDiagram({ children, size = 16, ...rest }, ref) {
512
574
  return React.createElement(Icon, {
513
575
  width: size,
514
576
  height: size,
@@ -520,7 +582,7 @@ const ChartVennDiagram = React.forwardRef(function ChartVennDiagram({ children,
520
582
  }, /* @__PURE__ */ jsx("path", { d: "M20,6a9.92,9.92,0,0,0-4,.84A9.92,9.92,0,0,0,12,6a10,10,0,0,0,0,20,9.92,9.92,0,0,0,4-.84A9.92,9.92,0,0,0,20,26,10,10,0,0,0,20,6ZM12,24A8,8,0,0,1,12,8a7.91,7.91,0,0,1,1.76.2,10,10,0,0,0,0,15.6A7.91,7.91,0,0,1,12,24Zm8-8a8,8,0,0,1-4,6.92A8,8,0,0,1,16,9.08,8,8,0,0,1,20,16Zm0,8a7.91,7.91,0,0,1-1.76-.2,10,10,0,0,0,0-15.6A7.91,7.91,0,0,1,20,8a8,8,0,0,1,0,16Z" }), children);
521
583
  });
522
584
  ChartVennDiagram.propTypes = iconPropTypes;
523
- const ChartViolinPlot = React.forwardRef(function ChartViolinPlot({ children, size = 16, ...rest }, ref) {
585
+ const ChartViolinPlot = /* @__PURE__ */ React.forwardRef(function ChartViolinPlot({ children, size = 16, ...rest }, ref) {
524
586
  return React.createElement(Icon, {
525
587
  width: size,
526
588
  height: size,
@@ -532,7 +594,7 @@ const ChartViolinPlot = React.forwardRef(function ChartViolinPlot({ children, si
532
594
  }, /* @__PURE__ */ jsx("path", { d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z" }), /* @__PURE__ */ jsx("path", { d: "M14.86,7.8232,13,4.7231V2H11V4.7231l-1.86,3.1A7.9986,7.9986,0,0,0,8,11.939v.122a7.9961,7.9961,0,0,0,1.14,4.1158l1.86,3.1V26h2V19.2769l1.86-3.1A7.9986,7.9986,0,0,0,16,12.061v-.122A7.9961,7.9961,0,0,0,14.86,7.8232ZM12,6.9434l1.145,1.9087A6.0027,6.0027,0,0,1,13.9185,11h-3.837a6.0086,6.0086,0,0,1,.7735-2.1484Zm0,10.1132-1.145-1.9087A6.0027,6.0027,0,0,1,10.0815,13h3.837a6.0086,6.0086,0,0,1-.7735,2.1484Z" }), /* @__PURE__ */ jsx("path", { d: "M27.86,11.8232,26,8.7231V2H24V8.7231l-1.86,3.1A7.9986,7.9986,0,0,0,21,15.939v.122a7.9961,7.9961,0,0,0,1.14,4.1158l1.86,3.1V26h2V23.2769l1.86-3.1A7.9986,7.9986,0,0,0,29,16.061v-.122A7.9961,7.9961,0,0,0,27.86,11.8232Zm-2.86-.88,1.145,1.9087A6.0027,6.0027,0,0,1,26.9185,15h-3.837a6.0086,6.0086,0,0,1,.7735-2.1484Zm0,10.1132-1.145-1.9087A6.0027,6.0027,0,0,1,23.0815,17h3.837a6.0086,6.0086,0,0,1-.7735,2.1484Z" }), children);
533
595
  });
534
596
  ChartViolinPlot.propTypes = iconPropTypes;
535
- const ChartWaterfall = React.forwardRef(function ChartWaterfall({ children, size = 16, ...rest }, ref) {
597
+ const ChartWaterfall = /* @__PURE__ */ React.forwardRef(function ChartWaterfall({ children, size = 16, ...rest }, ref) {
536
598
  return React.createElement(Icon, {
537
599
  width: size,
538
600
  height: size,
@@ -544,7 +606,7 @@ const ChartWaterfall = React.forwardRef(function ChartWaterfall({ children, size
544
606
  }, /* @__PURE__ */ jsx("path", { d: "M28,28V18H26V28H22V4H20V28H10V14H8V28H4V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z" }), /* @__PURE__ */ jsx("path", { d: "M14 4H16V18H14z" }), children);
545
607
  });
546
608
  ChartWaterfall.propTypes = iconPropTypes;
547
- const ChartWinLoss = React.forwardRef(function ChartWinLoss({ children, size = 16, ...rest }, ref) {
609
+ const ChartWinLoss = /* @__PURE__ */ React.forwardRef(function ChartWinLoss({ children, size = 16, ...rest }, ref) {
548
610
  return React.createElement(Icon, {
549
611
  width: size,
550
612
  height: size,
@@ -556,7 +618,7 @@ const ChartWinLoss = React.forwardRef(function ChartWinLoss({ children, size = 1
556
618
  }, /* @__PURE__ */ jsx("path", { d: "M30,15H16V6a2.0023,2.0023,0,0,0-2-2H6A2.0023,2.0023,0,0,0,4,6v9H2v2H16v9a2.0023,2.0023,0,0,0,2,2h8a2.0023,2.0023,0,0,0,2-2V17h2ZM6,6h8v9H6ZM26,26H18V17h8Z" }), children);
557
619
  });
558
620
  ChartWinLoss.propTypes = iconPropTypes;
559
- const Chat = React.forwardRef(function Chat({ children, size = 16, ...rest }, ref) {
621
+ const Chat = /* @__PURE__ */ React.forwardRef(function Chat({ children, size = 16, ...rest }, ref) {
560
622
  return React.createElement(Icon, {
561
623
  width: size,
562
624
  height: size,
@@ -568,7 +630,7 @@ const Chat = React.forwardRef(function Chat({ children, size = 16, ...rest }, re
568
630
  }, /* @__PURE__ */ jsx("path", { d: "M17.74,30,16,29l4-7h6a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2H6A2,2,0,0,0,4,8V20a2,2,0,0,0,2,2h9v2H6a4,4,0,0,1-4-4V8A4,4,0,0,1,6,4H26a4,4,0,0,1,4,4V20a4,4,0,0,1-4,4H21.16Z" }), /* @__PURE__ */ jsx("path", { d: "M8 10H24V12H8z" }), /* @__PURE__ */ jsx("path", { d: "M8 16H18V18H8z" }), children);
569
631
  });
570
632
  Chat.propTypes = iconPropTypes;
571
- const ChatLaunch = React.forwardRef(function ChatLaunch({ children, size = 16, ...rest }, ref) {
633
+ const ChatLaunch = /* @__PURE__ */ React.forwardRef(function ChatLaunch({ children, size = 16, ...rest }, ref) {
572
634
  return React.createElement(Icon, {
573
635
  width: size,
574
636
  height: size,
@@ -580,7 +642,7 @@ const ChatLaunch = React.forwardRef(function ChatLaunch({ children, size = 16, .
580
642
  }, /* @__PURE__ */ jsx("path", { d: "M22 4 22 6 26.586 6 20 12.586 21.414 14 28 7.414 28 12 30 12 30 4 22 4z" }), /* @__PURE__ */ jsx("path", { d: "M28,16v4a1.9965,1.9965,0,0,1-2,2H20l-4,7,1.7358,1,3.4288-6H26a3.9992,3.9992,0,0,0,4-4V16Z" }), /* @__PURE__ */ jsx("path", { d: "M4,20V8A1.9965,1.9965,0,0,1,6,6H18V4H6A3.9986,3.9986,0,0,0,2,8V20a3.9992,3.9992,0,0,0,4,4h9V22H6A1.9965,1.9965,0,0,1,4,20Z" }), children);
581
643
  });
582
644
  ChatLaunch.propTypes = iconPropTypes;
583
- const ChatOff = React.forwardRef(function ChatOff({ children, size = 16, ...rest }, ref) {
645
+ const ChatOff = /* @__PURE__ */ React.forwardRef(function ChatOff({ children, size = 16, ...rest }, ref) {
584
646
  return React.createElement(Icon, {
585
647
  width: size,
586
648
  height: size,
@@ -592,7 +654,7 @@ const ChatOff = React.forwardRef(function ChatOff({ children, size = 16, ...rest
592
654
  }, /* @__PURE__ */ jsx("path", { d: "M28,8V21h2V8a3.9986,3.9986,0,0,0-4-4H8.2429l2,2H26A1.9965,1.9965,0,0,1,28,8Z" }), /* @__PURE__ */ jsx("path", { d: "M30,28.5859,3.4141,2,2,3.4141,3.5039,4.918A3.9181,3.9181,0,0,0,2,8V20a3.9992,3.9992,0,0,0,4,4h6V22H6a1.9965,1.9965,0,0,1-2-2V8a1.9814,1.9814,0,0,1,.9194-1.6665L20.5859,22H17l-4,7,1.7358,1,3.4288-6h4.4213l6,6Z" }), children);
593
655
  });
594
656
  ChatOff.propTypes = iconPropTypes;
595
- const ChatOperational = React.forwardRef(function ChatOperational({ children, size = 16, ...rest }, ref) {
657
+ const ChatOperational = /* @__PURE__ */ React.forwardRef(function ChatOperational({ children, size = 16, ...rest }, ref) {
596
658
  return React.createElement(Icon, {
597
659
  width: size,
598
660
  height: size,
@@ -604,7 +666,7 @@ const ChatOperational = React.forwardRef(function ChatOperational({ children, si
604
666
  }, /* @__PURE__ */ jsx("path", { d: "M15.586 10.414 19.166 14 19.166 14 15.584 17.587 17 19 22 14 17 9 15.586 10.414z" }), /* @__PURE__ */ jsx("path", { d: "M20.586 10.414 24.166 14 24.166 14 20.584 17.587 22 19 27 14 22 9 20.586 10.414z" }), /* @__PURE__ */ jsx("path", { d: "M10 9 11.593 12 15 12.414 12.5 14.667 13 18 10 16.125 7 18 7.5 14.667 5 12.414 8.5 12 10 9z" }), /* @__PURE__ */ jsx("path", { d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z" }), children);
605
667
  });
606
668
  ChatOperational.propTypes = iconPropTypes;
607
- const ChatBot = React.forwardRef(function ChatBot({ children, size = 16, ...rest }, ref) {
669
+ const ChatBot = /* @__PURE__ */ React.forwardRef(function ChatBot({ children, size = 16, ...rest }, ref) {
608
670
  return React.createElement(Icon, {
609
671
  width: size,
610
672
  height: size,
@@ -616,7 +678,7 @@ const ChatBot = React.forwardRef(function ChatBot({ children, size = 16, ...rest
616
678
  }, /* @__PURE__ */ jsx("path", { d: "M16,19a6.9908,6.9908,0,0,1-5.833-3.1287l1.666-1.1074a5.0007,5.0007,0,0,0,8.334,0l1.666,1.1074A6.9908,6.9908,0,0,1,16,19Z" }), /* @__PURE__ */ jsx("path", { d: "M20,8a2,2,0,1,0,2,2A1.9806,1.9806,0,0,0,20,8Z" }), /* @__PURE__ */ jsx("path", { d: "M12,8a2,2,0,1,0,2,2A1.9806,1.9806,0,0,0,12,8Z" }), /* @__PURE__ */ jsx("path", { d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V6a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,6V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V6A3.9988,3.9988,0,0,1,6,2H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z" }), children);
617
679
  });
618
680
  ChatBot.propTypes = iconPropTypes;
619
- const Checkbox = React.forwardRef(function Checkbox({ children, size = 16, ...rest }, ref) {
681
+ const Checkbox = /* @__PURE__ */ React.forwardRef(function Checkbox({ children, size = 16, ...rest }, ref) {
620
682
  return React.createElement(Icon, {
621
683
  width: size,
622
684
  height: size,
@@ -628,7 +690,7 @@ const Checkbox = React.forwardRef(function Checkbox({ children, size = 16, ...re
628
690
  }, /* @__PURE__ */ jsx("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM6,26V6H26V26Z" }), children);
629
691
  });
630
692
  Checkbox.propTypes = iconPropTypes;
631
- const CheckboxChecked = React.forwardRef(function CheckboxChecked({ children, size = 16, ...rest }, ref) {
693
+ const CheckboxChecked = /* @__PURE__ */ React.forwardRef(function CheckboxChecked({ children, size = 16, ...rest }, ref) {
632
694
  return React.createElement(Icon, {
633
695
  width: size,
634
696
  height: size,
@@ -640,7 +702,7 @@ const CheckboxChecked = React.forwardRef(function CheckboxChecked({ children, si
640
702
  }, /* @__PURE__ */ jsx("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM6,26V6H26V26Z" }), /* @__PURE__ */ jsx("path", { d: "M14 21.5 9 16.54 10.59 15 14 18.35 21.41 11 23 12.58 14 21.5z" }), children);
641
703
  });
642
704
  CheckboxChecked.propTypes = iconPropTypes;
643
- const CheckboxCheckedFilled = React.forwardRef(function CheckboxCheckedFilled({ children, size = 16, ...rest }, ref) {
705
+ const CheckboxCheckedFilled = /* @__PURE__ */ React.forwardRef(function CheckboxCheckedFilled({ children, size = 16, ...rest }, ref) {
644
706
  return React.createElement(Icon, {
645
707
  width: size,
646
708
  height: size,
@@ -656,7 +718,7 @@ const CheckboxCheckedFilled = React.forwardRef(function CheckboxCheckedFilled({
656
718
  }), children);
657
719
  });
658
720
  CheckboxCheckedFilled.propTypes = iconPropTypes;
659
- const CheckboxIndeterminate = React.forwardRef(function CheckboxIndeterminate({ children, size = 16, ...rest }, ref) {
721
+ const CheckboxIndeterminate = /* @__PURE__ */ React.forwardRef(function CheckboxIndeterminate({ children, size = 16, ...rest }, ref) {
660
722
  return React.createElement(Icon, {
661
723
  width: size,
662
724
  height: size,
@@ -668,7 +730,7 @@ const CheckboxIndeterminate = React.forwardRef(function CheckboxIndeterminate({
668
730
  }, /* @__PURE__ */ jsx("path", { d: "M10 14H22V18H10z" }), /* @__PURE__ */ jsx("path", { d: "M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM6,26V6H26V26Z" }), children);
669
731
  });
670
732
  CheckboxIndeterminate.propTypes = iconPropTypes;
671
- const CheckboxIndeterminateFilled = React.forwardRef(function CheckboxIndeterminateFilled({ children, size = 16, ...rest }, ref) {
733
+ const CheckboxIndeterminateFilled = /* @__PURE__ */ React.forwardRef(function CheckboxIndeterminateFilled({ children, size = 16, ...rest }, ref) {
672
734
  return React.createElement(Icon, {
673
735
  width: size,
674
736
  height: size,
@@ -684,7 +746,7 @@ const CheckboxIndeterminateFilled = React.forwardRef(function CheckboxIndetermin
684
746
  }), children);
685
747
  });
686
748
  CheckboxIndeterminateFilled.propTypes = iconPropTypes;
687
- const Checkmark = React.forwardRef(function Checkmark({ children, size = 16, ...rest }, ref) {
749
+ const Checkmark = /* @__PURE__ */ React.forwardRef(function Checkmark({ children, size = 16, ...rest }, ref) {
688
750
  if (size === 20 || size === "20" || size === "20px") return React.createElement(Icon, {
689
751
  width: size,
690
752
  height: size,
@@ -714,7 +776,7 @@ const Checkmark = React.forwardRef(function Checkmark({ children, size = 16, ...
714
776
  }, /* @__PURE__ */ jsx("path", { d: "M13 24 4 15 5.414 13.586 13 21.171 26.586 7.586 28 9 13 24z" }), children);
715
777
  });
716
778
  Checkmark.propTypes = iconPropTypes;
717
- const CheckmarkFilled = React.forwardRef(function CheckmarkFilled({ children, size = 16, ...rest }, ref) {
779
+ const CheckmarkFilled = /* @__PURE__ */ React.forwardRef(function CheckmarkFilled({ children, size = 16, ...rest }, ref) {
718
780
  if (size === 16 || size === "16" || size === "16px") return React.createElement(Icon, {
719
781
  width: size,
720
782
  height: size,
@@ -771,7 +833,7 @@ const CheckmarkFilled = React.forwardRef(function CheckmarkFilled({ children, si
771
833
  }), children);
772
834
  });
773
835
  CheckmarkFilled.propTypes = iconPropTypes;
774
- const CheckmarkFilledError = React.forwardRef(function CheckmarkFilledError({ children, size = 16, ...rest }, ref) {
836
+ const CheckmarkFilledError = /* @__PURE__ */ React.forwardRef(function CheckmarkFilledError({ children, size = 16, ...rest }, ref) {
775
837
  return React.createElement(Icon, {
776
838
  width: size,
777
839
  height: size,
@@ -787,7 +849,7 @@ const CheckmarkFilledError = React.forwardRef(function CheckmarkFilledError({ ch
787
849
  }), children);
788
850
  });
789
851
  CheckmarkFilledError.propTypes = iconPropTypes;
790
- const CheckmarkFilledWarning = React.forwardRef(function CheckmarkFilledWarning({ children, size = 16, ...rest }, ref) {
852
+ const CheckmarkFilledWarning = /* @__PURE__ */ React.forwardRef(function CheckmarkFilledWarning({ children, size = 16, ...rest }, ref) {
791
853
  return React.createElement(Icon, {
792
854
  width: size,
793
855
  height: size,
@@ -803,7 +865,7 @@ const CheckmarkFilledWarning = React.forwardRef(function CheckmarkFilledWarning(
803
865
  }), children);
804
866
  });
805
867
  CheckmarkFilledWarning.propTypes = iconPropTypes;
806
- const CheckmarkOutline = React.forwardRef(function CheckmarkOutline({ children, size = 16, ...rest }, ref) {
868
+ const CheckmarkOutline = /* @__PURE__ */ React.forwardRef(function CheckmarkOutline({ children, size = 16, ...rest }, ref) {
807
869
  return React.createElement(Icon, {
808
870
  width: size,
809
871
  height: size,
@@ -815,7 +877,7 @@ const CheckmarkOutline = React.forwardRef(function CheckmarkOutline({ children,
815
877
  }, /* @__PURE__ */ jsx("path", { d: "M14 21.414 9 16.413 10.413 15 14 18.586 21.585 11 23 12.415 14 21.414z" }), /* @__PURE__ */ jsx("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z" }), children);
816
878
  });
817
879
  CheckmarkOutline.propTypes = iconPropTypes;
818
- const CheckmarkOutlineError = React.forwardRef(function CheckmarkOutlineError({ children, size = 16, ...rest }, ref) {
880
+ const CheckmarkOutlineError = /* @__PURE__ */ React.forwardRef(function CheckmarkOutlineError({ children, size = 16, ...rest }, ref) {
819
881
  return React.createElement(Icon, {
820
882
  width: size,
821
883
  height: size,
@@ -827,7 +889,7 @@ const CheckmarkOutlineError = React.forwardRef(function CheckmarkOutlineError({
827
889
  }, /* @__PURE__ */ jsx("path", { d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z" }), /* @__PURE__ */ jsx("path", { d: "M12 15.59 9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59z" }), /* @__PURE__ */ jsx("path", { d: "M30,24a6,6,0,1,0-6,6A6.0066,6.0066,0,0,0,30,24Zm-2,0a3.9521,3.9521,0,0,1-.5669,2.019L21.981,20.5669A3.9529,3.9529,0,0,1,24,20,4.0045,4.0045,0,0,1,28,24Zm-8,0a3.9521,3.9521,0,0,1,.5669-2.019l5.4521,5.4521A3.9529,3.9529,0,0,1,24,28,4.0045,4.0045,0,0,1,20,24Z" }), children);
828
890
  });
829
891
  CheckmarkOutlineError.propTypes = iconPropTypes;
830
- const CheckmarkOutlineWarning = React.forwardRef(function CheckmarkOutlineWarning({ children, size = 16, ...rest }, ref) {
892
+ const CheckmarkOutlineWarning = /* @__PURE__ */ React.forwardRef(function CheckmarkOutlineWarning({ children, size = 16, ...rest }, ref) {
831
893
  return React.createElement(Icon, {
832
894
  width: size,
833
895
  height: size,
@@ -839,7 +901,7 @@ const CheckmarkOutlineWarning = React.forwardRef(function CheckmarkOutlineWarnin
839
901
  }, /* @__PURE__ */ jsx("path", { d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z" }), /* @__PURE__ */ jsx("path", { d: "M12 15.59 9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59z" }), /* @__PURE__ */ jsx("path", { d: "M27.38,28H20.6178L24,21.2358ZM24,18a1,1,0,0,0-.8947.5527l-5,10A1.0005,1.0005,0,0,0,19,30H29a1,1,0,0,0,.9214-1.3892L24.8946,18.5527A1,1,0,0,0,24,18Z" }), children);
840
902
  });
841
903
  CheckmarkOutlineWarning.propTypes = iconPropTypes;
842
- const Chemistry = React.forwardRef(function Chemistry({ children, size = 16, ...rest }, ref) {
904
+ const Chemistry = /* @__PURE__ */ React.forwardRef(function Chemistry({ children, size = 16, ...rest }, ref) {
843
905
  return React.createElement(Icon, {
844
906
  width: size,
845
907
  height: size,
@@ -851,7 +913,7 @@ const Chemistry = React.forwardRef(function Chemistry({ children, size = 16, ...
851
913
  }, /* @__PURE__ */ jsx("path", { d: "M27.2314,23.6182,20,13.6748V4h2V2H10V4h2v9.6748L4.7686,23.6182A4.0183,4.0183,0,0,0,8.0186,30H23.9814a4.0183,4.0183,0,0,0,3.25-6.3818ZM14,14.3252V4h4V14.3252L20.6728,18H11.3272ZM23.9814,28H8.0186a2.0192,2.0192,0,0,1-1.6329-3.2061L9.8726,20H22.1274l3.4869,4.7939A2.0192,2.0192,0,0,1,23.9814,28Z" }), children);
852
914
  });
853
915
  Chemistry.propTypes = iconPropTypes;
854
- const ChemistryReference = React.forwardRef(function ChemistryReference({ children, size = 16, ...rest }, ref) {
916
+ const ChemistryReference = /* @__PURE__ */ React.forwardRef(function ChemistryReference({ children, size = 16, ...rest }, ref) {
855
917
  return React.createElement(Icon, {
856
918
  width: size,
857
919
  height: size,
@@ -863,7 +925,7 @@ const ChemistryReference = React.forwardRef(function ChemistryReference({ childr
863
925
  }, /* @__PURE__ */ 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__ */ jsx("path", { d: "M20,13.67V4h2V2H10V4h2v9.67L9.58,17h2.4767L14,14.33V4h4V14.33l7.61,10.46a2.0133,2.0133,0,0,1-.44,2.82,2.0406,2.0406,0,0,1-1.19.39H15v2h8.98a4.0154,4.0154,0,0,0,3.25-6.38Z" }), children);
864
926
  });
865
927
  ChemistryReference.propTypes = iconPropTypes;
866
- const ChevronDown = React.forwardRef(function ChevronDown({ children, size = 16, ...rest }, ref) {
928
+ const ChevronDown = /* @__PURE__ */ React.forwardRef(function ChevronDown({ children, size = 16, ...rest }, ref) {
867
929
  if (size === "glyph" || size === "glyph" || size === "glyphpx") return React.createElement(Icon, {
868
930
  width: size,
869
931
  height: size,
@@ -893,7 +955,7 @@ const ChevronDown = React.forwardRef(function ChevronDown({ children, size = 16,
893
955
  }, /* @__PURE__ */ jsx("path", { d: "M16 22 6 12 7.4 10.6 16 19.2 24.6 10.6 26 12z" }), children);
894
956
  });
895
957
  ChevronDown.propTypes = iconPropTypes;
896
- const ChevronDownOutline = React.forwardRef(function ChevronDownOutline({ children, size = 16, ...rest }, ref) {
958
+ const ChevronDownOutline = /* @__PURE__ */ React.forwardRef(function ChevronDownOutline({ children, size = 16, ...rest }, ref) {
897
959
  return React.createElement(Icon, {
898
960
  width: size,
899
961
  height: size,
@@ -905,7 +967,7 @@ const ChevronDownOutline = React.forwardRef(function ChevronDownOutline({ childr
905
967
  }, /* @__PURE__ */ jsx("path", { d: "M9.4142 12.5858 16 19.1714 22.5858 12.5858 24 14 16 22 8 14 9.4142 12.5858z" }), /* @__PURE__ */ jsx("path", { d: "m30,16c0,7.7197-6.2803,14-14,14S2,23.7197,2,16,8.2803,2,16,2s14,6.2803,14,14Zm-26,0c0,6.6167,5.3833,12,12,12s12-5.3833,12-12-5.3833-12-12-12S4,9.3833,4,16Z" }), children);
906
968
  });
907
969
  ChevronDownOutline.propTypes = iconPropTypes;
908
- const ChevronLeft = React.forwardRef(function ChevronLeft({ children, size = 16, ...rest }, ref) {
970
+ const ChevronLeft = /* @__PURE__ */ React.forwardRef(function ChevronLeft({ children, size = 16, ...rest }, ref) {
909
971
  if (size === "glyph" || size === "glyph" || size === "glyphpx") return React.createElement(Icon, {
910
972
  width: size,
911
973
  height: size,
@@ -935,7 +997,7 @@ const ChevronLeft = React.forwardRef(function ChevronLeft({ children, size = 16,
935
997
  }, /* @__PURE__ */ jsx("path", { d: "M10 16 20 6 21.4 7.4 12.8 16 21.4 24.6 20 26z" }), children);
936
998
  });
937
999
  ChevronLeft.propTypes = iconPropTypes;
938
- const ChevronMini = React.forwardRef(function ChevronMini({ children, size = 16, ...rest }, ref) {
1000
+ const ChevronMini = /* @__PURE__ */ React.forwardRef(function ChevronMini({ children, size = 16, ...rest }, ref) {
939
1001
  if (size === 16 || size === "16" || size === "16px") return React.createElement(Icon, {
940
1002
  width: size,
941
1003
  height: size,
@@ -956,7 +1018,7 @@ const ChevronMini = React.forwardRef(function ChevronMini({ children, size = 16,
956
1018
  }, /* @__PURE__ */ jsx("path", { d: "M31 19 31 31 19 31 31 19z" }), children);
957
1019
  });
958
1020
  ChevronMini.propTypes = iconPropTypes;
959
- const ChevronRight = React.forwardRef(function ChevronRight({ children, size = 16, ...rest }, ref) {
1021
+ const ChevronRight = /* @__PURE__ */ React.forwardRef(function ChevronRight({ children, size = 16, ...rest }, ref) {
960
1022
  if (size === "glyph" || size === "glyph" || size === "glyphpx") return React.createElement(Icon, {
961
1023
  width: size,
962
1024
  height: size,
@@ -986,7 +1048,7 @@ const ChevronRight = React.forwardRef(function ChevronRight({ children, size = 1
986
1048
  }, /* @__PURE__ */ jsx("path", { d: "M22 16 12 26 10.6 24.6 19.2 16 10.6 7.4 12 6z" }), children);
987
1049
  });
988
1050
  ChevronRight.propTypes = iconPropTypes;
989
- const ChevronSort = React.forwardRef(function ChevronSort({ children, size = 16, ...rest }, ref) {
1051
+ const ChevronSort = /* @__PURE__ */ React.forwardRef(function ChevronSort({ children, size = 16, ...rest }, ref) {
990
1052
  if (size === 16 || size === "16" || size === "16px") return React.createElement(Icon, {
991
1053
  width: size,
992
1054
  height: size,
@@ -1007,7 +1069,7 @@ const ChevronSort = React.forwardRef(function ChevronSort({ children, size = 16,
1007
1069
  }, /* @__PURE__ */ jsx("path", { d: "M16 28 9 21 10.41 19.59 16 25.17 21.59 19.59 23 21 16 28z" }), /* @__PURE__ */ jsx("path", { d: "M16 4 23 11 21.59 12.41 16 6.83 10.41 12.41 9 11 16 4z" }), children);
1008
1070
  });
1009
1071
  ChevronSort.propTypes = iconPropTypes;
1010
- const ChevronSortDown = React.forwardRef(function ChevronSortDown({ children, size = 16, ...rest }, ref) {
1072
+ const ChevronSortDown = /* @__PURE__ */ React.forwardRef(function ChevronSortDown({ children, size = 16, ...rest }, ref) {
1011
1073
  if (size === 16 || size === "16" || size === "16px") return React.createElement(Icon, {
1012
1074
  width: size,
1013
1075
  height: size,
@@ -1028,7 +1090,7 @@ const ChevronSortDown = React.forwardRef(function ChevronSortDown({ children, si
1028
1090
  }, /* @__PURE__ */ jsx("path", { d: "M16 28 9 21 10.4 19.6 16 25.2 21.6 19.6 23 21z" }), children);
1029
1091
  });
1030
1092
  ChevronSortDown.propTypes = iconPropTypes;
1031
- const ChevronSortUp = React.forwardRef(function ChevronSortUp({ children, size = 16, ...rest }, ref) {
1093
+ const ChevronSortUp = /* @__PURE__ */ React.forwardRef(function ChevronSortUp({ children, size = 16, ...rest }, ref) {
1032
1094
  if (size === 16 || size === "16" || size === "16px") return React.createElement(Icon, {
1033
1095
  width: size,
1034
1096
  height: size,
@@ -1049,7 +1111,7 @@ const ChevronSortUp = React.forwardRef(function ChevronSortUp({ children, size =
1049
1111
  }, /* @__PURE__ */ jsx("path", { d: "M16 4 23 11 21.6 12.4 16 6.8 10.4 12.4 9 11z" }), children);
1050
1112
  });
1051
1113
  ChevronSortUp.propTypes = iconPropTypes;
1052
- const ChevronUp = React.forwardRef(function ChevronUp({ children, size = 16, ...rest }, ref) {
1114
+ const ChevronUp = /* @__PURE__ */ React.forwardRef(function ChevronUp({ children, size = 16, ...rest }, ref) {
1053
1115
  if (size === "glyph" || size === "glyph" || size === "glyphpx") return React.createElement(Icon, {
1054
1116
  width: size,
1055
1117
  height: size,
@@ -1079,7 +1141,7 @@ const ChevronUp = React.forwardRef(function ChevronUp({ children, size = 16, ...
1079
1141
  }, /* @__PURE__ */ jsx("path", { d: "M16 10 26 20 24.6 21.4 16 12.8 7.4 21.4 6 20z" }), children);
1080
1142
  });
1081
1143
  ChevronUp.propTypes = iconPropTypes;
1082
- const ChevronUpOutline = React.forwardRef(function ChevronUpOutline({ children, size = 16, ...rest }, ref) {
1144
+ const ChevronUpOutline = /* @__PURE__ */ React.forwardRef(function ChevronUpOutline({ children, size = 16, ...rest }, ref) {
1083
1145
  return React.createElement(Icon, {
1084
1146
  width: size,
1085
1147
  height: size,
@@ -1091,7 +1153,7 @@ const ChevronUpOutline = React.forwardRef(function ChevronUpOutline({ children,
1091
1153
  }, /* @__PURE__ */ jsx("path", { d: "M9.4142 19.4142 16 12.8286 22.5858 19.4142 24 18 16 10 8 18 9.4142 19.4142z" }), /* @__PURE__ */ jsx("path", { d: "m30,16c0,7.7197-6.2803,14-14,14S2,23.7197,2,16,8.2803,2,16,2s14,6.2803,14,14Zm-26,0c0,6.6167,5.3833,12,12,12s12-5.3833,12-12-5.3833-12-12-12S4,9.3833,4,16Z" }), children);
1092
1154
  });
1093
1155
  ChevronUpOutline.propTypes = iconPropTypes;
1094
- const ChildNode = React.forwardRef(function ChildNode({ children, size = 16, ...rest }, ref) {
1156
+ const ChildNode = /* @__PURE__ */ React.forwardRef(function ChildNode({ children, size = 16, ...rest }, ref) {
1095
1157
  return React.createElement(Icon, {
1096
1158
  width: size,
1097
1159
  height: size,
@@ -1103,7 +1165,7 @@ const ChildNode = React.forwardRef(function ChildNode({ children, size = 16, ...
1103
1165
  }, /* @__PURE__ */ jsx("path", { d: "M23,20c-2.41,0-4.43,1.72-4.9,4h-4.1c-2.21,0-4-1.79-4-4v-8.1c2.28-.46,4-2.48,4-4.9,0-2.76-2.24-5-5-5s-5,2.24-5,5c0,2.41,1.72,4.43,4,4.9v8.1c0,3.31,2.69,6,6,6h4.1c.46,2.28,2.48,4,4.9,4,2.76,0,5-2.24,5-5s-2.24-5-5-5ZM6,7c0-1.65,1.35-3,3-3s3,1.35,3,3-1.35,3-3,3-3-1.35-3-3Z" }), children);
1104
1166
  });
1105
1167
  ChildNode.propTypes = iconPropTypes;
1106
- const Chip = React.forwardRef(function Chip({ children, size = 16, ...rest }, ref) {
1168
+ const Chip = /* @__PURE__ */ React.forwardRef(function Chip({ children, size = 16, ...rest }, ref) {
1107
1169
  return React.createElement(Icon, {
1108
1170
  width: size,
1109
1171
  height: size,
@@ -1115,7 +1177,7 @@ const Chip = React.forwardRef(function Chip({ children, size = 16, ...rest }, re
1115
1177
  }, /* @__PURE__ */ jsx("path", { d: "M11,11V21H21V11Zm8,8H13V13h6Z" }), /* @__PURE__ */ jsx("path", { d: "M30,13V11H26V8a2,2,0,0,0-2-2H21V2H19V6H13V2H11V6H8A2,2,0,0,0,6,8v3H2v2H6v6H2v2H6v3a2,2,0,0,0,2,2h3v4h2V26h6v4h2V26h3a2,2,0,0,0,2-2V21h4V19H26V13ZM24,24H8V8H24Z" }), children);
1116
1178
  });
1117
1179
  Chip.propTypes = iconPropTypes;
1118
- const Choices = React.forwardRef(function Choices({ children, size = 16, ...rest }, ref) {
1180
+ const Choices = /* @__PURE__ */ React.forwardRef(function Choices({ children, size = 16, ...rest }, ref) {
1119
1181
  return React.createElement(Icon, {
1120
1182
  width: size,
1121
1183
  height: size,
@@ -1127,7 +1189,7 @@ const Choices = React.forwardRef(function Choices({ children, size = 16, ...rest
1127
1189
  }, /* @__PURE__ */ jsx("path", { d: "M28 13 28 4 19 4 19 6 24.586 6 16 14.586 7.414 6 13 6 13 4 4 4 4 13 6 13 6 7.414 15 16.414 15 26 4 26 4 28 28 28 28 26 17 26 17 16.414 26 7.414 26 13 28 13z" }), children);
1128
1190
  });
1129
1191
  Choices.propTypes = iconPropTypes;
1130
- const ChooseItem = React.forwardRef(function ChooseItem({ children, size = 16, ...rest }, ref) {
1192
+ const ChooseItem = /* @__PURE__ */ React.forwardRef(function ChooseItem({ children, size = 16, ...rest }, ref) {
1131
1193
  return React.createElement(Icon, {
1132
1194
  width: size,
1133
1195
  height: size,
@@ -1139,7 +1201,7 @@ const ChooseItem = React.forwardRef(function ChooseItem({ children, size = 16, .
1139
1201
  }, /* @__PURE__ */ jsx("path", { d: "M28 6H30V26H28z" }), /* @__PURE__ */ jsx("path", { d: "M17 6 15.57 7.393 23.15 15 2 15 2 17 23.15 17 15.57 24.573 17 26 27 16 17 6z" }), children);
1140
1202
  });
1141
1203
  ChooseItem.propTypes = iconPropTypes;
1142
- const ChoroplethMap = React.forwardRef(function ChoroplethMap({ children, size = 16, ...rest }, ref) {
1204
+ const ChoroplethMap = /* @__PURE__ */ React.forwardRef(function ChoroplethMap({ children, size = 16, ...rest }, ref) {
1143
1205
  return React.createElement(Icon, {
1144
1206
  width: size,
1145
1207
  height: size,
@@ -1151,7 +1213,7 @@ const ChoroplethMap = React.forwardRef(function ChoroplethMap({ children, size =
1151
1213
  }, /* @__PURE__ */ jsx("path", { d: "M29.2427,4.03l-8-2a1.0065,1.0065,0,0,0-.6143.0415l-9.7,3.88L3.2427,4.03A1,1,0,0,0,2,5V27a1,1,0,0,0,.7573.97l8,2A1.0244,1.0244,0,0,0,11,30a.9953.9953,0,0,0,.3716-.0718l9.7-3.88,7.686,1.9219A1,1,0,0,0,30,27V5A1,1,0,0,0,29.2427,4.03ZM28,11H22V4.2806l6,1.5ZM10,19H4V13h6Zm2-8V7.6771l8-3.2V11Zm8,2v6H12V13Zm-8,8h8v3.3227l-8,3.2Zm10-8h6v6H22ZM10,7.7806V11H4V6.2806ZM4,21h6v6.7192l-6-1.5Zm18,3.2187V21h6v4.7192Z" }), children);
1152
1214
  });
1153
1215
  ChoroplethMap.propTypes = iconPropTypes;
1154
- const CicsCmas = React.forwardRef(function CicsCmas({ children, size = 16, ...rest }, ref) {
1216
+ const CicsCmas = /* @__PURE__ */ React.forwardRef(function CicsCmas({ children, size = 16, ...rest }, ref) {
1155
1217
  return React.createElement(Icon, {
1156
1218
  width: size,
1157
1219
  height: size,
@@ -1163,7 +1225,7 @@ const CicsCmas = React.forwardRef(function CicsCmas({ children, size = 16, ...re
1163
1225
  }, /* @__PURE__ */ jsx("path", { d: "M30.3335,30H26V28h4V26H28a2.002,2.002,0,0,1-2-2V21.6665A1.6684,1.6684,0,0,1,27.6665,20H32v2H28v2h2a2.002,2.002,0,0,1,2,2v2.3335A1.6684,1.6684,0,0,1,30.3335,30Z" }), /* @__PURE__ */ jsx("path", { d: "M22.3335,20h-2.667A1.6665,1.6665,0,0,0,18,21.6665V30h2V26h2v4h2V21.6665A1.6665,1.6665,0,0,0,22.3335,20ZM20,24V22h2v2Z" }), /* @__PURE__ */ jsx("path", { d: "M12.5 24 11 20 9 20 9 30 11 30 11 23 12.5 27 14 23 14 30 16 30 16 20 14 20 12.5 24z" }), /* @__PURE__ */ jsx("path", { d: "M1,22v6.5A1.4727,1.4727,0,0,0,2.5,30H7V28H3V22H7V20H3A2.0059,2.0059,0,0,0,1,22Z" }), /* @__PURE__ */ jsx("path", { d: "M13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16 13 13 16 13 16 11 13 11 13 8z" }), /* @__PURE__ */ jsx("path", { d: "M6,6H26V18h2V6a2.0059,2.0059,0,0,0-2-2H6A2.0059,2.0059,0,0,0,4,6V18H6Z" }), children);
1164
1226
  });
1165
1227
  CicsCmas.propTypes = iconPropTypes;
1166
- const CicsDb2Connection = React.forwardRef(function CicsDb2Connection({ children, size = 16, ...rest }, ref) {
1228
+ const CicsDb2Connection = /* @__PURE__ */ React.forwardRef(function CicsDb2Connection({ children, size = 16, ...rest }, ref) {
1167
1229
  return React.createElement(Icon, {
1168
1230
  width: size,
1169
1231
  height: size,
@@ -1175,7 +1237,7 @@ const CicsDb2Connection = React.forwardRef(function CicsDb2Connection({ children
1175
1237
  }, /* @__PURE__ */ jsx("path", { d: "M22.5,30c-1.9299,0-3.5-1.5701-3.5-3.5,0-.9346,.3638-1.8134,1.0244-2.4742l1.4146,1.4138c-.283,.2832-.439,.6598-.439,1.0604,0,.8271,.6729,1.5,1.5,1.5,.4009,0,.7776-.1561,1.061-.4396l4.9998-4.9998c.2832-.2833,.4392-.66,.4392-1.0607,0-.8271-.6729-1.5-1.5-1.5-.4011,0-.7783,.1564-1.0618,.4404l-1.4155-1.4131c.6616-.6625,1.5413-1.0273,2.4773-1.0273,1.9299,0,3.5,1.5701,3.5,3.5,0,.9348-.364,1.8137-1.0249,2.4749l-4.9998,4.9996c-.6609,.6613-1.54,1.0255-2.4753,1.0255Z" }), /* @__PURE__ */ jsx("path", { d: "M16.5,31c-1.9299,0-3.5-1.5701-3.5-3.5,0-.9348,.364-1.8137,1.0249-2.4749l4.9998-4.9996c.6609-.6613,1.54-1.0255,2.4753-1.0255,1.9299,0,3.5,1.5701,3.5,3.5,0,.9346-.3638,1.8134-1.0244,2.4742l-1.4146-1.4138c.283-.2832,.439-.6598,.439-1.0604,0-.8271-.6729-1.5-1.5-1.5-.4009,0-.7776,.1561-1.061,.4396l-4.9998,4.9998c-.2832,.2833-.4392,.66-.4392,1.0607,0,.8271,.6729,1.5,1.5,1.5,.4011,0,.7783-.1564,1.0618-.4404l1.4155,1.4131c-.6616,.6625-1.5413,1.0273-2.4773,1.0273Z" }), /* @__PURE__ */ jsx("path", { d: "M16,2c-5.2979,0-11,1.252-11,4V24c0,1.6797,2.134,2.7979,5,3.415v-2.0459c-1.9939-.4727-2.9453-1.1431-3-1.3691v-3.5723c1.4937,.749,3.6738,1.2153,6,1.4302v-1.9976c-3.8779-.3774-5.8774-1.4219-6-1.8604v-3.5723c2.1279,1.0674,5.6426,1.5723,9,1.5723,5.2979,0,11-1.252,11-4V5.9995c-.0007-2.748-5.7024-3.9995-11-3.9995ZM6.9985,6.0151c.1523-.5552,3.1514-2.0151,9.0015-2.0151,5.7976,0,8.7949,1.4341,8.9968,2-.2019,.5659-3.1992,2-8.9968,2-5.8501,0-8.8491-1.46-9.0015-1.9849Zm18.0015,5.9722c-.1606,.5571-3.1587,2.0127-9,2.0127-5.8501,0-8.8491-1.46-9-2v-3.5723c2.1279,1.0674,5.6426,1.5723,9,1.5723s6.8721-.5049,9-1.5723v3.5596Z" }), children);
1176
1238
  });
1177
1239
  CicsDb2Connection.propTypes = iconPropTypes;
1178
- const CicsExplorer = React.forwardRef(function CicsExplorer({ children, size = 16, ...rest }, ref) {
1240
+ const CicsExplorer = /* @__PURE__ */ React.forwardRef(function CicsExplorer({ children, size = 16, ...rest }, ref) {
1179
1241
  return React.createElement(Icon, {
1180
1242
  width: size,
1181
1243
  height: size,
@@ -1187,7 +1249,7 @@ const CicsExplorer = React.forwardRef(function CicsExplorer({ children, size = 1
1187
1249
  }, /* @__PURE__ */ jsx("path", { d: "M24 16 19.4 14.6 21.7 10.3 17.4 12.6 16 8 14.6 12.6 10.3 10.3 12.6 14.6 8 16 12.6 17.4 10.3 21.7 14.6 19.4 16 24 17.4 19.4 21.7 21.7 19.4 17.4 24 16z" }), /* @__PURE__ */ jsx("path", { d: "M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z" }), children);
1188
1250
  });
1189
1251
  CicsExplorer.propTypes = iconPropTypes;
1190
- const CicsProgram = React.forwardRef(function CicsProgram({ children, size = 16, ...rest }, ref) {
1252
+ const CicsProgram = /* @__PURE__ */ React.forwardRef(function CicsProgram({ children, size = 16, ...rest }, ref) {
1191
1253
  return React.createElement(Icon, {
1192
1254
  width: size,
1193
1255
  height: size,
@@ -1207,7 +1269,7 @@ const CicsProgram = React.forwardRef(function CicsProgram({ children, size = 16,
1207
1269
  }), /* @__PURE__ */ jsx("path", { d: "M28,4H4c-1.1028,0-2,.8975-2,2V26c0,1.1025,.8972,2,2,2H28c1.1028,0,2-.8975,2-2V6c0-1.1025-.8972-2-2-2Zm0,2v4H4V6H28ZM4,26V12H28v14H4Z" }), children);
1208
1270
  });
1209
1271
  CicsProgram.propTypes = iconPropTypes;
1210
- const CicsSit = React.forwardRef(function CicsSit({ children, size = 16, ...rest }, ref) {
1272
+ const CicsSit = /* @__PURE__ */ React.forwardRef(function CicsSit({ children, size = 16, ...rest }, ref) {
1211
1273
  return React.createElement(Icon, {
1212
1274
  width: size,
1213
1275
  height: size,
@@ -1219,7 +1281,7 @@ const CicsSit = React.forwardRef(function CicsSit({ children, size = 16, ...rest
1219
1281
  }, /* @__PURE__ */ jsx("path", { d: "M23 22 30 27 23 32 23 22z" }), /* @__PURE__ */ jsx("path", { d: "M26,3H6c-1.6543,0-3,1.3457-3,3V26c0,1.6543,1.3457,3,3,3h11v-9h12V6c0-1.6543-1.3457-3-3-3ZM6,5H26c.5515,0,1,.4482,1,1v3H5v-3c0-.5518,.4485-1,1-1Zm9,6v7H5v-7H15Zm0,16H6c-.5515,0-1-.4482-1-1v-6H15v7Zm2-9v-7h10v7h-10Z" }), children);
1220
1282
  });
1221
1283
  CicsSit.propTypes = iconPropTypes;
1222
- const CicsSitOverrides = React.forwardRef(function CicsSitOverrides({ children, size = 16, ...rest }, ref) {
1284
+ const CicsSitOverrides = /* @__PURE__ */ React.forwardRef(function CicsSitOverrides({ children, size = 16, ...rest }, ref) {
1223
1285
  return React.createElement(Icon, {
1224
1286
  width: size,
1225
1287
  height: size,
@@ -1231,7 +1293,7 @@ const CicsSitOverrides = React.forwardRef(function CicsSitOverrides({ children,
1231
1293
  }, /* @__PURE__ */ jsx("path", { d: "M31.707,20.293l-3-3c-.3901-.3906-1.0239-.3906-1.4141,0l-9.293,9.293v4.4141h4.4143l9.2927-9.293c.3906-.3906,.3906-1.0234,0-1.4141Zm-7.4141,6l-2.7073,2.707h-1.5857v-1.5859l2.707-2.707,2.293-2.293,1.5859,1.5859-2.293,2.293Zm3.707-3.707l-1.5859-1.5859,1.5859-1.5859,1.5857,1.5859-1.5857,1.5859Z" }), /* @__PURE__ */ jsx("path", { d: "M20,20v-2h-4v-7h10v2h2V6c0-1.6543-1.3457-3-3-3H5c-1.6543,0-3,1.3457-3,3V26c0,1.6543,1.3457,3,3,3h11v-9h4Zm-6-2H4v-7H14v7ZM5,5H25c.5515,0,1,.4482,1,1v3H4v-3c0-.5518,.4485-1,1-1ZM14,27H5c-.5515,0-1-.4482-1-1v-6H14v7Z" }), children);
1232
1294
  });
1233
1295
  CicsSitOverrides.propTypes = iconPropTypes;
1234
- const CicsSystemGroup = React.forwardRef(function CicsSystemGroup({ children, size = 16, ...rest }, ref) {
1296
+ const CicsSystemGroup = /* @__PURE__ */ React.forwardRef(function CicsSystemGroup({ children, size = 16, ...rest }, ref) {
1235
1297
  return React.createElement(Icon, {
1236
1298
  width: size,
1237
1299
  height: size,
@@ -1243,7 +1305,7 @@ const CicsSystemGroup = React.forwardRef(function CicsSystemGroup({ children, si
1243
1305
  }, /* @__PURE__ */ jsx("path", { d: "M28,2H23V4h5V28H23v2h5a2.0059,2.0059,0,0,0,2-2V4A2.0059,2.0059,0,0,0,28,2Z" }), /* @__PURE__ */ jsx("path", { d: "M14,17H8a.9448.9448,0,0,0-1,1v6a.9448.9448,0,0,0,1,1h6a.9448.9448,0,0,0,1-1V18A.9448.9448,0,0,0,14,17Zm-1,6H9V19h4Z" }), /* @__PURE__ */ jsx("path", { d: "M25,24V18a.9448.9448,0,0,0-1-1H18a.9448.9448,0,0,0-1,1v6a.9448.9448,0,0,0,1,1h6A1.0021,1.0021,0,0,0,25,24Zm-2-1H19V19h4Z" }), /* @__PURE__ */ jsx("path", { d: "M14,7H8A.9448.9448,0,0,0,7,8v6a.9448.9448,0,0,0,1,1h6a.9448.9448,0,0,0,1-1V8A.9448.9448,0,0,0,14,7Zm-1,6H9V9h4Z" }), /* @__PURE__ */ jsx("path", { d: "M18,15h6a.9448.9448,0,0,0,1-1V8a.9448.9448,0,0,0-1-1H18a.9448.9448,0,0,0-1,1v6A1.0021,1.0021,0,0,0,18,15Zm1-6h4v4H19Z" }), /* @__PURE__ */ jsx("path", { d: "M4,4H9V2H4A2.0059,2.0059,0,0,0,2,4V28a2.0059,2.0059,0,0,0,2,2H9V28H4Z" }), children);
1244
1306
  });
1245
1307
  CicsSystemGroup.propTypes = iconPropTypes;
1246
- const CicsTransactionServerZos = React.forwardRef(function CicsTransactionServerZos({ children, size = 16, ...rest }, ref) {
1308
+ const CicsTransactionServerZos = /* @__PURE__ */ React.forwardRef(function CicsTransactionServerZos({ children, size = 16, ...rest }, ref) {
1247
1309
  return React.createElement(Icon, {
1248
1310
  width: size,
1249
1311
  height: size,
@@ -1263,7 +1325,7 @@ const CicsTransactionServerZos = React.forwardRef(function CicsTransactionServer
1263
1325
  }), /* @__PURE__ */ jsx("path", { d: "M5,18H3v-4C3,7.9346,7.9346,3,14,3h7v2h-7c-4.9626,0-9,4.0374-9,9v4Z" }), children);
1264
1326
  });
1265
1327
  CicsTransactionServerZos.propTypes = iconPropTypes;
1266
- const CicsWuiRegion = React.forwardRef(function CicsWuiRegion({ children, size = 16, ...rest }, ref) {
1328
+ const CicsWuiRegion = /* @__PURE__ */ React.forwardRef(function CicsWuiRegion({ children, size = 16, ...rest }, ref) {
1267
1329
  return React.createElement(Icon, {
1268
1330
  width: size,
1269
1331
  height: size,
@@ -1275,7 +1337,7 @@ const CicsWuiRegion = React.forwardRef(function CicsWuiRegion({ children, size =
1275
1337
  }, /* @__PURE__ */ jsx("path", { d: "M22 22 24 22 24 28 22 28 22 30 28 30 28 28 26 28 26 22 28 22 28 20 22 20 22 22z" }), /* @__PURE__ */ jsx("path", { d: "M18,28H16V20H14v8.6A1.4529,1.4529,0,0,0,15.5,30h3A1.4529,1.4529,0,0,0,20,28.6V20H18Z" }), /* @__PURE__ */ jsx("path", { d: "M10.2 20 10 28.5 9 22 7 22 6 28.5 5.8 20 4 20 4.72 30 7 30 8 23.5 9 30 11.28 30 12 20 10.2 20z" }), /* @__PURE__ */ jsx("path", { d: "M16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16 13 13 16 13 16 11z" }), /* @__PURE__ */ jsx("path", { d: "M26,4H6A2.0059,2.0059,0,0,0,4,6V18H6V6H26V18h2V6A2.0059,2.0059,0,0,0,26,4Z" }), children);
1276
1338
  });
1277
1339
  CicsWuiRegion.propTypes = iconPropTypes;
1278
- const CicsRegion = React.forwardRef(function CicsRegion({ children, size = 16, ...rest }, ref) {
1340
+ const CicsRegion = /* @__PURE__ */ React.forwardRef(function CicsRegion({ children, size = 16, ...rest }, ref) {
1279
1341
  return React.createElement(Icon, {
1280
1342
  width: size,
1281
1343
  height: size,
@@ -1287,7 +1349,7 @@ const CicsRegion = React.forwardRef(function CicsRegion({ children, size = 16, .
1287
1349
  }, /* @__PURE__ */ jsx("path", { d: "M23.5 18 21 18.7 21 16 19 16 19 18.7 16.5 18 16 19.9 18.4 20.6 17 23 18.7 24 20 21.8 21.3 24 23 23 21.6 20.6 24 19.9 23.5 18z" }), /* @__PURE__ */ jsx("path", { d: "M16 13 16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16 13 13 16 13z" }), /* @__PURE__ */ jsx("path", { d: "M26,4H6A2.0059,2.0059,0,0,0,4,6V26a2.0059,2.0059,0,0,0,2,2H26a2.0059,2.0059,0,0,0,2-2V6A2.0059,2.0059,0,0,0,26,4ZM6,26V6H26V26Z" }), children);
1288
1350
  });
1289
1351
  CicsRegion.propTypes = iconPropTypes;
1290
- const CicsRegionAlt = React.forwardRef(function CicsRegionAlt({ children, size = 16, ...rest }, ref) {
1352
+ const CicsRegionAlt = /* @__PURE__ */ React.forwardRef(function CicsRegionAlt({ children, size = 16, ...rest }, ref) {
1291
1353
  return React.createElement(Icon, {
1292
1354
  width: size,
1293
1355
  height: size,
@@ -1299,7 +1361,7 @@ const CicsRegionAlt = React.forwardRef(function CicsRegionAlt({ children, size =
1299
1361
  }, /* @__PURE__ */ jsx("path", { d: "M31,13v-2h-4c-1.1028,0-2,.8975-2,2v2c0,1.1025,.8972,2,2,2h2v2h-4v2h4c1.1028,0,2-.8975,2-2v-2c0-1.1025-.8972-2-2-2h-2v-2h4Z" }), /* @__PURE__ */ jsx("path", { d: "M17,13v6c0,1.1025,.8972,2,2,2h4v-2h-4v-6h4v-2h-4c-1.1028,0-2,.8975-2,2Z" }), /* @__PURE__ */ jsx("path", { d: "M9 13 11 13 11 19 9 19 9 21 15 21 15 19 13 19 13 13 15 13 15 11 9 11 9 13z" }), /* @__PURE__ */ jsx("path", { d: "M1,13v6c0,1.1025,.8972,2,2,2H7v-2H3v-6H7v-2H3c-1.1028,0-2,.8975-2,2Z" }), children);
1300
1362
  });
1301
1363
  CicsRegionAlt.propTypes = iconPropTypes;
1302
- const CicsRegionRouting = React.forwardRef(function CicsRegionRouting({ children, size = 16, ...rest }, ref) {
1364
+ const CicsRegionRouting = /* @__PURE__ */ React.forwardRef(function CicsRegionRouting({ children, size = 16, ...rest }, ref) {
1303
1365
  return React.createElement(Icon, {
1304
1366
  width: size,
1305
1367
  height: size,
@@ -1311,7 +1373,7 @@ const CicsRegionRouting = React.forwardRef(function CicsRegionRouting({ children
1311
1373
  }, /* @__PURE__ */ jsx("path", { d: "M22 2 22 4 26.6 4 20 10.6 21.4 12 28 5.4 28 10 30 10 30 2 22 2z" }), /* @__PURE__ */ jsx("path", { d: "M19 16 19 18.7 16.5 18 16 19.9 18.4 20.6 17 23 18.7 24 20 21.8 21.3 24 23 23 21.6 20.6 24 19.9 23.5 18 21 18.7 21 16 19 16z" }), /* @__PURE__ */ jsx("path", { d: "M13 16 13 13 16 13 16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16z" }), /* @__PURE__ */ jsx("path", { d: "M26,26H6V6H19V4H6A2.0059,2.0059,0,0,0,4,6V26a2.0059,2.0059,0,0,0,2,2H26a2.0059,2.0059,0,0,0,2-2V13H26Z" }), children);
1312
1374
  });
1313
1375
  CicsRegionRouting.propTypes = iconPropTypes;
1314
- const CicsRegionTarget = React.forwardRef(function CicsRegionTarget({ children, size = 16, ...rest }, ref) {
1376
+ const CicsRegionTarget = /* @__PURE__ */ React.forwardRef(function CicsRegionTarget({ children, size = 16, ...rest }, ref) {
1315
1377
  return React.createElement(Icon, {
1316
1378
  width: size,
1317
1379
  height: size,
@@ -1323,7 +1385,7 @@ const CicsRegionTarget = React.forwardRef(function CicsRegionTarget({ children,
1323
1385
  }, /* @__PURE__ */ jsx("path", { d: "M26 7H28V10H26z" }), /* @__PURE__ */ jsx("path", { d: "M29 4H32V6H29z" }), /* @__PURE__ */ jsx("path", { d: "M26 0H28V3H26z" }), /* @__PURE__ */ jsx("path", { d: "M22 4H25V6H22z" }), /* @__PURE__ */ jsx("path", { d: "M19 16 19 18.7 16.5 18 16 19.9 18.4 20.6 17 23 18.7 24 20 21.8 21.3 24 23 23 21.6 20.6 24 19.9 23.5 18 21 18.7 21 16 19 16z" }), /* @__PURE__ */ jsx("path", { d: "M13 16 13 13 16 13 16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16z" }), /* @__PURE__ */ jsx("path", { d: "M26,26H6V6H19V4H6A2.0059,2.0059,0,0,0,4,6V26a2.0059,2.0059,0,0,0,2,2H26a2.0059,2.0059,0,0,0,2-2V13H26Z" }), children);
1324
1386
  });
1325
1387
  CicsRegionTarget.propTypes = iconPropTypes;
1326
- const Cicsplex = React.forwardRef(function Cicsplex({ children, size = 16, ...rest }, ref) {
1388
+ const Cicsplex = /* @__PURE__ */ React.forwardRef(function Cicsplex({ children, size = 16, ...rest }, ref) {
1327
1389
  return React.createElement(Icon, {
1328
1390
  width: size,
1329
1391
  height: size,
@@ -1335,7 +1397,7 @@ const Cicsplex = React.forwardRef(function Cicsplex({ children, size = 16, ...re
1335
1397
  }, /* @__PURE__ */ jsx("path", { d: "M8,18.6V17H6v1.6A7.3833,7.3833,0,0,0,13.4,26H15V24H13.4A5.3775,5.3775,0,0,1,8,18.6Z" }), /* @__PURE__ */ jsx("path", { d: "M28,18H20a2.0059,2.0059,0,0,0-2,2v8a2.0059,2.0059,0,0,0,2,2h8a2.0059,2.0059,0,0,0,2-2V20A2.0059,2.0059,0,0,0,28,18ZM20,28V20h8v8Z" }), /* @__PURE__ */ jsx("path", { d: "M24,13.4V15h2V13.4A7.3833,7.3833,0,0,0,18.6,6H17V8h1.6A5.3775,5.3775,0,0,1,24,13.4Z" }), /* @__PURE__ */ jsx("path", { d: "M12,2H4A2.0059,2.0059,0,0,0,2,4v8a2.0059,2.0059,0,0,0,2,2h8a2.0059,2.0059,0,0,0,2-2V4A2.0059,2.0059,0,0,0,12,2ZM4,12V4h8v8Z" }), children);
1336
1398
  });
1337
1399
  Cicsplex.propTypes = iconPropTypes;
1338
- const CircleFilled = React.forwardRef(function CircleFilled({ children, size = 16, ...rest }, ref) {
1400
+ const CircleFilled = /* @__PURE__ */ React.forwardRef(function CircleFilled({ children, size = 16, ...rest }, ref) {
1339
1401
  return React.createElement(Icon, {
1340
1402
  width: size,
1341
1403
  height: size,
@@ -1351,7 +1413,7 @@ const CircleFilled = React.forwardRef(function CircleFilled({ children, size = 1
1351
1413
  }), /* @__PURE__ */ jsx("path", { d: "M16,30A14,14,0,1,1,30,16,14.0158,14.0158,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12.0137,12.0137,0,0,0,16,4Z" }), children);
1352
1414
  });
1353
1415
  CircleFilled.propTypes = iconPropTypes;
1354
- const CircleOutline = React.forwardRef(function CircleOutline({ children, size = 16, ...rest }, ref) {
1416
+ const CircleOutline = /* @__PURE__ */ React.forwardRef(function CircleOutline({ children, size = 16, ...rest }, ref) {
1355
1417
  return React.createElement(Icon, {
1356
1418
  width: size,
1357
1419
  height: size,
@@ -1366,7 +1428,7 @@ const CircleOutline = React.forwardRef(function CircleOutline({ children, size =
1366
1428
  }), children);
1367
1429
  });
1368
1430
  CircleOutline.propTypes = iconPropTypes;
1369
- const CircleSolid = React.forwardRef(function CircleSolid({ children, size = 16, ...rest }, ref) {
1431
+ const CircleSolid = /* @__PURE__ */ React.forwardRef(function CircleSolid({ children, size = 16, ...rest }, ref) {
1370
1432
  return React.createElement(Icon, {
1371
1433
  width: size,
1372
1434
  height: size,
@@ -1382,7 +1444,7 @@ const CircleSolid = React.forwardRef(function CircleSolid({ children, size = 16,
1382
1444
  }), children);
1383
1445
  });
1384
1446
  CircleSolid.propTypes = iconPropTypes;
1385
- const CircleDash = React.forwardRef(function CircleDash({ children, size = 16, ...rest }, ref) {
1447
+ const CircleDash = /* @__PURE__ */ React.forwardRef(function CircleDash({ children, size = 16, ...rest }, ref) {
1386
1448
  return React.createElement(Icon, {
1387
1449
  width: size,
1388
1450
  height: size,
@@ -1394,7 +1456,7 @@ const CircleDash = React.forwardRef(function CircleDash({ children, size = 16, .
1394
1456
  }, /* @__PURE__ */ jsx("path", { d: "M7.7,4.7a14.7,14.7,0,0,0-3,3.1L6.3,9A13.26,13.26,0,0,1,8.9,6.3Z" }), /* @__PURE__ */ jsx("path", { d: "M4.6,12.3l-1.9-.6A12.51,12.51,0,0,0,2,16H4A11.48,11.48,0,0,1,4.6,12.3Z" }), /* @__PURE__ */ jsx("path", { d: "M2.7,20.4a14.4,14.4,0,0,0,2,3.9l1.6-1.2a12.89,12.89,0,0,1-1.7-3.3Z" }), /* @__PURE__ */ jsx("path", { d: "M7.8,27.3a14.4,14.4,0,0,0,3.9,2l.6-1.9A12.89,12.89,0,0,1,9,25.7Z" }), /* @__PURE__ */ jsx("path", { d: "M11.7,2.7l.6,1.9A11.48,11.48,0,0,1,16,4V2A12.51,12.51,0,0,0,11.7,2.7Z" }), /* @__PURE__ */ jsx("path", { d: "M24.2,27.3a15.18,15.18,0,0,0,3.1-3.1L25.7,23A11.53,11.53,0,0,1,23,25.7Z" }), /* @__PURE__ */ jsx("path", { d: "M27.4,19.7l1.9.6A15.47,15.47,0,0,0,30,16H28A11.48,11.48,0,0,1,27.4,19.7Z" }), /* @__PURE__ */ jsx("path", { d: "M29.2,11.6a14.4,14.4,0,0,0-2-3.9L25.6,8.9a12.89,12.89,0,0,1,1.7,3.3Z" }), /* @__PURE__ */ jsx("path", { d: "M24.1,4.6a14.4,14.4,0,0,0-3.9-2l-.6,1.9a12.89,12.89,0,0,1,3.3,1.7Z" }), /* @__PURE__ */ jsx("path", { d: "M20.3,29.3l-.6-1.9A11.48,11.48,0,0,1,16,28v2A21.42,21.42,0,0,0,20.3,29.3Z" }), children);
1395
1457
  });
1396
1458
  CircleDash.propTypes = iconPropTypes;
1397
- const CircleFill = React.forwardRef(function CircleFill({ children, size = 16, ...rest }, ref) {
1459
+ const CircleFill = /* @__PURE__ */ React.forwardRef(function CircleFill({ children, size = 16, ...rest }, ref) {
1398
1460
  if (size === "glyph" || size === "glyph" || size === "glyphpx") return React.createElement(Icon, {
1399
1461
  width: size,
1400
1462
  height: size,
@@ -1423,7 +1485,7 @@ const CircleFill = React.forwardRef(function CircleFill({ children, size = 16, .
1423
1485
  }), children);
1424
1486
  });
1425
1487
  CircleFill.propTypes = iconPropTypes;
1426
- const WatsonHealthCircleMeasurement = React.forwardRef(function WatsonHealthCircleMeasurement({ children, size = 16, ...rest }, ref) {
1488
+ const WatsonHealthCircleMeasurement = /* @__PURE__ */ React.forwardRef(function WatsonHealthCircleMeasurement({ children, size = 16, ...rest }, ref) {
1427
1489
  return React.createElement(Icon, {
1428
1490
  width: size,
1429
1491
  height: size,
@@ -1435,7 +1497,7 @@ const WatsonHealthCircleMeasurement = React.forwardRef(function WatsonHealthCirc
1435
1497
  }, /* @__PURE__ */ jsx("path", { d: "M16,30A14,14,0,1,1,30,16,14,14,0,0,1,16,30ZM16,4A12,12,0,1,0,28,16,12,12,0,0,0,16,4Z" }), /* @__PURE__ */ jsx("path", { d: "M21,12.41V16h2V9H16v2h3.59L11,19.59V16H9v7h7V21H12.41Z" }), children);
1436
1498
  });
1437
1499
  WatsonHealthCircleMeasurement.propTypes = iconPropTypes;
1438
- const CirclePacking = React.forwardRef(function CirclePacking({ children, size = 16, ...rest }, ref) {
1500
+ const CirclePacking = /* @__PURE__ */ React.forwardRef(function CirclePacking({ children, size = 16, ...rest }, ref) {
1439
1501
  return React.createElement(Icon, {
1440
1502
  width: size,
1441
1503
  height: size,
@@ -1447,7 +1509,7 @@ const CirclePacking = React.forwardRef(function CirclePacking({ children, size =
1447
1509
  }, /* @__PURE__ */ jsx("path", { d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm7.5,7A3.5,3.5,0,1,1,20,12.5,3.5041,3.5041,0,0,1,23.5,9Zm.4348-1.978C23.791,7.0107,23.6467,7,23.5,7a5.4826,5.4826,0,0,0-4.1323,1.8784,8.0109,8.0109,0,0,0-5.5664-4.6675A11.8554,11.8554,0,0,1,23.9348,7.022ZM16,28a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,28ZM12,18a6,6,0,1,1,6-6A6.0067,6.0067,0,0,1,12,18ZM4,16a11.97,11.97,0,0,1,.2112-2.1987,7.9921,7.9921,0,0,0,7.3459,6.1762,5.9581,5.9581,0,0,0-.89,6.7564A12.0025,12.0025,0,0,1,4,16ZM21.3325,26.7339a5.9834,5.9834,0,0,0-4.1782-8.6206,8.02,8.02,0,0,0,1.9126-2.3672,5.4883,5.4883,0,0,0,8.9167-.0679c.003.1079.0164.2134.0164.3218A12.0025,12.0025,0,0,1,21.3325,26.7339Z" }), children);
1448
1510
  });
1449
1511
  CirclePacking.propTypes = iconPropTypes;
1450
- const CircleStroke = React.forwardRef(function CircleStroke({ children, size = 16, ...rest }, ref) {
1512
+ const CircleStroke = /* @__PURE__ */ React.forwardRef(function CircleStroke({ children, size = 16, ...rest }, ref) {
1451
1513
  if (size === "glyph" || size === "glyph" || size === "glyphpx") return React.createElement(Icon, {
1452
1514
  width: size,
1453
1515
  height: size,
@@ -1468,7 +1530,7 @@ const CircleStroke = React.forwardRef(function CircleStroke({ children, size = 1
1468
1530
  }, /* @__PURE__ */ jsx("path", { d: "M8,4A4,4,0,1,1,4,8,4.0045,4.0045,0,0,1,8,4M8,2a6,6,0,1,0,6,6A6,6,0,0,0,8,2Z" }), children);
1469
1531
  });
1470
1532
  CircleStroke.propTypes = iconPropTypes;
1471
- const QCircuitComposer = React.forwardRef(function QCircuitComposer({ children, size = 16, ...rest }, ref) {
1533
+ const QCircuitComposer = /* @__PURE__ */ React.forwardRef(function QCircuitComposer({ children, size = 16, ...rest }, ref) {
1472
1534
  return React.createElement(Icon, {
1473
1535
  width: size,
1474
1536
  height: size,
@@ -1480,7 +1542,7 @@ const QCircuitComposer = React.forwardRef(function QCircuitComposer({ children,
1480
1542
  }, /* @__PURE__ */ jsx("path", { d: "M18 9 18 15 14 15 14 9 12 9 12 23 14 23 14 17 18 17 18 23 20 23 20 9 18 9z" }), /* @__PURE__ */ jsx("path", { d: "M30,15H26V6a2,2,0,0,0-2-2H8A2,2,0,0,0,6,6v9H2v2H6v9a2,2,0,0,0,2,2H24a2,2,0,0,0,2-2V17h4ZM8,26V6H24V26Z" }), children);
1481
1543
  });
1482
1544
  QCircuitComposer.propTypes = iconPropTypes;
1483
- const ClassicBatch = React.forwardRef(function ClassicBatch({ children, size = 16, ...rest }, ref) {
1545
+ const ClassicBatch = /* @__PURE__ */ React.forwardRef(function ClassicBatch({ children, size = 16, ...rest }, ref) {
1484
1546
  return React.createElement(Icon, {
1485
1547
  width: size,
1486
1548
  height: size,
@@ -1492,7 +1554,7 @@ const ClassicBatch = React.forwardRef(function ClassicBatch({ children, size = 1
1492
1554
  }, /* @__PURE__ */ jsx("path", { d: "M30,4v16c0,1.1-.9,2-2,2H12c-1.1,0-2-.9-2-2V4c0-1.1.9-2,2-2h16c1.1,0,2,.9,2,2ZM28,20V4H12v16h16ZM8,6h-2v18c0,1.1.9,2,2,2h18v-2H8V6ZM4,10h-2v18c0,1.1.9,2,2,2h18v-2H4V10Z" }), children);
1493
1555
  });
1494
1556
  ClassicBatch.propTypes = iconPropTypes;
1495
- const Classification = React.forwardRef(function Classification({ children, size = 16, ...rest }, ref) {
1557
+ const Classification = /* @__PURE__ */ React.forwardRef(function Classification({ children, size = 16, ...rest }, ref) {
1496
1558
  return React.createElement(Icon, {
1497
1559
  width: size,
1498
1560
  height: size,
@@ -1508,7 +1570,7 @@ const Classification = React.forwardRef(function Classification({ children, size
1508
1570
  }), /* @__PURE__ */ jsx("path", { d: "M27.7,9.3l-7-7A.9087.9087,0,0,0,20,2H10A2.0058,2.0058,0,0,0,8,4V14H6a2.0023,2.0023,0,0,0-2,2v6a2.0023,2.0023,0,0,0,2,2H8v4a2.0058,2.0058,0,0,0,2,2H26a2.0058,2.0058,0,0,0,2-2V10A.9092.9092,0,0,0,27.7,9.3ZM20,4.4,25.6,10H20ZM6,16h9.5972L19,19l-3.3926,3H6ZM26,28H10V24h5.6089a2.0076,2.0076,0,0,0,1.3135-.4927l3.3833-2.9917a2.0015,2.0015,0,0,0,.01-3.0229l-3.4033-3.0083A1.9961,1.9961,0,0,0,15.6089,14H10V4h8v6a2.0058,2.0058,0,0,0,2,2h6Z" }), children);
1509
1571
  });
1510
1572
  Classification.propTypes = iconPropTypes;
1511
- const ClassifierLanguage = React.forwardRef(function ClassifierLanguage({ children, size = 16, ...rest }, ref) {
1573
+ const ClassifierLanguage = /* @__PURE__ */ React.forwardRef(function ClassifierLanguage({ children, size = 16, ...rest }, ref) {
1512
1574
  return React.createElement(Icon, {
1513
1575
  width: size,
1514
1576
  height: size,
@@ -1520,7 +1582,7 @@ const ClassifierLanguage = React.forwardRef(function ClassifierLanguage({ childr
1520
1582
  }, /* @__PURE__ */ jsx("path", { d: "M30,10V2H22v8h3v4H23v2h7V14H27V10ZM24,4h4V8H24Z" }), /* @__PURE__ */ jsx("path", { d: "M20 23.41 18.59 22 16 24.59 13.41 22 12 23.41 14.59 26 12 28.59 13.41 30 16 27.41 18.59 30 20 28.59 17.41 26 20 23.41z" }), /* @__PURE__ */ jsx("path", { d: "M20 14 12 14 12 16 15 16 15 21 17 21 17 16 20 16 20 14z" }), /* @__PURE__ */ jsx("path", { d: "M7,9.86a4,4,0,1,0-2,0V14H2v2H9V14H7ZM4,6A2,2,0,1,1,6,8,2,2,0,0,1,4,6Z" }), children);
1521
1583
  });
1522
1584
  ClassifierLanguage.propTypes = iconPropTypes;
1523
- const Clean = React.forwardRef(function Clean({ children, size = 16, ...rest }, ref) {
1585
+ const Clean = /* @__PURE__ */ React.forwardRef(function Clean({ children, size = 16, ...rest }, ref) {
1524
1586
  return React.createElement(Icon, {
1525
1587
  width: size,
1526
1588
  height: size,
@@ -1541,7 +1603,7 @@ const Clean = React.forwardRef(function Clean({ children, size = 16, ...rest },
1541
1603
  }), /* @__PURE__ */ jsx("path", { d: "M17.0029,20a4.8952,4.8952,0,0,0-2.4044-4.1729L22,3,20.2691,2,12.6933,15.126A5.6988,5.6988,0,0,0,7.45,16.6289C3.7064,20.24,3.9963,28.6821,4.01,29.04a1,1,0,0,0,1,.96H20.0012a1,1,0,0,0,.6-1.8C17.0615,25.5439,17.0029,20.0537,17.0029,20ZM11.93,16.9971A3.11,3.11,0,0,1,15.0041,20c0,.0381.0019.208.0168.4688L9.1215,17.8452A3.8,3.8,0,0,1,11.93,16.9971ZM15.4494,28A5.2,5.2,0,0,1,14,25H12a6.4993,6.4993,0,0,0,.9684,3H10.7451A16.6166,16.6166,0,0,1,10,24H8a17.3424,17.3424,0,0,0,.6652,4H6c.031-1.8364.29-5.8921,1.8027-8.5527l7.533,3.35A13.0253,13.0253,0,0,0,17.5968,28Z" }), children);
1542
1604
  });
1543
1605
  Clean.propTypes = iconPropTypes;
1544
- const Close = React.forwardRef(function Close({ children, size = 16, ...rest }, ref) {
1606
+ const Close = /* @__PURE__ */ React.forwardRef(function Close({ children, size = 16, ...rest }, ref) {
1545
1607
  return React.createElement(Icon, {
1546
1608
  width: size,
1547
1609
  height: size,
@@ -1553,7 +1615,7 @@ const Close = React.forwardRef(function Close({ children, size = 16, ...rest },
1553
1615
  }, /* @__PURE__ */ jsx("path", { d: "M17.4141 16 24 9.4141 22.5859 8 16 14.5859 9.4143 8 8 9.4141 14.5859 16 8 22.5859 9.4143 24 16 17.4141 22.5859 24 24 22.5859 17.4141 16z" }), children);
1554
1616
  });
1555
1617
  Close.propTypes = iconPropTypes;
1556
- const CloseFilled = React.forwardRef(function CloseFilled({ children, size = 16, ...rest }, ref) {
1618
+ const CloseFilled = /* @__PURE__ */ React.forwardRef(function CloseFilled({ children, size = 16, ...rest }, ref) {
1557
1619
  if (size === 16 || size === "16" || size === "16px") return React.createElement(Icon, {
1558
1620
  width: size,
1559
1621
  height: size,
@@ -1578,7 +1640,7 @@ const CloseFilled = React.forwardRef(function CloseFilled({ children, size = 16,
1578
1640
  }), children);
1579
1641
  });
1580
1642
  CloseFilled.propTypes = iconPropTypes;
1581
- const CloseLarge = React.forwardRef(function CloseLarge({ children, size = 16, ...rest }, ref) {
1643
+ const CloseLarge = /* @__PURE__ */ React.forwardRef(function CloseLarge({ children, size = 16, ...rest }, ref) {
1582
1644
  return React.createElement(Icon, {
1583
1645
  width: size,
1584
1646
  height: size,
@@ -1590,7 +1652,7 @@ const CloseLarge = React.forwardRef(function CloseLarge({ children, size = 16, .
1590
1652
  }, /* @__PURE__ */ jsx("path", { d: "M17.4141 16 26 7.4141 24.5859 6 16 14.5859 7.4143 6 6 7.4141 14.5859 16 6 24.5859 7.4143 26 16 17.4141 24.5859 26 26 24.5859 17.4141 16z" }), children);
1591
1653
  });
1592
1654
  CloseLarge.propTypes = iconPropTypes;
1593
- const CloseOutline = React.forwardRef(function CloseOutline({ children, size = 16, ...rest }, ref) {
1655
+ const CloseOutline = /* @__PURE__ */ React.forwardRef(function CloseOutline({ children, size = 16, ...rest }, ref) {
1594
1656
  return React.createElement(Icon, {
1595
1657
  width: size,
1596
1658
  height: size,
@@ -1602,7 +1664,7 @@ const CloseOutline = React.forwardRef(function CloseOutline({ children, size = 1
1602
1664
  }, /* @__PURE__ */ jsx("path", { d: "M16,2C8.2,2,2,8.2,2,16s6.2,14,14,14s14-6.2,14-14S23.8,2,16,2z M16,28C9.4,28,4,22.6,4,16S9.4,4,16,4s12,5.4,12,12 S22.6,28,16,28z" }), /* @__PURE__ */ jsx("path", { d: "M21.4 23 16 17.6 10.6 23 9 21.4 14.4 16 9 10.6 10.6 9 16 14.4 21.4 9 23 10.6 17.6 16 23 21.4z" }), children);
1603
1665
  });
1604
1666
  CloseOutline.propTypes = iconPropTypes;
1605
- const ClosedCaption = React.forwardRef(function ClosedCaption({ children, size = 16, ...rest }, ref) {
1667
+ const ClosedCaption = /* @__PURE__ */ React.forwardRef(function ClosedCaption({ children, size = 16, ...rest }, ref) {
1606
1668
  return React.createElement(Icon, {
1607
1669
  width: size,
1608
1670
  height: size,
@@ -1614,7 +1676,7 @@ const ClosedCaption = React.forwardRef(function ClosedCaption({ children, size =
1614
1676
  }, /* @__PURE__ */ jsx("path", { d: "M15,21H10a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5v2H10v6h5Z" }), /* @__PURE__ */ jsx("path", { d: "M25,21H20a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5v2H20v6h5Z" }), /* @__PURE__ */ jsx("path", { d: "M28,26H4a2,2,0,0,1-2-2V8A2,2,0,0,1,4,6H28a2,2,0,0,1,2,2V24A2,2,0,0,1,28,26ZM4,8V24H28V8Z" }), children);
1615
1677
  });
1616
1678
  ClosedCaption.propTypes = iconPropTypes;
1617
- const ClosedCaptionAlt = React.forwardRef(function ClosedCaptionAlt({ children, size = 16, ...rest }, ref) {
1679
+ const ClosedCaptionAlt = /* @__PURE__ */ React.forwardRef(function ClosedCaptionAlt({ children, size = 16, ...rest }, ref) {
1618
1680
  return React.createElement(Icon, {
1619
1681
  width: size,
1620
1682
  height: size,
@@ -1626,7 +1688,7 @@ const ClosedCaptionAlt = React.forwardRef(function ClosedCaptionAlt({ children,
1626
1688
  }, /* @__PURE__ */ jsx("path", { d: "M19 17H25V19H19z" }), /* @__PURE__ */ jsx("path", { d: "M11 17H17V19H11z" }), /* @__PURE__ */ jsx("path", { d: "M6 17H9V19H6z" }), /* @__PURE__ */ jsx("path", { d: "M22 13H26V15H22z" }), /* @__PURE__ */ jsx("path", { d: "M13 13H20V15H13z" }), /* @__PURE__ */ jsx("path", { d: "M6 13H11V15H6z" }), /* @__PURE__ */ jsx("path", { d: "M17.7358,30,16,29l4-7h6a1.9966,1.9966,0,0,0,2-2V8a1.9966,1.9966,0,0,0-2-2H6A1.9966,1.9966,0,0,0,4,8V20a1.9966,1.9966,0,0,0,2,2h9v2H6a3.9993,3.9993,0,0,1-4-4V8A3.9988,3.9988,0,0,1,6,4H26a3.9988,3.9988,0,0,1,4,4V20a3.9993,3.9993,0,0,1-4,4H21.1646Z" }), children);
1627
1689
  });
1628
1690
  ClosedCaptionAlt.propTypes = iconPropTypes;
1629
- const ClosedCaptionFilled = React.forwardRef(function ClosedCaptionFilled({ children, size = 16, ...rest }, ref) {
1691
+ const ClosedCaptionFilled = /* @__PURE__ */ React.forwardRef(function ClosedCaptionFilled({ children, size = 16, ...rest }, ref) {
1630
1692
  return React.createElement(Icon, {
1631
1693
  width: size,
1632
1694
  height: size,
@@ -1638,7 +1700,7 @@ const ClosedCaptionFilled = React.forwardRef(function ClosedCaptionFilled({ chil
1638
1700
  }, /* @__PURE__ */ jsx("path", { d: "M28,6H4A2,2,0,0,0,2,8V24a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM15,13H10v6h5v2H10a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5Zm10,0H20v6h5v2H20a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5Z" }), children);
1639
1701
  });
1640
1702
  ClosedCaptionFilled.propTypes = iconPropTypes;
1641
- const Cloud = React.forwardRef(function Cloud({ children, size = 16, ...rest }, ref) {
1703
+ const Cloud = /* @__PURE__ */ React.forwardRef(function Cloud({ children, size = 16, ...rest }, ref) {
1642
1704
  return React.createElement(Icon, {
1643
1705
  width: size,
1644
1706
  height: size,
@@ -1650,7 +1712,7 @@ const Cloud = React.forwardRef(function Cloud({ children, size = 16, ...rest },
1650
1712
  }, /* @__PURE__ */ jsx("path", { d: "M16,7h0a7.66,7.66,0,0,1,1.51.15,8,8,0,0,1,6.35,6.34l.26,1.35,1.35.24a5.5,5.5,0,0,1-1,10.92H7.5a5.5,5.5,0,0,1-1-10.92l1.34-.24.26-1.35A8,8,0,0,1,16,7m0-2a10,10,0,0,0-9.83,8.12A7.5,7.5,0,0,0,7.49,28h17a7.5,7.5,0,0,0,1.32-14.88,10,10,0,0,0-7.94-7.94A10.27,10.27,0,0,0,16,5Z" }), children);
1651
1713
  });
1652
1714
  Cloud.propTypes = iconPropTypes;
1653
- const CloudAlerting = React.forwardRef(function CloudAlerting({ children, size = 16, ...rest }, ref) {
1715
+ const CloudAlerting = /* @__PURE__ */ React.forwardRef(function CloudAlerting({ children, size = 16, ...rest }, ref) {
1654
1716
  return React.createElement(Icon, {
1655
1717
  width: size,
1656
1718
  height: size,
@@ -1662,7 +1724,7 @@ const CloudAlerting = React.forwardRef(function CloudAlerting({ children, size =
1662
1724
  }, /* @__PURE__ */ jsx("path", { d: "M28,17v5H4V6H15V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V17ZM18,28H14V24h4Z" }), /* @__PURE__ */ jsx("path", { d: "M29,14H17a1,1,0,0,1-.8574-1.5144l6-10a1,1,0,0,1,1.7154,0l6,10A1,1,0,0,1,29,14ZM18.7661,12h8.4678L23,4.9436Z" }), children);
1663
1725
  });
1664
1726
  CloudAlerting.propTypes = iconPropTypes;
1665
- const CloudAuditing = React.forwardRef(function CloudAuditing({ children, size = 16, ...rest }, ref) {
1727
+ const CloudAuditing = /* @__PURE__ */ React.forwardRef(function CloudAuditing({ children, size = 16, ...rest }, ref) {
1666
1728
  return React.createElement(Icon, {
1667
1729
  width: size,
1668
1730
  height: size,
@@ -1674,7 +1736,7 @@ const CloudAuditing = React.forwardRef(function CloudAuditing({ children, size =
1674
1736
  }, /* @__PURE__ */ jsx("path", { d: "M28,16v6H4V6H16V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z" }), /* @__PURE__ */ jsx("path", { d: "M21 15 16 10.04 17.59 8.47 21 11.85 28.41 4.5 30 6.08 21 15z" }), children);
1675
1737
  });
1676
1738
  CloudAuditing.propTypes = iconPropTypes;
1677
- const CloudDataOps = React.forwardRef(function CloudDataOps({ children, size = 16, ...rest }, ref) {
1739
+ const CloudDataOps = /* @__PURE__ */ React.forwardRef(function CloudDataOps({ children, size = 16, ...rest }, ref) {
1678
1740
  return React.createElement(Icon, {
1679
1741
  width: size,
1680
1742
  height: size,
@@ -1686,7 +1748,7 @@ const CloudDataOps = React.forwardRef(function CloudDataOps({ children, size = 1
1686
1748
  }, /* @__PURE__ */ jsx("path", { d: "M28 18H30V28H28z" }), /* @__PURE__ */ jsx("path", { d: "M24 14H26V28H24z" }), /* @__PURE__ */ jsx("path", { d: "M20 22H22V28H20z" }), /* @__PURE__ */ jsx("path", { d: "M22.175,10,23.76,8.7339A9.9522,9.9522,0,0,0,17.89,5.1816,10.0025,10.0025,0,0,0,6.17,13.1152,7.5054,7.5054,0,0,0,.0544,21.4087,7.6843,7.6843,0,0,0,7.7692,28H16V26H7.6945a5.632,5.632,0,0,1-5.6023-4.4858,5.5064,5.5064,0,0,1,4.4339-6.4307l1.3486-.2441.2139-1.11a8.206,8.206,0,0,1,6.7426-6.6426,7.9666,7.9666,0,0,1,3.0137.13A7.8037,7.8037,0,0,1,22.175,10Z" }), children);
1687
1749
  });
1688
1750
  CloudDataOps.propTypes = iconPropTypes;
1689
- const CloudDownload = React.forwardRef(function CloudDownload({ children, size = 16, ...rest }, ref) {
1751
+ const CloudDownload = /* @__PURE__ */ React.forwardRef(function CloudDownload({ children, size = 16, ...rest }, ref) {
1690
1752
  return React.createElement(Icon, {
1691
1753
  width: size,
1692
1754
  height: size,
@@ -1698,7 +1760,7 @@ const CloudDownload = React.forwardRef(function CloudDownload({ children, size =
1698
1760
  }, /* @__PURE__ */ jsx("path", { d: "M23.5,22H23V20h.5a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82a7,7,0,0,0-13.88,0L9,11,8.14,11a4.5,4.5,0,0,0,.36,9H9v2H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22Z" }), /* @__PURE__ */ jsx("path", { d: "M17 26.17 17 14 15 14 15 26.17 12.41 23.59 11 25 16 30 21 25 19.59 23.59 17 26.17z" }), children);
1699
1761
  });
1700
1762
  CloudDownload.propTypes = iconPropTypes;
1701
- const CloudInfraMigration = React.forwardRef(function CloudInfraMigration({ children, size = 16, ...rest }, ref) {
1763
+ const CloudInfraMigration = /* @__PURE__ */ React.forwardRef(function CloudInfraMigration({ children, size = 16, ...rest }, ref) {
1702
1764
  return React.createElement(Icon, {
1703
1765
  width: size,
1704
1766
  height: size,
@@ -1710,7 +1772,7 @@ const CloudInfraMigration = React.forwardRef(function CloudInfraMigration({ chil
1710
1772
  }, /* @__PURE__ */ jsx("path", { d: "M19.25,14c-2.34,0-4.25-1.91-4.25-4.25,0-1.79,1.14-3.38,2.78-3.99.74-2.21,2.84-3.76,5.22-3.76s4.48,1.55,5.22,3.76c1.65.61,2.78,2.19,2.78,3.99,0,2.29-1.86,4.19-4.14,4.25h-7.61ZM23,4c-1.64,0-3.08,1.17-3.42,2.77l-.14.64-.64.13c-1.04.21-1.8,1.14-1.8,2.2,0,1.24,1.01,2.26,2.25,2.26h7.58c1.18-.03,2.17-1.05,2.17-2.26,0-1.06-.76-1.99-1.8-2.2l-.64-.13-.14-.64c-.34-1.6-1.78-2.77-3.42-2.77ZM9,16H3c-1.1,0-2,.9-2,2v10c0,1.1.9,2,2,2h6c1.1,0,2-.9,2-2v-10c0-1.1-.9-2-2-2ZM9,18v2H3v-2h6ZM9,22v2H3v-2h6ZM3,28v-2h6v2H3ZM21.47,22h-4.45l2.58-2.77-1.41-1.41-5.18,5.18,5.16,5.21,1.42-1.41-2.58-2.79h4.47c1.4,0,2.53-1.13,2.53-2.53v-5.47h-2v5.47c0,.29-.23.53-.53.53h0l-.01-.01Z" }), children);
1711
1773
  });
1712
1774
  CloudInfraMigration.propTypes = iconPropTypes;
1713
- const CloudLogging = React.forwardRef(function CloudLogging({ children, size = 16, ...rest }, ref) {
1775
+ const CloudLogging = /* @__PURE__ */ React.forwardRef(function CloudLogging({ children, size = 16, ...rest }, ref) {
1714
1776
  return React.createElement(Icon, {
1715
1777
  width: size,
1716
1778
  height: size,
@@ -1722,7 +1784,7 @@ const CloudLogging = React.forwardRef(function CloudLogging({ children, size = 1
1722
1784
  }, /* @__PURE__ */ jsx("path", { d: "M28,16v6H4V6H15V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z" }), /* @__PURE__ */ jsx("path", { d: "M18 4H30V6H18z" }), /* @__PURE__ */ jsx("path", { d: "M18 8H30V10H18z" }), /* @__PURE__ */ jsx("path", { d: "M18 12H24V14H18z" }), children);
1723
1785
  });
1724
1786
  CloudLogging.propTypes = iconPropTypes;
1725
- const CloudMonitoring = React.forwardRef(function CloudMonitoring({ children, size = 16, ...rest }, ref) {
1787
+ const CloudMonitoring = /* @__PURE__ */ React.forwardRef(function CloudMonitoring({ children, size = 16, ...rest }, ref) {
1726
1788
  return React.createElement(Icon, {
1727
1789
  width: size,
1728
1790
  height: size,
@@ -1734,7 +1796,7 @@ const CloudMonitoring = React.forwardRef(function CloudMonitoring({ children, si
1734
1796
  }, /* @__PURE__ */ jsx("path", { d: "M28,16v6H4V6h7V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z" }), /* @__PURE__ */ jsx("path", { d: "M18,18h-.01a1,1,0,0,1-.9511-.7253L15.2456,11H11V9h5a1,1,0,0,1,.9615.7252l1.0742,3.7589,3.0088-9.7783A1.0142,1.0142,0,0,1,22,3a.98.98,0,0,1,.9487.6838L24.7207,9H30v2H24a1,1,0,0,1-.9487-.6838l-1.0132-3.04L18.9556,17.2942A1,1,0,0,1,18,18Z" }), children);
1735
1797
  });
1736
1798
  CloudMonitoring.propTypes = iconPropTypes;
1737
- const CloudOffline = React.forwardRef(function CloudOffline({ children, size = 16, ...rest }, ref) {
1799
+ const CloudOffline = /* @__PURE__ */ React.forwardRef(function CloudOffline({ children, size = 16, ...rest }, ref) {
1738
1800
  return React.createElement(Icon, {
1739
1801
  width: size,
1740
1802
  height: size,
@@ -1746,7 +1808,7 @@ const CloudOffline = React.forwardRef(function CloudOffline({ children, size = 1
1746
1808
  }, /* @__PURE__ */ jsx("path", { d: "M24.8008,12.1362a8.8694,8.8694,0,0,0-.9795-2.5434L30,3.4142,28.5872,2,2,28.5872,3.4142,30l5-5H23.5a6.4974,6.4974,0,0,0,1.3008-12.8638ZM23.5,23H10.4141L22.3418,11.0723a6.9049,6.9049,0,0,1,.6006,2.0708l.0986.812.8154.0639A4.4975,4.4975,0,0,1,23.5,23Z" }), /* @__PURE__ */ jsx("path", { d: "M4.2964,23.4487l1.4313-1.4311A4.4774,4.4774,0,0,1,8.144,14.019l.8155-.0639.0991-.812a6.9867,6.9867,0,0,1,10.63-5.0865l1.4431-1.4428A8.9859,8.9859,0,0,0,7.2,12.1362,6.4891,6.4891,0,0,0,4.2964,23.4487Z" }), children);
1747
1809
  });
1748
1810
  CloudOffline.propTypes = iconPropTypes;
1749
- const CloudServiceManagement = React.forwardRef(function CloudServiceManagement({ children, size = 16, ...rest }, ref) {
1811
+ const CloudServiceManagement = /* @__PURE__ */ React.forwardRef(function CloudServiceManagement({ children, size = 16, ...rest }, ref) {
1750
1812
  return React.createElement(Icon, {
1751
1813
  width: size,
1752
1814
  height: size,
@@ -1758,7 +1820,7 @@ const CloudServiceManagement = React.forwardRef(function CloudServiceManagement(
1758
1820
  }, /* @__PURE__ */ jsx("path", { d: "M28,17v5H4V6H14V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V17ZM18,28H14V24h4Z" }), /* @__PURE__ */ jsx("path", { d: "M30,10V8H27.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,24,4.1011V2H22V4.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,18.1011,8H16v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,22,13.8989V16h2V13.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,27.8989,10Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,23,12Z" }), children);
1759
1821
  });
1760
1822
  CloudServiceManagement.propTypes = iconPropTypes;
1761
- const CloudUpload = React.forwardRef(function CloudUpload({ children, size = 16, ...rest }, ref) {
1823
+ const CloudUpload = /* @__PURE__ */ React.forwardRef(function CloudUpload({ children, size = 16, ...rest }, ref) {
1762
1824
  return React.createElement(Icon, {
1763
1825
  width: size,
1764
1826
  height: size,
@@ -1770,7 +1832,7 @@ const CloudUpload = React.forwardRef(function CloudUpload({ children, size = 16,
1770
1832
  }, /* @__PURE__ */ jsx("path", { d: "M11 18 12.41 19.41 15 16.83 15 29 17 29 17 16.83 19.59 19.41 21 18 16 13 11 18z" }), /* @__PURE__ */ jsx("path", { d: "M23.5,22H23V20h.5a4.5,4.5,0,0,0,.36-9L23,11l-.1-.82a7,7,0,0,0-13.88,0L9,11,8.14,11a4.5,4.5,0,0,0,.36,9H9v2H8.5A6.5,6.5,0,0,1,7.2,9.14a9,9,0,0,1,17.6,0A6.5,6.5,0,0,1,23.5,22Z" }), children);
1771
1833
  });
1772
1834
  CloudUpload.propTypes = iconPropTypes;
1773
- const CloudApp = React.forwardRef(function CloudApp({ children, size = 16, ...rest }, ref) {
1835
+ const CloudApp = /* @__PURE__ */ React.forwardRef(function CloudApp({ children, size = 16, ...rest }, ref) {
1774
1836
  return React.createElement(Icon, {
1775
1837
  width: size,
1776
1838
  height: size,
@@ -1782,7 +1844,7 @@ const CloudApp = React.forwardRef(function CloudApp({ children, size = 16, ...re
1782
1844
  }, /* @__PURE__ */ jsx("path", { d: "M25.8289,13.1155A10.02,10.02,0,0,0,16,5.0005V7a8.0233,8.0233,0,0,1,7.8649,6.4934l.2591,1.346,1.3488.2441A5.5019,5.5019,0,0,1,24.5076,26H16v2h8.5076a7.5019,7.5019,0,0,0,1.3213-14.8845Z" }), /* @__PURE__ */ jsx("path", { d: "M8 24H14V26H8z" }), /* @__PURE__ */ jsx("path", { d: "M4 24H6V26H4z" }), /* @__PURE__ */ jsx("path", { d: "M6 20H14V22H6z" }), /* @__PURE__ */ jsx("path", { d: "M2 20H4V22H2z" }), /* @__PURE__ */ jsx("path", { d: "M8 16H14V18H8z" }), /* @__PURE__ */ jsx("path", { d: "M4 16H6V18H4z" }), /* @__PURE__ */ jsx("path", { d: "M10 12H14V14H10z" }), /* @__PURE__ */ jsx("path", { d: "M6 12H8V14H6z" }), /* @__PURE__ */ jsx("path", { d: "M12 8H14V10H12z" }), children);
1783
1845
  });
1784
1846
  CloudApp.propTypes = iconPropTypes;
1785
- const CloudCeiling = React.forwardRef(function CloudCeiling({ children, size = 16, ...rest }, ref) {
1847
+ const CloudCeiling = /* @__PURE__ */ React.forwardRef(function CloudCeiling({ children, size = 16, ...rest }, ref) {
1786
1848
  return React.createElement(Icon, {
1787
1849
  width: size,
1788
1850
  height: size,
@@ -1794,7 +1856,7 @@ const CloudCeiling = React.forwardRef(function CloudCeiling({ children, size = 1
1794
1856
  }, /* @__PURE__ */ jsx("path", { d: "M2 28H11V30H2z" }), /* @__PURE__ */ jsx("path", { d: "M21 28H30V30H21z" }), /* @__PURE__ */ jsx("path", { d: "M17 26.167 17 17.832 19.586 20.414 21 19 16 14 11 19 12.413 20.415 15 17.832 15 26.167 12.413 23.584 11 25 16 30 21 25 19.586 23.586 17 26.167z" }), /* @__PURE__ */ jsx("path", { d: "M23,16H21V14h2a3,3,0,0,0,0-6c-.0938.0144-.1538.0219-.2153.0263l-.8037.0572L21.7544,7.31a5.9927,5.9927,0,0,0-11.1758-.8655l-.2832.5994-.8423-.0455A3.5008,3.5008,0,0,0,9.5,14H11v2H9.5A5.5,5.5,0,0,1,9.07,5.0166,7.9909,7.9909,0,0,1,23.42,6.0175,5,5,0,0,1,23,16Z" }), children);
1795
1857
  });
1796
1858
  CloudCeiling.propTypes = iconPropTypes;
1797
- const CloudFoundry_1 = React.forwardRef(function CloudFoundry_1({ children, size = 16, ...rest }, ref) {
1859
+ const CloudFoundry_1 = /* @__PURE__ */ React.forwardRef(function CloudFoundry_1({ children, size = 16, ...rest }, ref) {
1798
1860
  return React.createElement(Icon, {
1799
1861
  width: size,
1800
1862
  height: size,
@@ -1806,7 +1868,7 @@ const CloudFoundry_1 = React.forwardRef(function CloudFoundry_1({ children, size
1806
1868
  }, /* @__PURE__ */ jsx("path", { d: "M16,7h0a7.66,7.66,0,0,1,1.51.15,8,8,0,0,1,6.35,6.34l.26,1.35,1.35.24a5.5,5.5,0,0,1-1,10.92H7.5a5.5,5.5,0,0,1-1-10.92l1.34-.24.26-1.35A8,8,0,0,1,16,7m0-2a10,10,0,0,0-9.83,8.12A7.5,7.5,0,0,0,7.49,28h17a7.5,7.5,0,0,0,1.32-14.88,10,10,0,0,0-7.94-7.94A10.27,10.27,0,0,0,16,5Z" }), /* @__PURE__ */ jsx("path", { d: "M14,24H11a2,2,0,0,1-2-2V19a2,2,0,0,1,2-2h3v2H11v3h3Z" }), /* @__PURE__ */ jsx("path", { d: "M21,15V13H19a2,2,0,0,0-2,2v2H16v2h1v5h2V19h2V17H19V15Z" }), children);
1807
1869
  });
1808
1870
  CloudFoundry_1.propTypes = iconPropTypes;
1809
- const CloudFoundry_2 = React.forwardRef(function CloudFoundry_2({ children, size = 16, ...rest }, ref) {
1871
+ const CloudFoundry_2 = /* @__PURE__ */ React.forwardRef(function CloudFoundry_2({ children, size = 16, ...rest }, ref) {
1810
1872
  return React.createElement(Icon, {
1811
1873
  width: size,
1812
1874
  height: size,
@@ -1818,7 +1880,7 @@ const CloudFoundry_2 = React.forwardRef(function CloudFoundry_2({ children, size
1818
1880
  }, /* @__PURE__ */ jsx("path", { d: "M25 11 25 9 17 9 17 23 19 23 19 17 24 17 24 15 19 15 19 11 25 11z" }), /* @__PURE__ */ jsx("path", { d: "M15,23H9a2,2,0,0,1-2-2V11A2,2,0,0,1,9,9h6v2H9V21h6Z" }), children);
1819
1881
  });
1820
1882
  CloudFoundry_2.propTypes = iconPropTypes;
1821
- const CloudRegistry = React.forwardRef(function CloudRegistry({ children, size = 16, ...rest }, ref) {
1883
+ const CloudRegistry = /* @__PURE__ */ React.forwardRef(function CloudRegistry({ children, size = 16, ...rest }, ref) {
1822
1884
  return React.createElement(Icon, {
1823
1885
  width: size,
1824
1886
  height: size,
@@ -1830,7 +1892,7 @@ const CloudRegistry = React.forwardRef(function CloudRegistry({ children, size =
1830
1892
  }, /* @__PURE__ */ jsx("path", { d: "M28,30H23a2.0023,2.0023,0,0,1-2-2V23a2.0023,2.0023,0,0,1,2-2h5a2.0023,2.0023,0,0,1,2,2v5A2.0023,2.0023,0,0,1,28,30Zm-5-7h-.0012L23,28h5V23Z" }), /* @__PURE__ */ jsx("path", { d: "M16,23H11a2.0023,2.0023,0,0,1-2-2V11a2.0023,2.0023,0,0,1,2-2H21a2.0023,2.0023,0,0,1,2,2v5H21V11H11V21h5Z" }), /* @__PURE__ */ jsx("path", { d: "M16,30H4a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,4,2H28a2.0023,2.0023,0,0,1,2,2V16H28V4H4V28H16Z" }), children);
1831
1893
  });
1832
1894
  CloudRegistry.propTypes = iconPropTypes;
1833
- const CloudSatellite = React.forwardRef(function CloudSatellite({ children, size = 16, ...rest }, ref) {
1895
+ const CloudSatellite = /* @__PURE__ */ React.forwardRef(function CloudSatellite({ children, size = 16, ...rest }, ref) {
1834
1896
  return React.createElement(Icon, {
1835
1897
  width: size,
1836
1898
  height: size,
@@ -1850,7 +1912,7 @@ const CloudSatellite = React.forwardRef(function CloudSatellite({ children, size
1850
1912
  }), /* @__PURE__ */ jsx("path", { d: "M16,31a.9988.9988,0,0,1-.5039-.1357l-12-7A1.0008,1.0008,0,0,1,3,23V9a.9994.9994,0,0,1,.4961-.8638l12-7a1,1,0,0,1,1.0078,0l12,7L27.4961,9.8638,16,3.1577,5,9.5742V22.4258l11,6.417,11-6.417V15h2v8a1.0008,1.0008,0,0,1-.4961.8643l-12,7A.9988.9988,0,0,1,16,31Z" }), children);
1851
1913
  });
1852
1914
  CloudSatellite.propTypes = iconPropTypes;
1853
- const CloudSatelliteConfig = React.forwardRef(function CloudSatelliteConfig({ children, size = 16, ...rest }, ref) {
1915
+ const CloudSatelliteConfig = /* @__PURE__ */ React.forwardRef(function CloudSatelliteConfig({ children, size = 16, ...rest }, ref) {
1854
1916
  return React.createElement(Icon, {
1855
1917
  width: size,
1856
1918
  height: size,
@@ -1870,7 +1932,7 @@ const CloudSatelliteConfig = React.forwardRef(function CloudSatelliteConfig({ ch
1870
1932
  }), /* @__PURE__ */ jsx("path", { d: "M13.0205,28.2715,3,22.4258V9.5742L14,3.1577,25.4961,9.8638l1.0078-1.7276-12-7a1,1,0,0,0-1.0078,0l-12,7A.9994.9994,0,0,0,1,9V23a1.0008,1.0008,0,0,0,.4961.8643L12.0127,30Z" }), children);
1871
1933
  });
1872
1934
  CloudSatelliteConfig.propTypes = iconPropTypes;
1873
- const CloudSatelliteLink = React.forwardRef(function CloudSatelliteLink({ children, size = 16, ...rest }, ref) {
1935
+ const CloudSatelliteLink = /* @__PURE__ */ React.forwardRef(function CloudSatelliteLink({ children, size = 16, ...rest }, ref) {
1874
1936
  return React.createElement(Icon, {
1875
1937
  width: size,
1876
1938
  height: size,
@@ -1890,74 +1952,5 @@ const CloudSatelliteLink = React.forwardRef(function CloudSatelliteLink({ childr
1890
1952
  }), /* @__PURE__ */ jsx("path", { d: "M11.3076,27.2725,3,22.4258V9.5742L14,3.1577,25.4961,9.8638l1.0078-1.7276-12-7a1,1,0,0,0-1.0078,0l-12,7A.9994.9994,0,0,0,1,9V23a1.0008,1.0008,0,0,0,.4961.8643L10.3,29Z" }), children);
1891
1953
  });
1892
1954
  CloudSatelliteLink.propTypes = iconPropTypes;
1893
- const CloudSatelliteServices = React.forwardRef(function CloudSatelliteServices({ children, size = 16, ...rest }, ref) {
1894
- return React.createElement(Icon, {
1895
- width: size,
1896
- height: size,
1897
- ref,
1898
- xmlns: "http://www.w3.org/2000/svg",
1899
- viewBox: "0 0 32 32",
1900
- fill: "currentColor",
1901
- ...rest
1902
- }, /* @__PURE__ */ jsx("path", { d: "M29,26a2.97,2.97,0,0,0-1.8551.6607L25,25.4224V23.8157a3,3,0,1,0-2,0v1.6067l-2.1449,1.2383A2.97,2.97,0,0,0,19,26a3.02,3.02,0,1,0,2.9254,2.3525L24,27.1548l2.0746,1.1977A2.9978,2.9978,0,1,0,29,26ZM19,30a1,1,0,1,1,1-1A1.0006,1.0006,0,0,1,19,30Zm5-10a1,1,0,1,1-1,1A1.0009,1.0009,0,0,1,24,20Zm5,10a1,1,0,1,1,1-1A1.0006,1.0006,0,0,1,29,30Z" }), /* @__PURE__ */ jsx("circle", {
1903
- cx: "7",
1904
- cy: "20",
1905
- r: "2"
1906
- }), /* @__PURE__ */ jsx("path", { d: "M14,20a4,4,0,1,1,4-4A4.0118,4.0118,0,0,1,14,20Zm0-6a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,14,14Z" }), /* @__PURE__ */ jsx("circle", {
1907
- cx: "21",
1908
- cy: "12",
1909
- r: "2"
1910
- }), /* @__PURE__ */ jsx("path", { d: "M13.0205,28.2715,3,22.4258V9.5742L14,3.1577,25.4961,9.8638l1.0078-1.7276-12-7a1,1,0,0,0-1.0078,0l-12,7A.9994.9994,0,0,0,1,9V23a1.0008,1.0008,0,0,0,.4961.8643L12.0127,30Z" }), children);
1911
- });
1912
- CloudSatelliteServices.propTypes = iconPropTypes;
1913
- const CloudServices = React.forwardRef(function CloudServices({ children, size = 16, ...rest }, ref) {
1914
- return React.createElement(Icon, {
1915
- width: size,
1916
- height: size,
1917
- ref,
1918
- xmlns: "http://www.w3.org/2000/svg",
1919
- viewBox: "0 0 32 32",
1920
- fill: "currentColor",
1921
- ...rest
1922
- }, /* @__PURE__ */ jsx("path", { d: "M25.8218,10.124a9.9991,9.9991,0,0,0-19.6435,0A7.4964,7.4964,0,0,0,7.5,25H8V23H7.5a5.4961,5.4961,0,0,1-.3769-10.9795l.8364-.0571.09-.8335a7.9979,7.9979,0,0,1,15.9013,0l.09.8335.8364.0571A5.4961,5.4961,0,0,1,24.5,23H24v2h.5a7.4964,7.4964,0,0,0,1.3218-14.876Z" }), /* @__PURE__ */ jsx("path", { d: "M23,22V20H20.8989a4.9678,4.9678,0,0,0-.7319-1.7529l1.49-1.49-1.414-1.414-1.49,1.49A4.9678,4.9678,0,0,0,17,16.1011V14H15v2.1011a4.9678,4.9678,0,0,0-1.7529.7319l-1.49-1.49-1.414,1.414,1.49,1.49A4.9678,4.9678,0,0,0,11.1011,20H9v2h2.1011a4.9678,4.9678,0,0,0,.7319,1.7529l-1.49,1.49,1.414,1.414,1.49-1.49A4.9678,4.9678,0,0,0,15,25.8989V28h2V25.8989a4.9678,4.9678,0,0,0,1.7529-.7319l1.49,1.49,1.414-1.414-1.49-1.49A4.9678,4.9678,0,0,0,20.8989,22Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,16,24Z" }), children);
1923
- });
1924
- CloudServices.propTypes = iconPropTypes;
1925
- const Cloudy = React.forwardRef(function Cloudy({ children, size = 16, ...rest }, ref) {
1926
- return React.createElement(Icon, {
1927
- width: size,
1928
- height: size,
1929
- ref,
1930
- xmlns: "http://www.w3.org/2000/svg",
1931
- viewBox: "0 0 32 32",
1932
- fill: "currentColor",
1933
- ...rest
1934
- }, /* @__PURE__ */ jsx("path", { d: "M30.0005,15.5005a6.5324,6.5324,0,0,0-5.1992-6.3638,8.9943,8.9943,0,0,0-17.6006,0,6.5321,6.5321,0,0,0-5.2,6.3638,6.4543,6.4543,0,0,0,1.6887,4.35A5.9829,5.9829,0,0,0,8,30H19a5.9764,5.9764,0,0,0,5.6094-8.1016A6.5051,6.5051,0,0,0,30.0005,15.5005ZM19,28H8a3.9925,3.9925,0,0,1-.6731-7.9292L7.99,19.958l.1458-.6562a5.496,5.496,0,0,1,10.7294,0l.1458.6562.6626.1128A3.9925,3.9925,0,0,1,19,28Zm4.5-8h-.0554a5.9562,5.9562,0,0,0-2.7959-1.7564,7.4952,7.4952,0,0,0-14.2984,0,5.9877,5.9877,0,0,0-1.0315.4073A4.4446,4.4446,0,0,1,4,15.5005a4.5171,4.5171,0,0,1,4.144-4.481l.8155-.0639.0991-.812a6.9938,6.9938,0,0,1,13.8838,0l.0986.812.8154.0639a4.4975,4.4975,0,0,1-.3564,8.981Z" }), children);
1935
- });
1936
- Cloudy.propTypes = iconPropTypes;
1937
- const WatsonHealthCobbAngle = React.forwardRef(function WatsonHealthCobbAngle({ children, size = 16, ...rest }, ref) {
1938
- return React.createElement(Icon, {
1939
- width: size,
1940
- height: size,
1941
- ref,
1942
- xmlns: "http://www.w3.org/2000/svg",
1943
- viewBox: "0 0 32 32",
1944
- fill: "currentColor",
1945
- ...rest
1946
- }, /* @__PURE__ */ jsx("path", { d: "M20,17V15a2,2,0,0,0-2-2H10a2,2,0,0,0-2,2v2a2,2,0,0,0,2,2h8A2,2,0,0,0,20,17ZM10,15h8v2H10Z" }), /* @__PURE__ */ jsx("path", { d: "M23.42,24.48A2,2,0,0,0,21,23.06l-7.73,2.07a2,2,0,0,0-1.42,2.44h0l.52,1.93A2,2,0,0,0,14.27,31a3,3,0,0,0,.52-.07l7.73-2.07h0a2,2,0,0,0,1.41-2.45ZM14.27,29l-.51-1.94L21.48,25,22,26.92Z" }), /* @__PURE__ */ jsx("path", { d: "M13.24,6.86,21,8.93h0a2.24,2.24,0,0,0,.51.07,2,2,0,0,0,1.94-1.48L24,5.58a2,2,0,0,0-1.41-2.45L14.79,1.06a2,2,0,0,0-2.45,1.41h0l-.52,1.93a2,2,0,0,0,1.42,2.44Zm1-3.86L22,5.07,21.48,7,13.76,4.93Z" }), /* @__PURE__ */ jsx("path", { d: "M14 21H16V23H14z" }), /* @__PURE__ */ jsx("path", { d: "M14 9H16V11H14z" }), children);
1947
- });
1948
- WatsonHealthCobbAngle.propTypes = iconPropTypes;
1949
- const CobolUpgradeAdvisor = React.forwardRef(function CobolUpgradeAdvisor({ children, size = 16, ...rest }, ref) {
1950
- return React.createElement(Icon, {
1951
- width: size,
1952
- height: size,
1953
- ref,
1954
- xmlns: "http://www.w3.org/2000/svg",
1955
- viewBox: "0 0 32 32",
1956
- fill: "currentColor",
1957
- ...rest
1958
- }, /* @__PURE__ */ jsx("path", { d: "M25.57,6.4299l-1.46,1.4602-1.68-2.8901h-12.86l-6.41,11,6.41,11h7.43v2h-8c-.36,0-.68-.1899-.86-.5L1.14,16.5c-.1-.1499-.14-.3301-.14-.5s.04-.3501.14-.5L8.14,3.5c.18-.3101.5-.5.86-.5h14c.36,0,.68.1899.86.5l1.71,2.9299ZM19,11h-10v2h10v-2ZM17,15h-8v2h8v-2ZM15,19h-6v2h6v-2ZM26,11l-5,5,1.41,1.4099,2.59-2.5798v9.1699c0,1.6543-1.3457,3-3,3h-2v2h2c2.7568,0,5-2.2432,5-5v-9.1699l2.59,2.5798,1.41-1.4099-5-5Z" }), children);
1959
- });
1960
- CobolUpgradeAdvisor.propTypes = iconPropTypes;
1961
-
1962
1955
  //#endregion
1963
- export { ChevronDown };
1956
+ export { ChevronDown };