@carbon/ibm-products 2.81.0-rc.0 → 2.81.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 (2277) hide show
  1. package/css/carbon.css +28761 -0
  2. package/css/carbon.css.map +1 -0
  3. package/css/config-dev.css +8 -0
  4. package/css/config-dev.css.map +1 -0
  5. package/css/config.css +8 -0
  6. package/css/config.css.map +1 -0
  7. package/css/index-full-carbon.css +46381 -0
  8. package/css/index-full-carbon.css.map +1 -0
  9. package/css/index-full-carbon.min.css +1 -0
  10. package/css/index-full-carbon.min.css.map +1 -0
  11. package/css/index-without-carbon-released-only.css +12851 -0
  12. package/css/index-without-carbon-released-only.css.map +1 -0
  13. package/css/index-without-carbon-released-only.min.css +1 -0
  14. package/css/index-without-carbon-released-only.min.css.map +1 -0
  15. package/css/index-without-carbon.css +19335 -0
  16. package/css/index-without-carbon.css.map +1 -0
  17. package/css/index-without-carbon.min.css +1 -0
  18. package/css/index-without-carbon.min.css.map +1 -0
  19. package/css/index.css +28233 -0
  20. package/css/index.css.map +1 -0
  21. package/css/index.min.css +1 -0
  22. package/css/index.min.css.map +1 -0
  23. package/es/_virtual/_commonjsHelpers.js +12 -0
  24. package/es/_virtual/_rollupPluginBabelHelpers.js +18 -0
  25. package/es/_virtual/index.js +14 -0
  26. package/es/_virtual/index2.js +10 -0
  27. package/es/components/APIKeyModal/APIKeyDownloader.d.ts +64 -0
  28. package/es/components/APIKeyModal/APIKeyDownloader.js +80 -0
  29. package/es/components/APIKeyModal/APIKeyModal.d.ts +15 -0
  30. package/es/components/APIKeyModal/APIKeyModal.js +533 -0
  31. package/es/components/APIKeyModal/APIKeyModal.types.d.ts +234 -0
  32. package/es/components/APIKeyModal/index.d.ts +2 -0
  33. package/es/components/AboutModal/AboutModal.d.ts +73 -0
  34. package/es/components/AboutModal/AboutModal.js +177 -0
  35. package/es/components/AboutModal/index.d.ts +8 -0
  36. package/es/components/ActionBar/ActionBar.d.ts +65 -0
  37. package/es/components/ActionBar/ActionBar.js +171 -0
  38. package/es/components/ActionBar/ActionBarItem.d.ts +39 -0
  39. package/es/components/ActionBar/ActionBarItem.js +100 -0
  40. package/es/components/ActionBar/ActionBarOverflowItems.d.ts +65 -0
  41. package/es/components/ActionBar/ActionBarOverflowItems.js +92 -0
  42. package/es/components/ActionBar/index.d.ts +2 -0
  43. package/es/components/ActionSet/ActionSet.d.ts +52 -0
  44. package/es/components/ActionSet/ActionSet.js +212 -0
  45. package/es/components/ActionSet/index.d.ts +8 -0
  46. package/es/components/AddSelect/AddSelect.d.ts +45 -0
  47. package/es/components/AddSelect/AddSelect.js +124 -0
  48. package/es/components/AddSelect/AddSelectBody.d.ts +45 -0
  49. package/es/components/AddSelect/AddSelectBody.js +367 -0
  50. package/es/components/AddSelect/AddSelectBreadcrumbs.d.ts +16 -0
  51. package/es/components/AddSelect/AddSelectBreadcrumbs.js +55 -0
  52. package/es/components/AddSelect/AddSelectColumn.d.ts +31 -0
  53. package/es/components/AddSelect/AddSelectColumn.js +238 -0
  54. package/es/components/AddSelect/AddSelectFilter.d.ts +40 -0
  55. package/es/components/AddSelect/AddSelectFilter.js +164 -0
  56. package/es/components/AddSelect/AddSelectFormControl.d.ts +18 -0
  57. package/es/components/AddSelect/AddSelectFormControl.js +98 -0
  58. package/es/components/AddSelect/AddSelectList.d.ts +16 -0
  59. package/es/components/AddSelect/AddSelectList.js +53 -0
  60. package/es/components/AddSelect/AddSelectMetaPanel.d.ts +18 -0
  61. package/es/components/AddSelect/AddSelectMetaPanel.js +66 -0
  62. package/es/components/AddSelect/AddSelectRow.d.ts +51 -0
  63. package/es/components/AddSelect/AddSelectRow.js +230 -0
  64. package/es/components/AddSelect/AddSelectSidebar.d.ts +34 -0
  65. package/es/components/AddSelect/AddSelectSidebar.js +131 -0
  66. package/es/components/AddSelect/AddSelectSort.d.ts +17 -0
  67. package/es/components/AddSelect/AddSelectSort.js +79 -0
  68. package/es/components/AddSelect/add-select-utils.d.ts +4 -0
  69. package/es/components/AddSelect/add-select-utils.js +128 -0
  70. package/es/components/AddSelect/hooks/useFocus.d.ts +2 -0
  71. package/es/components/AddSelect/hooks/useFocus.js +36 -0
  72. package/es/components/AddSelect/hooks/useItemSort.d.ts +6 -0
  73. package/es/components/AddSelect/hooks/useItemSort.js +27 -0
  74. package/es/components/AddSelect/hooks/useParentSelect.d.ts +5 -0
  75. package/es/components/AddSelect/hooks/useParentSelect.js +24 -0
  76. package/es/components/AddSelect/hooks/usePath.d.ts +10 -0
  77. package/es/components/AddSelect/hooks/usePath.js +67 -0
  78. package/es/components/AddSelect/index.d.ts +2 -0
  79. package/es/components/AddSelect/types/index.d.ts +51 -0
  80. package/es/components/BigNumber/BigNumber.d.ts +34 -0
  81. package/es/components/BigNumber/BigNumber.js +177 -0
  82. package/es/components/BigNumber/BigNumberSkeleton.d.ts +17 -0
  83. package/es/components/BigNumber/BigNumberSkeleton.js +66 -0
  84. package/es/components/BigNumber/constants.d.ts +19 -0
  85. package/es/components/BigNumber/constants.js +44 -0
  86. package/es/components/BigNumber/index.d.ts +8 -0
  87. package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.d.ts +25 -0
  88. package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +332 -0
  89. package/es/components/BreadcrumbWithOverflow/index.d.ts +1 -0
  90. package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.d.ts +22 -0
  91. package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +201 -0
  92. package/es/components/ButtonSetWithOverflow/index.d.ts +1 -0
  93. package/es/components/Card/Card.d.ts +78 -0
  94. package/es/components/Card/Card.js +358 -0
  95. package/es/components/Card/CardFooter.d.ts +52 -0
  96. package/es/components/Card/CardFooter.js +98 -0
  97. package/es/components/Card/CardHeader.d.ts +78 -0
  98. package/es/components/Card/CardHeader.js +162 -0
  99. package/es/components/Card/index.d.ts +3 -0
  100. package/es/components/Carousel/Carousel.d.ts +72 -0
  101. package/es/components/Carousel/Carousel.js +377 -0
  102. package/es/components/Carousel/CarouselItem.d.ts +22 -0
  103. package/es/components/Carousel/CarouselItem.js +52 -0
  104. package/es/components/Carousel/index.d.ts +9 -0
  105. package/es/components/Cascade/Cascade.d.ts +25 -0
  106. package/es/components/Cascade/Cascade.js +98 -0
  107. package/es/components/Cascade/index.d.ts +2 -0
  108. package/es/components/Checklist/Checklist.d.ts +105 -0
  109. package/es/components/Checklist/Checklist.js +272 -0
  110. package/es/components/Checklist/Checklist.types.d.ts +19 -0
  111. package/es/components/Checklist/Checklist.types.js +22 -0
  112. package/es/components/Checklist/ChecklistChart.d.ts +9 -0
  113. package/es/components/Checklist/ChecklistChart.js +78 -0
  114. package/es/components/Checklist/ChecklistIcon.d.ts +9 -0
  115. package/es/components/Checklist/ChecklistIcon.js +100 -0
  116. package/es/components/Checklist/index.d.ts +8 -0
  117. package/es/components/Coachmark/Coachmark.d.ts +127 -0
  118. package/es/components/Coachmark/Coachmark.js +315 -0
  119. package/es/components/Coachmark/CoachmarkDragbar.d.ts +41 -0
  120. package/es/components/Coachmark/CoachmarkDragbar.js +138 -0
  121. package/es/components/Coachmark/CoachmarkHeader.d.ts +28 -0
  122. package/es/components/Coachmark/CoachmarkHeader.js +91 -0
  123. package/es/components/Coachmark/CoachmarkOverlay.d.ts +47 -0
  124. package/es/components/Coachmark/CoachmarkOverlay.js +245 -0
  125. package/es/components/Coachmark/CoachmarkTagline.d.ts +32 -0
  126. package/es/components/Coachmark/CoachmarkTagline.js +102 -0
  127. package/es/components/Coachmark/index.d.ts +11 -0
  128. package/es/components/Coachmark/next/Coachmark/Coachmark.d.ts +58 -0
  129. package/es/components/Coachmark/next/Coachmark/Coachmark.js +173 -0
  130. package/es/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.d.ts +45 -0
  131. package/es/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.js +89 -0
  132. package/es/components/Coachmark/next/Coachmark/CoachmarkBeacon/index.d.ts +8 -0
  133. package/es/components/Coachmark/next/Coachmark/CoachmarkBeacon/index.js +8 -0
  134. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts +38 -0
  135. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.js +137 -0
  136. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts +24 -0
  137. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.js +25 -0
  138. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts +10 -0
  139. package/es/components/Coachmark/next/Coachmark/CoachmarkContent.d.ts +34 -0
  140. package/es/components/Coachmark/next/Coachmark/CoachmarkContent.js +114 -0
  141. package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.d.ts +43 -0
  142. package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +102 -0
  143. package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/index.d.ts +8 -0
  144. package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/index.js +8 -0
  145. package/es/components/Coachmark/next/Coachmark/ContentBody.d.ts +23 -0
  146. package/es/components/Coachmark/next/Coachmark/ContentBody.js +37 -0
  147. package/es/components/Coachmark/next/Coachmark/ContentHeader.d.ts +20 -0
  148. package/es/components/Coachmark/next/Coachmark/ContentHeader.js +103 -0
  149. package/es/components/Coachmark/next/Coachmark/context.d.ts +25 -0
  150. package/es/components/Coachmark/next/Coachmark/context.js +28 -0
  151. package/es/components/Coachmark/next/Coachmark/index.d.ts +11 -0
  152. package/es/components/Coachmark/next/Coachmark/index.js +8 -0
  153. package/es/components/Coachmark/utils/constants.d.ts +1 -0
  154. package/es/components/Coachmark/utils/constants.js +86 -0
  155. package/es/components/Coachmark/utils/context.d.ts +28 -0
  156. package/es/components/Coachmark/utils/context.js +15 -0
  157. package/es/components/Coachmark/utils/enums.d.ts +43 -0
  158. package/es/components/Coachmark/utils/enums.js +50 -0
  159. package/es/components/Coachmark/utils/hooks.d.ts +9 -0
  160. package/es/components/Coachmark/utils/hooks.js +63 -0
  161. package/es/components/CoachmarkBeacon/CoachmarkBeacon.d.ts +40 -0
  162. package/es/components/CoachmarkBeacon/CoachmarkBeacon.js +99 -0
  163. package/es/components/CoachmarkBeacon/index.d.ts +8 -0
  164. package/es/components/CoachmarkButton/CoachmarkButton.d.ts +22 -0
  165. package/es/components/CoachmarkButton/CoachmarkButton.js +100 -0
  166. package/es/components/CoachmarkButton/index.d.ts +8 -0
  167. package/es/components/CoachmarkFixed/CoachmarkFixed.d.ts +52 -0
  168. package/es/components/CoachmarkFixed/CoachmarkFixed.js +221 -0
  169. package/es/components/CoachmarkFixed/index.d.ts +8 -0
  170. package/es/components/CoachmarkOverlayElement/CoachmarkOverlayElement.d.ts +33 -0
  171. package/es/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +88 -0
  172. package/es/components/CoachmarkOverlayElement/index.d.ts +8 -0
  173. package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.d.ts +57 -0
  174. package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +227 -0
  175. package/es/components/CoachmarkOverlayElements/index.d.ts +8 -0
  176. package/es/components/CoachmarkStack/CoachmarkStack.d.ts +72 -0
  177. package/es/components/CoachmarkStack/CoachmarkStack.js +289 -0
  178. package/es/components/CoachmarkStack/CoachmarkStackHome.d.ts +67 -0
  179. package/es/components/CoachmarkStack/CoachmarkStackHome.js +206 -0
  180. package/es/components/CoachmarkStack/index.d.ts +1 -0
  181. package/es/components/ComboButton/ComboButton.d.ts +41 -0
  182. package/es/components/ComboButton/ComboButton.js +98 -0
  183. package/es/components/ComboButton/ComboButtonItem/index.d.ts +26 -0
  184. package/es/components/ComboButton/ComboButtonItem/index.js +31 -0
  185. package/es/components/ComboButton/index.d.ts +9 -0
  186. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.d.ts +103 -0
  187. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +363 -0
  188. package/es/components/ConditionBuilder/ConditionBuilder.d.ts +12 -0
  189. package/es/components/ConditionBuilder/ConditionBuilder.js +235 -0
  190. package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +186 -0
  191. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts +26 -0
  192. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +139 -0
  193. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +65 -0
  194. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +148 -0
  195. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.d.ts +86 -0
  196. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +133 -0
  197. package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.d.ts +30 -0
  198. package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +94 -0
  199. package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.d.ts +3 -0
  200. package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +54 -0
  201. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +38 -0
  202. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +251 -0
  203. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts +11 -0
  204. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +120 -0
  205. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.d.ts +51 -0
  206. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +60 -0
  207. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.d.ts +82 -0
  208. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +268 -0
  209. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.d.ts +30 -0
  210. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +128 -0
  211. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.d.ts +31 -0
  212. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +81 -0
  213. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +40 -0
  214. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +134 -0
  215. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.d.ts +34 -0
  216. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +185 -0
  217. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.d.ts +36 -0
  218. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +53 -0
  219. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.d.ts +34 -0
  220. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +90 -0
  221. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts +51 -0
  222. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +402 -0
  223. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.d.ts +33 -0
  224. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +103 -0
  225. package/es/components/ConditionBuilder/index.d.ts +8 -0
  226. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.d.ts +2 -0
  227. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.js +233 -0
  228. package/es/components/ConditionBuilder/utils/useDataConfigs.d.ts +17 -0
  229. package/es/components/ConditionBuilder/utils/useDataConfigs.js +101 -0
  230. package/es/components/ConditionBuilder/utils/useEvent.d.ts +8 -0
  231. package/es/components/ConditionBuilder/utils/useEvent.js +32 -0
  232. package/es/components/ConditionBuilder/utils/useTranslations.d.ts +1 -0
  233. package/es/components/ConditionBuilder/utils/useTranslations.js +30 -0
  234. package/es/components/ConditionBuilder/utils/util.d.ts +13 -0
  235. package/es/components/ConditionBuilder/utils/util.js +94 -0
  236. package/es/components/CreateFullPage/CreateFullPage.d.ts +146 -0
  237. package/es/components/CreateFullPage/CreateFullPage.js +338 -0
  238. package/es/components/CreateFullPage/CreateFullPageStep.d.ts +77 -0
  239. package/es/components/CreateFullPage/CreateFullPageStep.js +197 -0
  240. package/es/components/CreateFullPage/index.d.ts +10 -0
  241. package/es/components/CreateInfluencer/CreateInfluencer.d.ts +63 -0
  242. package/es/components/CreateInfluencer/CreateInfluencer.js +104 -0
  243. package/es/components/CreateInfluencer/index.d.ts +1 -0
  244. package/es/components/CreateModal/CreateModal.d.ts +67 -0
  245. package/es/components/CreateModal/CreateModal.js +141 -0
  246. package/es/components/CreateModal/index.d.ts +2 -0
  247. package/es/components/CreateSidePanel/CreateSidePanel.d.ts +84 -0
  248. package/es/components/CreateSidePanel/CreateSidePanel.js +168 -0
  249. package/es/components/CreateSidePanel/index.d.ts +7 -0
  250. package/es/components/CreateTearsheet/CreateTearsheet.d.ts +126 -0
  251. package/es/components/CreateTearsheet/CreateTearsheet.js +299 -0
  252. package/es/components/CreateTearsheet/CreateTearsheetDivider.d.ts +13 -0
  253. package/es/components/CreateTearsheet/CreateTearsheetDivider.js +33 -0
  254. package/es/components/CreateTearsheet/CreateTearsheetStep.d.ts +121 -0
  255. package/es/components/CreateTearsheet/CreateTearsheetStep.js +239 -0
  256. package/es/components/CreateTearsheet/index.d.ts +10 -0
  257. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.d.ts +86 -0
  258. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +166 -0
  259. package/es/components/CreateTearsheetNarrow/index.d.ts +8 -0
  260. package/es/components/DataSpreadsheet/DataSpreadsheet.d.ts +96 -0
  261. package/es/components/DataSpreadsheet/DataSpreadsheet.js +828 -0
  262. package/es/components/DataSpreadsheet/DataSpreadsheetBody.d.ts +162 -0
  263. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +561 -0
  264. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.d.ts +106 -0
  265. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +324 -0
  266. package/es/components/DataSpreadsheet/hooks/index.d.ts +7 -0
  267. package/es/components/DataSpreadsheet/hooks/useMoveActiveCell.d.ts +8 -0
  268. package/es/components/DataSpreadsheet/hooks/useMoveActiveCell.js +40 -0
  269. package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.d.ts +9 -0
  270. package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +103 -0
  271. package/es/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.d.ts +6 -0
  272. package/es/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +30 -0
  273. package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.d.ts +12 -0
  274. package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +98 -0
  275. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.d.ts +6 -0
  276. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +64 -0
  277. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.d.ts +19 -0
  278. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +165 -0
  279. package/es/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.d.ts +10 -0
  280. package/es/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +45 -0
  281. package/es/components/DataSpreadsheet/index.d.ts +8 -0
  282. package/es/components/DataSpreadsheet/types/index.d.ts +35 -0
  283. package/es/components/DataSpreadsheet/utils/checkActiveHeaderCell.d.ts +1 -0
  284. package/es/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +30 -0
  285. package/es/components/DataSpreadsheet/utils/checkForHoldingKey.d.ts +1 -0
  286. package/es/components/DataSpreadsheet/utils/checkForHoldingKey.js +17 -0
  287. package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.d.ts +1 -0
  288. package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +31 -0
  289. package/es/components/DataSpreadsheet/utils/commonEventHandlers.d.ts +4 -0
  290. package/es/components/DataSpreadsheet/utils/commonEventHandlers.js +255 -0
  291. package/es/components/DataSpreadsheet/utils/createActiveCellFn.d.ts +12 -0
  292. package/es/components/DataSpreadsheet/utils/createActiveCellFn.js +59 -0
  293. package/es/components/DataSpreadsheet/utils/createCellSelectionArea.d.ts +10 -0
  294. package/es/components/DataSpreadsheet/utils/createCellSelectionArea.js +69 -0
  295. package/es/components/DataSpreadsheet/utils/getCellSize.d.ts +1 -0
  296. package/es/components/DataSpreadsheet/utils/getCellSize.js +26 -0
  297. package/es/components/DataSpreadsheet/utils/getSelectionAreaPoints.d.ts +6 -0
  298. package/es/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +21 -0
  299. package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.d.ts +9 -0
  300. package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +35 -0
  301. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.d.ts +7 -0
  302. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +112 -0
  303. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.d.ts +7 -0
  304. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +104 -0
  305. package/es/components/DataSpreadsheet/utils/handleCellDeletion.d.ts +8 -0
  306. package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +42 -0
  307. package/es/components/DataSpreadsheet/utils/handleEditSubmit.d.ts +13 -0
  308. package/es/components/DataSpreadsheet/utils/handleEditSubmit.js +81 -0
  309. package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.d.ts +16 -0
  310. package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +150 -0
  311. package/es/components/DataSpreadsheet/utils/handleMultipleKeys.d.ts +18 -0
  312. package/es/components/DataSpreadsheet/utils/handleMultipleKeys.js +266 -0
  313. package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.d.ts +7 -0
  314. package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +71 -0
  315. package/es/components/DataSpreadsheet/utils/removeCellSelections.d.ts +5 -0
  316. package/es/components/DataSpreadsheet/utils/removeCellSelections.js +28 -0
  317. package/es/components/DataSpreadsheet/utils/selectAllCells.d.ts +9 -0
  318. package/es/components/DataSpreadsheet/utils/selectAllCells.js +53 -0
  319. package/es/components/Datagrid/Datagrid/Datagrid.d.ts +24 -0
  320. package/es/components/Datagrid/Datagrid/Datagrid.js +86 -0
  321. package/es/components/Datagrid/Datagrid/DatagridBody.d.ts +10 -0
  322. package/es/components/Datagrid/Datagrid/DatagridBody.js +33 -0
  323. package/es/components/Datagrid/Datagrid/DatagridContent.d.ts +16 -0
  324. package/es/components/Datagrid/Datagrid/DatagridContent.js +254 -0
  325. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.d.ts +10 -0
  326. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +54 -0
  327. package/es/components/Datagrid/Datagrid/DatagridExpandedRow.d.ts +10 -0
  328. package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +58 -0
  329. package/es/components/Datagrid/Datagrid/DatagridHead.d.ts +10 -0
  330. package/es/components/Datagrid/Datagrid/DatagridHead.js +22 -0
  331. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.d.ts +9 -0
  332. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +281 -0
  333. package/es/components/Datagrid/Datagrid/DatagridRefBody.d.ts +10 -0
  334. package/es/components/Datagrid/Datagrid/DatagridRefBody.js +42 -0
  335. package/es/components/Datagrid/Datagrid/DatagridRow.d.ts +10 -0
  336. package/es/components/Datagrid/Datagrid/DatagridRow.js +190 -0
  337. package/es/components/Datagrid/Datagrid/DatagridSelectAll.d.ts +10 -0
  338. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +115 -0
  339. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.d.ts +24 -0
  340. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +130 -0
  341. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.d.ts +10 -0
  342. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.js +39 -0
  343. package/es/components/Datagrid/Datagrid/DatagridToolbar.d.ts +18 -0
  344. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +192 -0
  345. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.d.ts +10 -0
  346. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +150 -0
  347. package/es/components/Datagrid/Datagrid/DraggableElement.d.ts +34 -0
  348. package/es/components/Datagrid/Datagrid/DraggableElement.js +94 -0
  349. package/es/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.d.ts +12 -0
  350. package/es/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +31 -0
  351. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.d.ts +18 -0
  352. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +43 -0
  353. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.d.ts +17 -0
  354. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +49 -0
  355. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.d.ts +29 -0
  356. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +95 -0
  357. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.d.ts +37 -0
  358. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +168 -0
  359. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.d.ts +19 -0
  360. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +198 -0
  361. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.d.ts +11 -0
  362. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +64 -0
  363. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/common.d.ts +1 -0
  364. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +10 -0
  365. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/index.d.ts +2 -0
  366. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.d.ts +36 -0
  367. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +321 -0
  368. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.d.ts +46 -0
  369. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +321 -0
  370. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.d.ts +46 -0
  371. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +184 -0
  372. package/es/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.d.ts +24 -0
  373. package/es/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +73 -0
  374. package/es/components/Datagrid/Datagrid/addons/Filtering/constants.d.ts +27 -0
  375. package/es/components/Datagrid/Datagrid/addons/Filtering/constants.js +31 -0
  376. package/es/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.d.ts +9 -0
  377. package/es/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +36 -0
  378. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/index.d.ts +4 -0
  379. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.d.ts +8 -0
  380. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +22 -0
  381. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.d.ts +28 -0
  382. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +475 -0
  383. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.d.ts +9 -0
  384. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +40 -0
  385. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.d.ts +7 -0
  386. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +26 -0
  387. package/es/components/Datagrid/Datagrid/addons/Filtering/index.d.ts +3 -0
  388. package/es/components/Datagrid/Datagrid/addons/Filtering/utils.d.ts +1 -0
  389. package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +99 -0
  390. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.d.ts +26 -0
  391. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +65 -0
  392. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/index.d.ts +1 -0
  393. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.d.ts +25 -0
  394. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +567 -0
  395. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/index.d.ts +1 -0
  396. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.d.ts +16 -0
  397. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +115 -0
  398. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.d.ts +1 -0
  399. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +27 -0
  400. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/index.d.ts +1 -0
  401. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.d.ts +7 -0
  402. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +38 -0
  403. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.d.ts +1 -0
  404. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +22 -0
  405. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.d.ts +10 -0
  406. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +250 -0
  407. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.d.ts +7 -0
  408. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +79 -0
  409. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.d.ts +19 -0
  410. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +88 -0
  411. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.d.ts +3 -0
  412. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +85 -0
  413. package/es/components/Datagrid/Datagrid/addons/RowSize/index.d.ts +1 -0
  414. package/es/components/Datagrid/Datagrid/addons/stateReducer.d.ts +31 -0
  415. package/es/components/Datagrid/Datagrid/addons/stateReducer.js +346 -0
  416. package/es/components/Datagrid/Datagrid/index.d.ts +7 -0
  417. package/es/components/Datagrid/common-column-ids.d.ts +7 -0
  418. package/es/components/Datagrid/common-column-ids.js +10 -0
  419. package/es/components/Datagrid/index.d.ts +29 -0
  420. package/es/components/Datagrid/types/index.d.ts +280 -0
  421. package/es/components/Datagrid/useActionsColumn.d.ts +9 -0
  422. package/es/components/Datagrid/useActionsColumn.js +167 -0
  423. package/es/components/Datagrid/useColumnCenterAlign.d.ts +9 -0
  424. package/es/components/Datagrid/useColumnCenterAlign.js +33 -0
  425. package/es/components/Datagrid/useColumnOrder.d.ts +8 -0
  426. package/es/components/Datagrid/useColumnOrder.js +9 -0
  427. package/es/components/Datagrid/useColumnRightAlign.d.ts +9 -0
  428. package/es/components/Datagrid/useColumnRightAlign.js +33 -0
  429. package/es/components/Datagrid/useCustomizeColumns.d.ts +9 -0
  430. package/es/components/Datagrid/useCustomizeColumns.js +45 -0
  431. package/es/components/Datagrid/useDatagrid.d.ts +9 -0
  432. package/es/components/Datagrid/useDatagrid.js +46 -0
  433. package/es/components/Datagrid/useDefaultStringRenderer.d.ts +2 -0
  434. package/es/components/Datagrid/useDefaultStringRenderer.js +39 -0
  435. package/es/components/Datagrid/useDisableSelectRows.d.ts +9 -0
  436. package/es/components/Datagrid/useDisableSelectRows.js +92 -0
  437. package/es/components/Datagrid/useEditableCell.d.ts +2 -0
  438. package/es/components/Datagrid/useEditableCell.js +14 -0
  439. package/es/components/Datagrid/useExpandedRow.d.ts +9 -0
  440. package/es/components/Datagrid/useExpandedRow.js +42 -0
  441. package/es/components/Datagrid/useFiltering.d.ts +10 -0
  442. package/es/components/Datagrid/useFiltering.js +102 -0
  443. package/es/components/Datagrid/useFlexResize.d.ts +2 -0
  444. package/es/components/Datagrid/useFlexResize.js +81 -0
  445. package/es/components/Datagrid/useFloatingScroll.d.ts +2 -0
  446. package/es/components/Datagrid/useFloatingScroll.js +79 -0
  447. package/es/components/Datagrid/useFocusRowExpander.d.ts +6 -0
  448. package/es/components/Datagrid/useFocusRowExpander.js +43 -0
  449. package/es/components/Datagrid/useInfiniteScroll.d.ts +9 -0
  450. package/es/components/Datagrid/useInfiniteScroll.js +55 -0
  451. package/es/components/Datagrid/useInitialColumnSort.d.ts +1 -0
  452. package/es/components/Datagrid/useInitialColumnSort.js +47 -0
  453. package/es/components/Datagrid/useInlineEdit.d.ts +9 -0
  454. package/es/components/Datagrid/useInlineEdit.js +69 -0
  455. package/es/components/Datagrid/useNestedRowExpander.d.ts +2 -0
  456. package/es/components/Datagrid/useNestedRowExpander.js +104 -0
  457. package/es/components/Datagrid/useNestedRows.d.ts +9 -0
  458. package/es/components/Datagrid/useNestedRows.js +98 -0
  459. package/es/components/Datagrid/useOnRowClick.d.ts +9 -0
  460. package/es/components/Datagrid/useOnRowClick.js +76 -0
  461. package/es/components/Datagrid/useParentDimensions.d.ts +2 -0
  462. package/es/components/Datagrid/useParentDimensions.js +57 -0
  463. package/es/components/Datagrid/useResizeTable.d.ts +2 -0
  464. package/es/components/Datagrid/useResizeTable.js +38 -0
  465. package/es/components/Datagrid/useRowExpander.d.ts +2 -0
  466. package/es/components/Datagrid/useRowExpander.js +74 -0
  467. package/es/components/Datagrid/useRowIsMouseOver.d.ts +9 -0
  468. package/es/components/Datagrid/useRowIsMouseOver.js +47 -0
  469. package/es/components/Datagrid/useRowRenderer.d.ts +2 -0
  470. package/es/components/Datagrid/useRowRenderer.js +58 -0
  471. package/es/components/Datagrid/useRowSize.d.ts +2 -0
  472. package/es/components/Datagrid/useRowSize.js +58 -0
  473. package/es/components/Datagrid/useSelectAllToggle.d.ts +9 -0
  474. package/es/components/Datagrid/useSelectAllToggle.js +94 -0
  475. package/es/components/Datagrid/useSelectRows.d.ts +9 -0
  476. package/es/components/Datagrid/useSelectRows.js +143 -0
  477. package/es/components/Datagrid/useSkeletonRows.d.ts +8 -0
  478. package/es/components/Datagrid/useSkeletonRows.js +33 -0
  479. package/es/components/Datagrid/useSortableColumns.d.ts +14 -0
  480. package/es/components/Datagrid/useSortableColumns.js +145 -0
  481. package/es/components/Datagrid/useStickyColumn.d.ts +9 -0
  482. package/es/components/Datagrid/useStickyColumn.js +187 -0
  483. package/es/components/Datagrid/utils/getAutoSizedColumnWidth.d.ts +8 -0
  484. package/es/components/Datagrid/utils/getAutoSizedColumnWidth.js +19 -0
  485. package/es/components/Decorator/Decorator.d.ts +5 -0
  486. package/es/components/Decorator/Decorator.js +112 -0
  487. package/es/components/Decorator/index.d.ts +1 -0
  488. package/es/components/DecoratorBase/DecoratorBase.d.ts +7 -0
  489. package/es/components/DecoratorBase/DecoratorBase.js +237 -0
  490. package/es/components/DecoratorBase/DecoratorIcon.d.ts +5 -0
  491. package/es/components/DecoratorBase/DecoratorIcon.js +95 -0
  492. package/es/components/DecoratorBase/index.d.ts +1 -0
  493. package/es/components/DecoratorBase/utils.d.ts +8 -0
  494. package/es/components/DecoratorBase/utils.js +45 -0
  495. package/es/components/DecoratorDualButton/DecoratorDualButton.d.ts +6 -0
  496. package/es/components/DecoratorDualButton/DecoratorDualButton.js +141 -0
  497. package/es/components/DecoratorDualButton/index.d.ts +1 -0
  498. package/es/components/DecoratorLink/DecoratorLink.d.ts +6 -0
  499. package/es/components/DecoratorLink/DecoratorLink.js +131 -0
  500. package/es/components/DecoratorLink/index.d.ts +1 -0
  501. package/es/components/DecoratorSingleButton/DecoratorSingleButton.d.ts +6 -0
  502. package/es/components/DecoratorSingleButton/DecoratorSingleButton.js +131 -0
  503. package/es/components/DecoratorSingleButton/index.d.ts +1 -0
  504. package/es/components/DelimitedList/DelimitedList.d.ts +30 -0
  505. package/es/components/DelimitedList/DelimitedList.js +71 -0
  506. package/es/components/DelimitedList/index.d.ts +8 -0
  507. package/es/components/DescriptionList/DescriptionList.d.ts +6 -0
  508. package/es/components/DescriptionList/DescriptionList.js +92 -0
  509. package/es/components/DescriptionList/DescriptionListBody.d.ts +2 -0
  510. package/es/components/DescriptionList/DescriptionListBody.js +39 -0
  511. package/es/components/DescriptionList/DescriptionListCell.d.ts +2 -0
  512. package/es/components/DescriptionList/DescriptionListCell.js +39 -0
  513. package/es/components/DescriptionList/DescriptionListRow.d.ts +2 -0
  514. package/es/components/DescriptionList/DescriptionListRow.js +41 -0
  515. package/es/components/DescriptionList/constants.d.ts +6 -0
  516. package/es/components/DescriptionList/constants.js +16 -0
  517. package/es/components/DescriptionList/index.d.ts +4 -0
  518. package/es/components/EditFullPage/EditFullPage.d.ts +24 -0
  519. package/es/components/EditFullPage/EditFullPage.js +99 -0
  520. package/es/components/EditFullPage/index.d.ts +8 -0
  521. package/es/components/EditInPlace/EditInPlace.d.ts +105 -0
  522. package/es/components/EditInPlace/EditInPlace.js +314 -0
  523. package/es/components/EditInPlace/index.d.ts +8 -0
  524. package/es/components/EditSidePanel/EditSidePanel.d.ts +96 -0
  525. package/es/components/EditSidePanel/EditSidePanel.js +200 -0
  526. package/es/components/EditSidePanel/index.d.ts +8 -0
  527. package/es/components/EditTearsheet/EditTearsheet.d.ts +89 -0
  528. package/es/components/EditTearsheet/EditTearsheet.js +225 -0
  529. package/es/components/EditTearsheet/EditTearsheetForm.d.ts +47 -0
  530. package/es/components/EditTearsheet/EditTearsheetForm.js +118 -0
  531. package/es/components/EditTearsheet/index.d.ts +2 -0
  532. package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.d.ts +23 -0
  533. package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.js +95 -0
  534. package/es/components/EditTearsheetNarrow/index.d.ts +8 -0
  535. package/es/components/EditUpdateCards/EditUpdateCards.d.ts +105 -0
  536. package/es/components/EditUpdateCards/EditUpdateCards.js +224 -0
  537. package/es/components/EditUpdateCards/index.d.ts +8 -0
  538. package/es/components/EmptyStates/EmptyState.d.ts +80 -0
  539. package/es/components/EmptyStates/EmptyState.js +137 -0
  540. package/es/components/EmptyStates/EmptyStateContent.d.ts +65 -0
  541. package/es/components/EmptyStates/EmptyStateContent.js +93 -0
  542. package/es/components/EmptyStates/EmptyStateIllustration.deprecated.d.ts +11 -0
  543. package/es/components/EmptyStates/EmptyStateIllustration.deprecated.js +50 -0
  544. package/es/components/EmptyStates/EmptyStateV2.deprecated.d.ts +67 -0
  545. package/es/components/EmptyStates/EmptyStateV2.deprecated.js +139 -0
  546. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.d.ts +21 -0
  547. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +123 -0
  548. package/es/components/EmptyStates/ErrorEmptyState/index.d.ts +8 -0
  549. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.d.ts +21 -0
  550. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +123 -0
  551. package/es/components/EmptyStates/NoDataEmptyState/index.d.ts +8 -0
  552. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.d.ts +21 -0
  553. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +123 -0
  554. package/es/components/EmptyStates/NoTagsEmptyState/index.d.ts +8 -0
  555. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.d.ts +21 -0
  556. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +121 -0
  557. package/es/components/EmptyStates/NotFoundEmptyState/index.d.ts +8 -0
  558. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.d.ts +21 -0
  559. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +121 -0
  560. package/es/components/EmptyStates/NotificationsEmptyState/index.d.ts +8 -0
  561. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.d.ts +21 -0
  562. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +125 -0
  563. package/es/components/EmptyStates/UnauthorizedEmptyState/index.d.ts +8 -0
  564. package/es/components/EmptyStates/assets/ErrorIllustration.d.ts +15 -0
  565. package/es/components/EmptyStates/assets/ErrorIllustration.js +217 -0
  566. package/es/components/EmptyStates/assets/NoDataIllustration.d.ts +15 -0
  567. package/es/components/EmptyStates/assets/NoDataIllustration.js +180 -0
  568. package/es/components/EmptyStates/assets/NoTagsIllustration.d.ts +15 -0
  569. package/es/components/EmptyStates/assets/NoTagsIllustration.js +487 -0
  570. package/es/components/EmptyStates/assets/NotFoundIllustration.d.ts +15 -0
  571. package/es/components/EmptyStates/assets/NotFoundIllustration.js +364 -0
  572. package/es/components/EmptyStates/assets/NotificationsIllustration.d.ts +15 -0
  573. package/es/components/EmptyStates/assets/NotificationsIllustration.js +334 -0
  574. package/es/components/EmptyStates/assets/UnauthorizedIllustration.d.ts +15 -0
  575. package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +308 -0
  576. package/es/components/EmptyStates/index.d.ts +22 -0
  577. package/es/components/ExportModal/ExportModal.d.ts +116 -0
  578. package/es/components/ExportModal/ExportModal.js +300 -0
  579. package/es/components/ExportModal/index.d.ts +2 -0
  580. package/es/components/ExpressiveCard/ExpressiveCard.d.ts +95 -0
  581. package/es/components/ExpressiveCard/ExpressiveCard.js +136 -0
  582. package/es/components/ExpressiveCard/index.d.ts +2 -0
  583. package/es/components/FeatureFlags/index.d.ts +59 -0
  584. package/es/components/FeatureFlags/index.js +184 -0
  585. package/es/components/FilterPanel/FilterPanel.d.ts +6 -0
  586. package/es/components/FilterPanel/FilterPanel.js +61 -0
  587. package/es/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.d.ts +6 -0
  588. package/es/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +88 -0
  589. package/es/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.d.ts +6 -0
  590. package/es/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +94 -0
  591. package/es/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.d.ts +11 -0
  592. package/es/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +81 -0
  593. package/es/components/FilterPanel/FilterPanelCheckbox/index.d.ts +1 -0
  594. package/es/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.d.ts +11 -0
  595. package/es/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +156 -0
  596. package/es/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.d.ts +6 -0
  597. package/es/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +77 -0
  598. package/es/components/FilterPanel/FilterPanelGroup/index.d.ts +1 -0
  599. package/es/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.d.ts +5 -0
  600. package/es/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +63 -0
  601. package/es/components/FilterPanel/FilterPanelLabel/index.d.ts +1 -0
  602. package/es/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.d.ts +6 -0
  603. package/es/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +92 -0
  604. package/es/components/FilterPanel/index.d.ts +8 -0
  605. package/es/components/FilterSummary/FilterSummary.d.ts +23 -0
  606. package/es/components/FilterSummary/FilterSummary.js +141 -0
  607. package/es/components/FilterSummary/index.d.ts +8 -0
  608. package/es/components/FullPageError/FullPageError.d.ts +39 -0
  609. package/es/components/FullPageError/FullPageError.js +131 -0
  610. package/es/components/FullPageError/assets/Error403SVG.d.ts +9 -0
  611. package/es/components/FullPageError/assets/Error403SVG.js +717 -0
  612. package/es/components/FullPageError/assets/Error404SVG.d.ts +9 -0
  613. package/es/components/FullPageError/assets/Error404SVG.js +626 -0
  614. package/es/components/FullPageError/assets/ErrorGenericSVG.d.ts +9 -0
  615. package/es/components/FullPageError/assets/ErrorGenericSVG.js +717 -0
  616. package/es/components/FullPageError/index.d.ts +8 -0
  617. package/es/components/GetStartedCard/GetStartedCard.d.ts +63 -0
  618. package/es/components/GetStartedCard/GetStartedCard.js +82 -0
  619. package/es/components/GetStartedCard/index.d.ts +8 -0
  620. package/es/components/Guidebanner/Guidebanner.d.ts +73 -0
  621. package/es/components/Guidebanner/Guidebanner.js +216 -0
  622. package/es/components/Guidebanner/GuidebannerElement.d.ts +31 -0
  623. package/es/components/Guidebanner/GuidebannerElement.js +70 -0
  624. package/es/components/Guidebanner/GuidebannerElementButton.d.ts +30 -0
  625. package/es/components/Guidebanner/GuidebannerElementButton.js +83 -0
  626. package/es/components/Guidebanner/GuidebannerElementLink.d.ts +21 -0
  627. package/es/components/Guidebanner/GuidebannerElementLink.js +55 -0
  628. package/es/components/Guidebanner/index.d.ts +14 -0
  629. package/es/components/HTTPErrors/HTTPError403/HTTPError403.d.ts +45 -0
  630. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +96 -0
  631. package/es/components/HTTPErrors/HTTPError403/index.d.ts +1 -0
  632. package/es/components/HTTPErrors/HTTPError404/HTTPError404.d.ts +45 -0
  633. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +96 -0
  634. package/es/components/HTTPErrors/HTTPError404/index.d.ts +1 -0
  635. package/es/components/HTTPErrors/HTTPErrorContent.d.ts +18 -0
  636. package/es/components/HTTPErrors/HTTPErrorContent.js +76 -0
  637. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.d.ts +45 -0
  638. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +96 -0
  639. package/es/components/HTTPErrors/HTTPErrorOther/index.d.ts +1 -0
  640. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.d.ts +11 -0
  641. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +1250 -0
  642. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.d.ts +11 -0
  643. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +1049 -0
  644. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.d.ts +11 -0
  645. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1100 -0
  646. package/es/components/HTTPErrors/index.d.ts +3 -0
  647. package/es/components/ImportModal/ImportModal.d.ts +136 -0
  648. package/es/components/ImportModal/ImportModal.js +351 -0
  649. package/es/components/ImportModal/index.d.ts +2 -0
  650. package/es/components/InlineTip/InlineTip.d.ts +86 -0
  651. package/es/components/InlineTip/InlineTip.js +197 -0
  652. package/es/components/InlineTip/InlineTipButton.d.ts +24 -0
  653. package/es/components/InlineTip/InlineTipButton.js +53 -0
  654. package/es/components/InlineTip/InlineTipLink.d.ts +21 -0
  655. package/es/components/InlineTip/InlineTipLink.js +57 -0
  656. package/es/components/InlineTip/index.d.ts +12 -0
  657. package/es/components/InlineTip/utils.d.ts +1 -0
  658. package/es/components/InlineTip/utils.js +36 -0
  659. package/es/components/InterstitialScreen/InterstitialScreen.d.ts +54 -0
  660. package/es/components/InterstitialScreen/InterstitialScreen.js +197 -0
  661. package/es/components/InterstitialScreen/InterstitialScreenBody.d.ts +33 -0
  662. package/es/components/InterstitialScreen/InterstitialScreenBody.js +117 -0
  663. package/es/components/InterstitialScreen/InterstitialScreenFooter.d.ts +47 -0
  664. package/es/components/InterstitialScreen/InterstitialScreenFooter.js +170 -0
  665. package/es/components/InterstitialScreen/InterstitialScreenHeader.d.ts +41 -0
  666. package/es/components/InterstitialScreen/InterstitialScreenHeader.js +107 -0
  667. package/es/components/InterstitialScreen/InterstitialScreenView.d.ts +29 -0
  668. package/es/components/InterstitialScreen/InterstitialScreenView.js +60 -0
  669. package/es/components/InterstitialScreen/_story-assets/InterstitialScreenViewModule/InterstitialScreenViewModule.d.ts +33 -0
  670. package/es/components/InterstitialScreen/context.d.ts +31 -0
  671. package/es/components/InterstitialScreen/context.js +18 -0
  672. package/es/components/InterstitialScreen/index.d.ts +13 -0
  673. package/es/components/MultiAddSelect/MultiAddSelect.d.ts +145 -0
  674. package/es/components/MultiAddSelect/MultiAddSelect.js +157 -0
  675. package/es/components/MultiAddSelect/index.d.ts +2 -0
  676. package/es/components/Nav/Nav.d.ts +6 -0
  677. package/es/components/Nav/Nav.js +158 -0
  678. package/es/components/Nav/NavItem.d.ts +35 -0
  679. package/es/components/Nav/NavItem.js +153 -0
  680. package/es/components/Nav/NavItemLink.d.ts +3 -0
  681. package/es/components/Nav/NavItemLink.js +27 -0
  682. package/es/components/Nav/NavList.d.ts +4 -0
  683. package/es/components/Nav/NavList.js +161 -0
  684. package/es/components/Nav/index.d.ts +3 -0
  685. package/es/components/NonLinearReading/NonLinearReading.d.ts +33 -0
  686. package/es/components/NonLinearReading/NonLinearReading.js +80 -0
  687. package/es/components/NonLinearReading/index.d.ts +8 -0
  688. package/es/components/NotificationsPanel/NotificationsPanel.d.ts +223 -0
  689. package/es/components/NotificationsPanel/NotificationsPanel.js +590 -0
  690. package/es/components/NotificationsPanel/index.d.ts +8 -0
  691. package/es/components/NotificationsPanel/utils.d.ts +15 -0
  692. package/es/components/NotificationsPanel/utils.js +54 -0
  693. package/es/components/OptionsTile/OptionsTile.d.ts +77 -0
  694. package/es/components/OptionsTile/OptionsTile.js +292 -0
  695. package/es/components/OptionsTile/index.d.ts +8 -0
  696. package/es/components/PageHeader/PageHeader.d.ts +305 -0
  697. package/es/components/PageHeader/PageHeader.js +856 -0
  698. package/es/components/PageHeader/PageHeaderTitle.d.ts +16 -0
  699. package/es/components/PageHeader/PageHeaderTitle.js +145 -0
  700. package/es/components/PageHeader/PageHeaderUtils.d.ts +7 -0
  701. package/es/components/PageHeader/PageHeaderUtils.js +191 -0
  702. package/es/components/PageHeader/index.d.ts +2 -0
  703. package/es/components/PageHeader/next/PageHeader.d.ts +292 -0
  704. package/es/components/PageHeader/next/PageHeader.js +772 -0
  705. package/es/components/PageHeader/next/_story-assets/pageActionButtonItems.d.ts +15 -0
  706. package/es/components/PageHeader/next/context.d.ts +29 -0
  707. package/es/components/PageHeader/next/context.js +33 -0
  708. package/es/components/PageHeader/next/index.d.ts +8 -0
  709. package/es/components/PageHeader/next/index.js +8 -0
  710. package/es/components/PageHeader/next/overflowHandler.d.ts +100 -0
  711. package/es/components/PageHeader/next/overflowHandler.js +170 -0
  712. package/es/components/PageHeader/next/utils.d.ts +19 -0
  713. package/es/components/PageHeader/next/utils.js +68 -0
  714. package/es/components/ProductiveCard/ProductiveCard.d.ts +125 -0
  715. package/es/components/ProductiveCard/ProductiveCard.js +169 -0
  716. package/es/components/ProductiveCard/index.d.ts +2 -0
  717. package/es/components/RemoveModal/RemoveModal.d.ts +83 -0
  718. package/es/components/RemoveModal/RemoveModal.js +198 -0
  719. package/es/components/RemoveModal/index.d.ts +2 -0
  720. package/es/components/Saving/Saving.d.ts +69 -0
  721. package/es/components/Saving/Saving.js +155 -0
  722. package/es/components/Saving/index.d.ts +2 -0
  723. package/es/components/ScrollGradient/ScrollGradient.d.ts +5 -0
  724. package/es/components/ScrollGradient/ScrollGradient.js +211 -0
  725. package/es/components/ScrollGradient/constants.d.ts +10 -0
  726. package/es/components/ScrollGradient/constants.js +66 -0
  727. package/es/components/ScrollGradient/index.d.ts +1 -0
  728. package/es/components/SearchBar/SearchBar.d.ts +60 -0
  729. package/es/components/SearchBar/SearchBar.js +213 -0
  730. package/es/components/SearchBar/index.d.ts +8 -0
  731. package/es/components/SidePanel/SidePanel.d.ts +168 -0
  732. package/es/components/SidePanel/SidePanel.js +726 -0
  733. package/es/components/SidePanel/constants.d.ts +14 -0
  734. package/es/components/SidePanel/constants.js +17 -0
  735. package/es/components/SidePanel/index.d.ts +8 -0
  736. package/es/components/SimpleHeader/SimpleHeader.d.ts +34 -0
  737. package/es/components/SimpleHeader/SimpleHeader.js +93 -0
  738. package/es/components/SingleAddSelect/SingleAddSelect.d.ts +75 -0
  739. package/es/components/SingleAddSelect/SingleAddSelect.js +106 -0
  740. package/es/components/SingleAddSelect/index.d.ts +2 -0
  741. package/es/components/StatusIcon/StatusIcon.d.ts +43 -0
  742. package/es/components/StatusIcon/StatusIcon.js +272 -0
  743. package/es/components/StatusIcon/index.d.ts +8 -0
  744. package/es/components/StatusIndicator/StatusIndicator.d.ts +6 -0
  745. package/es/components/StatusIndicator/StatusIndicator.js +102 -0
  746. package/es/components/StatusIndicator/StatusIndicatorStep.d.ts +6 -0
  747. package/es/components/StatusIndicator/StatusIndicatorStep.js +92 -0
  748. package/es/components/StatusIndicator/index.d.ts +2 -0
  749. package/es/components/StepFlow/StepContext.d.ts +14 -0
  750. package/es/components/StepFlow/StepGroup.d.ts +10 -0
  751. package/es/components/StepFlow/index.d.ts +9 -0
  752. package/es/components/StepFlow/story-assets/SidePanel/Example.d.ts +8 -0
  753. package/es/components/StepFlow/story-assets/SidePanel/StepSidePanel.d.ts +21 -0
  754. package/es/components/StepFlow/story-assets/StepActions.d.ts +23 -0
  755. package/es/components/StepFlow/story-assets/Tearsheet/Example.d.ts +8 -0
  756. package/es/components/StepFlow/story-assets/Tearsheet/StepTearsheet.d.ts +20 -0
  757. package/es/components/StepFlow/types.d.ts +22 -0
  758. package/es/components/StringFormatter/StringFormatter.d.ts +6 -0
  759. package/es/components/StringFormatter/StringFormatter.js +120 -0
  760. package/es/components/StringFormatter/index.d.ts +1 -0
  761. package/es/components/StringFormatter/utils/enums.d.ts +33 -0
  762. package/es/components/StringFormatter/utils/enums.js +50 -0
  763. package/es/components/TagOverflow/TagOverflow.d.ts +54 -0
  764. package/es/components/TagOverflow/TagOverflow.js +235 -0
  765. package/es/components/TagOverflow/TagOverflowModal.d.ts +39 -0
  766. package/es/components/TagOverflow/TagOverflowModal.js +118 -0
  767. package/es/components/TagOverflow/TagOverflowPopover.d.ts +16 -0
  768. package/es/components/TagOverflow/TagOverflowPopover.js +169 -0
  769. package/es/components/TagOverflow/constants.d.ts +14 -0
  770. package/es/components/TagOverflow/constants.js +30 -0
  771. package/es/components/TagOverflow/index.d.ts +8 -0
  772. package/es/components/TagSet/TagSet.d.ts +101 -0
  773. package/es/components/TagSet/TagSet.js +355 -0
  774. package/es/components/TagSet/TagSetModal.d.ts +32 -0
  775. package/es/components/TagSet/TagSetModal.js +116 -0
  776. package/es/components/TagSet/TagSetOverflow.d.ts +57 -0
  777. package/es/components/TagSet/TagSetOverflow.js +192 -0
  778. package/es/components/TagSet/index.d.ts +2 -0
  779. package/es/components/Tearsheet/Tearsheet.d.ts +155 -0
  780. package/es/components/Tearsheet/Tearsheet.js +198 -0
  781. package/es/components/Tearsheet/TearsheetNarrow.d.ts +119 -0
  782. package/es/components/Tearsheet/TearsheetNarrow.js +158 -0
  783. package/es/components/Tearsheet/TearsheetShell.d.ts +155 -0
  784. package/es/components/Tearsheet/TearsheetShell.js +511 -0
  785. package/es/components/Tearsheet/index.d.ts +10 -0
  786. package/es/components/Tearsheet/next/StackContext.d.ts +21 -0
  787. package/es/components/Tearsheet/next/StackContext.js +94 -0
  788. package/es/components/Tearsheet/next/Tearsheet.d.ts +96 -0
  789. package/es/components/Tearsheet/next/Tearsheet.js +165 -0
  790. package/es/components/Tearsheet/next/TearsheetBody.d.ts +73 -0
  791. package/es/components/Tearsheet/next/TearsheetBody.js +133 -0
  792. package/es/components/Tearsheet/next/TearsheetHeader.d.ts +65 -0
  793. package/es/components/Tearsheet/next/TearsheetHeader.js +121 -0
  794. package/es/components/Tearsheet/next/TearsheetHeaderActions.d.ts +54 -0
  795. package/es/components/Tearsheet/next/TearsheetHeaderActions.js +106 -0
  796. package/es/components/Tearsheet/next/TearsheetHeaderContent.d.ts +42 -0
  797. package/es/components/Tearsheet/next/TearsheetHeaderContent.js +54 -0
  798. package/es/components/Tearsheet/next/_story-assets/StepTearsheet.d.ts +23 -0
  799. package/es/components/Tearsheet/next/context.d.ts +26 -0
  800. package/es/components/Tearsheet/next/context.js +26 -0
  801. package/es/components/Tearsheet/next/index.d.ts +14 -0
  802. package/es/components/Toolbar/Toolbar.d.ts +24 -0
  803. package/es/components/Toolbar/Toolbar.js +105 -0
  804. package/es/components/Toolbar/ToolbarButton.d.ts +34 -0
  805. package/es/components/Toolbar/ToolbarButton.js +65 -0
  806. package/es/components/Toolbar/ToolbarGroup.d.ts +17 -0
  807. package/es/components/Toolbar/ToolbarGroup.js +35 -0
  808. package/es/components/Toolbar/index.d.ts +12 -0
  809. package/es/components/TooltipTrigger/TooltipTrigger.d.ts +18 -0
  810. package/es/components/TooltipTrigger/TooltipTrigger.js +62 -0
  811. package/es/components/TooltipTrigger/index.d.ts +1 -0
  812. package/es/components/TruncatedList/TruncatedList.d.ts +51 -0
  813. package/es/components/TruncatedList/TruncatedList.js +160 -0
  814. package/es/components/TruncatedList/index.d.ts +8 -0
  815. package/es/components/TruncatedText/TruncatedText.d.ts +47 -0
  816. package/es/components/TruncatedText/TruncatedText.js +87 -0
  817. package/es/components/TruncatedText/index.d.ts +8 -0
  818. package/es/components/TruncatedText/useTruncatedText.d.ts +16 -0
  819. package/es/components/TruncatedText/useTruncatedText.js +41 -0
  820. package/es/components/UserAvatar/UserAvatar.d.ts +60 -0
  821. package/es/components/UserAvatar/UserAvatar.js +162 -0
  822. package/es/components/UserAvatar/index.d.ts +1 -0
  823. package/es/components/UserProfileImage/UserProfileImage.d.ts +69 -0
  824. package/es/components/UserProfileImage/UserProfileImage.js +171 -0
  825. package/es/components/UserProfileImage/index.d.ts +2 -0
  826. package/es/components/WebTerminal/WebTerminal.d.ts +52 -0
  827. package/es/components/WebTerminal/WebTerminal.js +202 -0
  828. package/es/components/WebTerminal/WebTerminalContentWrapper.d.ts +14 -0
  829. package/es/components/WebTerminal/WebTerminalContentWrapper.js +50 -0
  830. package/es/components/WebTerminal/hooks/index.d.ts +17 -0
  831. package/es/components/WebTerminal/hooks/index.js +47 -0
  832. package/es/components/WebTerminal/index.d.ts +11 -0
  833. package/es/components/_Canary/Canary.d.ts +12 -0
  834. package/es/components/_Canary/Canary.js +49 -0
  835. package/es/components/_Canary/index.d.ts +1 -0
  836. package/es/components/index.d.ts +88 -0
  837. package/es/global/js/hooks/index.d.ts +16 -0
  838. package/es/global/js/hooks/useActiveElement.d.ts +1 -0
  839. package/es/global/js/hooks/useActiveElement.js +24 -0
  840. package/es/global/js/hooks/useClickOutside.d.ts +1 -0
  841. package/es/global/js/hooks/useClickOutside.js +24 -0
  842. package/es/global/js/hooks/useCollapsible.d.ts +19 -0
  843. package/es/global/js/hooks/useCollapsible.js +68 -0
  844. package/es/global/js/hooks/useControllableState.d.ts +15 -0
  845. package/es/global/js/hooks/useControllableState.js +30 -0
  846. package/es/global/js/hooks/useCreateComponentFocus.d.ts +7 -0
  847. package/es/global/js/hooks/useCreateComponentFocus.js +72 -0
  848. package/es/global/js/hooks/useCreateComponentStepChange.d.ts +26 -0
  849. package/es/global/js/hooks/useCreateComponentStepChange.js +174 -0
  850. package/es/global/js/hooks/useFocus.d.ts +15 -0
  851. package/es/global/js/hooks/useFocus.js +98 -0
  852. package/es/global/js/hooks/useIsomorphicEffect.d.ts +8 -0
  853. package/es/global/js/hooks/useIsomorphicEffect.js +13 -0
  854. package/es/global/js/hooks/useMatchMedia.d.ts +13 -0
  855. package/es/global/js/hooks/useMatchMedia.js +33 -0
  856. package/es/global/js/hooks/useOverflowItems/index.d.ts +7 -0
  857. package/es/global/js/hooks/useOverflowItems/useOverflowItems.d.ts +21 -0
  858. package/es/global/js/hooks/useOverflowItems/useOverflowItems.js +111 -0
  859. package/es/global/js/hooks/useOverflowString.d.ts +9 -0
  860. package/es/global/js/hooks/useOverflowString.js +41 -0
  861. package/es/global/js/hooks/usePortalTarget.d.ts +1 -0
  862. package/es/global/js/hooks/usePortalTarget.js +29 -0
  863. package/es/global/js/hooks/usePrefersReducedMotion.d.ts +1 -0
  864. package/es/global/js/hooks/usePrefersReducedMotion.js +33 -0
  865. package/es/global/js/hooks/usePrefix.d.ts +1 -0
  866. package/es/global/js/hooks/usePrefix.js +12 -0
  867. package/es/global/js/hooks/usePresence.d.ts +33 -0
  868. package/es/global/js/hooks/usePresence.js +59 -0
  869. package/es/global/js/hooks/usePreviousValue.d.ts +1 -0
  870. package/es/global/js/hooks/usePreviousValue.js +23 -0
  871. package/es/global/js/hooks/useResetCreateComponent.d.ts +10 -0
  872. package/es/global/js/hooks/useResetCreateComponent.js +52 -0
  873. package/es/global/js/hooks/useResizeObserver.d.ts +11 -0
  874. package/es/global/js/hooks/useResizeObserver.js +74 -0
  875. package/es/global/js/hooks/useRetrieveFormTitles.d.ts +5 -0
  876. package/es/global/js/hooks/useRetrieveFormTitles.js +31 -0
  877. package/es/global/js/hooks/useRetrieveStepData.d.ts +9 -0
  878. package/es/global/js/hooks/useRetrieveStepData.js +54 -0
  879. package/es/global/js/hooks/useValidCreateStepCount.d.ts +1 -0
  880. package/es/global/js/hooks/useValidCreateStepCount.js +23 -0
  881. package/es/global/js/hooks/useWindowResize.d.ts +1 -0
  882. package/es/global/js/hooks/useWindowResize.js +68 -0
  883. package/es/global/js/hooks/useWindowScroll.d.ts +3 -0
  884. package/es/global/js/hooks/useWindowScroll.js +75 -0
  885. package/es/global/js/package-settings.d.ts +150 -0
  886. package/es/global/js/package-settings.js +246 -0
  887. package/es/global/js/utils/Wrap.d.ts +49 -0
  888. package/es/global/js/utils/Wrap.js +88 -0
  889. package/es/global/js/utils/carousel/carousel.d.ts +14 -0
  890. package/es/global/js/utils/carousel/index.d.ts +8 -0
  891. package/es/global/js/utils/carousel/swipeEvents.d.ts +7 -0
  892. package/es/global/js/utils/carousel/types.d.ts +38 -0
  893. package/es/global/js/utils/checkForOverflow.d.ts +5 -0
  894. package/es/global/js/utils/checkForOverflow.js +21 -0
  895. package/es/global/js/utils/clamp.d.ts +7 -0
  896. package/es/global/js/utils/clamp.js +25 -0
  897. package/es/global/js/utils/debounce.d.ts +7 -0
  898. package/es/global/js/utils/debounce.js +30 -0
  899. package/es/global/js/utils/deepCloneObject.d.ts +1 -0
  900. package/es/global/js/utils/deepCloneObject.js +24 -0
  901. package/es/global/js/utils/deepCompareObject.d.ts +7 -0
  902. package/es/global/js/utils/deepCompareObject.js +38 -0
  903. package/es/global/js/utils/devtools.d.ts +6 -0
  904. package/es/global/js/utils/devtools.js +16 -0
  905. package/es/global/js/utils/getFocusableElements.d.ts +1 -0
  906. package/es/global/js/utils/getFocusableElements.js +13 -0
  907. package/es/global/js/utils/getNodeTextContent.d.ts +1 -0
  908. package/es/global/js/utils/getNodeTextContent.js +52 -0
  909. package/es/global/js/utils/getNumberOfHiddenSteps.d.ts +1 -0
  910. package/es/global/js/utils/getNumberOfHiddenSteps.js +21 -0
  911. package/es/global/js/utils/getScrollbarWidth.d.ts +1 -0
  912. package/es/global/js/utils/getScrollbarWidth.js +17 -0
  913. package/es/global/js/utils/getSupportedLocale.d.ts +12 -0
  914. package/es/global/js/utils/getSupportedLocale.js +29 -0
  915. package/es/global/js/utils/lastIndexInArray.d.ts +1 -0
  916. package/es/global/js/utils/lastIndexInArray.js +25 -0
  917. package/es/global/js/utils/makeDraggable/index.d.ts +1 -0
  918. package/es/global/js/utils/makeDraggable/makeDraggable.d.ts +38 -0
  919. package/es/global/js/utils/makeDraggable/makeDraggable.js +145 -0
  920. package/es/global/js/utils/makeDraggable/makeDraggable.stories.d.ts +22 -0
  921. package/es/global/js/utils/pconsole.d.ts +15 -0
  922. package/es/global/js/utils/pconsole.js +35 -0
  923. package/es/global/js/utils/props-helper.d.ts +31 -0
  924. package/es/global/js/utils/props-helper.js +149 -0
  925. package/es/global/js/utils/rangeWithCallback.d.ts +1 -0
  926. package/es/global/js/utils/rangeWithCallback.js +16 -0
  927. package/es/global/js/utils/scrollableAncestor.d.ts +1 -0
  928. package/es/global/js/utils/scrollableAncestor.js +46 -0
  929. package/es/global/js/utils/throttle.d.ts +7 -0
  930. package/es/global/js/utils/throttle.js +19 -0
  931. package/es/global/js/utils/useId.d.ts +6 -0
  932. package/es/global/js/utils/useId.js +32 -0
  933. package/es/global/js/utils/uuidv4.d.ts +8 -0
  934. package/es/global/js/utils/uuidv4.js +16 -0
  935. package/es/global/js/utils/wait.d.ts +8 -0
  936. package/es/global/js/utils/wait.js +14 -0
  937. package/es/index.d.ts +9 -0
  938. package/es/index.js +153 -0
  939. package/es/node_modules/@carbon/colors/es/index.js +14 -0
  940. package/es/node_modules/@carbon/icon-helpers/es/index.js +125 -0
  941. package/es/node_modules/@carbon/icons-react/es/Icon.js +71 -0
  942. package/es/node_modules/@carbon/icons-react/es/generated/bucket-10.js +2986 -0
  943. package/es/node_modules/@carbon/icons-react/es/generated/bucket-3.js +3177 -0
  944. package/es/node_modules/@carbon/icons-react/es/iconPropTypes-C5chbmyn.js +14 -0
  945. package/es/node_modules/@floating-ui/core/dist/floating-ui.core.js +592 -0
  946. package/es/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +713 -0
  947. package/es/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +95 -0
  948. package/es/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +161 -0
  949. package/es/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +142 -0
  950. package/es/node_modules/object-assign/index.js +89 -0
  951. package/es/node_modules/prop-types/checkPropTypes.js +95 -0
  952. package/es/node_modules/prop-types/factoryWithThrowingShims.js +64 -0
  953. package/es/node_modules/prop-types/factoryWithTypeCheckers.js +561 -0
  954. package/es/node_modules/prop-types/index.js +32 -0
  955. package/es/node_modules/prop-types/lib/ReactPropTypesSecret.js +18 -0
  956. package/es/node_modules/prop-types/lib/has.js +17 -0
  957. package/es/settings.d.ts +133 -0
  958. package/es/settings.js +85 -0
  959. package/lib/_virtual/_commonjsHelpers.js +14 -0
  960. package/lib/_virtual/_rollupPluginBabelHelpers.js +20 -0
  961. package/lib/_virtual/index.js +19 -0
  962. package/lib/_virtual/index2.js +12 -0
  963. package/lib/components/APIKeyModal/APIKeyDownloader.d.ts +64 -0
  964. package/lib/components/APIKeyModal/APIKeyDownloader.js +82 -0
  965. package/lib/components/APIKeyModal/APIKeyModal.d.ts +15 -0
  966. package/lib/components/APIKeyModal/APIKeyModal.js +536 -0
  967. package/lib/components/APIKeyModal/APIKeyModal.types.d.ts +234 -0
  968. package/lib/components/APIKeyModal/index.d.ts +2 -0
  969. package/lib/components/AboutModal/AboutModal.d.ts +73 -0
  970. package/lib/components/AboutModal/AboutModal.js +179 -0
  971. package/lib/components/AboutModal/index.d.ts +8 -0
  972. package/lib/components/ActionBar/ActionBar.d.ts +65 -0
  973. package/lib/components/ActionBar/ActionBar.js +173 -0
  974. package/lib/components/ActionBar/ActionBarItem.d.ts +39 -0
  975. package/lib/components/ActionBar/ActionBarItem.js +102 -0
  976. package/lib/components/ActionBar/ActionBarOverflowItems.d.ts +65 -0
  977. package/lib/components/ActionBar/ActionBarOverflowItems.js +94 -0
  978. package/lib/components/ActionBar/index.d.ts +2 -0
  979. package/lib/components/ActionSet/ActionSet.d.ts +52 -0
  980. package/lib/components/ActionSet/ActionSet.js +215 -0
  981. package/lib/components/ActionSet/index.d.ts +8 -0
  982. package/lib/components/AddSelect/AddSelect.d.ts +45 -0
  983. package/lib/components/AddSelect/AddSelect.js +126 -0
  984. package/lib/components/AddSelect/AddSelectBody.d.ts +45 -0
  985. package/lib/components/AddSelect/AddSelectBody.js +369 -0
  986. package/lib/components/AddSelect/AddSelectBreadcrumbs.d.ts +16 -0
  987. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +57 -0
  988. package/lib/components/AddSelect/AddSelectColumn.d.ts +31 -0
  989. package/lib/components/AddSelect/AddSelectColumn.js +240 -0
  990. package/lib/components/AddSelect/AddSelectFilter.d.ts +40 -0
  991. package/lib/components/AddSelect/AddSelectFilter.js +166 -0
  992. package/lib/components/AddSelect/AddSelectFormControl.d.ts +18 -0
  993. package/lib/components/AddSelect/AddSelectFormControl.js +100 -0
  994. package/lib/components/AddSelect/AddSelectList.d.ts +16 -0
  995. package/lib/components/AddSelect/AddSelectList.js +55 -0
  996. package/lib/components/AddSelect/AddSelectMetaPanel.d.ts +18 -0
  997. package/lib/components/AddSelect/AddSelectMetaPanel.js +68 -0
  998. package/lib/components/AddSelect/AddSelectRow.d.ts +51 -0
  999. package/lib/components/AddSelect/AddSelectRow.js +232 -0
  1000. package/lib/components/AddSelect/AddSelectSidebar.d.ts +34 -0
  1001. package/lib/components/AddSelect/AddSelectSidebar.js +133 -0
  1002. package/lib/components/AddSelect/AddSelectSort.d.ts +17 -0
  1003. package/lib/components/AddSelect/AddSelectSort.js +81 -0
  1004. package/lib/components/AddSelect/add-select-utils.d.ts +4 -0
  1005. package/lib/components/AddSelect/add-select-utils.js +133 -0
  1006. package/lib/components/AddSelect/hooks/useFocus.d.ts +2 -0
  1007. package/lib/components/AddSelect/hooks/useFocus.js +40 -0
  1008. package/lib/components/AddSelect/hooks/useItemSort.d.ts +6 -0
  1009. package/lib/components/AddSelect/hooks/useItemSort.js +29 -0
  1010. package/lib/components/AddSelect/hooks/useParentSelect.d.ts +5 -0
  1011. package/lib/components/AddSelect/hooks/useParentSelect.js +28 -0
  1012. package/lib/components/AddSelect/hooks/usePath.d.ts +10 -0
  1013. package/lib/components/AddSelect/hooks/usePath.js +71 -0
  1014. package/lib/components/AddSelect/index.d.ts +2 -0
  1015. package/lib/components/AddSelect/types/index.d.ts +51 -0
  1016. package/lib/components/BigNumber/BigNumber.d.ts +34 -0
  1017. package/lib/components/BigNumber/BigNumber.js +179 -0
  1018. package/lib/components/BigNumber/BigNumberSkeleton.d.ts +17 -0
  1019. package/lib/components/BigNumber/BigNumberSkeleton.js +68 -0
  1020. package/lib/components/BigNumber/constants.d.ts +19 -0
  1021. package/lib/components/BigNumber/constants.js +50 -0
  1022. package/lib/components/BigNumber/index.d.ts +8 -0
  1023. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.d.ts +25 -0
  1024. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +332 -0
  1025. package/lib/components/BreadcrumbWithOverflow/index.d.ts +1 -0
  1026. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.d.ts +22 -0
  1027. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +203 -0
  1028. package/lib/components/ButtonSetWithOverflow/index.d.ts +1 -0
  1029. package/lib/components/Card/Card.d.ts +78 -0
  1030. package/lib/components/Card/Card.js +360 -0
  1031. package/lib/components/Card/CardFooter.d.ts +52 -0
  1032. package/lib/components/Card/CardFooter.js +100 -0
  1033. package/lib/components/Card/CardHeader.d.ts +78 -0
  1034. package/lib/components/Card/CardHeader.js +164 -0
  1035. package/lib/components/Card/index.d.ts +3 -0
  1036. package/lib/components/Carousel/Carousel.d.ts +72 -0
  1037. package/lib/components/Carousel/Carousel.js +379 -0
  1038. package/lib/components/Carousel/CarouselItem.d.ts +22 -0
  1039. package/lib/components/Carousel/CarouselItem.js +54 -0
  1040. package/lib/components/Carousel/index.d.ts +9 -0
  1041. package/lib/components/Cascade/Cascade.d.ts +25 -0
  1042. package/lib/components/Cascade/Cascade.js +100 -0
  1043. package/lib/components/Cascade/index.d.ts +2 -0
  1044. package/lib/components/Checklist/Checklist.d.ts +105 -0
  1045. package/lib/components/Checklist/Checklist.js +274 -0
  1046. package/lib/components/Checklist/Checklist.types.d.ts +19 -0
  1047. package/lib/components/Checklist/Checklist.types.js +25 -0
  1048. package/lib/components/Checklist/ChecklistChart.d.ts +9 -0
  1049. package/lib/components/Checklist/ChecklistChart.js +80 -0
  1050. package/lib/components/Checklist/ChecklistIcon.d.ts +9 -0
  1051. package/lib/components/Checklist/ChecklistIcon.js +102 -0
  1052. package/lib/components/Checklist/index.d.ts +8 -0
  1053. package/lib/components/Coachmark/Coachmark.d.ts +127 -0
  1054. package/lib/components/Coachmark/Coachmark.js +318 -0
  1055. package/lib/components/Coachmark/CoachmarkDragbar.d.ts +41 -0
  1056. package/lib/components/Coachmark/CoachmarkDragbar.js +140 -0
  1057. package/lib/components/Coachmark/CoachmarkHeader.d.ts +28 -0
  1058. package/lib/components/Coachmark/CoachmarkHeader.js +93 -0
  1059. package/lib/components/Coachmark/CoachmarkOverlay.d.ts +47 -0
  1060. package/lib/components/Coachmark/CoachmarkOverlay.js +247 -0
  1061. package/lib/components/Coachmark/CoachmarkTagline.d.ts +32 -0
  1062. package/lib/components/Coachmark/CoachmarkTagline.js +104 -0
  1063. package/lib/components/Coachmark/index.d.ts +11 -0
  1064. package/lib/components/Coachmark/next/Coachmark/Coachmark.d.ts +58 -0
  1065. package/lib/components/Coachmark/next/Coachmark/Coachmark.js +175 -0
  1066. package/lib/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.d.ts +45 -0
  1067. package/lib/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.js +91 -0
  1068. package/lib/components/Coachmark/next/Coachmark/CoachmarkBeacon/index.d.ts +8 -0
  1069. package/lib/components/Coachmark/next/Coachmark/CoachmarkBeacon/index.js +14 -0
  1070. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts +38 -0
  1071. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.js +139 -0
  1072. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts +24 -0
  1073. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.js +27 -0
  1074. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts +10 -0
  1075. package/lib/components/Coachmark/next/Coachmark/CoachmarkContent.d.ts +34 -0
  1076. package/lib/components/Coachmark/next/Coachmark/CoachmarkContent.js +118 -0
  1077. package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.d.ts +43 -0
  1078. package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +104 -0
  1079. package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/index.d.ts +8 -0
  1080. package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/index.js +14 -0
  1081. package/lib/components/Coachmark/next/Coachmark/ContentBody.d.ts +23 -0
  1082. package/lib/components/Coachmark/next/Coachmark/ContentBody.js +42 -0
  1083. package/lib/components/Coachmark/next/Coachmark/ContentHeader.d.ts +20 -0
  1084. package/lib/components/Coachmark/next/Coachmark/ContentHeader.js +105 -0
  1085. package/lib/components/Coachmark/next/Coachmark/context.d.ts +25 -0
  1086. package/lib/components/Coachmark/next/Coachmark/context.js +31 -0
  1087. package/lib/components/Coachmark/next/Coachmark/index.d.ts +11 -0
  1088. package/lib/components/Coachmark/next/Coachmark/index.js +14 -0
  1089. package/lib/components/Coachmark/utils/constants.d.ts +1 -0
  1090. package/lib/components/Coachmark/utils/constants.js +88 -0
  1091. package/lib/components/Coachmark/utils/context.d.ts +28 -0
  1092. package/lib/components/Coachmark/utils/context.js +18 -0
  1093. package/lib/components/Coachmark/utils/enums.d.ts +43 -0
  1094. package/lib/components/Coachmark/utils/enums.js +54 -0
  1095. package/lib/components/Coachmark/utils/hooks.d.ts +9 -0
  1096. package/lib/components/Coachmark/utils/hooks.js +66 -0
  1097. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.d.ts +40 -0
  1098. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +101 -0
  1099. package/lib/components/CoachmarkBeacon/index.d.ts +8 -0
  1100. package/lib/components/CoachmarkButton/CoachmarkButton.d.ts +22 -0
  1101. package/lib/components/CoachmarkButton/CoachmarkButton.js +102 -0
  1102. package/lib/components/CoachmarkButton/index.d.ts +8 -0
  1103. package/lib/components/CoachmarkFixed/CoachmarkFixed.d.ts +52 -0
  1104. package/lib/components/CoachmarkFixed/CoachmarkFixed.js +223 -0
  1105. package/lib/components/CoachmarkFixed/index.d.ts +8 -0
  1106. package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.d.ts +33 -0
  1107. package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +90 -0
  1108. package/lib/components/CoachmarkOverlayElement/index.d.ts +8 -0
  1109. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.d.ts +57 -0
  1110. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +229 -0
  1111. package/lib/components/CoachmarkOverlayElements/index.d.ts +8 -0
  1112. package/lib/components/CoachmarkStack/CoachmarkStack.d.ts +72 -0
  1113. package/lib/components/CoachmarkStack/CoachmarkStack.js +291 -0
  1114. package/lib/components/CoachmarkStack/CoachmarkStackHome.d.ts +67 -0
  1115. package/lib/components/CoachmarkStack/CoachmarkStackHome.js +208 -0
  1116. package/lib/components/CoachmarkStack/index.d.ts +1 -0
  1117. package/lib/components/ComboButton/ComboButton.d.ts +41 -0
  1118. package/lib/components/ComboButton/ComboButton.js +100 -0
  1119. package/lib/components/ComboButton/ComboButtonItem/index.d.ts +26 -0
  1120. package/lib/components/ComboButton/ComboButtonItem/index.js +33 -0
  1121. package/lib/components/ComboButton/index.d.ts +9 -0
  1122. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.d.ts +103 -0
  1123. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +367 -0
  1124. package/lib/components/ConditionBuilder/ConditionBuilder.d.ts +12 -0
  1125. package/lib/components/ConditionBuilder/ConditionBuilder.js +237 -0
  1126. package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +186 -0
  1127. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts +26 -0
  1128. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +143 -0
  1129. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +65 -0
  1130. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +152 -0
  1131. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.d.ts +86 -0
  1132. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +135 -0
  1133. package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.d.ts +30 -0
  1134. package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +98 -0
  1135. package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.d.ts +3 -0
  1136. package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +58 -0
  1137. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +38 -0
  1138. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +255 -0
  1139. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts +11 -0
  1140. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +124 -0
  1141. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.d.ts +51 -0
  1142. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +62 -0
  1143. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.d.ts +82 -0
  1144. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +270 -0
  1145. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.d.ts +30 -0
  1146. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +130 -0
  1147. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.d.ts +31 -0
  1148. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +83 -0
  1149. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +40 -0
  1150. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +136 -0
  1151. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.d.ts +34 -0
  1152. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +187 -0
  1153. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.d.ts +36 -0
  1154. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +55 -0
  1155. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.d.ts +34 -0
  1156. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +92 -0
  1157. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts +51 -0
  1158. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +406 -0
  1159. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.d.ts +33 -0
  1160. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +107 -0
  1161. package/lib/components/ConditionBuilder/index.d.ts +8 -0
  1162. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.d.ts +2 -0
  1163. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +236 -0
  1164. package/lib/components/ConditionBuilder/utils/useDataConfigs.d.ts +17 -0
  1165. package/lib/components/ConditionBuilder/utils/useDataConfigs.js +103 -0
  1166. package/lib/components/ConditionBuilder/utils/useEvent.d.ts +8 -0
  1167. package/lib/components/ConditionBuilder/utils/useEvent.js +34 -0
  1168. package/lib/components/ConditionBuilder/utils/useTranslations.d.ts +1 -0
  1169. package/lib/components/ConditionBuilder/utils/useTranslations.js +32 -0
  1170. package/lib/components/ConditionBuilder/utils/util.d.ts +13 -0
  1171. package/lib/components/ConditionBuilder/utils/util.js +108 -0
  1172. package/lib/components/CreateFullPage/CreateFullPage.d.ts +146 -0
  1173. package/lib/components/CreateFullPage/CreateFullPage.js +342 -0
  1174. package/lib/components/CreateFullPage/CreateFullPageStep.d.ts +77 -0
  1175. package/lib/components/CreateFullPage/CreateFullPageStep.js +199 -0
  1176. package/lib/components/CreateFullPage/index.d.ts +10 -0
  1177. package/lib/components/CreateInfluencer/CreateInfluencer.d.ts +63 -0
  1178. package/lib/components/CreateInfluencer/CreateInfluencer.js +106 -0
  1179. package/lib/components/CreateInfluencer/index.d.ts +1 -0
  1180. package/lib/components/CreateModal/CreateModal.d.ts +67 -0
  1181. package/lib/components/CreateModal/CreateModal.js +143 -0
  1182. package/lib/components/CreateModal/index.d.ts +2 -0
  1183. package/lib/components/CreateSidePanel/CreateSidePanel.d.ts +84 -0
  1184. package/lib/components/CreateSidePanel/CreateSidePanel.js +170 -0
  1185. package/lib/components/CreateSidePanel/index.d.ts +7 -0
  1186. package/lib/components/CreateTearsheet/CreateTearsheet.d.ts +126 -0
  1187. package/lib/components/CreateTearsheet/CreateTearsheet.js +303 -0
  1188. package/lib/components/CreateTearsheet/CreateTearsheetDivider.d.ts +13 -0
  1189. package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +35 -0
  1190. package/lib/components/CreateTearsheet/CreateTearsheetStep.d.ts +121 -0
  1191. package/lib/components/CreateTearsheet/CreateTearsheetStep.js +241 -0
  1192. package/lib/components/CreateTearsheet/index.d.ts +10 -0
  1193. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.d.ts +86 -0
  1194. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +168 -0
  1195. package/lib/components/CreateTearsheetNarrow/index.d.ts +8 -0
  1196. package/lib/components/DataSpreadsheet/DataSpreadsheet.d.ts +96 -0
  1197. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +830 -0
  1198. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.d.ts +162 -0
  1199. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +563 -0
  1200. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.d.ts +106 -0
  1201. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +326 -0
  1202. package/lib/components/DataSpreadsheet/hooks/index.d.ts +7 -0
  1203. package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.d.ts +8 -0
  1204. package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +42 -0
  1205. package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.d.ts +9 -0
  1206. package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +105 -0
  1207. package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.d.ts +6 -0
  1208. package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +32 -0
  1209. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.d.ts +12 -0
  1210. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +100 -0
  1211. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.d.ts +6 -0
  1212. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +66 -0
  1213. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.d.ts +19 -0
  1214. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +167 -0
  1215. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.d.ts +10 -0
  1216. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +47 -0
  1217. package/lib/components/DataSpreadsheet/index.d.ts +8 -0
  1218. package/lib/components/DataSpreadsheet/types/index.d.ts +35 -0
  1219. package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.d.ts +1 -0
  1220. package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +32 -0
  1221. package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.d.ts +1 -0
  1222. package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.js +19 -0
  1223. package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.d.ts +1 -0
  1224. package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +33 -0
  1225. package/lib/components/DataSpreadsheet/utils/commonEventHandlers.d.ts +4 -0
  1226. package/lib/components/DataSpreadsheet/utils/commonEventHandlers.js +260 -0
  1227. package/lib/components/DataSpreadsheet/utils/createActiveCellFn.d.ts +12 -0
  1228. package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +61 -0
  1229. package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.d.ts +10 -0
  1230. package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +71 -0
  1231. package/lib/components/DataSpreadsheet/utils/getCellSize.d.ts +1 -0
  1232. package/lib/components/DataSpreadsheet/utils/getCellSize.js +28 -0
  1233. package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.d.ts +6 -0
  1234. package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +23 -0
  1235. package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.d.ts +9 -0
  1236. package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +37 -0
  1237. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.d.ts +7 -0
  1238. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +114 -0
  1239. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.d.ts +7 -0
  1240. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +106 -0
  1241. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.d.ts +8 -0
  1242. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +44 -0
  1243. package/lib/components/DataSpreadsheet/utils/handleEditSubmit.d.ts +13 -0
  1244. package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +83 -0
  1245. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.d.ts +16 -0
  1246. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +152 -0
  1247. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.d.ts +18 -0
  1248. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +270 -0
  1249. package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.d.ts +7 -0
  1250. package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +73 -0
  1251. package/lib/components/DataSpreadsheet/utils/removeCellSelections.d.ts +5 -0
  1252. package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +30 -0
  1253. package/lib/components/DataSpreadsheet/utils/selectAllCells.d.ts +9 -0
  1254. package/lib/components/DataSpreadsheet/utils/selectAllCells.js +55 -0
  1255. package/lib/components/Datagrid/Datagrid/Datagrid.d.ts +24 -0
  1256. package/lib/components/Datagrid/Datagrid/Datagrid.js +88 -0
  1257. package/lib/components/Datagrid/Datagrid/DatagridBody.d.ts +10 -0
  1258. package/lib/components/Datagrid/Datagrid/DatagridBody.js +37 -0
  1259. package/lib/components/Datagrid/Datagrid/DatagridContent.d.ts +16 -0
  1260. package/lib/components/Datagrid/Datagrid/DatagridContent.js +256 -0
  1261. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.d.ts +10 -0
  1262. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +58 -0
  1263. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.d.ts +10 -0
  1264. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +62 -0
  1265. package/lib/components/Datagrid/Datagrid/DatagridHead.d.ts +10 -0
  1266. package/lib/components/Datagrid/Datagrid/DatagridHead.js +26 -0
  1267. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.d.ts +9 -0
  1268. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +285 -0
  1269. package/lib/components/Datagrid/Datagrid/DatagridRefBody.d.ts +10 -0
  1270. package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +46 -0
  1271. package/lib/components/Datagrid/Datagrid/DatagridRow.d.ts +10 -0
  1272. package/lib/components/Datagrid/Datagrid/DatagridRow.js +194 -0
  1273. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.d.ts +10 -0
  1274. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +117 -0
  1275. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.d.ts +24 -0
  1276. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +134 -0
  1277. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.d.ts +10 -0
  1278. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +43 -0
  1279. package/lib/components/Datagrid/Datagrid/DatagridToolbar.d.ts +18 -0
  1280. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +196 -0
  1281. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.d.ts +10 -0
  1282. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +154 -0
  1283. package/lib/components/Datagrid/Datagrid/DraggableElement.d.ts +34 -0
  1284. package/lib/components/Datagrid/Datagrid/DraggableElement.js +98 -0
  1285. package/lib/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.d.ts +12 -0
  1286. package/lib/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +33 -0
  1287. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.d.ts +18 -0
  1288. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +66 -0
  1289. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.d.ts +17 -0
  1290. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +72 -0
  1291. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.d.ts +29 -0
  1292. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +99 -0
  1293. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.d.ts +37 -0
  1294. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +172 -0
  1295. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.d.ts +19 -0
  1296. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +200 -0
  1297. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.d.ts +11 -0
  1298. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +68 -0
  1299. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.d.ts +1 -0
  1300. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +12 -0
  1301. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/index.d.ts +2 -0
  1302. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.d.ts +36 -0
  1303. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +325 -0
  1304. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.d.ts +46 -0
  1305. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +326 -0
  1306. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.d.ts +46 -0
  1307. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +188 -0
  1308. package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.d.ts +24 -0
  1309. package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +77 -0
  1310. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.d.ts +27 -0
  1311. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +45 -0
  1312. package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.d.ts +9 -0
  1313. package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +38 -0
  1314. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/index.d.ts +4 -0
  1315. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.d.ts +8 -0
  1316. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +26 -0
  1317. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.d.ts +28 -0
  1318. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +479 -0
  1319. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.d.ts +9 -0
  1320. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +44 -0
  1321. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.d.ts +7 -0
  1322. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +30 -0
  1323. package/lib/components/Datagrid/Datagrid/addons/Filtering/index.d.ts +3 -0
  1324. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.d.ts +1 -0
  1325. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +101 -0
  1326. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.d.ts +26 -0
  1327. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +67 -0
  1328. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/index.d.ts +1 -0
  1329. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.d.ts +25 -0
  1330. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +569 -0
  1331. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/index.d.ts +1 -0
  1332. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.d.ts +16 -0
  1333. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +118 -0
  1334. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.d.ts +1 -0
  1335. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +29 -0
  1336. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/index.d.ts +1 -0
  1337. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.d.ts +7 -0
  1338. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +40 -0
  1339. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.d.ts +1 -0
  1340. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +24 -0
  1341. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.d.ts +10 -0
  1342. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +252 -0
  1343. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.d.ts +7 -0
  1344. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +81 -0
  1345. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.d.ts +19 -0
  1346. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +92 -0
  1347. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.d.ts +3 -0
  1348. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +89 -0
  1349. package/lib/components/Datagrid/Datagrid/addons/RowSize/index.d.ts +1 -0
  1350. package/lib/components/Datagrid/Datagrid/addons/stateReducer.d.ts +31 -0
  1351. package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +354 -0
  1352. package/lib/components/Datagrid/Datagrid/index.d.ts +7 -0
  1353. package/lib/components/Datagrid/common-column-ids.d.ts +7 -0
  1354. package/lib/components/Datagrid/common-column-ids.js +12 -0
  1355. package/lib/components/Datagrid/index.d.ts +29 -0
  1356. package/lib/components/Datagrid/types/index.d.ts +280 -0
  1357. package/lib/components/Datagrid/useActionsColumn.d.ts +9 -0
  1358. package/lib/components/Datagrid/useActionsColumn.js +171 -0
  1359. package/lib/components/Datagrid/useColumnCenterAlign.d.ts +9 -0
  1360. package/lib/components/Datagrid/useColumnCenterAlign.js +37 -0
  1361. package/lib/components/Datagrid/useColumnOrder.d.ts +8 -0
  1362. package/lib/components/Datagrid/useColumnOrder.js +19 -0
  1363. package/lib/components/Datagrid/useColumnRightAlign.d.ts +9 -0
  1364. package/lib/components/Datagrid/useColumnRightAlign.js +37 -0
  1365. package/lib/components/Datagrid/useCustomizeColumns.d.ts +9 -0
  1366. package/lib/components/Datagrid/useCustomizeColumns.js +68 -0
  1367. package/lib/components/Datagrid/useDatagrid.d.ts +9 -0
  1368. package/lib/components/Datagrid/useDatagrid.js +50 -0
  1369. package/lib/components/Datagrid/useDefaultStringRenderer.d.ts +2 -0
  1370. package/lib/components/Datagrid/useDefaultStringRenderer.js +43 -0
  1371. package/lib/components/Datagrid/useDisableSelectRows.d.ts +9 -0
  1372. package/lib/components/Datagrid/useDisableSelectRows.js +96 -0
  1373. package/lib/components/Datagrid/useEditableCell.d.ts +2 -0
  1374. package/lib/components/Datagrid/useEditableCell.js +18 -0
  1375. package/lib/components/Datagrid/useExpandedRow.d.ts +9 -0
  1376. package/lib/components/Datagrid/useExpandedRow.js +46 -0
  1377. package/lib/components/Datagrid/useFiltering.d.ts +10 -0
  1378. package/lib/components/Datagrid/useFiltering.js +107 -0
  1379. package/lib/components/Datagrid/useFlexResize.d.ts +2 -0
  1380. package/lib/components/Datagrid/useFlexResize.js +85 -0
  1381. package/lib/components/Datagrid/useFloatingScroll.d.ts +2 -0
  1382. package/lib/components/Datagrid/useFloatingScroll.js +83 -0
  1383. package/lib/components/Datagrid/useFocusRowExpander.d.ts +6 -0
  1384. package/lib/components/Datagrid/useFocusRowExpander.js +45 -0
  1385. package/lib/components/Datagrid/useInfiniteScroll.d.ts +9 -0
  1386. package/lib/components/Datagrid/useInfiniteScroll.js +59 -0
  1387. package/lib/components/Datagrid/useInitialColumnSort.d.ts +1 -0
  1388. package/lib/components/Datagrid/useInitialColumnSort.js +49 -0
  1389. package/lib/components/Datagrid/useInlineEdit.d.ts +9 -0
  1390. package/lib/components/Datagrid/useInlineEdit.js +73 -0
  1391. package/lib/components/Datagrid/useNestedRowExpander.d.ts +2 -0
  1392. package/lib/components/Datagrid/useNestedRowExpander.js +108 -0
  1393. package/lib/components/Datagrid/useNestedRows.d.ts +9 -0
  1394. package/lib/components/Datagrid/useNestedRows.js +102 -0
  1395. package/lib/components/Datagrid/useOnRowClick.d.ts +9 -0
  1396. package/lib/components/Datagrid/useOnRowClick.js +80 -0
  1397. package/lib/components/Datagrid/useParentDimensions.d.ts +2 -0
  1398. package/lib/components/Datagrid/useParentDimensions.js +61 -0
  1399. package/lib/components/Datagrid/useResizeTable.d.ts +2 -0
  1400. package/lib/components/Datagrid/useResizeTable.js +42 -0
  1401. package/lib/components/Datagrid/useRowExpander.d.ts +2 -0
  1402. package/lib/components/Datagrid/useRowExpander.js +78 -0
  1403. package/lib/components/Datagrid/useRowIsMouseOver.d.ts +9 -0
  1404. package/lib/components/Datagrid/useRowIsMouseOver.js +51 -0
  1405. package/lib/components/Datagrid/useRowRenderer.d.ts +2 -0
  1406. package/lib/components/Datagrid/useRowRenderer.js +62 -0
  1407. package/lib/components/Datagrid/useRowSize.d.ts +2 -0
  1408. package/lib/components/Datagrid/useRowSize.js +62 -0
  1409. package/lib/components/Datagrid/useSelectAllToggle.d.ts +9 -0
  1410. package/lib/components/Datagrid/useSelectAllToggle.js +98 -0
  1411. package/lib/components/Datagrid/useSelectRows.d.ts +9 -0
  1412. package/lib/components/Datagrid/useSelectRows.js +147 -0
  1413. package/lib/components/Datagrid/useSkeletonRows.d.ts +8 -0
  1414. package/lib/components/Datagrid/useSkeletonRows.js +37 -0
  1415. package/lib/components/Datagrid/useSortableColumns.d.ts +14 -0
  1416. package/lib/components/Datagrid/useSortableColumns.js +150 -0
  1417. package/lib/components/Datagrid/useStickyColumn.d.ts +9 -0
  1418. package/lib/components/Datagrid/useStickyColumn.js +191 -0
  1419. package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.d.ts +8 -0
  1420. package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +21 -0
  1421. package/lib/components/Decorator/Decorator.d.ts +5 -0
  1422. package/lib/components/Decorator/Decorator.js +112 -0
  1423. package/lib/components/Decorator/index.d.ts +1 -0
  1424. package/lib/components/DecoratorBase/DecoratorBase.d.ts +7 -0
  1425. package/lib/components/DecoratorBase/DecoratorBase.js +239 -0
  1426. package/lib/components/DecoratorBase/DecoratorIcon.d.ts +5 -0
  1427. package/lib/components/DecoratorBase/DecoratorIcon.js +95 -0
  1428. package/lib/components/DecoratorBase/index.d.ts +1 -0
  1429. package/lib/components/DecoratorBase/utils.d.ts +8 -0
  1430. package/lib/components/DecoratorBase/utils.js +48 -0
  1431. package/lib/components/DecoratorDualButton/DecoratorDualButton.d.ts +6 -0
  1432. package/lib/components/DecoratorDualButton/DecoratorDualButton.js +141 -0
  1433. package/lib/components/DecoratorDualButton/index.d.ts +1 -0
  1434. package/lib/components/DecoratorLink/DecoratorLink.d.ts +6 -0
  1435. package/lib/components/DecoratorLink/DecoratorLink.js +131 -0
  1436. package/lib/components/DecoratorLink/index.d.ts +1 -0
  1437. package/lib/components/DecoratorSingleButton/DecoratorSingleButton.d.ts +6 -0
  1438. package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +131 -0
  1439. package/lib/components/DecoratorSingleButton/index.d.ts +1 -0
  1440. package/lib/components/DelimitedList/DelimitedList.d.ts +30 -0
  1441. package/lib/components/DelimitedList/DelimitedList.js +73 -0
  1442. package/lib/components/DelimitedList/index.d.ts +8 -0
  1443. package/lib/components/DescriptionList/DescriptionList.d.ts +6 -0
  1444. package/lib/components/DescriptionList/DescriptionList.js +92 -0
  1445. package/lib/components/DescriptionList/DescriptionListBody.d.ts +2 -0
  1446. package/lib/components/DescriptionList/DescriptionListBody.js +39 -0
  1447. package/lib/components/DescriptionList/DescriptionListCell.d.ts +2 -0
  1448. package/lib/components/DescriptionList/DescriptionListCell.js +39 -0
  1449. package/lib/components/DescriptionList/DescriptionListRow.d.ts +2 -0
  1450. package/lib/components/DescriptionList/DescriptionListRow.js +41 -0
  1451. package/lib/components/DescriptionList/constants.d.ts +6 -0
  1452. package/lib/components/DescriptionList/constants.js +18 -0
  1453. package/lib/components/DescriptionList/index.d.ts +4 -0
  1454. package/lib/components/EditFullPage/EditFullPage.d.ts +24 -0
  1455. package/lib/components/EditFullPage/EditFullPage.js +101 -0
  1456. package/lib/components/EditFullPage/index.d.ts +8 -0
  1457. package/lib/components/EditInPlace/EditInPlace.d.ts +105 -0
  1458. package/lib/components/EditInPlace/EditInPlace.js +317 -0
  1459. package/lib/components/EditInPlace/index.d.ts +8 -0
  1460. package/lib/components/EditSidePanel/EditSidePanel.d.ts +96 -0
  1461. package/lib/components/EditSidePanel/EditSidePanel.js +202 -0
  1462. package/lib/components/EditSidePanel/index.d.ts +8 -0
  1463. package/lib/components/EditTearsheet/EditTearsheet.d.ts +89 -0
  1464. package/lib/components/EditTearsheet/EditTearsheet.js +229 -0
  1465. package/lib/components/EditTearsheet/EditTearsheetForm.d.ts +47 -0
  1466. package/lib/components/EditTearsheet/EditTearsheetForm.js +120 -0
  1467. package/lib/components/EditTearsheet/index.d.ts +2 -0
  1468. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.d.ts +23 -0
  1469. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +97 -0
  1470. package/lib/components/EditTearsheetNarrow/index.d.ts +8 -0
  1471. package/lib/components/EditUpdateCards/EditUpdateCards.d.ts +105 -0
  1472. package/lib/components/EditUpdateCards/EditUpdateCards.js +226 -0
  1473. package/lib/components/EditUpdateCards/index.d.ts +8 -0
  1474. package/lib/components/EmptyStates/EmptyState.d.ts +80 -0
  1475. package/lib/components/EmptyStates/EmptyState.js +140 -0
  1476. package/lib/components/EmptyStates/EmptyStateContent.d.ts +65 -0
  1477. package/lib/components/EmptyStates/EmptyStateContent.js +95 -0
  1478. package/lib/components/EmptyStates/EmptyStateIllustration.deprecated.d.ts +11 -0
  1479. package/lib/components/EmptyStates/EmptyStateIllustration.deprecated.js +54 -0
  1480. package/lib/components/EmptyStates/EmptyStateV2.deprecated.d.ts +67 -0
  1481. package/lib/components/EmptyStates/EmptyStateV2.deprecated.js +141 -0
  1482. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.d.ts +21 -0
  1483. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +125 -0
  1484. package/lib/components/EmptyStates/ErrorEmptyState/index.d.ts +8 -0
  1485. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.d.ts +21 -0
  1486. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +125 -0
  1487. package/lib/components/EmptyStates/NoDataEmptyState/index.d.ts +8 -0
  1488. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.d.ts +21 -0
  1489. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +125 -0
  1490. package/lib/components/EmptyStates/NoTagsEmptyState/index.d.ts +8 -0
  1491. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.d.ts +21 -0
  1492. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +123 -0
  1493. package/lib/components/EmptyStates/NotFoundEmptyState/index.d.ts +8 -0
  1494. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.d.ts +21 -0
  1495. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +123 -0
  1496. package/lib/components/EmptyStates/NotificationsEmptyState/index.d.ts +8 -0
  1497. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.d.ts +21 -0
  1498. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +127 -0
  1499. package/lib/components/EmptyStates/UnauthorizedEmptyState/index.d.ts +8 -0
  1500. package/lib/components/EmptyStates/assets/ErrorIllustration.d.ts +15 -0
  1501. package/lib/components/EmptyStates/assets/ErrorIllustration.js +222 -0
  1502. package/lib/components/EmptyStates/assets/NoDataIllustration.d.ts +15 -0
  1503. package/lib/components/EmptyStates/assets/NoDataIllustration.js +185 -0
  1504. package/lib/components/EmptyStates/assets/NoTagsIllustration.d.ts +15 -0
  1505. package/lib/components/EmptyStates/assets/NoTagsIllustration.js +492 -0
  1506. package/lib/components/EmptyStates/assets/NotFoundIllustration.d.ts +15 -0
  1507. package/lib/components/EmptyStates/assets/NotFoundIllustration.js +369 -0
  1508. package/lib/components/EmptyStates/assets/NotificationsIllustration.d.ts +15 -0
  1509. package/lib/components/EmptyStates/assets/NotificationsIllustration.js +339 -0
  1510. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.d.ts +15 -0
  1511. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +313 -0
  1512. package/lib/components/EmptyStates/index.d.ts +22 -0
  1513. package/lib/components/ExportModal/ExportModal.d.ts +116 -0
  1514. package/lib/components/ExportModal/ExportModal.js +302 -0
  1515. package/lib/components/ExportModal/index.d.ts +2 -0
  1516. package/lib/components/ExpressiveCard/ExpressiveCard.d.ts +95 -0
  1517. package/lib/components/ExpressiveCard/ExpressiveCard.js +138 -0
  1518. package/lib/components/ExpressiveCard/index.d.ts +2 -0
  1519. package/lib/components/FeatureFlags/index.d.ts +59 -0
  1520. package/lib/components/FeatureFlags/index.js +189 -0
  1521. package/lib/components/FilterPanel/FilterPanel.d.ts +6 -0
  1522. package/lib/components/FilterPanel/FilterPanel.js +61 -0
  1523. package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.d.ts +6 -0
  1524. package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +88 -0
  1525. package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.d.ts +6 -0
  1526. package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +94 -0
  1527. package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.d.ts +11 -0
  1528. package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +81 -0
  1529. package/lib/components/FilterPanel/FilterPanelCheckbox/index.d.ts +1 -0
  1530. package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.d.ts +11 -0
  1531. package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +156 -0
  1532. package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.d.ts +6 -0
  1533. package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +77 -0
  1534. package/lib/components/FilterPanel/FilterPanelGroup/index.d.ts +1 -0
  1535. package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.d.ts +5 -0
  1536. package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +63 -0
  1537. package/lib/components/FilterPanel/FilterPanelLabel/index.d.ts +1 -0
  1538. package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.d.ts +6 -0
  1539. package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +92 -0
  1540. package/lib/components/FilterPanel/index.d.ts +8 -0
  1541. package/lib/components/FilterSummary/FilterSummary.d.ts +23 -0
  1542. package/lib/components/FilterSummary/FilterSummary.js +145 -0
  1543. package/lib/components/FilterSummary/index.d.ts +8 -0
  1544. package/lib/components/FullPageError/FullPageError.d.ts +39 -0
  1545. package/lib/components/FullPageError/FullPageError.js +133 -0
  1546. package/lib/components/FullPageError/assets/Error403SVG.d.ts +9 -0
  1547. package/lib/components/FullPageError/assets/Error403SVG.js +719 -0
  1548. package/lib/components/FullPageError/assets/Error404SVG.d.ts +9 -0
  1549. package/lib/components/FullPageError/assets/Error404SVG.js +628 -0
  1550. package/lib/components/FullPageError/assets/ErrorGenericSVG.d.ts +9 -0
  1551. package/lib/components/FullPageError/assets/ErrorGenericSVG.js +719 -0
  1552. package/lib/components/FullPageError/index.d.ts +8 -0
  1553. package/lib/components/GetStartedCard/GetStartedCard.d.ts +63 -0
  1554. package/lib/components/GetStartedCard/GetStartedCard.js +84 -0
  1555. package/lib/components/GetStartedCard/index.d.ts +8 -0
  1556. package/lib/components/Guidebanner/Guidebanner.d.ts +73 -0
  1557. package/lib/components/Guidebanner/Guidebanner.js +218 -0
  1558. package/lib/components/Guidebanner/GuidebannerElement.d.ts +31 -0
  1559. package/lib/components/Guidebanner/GuidebannerElement.js +72 -0
  1560. package/lib/components/Guidebanner/GuidebannerElementButton.d.ts +30 -0
  1561. package/lib/components/Guidebanner/GuidebannerElementButton.js +85 -0
  1562. package/lib/components/Guidebanner/GuidebannerElementLink.d.ts +21 -0
  1563. package/lib/components/Guidebanner/GuidebannerElementLink.js +57 -0
  1564. package/lib/components/Guidebanner/index.d.ts +14 -0
  1565. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.d.ts +45 -0
  1566. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +98 -0
  1567. package/lib/components/HTTPErrors/HTTPError403/index.d.ts +1 -0
  1568. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.d.ts +45 -0
  1569. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +98 -0
  1570. package/lib/components/HTTPErrors/HTTPError404/index.d.ts +1 -0
  1571. package/lib/components/HTTPErrors/HTTPErrorContent.d.ts +18 -0
  1572. package/lib/components/HTTPErrors/HTTPErrorContent.js +78 -0
  1573. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.d.ts +45 -0
  1574. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +98 -0
  1575. package/lib/components/HTTPErrors/HTTPErrorOther/index.d.ts +1 -0
  1576. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.d.ts +11 -0
  1577. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +1252 -0
  1578. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.d.ts +11 -0
  1579. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +1051 -0
  1580. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.d.ts +11 -0
  1581. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1102 -0
  1582. package/lib/components/HTTPErrors/index.d.ts +3 -0
  1583. package/lib/components/ImportModal/ImportModal.d.ts +136 -0
  1584. package/lib/components/ImportModal/ImportModal.js +353 -0
  1585. package/lib/components/ImportModal/index.d.ts +2 -0
  1586. package/lib/components/InlineTip/InlineTip.d.ts +86 -0
  1587. package/lib/components/InlineTip/InlineTip.js +199 -0
  1588. package/lib/components/InlineTip/InlineTipButton.d.ts +24 -0
  1589. package/lib/components/InlineTip/InlineTipButton.js +55 -0
  1590. package/lib/components/InlineTip/InlineTipLink.d.ts +21 -0
  1591. package/lib/components/InlineTip/InlineTipLink.js +59 -0
  1592. package/lib/components/InlineTip/index.d.ts +12 -0
  1593. package/lib/components/InlineTip/utils.d.ts +1 -0
  1594. package/lib/components/InlineTip/utils.js +38 -0
  1595. package/lib/components/InterstitialScreen/InterstitialScreen.d.ts +54 -0
  1596. package/lib/components/InterstitialScreen/InterstitialScreen.js +199 -0
  1597. package/lib/components/InterstitialScreen/InterstitialScreenBody.d.ts +33 -0
  1598. package/lib/components/InterstitialScreen/InterstitialScreenBody.js +121 -0
  1599. package/lib/components/InterstitialScreen/InterstitialScreenFooter.d.ts +47 -0
  1600. package/lib/components/InterstitialScreen/InterstitialScreenFooter.js +174 -0
  1601. package/lib/components/InterstitialScreen/InterstitialScreenHeader.d.ts +41 -0
  1602. package/lib/components/InterstitialScreen/InterstitialScreenHeader.js +111 -0
  1603. package/lib/components/InterstitialScreen/InterstitialScreenView.d.ts +29 -0
  1604. package/lib/components/InterstitialScreen/InterstitialScreenView.js +62 -0
  1605. package/lib/components/InterstitialScreen/_story-assets/InterstitialScreenViewModule/InterstitialScreenViewModule.d.ts +33 -0
  1606. package/lib/components/InterstitialScreen/context.d.ts +31 -0
  1607. package/lib/components/InterstitialScreen/context.js +21 -0
  1608. package/lib/components/InterstitialScreen/index.d.ts +13 -0
  1609. package/lib/components/MultiAddSelect/MultiAddSelect.d.ts +145 -0
  1610. package/lib/components/MultiAddSelect/MultiAddSelect.js +159 -0
  1611. package/lib/components/MultiAddSelect/index.d.ts +2 -0
  1612. package/lib/components/Nav/Nav.d.ts +6 -0
  1613. package/lib/components/Nav/Nav.js +158 -0
  1614. package/lib/components/Nav/NavItem.d.ts +35 -0
  1615. package/lib/components/Nav/NavItem.js +158 -0
  1616. package/lib/components/Nav/NavItemLink.d.ts +3 -0
  1617. package/lib/components/Nav/NavItemLink.js +31 -0
  1618. package/lib/components/Nav/NavList.d.ts +4 -0
  1619. package/lib/components/Nav/NavList.js +166 -0
  1620. package/lib/components/Nav/index.d.ts +3 -0
  1621. package/lib/components/NonLinearReading/NonLinearReading.d.ts +33 -0
  1622. package/lib/components/NonLinearReading/NonLinearReading.js +82 -0
  1623. package/lib/components/NonLinearReading/index.d.ts +8 -0
  1624. package/lib/components/NotificationsPanel/NotificationsPanel.d.ts +223 -0
  1625. package/lib/components/NotificationsPanel/NotificationsPanel.js +592 -0
  1626. package/lib/components/NotificationsPanel/index.d.ts +8 -0
  1627. package/lib/components/NotificationsPanel/utils.d.ts +15 -0
  1628. package/lib/components/NotificationsPanel/utils.js +56 -0
  1629. package/lib/components/OptionsTile/OptionsTile.d.ts +77 -0
  1630. package/lib/components/OptionsTile/OptionsTile.js +313 -0
  1631. package/lib/components/OptionsTile/index.d.ts +8 -0
  1632. package/lib/components/PageHeader/PageHeader.d.ts +305 -0
  1633. package/lib/components/PageHeader/PageHeader.js +859 -0
  1634. package/lib/components/PageHeader/PageHeaderTitle.d.ts +16 -0
  1635. package/lib/components/PageHeader/PageHeaderTitle.js +147 -0
  1636. package/lib/components/PageHeader/PageHeaderUtils.d.ts +7 -0
  1637. package/lib/components/PageHeader/PageHeaderUtils.js +196 -0
  1638. package/lib/components/PageHeader/index.d.ts +2 -0
  1639. package/lib/components/PageHeader/next/PageHeader.d.ts +292 -0
  1640. package/lib/components/PageHeader/next/PageHeader.js +795 -0
  1641. package/lib/components/PageHeader/next/_story-assets/pageActionButtonItems.d.ts +15 -0
  1642. package/lib/components/PageHeader/next/context.d.ts +29 -0
  1643. package/lib/components/PageHeader/next/context.js +36 -0
  1644. package/lib/components/PageHeader/next/index.d.ts +8 -0
  1645. package/lib/components/PageHeader/next/index.js +35 -0
  1646. package/lib/components/PageHeader/next/overflowHandler.d.ts +100 -0
  1647. package/lib/components/PageHeader/next/overflowHandler.js +174 -0
  1648. package/lib/components/PageHeader/next/utils.d.ts +19 -0
  1649. package/lib/components/PageHeader/next/utils.js +71 -0
  1650. package/lib/components/ProductiveCard/ProductiveCard.d.ts +125 -0
  1651. package/lib/components/ProductiveCard/ProductiveCard.js +171 -0
  1652. package/lib/components/ProductiveCard/index.d.ts +2 -0
  1653. package/lib/components/RemoveModal/RemoveModal.d.ts +83 -0
  1654. package/lib/components/RemoveModal/RemoveModal.js +200 -0
  1655. package/lib/components/RemoveModal/index.d.ts +2 -0
  1656. package/lib/components/Saving/Saving.d.ts +69 -0
  1657. package/lib/components/Saving/Saving.js +157 -0
  1658. package/lib/components/Saving/index.d.ts +2 -0
  1659. package/lib/components/ScrollGradient/ScrollGradient.d.ts +5 -0
  1660. package/lib/components/ScrollGradient/ScrollGradient.js +211 -0
  1661. package/lib/components/ScrollGradient/constants.d.ts +10 -0
  1662. package/lib/components/ScrollGradient/constants.js +69 -0
  1663. package/lib/components/ScrollGradient/index.d.ts +1 -0
  1664. package/lib/components/SearchBar/SearchBar.d.ts +60 -0
  1665. package/lib/components/SearchBar/SearchBar.js +216 -0
  1666. package/lib/components/SearchBar/index.d.ts +8 -0
  1667. package/lib/components/SidePanel/SidePanel.d.ts +168 -0
  1668. package/lib/components/SidePanel/SidePanel.js +728 -0
  1669. package/lib/components/SidePanel/constants.d.ts +14 -0
  1670. package/lib/components/SidePanel/constants.js +19 -0
  1671. package/lib/components/SidePanel/index.d.ts +8 -0
  1672. package/lib/components/SimpleHeader/SimpleHeader.d.ts +34 -0
  1673. package/lib/components/SimpleHeader/SimpleHeader.js +95 -0
  1674. package/lib/components/SingleAddSelect/SingleAddSelect.d.ts +75 -0
  1675. package/lib/components/SingleAddSelect/SingleAddSelect.js +108 -0
  1676. package/lib/components/SingleAddSelect/index.d.ts +2 -0
  1677. package/lib/components/StatusIcon/StatusIcon.d.ts +43 -0
  1678. package/lib/components/StatusIcon/StatusIcon.js +274 -0
  1679. package/lib/components/StatusIcon/index.d.ts +8 -0
  1680. package/lib/components/StatusIndicator/StatusIndicator.d.ts +6 -0
  1681. package/lib/components/StatusIndicator/StatusIndicator.js +102 -0
  1682. package/lib/components/StatusIndicator/StatusIndicatorStep.d.ts +6 -0
  1683. package/lib/components/StatusIndicator/StatusIndicatorStep.js +92 -0
  1684. package/lib/components/StatusIndicator/index.d.ts +2 -0
  1685. package/lib/components/StepFlow/StepContext.d.ts +14 -0
  1686. package/lib/components/StepFlow/StepGroup.d.ts +10 -0
  1687. package/lib/components/StepFlow/index.d.ts +9 -0
  1688. package/lib/components/StepFlow/story-assets/SidePanel/Example.d.ts +8 -0
  1689. package/lib/components/StepFlow/story-assets/SidePanel/StepSidePanel.d.ts +21 -0
  1690. package/lib/components/StepFlow/story-assets/StepActions.d.ts +23 -0
  1691. package/lib/components/StepFlow/story-assets/Tearsheet/Example.d.ts +8 -0
  1692. package/lib/components/StepFlow/story-assets/Tearsheet/StepTearsheet.d.ts +20 -0
  1693. package/lib/components/StepFlow/types.d.ts +22 -0
  1694. package/lib/components/StringFormatter/StringFormatter.d.ts +6 -0
  1695. package/lib/components/StringFormatter/StringFormatter.js +120 -0
  1696. package/lib/components/StringFormatter/index.d.ts +1 -0
  1697. package/lib/components/StringFormatter/utils/enums.d.ts +33 -0
  1698. package/lib/components/StringFormatter/utils/enums.js +54 -0
  1699. package/lib/components/TagOverflow/TagOverflow.d.ts +54 -0
  1700. package/lib/components/TagOverflow/TagOverflow.js +237 -0
  1701. package/lib/components/TagOverflow/TagOverflowModal.d.ts +39 -0
  1702. package/lib/components/TagOverflow/TagOverflowModal.js +120 -0
  1703. package/lib/components/TagOverflow/TagOverflowPopover.d.ts +16 -0
  1704. package/lib/components/TagOverflow/TagOverflowPopover.js +171 -0
  1705. package/lib/components/TagOverflow/constants.d.ts +14 -0
  1706. package/lib/components/TagOverflow/constants.js +32 -0
  1707. package/lib/components/TagOverflow/index.d.ts +8 -0
  1708. package/lib/components/TagSet/TagSet.d.ts +101 -0
  1709. package/lib/components/TagSet/TagSet.js +360 -0
  1710. package/lib/components/TagSet/TagSetModal.d.ts +32 -0
  1711. package/lib/components/TagSet/TagSetModal.js +118 -0
  1712. package/lib/components/TagSet/TagSetOverflow.d.ts +57 -0
  1713. package/lib/components/TagSet/TagSetOverflow.js +194 -0
  1714. package/lib/components/TagSet/index.d.ts +2 -0
  1715. package/lib/components/Tearsheet/Tearsheet.d.ts +155 -0
  1716. package/lib/components/Tearsheet/Tearsheet.js +201 -0
  1717. package/lib/components/Tearsheet/TearsheetNarrow.d.ts +119 -0
  1718. package/lib/components/Tearsheet/TearsheetNarrow.js +161 -0
  1719. package/lib/components/Tearsheet/TearsheetShell.d.ts +155 -0
  1720. package/lib/components/Tearsheet/TearsheetShell.js +518 -0
  1721. package/lib/components/Tearsheet/index.d.ts +10 -0
  1722. package/lib/components/Tearsheet/next/StackContext.d.ts +21 -0
  1723. package/lib/components/Tearsheet/next/StackContext.js +97 -0
  1724. package/lib/components/Tearsheet/next/Tearsheet.d.ts +96 -0
  1725. package/lib/components/Tearsheet/next/Tearsheet.js +167 -0
  1726. package/lib/components/Tearsheet/next/TearsheetBody.d.ts +73 -0
  1727. package/lib/components/Tearsheet/next/TearsheetBody.js +140 -0
  1728. package/lib/components/Tearsheet/next/TearsheetHeader.d.ts +65 -0
  1729. package/lib/components/Tearsheet/next/TearsheetHeader.js +127 -0
  1730. package/lib/components/Tearsheet/next/TearsheetHeaderActions.d.ts +54 -0
  1731. package/lib/components/Tearsheet/next/TearsheetHeaderActions.js +109 -0
  1732. package/lib/components/Tearsheet/next/TearsheetHeaderContent.d.ts +42 -0
  1733. package/lib/components/Tearsheet/next/TearsheetHeaderContent.js +58 -0
  1734. package/lib/components/Tearsheet/next/_story-assets/StepTearsheet.d.ts +23 -0
  1735. package/lib/components/Tearsheet/next/context.d.ts +26 -0
  1736. package/lib/components/Tearsheet/next/context.js +29 -0
  1737. package/lib/components/Tearsheet/next/index.d.ts +14 -0
  1738. package/lib/components/Toolbar/Toolbar.d.ts +24 -0
  1739. package/lib/components/Toolbar/Toolbar.js +110 -0
  1740. package/lib/components/Toolbar/ToolbarButton.d.ts +34 -0
  1741. package/lib/components/Toolbar/ToolbarButton.js +69 -0
  1742. package/lib/components/Toolbar/ToolbarGroup.d.ts +17 -0
  1743. package/lib/components/Toolbar/ToolbarGroup.js +37 -0
  1744. package/lib/components/Toolbar/index.d.ts +12 -0
  1745. package/lib/components/TooltipTrigger/TooltipTrigger.d.ts +18 -0
  1746. package/lib/components/TooltipTrigger/TooltipTrigger.js +64 -0
  1747. package/lib/components/TooltipTrigger/index.d.ts +1 -0
  1748. package/lib/components/TruncatedList/TruncatedList.d.ts +51 -0
  1749. package/lib/components/TruncatedList/TruncatedList.js +162 -0
  1750. package/lib/components/TruncatedList/index.d.ts +8 -0
  1751. package/lib/components/TruncatedText/TruncatedText.d.ts +47 -0
  1752. package/lib/components/TruncatedText/TruncatedText.js +89 -0
  1753. package/lib/components/TruncatedText/index.d.ts +8 -0
  1754. package/lib/components/TruncatedText/useTruncatedText.d.ts +16 -0
  1755. package/lib/components/TruncatedText/useTruncatedText.js +45 -0
  1756. package/lib/components/UserAvatar/UserAvatar.d.ts +60 -0
  1757. package/lib/components/UserAvatar/UserAvatar.js +164 -0
  1758. package/lib/components/UserAvatar/index.d.ts +1 -0
  1759. package/lib/components/UserProfileImage/UserProfileImage.d.ts +69 -0
  1760. package/lib/components/UserProfileImage/UserProfileImage.js +173 -0
  1761. package/lib/components/UserProfileImage/index.d.ts +2 -0
  1762. package/lib/components/WebTerminal/WebTerminal.d.ts +52 -0
  1763. package/lib/components/WebTerminal/WebTerminal.js +204 -0
  1764. package/lib/components/WebTerminal/WebTerminalContentWrapper.d.ts +14 -0
  1765. package/lib/components/WebTerminal/WebTerminalContentWrapper.js +52 -0
  1766. package/lib/components/WebTerminal/hooks/index.d.ts +17 -0
  1767. package/lib/components/WebTerminal/hooks/index.js +51 -0
  1768. package/lib/components/WebTerminal/index.d.ts +11 -0
  1769. package/lib/components/_Canary/Canary.d.ts +12 -0
  1770. package/lib/components/_Canary/Canary.js +51 -0
  1771. package/lib/components/_Canary/index.d.ts +1 -0
  1772. package/lib/components/index.d.ts +88 -0
  1773. package/lib/global/js/hooks/index.d.ts +16 -0
  1774. package/lib/global/js/hooks/useActiveElement.d.ts +1 -0
  1775. package/lib/global/js/hooks/useActiveElement.js +26 -0
  1776. package/lib/global/js/hooks/useClickOutside.d.ts +1 -0
  1777. package/lib/global/js/hooks/useClickOutside.js +26 -0
  1778. package/lib/global/js/hooks/useCollapsible.d.ts +19 -0
  1779. package/lib/global/js/hooks/useCollapsible.js +70 -0
  1780. package/lib/global/js/hooks/useControllableState.d.ts +15 -0
  1781. package/lib/global/js/hooks/useControllableState.js +32 -0
  1782. package/lib/global/js/hooks/useCreateComponentFocus.d.ts +7 -0
  1783. package/lib/global/js/hooks/useCreateComponentFocus.js +74 -0
  1784. package/lib/global/js/hooks/useCreateComponentStepChange.d.ts +26 -0
  1785. package/lib/global/js/hooks/useCreateComponentStepChange.js +176 -0
  1786. package/lib/global/js/hooks/useFocus.d.ts +15 -0
  1787. package/lib/global/js/hooks/useFocus.js +101 -0
  1788. package/lib/global/js/hooks/useIsomorphicEffect.d.ts +8 -0
  1789. package/lib/global/js/hooks/useIsomorphicEffect.js +15 -0
  1790. package/lib/global/js/hooks/useMatchMedia.d.ts +13 -0
  1791. package/lib/global/js/hooks/useMatchMedia.js +35 -0
  1792. package/lib/global/js/hooks/useOverflowItems/index.d.ts +7 -0
  1793. package/lib/global/js/hooks/useOverflowItems/useOverflowItems.d.ts +21 -0
  1794. package/lib/global/js/hooks/useOverflowItems/useOverflowItems.js +113 -0
  1795. package/lib/global/js/hooks/useOverflowString.d.ts +9 -0
  1796. package/lib/global/js/hooks/useOverflowString.js +44 -0
  1797. package/lib/global/js/hooks/usePortalTarget.d.ts +1 -0
  1798. package/lib/global/js/hooks/usePortalTarget.js +31 -0
  1799. package/lib/global/js/hooks/usePrefersReducedMotion.d.ts +1 -0
  1800. package/lib/global/js/hooks/usePrefersReducedMotion.js +35 -0
  1801. package/lib/global/js/hooks/usePrefix.d.ts +1 -0
  1802. package/lib/global/js/hooks/usePrefix.js +14 -0
  1803. package/lib/global/js/hooks/usePresence.d.ts +33 -0
  1804. package/lib/global/js/hooks/usePresence.js +61 -0
  1805. package/lib/global/js/hooks/usePreviousValue.d.ts +1 -0
  1806. package/lib/global/js/hooks/usePreviousValue.js +25 -0
  1807. package/lib/global/js/hooks/useResetCreateComponent.d.ts +10 -0
  1808. package/lib/global/js/hooks/useResetCreateComponent.js +54 -0
  1809. package/lib/global/js/hooks/useResizeObserver.d.ts +11 -0
  1810. package/lib/global/js/hooks/useResizeObserver.js +76 -0
  1811. package/lib/global/js/hooks/useRetrieveFormTitles.d.ts +5 -0
  1812. package/lib/global/js/hooks/useRetrieveFormTitles.js +33 -0
  1813. package/lib/global/js/hooks/useRetrieveStepData.d.ts +9 -0
  1814. package/lib/global/js/hooks/useRetrieveStepData.js +56 -0
  1815. package/lib/global/js/hooks/useValidCreateStepCount.d.ts +1 -0
  1816. package/lib/global/js/hooks/useValidCreateStepCount.js +25 -0
  1817. package/lib/global/js/hooks/useWindowResize.d.ts +1 -0
  1818. package/lib/global/js/hooks/useWindowResize.js +70 -0
  1819. package/lib/global/js/hooks/useWindowScroll.d.ts +3 -0
  1820. package/lib/global/js/hooks/useWindowScroll.js +77 -0
  1821. package/lib/global/js/package-settings.d.ts +150 -0
  1822. package/lib/global/js/package-settings.js +252 -0
  1823. package/lib/global/js/utils/Wrap.d.ts +49 -0
  1824. package/lib/global/js/utils/Wrap.js +90 -0
  1825. package/lib/global/js/utils/carousel/carousel.d.ts +14 -0
  1826. package/lib/global/js/utils/carousel/index.d.ts +8 -0
  1827. package/lib/global/js/utils/carousel/swipeEvents.d.ts +7 -0
  1828. package/lib/global/js/utils/carousel/types.d.ts +38 -0
  1829. package/lib/global/js/utils/checkForOverflow.d.ts +5 -0
  1830. package/lib/global/js/utils/checkForOverflow.js +23 -0
  1831. package/lib/global/js/utils/clamp.d.ts +7 -0
  1832. package/lib/global/js/utils/clamp.js +27 -0
  1833. package/lib/global/js/utils/debounce.d.ts +7 -0
  1834. package/lib/global/js/utils/debounce.js +32 -0
  1835. package/lib/global/js/utils/deepCloneObject.d.ts +1 -0
  1836. package/lib/global/js/utils/deepCloneObject.js +26 -0
  1837. package/lib/global/js/utils/deepCompareObject.d.ts +7 -0
  1838. package/lib/global/js/utils/deepCompareObject.js +40 -0
  1839. package/lib/global/js/utils/devtools.d.ts +6 -0
  1840. package/lib/global/js/utils/devtools.js +20 -0
  1841. package/lib/global/js/utils/getFocusableElements.d.ts +1 -0
  1842. package/lib/global/js/utils/getFocusableElements.js +15 -0
  1843. package/lib/global/js/utils/getNodeTextContent.d.ts +1 -0
  1844. package/lib/global/js/utils/getNodeTextContent.js +54 -0
  1845. package/lib/global/js/utils/getNumberOfHiddenSteps.d.ts +1 -0
  1846. package/lib/global/js/utils/getNumberOfHiddenSteps.js +23 -0
  1847. package/lib/global/js/utils/getScrollbarWidth.d.ts +1 -0
  1848. package/lib/global/js/utils/getScrollbarWidth.js +19 -0
  1849. package/lib/global/js/utils/getSupportedLocale.d.ts +12 -0
  1850. package/lib/global/js/utils/getSupportedLocale.js +31 -0
  1851. package/lib/global/js/utils/lastIndexInArray.d.ts +1 -0
  1852. package/lib/global/js/utils/lastIndexInArray.js +27 -0
  1853. package/lib/global/js/utils/makeDraggable/index.d.ts +1 -0
  1854. package/lib/global/js/utils/makeDraggable/makeDraggable.d.ts +38 -0
  1855. package/lib/global/js/utils/makeDraggable/makeDraggable.js +147 -0
  1856. package/lib/global/js/utils/makeDraggable/makeDraggable.stories.d.ts +22 -0
  1857. package/lib/global/js/utils/pconsole.d.ts +15 -0
  1858. package/lib/global/js/utils/pconsole.js +45 -0
  1859. package/lib/global/js/utils/props-helper.d.ts +31 -0
  1860. package/lib/global/js/utils/props-helper.js +153 -0
  1861. package/lib/global/js/utils/rangeWithCallback.d.ts +1 -0
  1862. package/lib/global/js/utils/rangeWithCallback.js +18 -0
  1863. package/lib/global/js/utils/scrollableAncestor.d.ts +1 -0
  1864. package/lib/global/js/utils/scrollableAncestor.js +48 -0
  1865. package/lib/global/js/utils/throttle.d.ts +7 -0
  1866. package/lib/global/js/utils/throttle.js +21 -0
  1867. package/lib/global/js/utils/useId.d.ts +6 -0
  1868. package/lib/global/js/utils/useId.js +34 -0
  1869. package/lib/global/js/utils/uuidv4.d.ts +8 -0
  1870. package/lib/global/js/utils/uuidv4.js +20 -0
  1871. package/lib/global/js/utils/wait.d.ts +8 -0
  1872. package/lib/global/js/utils/wait.js +18 -0
  1873. package/lib/index.d.ts +9 -0
  1874. package/lib/index.js +371 -0
  1875. package/lib/node_modules/@carbon/colors/es/index.js +20 -0
  1876. package/lib/node_modules/@carbon/icon-helpers/es/index.js +128 -0
  1877. package/lib/node_modules/@carbon/icons-react/es/Icon.js +75 -0
  1878. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-10.js +3112 -0
  1879. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-3.js +3303 -0
  1880. package/lib/node_modules/@carbon/icons-react/es/iconPropTypes-C5chbmyn.js +16 -0
  1881. package/lib/node_modules/@floating-ui/core/dist/floating-ui.core.js +600 -0
  1882. package/lib/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +722 -0
  1883. package/lib/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +102 -0
  1884. package/lib/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +182 -0
  1885. package/lib/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +164 -0
  1886. package/lib/node_modules/object-assign/index.js +91 -0
  1887. package/lib/node_modules/prop-types/checkPropTypes.js +97 -0
  1888. package/lib/node_modules/prop-types/factoryWithThrowingShims.js +66 -0
  1889. package/lib/node_modules/prop-types/factoryWithTypeCheckers.js +563 -0
  1890. package/lib/node_modules/prop-types/index.js +34 -0
  1891. package/lib/node_modules/prop-types/lib/ReactPropTypesSecret.js +20 -0
  1892. package/lib/node_modules/prop-types/lib/has.js +19 -0
  1893. package/lib/settings.d.ts +133 -0
  1894. package/lib/settings.js +87 -0
  1895. package/package.json +5 -5
  1896. package/scss/components/APIKeyModal/_api-key-modal.scss +56 -0
  1897. package/scss/components/APIKeyModal/_carbon-imports.scss +15 -0
  1898. package/scss/components/APIKeyModal/_index-with-carbon.scss +9 -0
  1899. package/scss/components/APIKeyModal/_index.scss +10 -0
  1900. package/scss/components/AboutModal/_about-modal.scss +101 -0
  1901. package/scss/components/AboutModal/_carbon-imports.scss +11 -0
  1902. package/scss/components/AboutModal/_index-with-carbon.scss +9 -0
  1903. package/scss/components/AboutModal/_index.scss +8 -0
  1904. package/scss/components/ActionBar/_action-bar.scss +51 -0
  1905. package/scss/components/ActionBar/_carbon-imports.scss +11 -0
  1906. package/scss/components/ActionBar/_index-with-carbon.scss +9 -0
  1907. package/scss/components/ActionBar/_index.scss +8 -0
  1908. package/scss/components/ActionSet/_action-set.scss +126 -0
  1909. package/scss/components/ActionSet/_carbon-imports.scss +11 -0
  1910. package/scss/components/ActionSet/_index-with-carbon.scss +9 -0
  1911. package/scss/components/ActionSet/_index.scss +8 -0
  1912. package/scss/components/AddSelect/_add-select.scss +468 -0
  1913. package/scss/components/AddSelect/_carbon-imports.scss +19 -0
  1914. package/scss/components/AddSelect/_index-with-carbon.scss +9 -0
  1915. package/scss/components/AddSelect/_index.scss +10 -0
  1916. package/scss/components/BigNumber/_big-number.scss +157 -0
  1917. package/scss/components/BigNumber/_carbon-imports.scss +11 -0
  1918. package/scss/components/BigNumber/_index-with-carbon.scss +9 -0
  1919. package/scss/components/BigNumber/_index.scss +8 -0
  1920. package/scss/components/BreadcrumbWithOverflow/_breadcrumb-with-overflow.scss +96 -0
  1921. package/scss/components/BreadcrumbWithOverflow/_carbon-imports.scss +12 -0
  1922. package/scss/components/BreadcrumbWithOverflow/_index-with-carbon.scss +9 -0
  1923. package/scss/components/BreadcrumbWithOverflow/_index.scss +8 -0
  1924. package/scss/components/ButtonMenu/_button-menu.scss +60 -0
  1925. package/scss/components/ButtonMenu/_carbon-imports.scss +9 -0
  1926. package/scss/components/ButtonMenu/_index-with-carbon.scss +9 -0
  1927. package/scss/components/ButtonMenu/_index.scss +8 -0
  1928. package/scss/components/ButtonSetWithOverflow/_button-set-with-overflow.scss +42 -0
  1929. package/scss/components/ButtonSetWithOverflow/_carbon-imports.scss +10 -0
  1930. package/scss/components/ButtonSetWithOverflow/_index-with-carbon.scss +9 -0
  1931. package/scss/components/ButtonSetWithOverflow/_index.scss +8 -0
  1932. package/scss/components/Card/_carbon-imports.scss +11 -0
  1933. package/scss/components/Card/_card.scss +238 -0
  1934. package/scss/components/Card/_index-with-carbon.scss +9 -0
  1935. package/scss/components/Card/_index.scss +8 -0
  1936. package/scss/components/Carousel/_carbon-imports.scss +6 -0
  1937. package/scss/components/Carousel/_carousel.scss +76 -0
  1938. package/scss/components/Carousel/_index-with-carbon.scss +9 -0
  1939. package/scss/components/Carousel/_index.scss +8 -0
  1940. package/scss/components/Cascade/_carbon-imports.scss +6 -0
  1941. package/scss/components/Cascade/_cascade.scss +47 -0
  1942. package/scss/components/Cascade/_index-with-carbon.scss +9 -0
  1943. package/scss/components/Cascade/_index.scss +10 -0
  1944. package/scss/components/Checklist/_carbon-imports.scss +11 -0
  1945. package/scss/components/Checklist/_checklist.scss +217 -0
  1946. package/scss/components/Checklist/_index-with-carbon.scss +9 -0
  1947. package/scss/components/Checklist/_index.scss +8 -0
  1948. package/scss/components/Coachmark/_bubble.scss +61 -0
  1949. package/scss/components/Coachmark/_carbon-imports.scss +10 -0
  1950. package/scss/components/Coachmark/_coachmark-beacon.scss +164 -0
  1951. package/scss/components/Coachmark/_coachmark-dragbar.scss +26 -0
  1952. package/scss/components/Coachmark/_coachmark-header.scss +20 -0
  1953. package/scss/components/Coachmark/_coachmark-overlay.scss +376 -0
  1954. package/scss/components/Coachmark/_coachmark-tagline.scss +143 -0
  1955. package/scss/components/Coachmark/_coachmark.scss +53 -0
  1956. package/scss/components/Coachmark/_index-with-carbon.scss +9 -0
  1957. package/scss/components/Coachmark/_index.scss +8 -0
  1958. package/scss/components/CoachmarkBeacon/_carbon-imports.scss +9 -0
  1959. package/scss/components/CoachmarkBeacon/_coachmark-beacon.scss +164 -0
  1960. package/scss/components/CoachmarkBeacon/_index-with-carbon.scss +9 -0
  1961. package/scss/components/CoachmarkBeacon/_index.scss +8 -0
  1962. package/scss/components/CoachmarkButton/_carbon-imports.scss +9 -0
  1963. package/scss/components/CoachmarkButton/_coachmark-button.scss +25 -0
  1964. package/scss/components/CoachmarkButton/_index-with-carbon.scss +9 -0
  1965. package/scss/components/CoachmarkButton/_index.scss +8 -0
  1966. package/scss/components/CoachmarkFixed/_carbon-imports.scss +9 -0
  1967. package/scss/components/CoachmarkFixed/_coachmark-fixed.scss +25 -0
  1968. package/scss/components/CoachmarkFixed/_index-with-carbon.scss +9 -0
  1969. package/scss/components/CoachmarkFixed/_index.scss +8 -0
  1970. package/scss/components/CoachmarkOverlayElement/_carbon-imports.scss +9 -0
  1971. package/scss/components/CoachmarkOverlayElement/_coachmark-overlay-element.scss +52 -0
  1972. package/scss/components/CoachmarkOverlayElement/_index-with-carbon.scss +9 -0
  1973. package/scss/components/CoachmarkOverlayElement/_index.scss +8 -0
  1974. package/scss/components/CoachmarkOverlayElements/_carbon-imports.scss +9 -0
  1975. package/scss/components/CoachmarkOverlayElements/_coachmark-overlay-elements.scss +48 -0
  1976. package/scss/components/CoachmarkOverlayElements/_index-with-carbon.scss +9 -0
  1977. package/scss/components/CoachmarkOverlayElements/_index.scss +8 -0
  1978. package/scss/components/CoachmarkStack/_carbon-imports.scss +9 -0
  1979. package/scss/components/CoachmarkStack/_coachmark-stack.scss +133 -0
  1980. package/scss/components/CoachmarkStack/_index-with-carbon.scss +9 -0
  1981. package/scss/components/CoachmarkStack/_index.scss +8 -0
  1982. package/scss/components/ComboButton/_carbon-imports.scss +11 -0
  1983. package/scss/components/ComboButton/_combo-button.scss +78 -0
  1984. package/scss/components/ComboButton/_index-with-carbon.scss +9 -0
  1985. package/scss/components/ComboButton/_index.scss +10 -0
  1986. package/scss/components/ConditionBuilder/_carbon-imports.scss +9 -0
  1987. package/scss/components/ConditionBuilder/_condition-builder.scss +79 -0
  1988. package/scss/components/ConditionBuilder/_index-with-carbon.scss +9 -0
  1989. package/scss/components/ConditionBuilder/_index.scss +8 -0
  1990. package/scss/components/ConditionBuilder/styles/_conditionBuilderCondition.scss +114 -0
  1991. package/scss/components/ConditionBuilder/styles/_conditionBuilderItem.scss +322 -0
  1992. package/scss/components/ConditionBuilder/styles/_index.scss +9 -0
  1993. package/scss/components/CreateFullPage/_carbon-imports.scss +17 -0
  1994. package/scss/components/CreateFullPage/_create-full-page.scss +188 -0
  1995. package/scss/components/CreateFullPage/_index-with-carbon.scss +9 -0
  1996. package/scss/components/CreateFullPage/_index.scss +8 -0
  1997. package/scss/components/CreateInfluencer/_carbon-imports.scss +10 -0
  1998. package/scss/components/CreateInfluencer/_create-influencer.scss +93 -0
  1999. package/scss/components/CreateInfluencer/_index-with-carbon.scss +9 -0
  2000. package/scss/components/CreateInfluencer/_index.scss +8 -0
  2001. package/scss/components/CreateModal/_carbon-imports.scss +12 -0
  2002. package/scss/components/CreateModal/_create-modal.scss +78 -0
  2003. package/scss/components/CreateModal/_index-with-carbon.scss +9 -0
  2004. package/scss/components/CreateModal/_index.scss +8 -0
  2005. package/scss/components/CreateSidePanel/_carbon-imports.scss +10 -0
  2006. package/scss/components/CreateSidePanel/_create-side-panel.scss +56 -0
  2007. package/scss/components/CreateSidePanel/_index-with-carbon.scss +9 -0
  2008. package/scss/components/CreateSidePanel/_index.scss +8 -0
  2009. package/scss/components/CreateTearsheet/_carbon-imports.scss +10 -0
  2010. package/scss/components/CreateTearsheet/_create-tearsheet.scss +165 -0
  2011. package/scss/components/CreateTearsheet/_index-with-carbon.scss +9 -0
  2012. package/scss/components/CreateTearsheet/_index.scss +8 -0
  2013. package/scss/components/CreateTearsheetNarrow/_carbon-imports.scss +10 -0
  2014. package/scss/components/CreateTearsheetNarrow/_create-tearsheet-narrow.scss +61 -0
  2015. package/scss/components/CreateTearsheetNarrow/_index-with-carbon.scss +9 -0
  2016. package/scss/components/CreateTearsheetNarrow/_index.scss +8 -0
  2017. package/scss/components/DataSpreadsheet/_carbon-imports.scss +6 -0
  2018. package/scss/components/DataSpreadsheet/_data-spreadsheet.scss +310 -0
  2019. package/scss/components/DataSpreadsheet/_index-with-carbon.scss +9 -0
  2020. package/scss/components/DataSpreadsheet/_index.scss +8 -0
  2021. package/scss/components/Datagrid/_carbon-imports.scss +6 -0
  2022. package/scss/components/Datagrid/_datagrid.scss +86 -0
  2023. package/scss/components/Datagrid/_index-with-carbon.scss +9 -0
  2024. package/scss/components/Datagrid/_index.scss +8 -0
  2025. package/scss/components/Datagrid/styles/_datagrid.scss +1006 -0
  2026. package/scss/components/Datagrid/styles/_draggableElement.scss +120 -0
  2027. package/scss/components/Datagrid/styles/_index.scss +22 -0
  2028. package/scss/components/Datagrid/styles/_useActionsColumn.scss +42 -0
  2029. package/scss/components/Datagrid/styles/_useColumnCenterAlign.scss +19 -0
  2030. package/scss/components/Datagrid/styles/_useColumnRightAlign.scss +28 -0
  2031. package/scss/components/Datagrid/styles/_useExpandedRow.scss +101 -0
  2032. package/scss/components/Datagrid/styles/_useInlineEdit.scss +445 -0
  2033. package/scss/components/Datagrid/styles/_useNestedRows.scss +128 -0
  2034. package/scss/components/Datagrid/styles/_useNestedTable.scss +36 -0
  2035. package/scss/components/Datagrid/styles/_useSelectAllToggle.scss +37 -0
  2036. package/scss/components/Datagrid/styles/_useSortableColumns.scss +85 -0
  2037. package/scss/components/Datagrid/styles/_useStickyColumn.scss +72 -0
  2038. package/scss/components/Datagrid/styles/_variables.scss +10 -0
  2039. package/scss/components/Datagrid/styles/addons/_CustomizeColumnsTearsheet.scss +77 -0
  2040. package/scss/components/Datagrid/styles/addons/_FilterFlyout.scss +110 -0
  2041. package/scss/components/Datagrid/styles/addons/_FilterPanel.scss +218 -0
  2042. package/scss/components/Datagrid/styles/addons/_RowSizeDropdown.scss +94 -0
  2043. package/scss/components/Datagrid/styles/addons/_animations.scss +56 -0
  2044. package/scss/components/Decorator/_carbon-imports.scss +9 -0
  2045. package/scss/components/Decorator/_decorator.scss +23 -0
  2046. package/scss/components/Decorator/_index-with-carbon.scss +9 -0
  2047. package/scss/components/Decorator/_index.scss +8 -0
  2048. package/scss/components/DecoratorBase/_carbon-imports.scss +9 -0
  2049. package/scss/components/DecoratorBase/_decorator-base-mixins.scss +39 -0
  2050. package/scss/components/DecoratorBase/_decorator-base.scss +145 -0
  2051. package/scss/components/DecoratorBase/_index-with-carbon.scss +9 -0
  2052. package/scss/components/DecoratorBase/_index.scss +8 -0
  2053. package/scss/components/DecoratorDualButton/_carbon-imports.scss +9 -0
  2054. package/scss/components/DecoratorDualButton/_decorator-dual-button.scss +112 -0
  2055. package/scss/components/DecoratorDualButton/_index-with-carbon.scss +9 -0
  2056. package/scss/components/DecoratorDualButton/_index.scss +8 -0
  2057. package/scss/components/DecoratorLink/_carbon-imports.scss +9 -0
  2058. package/scss/components/DecoratorLink/_decorator-link.scss +53 -0
  2059. package/scss/components/DecoratorLink/_index-with-carbon.scss +9 -0
  2060. package/scss/components/DecoratorLink/_index.scss +8 -0
  2061. package/scss/components/DecoratorSingleButton/_carbon-imports.scss +9 -0
  2062. package/scss/components/DecoratorSingleButton/_decorator-single-button.scss +117 -0
  2063. package/scss/components/DecoratorSingleButton/_index-with-carbon.scss +9 -0
  2064. package/scss/components/DecoratorSingleButton/_index.scss +8 -0
  2065. package/scss/components/DelimitedList/_carbon-imports.scss +9 -0
  2066. package/scss/components/DelimitedList/_delimited-list.scss +27 -0
  2067. package/scss/components/DelimitedList/_index-with-carbon.scss +9 -0
  2068. package/scss/components/DelimitedList/_index.scss +8 -0
  2069. package/scss/components/DescriptionList/_carbon-imports.scss +9 -0
  2070. package/scss/components/DescriptionList/_description-list.scss +103 -0
  2071. package/scss/components/DescriptionList/_index-with-carbon.scss +9 -0
  2072. package/scss/components/DescriptionList/_index.scss +8 -0
  2073. package/scss/components/EditFullPage/_edit-full-page.scss +26 -0
  2074. package/scss/components/EditFullPage/_index.scss +8 -0
  2075. package/scss/components/EditInPlace/_carbon-imports.scss +9 -0
  2076. package/scss/components/EditInPlace/_edit-in-place.scss +154 -0
  2077. package/scss/components/EditInPlace/_index-with-carbon.scss +9 -0
  2078. package/scss/components/EditInPlace/_index.scss +10 -0
  2079. package/scss/components/EditSidePanel/_carbon-imports.scss +9 -0
  2080. package/scss/components/EditSidePanel/_edit-side-panel.scss +48 -0
  2081. package/scss/components/EditSidePanel/_index-with-carbon.scss +9 -0
  2082. package/scss/components/EditSidePanel/_index.scss +8 -0
  2083. package/scss/components/EditTearsheet/_carbon-imports.scss +9 -0
  2084. package/scss/components/EditTearsheet/_edit-tearsheet.scss +134 -0
  2085. package/scss/components/EditTearsheet/_index-with-carbon.scss +9 -0
  2086. package/scss/components/EditTearsheet/_index.scss +8 -0
  2087. package/scss/components/EditTearsheetNarrow/_edit-tearsheet-narrow.scss +26 -0
  2088. package/scss/components/EditTearsheetNarrow/_index.scss +8 -0
  2089. package/scss/components/EditUpdateCards/_carbon-imports.scss +9 -0
  2090. package/scss/components/EditUpdateCards/_edit-update-cards.scss +95 -0
  2091. package/scss/components/EditUpdateCards/_index-with-carbon.scss +9 -0
  2092. package/scss/components/EditUpdateCards/_index.scss +8 -0
  2093. package/scss/components/EmptyStates/_carbon-imports.scss +11 -0
  2094. package/scss/components/EmptyStates/_empty-state.scss +85 -0
  2095. package/scss/components/EmptyStates/_index-with-carbon.scss +9 -0
  2096. package/scss/components/EmptyStates/_index.scss +8 -0
  2097. package/scss/components/ExampleComponent/_carbon-imports.scss +10 -0
  2098. package/scss/components/ExampleComponent/_example-component.scss +28 -0
  2099. package/scss/components/ExampleComponent/_index-with-carbon.scss +9 -0
  2100. package/scss/components/ExampleComponent/_index.scss +8 -0
  2101. package/scss/components/ExportModal/_carbon-imports.scss +16 -0
  2102. package/scss/components/ExportModal/_export-modal.scss +46 -0
  2103. package/scss/components/ExportModal/_index-with-carbon.scss +9 -0
  2104. package/scss/components/ExportModal/_index.scss +10 -0
  2105. package/scss/components/ExpressiveCard/_carbon-imports.scss +6 -0
  2106. package/scss/components/ExpressiveCard/_expressive-card.scss +18 -0
  2107. package/scss/components/ExpressiveCard/_index-with-carbon.scss +9 -0
  2108. package/scss/components/ExpressiveCard/_index.scss +10 -0
  2109. package/scss/components/FilterPanel/_carbon-imports.scss +14 -0
  2110. package/scss/components/FilterPanel/_filter-panel-accordion-item.scss +54 -0
  2111. package/scss/components/FilterPanel/_filter-panel-accordion.scss +6 -0
  2112. package/scss/components/FilterPanel/_filter-panel-checkbox-with-overflow.scss +60 -0
  2113. package/scss/components/FilterPanel/_filter-panel-checkbox.scss +53 -0
  2114. package/scss/components/FilterPanel/_filter-panel-group.scss +37 -0
  2115. package/scss/components/FilterPanel/_filter-panel-label.scss +39 -0
  2116. package/scss/components/FilterPanel/_filter-panel-search.scss +40 -0
  2117. package/scss/components/FilterPanel/_filter-panel.scss +30 -0
  2118. package/scss/components/FilterPanel/_index-with-carbon.scss +16 -0
  2119. package/scss/components/FilterPanel/_index.scss +15 -0
  2120. package/scss/components/FilterSummary/_filter-summary.scss +55 -0
  2121. package/scss/components/FilterSummary/_index.scss +10 -0
  2122. package/scss/components/FullPageError/_carbon-imports.scss +9 -0
  2123. package/scss/components/FullPageError/_full-page-error.scss +87 -0
  2124. package/scss/components/FullPageError/_index-with-carbon.scss +9 -0
  2125. package/scss/components/FullPageError/_index.scss +8 -0
  2126. package/scss/components/GetStartedCard/_carbon-imports.scss +9 -0
  2127. package/scss/components/GetStartedCard/_get-started-card.scss +133 -0
  2128. package/scss/components/GetStartedCard/_index-with-carbon.scss +9 -0
  2129. package/scss/components/GetStartedCard/_index.scss +8 -0
  2130. package/scss/components/Guidebanner/_carbon-imports.scss +6 -0
  2131. package/scss/components/Guidebanner/_guidebanner.scss +274 -0
  2132. package/scss/components/Guidebanner/_index-with-carbon.scss +9 -0
  2133. package/scss/components/Guidebanner/_index.scss +8 -0
  2134. package/scss/components/HTTPErrors/_carbon-imports.scss +10 -0
  2135. package/scss/components/HTTPErrors/_http-errors.scss +145 -0
  2136. package/scss/components/HTTPErrors/_index-with-carbon.scss +9 -0
  2137. package/scss/components/HTTPErrors/_index.scss +8 -0
  2138. package/scss/components/ImportModal/_carbon-imports.scss +14 -0
  2139. package/scss/components/ImportModal/_import-modal.scss +82 -0
  2140. package/scss/components/ImportModal/_index-with-carbon.scss +9 -0
  2141. package/scss/components/ImportModal/_index.scss +8 -0
  2142. package/scss/components/InlineTip/_index.scss +8 -0
  2143. package/scss/components/InlineTip/_inline-tip.scss +242 -0
  2144. package/scss/components/InterstitialScreen/_carbon-imports.scss +9 -0
  2145. package/scss/components/InterstitialScreen/_index-with-carbon.scss +9 -0
  2146. package/scss/components/InterstitialScreen/_index.scss +8 -0
  2147. package/scss/components/InterstitialScreen/_interstitial-screen.scss +158 -0
  2148. package/scss/components/MultiAddSelect/_carbon-imports.scss +6 -0
  2149. package/scss/components/MultiAddSelect/_index-with-carbon.scss +9 -0
  2150. package/scss/components/MultiAddSelect/_index.scss +8 -0
  2151. package/scss/components/MultiAddSelect/_multi-add-select.scss +8 -0
  2152. package/scss/components/Nav/_carbon-imports.scss +9 -0
  2153. package/scss/components/Nav/_index-with-carbon.scss +9 -0
  2154. package/scss/components/Nav/_index.scss +8 -0
  2155. package/scss/components/Nav/_nav.scss +254 -0
  2156. package/scss/components/NonLinearReading/_carbon-imports.scss +6 -0
  2157. package/scss/components/NonLinearReading/_index-with-carbon.scss +9 -0
  2158. package/scss/components/NonLinearReading/_index.scss +8 -0
  2159. package/scss/components/NonLinearReading/_non-linear-reading.scss +126 -0
  2160. package/scss/components/NotificationsPanel/_carbon-imports.scss +12 -0
  2161. package/scss/components/NotificationsPanel/_index-with-carbon.scss +9 -0
  2162. package/scss/components/NotificationsPanel/_index.scss +8 -0
  2163. package/scss/components/NotificationsPanel/_notifications-panel.scss +359 -0
  2164. package/scss/components/OptionsTile/_carbon-imports.scss +10 -0
  2165. package/scss/components/OptionsTile/_index-with-carbon.scss +9 -0
  2166. package/scss/components/OptionsTile/_index.scss +8 -0
  2167. package/scss/components/OptionsTile/_options-tile.scss +226 -0
  2168. package/scss/components/PageHeader/_carbon-imports.scss +13 -0
  2169. package/scss/components/PageHeader/_index-with-carbon.scss +9 -0
  2170. package/scss/components/PageHeader/_index.scss +10 -0
  2171. package/scss/components/PageHeader/_page-header.scss +1116 -0
  2172. package/scss/components/ProductiveCard/_carbon-imports.scss +6 -0
  2173. package/scss/components/ProductiveCard/_index-with-carbon.scss +9 -0
  2174. package/scss/components/ProductiveCard/_index.scss +10 -0
  2175. package/scss/components/ProductiveCard/_productive-card.scss +116 -0
  2176. package/scss/components/RemoveModal/_carbon-imports.scss +12 -0
  2177. package/scss/components/RemoveModal/_index-with-carbon.scss +9 -0
  2178. package/scss/components/RemoveModal/_index.scss +10 -0
  2179. package/scss/components/RemoveModal/_remove-modal.scss +27 -0
  2180. package/scss/components/Saving/_carbon-imports.scss +11 -0
  2181. package/scss/components/Saving/_index-with-carbon.scss +9 -0
  2182. package/scss/components/Saving/_index.scss +10 -0
  2183. package/scss/components/Saving/_saving.scss +40 -0
  2184. package/scss/components/ScrollGradient/_carbon-imports.scss +9 -0
  2185. package/scss/components/ScrollGradient/_index-with-carbon.scss +9 -0
  2186. package/scss/components/ScrollGradient/_index.scss +8 -0
  2187. package/scss/components/ScrollGradient/_scroll-gradient.scss +132 -0
  2188. package/scss/components/SearchBar/_carbon-imports.scss +9 -0
  2189. package/scss/components/SearchBar/_index-with-carbon.scss +9 -0
  2190. package/scss/components/SearchBar/_index.scss +8 -0
  2191. package/scss/components/SearchBar/_search-bar.scss +26 -0
  2192. package/scss/components/SidePanel/_animations.scss +78 -0
  2193. package/scss/components/SidePanel/_carbon-imports.scss +10 -0
  2194. package/scss/components/SidePanel/_index-with-carbon.scss +9 -0
  2195. package/scss/components/SidePanel/_index.scss +8 -0
  2196. package/scss/components/SidePanel/_side-panel-variables.scss +15 -0
  2197. package/scss/components/SidePanel/_side-panel.scss +626 -0
  2198. package/scss/components/SimpleHeader/_carbon-imports.scss +11 -0
  2199. package/scss/components/SimpleHeader/_index-with-carbon.scss +9 -0
  2200. package/scss/components/SimpleHeader/_index.scss +10 -0
  2201. package/scss/components/SimpleHeader/_simple-header.scss +37 -0
  2202. package/scss/components/SingleAddSelect/_carbon-imports.scss +6 -0
  2203. package/scss/components/SingleAddSelect/_index-with-carbon.scss +9 -0
  2204. package/scss/components/SingleAddSelect/_index.scss +8 -0
  2205. package/scss/components/SingleAddSelect/_single-add-select.scss +8 -0
  2206. package/scss/components/StatusIcon/_carbon-imports.scss +6 -0
  2207. package/scss/components/StatusIcon/_index-with-carbon.scss +9 -0
  2208. package/scss/components/StatusIcon/_index.scss +8 -0
  2209. package/scss/components/StatusIcon/_status-icon.scss +146 -0
  2210. package/scss/components/StatusIndicator/_carbon-imports.scss +12 -0
  2211. package/scss/components/StatusIndicator/_index-with-carbon.scss +9 -0
  2212. package/scss/components/StatusIndicator/_index.scss +8 -0
  2213. package/scss/components/StatusIndicator/_status-indicator.scss +93 -0
  2214. package/scss/components/StringFormatter/_carbon-imports.scss +10 -0
  2215. package/scss/components/StringFormatter/_index-with-carbon.scss +9 -0
  2216. package/scss/components/StringFormatter/_index.scss +8 -0
  2217. package/scss/components/StringFormatter/_string-formatter.scss +112 -0
  2218. package/scss/components/TagOverflow/_carbon-imports.scss +9 -0
  2219. package/scss/components/TagOverflow/_index-with-carbon.scss +9 -0
  2220. package/scss/components/TagOverflow/_index.scss +8 -0
  2221. package/scss/components/TagOverflow/_tag-overflow.scss +197 -0
  2222. package/scss/components/TagSet/_carbon-imports.scss +14 -0
  2223. package/scss/components/TagSet/_index-with-carbon.scss +9 -0
  2224. package/scss/components/TagSet/_index.scss +8 -0
  2225. package/scss/components/TagSet/_tag-set.scss +189 -0
  2226. package/scss/components/Tearsheet/_carbon-imports.scss +11 -0
  2227. package/scss/components/Tearsheet/_index-with-carbon.scss +9 -0
  2228. package/scss/components/Tearsheet/_index.scss +8 -0
  2229. package/scss/components/Tearsheet/_tearsheet.scss +464 -0
  2230. package/scss/components/Tearsheet/_tearsheet_next.scss +530 -0
  2231. package/scss/components/Toolbar/_carbon-imports.scss +8 -0
  2232. package/scss/components/Toolbar/_index-with-carbon.scss +9 -0
  2233. package/scss/components/Toolbar/_index.scss +8 -0
  2234. package/scss/components/Toolbar/_toolbar.scss +75 -0
  2235. package/scss/components/TooltipTrigger/_index-with-carbon.scss +8 -0
  2236. package/scss/components/TooltipTrigger/_index.scss +8 -0
  2237. package/scss/components/TooltipTrigger/_tooltip-trigger.scss +29 -0
  2238. package/scss/components/TruncatedList/_carbon-imports.scss +9 -0
  2239. package/scss/components/TruncatedList/_index-with-carbon.scss +9 -0
  2240. package/scss/components/TruncatedList/_index.scss +8 -0
  2241. package/scss/components/TruncatedList/_truncated-list.scss +51 -0
  2242. package/scss/components/TruncatedText/_carbon-imports.scss +6 -0
  2243. package/scss/components/TruncatedText/_index-with-carbon.scss +9 -0
  2244. package/scss/components/TruncatedText/_index.scss +8 -0
  2245. package/scss/components/TruncatedText/_truncated-text.scss +27 -0
  2246. package/scss/components/UserAvatar/_carbon-imports.scss +10 -0
  2247. package/scss/components/UserAvatar/_index-with-carbon.scss +9 -0
  2248. package/scss/components/UserAvatar/_index.scss +8 -0
  2249. package/scss/components/UserAvatar/_user-avatar.scss +153 -0
  2250. package/scss/components/UserProfileImage/_carbon-imports.scss +10 -0
  2251. package/scss/components/UserProfileImage/_color-map.scss +39 -0
  2252. package/scss/components/UserProfileImage/_index-with-carbon.scss +9 -0
  2253. package/scss/components/UserProfileImage/_index.scss +8 -0
  2254. package/scss/components/UserProfileImage/_user-profile-image.scss +162 -0
  2255. package/scss/components/WebTerminal/_carbon-imports.scss +12 -0
  2256. package/scss/components/WebTerminal/_index-with-carbon.scss +9 -0
  2257. package/scss/components/WebTerminal/_index.scss +8 -0
  2258. package/scss/components/WebTerminal/_web-terminal.scss +110 -0
  2259. package/scss/components/_Canary/_canary.scss +6 -0
  2260. package/scss/components/_Canary/_carbon-imports.scss +7 -0
  2261. package/scss/components/_Canary/_index-with-carbon.scss +8 -0
  2262. package/scss/components/_Canary/_index.scss +7 -0
  2263. package/scss/components/_index-released-only-with-carbon.scss +40 -0
  2264. package/scss/components/_index-released-only.scss +44 -0
  2265. package/scss/components/_index-with-carbon.scss +80 -0
  2266. package/scss/components/_index.scss +85 -0
  2267. package/scss/config-dev.scss +10 -0
  2268. package/scss/config.scss +8 -0
  2269. package/scss/global/decorators/_side-panel-decorator.scss +53 -0
  2270. package/scss/global/styles/_display-box.scss +65 -0
  2271. package/scss/global/styles/_imported-carbon-modules.scss +25 -0
  2272. package/scss/global/styles/_mixins.scss +22 -0
  2273. package/scss/global/styles/_project-settings.scss +10 -0
  2274. package/scss/index-full-carbon.scss +10 -0
  2275. package/scss/index-without-carbon-released-only.scss +12 -0
  2276. package/scss/index-without-carbon.scss +12 -0
  2277. package/scss/index.scss +10 -0
@@ -0,0 +1,3303 @@
1
+ /**
2
+ * Copyright IBM Corp. 2020, 2026
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ 'use strict';
9
+
10
+ var React = require('react');
11
+ var Icon = require('../Icon.js');
12
+ var iconPropTypesC5chbmyn = require('../iconPropTypes-C5chbmyn.js');
13
+
14
+ var _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path0, _path1, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23, _path24, _path25, _path26, _path27, _path28, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55, _path56, _path57, _path58, _path59, _path60, _path61, _path62, _path63, _path64, _path65, _path66, _path67, _path68, _path69, _path70, _path71, _path72, _path73, _path74, _path75, _path76, _path77, _path78, _path79, _path80, _path81, _path82, _path83, _path84, _path85, _circle, _circle2, _path86, _path87, _path88, _path89, _path90, _path91, _path92, _circle3, _path93, _path94, _circle4, _path95, _path96, _path97, _path98, _path99, _path100, _path101, _path102, _path103, _path104, _path105, _circle5, _path106, _path107, _circle6, _path108, _circle7, _circle8, _path109, _path110, _path111, _path112, _path113, _path114, _path115, _path116, _circle9, _path117, _path118, _path119, _path120, _path121, _path122, _path123, _path124, _path125, _path126, _path127, _path128, _path129, _path130, _path131, _path132, _path133, _path134, _path135, _path136, _path137, _path138, _path139, _path140, _path141, _path142, _path143, _path144, _path145, _path146, _path147, _path148, _path149, _path150, _path151, _path152, _path153, _path154, _path155, _path156, _path157, _path158, _path159, _circle0, _path160, _circle1, _path161, _path162, _circle10, _path163, _circle11, _path164, _path165, _path166, _circle12, _path167, _circle13, _path168, _path169, _circle14, _path170, _circle15, _path171, _path172, _path173, _path174, _path175, _path176, _path177, _path178, _path179, _path180, _path181, _path182, _circle16, _path183, _path184, _path185, _path186, _path187, _path188, _path189, _circle17, _circle18, _circle19, _circle20, _circle21, _path190, _path191, _path192, _path193, _path194, _path195, _path196, _path197, _path198, _path199, _path200, _path201, _path202, _path203, _circle22, _path204, _path205, _path206, _path207, _path208, _path209, _path210, _path211, _path212, _path213, _path214, _path215, _path216, _path217, _path218, _path219;
15
+ const ChartViolinPlot = /*#__PURE__*/React.forwardRef(function ChartViolinPlot(_ref, ref) {
16
+ let {
17
+ children,
18
+ size = 16,
19
+ ...rest
20
+ } = _ref;
21
+ return /*#__PURE__*/React.createElement(Icon.default, {
22
+ width: size,
23
+ height: size,
24
+ ref: ref,
25
+ xmlns: "http://www.w3.org/2000/svg",
26
+ viewBox: "0 0 32 32",
27
+ fill: "currentColor",
28
+ ...rest
29
+ }, _path || (_path = /*#__PURE__*/React.createElement("path", {
30
+ d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z"
31
+ })), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
32
+ d: "M14.86 7.8232L13 4.7231V2H11V4.7231l-1.86 3.1A7.9986 7.9986 0 008 11.939v.122a7.9961 7.9961 0 001.14 4.1158l1.86 3.1V26h2V19.2769l1.86-3.1A7.9986 7.9986 0 0016 12.061v-.122A7.9961 7.9961 0 0014.86 7.8232zM12 6.9434l1.145 1.9087A6.0027 6.0027 0 0113.9185 11h-3.837a6.0086 6.0086 0 01.7735-2.1484zm0 10.1132l-1.145-1.9087A6.0027 6.0027 0 0110.0815 13h3.837a6.0086 6.0086 0 01-.7735 2.1484zM27.86 11.8232L26 8.7231V2H24V8.7231l-1.86 3.1A7.9986 7.9986 0 0021 15.939v.122a7.9961 7.9961 0 001.14 4.1158l1.86 3.1V26h2V23.2769l1.86-3.1A7.9986 7.9986 0 0029 16.061v-.122A7.9961 7.9961 0 0027.86 11.8232zm-2.86-.88l1.145 1.9087A6.0027 6.0027 0 0126.9185 15h-3.837a6.0086 6.0086 0 01.7735-2.1484zm0 10.1132l-1.145-1.9087A6.0027 6.0027 0 0123.0815 17h3.837a6.0086 6.0086 0 01-.7735 2.1484z"
33
+ })), children);
34
+ });
35
+ if (process.env.NODE_ENV !== "production") {
36
+ ChartViolinPlot.propTypes = iconPropTypesC5chbmyn.i;
37
+ }
38
+ const ChartWaterfall = /*#__PURE__*/React.forwardRef(function ChartWaterfall(_ref2, ref) {
39
+ let {
40
+ children,
41
+ size = 16,
42
+ ...rest
43
+ } = _ref2;
44
+ return /*#__PURE__*/React.createElement(Icon.default, {
45
+ width: size,
46
+ height: size,
47
+ ref: ref,
48
+ xmlns: "http://www.w3.org/2000/svg",
49
+ viewBox: "0 0 32 32",
50
+ fill: "currentColor",
51
+ ...rest
52
+ }, _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
53
+ d: "M28,28V18H26V28H22V4H20V28H10V14H8V28H4V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z"
54
+ })), _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
55
+ d: "M14 4H16V18H14z"
56
+ })), children);
57
+ });
58
+ if (process.env.NODE_ENV !== "production") {
59
+ ChartWaterfall.propTypes = iconPropTypesC5chbmyn.i;
60
+ }
61
+ const ChartWinLoss = /*#__PURE__*/React.forwardRef(function ChartWinLoss(_ref3, ref) {
62
+ let {
63
+ children,
64
+ size = 16,
65
+ ...rest
66
+ } = _ref3;
67
+ return /*#__PURE__*/React.createElement(Icon.default, {
68
+ width: size,
69
+ height: size,
70
+ ref: ref,
71
+ xmlns: "http://www.w3.org/2000/svg",
72
+ viewBox: "0 0 32 32",
73
+ fill: "currentColor",
74
+ ...rest
75
+ }, _path5 || (_path5 = /*#__PURE__*/React.createElement("path", {
76
+ 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"
77
+ })), children);
78
+ });
79
+ if (process.env.NODE_ENV !== "production") {
80
+ ChartWinLoss.propTypes = iconPropTypesC5chbmyn.i;
81
+ }
82
+ const Chat = /*#__PURE__*/React.forwardRef(function Chat(_ref4, ref) {
83
+ let {
84
+ children,
85
+ size = 16,
86
+ ...rest
87
+ } = _ref4;
88
+ return /*#__PURE__*/React.createElement(Icon.default, {
89
+ width: size,
90
+ height: size,
91
+ ref: ref,
92
+ xmlns: "http://www.w3.org/2000/svg",
93
+ viewBox: "0 0 32 32",
94
+ fill: "currentColor",
95
+ ...rest
96
+ }, _path6 || (_path6 = /*#__PURE__*/React.createElement("path", {
97
+ 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"
98
+ })), _path7 || (_path7 = /*#__PURE__*/React.createElement("path", {
99
+ d: "M8 10H24V12H8zM8 16H18V18H8z"
100
+ })), children);
101
+ });
102
+ if (process.env.NODE_ENV !== "production") {
103
+ Chat.propTypes = iconPropTypesC5chbmyn.i;
104
+ }
105
+ const ChatLaunch = /*#__PURE__*/React.forwardRef(function ChatLaunch(_ref5, ref) {
106
+ let {
107
+ children,
108
+ size = 16,
109
+ ...rest
110
+ } = _ref5;
111
+ return /*#__PURE__*/React.createElement(Icon.default, {
112
+ width: size,
113
+ height: size,
114
+ ref: ref,
115
+ xmlns: "http://www.w3.org/2000/svg",
116
+ viewBox: "0 0 32 32",
117
+ fill: "currentColor",
118
+ ...rest
119
+ }, _path8 || (_path8 = /*#__PURE__*/React.createElement("path", {
120
+ d: "M22 4L22 6 26.586 6 20 12.586 21.414 14 28 7.414 28 12 30 12 30 4 22 4zM28 16v4a1.9965 1.9965 0 01-2 2H20l-4 7 1.7358 1 3.4288-6H26a3.9992 3.9992 0 004-4V16zM4 20V8A1.9965 1.9965 0 016 6H18V4H6A3.9986 3.9986 0 002 8V20a3.9992 3.9992 0 004 4h9V22H6A1.9965 1.9965 0 014 20z"
121
+ })), children);
122
+ });
123
+ if (process.env.NODE_ENV !== "production") {
124
+ ChatLaunch.propTypes = iconPropTypesC5chbmyn.i;
125
+ }
126
+ const ChatOff = /*#__PURE__*/React.forwardRef(function ChatOff(_ref6, ref) {
127
+ let {
128
+ children,
129
+ size = 16,
130
+ ...rest
131
+ } = _ref6;
132
+ return /*#__PURE__*/React.createElement(Icon.default, {
133
+ width: size,
134
+ height: size,
135
+ ref: ref,
136
+ xmlns: "http://www.w3.org/2000/svg",
137
+ viewBox: "0 0 32 32",
138
+ fill: "currentColor",
139
+ ...rest
140
+ }, _path9 || (_path9 = /*#__PURE__*/React.createElement("path", {
141
+ d: "M28 8V21h2V8a3.9986 3.9986 0 00-4-4H8.2429l2 2H26A1.9965 1.9965 0 0128 8zM30 28.5859L3.4141 2 2 3.4141 3.5039 4.918A3.9181 3.9181 0 002 8V20a3.9992 3.9992 0 004 4h6V22H6a1.9965 1.9965 0 01-2-2V8a1.9814 1.9814 0 01.9194-1.6665L20.5859 22H17l-4 7 1.7358 1 3.4288-6h4.4213l6 6z"
142
+ })), children);
143
+ });
144
+ if (process.env.NODE_ENV !== "production") {
145
+ ChatOff.propTypes = iconPropTypesC5chbmyn.i;
146
+ }
147
+ const ChatOperational = /*#__PURE__*/React.forwardRef(function ChatOperational(_ref7, ref) {
148
+ let {
149
+ children,
150
+ size = 16,
151
+ ...rest
152
+ } = _ref7;
153
+ return /*#__PURE__*/React.createElement(Icon.default, {
154
+ width: size,
155
+ height: size,
156
+ ref: ref,
157
+ xmlns: "http://www.w3.org/2000/svg",
158
+ viewBox: "0 0 32 32",
159
+ fill: "currentColor",
160
+ ...rest
161
+ }, _path0 || (_path0 = /*#__PURE__*/React.createElement("path", {
162
+ d: "M15.586 10.414L19.166 14 19.166 14 15.584 17.587 17 19 22 14 17 9 15.586 10.414z"
163
+ })), _path1 || (_path1 = /*#__PURE__*/React.createElement("path", {
164
+ d: "M20.586 10.414L24.166 14 24.166 14 20.584 17.587 22 19 27 14 22 9 20.586 10.414zM10 9L11.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"
165
+ })), _path10 || (_path10 = /*#__PURE__*/React.createElement("path", {
166
+ 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"
167
+ })), children);
168
+ });
169
+ if (process.env.NODE_ENV !== "production") {
170
+ ChatOperational.propTypes = iconPropTypesC5chbmyn.i;
171
+ }
172
+ const ChatBot = /*#__PURE__*/React.forwardRef(function ChatBot(_ref8, ref) {
173
+ let {
174
+ children,
175
+ size = 16,
176
+ ...rest
177
+ } = _ref8;
178
+ return /*#__PURE__*/React.createElement(Icon.default, {
179
+ width: size,
180
+ height: size,
181
+ ref: ref,
182
+ xmlns: "http://www.w3.org/2000/svg",
183
+ viewBox: "0 0 32 32",
184
+ fill: "currentColor",
185
+ ...rest
186
+ }, _path11 || (_path11 = /*#__PURE__*/React.createElement("path", {
187
+ d: "M16 19a6.9908 6.9908 0 01-5.833-3.1287l1.666-1.1074a5.0007 5.0007 0 008.334 0l1.666 1.1074A6.9908 6.9908 0 0116 19zM20 8a2 2 0 102 2A1.9806 1.9806 0 0020 8zM12 8a2 2 0 102 2A1.9806 1.9806 0 0012 8z"
188
+ })), _path12 || (_path12 = /*#__PURE__*/React.createElement("path", {
189
+ 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"
190
+ })), children);
191
+ });
192
+ if (process.env.NODE_ENV !== "production") {
193
+ ChatBot.propTypes = iconPropTypesC5chbmyn.i;
194
+ }
195
+ const Checkbox = /*#__PURE__*/React.forwardRef(function Checkbox(_ref9, ref) {
196
+ let {
197
+ children,
198
+ size = 16,
199
+ ...rest
200
+ } = _ref9;
201
+ return /*#__PURE__*/React.createElement(Icon.default, {
202
+ width: size,
203
+ height: size,
204
+ ref: ref,
205
+ xmlns: "http://www.w3.org/2000/svg",
206
+ viewBox: "0 0 32 32",
207
+ fill: "currentColor",
208
+ ...rest
209
+ }, _path13 || (_path13 = /*#__PURE__*/React.createElement("path", {
210
+ 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"
211
+ })), children);
212
+ });
213
+ if (process.env.NODE_ENV !== "production") {
214
+ Checkbox.propTypes = iconPropTypesC5chbmyn.i;
215
+ }
216
+ const CheckboxChecked = /*#__PURE__*/React.forwardRef(function CheckboxChecked(_ref10, ref) {
217
+ let {
218
+ children,
219
+ size = 16,
220
+ ...rest
221
+ } = _ref10;
222
+ return /*#__PURE__*/React.createElement(Icon.default, {
223
+ width: size,
224
+ height: size,
225
+ ref: ref,
226
+ xmlns: "http://www.w3.org/2000/svg",
227
+ viewBox: "0 0 32 32",
228
+ fill: "currentColor",
229
+ ...rest
230
+ }, _path14 || (_path14 = /*#__PURE__*/React.createElement("path", {
231
+ 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"
232
+ })), _path15 || (_path15 = /*#__PURE__*/React.createElement("path", {
233
+ d: "M14 21.5L9 16.54 10.59 15 14 18.35 21.41 11 23 12.58 14 21.5z"
234
+ })), children);
235
+ });
236
+ if (process.env.NODE_ENV !== "production") {
237
+ CheckboxChecked.propTypes = iconPropTypesC5chbmyn.i;
238
+ }
239
+ const CheckboxCheckedFilled = /*#__PURE__*/React.forwardRef(function CheckboxCheckedFilled(_ref11, ref) {
240
+ let {
241
+ children,
242
+ size = 16,
243
+ ...rest
244
+ } = _ref11;
245
+ return /*#__PURE__*/React.createElement(Icon.default, {
246
+ width: size,
247
+ height: size,
248
+ ref: ref,
249
+ xmlns: "http://www.w3.org/2000/svg",
250
+ viewBox: "0 0 32 32",
251
+ fill: "currentColor",
252
+ ...rest
253
+ }, _path16 || (_path16 = /*#__PURE__*/React.createElement("path", {
254
+ 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,4ZM14,21.5,9,16.5427,10.5908,15,14,18.3456,21.4087,11l1.5918,1.5772Z"
255
+ })), _path17 || (_path17 = /*#__PURE__*/React.createElement("path", {
256
+ fill: "none",
257
+ d: "M14,21.5,9,16.5427,10.5908,15,14,18.3456,21.4087,11l1.5918,1.5772Z",
258
+ "data-icon-path": "inner-path"
259
+ })), children);
260
+ });
261
+ if (process.env.NODE_ENV !== "production") {
262
+ CheckboxCheckedFilled.propTypes = iconPropTypesC5chbmyn.i;
263
+ }
264
+ const CheckboxIndeterminate = /*#__PURE__*/React.forwardRef(function CheckboxIndeterminate(_ref12, ref) {
265
+ let {
266
+ children,
267
+ size = 16,
268
+ ...rest
269
+ } = _ref12;
270
+ return /*#__PURE__*/React.createElement(Icon.default, {
271
+ width: size,
272
+ height: size,
273
+ ref: ref,
274
+ xmlns: "http://www.w3.org/2000/svg",
275
+ viewBox: "0 0 32 32",
276
+ fill: "currentColor",
277
+ ...rest
278
+ }, _path18 || (_path18 = /*#__PURE__*/React.createElement("path", {
279
+ d: "M10 14H22V18H10z"
280
+ })), _path19 || (_path19 = /*#__PURE__*/React.createElement("path", {
281
+ 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"
282
+ })), children);
283
+ });
284
+ if (process.env.NODE_ENV !== "production") {
285
+ CheckboxIndeterminate.propTypes = iconPropTypesC5chbmyn.i;
286
+ }
287
+ const CheckboxIndeterminateFilled = /*#__PURE__*/React.forwardRef(function CheckboxIndeterminateFilled(_ref13, ref) {
288
+ let {
289
+ children,
290
+ size = 16,
291
+ ...rest
292
+ } = _ref13;
293
+ return /*#__PURE__*/React.createElement(Icon.default, {
294
+ width: size,
295
+ height: size,
296
+ ref: ref,
297
+ xmlns: "http://www.w3.org/2000/svg",
298
+ viewBox: "0 0 32 32",
299
+ fill: "currentColor",
300
+ ...rest
301
+ }, _path20 || (_path20 = /*#__PURE__*/React.createElement("path", {
302
+ 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,4ZM22,18H10V14H22Z"
303
+ })), _path21 || (_path21 = /*#__PURE__*/React.createElement("path", {
304
+ fill: "none",
305
+ d: "M22,18H10V14H22Z",
306
+ "data-icon-path": "inner-path"
307
+ })), children);
308
+ });
309
+ if (process.env.NODE_ENV !== "production") {
310
+ CheckboxIndeterminateFilled.propTypes = iconPropTypesC5chbmyn.i;
311
+ }
312
+ const Checkmark = /*#__PURE__*/React.forwardRef(function Checkmark(_ref14, ref) {
313
+ let {
314
+ children,
315
+ size = 16,
316
+ ...rest
317
+ } = _ref14;
318
+ if (size === 20 || size === "20" || size === "20px") {
319
+ return /*#__PURE__*/React.createElement(Icon.default, {
320
+ width: size,
321
+ height: size,
322
+ ref: ref,
323
+ xmlns: "http://www.w3.org/2000/svg",
324
+ viewBox: "0 0 20 20",
325
+ fill: "currentColor",
326
+ ...rest
327
+ }, _path22 || (_path22 = /*#__PURE__*/React.createElement("path", {
328
+ d: "M8 13.2L3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z"
329
+ })), _path23 || (_path23 = /*#__PURE__*/React.createElement("path", {
330
+ d: "M15.6 5.6L8 13.2 3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z"
331
+ })), children);
332
+ }
333
+ if (size === 24 || size === "24" || size === "24px") {
334
+ return /*#__PURE__*/React.createElement(Icon.default, {
335
+ width: size,
336
+ height: size,
337
+ ref: ref,
338
+ xmlns: "http://www.w3.org/2000/svg",
339
+ viewBox: "0 0 24 24",
340
+ fill: "currentColor",
341
+ ...rest
342
+ }, _path24 || (_path24 = /*#__PURE__*/React.createElement("path", {
343
+ d: "M10 15.9L4.7 10.6 3.6 11.6 8.9 16.9 10 18 20.6 7.4 19.5 6.3z"
344
+ })), children);
345
+ }
346
+ return /*#__PURE__*/React.createElement(Icon.default, {
347
+ width: size,
348
+ height: size,
349
+ ref: ref,
350
+ xmlns: "http://www.w3.org/2000/svg",
351
+ viewBox: "0 0 32 32",
352
+ fill: "currentColor",
353
+ ...rest
354
+ }, _path25 || (_path25 = /*#__PURE__*/React.createElement("path", {
355
+ d: "M13 24L4 15 5.414 13.586 13 21.171 26.586 7.586 28 9 13 24z"
356
+ })), children);
357
+ });
358
+ if (process.env.NODE_ENV !== "production") {
359
+ Checkmark.propTypes = iconPropTypesC5chbmyn.i;
360
+ }
361
+ const CheckmarkFilled = /*#__PURE__*/React.forwardRef(function CheckmarkFilled(_ref15, ref) {
362
+ let {
363
+ children,
364
+ size = 16,
365
+ ...rest
366
+ } = _ref15;
367
+ if (size === 16 || size === "16" || size === "16px") {
368
+ return /*#__PURE__*/React.createElement(Icon.default, {
369
+ width: size,
370
+ height: size,
371
+ ref: ref,
372
+ xmlns: "http://www.w3.org/2000/svg",
373
+ viewBox: "0 0 16 16",
374
+ fill: "currentColor",
375
+ ...rest
376
+ }, _path26 || (_path26 = /*#__PURE__*/React.createElement("path", {
377
+ d: "M8,1C4.1,1,1,4.1,1,8c0,3.9,3.1,7,7,7s7-3.1,7-7C15,4.1,11.9,1,8,1z M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z"
378
+ })), _path27 || (_path27 = /*#__PURE__*/React.createElement("path", {
379
+ d: "M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z",
380
+ "data-icon-path": "inner-path",
381
+ opacity: "0"
382
+ })), children);
383
+ }
384
+ if (size === 20 || size === "20" || size === "20px") {
385
+ return /*#__PURE__*/React.createElement(Icon.default, {
386
+ width: size,
387
+ height: size,
388
+ ref: ref,
389
+ xmlns: "http://www.w3.org/2000/svg",
390
+ viewBox: "0 0 20 20",
391
+ fill: "currentColor",
392
+ ...rest
393
+ }, _path28 || (_path28 = /*#__PURE__*/React.createElement("path", {
394
+ d: "M10,1c-4.9,0-9,4.1-9,9s4.1,9,9,9s9-4,9-9S15,1,10,1z M8.7,13.5l-3.2-3.2l1-1l2.2,2.2l4.8-4.8l1,1L8.7,13.5z"
395
+ })), _path29 || (_path29 = /*#__PURE__*/React.createElement("path", {
396
+ fill: "none",
397
+ d: "M8.7,13.5l-3.2-3.2l1-1l2.2,2.2l4.8-4.8l1,1L8.7,13.5z",
398
+ "data-icon-path": "inner-path",
399
+ opacity: "0"
400
+ })), children);
401
+ }
402
+ if (size === 24 || size === "24" || size === "24px") {
403
+ return /*#__PURE__*/React.createElement(Icon.default, {
404
+ width: size,
405
+ height: size,
406
+ ref: ref,
407
+ xmlns: "http://www.w3.org/2000/svg",
408
+ viewBox: "0 0 24 24",
409
+ fill: "currentColor",
410
+ ...rest
411
+ }, _path30 || (_path30 = /*#__PURE__*/React.createElement("path", {
412
+ d: "M12,1C6,1,1,6,1,12s5,11,11,11s11-4.9,11-11S18.1,1,12,1z M10.4,16.3l-3.9-3.9l1.3-1.2l2.7,2.7l5.8-5.8l1.3,1.3L10.4,16.3z"
413
+ })), _path31 || (_path31 = /*#__PURE__*/React.createElement("path", {
414
+ fill: "none",
415
+ d: "M10.4,16.3l-3.9-3.9l1.3-1.2l2.7,2.7l5.8-5.8l1.3,1.3L10.4,16.3z",
416
+ "data-icon-path": "inner-path",
417
+ opacity: "0"
418
+ })), children);
419
+ }
420
+ return /*#__PURE__*/React.createElement(Icon.default, {
421
+ width: size,
422
+ height: size,
423
+ ref: ref,
424
+ xmlns: "http://www.w3.org/2000/svg",
425
+ viewBox: "0 0 32 32",
426
+ fill: "currentColor",
427
+ ...rest
428
+ }, _path32 || (_path32 = /*#__PURE__*/React.createElement("path", {
429
+ d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM14,21.5908l-5-5L10.5906,15,14,18.4092,21.41,11l1.5957,1.5859Z"
430
+ })), _path33 || (_path33 = /*#__PURE__*/React.createElement("path", {
431
+ fill: "none",
432
+ d: "M14 21.591L9 16.591 10.591 15 14 18.409 21.41 11 23.005 12.585 14 21.591z",
433
+ "data-icon-path": "inner-path"
434
+ })), children);
435
+ });
436
+ if (process.env.NODE_ENV !== "production") {
437
+ CheckmarkFilled.propTypes = iconPropTypesC5chbmyn.i;
438
+ }
439
+ const CheckmarkFilledError = /*#__PURE__*/React.forwardRef(function CheckmarkFilledError(_ref16, ref) {
440
+ let {
441
+ children,
442
+ size = 16,
443
+ ...rest
444
+ } = _ref16;
445
+ return /*#__PURE__*/React.createElement(Icon.default, {
446
+ width: size,
447
+ height: size,
448
+ ref: ref,
449
+ xmlns: "http://www.w3.org/2000/svg",
450
+ viewBox: "0 0 32 32",
451
+ fill: "currentColor",
452
+ ...rest
453
+ }, _path34 || (_path34 = /*#__PURE__*/React.createElement("path", {
454
+ 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"
455
+ })), _path35 || (_path35 = /*#__PURE__*/React.createElement("path", {
456
+ d: "M14,2a12,12,0,1,0,2,23.82V24a8,8,0,0,1,8-8h1.82A11.9348,11.9348,0,0,0,14,2ZM12,18.5908l-4-4L9.5908,13,12,15.4092,17.4092,10,19,11.5908Z"
457
+ })), _path36 || (_path36 = /*#__PURE__*/React.createElement("path", {
458
+ fill: "none",
459
+ d: "M12 18.591L8 14.591 9.591 13 12 15.409 17.409 10 19 11.591 12 18.591z",
460
+ "data-icon-path": "inner-path"
461
+ })), children);
462
+ });
463
+ if (process.env.NODE_ENV !== "production") {
464
+ CheckmarkFilledError.propTypes = iconPropTypesC5chbmyn.i;
465
+ }
466
+ const CheckmarkFilledWarning = /*#__PURE__*/React.forwardRef(function CheckmarkFilledWarning(_ref17, ref) {
467
+ let {
468
+ children,
469
+ size = 16,
470
+ ...rest
471
+ } = _ref17;
472
+ return /*#__PURE__*/React.createElement(Icon.default, {
473
+ width: size,
474
+ height: size,
475
+ ref: ref,
476
+ xmlns: "http://www.w3.org/2000/svg",
477
+ viewBox: "0 0 32 32",
478
+ fill: "currentColor",
479
+ ...rest
480
+ }, _path37 || (_path37 = /*#__PURE__*/React.createElement("path", {
481
+ d: "M14,2a12,12,0,1,0,3.3928,23.5059l3.9246-7.8492A2.9846,2.9846,0,0,1,24,16h1.82A11.9348,11.9348,0,0,0,14,2ZM12,18.5908l-4-4L9.5908,13,12,15.4092,17.4092,10,19,11.5908Z"
482
+ })), _path38 || (_path38 = /*#__PURE__*/React.createElement("path", {
483
+ 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"
484
+ })), _path39 || (_path39 = /*#__PURE__*/React.createElement("path", {
485
+ fill: "none",
486
+ d: "M12 18.591L8 14.591 9.591 13 12 15.409 17.409 10 19 11.591 12 18.591z",
487
+ "data-icon-path": "inner-path"
488
+ })), children);
489
+ });
490
+ if (process.env.NODE_ENV !== "production") {
491
+ CheckmarkFilledWarning.propTypes = iconPropTypesC5chbmyn.i;
492
+ }
493
+ const CheckmarkOutline = /*#__PURE__*/React.forwardRef(function CheckmarkOutline(_ref18, ref) {
494
+ let {
495
+ children,
496
+ size = 16,
497
+ ...rest
498
+ } = _ref18;
499
+ return /*#__PURE__*/React.createElement(Icon.default, {
500
+ width: size,
501
+ height: size,
502
+ ref: ref,
503
+ xmlns: "http://www.w3.org/2000/svg",
504
+ viewBox: "0 0 32 32",
505
+ fill: "currentColor",
506
+ ...rest
507
+ }, _path40 || (_path40 = /*#__PURE__*/React.createElement("path", {
508
+ d: "M14 21.414L9 16.413 10.413 15 14 18.586 21.585 11 23 12.415 14 21.414z"
509
+ })), _path41 || (_path41 = /*#__PURE__*/React.createElement("path", {
510
+ 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"
511
+ })), children);
512
+ });
513
+ if (process.env.NODE_ENV !== "production") {
514
+ CheckmarkOutline.propTypes = iconPropTypesC5chbmyn.i;
515
+ }
516
+ const CheckmarkOutlineError = /*#__PURE__*/React.forwardRef(function CheckmarkOutlineError(_ref19, ref) {
517
+ let {
518
+ children,
519
+ size = 16,
520
+ ...rest
521
+ } = _ref19;
522
+ return /*#__PURE__*/React.createElement(Icon.default, {
523
+ width: size,
524
+ height: size,
525
+ ref: ref,
526
+ xmlns: "http://www.w3.org/2000/svg",
527
+ viewBox: "0 0 32 32",
528
+ fill: "currentColor",
529
+ ...rest
530
+ }, _path42 || (_path42 = /*#__PURE__*/React.createElement("path", {
531
+ d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z"
532
+ })), _path43 || (_path43 = /*#__PURE__*/React.createElement("path", {
533
+ d: "M12 15.59L9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59zM30 24a6 6 0 10-6 6A6.0066 6.0066 0 0030 24zm-2 0a3.9521 3.9521 0 01-.5669 2.019L21.981 20.5669A3.9529 3.9529 0 0124 20 4.0045 4.0045 0 0128 24zm-8 0a3.9521 3.9521 0 01.5669-2.019l5.4521 5.4521A3.9529 3.9529 0 0124 28 4.0045 4.0045 0 0120 24z"
534
+ })), children);
535
+ });
536
+ if (process.env.NODE_ENV !== "production") {
537
+ CheckmarkOutlineError.propTypes = iconPropTypesC5chbmyn.i;
538
+ }
539
+ const CheckmarkOutlineWarning = /*#__PURE__*/React.forwardRef(function CheckmarkOutlineWarning(_ref20, ref) {
540
+ let {
541
+ children,
542
+ size = 16,
543
+ ...rest
544
+ } = _ref20;
545
+ return /*#__PURE__*/React.createElement(Icon.default, {
546
+ width: size,
547
+ height: size,
548
+ ref: ref,
549
+ xmlns: "http://www.w3.org/2000/svg",
550
+ viewBox: "0 0 32 32",
551
+ fill: "currentColor",
552
+ ...rest
553
+ }, _path44 || (_path44 = /*#__PURE__*/React.createElement("path", {
554
+ d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z"
555
+ })), _path45 || (_path45 = /*#__PURE__*/React.createElement("path", {
556
+ d: "M12 15.59L9.41 13 8 14.41 12 18.41 19 11.41 17.59 10 12 15.59zM27.38 28H20.6178L24 21.2358zM24 18a1 1 0 00-.8947.5527l-5 10A1.0005 1.0005 0 0019 30H29a1 1 0 00.9214-1.3892L24.8946 18.5527A1 1 0 0024 18z"
557
+ })), children);
558
+ });
559
+ if (process.env.NODE_ENV !== "production") {
560
+ CheckmarkOutlineWarning.propTypes = iconPropTypesC5chbmyn.i;
561
+ }
562
+ const Chemistry = /*#__PURE__*/React.forwardRef(function Chemistry(_ref21, ref) {
563
+ let {
564
+ children,
565
+ size = 16,
566
+ ...rest
567
+ } = _ref21;
568
+ return /*#__PURE__*/React.createElement(Icon.default, {
569
+ width: size,
570
+ height: size,
571
+ ref: ref,
572
+ xmlns: "http://www.w3.org/2000/svg",
573
+ viewBox: "0 0 32 32",
574
+ fill: "currentColor",
575
+ ...rest
576
+ }, _path46 || (_path46 = /*#__PURE__*/React.createElement("path", {
577
+ 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"
578
+ })), children);
579
+ });
580
+ if (process.env.NODE_ENV !== "production") {
581
+ Chemistry.propTypes = iconPropTypesC5chbmyn.i;
582
+ }
583
+ const ChemistryReference = /*#__PURE__*/React.forwardRef(function ChemistryReference(_ref22, ref) {
584
+ let {
585
+ children,
586
+ size = 16,
587
+ ...rest
588
+ } = _ref22;
589
+ return /*#__PURE__*/React.createElement(Icon.default, {
590
+ width: size,
591
+ height: size,
592
+ ref: ref,
593
+ xmlns: "http://www.w3.org/2000/svg",
594
+ viewBox: "0 0 32 32",
595
+ fill: "currentColor",
596
+ ...rest
597
+ }, _path47 || (_path47 = /*#__PURE__*/React.createElement("path", {
598
+ d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"
599
+ })), _path48 || (_path48 = /*#__PURE__*/React.createElement("path", {
600
+ 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"
601
+ })), children);
602
+ });
603
+ if (process.env.NODE_ENV !== "production") {
604
+ ChemistryReference.propTypes = iconPropTypesC5chbmyn.i;
605
+ }
606
+ const ChevronDown = /*#__PURE__*/React.forwardRef(function ChevronDown(_ref23, ref) {
607
+ let {
608
+ children,
609
+ size = 16,
610
+ ...rest
611
+ } = _ref23;
612
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") {
613
+ return /*#__PURE__*/React.createElement(Icon.default, {
614
+ width: size,
615
+ height: size,
616
+ ref: ref,
617
+ xmlns: "http://www.w3.org/2000/svg",
618
+ viewBox: "0 0 10 6",
619
+ fill: "currentColor",
620
+ ...rest
621
+ }, _path49 || (_path49 = /*#__PURE__*/React.createElement("path", {
622
+ d: "M5 6L0 1 0.7 0.3 5 4.6 9.3 0.3 10 1z"
623
+ })), children);
624
+ }
625
+ if (size === 16 || size === "16" || size === "16px") {
626
+ return /*#__PURE__*/React.createElement(Icon.default, {
627
+ width: size,
628
+ height: size,
629
+ ref: ref,
630
+ xmlns: "http://www.w3.org/2000/svg",
631
+ viewBox: "0 0 16 16",
632
+ fill: "currentColor",
633
+ ...rest
634
+ }, _path50 || (_path50 = /*#__PURE__*/React.createElement("path", {
635
+ d: "M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z"
636
+ })), children);
637
+ }
638
+ return /*#__PURE__*/React.createElement(Icon.default, {
639
+ width: size,
640
+ height: size,
641
+ ref: ref,
642
+ xmlns: "http://www.w3.org/2000/svg",
643
+ viewBox: "0 0 32 32",
644
+ fill: "currentColor",
645
+ ...rest
646
+ }, _path51 || (_path51 = /*#__PURE__*/React.createElement("path", {
647
+ d: "M16 22L6 12 7.4 10.6 16 19.2 24.6 10.6 26 12z"
648
+ })), children);
649
+ });
650
+ if (process.env.NODE_ENV !== "production") {
651
+ ChevronDown.propTypes = iconPropTypesC5chbmyn.i;
652
+ }
653
+ const ChevronDownOutline = /*#__PURE__*/React.forwardRef(function ChevronDownOutline(_ref24, ref) {
654
+ let {
655
+ children,
656
+ size = 16,
657
+ ...rest
658
+ } = _ref24;
659
+ return /*#__PURE__*/React.createElement(Icon.default, {
660
+ width: size,
661
+ height: size,
662
+ ref: ref,
663
+ xmlns: "http://www.w3.org/2000/svg",
664
+ viewBox: "0 0 32 32",
665
+ fill: "currentColor",
666
+ ...rest
667
+ }, _path52 || (_path52 = /*#__PURE__*/React.createElement("path", {
668
+ d: "M9.4142 12.5858L16 19.1714 22.5858 12.5858 24 14 16 22 8 14 9.4142 12.5858z"
669
+ })), _path53 || (_path53 = /*#__PURE__*/React.createElement("path", {
670
+ 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"
671
+ })), children);
672
+ });
673
+ if (process.env.NODE_ENV !== "production") {
674
+ ChevronDownOutline.propTypes = iconPropTypesC5chbmyn.i;
675
+ }
676
+ const ChevronLeft = /*#__PURE__*/React.forwardRef(function ChevronLeft(_ref25, ref) {
677
+ let {
678
+ children,
679
+ size = 16,
680
+ ...rest
681
+ } = _ref25;
682
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") {
683
+ return /*#__PURE__*/React.createElement(Icon.default, {
684
+ width: size,
685
+ height: size,
686
+ ref: ref,
687
+ xmlns: "http://www.w3.org/2000/svg",
688
+ viewBox: "0 0 6 10",
689
+ fill: "currentColor",
690
+ ...rest
691
+ }, _path54 || (_path54 = /*#__PURE__*/React.createElement("path", {
692
+ d: "M0 5L5 0 5.7 0.7 1.4 5 5.7 9.3 5 10z"
693
+ })), children);
694
+ }
695
+ if (size === 16 || size === "16" || size === "16px") {
696
+ return /*#__PURE__*/React.createElement(Icon.default, {
697
+ width: size,
698
+ height: size,
699
+ ref: ref,
700
+ xmlns: "http://www.w3.org/2000/svg",
701
+ viewBox: "0 0 16 16",
702
+ fill: "currentColor",
703
+ ...rest
704
+ }, _path55 || (_path55 = /*#__PURE__*/React.createElement("path", {
705
+ d: "M5 8L10 3 10.7 3.7 6.4 8 10.7 12.3 10 13z"
706
+ })), children);
707
+ }
708
+ return /*#__PURE__*/React.createElement(Icon.default, {
709
+ width: size,
710
+ height: size,
711
+ ref: ref,
712
+ xmlns: "http://www.w3.org/2000/svg",
713
+ viewBox: "0 0 32 32",
714
+ fill: "currentColor",
715
+ ...rest
716
+ }, _path56 || (_path56 = /*#__PURE__*/React.createElement("path", {
717
+ d: "M10 16L20 6 21.4 7.4 12.8 16 21.4 24.6 20 26z"
718
+ })), children);
719
+ });
720
+ if (process.env.NODE_ENV !== "production") {
721
+ ChevronLeft.propTypes = iconPropTypesC5chbmyn.i;
722
+ }
723
+ const ChevronMini = /*#__PURE__*/React.forwardRef(function ChevronMini(_ref26, ref) {
724
+ let {
725
+ children,
726
+ size = 16,
727
+ ...rest
728
+ } = _ref26;
729
+ if (size === 16 || size === "16" || size === "16px") {
730
+ return /*#__PURE__*/React.createElement(Icon.default, {
731
+ width: size,
732
+ height: size,
733
+ ref: ref,
734
+ xmlns: "http://www.w3.org/2000/svg",
735
+ viewBox: "0 0 16 16",
736
+ fill: "currentColor",
737
+ ...rest
738
+ }, _path57 || (_path57 = /*#__PURE__*/React.createElement("path", {
739
+ d: "M15 9L15 15 9 15z"
740
+ })), children);
741
+ }
742
+ return /*#__PURE__*/React.createElement(Icon.default, {
743
+ width: size,
744
+ height: size,
745
+ ref: ref,
746
+ xmlns: "http://www.w3.org/2000/svg",
747
+ viewBox: "0 0 32 32",
748
+ fill: "currentColor",
749
+ ...rest
750
+ }, _path58 || (_path58 = /*#__PURE__*/React.createElement("path", {
751
+ d: "M31 19L31 31 19 31 31 19z"
752
+ })), children);
753
+ });
754
+ if (process.env.NODE_ENV !== "production") {
755
+ ChevronMini.propTypes = iconPropTypesC5chbmyn.i;
756
+ }
757
+ const ChevronRight = /*#__PURE__*/React.forwardRef(function ChevronRight(_ref27, ref) {
758
+ let {
759
+ children,
760
+ size = 16,
761
+ ...rest
762
+ } = _ref27;
763
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") {
764
+ return /*#__PURE__*/React.createElement(Icon.default, {
765
+ width: size,
766
+ height: size,
767
+ ref: ref,
768
+ xmlns: "http://www.w3.org/2000/svg",
769
+ viewBox: "0 0 6 10",
770
+ fill: "currentColor",
771
+ ...rest
772
+ }, _path59 || (_path59 = /*#__PURE__*/React.createElement("path", {
773
+ d: "M6 5L1 10 0.3 9.3 4.6 5 0.3 0.7 1 0z"
774
+ })), children);
775
+ }
776
+ if (size === 16 || size === "16" || size === "16px") {
777
+ return /*#__PURE__*/React.createElement(Icon.default, {
778
+ width: size,
779
+ height: size,
780
+ ref: ref,
781
+ xmlns: "http://www.w3.org/2000/svg",
782
+ viewBox: "0 0 16 16",
783
+ fill: "currentColor",
784
+ ...rest
785
+ }, _path60 || (_path60 = /*#__PURE__*/React.createElement("path", {
786
+ d: "M11 8L6 13 5.3 12.3 9.6 8 5.3 3.7 6 3z"
787
+ })), children);
788
+ }
789
+ return /*#__PURE__*/React.createElement(Icon.default, {
790
+ width: size,
791
+ height: size,
792
+ ref: ref,
793
+ xmlns: "http://www.w3.org/2000/svg",
794
+ viewBox: "0 0 32 32",
795
+ fill: "currentColor",
796
+ ...rest
797
+ }, _path61 || (_path61 = /*#__PURE__*/React.createElement("path", {
798
+ d: "M22 16L12 26 10.6 24.6 19.2 16 10.6 7.4 12 6z"
799
+ })), children);
800
+ });
801
+ if (process.env.NODE_ENV !== "production") {
802
+ ChevronRight.propTypes = iconPropTypesC5chbmyn.i;
803
+ }
804
+ const ChevronSort = /*#__PURE__*/React.forwardRef(function ChevronSort(_ref28, ref) {
805
+ let {
806
+ children,
807
+ size = 16,
808
+ ...rest
809
+ } = _ref28;
810
+ if (size === 16 || size === "16" || size === "16px") {
811
+ return /*#__PURE__*/React.createElement(Icon.default, {
812
+ width: size,
813
+ height: size,
814
+ ref: ref,
815
+ xmlns: "http://www.w3.org/2000/svg",
816
+ viewBox: "0 0 16 16",
817
+ fill: "currentColor",
818
+ ...rest
819
+ }, _path62 || (_path62 = /*#__PURE__*/React.createElement("path", {
820
+ d: "M8 14L4.5 10.5 5.2 9.8 8 12.6 10.8 9.8 11.5 10.5zM8 2L11.5 5.5 10.8 6.2 8 3.4 5.2 6.2 4.5 5.5z"
821
+ })), children);
822
+ }
823
+ return /*#__PURE__*/React.createElement(Icon.default, {
824
+ width: size,
825
+ height: size,
826
+ ref: ref,
827
+ xmlns: "http://www.w3.org/2000/svg",
828
+ viewBox: "0 0 32 32",
829
+ fill: "currentColor",
830
+ ...rest
831
+ }, _path63 || (_path63 = /*#__PURE__*/React.createElement("path", {
832
+ d: "M16 28L9 21 10.41 19.59 16 25.17 21.59 19.59 23 21 16 28zM16 4L23 11 21.59 12.41 16 6.83 10.41 12.41 9 11 16 4z"
833
+ })), children);
834
+ });
835
+ if (process.env.NODE_ENV !== "production") {
836
+ ChevronSort.propTypes = iconPropTypesC5chbmyn.i;
837
+ }
838
+ const ChevronSortDown = /*#__PURE__*/React.forwardRef(function ChevronSortDown(_ref29, ref) {
839
+ let {
840
+ children,
841
+ size = 16,
842
+ ...rest
843
+ } = _ref29;
844
+ if (size === 16 || size === "16" || size === "16px") {
845
+ return /*#__PURE__*/React.createElement(Icon.default, {
846
+ width: size,
847
+ height: size,
848
+ ref: ref,
849
+ xmlns: "http://www.w3.org/2000/svg",
850
+ viewBox: "0 0 16 16",
851
+ fill: "currentColor",
852
+ ...rest
853
+ }, _path64 || (_path64 = /*#__PURE__*/React.createElement("path", {
854
+ d: "M8 14L4.5 10.5 5.2 9.8 8 12.6 10.8 9.8 11.5 10.5z"
855
+ })), children);
856
+ }
857
+ return /*#__PURE__*/React.createElement(Icon.default, {
858
+ width: size,
859
+ height: size,
860
+ ref: ref,
861
+ xmlns: "http://www.w3.org/2000/svg",
862
+ viewBox: "0 0 32 32",
863
+ fill: "currentColor",
864
+ ...rest
865
+ }, _path65 || (_path65 = /*#__PURE__*/React.createElement("path", {
866
+ d: "M16 28L9 21 10.4 19.6 16 25.2 21.6 19.6 23 21z"
867
+ })), children);
868
+ });
869
+ if (process.env.NODE_ENV !== "production") {
870
+ ChevronSortDown.propTypes = iconPropTypesC5chbmyn.i;
871
+ }
872
+ const ChevronSortUp = /*#__PURE__*/React.forwardRef(function ChevronSortUp(_ref30, ref) {
873
+ let {
874
+ children,
875
+ size = 16,
876
+ ...rest
877
+ } = _ref30;
878
+ if (size === 16 || size === "16" || size === "16px") {
879
+ return /*#__PURE__*/React.createElement(Icon.default, {
880
+ width: size,
881
+ height: size,
882
+ ref: ref,
883
+ xmlns: "http://www.w3.org/2000/svg",
884
+ viewBox: "0 0 16 16",
885
+ fill: "currentColor",
886
+ ...rest
887
+ }, _path66 || (_path66 = /*#__PURE__*/React.createElement("path", {
888
+ d: "M8 2L11.5 5.5 10.8 6.2 8 3.4 5.2 6.2 4.5 5.5z"
889
+ })), children);
890
+ }
891
+ return /*#__PURE__*/React.createElement(Icon.default, {
892
+ width: size,
893
+ height: size,
894
+ ref: ref,
895
+ xmlns: "http://www.w3.org/2000/svg",
896
+ viewBox: "0 0 32 32",
897
+ fill: "currentColor",
898
+ ...rest
899
+ }, _path67 || (_path67 = /*#__PURE__*/React.createElement("path", {
900
+ d: "M16 4L23 11 21.6 12.4 16 6.8 10.4 12.4 9 11z"
901
+ })), children);
902
+ });
903
+ if (process.env.NODE_ENV !== "production") {
904
+ ChevronSortUp.propTypes = iconPropTypesC5chbmyn.i;
905
+ }
906
+ const ChevronUp = /*#__PURE__*/React.forwardRef(function ChevronUp(_ref31, ref) {
907
+ let {
908
+ children,
909
+ size = 16,
910
+ ...rest
911
+ } = _ref31;
912
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") {
913
+ return /*#__PURE__*/React.createElement(Icon.default, {
914
+ width: size,
915
+ height: size,
916
+ ref: ref,
917
+ xmlns: "http://www.w3.org/2000/svg",
918
+ viewBox: "0 0 10 6",
919
+ fill: "currentColor",
920
+ ...rest
921
+ }, _path68 || (_path68 = /*#__PURE__*/React.createElement("path", {
922
+ d: "M5 0L10 5 9.3 5.7 5 1.4 0.7 5.7 0 5z"
923
+ })), children);
924
+ }
925
+ if (size === 16 || size === "16" || size === "16px") {
926
+ return /*#__PURE__*/React.createElement(Icon.default, {
927
+ width: size,
928
+ height: size,
929
+ ref: ref,
930
+ xmlns: "http://www.w3.org/2000/svg",
931
+ viewBox: "0 0 16 16",
932
+ fill: "currentColor",
933
+ ...rest
934
+ }, _path69 || (_path69 = /*#__PURE__*/React.createElement("path", {
935
+ d: "M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
936
+ })), children);
937
+ }
938
+ return /*#__PURE__*/React.createElement(Icon.default, {
939
+ width: size,
940
+ height: size,
941
+ ref: ref,
942
+ xmlns: "http://www.w3.org/2000/svg",
943
+ viewBox: "0 0 32 32",
944
+ fill: "currentColor",
945
+ ...rest
946
+ }, _path70 || (_path70 = /*#__PURE__*/React.createElement("path", {
947
+ d: "M16 10L26 20 24.6 21.4 16 12.8 7.4 21.4 6 20z"
948
+ })), children);
949
+ });
950
+ if (process.env.NODE_ENV !== "production") {
951
+ ChevronUp.propTypes = iconPropTypesC5chbmyn.i;
952
+ }
953
+ const ChevronUpOutline = /*#__PURE__*/React.forwardRef(function ChevronUpOutline(_ref32, ref) {
954
+ let {
955
+ children,
956
+ size = 16,
957
+ ...rest
958
+ } = _ref32;
959
+ return /*#__PURE__*/React.createElement(Icon.default, {
960
+ width: size,
961
+ height: size,
962
+ ref: ref,
963
+ xmlns: "http://www.w3.org/2000/svg",
964
+ viewBox: "0 0 32 32",
965
+ fill: "currentColor",
966
+ ...rest
967
+ }, _path71 || (_path71 = /*#__PURE__*/React.createElement("path", {
968
+ d: "M9.4142 19.4142L16 12.8286 22.5858 19.4142 24 18 16 10 8 18 9.4142 19.4142z"
969
+ })), _path72 || (_path72 = /*#__PURE__*/React.createElement("path", {
970
+ 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"
971
+ })), children);
972
+ });
973
+ if (process.env.NODE_ENV !== "production") {
974
+ ChevronUpOutline.propTypes = iconPropTypesC5chbmyn.i;
975
+ }
976
+ const ChildNode = /*#__PURE__*/React.forwardRef(function ChildNode(_ref33, ref) {
977
+ let {
978
+ children,
979
+ size = 16,
980
+ ...rest
981
+ } = _ref33;
982
+ return /*#__PURE__*/React.createElement(Icon.default, {
983
+ width: size,
984
+ height: size,
985
+ ref: ref,
986
+ xmlns: "http://www.w3.org/2000/svg",
987
+ viewBox: "0 0 32 32",
988
+ fill: "currentColor",
989
+ ...rest
990
+ }, _path73 || (_path73 = /*#__PURE__*/React.createElement("path", {
991
+ 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"
992
+ })), children);
993
+ });
994
+ if (process.env.NODE_ENV !== "production") {
995
+ ChildNode.propTypes = iconPropTypesC5chbmyn.i;
996
+ }
997
+ const Chip = /*#__PURE__*/React.forwardRef(function Chip(_ref34, ref) {
998
+ let {
999
+ children,
1000
+ size = 16,
1001
+ ...rest
1002
+ } = _ref34;
1003
+ return /*#__PURE__*/React.createElement(Icon.default, {
1004
+ width: size,
1005
+ height: size,
1006
+ ref: ref,
1007
+ xmlns: "http://www.w3.org/2000/svg",
1008
+ viewBox: "0 0 32 32",
1009
+ fill: "currentColor",
1010
+ ...rest
1011
+ }, _path74 || (_path74 = /*#__PURE__*/React.createElement("path", {
1012
+ d: "M11,11V21H21V11Zm8,8H13V13h6Z"
1013
+ })), _path75 || (_path75 = /*#__PURE__*/React.createElement("path", {
1014
+ 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"
1015
+ })), children);
1016
+ });
1017
+ if (process.env.NODE_ENV !== "production") {
1018
+ Chip.propTypes = iconPropTypesC5chbmyn.i;
1019
+ }
1020
+ const Choices = /*#__PURE__*/React.forwardRef(function Choices(_ref35, ref) {
1021
+ let {
1022
+ children,
1023
+ size = 16,
1024
+ ...rest
1025
+ } = _ref35;
1026
+ return /*#__PURE__*/React.createElement(Icon.default, {
1027
+ width: size,
1028
+ height: size,
1029
+ ref: ref,
1030
+ xmlns: "http://www.w3.org/2000/svg",
1031
+ viewBox: "0 0 32 32",
1032
+ fill: "currentColor",
1033
+ ...rest
1034
+ }, _path76 || (_path76 = /*#__PURE__*/React.createElement("path", {
1035
+ d: "M28 13L28 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"
1036
+ })), children);
1037
+ });
1038
+ if (process.env.NODE_ENV !== "production") {
1039
+ Choices.propTypes = iconPropTypesC5chbmyn.i;
1040
+ }
1041
+ const ChooseItem = /*#__PURE__*/React.forwardRef(function ChooseItem(_ref36, ref) {
1042
+ let {
1043
+ children,
1044
+ size = 16,
1045
+ ...rest
1046
+ } = _ref36;
1047
+ return /*#__PURE__*/React.createElement(Icon.default, {
1048
+ width: size,
1049
+ height: size,
1050
+ ref: ref,
1051
+ xmlns: "http://www.w3.org/2000/svg",
1052
+ viewBox: "0 0 32 32",
1053
+ fill: "currentColor",
1054
+ ...rest
1055
+ }, _path77 || (_path77 = /*#__PURE__*/React.createElement("path", {
1056
+ d: "M28 6H30V26H28zM17 6L15.57 7.393 23.15 15 2 15 2 17 23.15 17 15.57 24.573 17 26 27 16 17 6z"
1057
+ })), children);
1058
+ });
1059
+ if (process.env.NODE_ENV !== "production") {
1060
+ ChooseItem.propTypes = iconPropTypesC5chbmyn.i;
1061
+ }
1062
+ const ChoroplethMap = /*#__PURE__*/React.forwardRef(function ChoroplethMap(_ref37, ref) {
1063
+ let {
1064
+ children,
1065
+ size = 16,
1066
+ ...rest
1067
+ } = _ref37;
1068
+ return /*#__PURE__*/React.createElement(Icon.default, {
1069
+ width: size,
1070
+ height: size,
1071
+ ref: ref,
1072
+ xmlns: "http://www.w3.org/2000/svg",
1073
+ viewBox: "0 0 32 32",
1074
+ fill: "currentColor",
1075
+ ...rest
1076
+ }, _path78 || (_path78 = /*#__PURE__*/React.createElement("path", {
1077
+ 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"
1078
+ })), children);
1079
+ });
1080
+ if (process.env.NODE_ENV !== "production") {
1081
+ ChoroplethMap.propTypes = iconPropTypesC5chbmyn.i;
1082
+ }
1083
+ const CicsCmas = /*#__PURE__*/React.forwardRef(function CicsCmas(_ref38, ref) {
1084
+ let {
1085
+ children,
1086
+ size = 16,
1087
+ ...rest
1088
+ } = _ref38;
1089
+ return /*#__PURE__*/React.createElement(Icon.default, {
1090
+ width: size,
1091
+ height: size,
1092
+ ref: ref,
1093
+ xmlns: "http://www.w3.org/2000/svg",
1094
+ viewBox: "0 0 32 32",
1095
+ fill: "currentColor",
1096
+ ...rest
1097
+ }, _path79 || (_path79 = /*#__PURE__*/React.createElement("path", {
1098
+ d: "M30.3335 30H26V28h4V26H28a2.002 2.002 0 01-2-2V21.6665A1.6684 1.6684 0 0127.6665 20H32v2H28v2h2a2.002 2.002 0 012 2v2.3335A1.6684 1.6684 0 0130.3335 30zM22.3335 20h-2.667A1.6665 1.6665 0 0018 21.6665V30h2V26h2v4h2V21.6665A1.6665 1.6665 0 0022.3335 20zM20 24V22h2v2zM12.5 24L11 20 9 20 9 30 11 30 11 23 12.5 27 14 23 14 30 16 30 16 20 14 20 12.5 24zM1 22v6.5A1.4727 1.4727 0 002.5 30H7V28H3V22H7V20H3A2.0059 2.0059 0 001 22zM13 8L11 8 11 11 8 11 8 13 11 13 11 16 13 16 13 13 16 13 16 11 13 11 13 8z"
1099
+ })), _path80 || (_path80 = /*#__PURE__*/React.createElement("path", {
1100
+ d: "M6,6H26V18h2V6a2.0059,2.0059,0,0,0-2-2H6A2.0059,2.0059,0,0,0,4,6V18H6Z"
1101
+ })), children);
1102
+ });
1103
+ if (process.env.NODE_ENV !== "production") {
1104
+ CicsCmas.propTypes = iconPropTypesC5chbmyn.i;
1105
+ }
1106
+ const CicsDb2Connection = /*#__PURE__*/React.forwardRef(function CicsDb2Connection(_ref39, ref) {
1107
+ let {
1108
+ children,
1109
+ size = 16,
1110
+ ...rest
1111
+ } = _ref39;
1112
+ return /*#__PURE__*/React.createElement(Icon.default, {
1113
+ width: size,
1114
+ height: size,
1115
+ ref: ref,
1116
+ xmlns: "http://www.w3.org/2000/svg",
1117
+ viewBox: "0 0 32 32",
1118
+ fill: "currentColor",
1119
+ ...rest
1120
+ }, _path81 || (_path81 = /*#__PURE__*/React.createElement("path", {
1121
+ 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"
1122
+ })), _path82 || (_path82 = /*#__PURE__*/React.createElement("path", {
1123
+ 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.0273zM16 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"
1124
+ })), children);
1125
+ });
1126
+ if (process.env.NODE_ENV !== "production") {
1127
+ CicsDb2Connection.propTypes = iconPropTypesC5chbmyn.i;
1128
+ }
1129
+ const CicsExplorer = /*#__PURE__*/React.forwardRef(function CicsExplorer(_ref40, ref) {
1130
+ let {
1131
+ children,
1132
+ size = 16,
1133
+ ...rest
1134
+ } = _ref40;
1135
+ return /*#__PURE__*/React.createElement(Icon.default, {
1136
+ width: size,
1137
+ height: size,
1138
+ ref: ref,
1139
+ xmlns: "http://www.w3.org/2000/svg",
1140
+ viewBox: "0 0 32 32",
1141
+ fill: "currentColor",
1142
+ ...rest
1143
+ }, _path83 || (_path83 = /*#__PURE__*/React.createElement("path", {
1144
+ d: "M24 16L19.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"
1145
+ })), _path84 || (_path84 = /*#__PURE__*/React.createElement("path", {
1146
+ 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"
1147
+ })), children);
1148
+ });
1149
+ if (process.env.NODE_ENV !== "production") {
1150
+ CicsExplorer.propTypes = iconPropTypesC5chbmyn.i;
1151
+ }
1152
+ const CicsProgram = /*#__PURE__*/React.forwardRef(function CicsProgram(_ref41, ref) {
1153
+ let {
1154
+ children,
1155
+ size = 16,
1156
+ ...rest
1157
+ } = _ref41;
1158
+ return /*#__PURE__*/React.createElement(Icon.default, {
1159
+ width: size,
1160
+ height: size,
1161
+ ref: ref,
1162
+ xmlns: "http://www.w3.org/2000/svg",
1163
+ viewBox: "0 0 32 32",
1164
+ fill: "currentColor",
1165
+ ...rest
1166
+ }, _path85 || (_path85 = /*#__PURE__*/React.createElement("path", {
1167
+ d: "M20.17 19L17.58 21.59 19 23 23 19 19 15 17.58 16.41 20.17 19zM11.83 19L14.42 16.41 13 15 9 19 13 23 14.42 21.59 11.83 19z"
1168
+ })), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
1169
+ cx: "9",
1170
+ cy: "8",
1171
+ r: "1"
1172
+ })), _circle2 || (_circle2 = /*#__PURE__*/React.createElement("circle", {
1173
+ cx: "6",
1174
+ cy: "8",
1175
+ r: "1"
1176
+ })), _path86 || (_path86 = /*#__PURE__*/React.createElement("path", {
1177
+ 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"
1178
+ })), children);
1179
+ });
1180
+ if (process.env.NODE_ENV !== "production") {
1181
+ CicsProgram.propTypes = iconPropTypesC5chbmyn.i;
1182
+ }
1183
+ const CicsSit = /*#__PURE__*/React.forwardRef(function CicsSit(_ref42, ref) {
1184
+ let {
1185
+ children,
1186
+ size = 16,
1187
+ ...rest
1188
+ } = _ref42;
1189
+ return /*#__PURE__*/React.createElement(Icon.default, {
1190
+ width: size,
1191
+ height: size,
1192
+ ref: ref,
1193
+ xmlns: "http://www.w3.org/2000/svg",
1194
+ viewBox: "0 0 32 32",
1195
+ fill: "currentColor",
1196
+ ...rest
1197
+ }, _path87 || (_path87 = /*#__PURE__*/React.createElement("path", {
1198
+ d: "M23 22L30 27 23 32 23 22z"
1199
+ })), _path88 || (_path88 = /*#__PURE__*/React.createElement("path", {
1200
+ 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"
1201
+ })), children);
1202
+ });
1203
+ if (process.env.NODE_ENV !== "production") {
1204
+ CicsSit.propTypes = iconPropTypesC5chbmyn.i;
1205
+ }
1206
+ const CicsSitOverrides = /*#__PURE__*/React.forwardRef(function CicsSitOverrides(_ref43, ref) {
1207
+ let {
1208
+ children,
1209
+ size = 16,
1210
+ ...rest
1211
+ } = _ref43;
1212
+ return /*#__PURE__*/React.createElement(Icon.default, {
1213
+ width: size,
1214
+ height: size,
1215
+ ref: ref,
1216
+ xmlns: "http://www.w3.org/2000/svg",
1217
+ viewBox: "0 0 32 32",
1218
+ fill: "currentColor",
1219
+ ...rest
1220
+ }, _path89 || (_path89 = /*#__PURE__*/React.createElement("path", {
1221
+ 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.5859zM20 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"
1222
+ })), children);
1223
+ });
1224
+ if (process.env.NODE_ENV !== "production") {
1225
+ CicsSitOverrides.propTypes = iconPropTypesC5chbmyn.i;
1226
+ }
1227
+ const CicsSystemGroup = /*#__PURE__*/React.forwardRef(function CicsSystemGroup(_ref44, ref) {
1228
+ let {
1229
+ children,
1230
+ size = 16,
1231
+ ...rest
1232
+ } = _ref44;
1233
+ return /*#__PURE__*/React.createElement(Icon.default, {
1234
+ width: size,
1235
+ height: size,
1236
+ ref: ref,
1237
+ xmlns: "http://www.w3.org/2000/svg",
1238
+ viewBox: "0 0 32 32",
1239
+ fill: "currentColor",
1240
+ ...rest
1241
+ }, _path90 || (_path90 = /*#__PURE__*/React.createElement("path", {
1242
+ d: "M28 2H23V4h5V28H23v2h5a2.0059 2.0059 0 002-2V4A2.0059 2.0059 0 0028 2zM14 17H8a.9448.9448 0 00-1 1v6a.9448.9448 0 001 1h6a.9448.9448 0 001-1V18A.9448.9448 0 0014 17zm-1 6H9V19h4z"
1243
+ })), _path91 || (_path91 = /*#__PURE__*/React.createElement("path", {
1244
+ d: "M25 24V18a.9448.9448 0 00-1-1H18a.9448.9448 0 00-1 1v6a.9448.9448 0 001 1h6A1.0021 1.0021 0 0025 24zm-2-1H19V19h4zM14 7H8A.9448.9448 0 007 8v6a.9448.9448 0 001 1h6a.9448.9448 0 001-1V8A.9448.9448 0 0014 7zm-1 6H9V9h4zM18 15h6a.9448.9448 0 001-1V8a.9448.9448 0 00-1-1H18a.9448.9448 0 00-1 1v6A1.0021 1.0021 0 0018 15zm1-6h4v4H19z"
1245
+ })), _path92 || (_path92 = /*#__PURE__*/React.createElement("path", {
1246
+ d: "M4,4H9V2H4A2.0059,2.0059,0,0,0,2,4V28a2.0059,2.0059,0,0,0,2,2H9V28H4Z"
1247
+ })), children);
1248
+ });
1249
+ if (process.env.NODE_ENV !== "production") {
1250
+ CicsSystemGroup.propTypes = iconPropTypesC5chbmyn.i;
1251
+ }
1252
+ const CicsTransactionServerZos = /*#__PURE__*/React.forwardRef(function CicsTransactionServerZos(_ref45, ref) {
1253
+ let {
1254
+ children,
1255
+ size = 16,
1256
+ ...rest
1257
+ } = _ref45;
1258
+ return /*#__PURE__*/React.createElement(Icon.default, {
1259
+ width: size,
1260
+ height: size,
1261
+ ref: ref,
1262
+ xmlns: "http://www.w3.org/2000/svg",
1263
+ viewBox: "0 0 32 32",
1264
+ fill: "currentColor",
1265
+ ...rest
1266
+ }, _circle3 || (_circle3 = /*#__PURE__*/React.createElement("circle", {
1267
+ cx: "28",
1268
+ cy: "10",
1269
+ r: "2"
1270
+ })), _path93 || (_path93 = /*#__PURE__*/React.createElement("path", {
1271
+ d: "M18,29h-7v-2h7c4.9626,0,9-4.0374,9-9v-4h2v4c0,6.0654-4.9346,11-11,11Z"
1272
+ })), _path94 || (_path94 = /*#__PURE__*/React.createElement("path", {
1273
+ d: "M16,21c-2.7571,0-5-2.2429-5-5s2.2429-5,5-5,5,2.2429,5,5-2.2429,5-5,5Zm0-8c-1.6543,0-3,1.3457-3,3s1.3457,3,3,3,3-1.3457,3-3-1.3457-3-3-3Z"
1274
+ })), _circle4 || (_circle4 = /*#__PURE__*/React.createElement("circle", {
1275
+ cx: "4",
1276
+ cy: "22",
1277
+ r: "2"
1278
+ })), _path95 || (_path95 = /*#__PURE__*/React.createElement("path", {
1279
+ d: "M5,18H3v-4C3,7.9346,7.9346,3,14,3h7v2h-7c-4.9626,0-9,4.0374-9,9v4Z"
1280
+ })), children);
1281
+ });
1282
+ if (process.env.NODE_ENV !== "production") {
1283
+ CicsTransactionServerZos.propTypes = iconPropTypesC5chbmyn.i;
1284
+ }
1285
+ const CicsWuiRegion = /*#__PURE__*/React.forwardRef(function CicsWuiRegion(_ref46, ref) {
1286
+ let {
1287
+ children,
1288
+ size = 16,
1289
+ ...rest
1290
+ } = _ref46;
1291
+ return /*#__PURE__*/React.createElement(Icon.default, {
1292
+ width: size,
1293
+ height: size,
1294
+ ref: ref,
1295
+ xmlns: "http://www.w3.org/2000/svg",
1296
+ viewBox: "0 0 32 32",
1297
+ fill: "currentColor",
1298
+ ...rest
1299
+ }, _path96 || (_path96 = /*#__PURE__*/React.createElement("path", {
1300
+ d: "M22 22L24 22 24 28 22 28 22 30 28 30 28 28 26 28 26 22 28 22 28 20 22 20 22 22zM18 28H16V20H14v8.6A1.4529 1.4529 0 0015.5 30h3A1.4529 1.4529 0 0020 28.6V20H18zM10.2 20L10 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 20zM16 11L13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16 13 13 16 13 16 11z"
1301
+ })), _path97 || (_path97 = /*#__PURE__*/React.createElement("path", {
1302
+ d: "M26,4H6A2.0059,2.0059,0,0,0,4,6V18H6V6H26V18h2V6A2.0059,2.0059,0,0,0,26,4Z"
1303
+ })), children);
1304
+ });
1305
+ if (process.env.NODE_ENV !== "production") {
1306
+ CicsWuiRegion.propTypes = iconPropTypesC5chbmyn.i;
1307
+ }
1308
+ const CicsRegion = /*#__PURE__*/React.forwardRef(function CicsRegion(_ref47, ref) {
1309
+ let {
1310
+ children,
1311
+ size = 16,
1312
+ ...rest
1313
+ } = _ref47;
1314
+ return /*#__PURE__*/React.createElement(Icon.default, {
1315
+ width: size,
1316
+ height: size,
1317
+ ref: ref,
1318
+ xmlns: "http://www.w3.org/2000/svg",
1319
+ viewBox: "0 0 32 32",
1320
+ fill: "currentColor",
1321
+ ...rest
1322
+ }, _path98 || (_path98 = /*#__PURE__*/React.createElement("path", {
1323
+ d: "M23.5 18L21 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 18zM16 13L16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16 13 13 16 13z"
1324
+ })), _path99 || (_path99 = /*#__PURE__*/React.createElement("path", {
1325
+ 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"
1326
+ })), children);
1327
+ });
1328
+ if (process.env.NODE_ENV !== "production") {
1329
+ CicsRegion.propTypes = iconPropTypesC5chbmyn.i;
1330
+ }
1331
+ const CicsRegionAlt = /*#__PURE__*/React.forwardRef(function CicsRegionAlt(_ref48, ref) {
1332
+ let {
1333
+ children,
1334
+ size = 16,
1335
+ ...rest
1336
+ } = _ref48;
1337
+ return /*#__PURE__*/React.createElement(Icon.default, {
1338
+ width: size,
1339
+ height: size,
1340
+ ref: ref,
1341
+ xmlns: "http://www.w3.org/2000/svg",
1342
+ viewBox: "0 0 32 32",
1343
+ fill: "currentColor",
1344
+ ...rest
1345
+ }, _path100 || (_path100 = /*#__PURE__*/React.createElement("path", {
1346
+ 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-2h4zM17 13v6c0 1.1025.8972 2 2 2h4v-2h-4v-6h4v-2h-4c-1.1028 0-2 .8975-2 2zM9 13L11 13 11 19 9 19 9 21 15 21 15 19 13 19 13 13 15 13 15 11 9 11 9 13zM1 13v6c0 1.1025.8972 2 2 2H7v-2H3v-6H7v-2H3c-1.1028 0-2 .8975-2 2z"
1347
+ })), children);
1348
+ });
1349
+ if (process.env.NODE_ENV !== "production") {
1350
+ CicsRegionAlt.propTypes = iconPropTypesC5chbmyn.i;
1351
+ }
1352
+ const CicsRegionRouting = /*#__PURE__*/React.forwardRef(function CicsRegionRouting(_ref49, ref) {
1353
+ let {
1354
+ children,
1355
+ size = 16,
1356
+ ...rest
1357
+ } = _ref49;
1358
+ return /*#__PURE__*/React.createElement(Icon.default, {
1359
+ width: size,
1360
+ height: size,
1361
+ ref: ref,
1362
+ xmlns: "http://www.w3.org/2000/svg",
1363
+ viewBox: "0 0 32 32",
1364
+ fill: "currentColor",
1365
+ ...rest
1366
+ }, _path101 || (_path101 = /*#__PURE__*/React.createElement("path", {
1367
+ d: "M22 2L22 4 26.6 4 20 10.6 21.4 12 28 5.4 28 10 30 10 30 2 22 2zM19 16L19 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 16zM13 16L13 13 16 13 16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16z"
1368
+ })), _path102 || (_path102 = /*#__PURE__*/React.createElement("path", {
1369
+ 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"
1370
+ })), children);
1371
+ });
1372
+ if (process.env.NODE_ENV !== "production") {
1373
+ CicsRegionRouting.propTypes = iconPropTypesC5chbmyn.i;
1374
+ }
1375
+ const CicsRegionTarget = /*#__PURE__*/React.forwardRef(function CicsRegionTarget(_ref50, ref) {
1376
+ let {
1377
+ children,
1378
+ size = 16,
1379
+ ...rest
1380
+ } = _ref50;
1381
+ return /*#__PURE__*/React.createElement(Icon.default, {
1382
+ width: size,
1383
+ height: size,
1384
+ ref: ref,
1385
+ xmlns: "http://www.w3.org/2000/svg",
1386
+ viewBox: "0 0 32 32",
1387
+ fill: "currentColor",
1388
+ ...rest
1389
+ }, _path103 || (_path103 = /*#__PURE__*/React.createElement("path", {
1390
+ d: "M26 7H28V10H26zM29 4H32V6H29zM26 0H28V3H26zM22 4H25V6H22zM19 16L19 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 16zM13 16L13 13 16 13 16 11 13 11 13 8 11 8 11 11 8 11 8 13 11 13 11 16 13 16z"
1391
+ })), _path104 || (_path104 = /*#__PURE__*/React.createElement("path", {
1392
+ 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"
1393
+ })), children);
1394
+ });
1395
+ if (process.env.NODE_ENV !== "production") {
1396
+ CicsRegionTarget.propTypes = iconPropTypesC5chbmyn.i;
1397
+ }
1398
+ const Cicsplex = /*#__PURE__*/React.forwardRef(function Cicsplex(_ref51, ref) {
1399
+ let {
1400
+ children,
1401
+ size = 16,
1402
+ ...rest
1403
+ } = _ref51;
1404
+ return /*#__PURE__*/React.createElement(Icon.default, {
1405
+ width: size,
1406
+ height: size,
1407
+ ref: ref,
1408
+ xmlns: "http://www.w3.org/2000/svg",
1409
+ viewBox: "0 0 32 32",
1410
+ fill: "currentColor",
1411
+ ...rest
1412
+ }, _path105 || (_path105 = /*#__PURE__*/React.createElement("path", {
1413
+ d: "M8 18.6V17H6v1.6A7.3833 7.3833 0 0013.4 26H15V24H13.4A5.3775 5.3775 0 018 18.6zM28 18H20a2.0059 2.0059 0 00-2 2v8a2.0059 2.0059 0 002 2h8a2.0059 2.0059 0 002-2V20A2.0059 2.0059 0 0028 18zM20 28V20h8v8zM24 13.4V15h2V13.4A7.3833 7.3833 0 0018.6 6H17V8h1.6A5.3775 5.3775 0 0124 13.4zM12 2H4A2.0059 2.0059 0 002 4v8a2.0059 2.0059 0 002 2h8a2.0059 2.0059 0 002-2V4A2.0059 2.0059 0 0012 2zM4 12V4h8v8z"
1414
+ })), children);
1415
+ });
1416
+ if (process.env.NODE_ENV !== "production") {
1417
+ Cicsplex.propTypes = iconPropTypesC5chbmyn.i;
1418
+ }
1419
+ const CircleFilled = /*#__PURE__*/React.forwardRef(function CircleFilled(_ref52, ref) {
1420
+ let {
1421
+ children,
1422
+ size = 16,
1423
+ ...rest
1424
+ } = _ref52;
1425
+ return /*#__PURE__*/React.createElement(Icon.default, {
1426
+ width: size,
1427
+ height: size,
1428
+ ref: ref,
1429
+ xmlns: "http://www.w3.org/2000/svg",
1430
+ viewBox: "0 0 32 32",
1431
+ fill: "currentColor",
1432
+ ...rest
1433
+ }, _circle5 || (_circle5 = /*#__PURE__*/React.createElement("circle", {
1434
+ cx: "16",
1435
+ cy: "16",
1436
+ r: "10"
1437
+ })), _path106 || (_path106 = /*#__PURE__*/React.createElement("path", {
1438
+ 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"
1439
+ })), children);
1440
+ });
1441
+ if (process.env.NODE_ENV !== "production") {
1442
+ CircleFilled.propTypes = iconPropTypesC5chbmyn.i;
1443
+ }
1444
+ const CircleOutline = /*#__PURE__*/React.forwardRef(function CircleOutline(_ref53, ref) {
1445
+ let {
1446
+ children,
1447
+ size = 16,
1448
+ ...rest
1449
+ } = _ref53;
1450
+ return /*#__PURE__*/React.createElement(Icon.default, {
1451
+ width: size,
1452
+ height: size,
1453
+ ref: ref,
1454
+ xmlns: "http://www.w3.org/2000/svg",
1455
+ viewBox: "0 0 32 32",
1456
+ fill: "currentColor",
1457
+ ...rest
1458
+ }, _path107 || (_path107 = /*#__PURE__*/React.createElement("path", {
1459
+ strokeWidth: "0",
1460
+ d: "m16,2c-7.732,0-14,6.268-14,14s6.268,14,14,14,14-6.268,14-14S23.732,2,16,2Zm0,26c-6.6274,0-12-5.3726-12-12s5.3726-12,12-12,12,5.3726,12,12-5.3726,12-12,12Z"
1461
+ })), children);
1462
+ });
1463
+ if (process.env.NODE_ENV !== "production") {
1464
+ CircleOutline.propTypes = iconPropTypesC5chbmyn.i;
1465
+ }
1466
+ const CircleSolid = /*#__PURE__*/React.forwardRef(function CircleSolid(_ref54, ref) {
1467
+ let {
1468
+ children,
1469
+ size = 16,
1470
+ ...rest
1471
+ } = _ref54;
1472
+ return /*#__PURE__*/React.createElement(Icon.default, {
1473
+ width: size,
1474
+ height: size,
1475
+ ref: ref,
1476
+ xmlns: "http://www.w3.org/2000/svg",
1477
+ viewBox: "0 0 32 32",
1478
+ fill: "currentColor",
1479
+ ...rest
1480
+ }, _circle6 || (_circle6 = /*#__PURE__*/React.createElement("circle", {
1481
+ cx: "16",
1482
+ cy: "16",
1483
+ r: "14"
1484
+ })), children);
1485
+ });
1486
+ if (process.env.NODE_ENV !== "production") {
1487
+ CircleSolid.propTypes = iconPropTypesC5chbmyn.i;
1488
+ }
1489
+ const CircleDash = /*#__PURE__*/React.forwardRef(function CircleDash(_ref55, ref) {
1490
+ let {
1491
+ children,
1492
+ size = 16,
1493
+ ...rest
1494
+ } = _ref55;
1495
+ return /*#__PURE__*/React.createElement(Icon.default, {
1496
+ width: size,
1497
+ height: size,
1498
+ ref: ref,
1499
+ xmlns: "http://www.w3.org/2000/svg",
1500
+ viewBox: "0 0 32 32",
1501
+ fill: "currentColor",
1502
+ ...rest
1503
+ }, _path108 || (_path108 = /*#__PURE__*/React.createElement("path", {
1504
+ d: "M7.7 4.7a14.7 14.7 0 00-3 3.1L6.3 9A13.26 13.26 0 018.9 6.3zM4.6 12.3l-1.9-.6A12.51 12.51 0 002 16H4A11.48 11.48 0 014.6 12.3zM2.7 20.4a14.4 14.4 0 002 3.9l1.6-1.2a12.89 12.89 0 01-1.7-3.3zM7.8 27.3a14.4 14.4 0 003.9 2l.6-1.9A12.89 12.89 0 019 25.7zM11.7 2.7l.6 1.9A11.48 11.48 0 0116 4V2A12.51 12.51 0 0011.7 2.7zM24.2 27.3a15.18 15.18 0 003.1-3.1L25.7 23A11.53 11.53 0 0123 25.7zM27.4 19.7l1.9.6A15.47 15.47 0 0030 16H28A11.48 11.48 0 0127.4 19.7zM29.2 11.6a14.4 14.4 0 00-2-3.9L25.6 8.9a12.89 12.89 0 011.7 3.3zM24.1 4.6a14.4 14.4 0 00-3.9-2l-.6 1.9a12.89 12.89 0 013.3 1.7zM20.3 29.3l-.6-1.9A11.48 11.48 0 0116 28v2A21.42 21.42 0 0020.3 29.3z"
1505
+ })), children);
1506
+ });
1507
+ if (process.env.NODE_ENV !== "production") {
1508
+ CircleDash.propTypes = iconPropTypesC5chbmyn.i;
1509
+ }
1510
+ const CircleFill = /*#__PURE__*/React.forwardRef(function CircleFill(_ref56, ref) {
1511
+ let {
1512
+ children,
1513
+ size = 16,
1514
+ ...rest
1515
+ } = _ref56;
1516
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") {
1517
+ return /*#__PURE__*/React.createElement(Icon.default, {
1518
+ width: size,
1519
+ height: size,
1520
+ ref: ref,
1521
+ xmlns: "http://www.w3.org/2000/svg",
1522
+ viewBox: "0 0 16 16",
1523
+ fill: "currentColor",
1524
+ ...rest
1525
+ }, _circle7 || (_circle7 = /*#__PURE__*/React.createElement("circle", {
1526
+ cx: "8",
1527
+ cy: "8",
1528
+ r: "6"
1529
+ })), children);
1530
+ }
1531
+ return /*#__PURE__*/React.createElement(Icon.default, {
1532
+ width: size,
1533
+ height: size,
1534
+ ref: ref,
1535
+ xmlns: "http://www.w3.org/2000/svg",
1536
+ viewBox: "0 0 16 16",
1537
+ fill: "currentColor",
1538
+ ...rest
1539
+ }, _circle8 || (_circle8 = /*#__PURE__*/React.createElement("circle", {
1540
+ cx: "8",
1541
+ cy: "8",
1542
+ r: "6"
1543
+ })), children);
1544
+ });
1545
+ if (process.env.NODE_ENV !== "production") {
1546
+ CircleFill.propTypes = iconPropTypesC5chbmyn.i;
1547
+ }
1548
+ const WatsonHealthCircleMeasurement = /*#__PURE__*/React.forwardRef(function WatsonHealthCircleMeasurement(_ref57, ref) {
1549
+ let {
1550
+ children,
1551
+ size = 16,
1552
+ ...rest
1553
+ } = _ref57;
1554
+ return /*#__PURE__*/React.createElement(Icon.default, {
1555
+ width: size,
1556
+ height: size,
1557
+ ref: ref,
1558
+ xmlns: "http://www.w3.org/2000/svg",
1559
+ viewBox: "0 0 32 32",
1560
+ fill: "currentColor",
1561
+ ...rest
1562
+ }, _path109 || (_path109 = /*#__PURE__*/React.createElement("path", {
1563
+ 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"
1564
+ })), _path110 || (_path110 = /*#__PURE__*/React.createElement("path", {
1565
+ d: "M21,12.41V16h2V9H16v2h3.59L11,19.59V16H9v7h7V21H12.41Z"
1566
+ })), children);
1567
+ });
1568
+ if (process.env.NODE_ENV !== "production") {
1569
+ WatsonHealthCircleMeasurement.propTypes = iconPropTypesC5chbmyn.i;
1570
+ }
1571
+ const CirclePacking = /*#__PURE__*/React.forwardRef(function CirclePacking(_ref58, ref) {
1572
+ let {
1573
+ children,
1574
+ size = 16,
1575
+ ...rest
1576
+ } = _ref58;
1577
+ return /*#__PURE__*/React.createElement(Icon.default, {
1578
+ width: size,
1579
+ height: size,
1580
+ ref: ref,
1581
+ xmlns: "http://www.w3.org/2000/svg",
1582
+ viewBox: "0 0 32 32",
1583
+ fill: "currentColor",
1584
+ ...rest
1585
+ }, _path111 || (_path111 = /*#__PURE__*/React.createElement("path", {
1586
+ 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"
1587
+ })), children);
1588
+ });
1589
+ if (process.env.NODE_ENV !== "production") {
1590
+ CirclePacking.propTypes = iconPropTypesC5chbmyn.i;
1591
+ }
1592
+ const CircleStroke = /*#__PURE__*/React.forwardRef(function CircleStroke(_ref59, ref) {
1593
+ let {
1594
+ children,
1595
+ size = 16,
1596
+ ...rest
1597
+ } = _ref59;
1598
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") {
1599
+ return /*#__PURE__*/React.createElement(Icon.default, {
1600
+ width: size,
1601
+ height: size,
1602
+ ref: ref,
1603
+ xmlns: "http://www.w3.org/2000/svg",
1604
+ viewBox: "0 0 16 16",
1605
+ fill: "currentColor",
1606
+ ...rest
1607
+ }, _path112 || (_path112 = /*#__PURE__*/React.createElement("path", {
1608
+ 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"
1609
+ })), children);
1610
+ }
1611
+ return /*#__PURE__*/React.createElement(Icon.default, {
1612
+ width: size,
1613
+ height: size,
1614
+ ref: ref,
1615
+ xmlns: "http://www.w3.org/2000/svg",
1616
+ viewBox: "0 0 16 16",
1617
+ fill: "currentColor",
1618
+ ...rest
1619
+ }, _path113 || (_path113 = /*#__PURE__*/React.createElement("path", {
1620
+ 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"
1621
+ })), children);
1622
+ });
1623
+ if (process.env.NODE_ENV !== "production") {
1624
+ CircleStroke.propTypes = iconPropTypesC5chbmyn.i;
1625
+ }
1626
+ const QCircuitComposer = /*#__PURE__*/React.forwardRef(function QCircuitComposer(_ref60, ref) {
1627
+ let {
1628
+ children,
1629
+ size = 16,
1630
+ ...rest
1631
+ } = _ref60;
1632
+ return /*#__PURE__*/React.createElement(Icon.default, {
1633
+ width: size,
1634
+ height: size,
1635
+ ref: ref,
1636
+ xmlns: "http://www.w3.org/2000/svg",
1637
+ viewBox: "0 0 32 32",
1638
+ fill: "currentColor",
1639
+ ...rest
1640
+ }, _path114 || (_path114 = /*#__PURE__*/React.createElement("path", {
1641
+ d: "M18 9L18 15 14 15 14 9 12 9 12 23 14 23 14 17 18 17 18 23 20 23 20 9 18 9z"
1642
+ })), _path115 || (_path115 = /*#__PURE__*/React.createElement("path", {
1643
+ 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"
1644
+ })), children);
1645
+ });
1646
+ if (process.env.NODE_ENV !== "production") {
1647
+ QCircuitComposer.propTypes = iconPropTypesC5chbmyn.i;
1648
+ }
1649
+ const ClassicBatch = /*#__PURE__*/React.forwardRef(function ClassicBatch(_ref61, ref) {
1650
+ let {
1651
+ children,
1652
+ size = 16,
1653
+ ...rest
1654
+ } = _ref61;
1655
+ return /*#__PURE__*/React.createElement(Icon.default, {
1656
+ width: size,
1657
+ height: size,
1658
+ ref: ref,
1659
+ xmlns: "http://www.w3.org/2000/svg",
1660
+ viewBox: "0 0 32 32",
1661
+ fill: "currentColor",
1662
+ ...rest
1663
+ }, _path116 || (_path116 = /*#__PURE__*/React.createElement("path", {
1664
+ 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"
1665
+ })), children);
1666
+ });
1667
+ if (process.env.NODE_ENV !== "production") {
1668
+ ClassicBatch.propTypes = iconPropTypesC5chbmyn.i;
1669
+ }
1670
+ const Classification = /*#__PURE__*/React.forwardRef(function Classification(_ref62, ref) {
1671
+ let {
1672
+ children,
1673
+ size = 16,
1674
+ ...rest
1675
+ } = _ref62;
1676
+ return /*#__PURE__*/React.createElement(Icon.default, {
1677
+ width: size,
1678
+ height: size,
1679
+ ref: ref,
1680
+ xmlns: "http://www.w3.org/2000/svg",
1681
+ viewBox: "0 0 32 32",
1682
+ fill: "currentColor",
1683
+ ...rest
1684
+ }, _circle9 || (_circle9 = /*#__PURE__*/React.createElement("circle", {
1685
+ cx: "15",
1686
+ cy: "19",
1687
+ r: "1"
1688
+ })), _path117 || (_path117 = /*#__PURE__*/React.createElement("path", {
1689
+ 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"
1690
+ })), children);
1691
+ });
1692
+ if (process.env.NODE_ENV !== "production") {
1693
+ Classification.propTypes = iconPropTypesC5chbmyn.i;
1694
+ }
1695
+ const ClassifierLanguage = /*#__PURE__*/React.forwardRef(function ClassifierLanguage(_ref63, ref) {
1696
+ let {
1697
+ children,
1698
+ size = 16,
1699
+ ...rest
1700
+ } = _ref63;
1701
+ return /*#__PURE__*/React.createElement(Icon.default, {
1702
+ width: size,
1703
+ height: size,
1704
+ ref: ref,
1705
+ xmlns: "http://www.w3.org/2000/svg",
1706
+ viewBox: "0 0 32 32",
1707
+ fill: "currentColor",
1708
+ ...rest
1709
+ }, _path118 || (_path118 = /*#__PURE__*/React.createElement("path", {
1710
+ d: "M30 10V2H22v8h3v4H23v2h7V14H27V10zM24 4h4V8H24zM20 23.41L18.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.41zM20 14L12 14 12 16 15 16 15 21 17 21 17 16 20 16 20 14zM7 9.86a4 4 0 10-2 0V14H2v2H9V14H7zM4 6A2 2 0 116 8 2 2 0 014 6z"
1711
+ })), children);
1712
+ });
1713
+ if (process.env.NODE_ENV !== "production") {
1714
+ ClassifierLanguage.propTypes = iconPropTypesC5chbmyn.i;
1715
+ }
1716
+ const Clean = /*#__PURE__*/React.forwardRef(function Clean(_ref64, ref) {
1717
+ let {
1718
+ children,
1719
+ size = 16,
1720
+ ...rest
1721
+ } = _ref64;
1722
+ return /*#__PURE__*/React.createElement(Icon.default, {
1723
+ width: size,
1724
+ height: size,
1725
+ ref: ref,
1726
+ xmlns: "http://www.w3.org/2000/svg",
1727
+ viewBox: "0 0 32 32",
1728
+ fill: "currentColor",
1729
+ ...rest
1730
+ }, _path119 || (_path119 = /*#__PURE__*/React.createElement("path", {
1731
+ d: "M20 18H26V20H20z",
1732
+ transform: "rotate(-180 23 19)"
1733
+ })), _path120 || (_path120 = /*#__PURE__*/React.createElement("path", {
1734
+ d: "M24 26H30V28H24z",
1735
+ transform: "rotate(-180 27 27)"
1736
+ })), _path121 || (_path121 = /*#__PURE__*/React.createElement("path", {
1737
+ d: "M22 22H28V24H22z",
1738
+ transform: "rotate(-180 25 23)"
1739
+ })), _path122 || (_path122 = /*#__PURE__*/React.createElement("path", {
1740
+ 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"
1741
+ })), children);
1742
+ });
1743
+ if (process.env.NODE_ENV !== "production") {
1744
+ Clean.propTypes = iconPropTypesC5chbmyn.i;
1745
+ }
1746
+ const Close = /*#__PURE__*/React.forwardRef(function Close(_ref65, ref) {
1747
+ let {
1748
+ children,
1749
+ size = 16,
1750
+ ...rest
1751
+ } = _ref65;
1752
+ return /*#__PURE__*/React.createElement(Icon.default, {
1753
+ width: size,
1754
+ height: size,
1755
+ ref: ref,
1756
+ xmlns: "http://www.w3.org/2000/svg",
1757
+ viewBox: "0 0 32 32",
1758
+ fill: "currentColor",
1759
+ ...rest
1760
+ }, _path123 || (_path123 = /*#__PURE__*/React.createElement("path", {
1761
+ d: "M17.4141 16L24 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"
1762
+ })), children);
1763
+ });
1764
+ if (process.env.NODE_ENV !== "production") {
1765
+ Close.propTypes = iconPropTypesC5chbmyn.i;
1766
+ }
1767
+ const CloseFilled = /*#__PURE__*/React.forwardRef(function CloseFilled(_ref66, ref) {
1768
+ let {
1769
+ children,
1770
+ size = 16,
1771
+ ...rest
1772
+ } = _ref66;
1773
+ if (size === 16 || size === "16" || size === "16px") {
1774
+ return /*#__PURE__*/React.createElement(Icon.default, {
1775
+ width: size,
1776
+ height: size,
1777
+ ref: ref,
1778
+ xmlns: "http://www.w3.org/2000/svg",
1779
+ viewBox: "0 0 16 16",
1780
+ fill: "currentColor",
1781
+ ...rest
1782
+ }, _path124 || (_path124 = /*#__PURE__*/React.createElement("path", {
1783
+ d: "M8,1C4.1,1,1,4.1,1,8s3.1,7,7,7s7-3.1,7-7S11.9,1,8,1z M10.7,11.5L8,8.8l-2.7,2.7l-0.8-0.8L7.2,8L4.5,5.3l0.8-0.8L8,7.2 l2.7-2.7l0.8,0.8L8.8,8l2.7,2.7L10.7,11.5z"
1784
+ })), children);
1785
+ }
1786
+ return /*#__PURE__*/React.createElement(Icon.default, {
1787
+ width: size,
1788
+ height: size,
1789
+ ref: ref,
1790
+ xmlns: "http://www.w3.org/2000/svg",
1791
+ viewBox: "0 0 32 32",
1792
+ fill: "currentColor",
1793
+ ...rest
1794
+ }, _path125 || (_path125 = /*#__PURE__*/React.createElement("path", {
1795
+ d: "M16,2C8.2,2,2,8.2,2,16s6.2,14,14,14s14-6.2,14-14S23.8,2,16,2z M21.4,23L16,17.6L10.6,23L9,21.4l5.4-5.4L9,10.6L10.6,9 l5.4,5.4L21.4,9l1.6,1.6L17.6,16l5.4,5.4L21.4,23z"
1796
+ })), _path126 || (_path126 = /*#__PURE__*/React.createElement("path", {
1797
+ d: "M14.4 16L9 10.6 10.6 9 16 14.4 21.4 9 23 10.6 17.6 16 23 21.4 21.4 23 16 17.6 10.6 23 9 21.4 14.4 16",
1798
+ "data-icon-path": "inner-path",
1799
+ opacity: "0"
1800
+ })), children);
1801
+ });
1802
+ if (process.env.NODE_ENV !== "production") {
1803
+ CloseFilled.propTypes = iconPropTypesC5chbmyn.i;
1804
+ }
1805
+ const CloseLarge = /*#__PURE__*/React.forwardRef(function CloseLarge(_ref67, ref) {
1806
+ let {
1807
+ children,
1808
+ size = 16,
1809
+ ...rest
1810
+ } = _ref67;
1811
+ return /*#__PURE__*/React.createElement(Icon.default, {
1812
+ width: size,
1813
+ height: size,
1814
+ ref: ref,
1815
+ xmlns: "http://www.w3.org/2000/svg",
1816
+ viewBox: "0 0 32 32",
1817
+ fill: "currentColor",
1818
+ ...rest
1819
+ }, _path127 || (_path127 = /*#__PURE__*/React.createElement("path", {
1820
+ d: "M17.4141 16L26 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"
1821
+ })), children);
1822
+ });
1823
+ if (process.env.NODE_ENV !== "production") {
1824
+ CloseLarge.propTypes = iconPropTypesC5chbmyn.i;
1825
+ }
1826
+ const CloseOutline = /*#__PURE__*/React.forwardRef(function CloseOutline(_ref68, ref) {
1827
+ let {
1828
+ children,
1829
+ size = 16,
1830
+ ...rest
1831
+ } = _ref68;
1832
+ return /*#__PURE__*/React.createElement(Icon.default, {
1833
+ width: size,
1834
+ height: size,
1835
+ ref: ref,
1836
+ xmlns: "http://www.w3.org/2000/svg",
1837
+ viewBox: "0 0 32 32",
1838
+ fill: "currentColor",
1839
+ ...rest
1840
+ }, _path128 || (_path128 = /*#__PURE__*/React.createElement("path", {
1841
+ 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"
1842
+ })), _path129 || (_path129 = /*#__PURE__*/React.createElement("path", {
1843
+ d: "M21.4 23L16 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"
1844
+ })), children);
1845
+ });
1846
+ if (process.env.NODE_ENV !== "production") {
1847
+ CloseOutline.propTypes = iconPropTypesC5chbmyn.i;
1848
+ }
1849
+ const ClosedCaption = /*#__PURE__*/React.forwardRef(function ClosedCaption(_ref69, ref) {
1850
+ let {
1851
+ children,
1852
+ size = 16,
1853
+ ...rest
1854
+ } = _ref69;
1855
+ return /*#__PURE__*/React.createElement(Icon.default, {
1856
+ width: size,
1857
+ height: size,
1858
+ ref: ref,
1859
+ xmlns: "http://www.w3.org/2000/svg",
1860
+ viewBox: "0 0 32 32",
1861
+ fill: "currentColor",
1862
+ ...rest
1863
+ }, _path130 || (_path130 = /*#__PURE__*/React.createElement("path", {
1864
+ d: "M15 21H10a2 2 0 01-2-2V13a2 2 0 012-2h5v2H10v6h5zM25 21H20a2 2 0 01-2-2V13a2 2 0 012-2h5v2H20v6h5z"
1865
+ })), _path131 || (_path131 = /*#__PURE__*/React.createElement("path", {
1866
+ 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"
1867
+ })), children);
1868
+ });
1869
+ if (process.env.NODE_ENV !== "production") {
1870
+ ClosedCaption.propTypes = iconPropTypesC5chbmyn.i;
1871
+ }
1872
+ const ClosedCaptionAlt = /*#__PURE__*/React.forwardRef(function ClosedCaptionAlt(_ref70, ref) {
1873
+ let {
1874
+ children,
1875
+ size = 16,
1876
+ ...rest
1877
+ } = _ref70;
1878
+ return /*#__PURE__*/React.createElement(Icon.default, {
1879
+ width: size,
1880
+ height: size,
1881
+ ref: ref,
1882
+ xmlns: "http://www.w3.org/2000/svg",
1883
+ viewBox: "0 0 32 32",
1884
+ fill: "currentColor",
1885
+ ...rest
1886
+ }, _path132 || (_path132 = /*#__PURE__*/React.createElement("path", {
1887
+ d: "M19 17H25V19H19zM11 17H17V19H11zM6 17H9V19H6zM22 13H26V15H22zM13 13H20V15H13zM6 13H11V15H6z"
1888
+ })), _path133 || (_path133 = /*#__PURE__*/React.createElement("path", {
1889
+ 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"
1890
+ })), children);
1891
+ });
1892
+ if (process.env.NODE_ENV !== "production") {
1893
+ ClosedCaptionAlt.propTypes = iconPropTypesC5chbmyn.i;
1894
+ }
1895
+ const ClosedCaptionFilled = /*#__PURE__*/React.forwardRef(function ClosedCaptionFilled(_ref71, ref) {
1896
+ let {
1897
+ children,
1898
+ size = 16,
1899
+ ...rest
1900
+ } = _ref71;
1901
+ return /*#__PURE__*/React.createElement(Icon.default, {
1902
+ width: size,
1903
+ height: size,
1904
+ ref: ref,
1905
+ xmlns: "http://www.w3.org/2000/svg",
1906
+ viewBox: "0 0 32 32",
1907
+ fill: "currentColor",
1908
+ ...rest
1909
+ }, _path134 || (_path134 = /*#__PURE__*/React.createElement("path", {
1910
+ 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"
1911
+ })), children);
1912
+ });
1913
+ if (process.env.NODE_ENV !== "production") {
1914
+ ClosedCaptionFilled.propTypes = iconPropTypesC5chbmyn.i;
1915
+ }
1916
+ const Cloud = /*#__PURE__*/React.forwardRef(function Cloud(_ref72, ref) {
1917
+ let {
1918
+ children,
1919
+ size = 16,
1920
+ ...rest
1921
+ } = _ref72;
1922
+ return /*#__PURE__*/React.createElement(Icon.default, {
1923
+ width: size,
1924
+ height: size,
1925
+ ref: ref,
1926
+ xmlns: "http://www.w3.org/2000/svg",
1927
+ viewBox: "0 0 32 32",
1928
+ fill: "currentColor",
1929
+ ...rest
1930
+ }, _path135 || (_path135 = /*#__PURE__*/React.createElement("path", {
1931
+ 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"
1932
+ })), children);
1933
+ });
1934
+ if (process.env.NODE_ENV !== "production") {
1935
+ Cloud.propTypes = iconPropTypesC5chbmyn.i;
1936
+ }
1937
+ const CloudAlerting = /*#__PURE__*/React.forwardRef(function CloudAlerting(_ref73, ref) {
1938
+ let {
1939
+ children,
1940
+ size = 16,
1941
+ ...rest
1942
+ } = _ref73;
1943
+ return /*#__PURE__*/React.createElement(Icon.default, {
1944
+ width: size,
1945
+ height: size,
1946
+ ref: ref,
1947
+ xmlns: "http://www.w3.org/2000/svg",
1948
+ viewBox: "0 0 32 32",
1949
+ fill: "currentColor",
1950
+ ...rest
1951
+ }, _path136 || (_path136 = /*#__PURE__*/React.createElement("path", {
1952
+ d: "M28,17v5H4V6H15V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V17ZM18,28H14V24h4Z"
1953
+ })), _path137 || (_path137 = /*#__PURE__*/React.createElement("path", {
1954
+ 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"
1955
+ })), children);
1956
+ });
1957
+ if (process.env.NODE_ENV !== "production") {
1958
+ CloudAlerting.propTypes = iconPropTypesC5chbmyn.i;
1959
+ }
1960
+ const CloudAuditing = /*#__PURE__*/React.forwardRef(function CloudAuditing(_ref74, ref) {
1961
+ let {
1962
+ children,
1963
+ size = 16,
1964
+ ...rest
1965
+ } = _ref74;
1966
+ return /*#__PURE__*/React.createElement(Icon.default, {
1967
+ width: size,
1968
+ height: size,
1969
+ ref: ref,
1970
+ xmlns: "http://www.w3.org/2000/svg",
1971
+ viewBox: "0 0 32 32",
1972
+ fill: "currentColor",
1973
+ ...rest
1974
+ }, _path138 || (_path138 = /*#__PURE__*/React.createElement("path", {
1975
+ d: "M28,16v6H4V6H16V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z"
1976
+ })), _path139 || (_path139 = /*#__PURE__*/React.createElement("path", {
1977
+ d: "M21 15L16 10.04 17.59 8.47 21 11.85 28.41 4.5 30 6.08 21 15z"
1978
+ })), children);
1979
+ });
1980
+ if (process.env.NODE_ENV !== "production") {
1981
+ CloudAuditing.propTypes = iconPropTypesC5chbmyn.i;
1982
+ }
1983
+ const CloudDataOps = /*#__PURE__*/React.forwardRef(function CloudDataOps(_ref75, ref) {
1984
+ let {
1985
+ children,
1986
+ size = 16,
1987
+ ...rest
1988
+ } = _ref75;
1989
+ return /*#__PURE__*/React.createElement(Icon.default, {
1990
+ width: size,
1991
+ height: size,
1992
+ ref: ref,
1993
+ xmlns: "http://www.w3.org/2000/svg",
1994
+ viewBox: "0 0 32 32",
1995
+ fill: "currentColor",
1996
+ ...rest
1997
+ }, _path140 || (_path140 = /*#__PURE__*/React.createElement("path", {
1998
+ d: "M28 18H30V28H28zM24 14H26V28H24zM20 22H22V28H20zM22.175 10L23.76 8.7339A9.9522 9.9522 0 0017.89 5.1816 10.0025 10.0025 0 006.17 13.1152 7.5054 7.5054 0 00.0544 21.4087 7.6843 7.6843 0 007.7692 28H16V26H7.6945a5.632 5.632 0 01-5.6023-4.4858 5.5064 5.5064 0 014.4339-6.4307l1.3486-.2441.2139-1.11a8.206 8.206 0 016.7426-6.6426 7.9666 7.9666 0 013.0137.13A7.8037 7.8037 0 0122.175 10z"
1999
+ })), children);
2000
+ });
2001
+ if (process.env.NODE_ENV !== "production") {
2002
+ CloudDataOps.propTypes = iconPropTypesC5chbmyn.i;
2003
+ }
2004
+ const CloudDownload = /*#__PURE__*/React.forwardRef(function CloudDownload(_ref76, ref) {
2005
+ let {
2006
+ children,
2007
+ size = 16,
2008
+ ...rest
2009
+ } = _ref76;
2010
+ return /*#__PURE__*/React.createElement(Icon.default, {
2011
+ width: size,
2012
+ height: size,
2013
+ ref: ref,
2014
+ xmlns: "http://www.w3.org/2000/svg",
2015
+ viewBox: "0 0 32 32",
2016
+ fill: "currentColor",
2017
+ ...rest
2018
+ }, _path141 || (_path141 = /*#__PURE__*/React.createElement("path", {
2019
+ 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"
2020
+ })), _path142 || (_path142 = /*#__PURE__*/React.createElement("path", {
2021
+ d: "M17 26.17L17 14 15 14 15 26.17 12.41 23.59 11 25 16 30 21 25 19.59 23.59 17 26.17z"
2022
+ })), children);
2023
+ });
2024
+ if (process.env.NODE_ENV !== "production") {
2025
+ CloudDownload.propTypes = iconPropTypesC5chbmyn.i;
2026
+ }
2027
+ const CloudLogging = /*#__PURE__*/React.forwardRef(function CloudLogging(_ref77, ref) {
2028
+ let {
2029
+ children,
2030
+ size = 16,
2031
+ ...rest
2032
+ } = _ref77;
2033
+ return /*#__PURE__*/React.createElement(Icon.default, {
2034
+ width: size,
2035
+ height: size,
2036
+ ref: ref,
2037
+ xmlns: "http://www.w3.org/2000/svg",
2038
+ viewBox: "0 0 32 32",
2039
+ fill: "currentColor",
2040
+ ...rest
2041
+ }, _path143 || (_path143 = /*#__PURE__*/React.createElement("path", {
2042
+ d: "M28 16v6H4V6H15V4H4A2 2 0 002 6V22a2 2 0 002 2h8v4H8v2H24V28H20V24h8a2 2 0 002-2V16zM18 28H14V24h4zM18 4H30V6H18z"
2043
+ })), _path144 || (_path144 = /*#__PURE__*/React.createElement("path", {
2044
+ d: "M18 8H30V10H18zM18 12H24V14H18z"
2045
+ })), children);
2046
+ });
2047
+ if (process.env.NODE_ENV !== "production") {
2048
+ CloudLogging.propTypes = iconPropTypesC5chbmyn.i;
2049
+ }
2050
+ const CloudMonitoring = /*#__PURE__*/React.forwardRef(function CloudMonitoring(_ref78, ref) {
2051
+ let {
2052
+ children,
2053
+ size = 16,
2054
+ ...rest
2055
+ } = _ref78;
2056
+ return /*#__PURE__*/React.createElement(Icon.default, {
2057
+ width: size,
2058
+ height: size,
2059
+ ref: ref,
2060
+ xmlns: "http://www.w3.org/2000/svg",
2061
+ viewBox: "0 0 32 32",
2062
+ fill: "currentColor",
2063
+ ...rest
2064
+ }, _path145 || (_path145 = /*#__PURE__*/React.createElement("path", {
2065
+ d: "M28,16v6H4V6h7V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z"
2066
+ })), _path146 || (_path146 = /*#__PURE__*/React.createElement("path", {
2067
+ 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"
2068
+ })), children);
2069
+ });
2070
+ if (process.env.NODE_ENV !== "production") {
2071
+ CloudMonitoring.propTypes = iconPropTypesC5chbmyn.i;
2072
+ }
2073
+ const CloudOffline = /*#__PURE__*/React.forwardRef(function CloudOffline(_ref79, ref) {
2074
+ let {
2075
+ children,
2076
+ size = 16,
2077
+ ...rest
2078
+ } = _ref79;
2079
+ return /*#__PURE__*/React.createElement(Icon.default, {
2080
+ width: size,
2081
+ height: size,
2082
+ ref: ref,
2083
+ xmlns: "http://www.w3.org/2000/svg",
2084
+ viewBox: "0 0 32 32",
2085
+ fill: "currentColor",
2086
+ ...rest
2087
+ }, _path147 || (_path147 = /*#__PURE__*/React.createElement("path", {
2088
+ d: "M24.8008 12.1362a8.8694 8.8694 0 00-.9795-2.5434L30 3.4142 28.5872 2 2 28.5872 3.4142 30l5-5H23.5a6.4974 6.4974 0 001.3008-12.8638zM23.5 23H10.4141L22.3418 11.0723a6.9049 6.9049 0 01.6006 2.0708l.0986.812.8154.0639A4.4975 4.4975 0 0123.5 23zM4.2964 23.4487l1.4313-1.4311A4.4774 4.4774 0 018.144 14.019l.8155-.0639.0991-.812a6.9867 6.9867 0 0110.63-5.0865l1.4431-1.4428A8.9859 8.9859 0 007.2 12.1362 6.4891 6.4891 0 004.2964 23.4487z"
2089
+ })), children);
2090
+ });
2091
+ if (process.env.NODE_ENV !== "production") {
2092
+ CloudOffline.propTypes = iconPropTypesC5chbmyn.i;
2093
+ }
2094
+ const CloudServiceManagement = /*#__PURE__*/React.forwardRef(function CloudServiceManagement(_ref80, ref) {
2095
+ let {
2096
+ children,
2097
+ size = 16,
2098
+ ...rest
2099
+ } = _ref80;
2100
+ return /*#__PURE__*/React.createElement(Icon.default, {
2101
+ width: size,
2102
+ height: size,
2103
+ ref: ref,
2104
+ xmlns: "http://www.w3.org/2000/svg",
2105
+ viewBox: "0 0 32 32",
2106
+ fill: "currentColor",
2107
+ ...rest
2108
+ }, _path148 || (_path148 = /*#__PURE__*/React.createElement("path", {
2109
+ d: "M28,17v5H4V6H14V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V17ZM18,28H14V24h4Z"
2110
+ })), _path149 || (_path149 = /*#__PURE__*/React.createElement("path", {
2111
+ 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"
2112
+ })), children);
2113
+ });
2114
+ if (process.env.NODE_ENV !== "production") {
2115
+ CloudServiceManagement.propTypes = iconPropTypesC5chbmyn.i;
2116
+ }
2117
+ const CloudUpload = /*#__PURE__*/React.forwardRef(function CloudUpload(_ref81, ref) {
2118
+ let {
2119
+ children,
2120
+ size = 16,
2121
+ ...rest
2122
+ } = _ref81;
2123
+ return /*#__PURE__*/React.createElement(Icon.default, {
2124
+ width: size,
2125
+ height: size,
2126
+ ref: ref,
2127
+ xmlns: "http://www.w3.org/2000/svg",
2128
+ viewBox: "0 0 32 32",
2129
+ fill: "currentColor",
2130
+ ...rest
2131
+ }, _path150 || (_path150 = /*#__PURE__*/React.createElement("path", {
2132
+ d: "M11 18L12.41 19.41 15 16.83 15 29 17 29 17 16.83 19.59 19.41 21 18 16 13 11 18z"
2133
+ })), _path151 || (_path151 = /*#__PURE__*/React.createElement("path", {
2134
+ 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"
2135
+ })), children);
2136
+ });
2137
+ if (process.env.NODE_ENV !== "production") {
2138
+ CloudUpload.propTypes = iconPropTypesC5chbmyn.i;
2139
+ }
2140
+ const CloudApp = /*#__PURE__*/React.forwardRef(function CloudApp(_ref82, ref) {
2141
+ let {
2142
+ children,
2143
+ size = 16,
2144
+ ...rest
2145
+ } = _ref82;
2146
+ return /*#__PURE__*/React.createElement(Icon.default, {
2147
+ width: size,
2148
+ height: size,
2149
+ ref: ref,
2150
+ xmlns: "http://www.w3.org/2000/svg",
2151
+ viewBox: "0 0 32 32",
2152
+ fill: "currentColor",
2153
+ ...rest
2154
+ }, _path152 || (_path152 = /*#__PURE__*/React.createElement("path", {
2155
+ d: "M25.8289 13.1155A10.02 10.02 0 0016 5.0005V7a8.0233 8.0233 0 017.8649 6.4934l.2591 1.346 1.3488.2441A5.5019 5.5019 0 0124.5076 26H16v2h8.5076a7.5019 7.5019 0 001.3213-14.8845zM8 24H14V26H8zM4 24H6V26H4zM6 20H14V22H6zM2 20H4V22H2zM8 16H14V18H8zM4 16H6V18H4zM10 12H14V14H10zM6 12H8V14H6zM12 8H14V10H12z"
2156
+ })), children);
2157
+ });
2158
+ if (process.env.NODE_ENV !== "production") {
2159
+ CloudApp.propTypes = iconPropTypesC5chbmyn.i;
2160
+ }
2161
+ const CloudCeiling = /*#__PURE__*/React.forwardRef(function CloudCeiling(_ref83, ref) {
2162
+ let {
2163
+ children,
2164
+ size = 16,
2165
+ ...rest
2166
+ } = _ref83;
2167
+ return /*#__PURE__*/React.createElement(Icon.default, {
2168
+ width: size,
2169
+ height: size,
2170
+ ref: ref,
2171
+ xmlns: "http://www.w3.org/2000/svg",
2172
+ viewBox: "0 0 32 32",
2173
+ fill: "currentColor",
2174
+ ...rest
2175
+ }, _path153 || (_path153 = /*#__PURE__*/React.createElement("path", {
2176
+ d: "M2 28H11V30H2zM21 28H30V30H21zM17 26.167L17 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"
2177
+ })), _path154 || (_path154 = /*#__PURE__*/React.createElement("path", {
2178
+ 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"
2179
+ })), children);
2180
+ });
2181
+ if (process.env.NODE_ENV !== "production") {
2182
+ CloudCeiling.propTypes = iconPropTypesC5chbmyn.i;
2183
+ }
2184
+ const CloudFoundry_1 = /*#__PURE__*/React.forwardRef(function CloudFoundry_1(_ref84, ref) {
2185
+ let {
2186
+ children,
2187
+ size = 16,
2188
+ ...rest
2189
+ } = _ref84;
2190
+ return /*#__PURE__*/React.createElement(Icon.default, {
2191
+ width: size,
2192
+ height: size,
2193
+ ref: ref,
2194
+ xmlns: "http://www.w3.org/2000/svg",
2195
+ viewBox: "0 0 32 32",
2196
+ fill: "currentColor",
2197
+ ...rest
2198
+ }, _path155 || (_path155 = /*#__PURE__*/React.createElement("path", {
2199
+ 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"
2200
+ })), _path156 || (_path156 = /*#__PURE__*/React.createElement("path", {
2201
+ d: "M14 24H11a2 2 0 01-2-2V19a2 2 0 012-2h3v2H11v3h3zM21 15V13H19a2 2 0 00-2 2v2H16v2h1v5h2V19h2V17H19V15z"
2202
+ })), children);
2203
+ });
2204
+ if (process.env.NODE_ENV !== "production") {
2205
+ CloudFoundry_1.propTypes = iconPropTypesC5chbmyn.i;
2206
+ }
2207
+ const CloudFoundry_2 = /*#__PURE__*/React.forwardRef(function CloudFoundry_2(_ref85, ref) {
2208
+ let {
2209
+ children,
2210
+ size = 16,
2211
+ ...rest
2212
+ } = _ref85;
2213
+ return /*#__PURE__*/React.createElement(Icon.default, {
2214
+ width: size,
2215
+ height: size,
2216
+ ref: ref,
2217
+ xmlns: "http://www.w3.org/2000/svg",
2218
+ viewBox: "0 0 32 32",
2219
+ fill: "currentColor",
2220
+ ...rest
2221
+ }, _path157 || (_path157 = /*#__PURE__*/React.createElement("path", {
2222
+ d: "M25 11L25 9 17 9 17 23 19 23 19 17 24 17 24 15 19 15 19 11 25 11zM15 23H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9V21h6z"
2223
+ })), children);
2224
+ });
2225
+ if (process.env.NODE_ENV !== "production") {
2226
+ CloudFoundry_2.propTypes = iconPropTypesC5chbmyn.i;
2227
+ }
2228
+ const CloudRegistry = /*#__PURE__*/React.forwardRef(function CloudRegistry(_ref86, ref) {
2229
+ let {
2230
+ children,
2231
+ size = 16,
2232
+ ...rest
2233
+ } = _ref86;
2234
+ return /*#__PURE__*/React.createElement(Icon.default, {
2235
+ width: size,
2236
+ height: size,
2237
+ ref: ref,
2238
+ xmlns: "http://www.w3.org/2000/svg",
2239
+ viewBox: "0 0 32 32",
2240
+ fill: "currentColor",
2241
+ ...rest
2242
+ }, _path158 || (_path158 = /*#__PURE__*/React.createElement("path", {
2243
+ d: "M28 30H23a2.0023 2.0023 0 01-2-2V23a2.0023 2.0023 0 012-2h5a2.0023 2.0023 0 012 2v5A2.0023 2.0023 0 0128 30zm-5-7h-.0012L23 28h5V23zM16 23H11a2.0023 2.0023 0 01-2-2V11a2.0023 2.0023 0 012-2H21a2.0023 2.0023 0 012 2v5H21V11H11V21h5z"
2244
+ })), _path159 || (_path159 = /*#__PURE__*/React.createElement("path", {
2245
+ 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"
2246
+ })), children);
2247
+ });
2248
+ if (process.env.NODE_ENV !== "production") {
2249
+ CloudRegistry.propTypes = iconPropTypesC5chbmyn.i;
2250
+ }
2251
+ const CloudSatellite = /*#__PURE__*/React.forwardRef(function CloudSatellite(_ref87, ref) {
2252
+ let {
2253
+ children,
2254
+ size = 16,
2255
+ ...rest
2256
+ } = _ref87;
2257
+ return /*#__PURE__*/React.createElement(Icon.default, {
2258
+ width: size,
2259
+ height: size,
2260
+ ref: ref,
2261
+ xmlns: "http://www.w3.org/2000/svg",
2262
+ viewBox: "0 0 32 32",
2263
+ fill: "currentColor",
2264
+ ...rest
2265
+ }, _circle0 || (_circle0 = /*#__PURE__*/React.createElement("circle", {
2266
+ cx: "9",
2267
+ cy: "20",
2268
+ r: "2"
2269
+ })), _path160 || (_path160 = /*#__PURE__*/React.createElement("path", {
2270
+ d: "M16,20a4,4,0,1,1,4-4A4.0118,4.0118,0,0,1,16,20Zm0-6a2,2,0,1,0,2,2A2.0059,2.0059,0,0,0,16,14Z"
2271
+ })), _circle1 || (_circle1 = /*#__PURE__*/React.createElement("circle", {
2272
+ cx: "23",
2273
+ cy: "12",
2274
+ r: "2"
2275
+ })), _path161 || (_path161 = /*#__PURE__*/React.createElement("path", {
2276
+ 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"
2277
+ })), children);
2278
+ });
2279
+ if (process.env.NODE_ENV !== "production") {
2280
+ CloudSatellite.propTypes = iconPropTypesC5chbmyn.i;
2281
+ }
2282
+ const CloudSatelliteConfig = /*#__PURE__*/React.forwardRef(function CloudSatelliteConfig(_ref88, ref) {
2283
+ let {
2284
+ children,
2285
+ size = 16,
2286
+ ...rest
2287
+ } = _ref88;
2288
+ return /*#__PURE__*/React.createElement(Icon.default, {
2289
+ width: size,
2290
+ height: size,
2291
+ ref: ref,
2292
+ xmlns: "http://www.w3.org/2000/svg",
2293
+ viewBox: "0 0 32 32",
2294
+ fill: "currentColor",
2295
+ ...rest
2296
+ }, _path162 || (_path162 = /*#__PURE__*/React.createElement("path", {
2297
+ d: "M32,26V24H29.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,26,20.1011V18H24v2.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,20.1011,24H18v2h2.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,24,29.8989V32h2V29.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,29.8989,26Zm-7,2a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,25,28Z"
2298
+ })), _circle10 || (_circle10 = /*#__PURE__*/React.createElement("circle", {
2299
+ cx: "7",
2300
+ cy: "20",
2301
+ r: "2"
2302
+ })), _path163 || (_path163 = /*#__PURE__*/React.createElement("path", {
2303
+ 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"
2304
+ })), _circle11 || (_circle11 = /*#__PURE__*/React.createElement("circle", {
2305
+ cx: "21",
2306
+ cy: "12",
2307
+ r: "2"
2308
+ })), _path164 || (_path164 = /*#__PURE__*/React.createElement("path", {
2309
+ 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"
2310
+ })), children);
2311
+ });
2312
+ if (process.env.NODE_ENV !== "production") {
2313
+ CloudSatelliteConfig.propTypes = iconPropTypesC5chbmyn.i;
2314
+ }
2315
+ const CloudSatelliteLink = /*#__PURE__*/React.forwardRef(function CloudSatelliteLink(_ref89, ref) {
2316
+ let {
2317
+ children,
2318
+ size = 16,
2319
+ ...rest
2320
+ } = _ref89;
2321
+ return /*#__PURE__*/React.createElement(Icon.default, {
2322
+ width: size,
2323
+ height: size,
2324
+ ref: ref,
2325
+ xmlns: "http://www.w3.org/2000/svg",
2326
+ viewBox: "0 0 32 32",
2327
+ fill: "currentColor",
2328
+ ...rest
2329
+ }, _path165 || (_path165 = /*#__PURE__*/React.createElement("path", {
2330
+ d: "M30.9763,24.9748l-5.0015,5.0015a3.501,3.501,0,0,1-4.9511-4.9511L22.4383,26.44A1.5,1.5,0,0,0,24.56,28.5617L29.5617,23.56A1.5,1.5,0,0,0,27.44,21.4383l-1.4146-1.4146a3.501,3.501,0,0,1,4.9511,4.9511Z"
2331
+ })), _path166 || (_path166 = /*#__PURE__*/React.createElement("path", {
2332
+ d: "M20.0252,21.0237l-5.0015,5.0015a3.501,3.501,0,0,0,4.9511,4.9511L18.56,29.5617A1.5,1.5,0,0,1,16.4383,27.44L21.44,22.4383A1.5,1.5,0,0,1,23.5617,24.56l1.4146,1.4146a3.501,3.501,0,0,0-4.9511-4.9511Z"
2333
+ })), _circle12 || (_circle12 = /*#__PURE__*/React.createElement("circle", {
2334
+ cx: "7",
2335
+ cy: "20",
2336
+ r: "2"
2337
+ })), _path167 || (_path167 = /*#__PURE__*/React.createElement("path", {
2338
+ 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"
2339
+ })), _circle13 || (_circle13 = /*#__PURE__*/React.createElement("circle", {
2340
+ cx: "21",
2341
+ cy: "12",
2342
+ r: "2"
2343
+ })), _path168 || (_path168 = /*#__PURE__*/React.createElement("path", {
2344
+ 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"
2345
+ })), children);
2346
+ });
2347
+ if (process.env.NODE_ENV !== "production") {
2348
+ CloudSatelliteLink.propTypes = iconPropTypesC5chbmyn.i;
2349
+ }
2350
+ const CloudSatelliteServices = /*#__PURE__*/React.forwardRef(function CloudSatelliteServices(_ref90, ref) {
2351
+ let {
2352
+ children,
2353
+ size = 16,
2354
+ ...rest
2355
+ } = _ref90;
2356
+ return /*#__PURE__*/React.createElement(Icon.default, {
2357
+ width: size,
2358
+ height: size,
2359
+ ref: ref,
2360
+ xmlns: "http://www.w3.org/2000/svg",
2361
+ viewBox: "0 0 32 32",
2362
+ fill: "currentColor",
2363
+ ...rest
2364
+ }, _path169 || (_path169 = /*#__PURE__*/React.createElement("path", {
2365
+ 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"
2366
+ })), _circle14 || (_circle14 = /*#__PURE__*/React.createElement("circle", {
2367
+ cx: "7",
2368
+ cy: "20",
2369
+ r: "2"
2370
+ })), _path170 || (_path170 = /*#__PURE__*/React.createElement("path", {
2371
+ 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"
2372
+ })), _circle15 || (_circle15 = /*#__PURE__*/React.createElement("circle", {
2373
+ cx: "21",
2374
+ cy: "12",
2375
+ r: "2"
2376
+ })), _path171 || (_path171 = /*#__PURE__*/React.createElement("path", {
2377
+ 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"
2378
+ })), children);
2379
+ });
2380
+ if (process.env.NODE_ENV !== "production") {
2381
+ CloudSatelliteServices.propTypes = iconPropTypesC5chbmyn.i;
2382
+ }
2383
+ const CloudServices = /*#__PURE__*/React.forwardRef(function CloudServices(_ref91, ref) {
2384
+ let {
2385
+ children,
2386
+ size = 16,
2387
+ ...rest
2388
+ } = _ref91;
2389
+ return /*#__PURE__*/React.createElement(Icon.default, {
2390
+ width: size,
2391
+ height: size,
2392
+ ref: ref,
2393
+ xmlns: "http://www.w3.org/2000/svg",
2394
+ viewBox: "0 0 32 32",
2395
+ fill: "currentColor",
2396
+ ...rest
2397
+ }, _path172 || (_path172 = /*#__PURE__*/React.createElement("path", {
2398
+ 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"
2399
+ })), _path173 || (_path173 = /*#__PURE__*/React.createElement("path", {
2400
+ 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"
2401
+ })), children);
2402
+ });
2403
+ if (process.env.NODE_ENV !== "production") {
2404
+ CloudServices.propTypes = iconPropTypesC5chbmyn.i;
2405
+ }
2406
+ const Cloudy = /*#__PURE__*/React.forwardRef(function Cloudy(_ref92, ref) {
2407
+ let {
2408
+ children,
2409
+ size = 16,
2410
+ ...rest
2411
+ } = _ref92;
2412
+ return /*#__PURE__*/React.createElement(Icon.default, {
2413
+ width: size,
2414
+ height: size,
2415
+ ref: ref,
2416
+ xmlns: "http://www.w3.org/2000/svg",
2417
+ viewBox: "0 0 32 32",
2418
+ fill: "currentColor",
2419
+ ...rest
2420
+ }, _path174 || (_path174 = /*#__PURE__*/React.createElement("path", {
2421
+ 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"
2422
+ })), children);
2423
+ });
2424
+ if (process.env.NODE_ENV !== "production") {
2425
+ Cloudy.propTypes = iconPropTypesC5chbmyn.i;
2426
+ }
2427
+ const WatsonHealthCobbAngle = /*#__PURE__*/React.forwardRef(function WatsonHealthCobbAngle(_ref93, ref) {
2428
+ let {
2429
+ children,
2430
+ size = 16,
2431
+ ...rest
2432
+ } = _ref93;
2433
+ return /*#__PURE__*/React.createElement(Icon.default, {
2434
+ width: size,
2435
+ height: size,
2436
+ ref: ref,
2437
+ xmlns: "http://www.w3.org/2000/svg",
2438
+ viewBox: "0 0 32 32",
2439
+ fill: "currentColor",
2440
+ ...rest
2441
+ }, _path175 || (_path175 = /*#__PURE__*/React.createElement("path", {
2442
+ d: "M20 17V15a2 2 0 00-2-2H10a2 2 0 00-2 2v2a2 2 0 002 2h8A2 2 0 0020 17zM10 15h8v2H10zM23.42 24.48A2 2 0 0021 23.06l-7.73 2.07a2 2 0 00-1.42 2.44h0l.52 1.93A2 2 0 0014.27 31a3 3 0 00.52-.07l7.73-2.07h0a2 2 0 001.41-2.45zM14.27 29l-.51-1.94L21.48 25 22 26.92zM13.24 6.86L21 8.93h0a2.24 2.24 0 00.51.07 2 2 0 001.94-1.48L24 5.58a2 2 0 00-1.41-2.45L14.79 1.06a2 2 0 00-2.45 1.41h0l-.52 1.93a2 2 0 001.42 2.44zm1-3.86L22 5.07 21.48 7 13.76 4.93zM14 21H16V23H14zM14 9H16V11H14z"
2443
+ })), children);
2444
+ });
2445
+ if (process.env.NODE_ENV !== "production") {
2446
+ WatsonHealthCobbAngle.propTypes = iconPropTypesC5chbmyn.i;
2447
+ }
2448
+ const Code = /*#__PURE__*/React.forwardRef(function Code(_ref94, ref) {
2449
+ let {
2450
+ children,
2451
+ size = 16,
2452
+ ...rest
2453
+ } = _ref94;
2454
+ return /*#__PURE__*/React.createElement(Icon.default, {
2455
+ width: size,
2456
+ height: size,
2457
+ ref: ref,
2458
+ xmlns: "http://www.w3.org/2000/svg",
2459
+ viewBox: "0 0 32 32",
2460
+ fill: "currentColor",
2461
+ ...rest
2462
+ }, _path176 || (_path176 = /*#__PURE__*/React.createElement("path", {
2463
+ d: "M31 16L24 23 22.59 21.59 28.17 16 22.59 10.41 24 9 31 16zM1 16L8 9 9.41 10.41 3.83 16 9.41 21.59 8 23 1 16z"
2464
+ })), _path177 || (_path177 = /*#__PURE__*/React.createElement("path", {
2465
+ d: "M5.91 15H26.080000000000002V17H5.91z",
2466
+ transform: "rotate(-75 15.996 16)"
2467
+ })), children);
2468
+ });
2469
+ if (process.env.NODE_ENV !== "production") {
2470
+ Code.propTypes = iconPropTypesC5chbmyn.i;
2471
+ }
2472
+ const CodeHide = /*#__PURE__*/React.forwardRef(function CodeHide(_ref95, ref) {
2473
+ let {
2474
+ children,
2475
+ size = 16,
2476
+ ...rest
2477
+ } = _ref95;
2478
+ return /*#__PURE__*/React.createElement(Icon.default, {
2479
+ width: size,
2480
+ height: size,
2481
+ ref: ref,
2482
+ xmlns: "http://www.w3.org/2000/svg",
2483
+ viewBox: "0 0 32 32",
2484
+ fill: "currentColor",
2485
+ ...rest
2486
+ }, _path178 || (_path178 = /*#__PURE__*/React.createElement("path", {
2487
+ d: "M17.713 13.471L19.576 6.518 17.645 6 16.08 11.838 17.713 13.471zM24.207 19.965L25.621 21.379 31 16 24 9 22.586 10.414 28.172 16 24.207 19.965zM30 28.586L3.414 2 2 3.414 7.793 9.207 1 16 8 23 9.414 21.586 3.828 16 9.207 10.621 14.884 16.298 12.423 25.482 14.355 26 16.517 17.931 28.586 30 30 28.586z"
2488
+ })), children);
2489
+ });
2490
+ if (process.env.NODE_ENV !== "production") {
2491
+ CodeHide.propTypes = iconPropTypesC5chbmyn.i;
2492
+ }
2493
+ const CodeReference = /*#__PURE__*/React.forwardRef(function CodeReference(_ref96, ref) {
2494
+ let {
2495
+ children,
2496
+ size = 16,
2497
+ ...rest
2498
+ } = _ref96;
2499
+ return /*#__PURE__*/React.createElement(Icon.default, {
2500
+ width: size,
2501
+ height: size,
2502
+ ref: ref,
2503
+ xmlns: "http://www.w3.org/2000/svg",
2504
+ viewBox: "0 0 32 32",
2505
+ fill: "currentColor",
2506
+ ...rest
2507
+ }, _path179 || (_path179 = /*#__PURE__*/React.createElement("path", {
2508
+ d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM30 10L24 4 22.586 5.414 27.172 10 22.586 14.586 24 16 30 10z"
2509
+ })), _path180 || (_path180 = /*#__PURE__*/React.createElement("path", {
2510
+ d: "M8.944 9.001H24.974000000000004V11.001H8.944z",
2511
+ transform: "rotate(-74.995 16.96 10)"
2512
+ })), _path181 || (_path181 = /*#__PURE__*/React.createElement("path", {
2513
+ d: "M4 10L10 4 11.414 5.414 6.828 10 11.414 14.586 10 16 4 10z"
2514
+ })), children);
2515
+ });
2516
+ if (process.env.NODE_ENV !== "production") {
2517
+ CodeReference.propTypes = iconPropTypesC5chbmyn.i;
2518
+ }
2519
+ const CodeBlock = /*#__PURE__*/React.forwardRef(function CodeBlock(_ref97, ref) {
2520
+ let {
2521
+ children,
2522
+ size = 16,
2523
+ ...rest
2524
+ } = _ref97;
2525
+ return /*#__PURE__*/React.createElement(Icon.default, {
2526
+ width: size,
2527
+ height: size,
2528
+ ref: ref,
2529
+ xmlns: "http://www.w3.org/2000/svg",
2530
+ viewBox: "0 0 32 32",
2531
+ fill: "currentColor",
2532
+ ...rest
2533
+ }, _path182 || (_path182 = /*#__PURE__*/React.createElement("path", {
2534
+ strokeWidth: "0",
2535
+ d: "M2 3H10V5H2zM6 9H30V11H6zM6 15H30V17H6zM2 27H10V29H2zM6 21H22V23H6z"
2536
+ })), children);
2537
+ });
2538
+ if (process.env.NODE_ENV !== "production") {
2539
+ CodeBlock.propTypes = iconPropTypesC5chbmyn.i;
2540
+ }
2541
+ const CodeSigningService = /*#__PURE__*/React.forwardRef(function CodeSigningService(_ref98, ref) {
2542
+ let {
2543
+ children,
2544
+ size = 16,
2545
+ ...rest
2546
+ } = _ref98;
2547
+ return /*#__PURE__*/React.createElement(Icon.default, {
2548
+ width: size,
2549
+ height: size,
2550
+ ref: ref,
2551
+ xmlns: "http://www.w3.org/2000/svg",
2552
+ viewBox: "0 0 32 32",
2553
+ fill: "currentColor",
2554
+ ...rest
2555
+ }, _circle16 || (_circle16 = /*#__PURE__*/React.createElement("circle", {
2556
+ cx: "25",
2557
+ cy: "20",
2558
+ r: "1"
2559
+ })), _path183 || (_path183 = /*#__PURE__*/React.createElement("path", {
2560
+ d: "M19.4141 30H15V25.5857l5.0337-5.0337A4.6069 4.6069 0 0120 20a5 5 0 114.4478 4.9663zM17 28h1.5859l5.2061-5.2063.5395.1238a3.0351 3.0351 0 10-2.249-2.2488l.1236.5393L17 26.4143zM6 8H8V16H6zM2 8H4V16H2zM18 8H20V14H18zM14 16H12a2 2 0 01-2-2V10a2 2 0 012-2h2a2 2 0 012 2v4A2 2 0 0114 16zm-2-2h2V10H12zM2 18H4V26H2zM14 18H16V22H14zM10 26H8a2 2 0 01-2-2V20a2 2 0 012-2h2a2 2 0 012 2v4A2 2 0 0110 26zM8 24h2V20H8zM2 2H4V6H2zM14 2H16V6H14zM18 2H20V6H18zM10 6H8A2 2 0 016 4V2H8V4h2V2h2V4A2 2 0 0110 6z"
2561
+ })), children);
2562
+ });
2563
+ if (process.env.NODE_ENV !== "production") {
2564
+ CodeSigningService.propTypes = iconPropTypesC5chbmyn.i;
2565
+ }
2566
+ const Cognitive = /*#__PURE__*/React.forwardRef(function Cognitive(_ref99, ref) {
2567
+ let {
2568
+ children,
2569
+ size = 16,
2570
+ ...rest
2571
+ } = _ref99;
2572
+ return /*#__PURE__*/React.createElement(Icon.default, {
2573
+ width: size,
2574
+ height: size,
2575
+ ref: ref,
2576
+ xmlns: "http://www.w3.org/2000/svg",
2577
+ viewBox: "0 0 32 32",
2578
+ fill: "currentColor",
2579
+ ...rest
2580
+ }, _path184 || (_path184 = /*#__PURE__*/React.createElement("path", {
2581
+ d: "M30,13A11,11,0,0,0,19,2H11a9,9,0,0,0-9,9v3a5,5,0,0,0,5,5H8.1A5,5,0,0,0,13,23h1.38l4,7,1.73-1-4-6.89A2,2,0,0,0,14.38,21H13a3,3,0,0,1,0-6h1V13H13a5,5,0,0,0-4.9,4H7a3,3,0,0,1-3-3V12H6A3,3,0,0,0,9,9V8H7V9a1,1,0,0,1-1,1H4.08A7,7,0,0,1,11,4h6V6a1,1,0,0,1-1,1H14V9h2a3,3,0,0,0,3-3V4a9,9,0,0,1,8.05,5H26a3,3,0,0,0-3,3v1h2V12a1,1,0,0,1,1-1h1.77A8.76,8.76,0,0,1,28,13v1a5,5,0,0,1-5,5H20v2h3a7,7,0,0,0,3-.68V21a3,3,0,0,1-3,3H22v2h1a5,5,0,0,0,5-5V18.89A7,7,0,0,0,30,14Z"
2582
+ })), children);
2583
+ });
2584
+ if (process.env.NODE_ENV !== "production") {
2585
+ Cognitive.propTypes = iconPropTypesC5chbmyn.i;
2586
+ }
2587
+ const Collaborate = /*#__PURE__*/React.forwardRef(function Collaborate(_ref100, ref) {
2588
+ let {
2589
+ children,
2590
+ size = 16,
2591
+ ...rest
2592
+ } = _ref100;
2593
+ return /*#__PURE__*/React.createElement(Icon.default, {
2594
+ width: size,
2595
+ height: size,
2596
+ ref: ref,
2597
+ xmlns: "http://www.w3.org/2000/svg",
2598
+ viewBox: "0 0 32 32",
2599
+ fill: "currentColor",
2600
+ ...rest
2601
+ }, _path185 || (_path185 = /*#__PURE__*/React.createElement("path", {
2602
+ d: "M6 21V20H4v1a7 7 0 007 7h3V26H11A5 5 0 016 21zM24 11v1h2V11a7 7 0 00-7-7H16V6h3A5 5 0 0124 11zM11 11H5a3 3 0 00-3 3v2H4V14a1 1 0 011-1h6a1 1 0 011 1v2h2V14A3 3 0 0011 11zM8 10A4 4 0 104 6 4 4 0 008 10zM8 4A2 2 0 116 6 2 2 0 018 4zM27 25H21a3 3 0 00-3 3v2h2V28a1 1 0 011-1h6a1 1 0 011 1v2h2V28A3 3 0 0027 25zM20 20a4 4 0 104-4A4 4 0 0020 20zm6 0a2 2 0 11-2-2A2 2 0 0126 20z"
2603
+ })), children);
2604
+ });
2605
+ if (process.env.NODE_ENV !== "production") {
2606
+ Collaborate.propTypes = iconPropTypesC5chbmyn.i;
2607
+ }
2608
+ const CollapseAll = /*#__PURE__*/React.forwardRef(function CollapseAll(_ref101, ref) {
2609
+ let {
2610
+ children,
2611
+ size = 16,
2612
+ ...rest
2613
+ } = _ref101;
2614
+ return /*#__PURE__*/React.createElement(Icon.default, {
2615
+ width: size,
2616
+ height: size,
2617
+ ref: ref,
2618
+ xmlns: "http://www.w3.org/2000/svg",
2619
+ viewBox: "0 0 32 32",
2620
+ fill: "currentColor",
2621
+ ...rest
2622
+ }, _path186 || (_path186 = /*#__PURE__*/React.createElement("path", {
2623
+ d: "M30,15H28V7H13V5H28a2.0023,2.0023,0,0,1,2,2Z"
2624
+ })), _path187 || (_path187 = /*#__PURE__*/React.createElement("path", {
2625
+ d: "M25,20H23V12H8V10H23a2.0023,2.0023,0,0,1,2,2Z"
2626
+ })), _path188 || (_path188 = /*#__PURE__*/React.createElement("path", {
2627
+ d: "M18,27H4a2.0023,2.0023,0,0,1-2-2V17a2.0023,2.0023,0,0,1,2-2H18a2.0023,2.0023,0,0,1,2,2v8A2.0023,2.0023,0,0,1,18,27ZM4,17v8H18.0012L18,17Z"
2628
+ })), children);
2629
+ });
2630
+ if (process.env.NODE_ENV !== "production") {
2631
+ CollapseAll.propTypes = iconPropTypesC5chbmyn.i;
2632
+ }
2633
+ const CollapseCategories = /*#__PURE__*/React.forwardRef(function CollapseCategories(_ref102, ref) {
2634
+ let {
2635
+ children,
2636
+ size = 16,
2637
+ ...rest
2638
+ } = _ref102;
2639
+ return /*#__PURE__*/React.createElement(Icon.default, {
2640
+ width: size,
2641
+ height: size,
2642
+ ref: ref,
2643
+ xmlns: "http://www.w3.org/2000/svg",
2644
+ viewBox: "0 0 32 32",
2645
+ fill: "currentColor",
2646
+ ...rest
2647
+ }, _path189 || (_path189 = /*#__PURE__*/React.createElement("path", {
2648
+ d: "M14 25H28V27H14zM7.17 26L4.59 28.58 6 30 10 26 6 22 4.58 23.41 7.17 26zM14 15H28V17H14zM7.17 16L4.59 18.58 6 20 10 16 6 12 4.58 13.41 7.17 16zM14 5H28V7H14zM7.17 6L4.59 8.58 6 10 10 6 6 2 4.58 3.41 7.17 6z"
2649
+ })), children);
2650
+ });
2651
+ if (process.env.NODE_ENV !== "production") {
2652
+ CollapseCategories.propTypes = iconPropTypesC5chbmyn.i;
2653
+ }
2654
+ const ColorPalette = /*#__PURE__*/React.forwardRef(function ColorPalette(_ref103, ref) {
2655
+ let {
2656
+ children,
2657
+ size = 16,
2658
+ ...rest
2659
+ } = _ref103;
2660
+ return /*#__PURE__*/React.createElement(Icon.default, {
2661
+ width: size,
2662
+ height: size,
2663
+ ref: ref,
2664
+ xmlns: "http://www.w3.org/2000/svg",
2665
+ viewBox: "0 0 32 32",
2666
+ fill: "currentColor",
2667
+ ...rest
2668
+ }, _circle17 || (_circle17 = /*#__PURE__*/React.createElement("circle", {
2669
+ cx: "10",
2670
+ cy: "12",
2671
+ r: "2"
2672
+ })), _circle18 || (_circle18 = /*#__PURE__*/React.createElement("circle", {
2673
+ cx: "16",
2674
+ cy: "9",
2675
+ r: "2"
2676
+ })), _circle19 || (_circle19 = /*#__PURE__*/React.createElement("circle", {
2677
+ cx: "22",
2678
+ cy: "12",
2679
+ r: "2"
2680
+ })), _circle20 || (_circle20 = /*#__PURE__*/React.createElement("circle", {
2681
+ cx: "23",
2682
+ cy: "18",
2683
+ r: "2"
2684
+ })), _circle21 || (_circle21 = /*#__PURE__*/React.createElement("circle", {
2685
+ cx: "19",
2686
+ cy: "23",
2687
+ r: "2"
2688
+ })), _path190 || (_path190 = /*#__PURE__*/React.createElement("path", {
2689
+ d: "M16.54,2A14,14,0,0,0,2,16a4.82,4.82,0,0,0,6.09,4.65l1.12-.31A3,3,0,0,1,13,23.24V27a3,3,0,0,0,3,3A14,14,0,0,0,30,15.46,14.05,14.05,0,0,0,16.54,2Zm8.11,22.31A11.93,11.93,0,0,1,16,28a1,1,0,0,1-1-1V23.24a5,5,0,0,0-5-5,5.07,5.07,0,0,0-1.33.18l-1.12.31A2.82,2.82,0,0,1,4,16,12,12,0,0,1,16.47,4,12.18,12.18,0,0,1,28,15.53,11.89,11.89,0,0,1,24.65,24.32Z"
2690
+ })), children);
2691
+ });
2692
+ if (process.env.NODE_ENV !== "production") {
2693
+ ColorPalette.propTypes = iconPropTypesC5chbmyn.i;
2694
+ }
2695
+ const ColorSwitch = /*#__PURE__*/React.forwardRef(function ColorSwitch(_ref104, ref) {
2696
+ let {
2697
+ children,
2698
+ size = 16,
2699
+ ...rest
2700
+ } = _ref104;
2701
+ return /*#__PURE__*/React.createElement(Icon.default, {
2702
+ width: size,
2703
+ height: size,
2704
+ ref: ref,
2705
+ xmlns: "http://www.w3.org/2000/svg",
2706
+ viewBox: "0 0 32 32",
2707
+ fill: "currentColor",
2708
+ ...rest
2709
+ }, _path191 || (_path191 = /*#__PURE__*/React.createElement("path", {
2710
+ d: "M26,4H6A2.0025,2.0025,0,0,0,4,6V26a2.0025,2.0025,0,0,0,2,2H26a2.0025,2.0025,0,0,0,2-2V6A2.0025,2.0025,0,0,0,26,4ZM6,26,26,6V26Z"
2711
+ })), children);
2712
+ });
2713
+ if (process.env.NODE_ENV !== "production") {
2714
+ ColorSwitch.propTypes = iconPropTypesC5chbmyn.i;
2715
+ }
2716
+ const Column = /*#__PURE__*/React.forwardRef(function Column(_ref105, ref) {
2717
+ let {
2718
+ children,
2719
+ size = 16,
2720
+ ...rest
2721
+ } = _ref105;
2722
+ return /*#__PURE__*/React.createElement(Icon.default, {
2723
+ width: size,
2724
+ height: size,
2725
+ ref: ref,
2726
+ xmlns: "http://www.w3.org/2000/svg",
2727
+ viewBox: "0 0 32 32",
2728
+ fill: "currentColor",
2729
+ ...rest
2730
+ }, _path192 || (_path192 = /*#__PURE__*/React.createElement("path", {
2731
+ d: "M24 4H26V28H24zM18 6V26H14V6h4m0-2H14a2 2 0 00-2 2V26a2 2 0 002 2h4a2 2 0 002-2V6a2 2 0 00-2-2zM6 4H8V28H6z"
2732
+ })), children);
2733
+ });
2734
+ if (process.env.NODE_ENV !== "production") {
2735
+ Column.propTypes = iconPropTypesC5chbmyn.i;
2736
+ }
2737
+ const ColumnDelete = /*#__PURE__*/React.forwardRef(function ColumnDelete(_ref106, ref) {
2738
+ let {
2739
+ children,
2740
+ size = 16,
2741
+ ...rest
2742
+ } = _ref106;
2743
+ return /*#__PURE__*/React.createElement(Icon.default, {
2744
+ width: size,
2745
+ height: size,
2746
+ ref: ref,
2747
+ xmlns: "http://www.w3.org/2000/svg",
2748
+ viewBox: "0 0 32 32",
2749
+ fill: "currentColor",
2750
+ ...rest
2751
+ }, _path193 || (_path193 = /*#__PURE__*/React.createElement("path", {
2752
+ d: "M30 3.41L28.59 2 25 5.59 21.41 2 20 3.41 23.59 7 20 10.59 21.41 12 25 8.41 28.59 12 30 10.59 26.41 7 30 3.41z"
2753
+ })), _path194 || (_path194 = /*#__PURE__*/React.createElement("path", {
2754
+ d: "M24 14V28H18V6H16V28a2.0023 2.0023 0 002 2h6a2.0023 2.0023 0 002-2V14zM10 30H4a2.0021 2.0021 0 01-2-2V8A2.0021 2.0021 0 014 6h6a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0110 30zM4 8V28h6V8z"
2755
+ })), children);
2756
+ });
2757
+ if (process.env.NODE_ENV !== "production") {
2758
+ ColumnDelete.propTypes = iconPropTypesC5chbmyn.i;
2759
+ }
2760
+ const ColumnInsert = /*#__PURE__*/React.forwardRef(function ColumnInsert(_ref107, ref) {
2761
+ let {
2762
+ children,
2763
+ size = 16,
2764
+ ...rest
2765
+ } = _ref107;
2766
+ return /*#__PURE__*/React.createElement(Icon.default, {
2767
+ width: size,
2768
+ height: size,
2769
+ ref: ref,
2770
+ xmlns: "http://www.w3.org/2000/svg",
2771
+ viewBox: "0 0 32 32",
2772
+ fill: "currentColor",
2773
+ ...rest
2774
+ }, _path195 || (_path195 = /*#__PURE__*/React.createElement("path", {
2775
+ d: "M28 30H22a2.0021 2.0021 0 01-2-2V10a2.0021 2.0021 0 012-2h6a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0128 30zM22 10V28h6V10zM16 9L21.586 3.414 20.172 2 16 6.172 11.828 2 10.414 3.414 16 9zM10 30H4a2.0021 2.0021 0 01-2-2V10A2.0021 2.0021 0 014 8h6a2.0021 2.0021 0 012 2V28A2.0021 2.0021 0 0110 30zM4 10V28h6V10z"
2776
+ })), children);
2777
+ });
2778
+ if (process.env.NODE_ENV !== "production") {
2779
+ ColumnInsert.propTypes = iconPropTypesC5chbmyn.i;
2780
+ }
2781
+ const ColumnDependency = /*#__PURE__*/React.forwardRef(function ColumnDependency(_ref108, ref) {
2782
+ let {
2783
+ children,
2784
+ size = 16,
2785
+ ...rest
2786
+ } = _ref108;
2787
+ return /*#__PURE__*/React.createElement(Icon.default, {
2788
+ width: size,
2789
+ height: size,
2790
+ ref: ref,
2791
+ xmlns: "http://www.w3.org/2000/svg",
2792
+ viewBox: "0 0 32 32",
2793
+ fill: "currentColor",
2794
+ ...rest
2795
+ }, _path196 || (_path196 = /*#__PURE__*/React.createElement("path", {
2796
+ d: "M30,10V2H22V5H17a2.0023,2.0023,0,0,0-2,2v8H10V12H2v8h8V17h5v8a2.0023,2.0023,0,0,0,2,2h5v3h8V22H22v3H17V17h5v3h8V12H22v3H17V7h5v3ZM8,18H4V14H8Zm16,6h4v4H24Zm0-10h4v4H24ZM24,4h4V8H24Z"
2797
+ })), children);
2798
+ });
2799
+ if (process.env.NODE_ENV !== "production") {
2800
+ ColumnDependency.propTypes = iconPropTypesC5chbmyn.i;
2801
+ }
2802
+ const Comments = /*#__PURE__*/React.forwardRef(function Comments(_ref109, ref) {
2803
+ let {
2804
+ children,
2805
+ size = 16,
2806
+ ...rest
2807
+ } = _ref109;
2808
+ return /*#__PURE__*/React.createElement(Icon.default, {
2809
+ width: size,
2810
+ height: size,
2811
+ ref: ref,
2812
+ xmlns: "http://www.w3.org/2000/svg",
2813
+ viewBox: "0 0 32 32",
2814
+ fill: "currentColor",
2815
+ ...rest
2816
+ }, _path197 || (_path197 = /*#__PURE__*/React.createElement("path", {
2817
+ d: "M29.3163,9.4912l-8.004-6.997c-.3645-.3186-.8322-.4942-1.3163-.4942H4c-1.1046,0-2,.8954-2,2v24c0,1.1046.8954,2,2,2h24c1.1046,0,2-.8954,2-2V10.997c0-.577-.2493-1.126-.6837-1.5058ZM28,28H4V4h14v7c0,1.1046.8954,2,2,2h8v15ZM20,11v-7l8,7h-8ZM6,20.084c0-4.041,2.0122-6.2939,5.1763-6.2939,2.1499,0,3.5425.9121,4.3853,2.7686l-1.9434,1.0322c-.3438-1.0664-1.1006-1.7881-2.4419-1.7881-1.6851,0-2.7686,1.2207-2.7686,3.2666v1.8916c0,2.0645,1.0835,3.2334,2.7686,3.2334,1.3584,0,2.2012-.8252,2.5967-1.9092l1.8403,1.084c-.8599,1.7881-2.2871,2.8369-4.437,2.8369-3.1641,0-5.1763-2.0801-5.1763-6.1221ZM16.8193,21.4941c0-2.8711,1.5991-4.6768,4.1611-4.6768,2.5796,0,4.1792,1.8057,4.1792,4.6768,0,2.8896-1.5996,4.7119-4.1792,4.7119-2.562,0-4.1611-1.8223-4.1611-4.7119ZM22.855,22.3369v-1.668c0-1.3408-.7222-2.0811-1.8745-2.0811-1.1348,0-1.8569.7402-1.8569,2.0811v1.668c0,1.3584.7222,2.0986,1.8569,2.0986,1.1523,0,1.8745-.7402,1.8745-2.0986Z"
2818
+ })), children);
2819
+ });
2820
+ if (process.env.NODE_ENV !== "production") {
2821
+ Comments.propTypes = iconPropTypesC5chbmyn.i;
2822
+ }
2823
+ const Commit = /*#__PURE__*/React.forwardRef(function Commit(_ref110, ref) {
2824
+ let {
2825
+ children,
2826
+ size = 16,
2827
+ ...rest
2828
+ } = _ref110;
2829
+ return /*#__PURE__*/React.createElement(Icon.default, {
2830
+ width: size,
2831
+ height: size,
2832
+ ref: ref,
2833
+ xmlns: "http://www.w3.org/2000/svg",
2834
+ viewBox: "0 0 32 32",
2835
+ fill: "currentColor",
2836
+ ...rest
2837
+ }, _path198 || (_path198 = /*#__PURE__*/React.createElement("path", {
2838
+ d: "M30,15H21.91A5.9925,5.9925,0,0,0,10.09,15H2v2h8.09A5.9925,5.9925,0,0,0,21.91,17H30ZM16,20a4,4,0,1,1,4-4A4.0045,4.0045,0,0,1,16,20Z"
2839
+ })), children);
2840
+ });
2841
+ if (process.env.NODE_ENV !== "production") {
2842
+ Commit.propTypes = iconPropTypesC5chbmyn.i;
2843
+ }
2844
+ const CommitAlt = /*#__PURE__*/React.forwardRef(function CommitAlt(_ref111, ref) {
2845
+ let {
2846
+ children,
2847
+ size = 16,
2848
+ ...rest
2849
+ } = _ref111;
2850
+ return /*#__PURE__*/React.createElement(Icon.default, {
2851
+ width: size,
2852
+ height: size,
2853
+ ref: ref,
2854
+ xmlns: "http://www.w3.org/2000/svg",
2855
+ viewBox: "0 0 32 32",
2856
+ fill: "currentColor",
2857
+ ...rest
2858
+ }, _path199 || (_path199 = /*#__PURE__*/React.createElement("path", {
2859
+ d: "M17,30v-8.09c3.264-.5473,5.4663-3.6369,4.9191-6.9009-.4227-2.521-2.398-4.4964-4.9191-4.9191V2h-2v8.09c-3.264.5473-5.4663,3.6369-4.9191,6.9009.4227,2.521,2.398,4.4964,4.9191,4.9191v8.09h2ZM12,16c0-2.2091,1.7909-4,4-4s4,1.7909,4,4-1.7909,4-4,4c-2.2081-.0025-3.9975-1.7919-4-4Z"
2860
+ })), children);
2861
+ });
2862
+ if (process.env.NODE_ENV !== "production") {
2863
+ CommitAlt.propTypes = iconPropTypesC5chbmyn.i;
2864
+ }
2865
+ const CommunicationUnified = /*#__PURE__*/React.forwardRef(function CommunicationUnified(_ref112, ref) {
2866
+ let {
2867
+ children,
2868
+ size = 16,
2869
+ ...rest
2870
+ } = _ref112;
2871
+ return /*#__PURE__*/React.createElement(Icon.default, {
2872
+ width: size,
2873
+ height: size,
2874
+ ref: ref,
2875
+ xmlns: "http://www.w3.org/2000/svg",
2876
+ viewBox: "0 0 32 32",
2877
+ fill: "currentColor",
2878
+ ...rest
2879
+ }, _path200 || (_path200 = /*#__PURE__*/React.createElement("path", {
2880
+ d: "M28 17H18a2.0025 2.0025 0 00-2 2v6a2.0025 2.0025 0 002 2h4V25H18V19H28v6H25.4648l-2.5937 3.8906L24.5352 30l2-3H28a2.0025 2.0025 0 002-2V19A2.0025 2.0025 0 0028 17zM8.6667 24.1086l.8614-.8615a.8334.8334 0 01.8988-.1844l1.0493.42A.8334.8334 0 0112 24.2561v1.9082a.8334.8334 0 01-.8786.8341c-7.3546-.4578-8.84-6.6863-9.1158-9.0723A.8316.8316 0 012.8343 17H4.7085a.8335.8335 0 01.7737.5238l.42 1.0493a.8332.8332 0 01-.1845.8988l-.8614.8614A4.5267 4.5267 0 008.6667 24.1086zM21 9H28V11H21zM21 5H30V7H21zM17 6L14 8.2V6a2.0024 2.0024 0 00-2-2H4A2.0024 2.0024 0 002 6v6a2.0024 2.0024 0 002 2h8a2.0024 2.0024 0 002-2V9.8L17 12zM4 12V6h8v6z"
2881
+ })), children);
2882
+ });
2883
+ if (process.env.NODE_ENV !== "production") {
2884
+ CommunicationUnified.propTypes = iconPropTypesC5chbmyn.i;
2885
+ }
2886
+ const Compare = /*#__PURE__*/React.forwardRef(function Compare(_ref113, ref) {
2887
+ let {
2888
+ children,
2889
+ size = 16,
2890
+ ...rest
2891
+ } = _ref113;
2892
+ return /*#__PURE__*/React.createElement(Icon.default, {
2893
+ width: size,
2894
+ height: size,
2895
+ ref: ref,
2896
+ xmlns: "http://www.w3.org/2000/svg",
2897
+ viewBox: "0 0 32 32",
2898
+ fill: "currentColor",
2899
+ ...rest
2900
+ }, _path201 || (_path201 = /*#__PURE__*/React.createElement("path", {
2901
+ d: "M28,6H18V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V24a2,2,0,0,0,2,2H14v2a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8A2,2,0,0,0,28,6ZM4,15h6.17L7.59,17.59,9,19l5-5L9,9,7.59,10.41,10.17,13H4V4H16V24H4ZM16,28V26a2,2,0,0,0,2-2V8H28v9H21.83l2.58-2.59L23,13l-5,5,5,5,1.41-1.41L21.83,19H28v9Z"
2902
+ })), children);
2903
+ });
2904
+ if (process.env.NODE_ENV !== "production") {
2905
+ Compare.propTypes = iconPropTypesC5chbmyn.i;
2906
+ }
2907
+ const Compass = /*#__PURE__*/React.forwardRef(function Compass(_ref114, ref) {
2908
+ let {
2909
+ children,
2910
+ size = 16,
2911
+ ...rest
2912
+ } = _ref114;
2913
+ return /*#__PURE__*/React.createElement(Icon.default, {
2914
+ width: size,
2915
+ height: size,
2916
+ ref: ref,
2917
+ xmlns: "http://www.w3.org/2000/svg",
2918
+ viewBox: "0 0 32 32",
2919
+ fill: "currentColor",
2920
+ ...rest
2921
+ }, _path202 || (_path202 = /*#__PURE__*/React.createElement("path", {
2922
+ d: "M16,4A12,12,0,1,1,4,16,12,12,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z"
2923
+ })), _path203 || (_path203 = /*#__PURE__*/React.createElement("path", {
2924
+ d: "M23,10.41,21.59,9l-4.3,4.3a3,3,0,0,0-4,4L9,21.59,10.41,23l4.3-4.3a3,3,0,0,0,4-4ZM17,16a1,1,0,1,1-1-1A1,1,0,0,1,17,16Z"
2925
+ })), _circle22 || (_circle22 = /*#__PURE__*/React.createElement("circle", {
2926
+ cx: "16",
2927
+ cy: "7.5",
2928
+ r: "1.5"
2929
+ })), children);
2930
+ });
2931
+ if (process.env.NODE_ENV !== "production") {
2932
+ Compass.propTypes = iconPropTypesC5chbmyn.i;
2933
+ }
2934
+ const QComposerEdit = /*#__PURE__*/React.forwardRef(function QComposerEdit(_ref115, ref) {
2935
+ let {
2936
+ children,
2937
+ size = 16,
2938
+ ...rest
2939
+ } = _ref115;
2940
+ return /*#__PURE__*/React.createElement(Icon.default, {
2941
+ width: size,
2942
+ height: size,
2943
+ ref: ref,
2944
+ xmlns: "http://www.w3.org/2000/svg",
2945
+ viewBox: "0 0 32 32",
2946
+ fill: "currentColor",
2947
+ ...rest
2948
+ }, _path204 || (_path204 = /*#__PURE__*/React.createElement("path", {
2949
+ d: "M25.82,10H30V8H25.82a3,3,0,0,0-5.64,0H13V5H5V8H2v2H5v3h8V10h7.18A3,3,0,0,0,22,11.82v7.32A4,4,0,0,0,19.14,22H2v2H19.14a4,4,0,0,0,7.72,0H30V22H26.86A4,4,0,0,0,24,19.14V11.82A3,3,0,0,0,25.82,10ZM11,11H7V7h4ZM25,23a2,2,0,1,1-2-2A2,2,0,0,1,25,23Z"
2950
+ })), children);
2951
+ });
2952
+ if (process.env.NODE_ENV !== "production") {
2953
+ QComposerEdit.propTypes = iconPropTypesC5chbmyn.i;
2954
+ }
2955
+ const Concept = /*#__PURE__*/React.forwardRef(function Concept(_ref116, ref) {
2956
+ let {
2957
+ children,
2958
+ size = 16,
2959
+ ...rest
2960
+ } = _ref116;
2961
+ return /*#__PURE__*/React.createElement(Icon.default, {
2962
+ width: size,
2963
+ height: size,
2964
+ ref: ref,
2965
+ xmlns: "http://www.w3.org/2000/svg",
2966
+ viewBox: "0 0 32 32",
2967
+ fill: "currentColor",
2968
+ ...rest
2969
+ }, _path205 || (_path205 = /*#__PURE__*/React.createElement("path", {
2970
+ d: "M20.8851,19.4711a5.9609,5.9609,0,0,0,0-6.9422L23,10.4141l1.293,1.2929a.9995.9995,0,0,0,1.414,0l4-4a.9994.9994,0,0,0,0-1.414l-4-4a.9994.9994,0,0,0-1.414,0l-4,4a.9994.9994,0,0,0,0,1.414L21.5859,9l-2.1148,2.1149a5.9609,5.9609,0,0,0-6.9422,0L10,8.5859V2H2v8H8.5859l2.529,2.5289a5.9609,5.9609,0,0,0,0,6.9422L9,21.5859,7.707,20.293a.9994.9994,0,0,0-1.414,0l-4,4a.9994.9994,0,0,0,0,1.414l4,4a.9995.9995,0,0,0,1.414,0l4-4a.9994.9994,0,0,0,0-1.414L10.4141,23l2.1148-2.1149a5.9609,5.9609,0,0,0,6.9422,0L22,23.4141V30h8V22H23.4141ZM25,4.4141,27.5859,7,25,9.5859,22.4141,7ZM7,27.5859,4.4141,25,7,22.4141,9.5859,25ZM8,8H4V4H8Zm4,8a4,4,0,1,1,4,4A4.0045,4.0045,0,0,1,12,16Zm12,8h4v4H24Z"
2971
+ })), children);
2972
+ });
2973
+ if (process.env.NODE_ENV !== "production") {
2974
+ Concept.propTypes = iconPropTypesC5chbmyn.i;
2975
+ }
2976
+ const ConditionPoint = /*#__PURE__*/React.forwardRef(function ConditionPoint(_ref117, ref) {
2977
+ let {
2978
+ children,
2979
+ size = 16,
2980
+ ...rest
2981
+ } = _ref117;
2982
+ return /*#__PURE__*/React.createElement(Icon.default, {
2983
+ width: size,
2984
+ height: size,
2985
+ ref: ref,
2986
+ xmlns: "http://www.w3.org/2000/svg",
2987
+ viewBox: "0 0 32 32",
2988
+ fill: "currentColor",
2989
+ ...rest
2990
+ }, _path206 || (_path206 = /*#__PURE__*/React.createElement("path", {
2991
+ d: "M10.343 10.343H21.657V21.657H10.343z",
2992
+ transform: "rotate(-45 16 16)"
2993
+ })), _path207 || (_path207 = /*#__PURE__*/React.createElement("path", {
2994
+ d: "M29.3906,14.5269,17.4731,2.6094a2.0852,2.0852,0,0,0-2.9462,0L2.6094,14.5269a2.0852,2.0852,0,0,0,0,2.9462L14.5269,29.3906a2.0852,2.0852,0,0,0,2.9462,0L29.3906,17.4731a2.0852,2.0852,0,0,0,0-2.9462ZM16,28.0356,3.9646,16,16,3.9644,28.0356,16Z"
2995
+ })), children);
2996
+ });
2997
+ if (process.env.NODE_ENV !== "production") {
2998
+ ConditionPoint.propTypes = iconPropTypesC5chbmyn.i;
2999
+ }
3000
+ const ConditionWaitPoint = /*#__PURE__*/React.forwardRef(function ConditionWaitPoint(_ref118, ref) {
3001
+ let {
3002
+ children,
3003
+ size = 16,
3004
+ ...rest
3005
+ } = _ref118;
3006
+ return /*#__PURE__*/React.createElement(Icon.default, {
3007
+ width: size,
3008
+ height: size,
3009
+ ref: ref,
3010
+ xmlns: "http://www.w3.org/2000/svg",
3011
+ viewBox: "0 0 32 32",
3012
+ fill: "currentColor",
3013
+ ...rest
3014
+ }, _path208 || (_path208 = /*#__PURE__*/React.createElement("path", {
3015
+ d: "M10.343 10.343H21.657V21.657H10.343z",
3016
+ transform: "rotate(-45 16 16)"
3017
+ })), _path209 || (_path209 = /*#__PURE__*/React.createElement("path", {
3018
+ d: "M16,4A12,12,0,1,1,4,16,12.0136,12.0136,0,0,1,16,4m0-2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Z"
3019
+ })), children);
3020
+ });
3021
+ if (process.env.NODE_ENV !== "production") {
3022
+ ConditionWaitPoint.propTypes = iconPropTypesC5chbmyn.i;
3023
+ }
3024
+ const Connect = /*#__PURE__*/React.forwardRef(function Connect(_ref119, ref) {
3025
+ let {
3026
+ children,
3027
+ size = 16,
3028
+ ...rest
3029
+ } = _ref119;
3030
+ return /*#__PURE__*/React.createElement(Icon.default, {
3031
+ width: size,
3032
+ height: size,
3033
+ ref: ref,
3034
+ xmlns: "http://www.w3.org/2000/svg",
3035
+ viewBox: "0 0 32 32",
3036
+ fill: "currentColor",
3037
+ ...rest
3038
+ }, _path210 || (_path210 = /*#__PURE__*/React.createElement("path", {
3039
+ d: "M23,16a7,7,0,0,0-4.18,1.39L14.6,13.17A6.86,6.86,0,0,0,16,9a7,7,0,1,0-2.81,5.59l4.21,4.22A7,7,0,1,0,23,16ZM4,9a5,5,0,1,1,5,5A5,5,0,0,1,4,9Z",
3040
+ transform: "translate(0 .01)"
3041
+ })), children);
3042
+ });
3043
+ if (process.env.NODE_ENV !== "production") {
3044
+ Connect.propTypes = iconPropTypesC5chbmyn.i;
3045
+ }
3046
+ const ConnectRecursive = /*#__PURE__*/React.forwardRef(function ConnectRecursive(_ref120, ref) {
3047
+ let {
3048
+ children,
3049
+ size = 16,
3050
+ ...rest
3051
+ } = _ref120;
3052
+ return /*#__PURE__*/React.createElement(Icon.default, {
3053
+ width: size,
3054
+ height: size,
3055
+ ref: ref,
3056
+ xmlns: "http://www.w3.org/2000/svg",
3057
+ viewBox: "0 0 32 32",
3058
+ fill: "currentColor",
3059
+ ...rest
3060
+ }, _path211 || (_path211 = /*#__PURE__*/React.createElement("path", {
3061
+ d: "M28,7H13.8281l3.586-3.5859L16,2,10,8l6,6,1.4141-1.4141L13.8281,9H28V20H11.8989A5.0145,5.0145,0,0,0,8,16.1011V2H6V16.1011a5,5,0,0,0,0,9.7978V30H8V25.8989A5.0145,5.0145,0,0,0,11.8989,22H28a2.0023,2.0023,0,0,0,2-2V9A2.0023,2.0023,0,0,0,28,7ZM7,24a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,7,24Z"
3062
+ })), children);
3063
+ });
3064
+ if (process.env.NODE_ENV !== "production") {
3065
+ ConnectRecursive.propTypes = iconPropTypesC5chbmyn.i;
3066
+ }
3067
+ const ConnectReference = /*#__PURE__*/React.forwardRef(function ConnectReference(_ref121, ref) {
3068
+ let {
3069
+ children,
3070
+ size = 16,
3071
+ ...rest
3072
+ } = _ref121;
3073
+ return /*#__PURE__*/React.createElement(Icon.default, {
3074
+ width: size,
3075
+ height: size,
3076
+ ref: ref,
3077
+ xmlns: "http://www.w3.org/2000/svg",
3078
+ viewBox: "0 0 32 32",
3079
+ fill: "currentColor",
3080
+ ...rest
3081
+ }, _path212 || (_path212 = /*#__PURE__*/React.createElement("path", {
3082
+ d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"
3083
+ })), _path213 || (_path213 = /*#__PURE__*/React.createElement("path", {
3084
+ d: "M23,16c-1.5696,0-3.0124,.5159-4.1813,1.3919l-4.2173-4.2174c.876-1.1689,1.3986-2.6048,1.3986-4.1745,0-3.8599-3.1406-7-7-7S2,5.1401,2,9s3.1406,7,7,7c1.5696,0,3.0184-.5355,4.1873-1.4114l4.2173,4.2174c-.8759,1.1689-1.4046,2.6243-1.4046,4.194,0,3.8599,3.1406,7,7,7s7-3.1401,7-7-3.1406-7-7-7ZM4,9c0-2.7568,2.2432-5,5-5s5,2.2432,5,5-2.2432,5-5,5-5-2.2432-5-5Z"
3085
+ })), children);
3086
+ });
3087
+ if (process.env.NODE_ENV !== "production") {
3088
+ ConnectReference.propTypes = iconPropTypesC5chbmyn.i;
3089
+ }
3090
+ const ConnectSource = /*#__PURE__*/React.forwardRef(function ConnectSource(_ref122, ref) {
3091
+ let {
3092
+ children,
3093
+ size = 16,
3094
+ ...rest
3095
+ } = _ref122;
3096
+ return /*#__PURE__*/React.createElement(Icon.default, {
3097
+ width: size,
3098
+ height: size,
3099
+ ref: ref,
3100
+ xmlns: "http://www.w3.org/2000/svg",
3101
+ viewBox: "0 0 32 32",
3102
+ fill: "currentColor",
3103
+ ...rest
3104
+ }, _path214 || (_path214 = /*#__PURE__*/React.createElement("path", {
3105
+ d: "M24,10l-1.4141,1.4141L26.1719,15H11.8989A5.0145,5.0145,0,0,0,8,11.1011V2H6v9.1011a5,5,0,0,0,0,9.7978V30H8V20.8989A5.0145,5.0145,0,0,0,11.8989,17h14.273l-3.586,3.5859L24,22l6-6ZM7,19a3,3,0,1,1,3-3A3.0033,3.0033,0,0,1,7,19Z"
3106
+ })), children);
3107
+ });
3108
+ if (process.env.NODE_ENV !== "production") {
3109
+ ConnectSource.propTypes = iconPropTypesC5chbmyn.i;
3110
+ }
3111
+ const ConnectTarget = /*#__PURE__*/React.forwardRef(function ConnectTarget(_ref123, ref) {
3112
+ let {
3113
+ children,
3114
+ size = 16,
3115
+ ...rest
3116
+ } = _ref123;
3117
+ return /*#__PURE__*/React.createElement(Icon.default, {
3118
+ width: size,
3119
+ height: size,
3120
+ ref: ref,
3121
+ xmlns: "http://www.w3.org/2000/svg",
3122
+ viewBox: "0 0 32 32",
3123
+ fill: "currentColor",
3124
+ ...rest
3125
+ }, _path215 || (_path215 = /*#__PURE__*/React.createElement("path", {
3126
+ d: "M28 2H30V30H28zM20 10l-1.4141 1.4141L22.1719 15H11.8989a5 5 0 100 2h10.273l-3.586 3.5859L20 22l6-6zM7 19a3 3 0 113-3A3.0033 3.0033 0 017 19z"
3127
+ })), children);
3128
+ });
3129
+ if (process.env.NODE_ENV !== "production") {
3130
+ ConnectTarget.propTypes = iconPropTypesC5chbmyn.i;
3131
+ }
3132
+ const ConnectionReceive = /*#__PURE__*/React.forwardRef(function ConnectionReceive(_ref124, ref) {
3133
+ let {
3134
+ children,
3135
+ size = 16,
3136
+ ...rest
3137
+ } = _ref124;
3138
+ return /*#__PURE__*/React.createElement(Icon.default, {
3139
+ width: size,
3140
+ height: size,
3141
+ ref: ref,
3142
+ xmlns: "http://www.w3.org/2000/svg",
3143
+ viewBox: "0 0 32 32",
3144
+ fill: "currentColor",
3145
+ ...rest
3146
+ }, _path216 || (_path216 = /*#__PURE__*/React.createElement("path", {
3147
+ d: "M8 8H10V12H8zM8 14H10V18H8zM14 8H16V12H14zM14 14H16V18H14zM8 20H10V24H8zM14 20H16V24H14zM30 14L21.83 14 24.41 16.59 23 18 18 13 23 8 24.41 9.41 21.83 12 30 12 30 14z"
3148
+ })), _path217 || (_path217 = /*#__PURE__*/React.createElement("path", {
3149
+ d: "M28,20v8H22V20H20v8H4V4H20V6h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30V20Z"
3150
+ })), children);
3151
+ });
3152
+ if (process.env.NODE_ENV !== "production") {
3153
+ ConnectionReceive.propTypes = iconPropTypesC5chbmyn.i;
3154
+ }
3155
+ const ConnectionSend = /*#__PURE__*/React.forwardRef(function ConnectionSend(_ref125, ref) {
3156
+ let {
3157
+ children,
3158
+ size = 16,
3159
+ ...rest
3160
+ } = _ref125;
3161
+ return /*#__PURE__*/React.createElement(Icon.default, {
3162
+ width: size,
3163
+ height: size,
3164
+ ref: ref,
3165
+ xmlns: "http://www.w3.org/2000/svg",
3166
+ viewBox: "0 0 32 32",
3167
+ fill: "currentColor",
3168
+ ...rest
3169
+ }, _path218 || (_path218 = /*#__PURE__*/React.createElement("path", {
3170
+ d: "M8 8H10V12H8zM8 14H10V18H8zM14 8H16V12H14zM14 14H16V18H14zM8 20H10V24H8zM14 20H16V24H14zM18 14L26.17 14 23.59 16.59 25 18 30 13 25 8 23.59 9.41 26.17 12 18 12 18 14z"
3171
+ })), _path219 || (_path219 = /*#__PURE__*/React.createElement("path", {
3172
+ d: "M28,20v8H22V20H20v8H4V4H20V6h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30V20Z"
3173
+ })), children);
3174
+ });
3175
+ if (process.env.NODE_ENV !== "production") {
3176
+ ConnectionSend.propTypes = iconPropTypesC5chbmyn.i;
3177
+ }
3178
+
3179
+ exports.ChartViolinPlot = ChartViolinPlot;
3180
+ exports.ChartWaterfall = ChartWaterfall;
3181
+ exports.ChartWinLoss = ChartWinLoss;
3182
+ exports.Chat = Chat;
3183
+ exports.ChatBot = ChatBot;
3184
+ exports.ChatLaunch = ChatLaunch;
3185
+ exports.ChatOff = ChatOff;
3186
+ exports.ChatOperational = ChatOperational;
3187
+ exports.Checkbox = Checkbox;
3188
+ exports.CheckboxChecked = CheckboxChecked;
3189
+ exports.CheckboxCheckedFilled = CheckboxCheckedFilled;
3190
+ exports.CheckboxIndeterminate = CheckboxIndeterminate;
3191
+ exports.CheckboxIndeterminateFilled = CheckboxIndeterminateFilled;
3192
+ exports.Checkmark = Checkmark;
3193
+ exports.CheckmarkFilled = CheckmarkFilled;
3194
+ exports.CheckmarkFilledError = CheckmarkFilledError;
3195
+ exports.CheckmarkFilledWarning = CheckmarkFilledWarning;
3196
+ exports.CheckmarkOutline = CheckmarkOutline;
3197
+ exports.CheckmarkOutlineError = CheckmarkOutlineError;
3198
+ exports.CheckmarkOutlineWarning = CheckmarkOutlineWarning;
3199
+ exports.Chemistry = Chemistry;
3200
+ exports.ChemistryReference = ChemistryReference;
3201
+ exports.ChevronDown = ChevronDown;
3202
+ exports.ChevronDownOutline = ChevronDownOutline;
3203
+ exports.ChevronLeft = ChevronLeft;
3204
+ exports.ChevronMini = ChevronMini;
3205
+ exports.ChevronRight = ChevronRight;
3206
+ exports.ChevronSort = ChevronSort;
3207
+ exports.ChevronSortDown = ChevronSortDown;
3208
+ exports.ChevronSortUp = ChevronSortUp;
3209
+ exports.ChevronUp = ChevronUp;
3210
+ exports.ChevronUpOutline = ChevronUpOutline;
3211
+ exports.ChildNode = ChildNode;
3212
+ exports.Chip = Chip;
3213
+ exports.Choices = Choices;
3214
+ exports.ChooseItem = ChooseItem;
3215
+ exports.ChoroplethMap = ChoroplethMap;
3216
+ exports.CicsCmas = CicsCmas;
3217
+ exports.CicsDb2Connection = CicsDb2Connection;
3218
+ exports.CicsExplorer = CicsExplorer;
3219
+ exports.CicsProgram = CicsProgram;
3220
+ exports.CicsRegion = CicsRegion;
3221
+ exports.CicsRegionAlt = CicsRegionAlt;
3222
+ exports.CicsRegionRouting = CicsRegionRouting;
3223
+ exports.CicsRegionTarget = CicsRegionTarget;
3224
+ exports.CicsSit = CicsSit;
3225
+ exports.CicsSitOverrides = CicsSitOverrides;
3226
+ exports.CicsSystemGroup = CicsSystemGroup;
3227
+ exports.CicsTransactionServerZos = CicsTransactionServerZos;
3228
+ exports.CicsWuiRegion = CicsWuiRegion;
3229
+ exports.Cicsplex = Cicsplex;
3230
+ exports.CircleDash = CircleDash;
3231
+ exports.CircleFill = CircleFill;
3232
+ exports.CircleFilled = CircleFilled;
3233
+ exports.CircleOutline = CircleOutline;
3234
+ exports.CirclePacking = CirclePacking;
3235
+ exports.CircleSolid = CircleSolid;
3236
+ exports.CircleStroke = CircleStroke;
3237
+ exports.ClassicBatch = ClassicBatch;
3238
+ exports.Classification = Classification;
3239
+ exports.ClassifierLanguage = ClassifierLanguage;
3240
+ exports.Clean = Clean;
3241
+ exports.Close = Close;
3242
+ exports.CloseFilled = CloseFilled;
3243
+ exports.CloseLarge = CloseLarge;
3244
+ exports.CloseOutline = CloseOutline;
3245
+ exports.ClosedCaption = ClosedCaption;
3246
+ exports.ClosedCaptionAlt = ClosedCaptionAlt;
3247
+ exports.ClosedCaptionFilled = ClosedCaptionFilled;
3248
+ exports.Cloud = Cloud;
3249
+ exports.CloudAlerting = CloudAlerting;
3250
+ exports.CloudApp = CloudApp;
3251
+ exports.CloudAuditing = CloudAuditing;
3252
+ exports.CloudCeiling = CloudCeiling;
3253
+ exports.CloudDataOps = CloudDataOps;
3254
+ exports.CloudDownload = CloudDownload;
3255
+ exports.CloudFoundry_1 = CloudFoundry_1;
3256
+ exports.CloudFoundry_2 = CloudFoundry_2;
3257
+ exports.CloudLogging = CloudLogging;
3258
+ exports.CloudMonitoring = CloudMonitoring;
3259
+ exports.CloudOffline = CloudOffline;
3260
+ exports.CloudRegistry = CloudRegistry;
3261
+ exports.CloudSatellite = CloudSatellite;
3262
+ exports.CloudSatelliteConfig = CloudSatelliteConfig;
3263
+ exports.CloudSatelliteLink = CloudSatelliteLink;
3264
+ exports.CloudSatelliteServices = CloudSatelliteServices;
3265
+ exports.CloudServiceManagement = CloudServiceManagement;
3266
+ exports.CloudServices = CloudServices;
3267
+ exports.CloudUpload = CloudUpload;
3268
+ exports.Cloudy = Cloudy;
3269
+ exports.Code = Code;
3270
+ exports.CodeBlock = CodeBlock;
3271
+ exports.CodeHide = CodeHide;
3272
+ exports.CodeReference = CodeReference;
3273
+ exports.CodeSigningService = CodeSigningService;
3274
+ exports.Cognitive = Cognitive;
3275
+ exports.Collaborate = Collaborate;
3276
+ exports.CollapseAll = CollapseAll;
3277
+ exports.CollapseCategories = CollapseCategories;
3278
+ exports.ColorPalette = ColorPalette;
3279
+ exports.ColorSwitch = ColorSwitch;
3280
+ exports.Column = Column;
3281
+ exports.ColumnDelete = ColumnDelete;
3282
+ exports.ColumnDependency = ColumnDependency;
3283
+ exports.ColumnInsert = ColumnInsert;
3284
+ exports.Comments = Comments;
3285
+ exports.Commit = Commit;
3286
+ exports.CommitAlt = CommitAlt;
3287
+ exports.CommunicationUnified = CommunicationUnified;
3288
+ exports.Compare = Compare;
3289
+ exports.Compass = Compass;
3290
+ exports.Concept = Concept;
3291
+ exports.ConditionPoint = ConditionPoint;
3292
+ exports.ConditionWaitPoint = ConditionWaitPoint;
3293
+ exports.Connect = Connect;
3294
+ exports.ConnectRecursive = ConnectRecursive;
3295
+ exports.ConnectReference = ConnectReference;
3296
+ exports.ConnectSource = ConnectSource;
3297
+ exports.ConnectTarget = ConnectTarget;
3298
+ exports.ConnectionReceive = ConnectionReceive;
3299
+ exports.ConnectionSend = ConnectionSend;
3300
+ exports.QCircuitComposer = QCircuitComposer;
3301
+ exports.QComposerEdit = QComposerEdit;
3302
+ exports.WatsonHealthCircleMeasurement = WatsonHealthCircleMeasurement;
3303
+ exports.WatsonHealthCobbAngle = WatsonHealthCobbAngle;