@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,3177 @@
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
+ import React__default from 'react';
9
+ import Icon from '../Icon.js';
10
+ import { i as iconPropTypes } from '../iconPropTypes-C5chbmyn.js';
11
+
12
+ 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;
13
+ const ChartViolinPlot = /*#__PURE__*/React__default.forwardRef(function ChartViolinPlot(_ref, ref) {
14
+ let {
15
+ children,
16
+ size = 16,
17
+ ...rest
18
+ } = _ref;
19
+ return /*#__PURE__*/React__default.createElement(Icon, {
20
+ width: size,
21
+ height: size,
22
+ ref: ref,
23
+ xmlns: "http://www.w3.org/2000/svg",
24
+ viewBox: "0 0 32 32",
25
+ fill: "currentColor",
26
+ ...rest
27
+ }, _path || (_path = /*#__PURE__*/React__default.createElement("path", {
28
+ d: "M30,30H4a2,2,0,0,1-2-2V2H4V28H30Z"
29
+ })), _path2 || (_path2 = /*#__PURE__*/React__default.createElement("path", {
30
+ 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"
31
+ })), children);
32
+ });
33
+ if (process.env.NODE_ENV !== "production") {
34
+ ChartViolinPlot.propTypes = iconPropTypes;
35
+ }
36
+ const ChartWaterfall = /*#__PURE__*/React__default.forwardRef(function ChartWaterfall(_ref2, ref) {
37
+ let {
38
+ children,
39
+ size = 16,
40
+ ...rest
41
+ } = _ref2;
42
+ return /*#__PURE__*/React__default.createElement(Icon, {
43
+ width: size,
44
+ height: size,
45
+ ref: ref,
46
+ xmlns: "http://www.w3.org/2000/svg",
47
+ viewBox: "0 0 32 32",
48
+ fill: "currentColor",
49
+ ...rest
50
+ }, _path3 || (_path3 = /*#__PURE__*/React__default.createElement("path", {
51
+ d: "M28,28V18H26V28H22V4H20V28H10V14H8V28H4V2H2V28a2.0023,2.0023,0,0,0,2,2H30V28Z"
52
+ })), _path4 || (_path4 = /*#__PURE__*/React__default.createElement("path", {
53
+ d: "M14 4H16V18H14z"
54
+ })), children);
55
+ });
56
+ if (process.env.NODE_ENV !== "production") {
57
+ ChartWaterfall.propTypes = iconPropTypes;
58
+ }
59
+ const ChartWinLoss = /*#__PURE__*/React__default.forwardRef(function ChartWinLoss(_ref3, ref) {
60
+ let {
61
+ children,
62
+ size = 16,
63
+ ...rest
64
+ } = _ref3;
65
+ return /*#__PURE__*/React__default.createElement(Icon, {
66
+ width: size,
67
+ height: size,
68
+ ref: ref,
69
+ xmlns: "http://www.w3.org/2000/svg",
70
+ viewBox: "0 0 32 32",
71
+ fill: "currentColor",
72
+ ...rest
73
+ }, _path5 || (_path5 = /*#__PURE__*/React__default.createElement("path", {
74
+ 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"
75
+ })), children);
76
+ });
77
+ if (process.env.NODE_ENV !== "production") {
78
+ ChartWinLoss.propTypes = iconPropTypes;
79
+ }
80
+ const Chat = /*#__PURE__*/React__default.forwardRef(function Chat(_ref4, ref) {
81
+ let {
82
+ children,
83
+ size = 16,
84
+ ...rest
85
+ } = _ref4;
86
+ return /*#__PURE__*/React__default.createElement(Icon, {
87
+ width: size,
88
+ height: size,
89
+ ref: ref,
90
+ xmlns: "http://www.w3.org/2000/svg",
91
+ viewBox: "0 0 32 32",
92
+ fill: "currentColor",
93
+ ...rest
94
+ }, _path6 || (_path6 = /*#__PURE__*/React__default.createElement("path", {
95
+ 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"
96
+ })), _path7 || (_path7 = /*#__PURE__*/React__default.createElement("path", {
97
+ d: "M8 10H24V12H8zM8 16H18V18H8z"
98
+ })), children);
99
+ });
100
+ if (process.env.NODE_ENV !== "production") {
101
+ Chat.propTypes = iconPropTypes;
102
+ }
103
+ const ChatLaunch = /*#__PURE__*/React__default.forwardRef(function ChatLaunch(_ref5, ref) {
104
+ let {
105
+ children,
106
+ size = 16,
107
+ ...rest
108
+ } = _ref5;
109
+ return /*#__PURE__*/React__default.createElement(Icon, {
110
+ width: size,
111
+ height: size,
112
+ ref: ref,
113
+ xmlns: "http://www.w3.org/2000/svg",
114
+ viewBox: "0 0 32 32",
115
+ fill: "currentColor",
116
+ ...rest
117
+ }, _path8 || (_path8 = /*#__PURE__*/React__default.createElement("path", {
118
+ 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"
119
+ })), children);
120
+ });
121
+ if (process.env.NODE_ENV !== "production") {
122
+ ChatLaunch.propTypes = iconPropTypes;
123
+ }
124
+ const ChatOff = /*#__PURE__*/React__default.forwardRef(function ChatOff(_ref6, ref) {
125
+ let {
126
+ children,
127
+ size = 16,
128
+ ...rest
129
+ } = _ref6;
130
+ return /*#__PURE__*/React__default.createElement(Icon, {
131
+ width: size,
132
+ height: size,
133
+ ref: ref,
134
+ xmlns: "http://www.w3.org/2000/svg",
135
+ viewBox: "0 0 32 32",
136
+ fill: "currentColor",
137
+ ...rest
138
+ }, _path9 || (_path9 = /*#__PURE__*/React__default.createElement("path", {
139
+ 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"
140
+ })), children);
141
+ });
142
+ if (process.env.NODE_ENV !== "production") {
143
+ ChatOff.propTypes = iconPropTypes;
144
+ }
145
+ const ChatOperational = /*#__PURE__*/React__default.forwardRef(function ChatOperational(_ref7, ref) {
146
+ let {
147
+ children,
148
+ size = 16,
149
+ ...rest
150
+ } = _ref7;
151
+ return /*#__PURE__*/React__default.createElement(Icon, {
152
+ width: size,
153
+ height: size,
154
+ ref: ref,
155
+ xmlns: "http://www.w3.org/2000/svg",
156
+ viewBox: "0 0 32 32",
157
+ fill: "currentColor",
158
+ ...rest
159
+ }, _path0 || (_path0 = /*#__PURE__*/React__default.createElement("path", {
160
+ d: "M15.586 10.414L19.166 14 19.166 14 15.584 17.587 17 19 22 14 17 9 15.586 10.414z"
161
+ })), _path1 || (_path1 = /*#__PURE__*/React__default.createElement("path", {
162
+ 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"
163
+ })), _path10 || (_path10 = /*#__PURE__*/React__default.createElement("path", {
164
+ 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"
165
+ })), children);
166
+ });
167
+ if (process.env.NODE_ENV !== "production") {
168
+ ChatOperational.propTypes = iconPropTypes;
169
+ }
170
+ const ChatBot = /*#__PURE__*/React__default.forwardRef(function ChatBot(_ref8, ref) {
171
+ let {
172
+ children,
173
+ size = 16,
174
+ ...rest
175
+ } = _ref8;
176
+ return /*#__PURE__*/React__default.createElement(Icon, {
177
+ width: size,
178
+ height: size,
179
+ ref: ref,
180
+ xmlns: "http://www.w3.org/2000/svg",
181
+ viewBox: "0 0 32 32",
182
+ fill: "currentColor",
183
+ ...rest
184
+ }, _path11 || (_path11 = /*#__PURE__*/React__default.createElement("path", {
185
+ 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"
186
+ })), _path12 || (_path12 = /*#__PURE__*/React__default.createElement("path", {
187
+ 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"
188
+ })), children);
189
+ });
190
+ if (process.env.NODE_ENV !== "production") {
191
+ ChatBot.propTypes = iconPropTypes;
192
+ }
193
+ const Checkbox = /*#__PURE__*/React__default.forwardRef(function Checkbox(_ref9, ref) {
194
+ let {
195
+ children,
196
+ size = 16,
197
+ ...rest
198
+ } = _ref9;
199
+ return /*#__PURE__*/React__default.createElement(Icon, {
200
+ width: size,
201
+ height: size,
202
+ ref: ref,
203
+ xmlns: "http://www.w3.org/2000/svg",
204
+ viewBox: "0 0 32 32",
205
+ fill: "currentColor",
206
+ ...rest
207
+ }, _path13 || (_path13 = /*#__PURE__*/React__default.createElement("path", {
208
+ 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"
209
+ })), children);
210
+ });
211
+ if (process.env.NODE_ENV !== "production") {
212
+ Checkbox.propTypes = iconPropTypes;
213
+ }
214
+ const CheckboxChecked = /*#__PURE__*/React__default.forwardRef(function CheckboxChecked(_ref10, ref) {
215
+ let {
216
+ children,
217
+ size = 16,
218
+ ...rest
219
+ } = _ref10;
220
+ return /*#__PURE__*/React__default.createElement(Icon, {
221
+ width: size,
222
+ height: size,
223
+ ref: ref,
224
+ xmlns: "http://www.w3.org/2000/svg",
225
+ viewBox: "0 0 32 32",
226
+ fill: "currentColor",
227
+ ...rest
228
+ }, _path14 || (_path14 = /*#__PURE__*/React__default.createElement("path", {
229
+ 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"
230
+ })), _path15 || (_path15 = /*#__PURE__*/React__default.createElement("path", {
231
+ d: "M14 21.5L9 16.54 10.59 15 14 18.35 21.41 11 23 12.58 14 21.5z"
232
+ })), children);
233
+ });
234
+ if (process.env.NODE_ENV !== "production") {
235
+ CheckboxChecked.propTypes = iconPropTypes;
236
+ }
237
+ const CheckboxCheckedFilled = /*#__PURE__*/React__default.forwardRef(function CheckboxCheckedFilled(_ref11, ref) {
238
+ let {
239
+ children,
240
+ size = 16,
241
+ ...rest
242
+ } = _ref11;
243
+ return /*#__PURE__*/React__default.createElement(Icon, {
244
+ width: size,
245
+ height: size,
246
+ ref: ref,
247
+ xmlns: "http://www.w3.org/2000/svg",
248
+ viewBox: "0 0 32 32",
249
+ fill: "currentColor",
250
+ ...rest
251
+ }, _path16 || (_path16 = /*#__PURE__*/React__default.createElement("path", {
252
+ 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"
253
+ })), _path17 || (_path17 = /*#__PURE__*/React__default.createElement("path", {
254
+ fill: "none",
255
+ d: "M14,21.5,9,16.5427,10.5908,15,14,18.3456,21.4087,11l1.5918,1.5772Z",
256
+ "data-icon-path": "inner-path"
257
+ })), children);
258
+ });
259
+ if (process.env.NODE_ENV !== "production") {
260
+ CheckboxCheckedFilled.propTypes = iconPropTypes;
261
+ }
262
+ const CheckboxIndeterminate = /*#__PURE__*/React__default.forwardRef(function CheckboxIndeterminate(_ref12, ref) {
263
+ let {
264
+ children,
265
+ size = 16,
266
+ ...rest
267
+ } = _ref12;
268
+ return /*#__PURE__*/React__default.createElement(Icon, {
269
+ width: size,
270
+ height: size,
271
+ ref: ref,
272
+ xmlns: "http://www.w3.org/2000/svg",
273
+ viewBox: "0 0 32 32",
274
+ fill: "currentColor",
275
+ ...rest
276
+ }, _path18 || (_path18 = /*#__PURE__*/React__default.createElement("path", {
277
+ d: "M10 14H22V18H10z"
278
+ })), _path19 || (_path19 = /*#__PURE__*/React__default.createElement("path", {
279
+ 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"
280
+ })), children);
281
+ });
282
+ if (process.env.NODE_ENV !== "production") {
283
+ CheckboxIndeterminate.propTypes = iconPropTypes;
284
+ }
285
+ const CheckboxIndeterminateFilled = /*#__PURE__*/React__default.forwardRef(function CheckboxIndeterminateFilled(_ref13, ref) {
286
+ let {
287
+ children,
288
+ size = 16,
289
+ ...rest
290
+ } = _ref13;
291
+ return /*#__PURE__*/React__default.createElement(Icon, {
292
+ width: size,
293
+ height: size,
294
+ ref: ref,
295
+ xmlns: "http://www.w3.org/2000/svg",
296
+ viewBox: "0 0 32 32",
297
+ fill: "currentColor",
298
+ ...rest
299
+ }, _path20 || (_path20 = /*#__PURE__*/React__default.createElement("path", {
300
+ 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"
301
+ })), _path21 || (_path21 = /*#__PURE__*/React__default.createElement("path", {
302
+ fill: "none",
303
+ d: "M22,18H10V14H22Z",
304
+ "data-icon-path": "inner-path"
305
+ })), children);
306
+ });
307
+ if (process.env.NODE_ENV !== "production") {
308
+ CheckboxIndeterminateFilled.propTypes = iconPropTypes;
309
+ }
310
+ const Checkmark = /*#__PURE__*/React__default.forwardRef(function Checkmark(_ref14, ref) {
311
+ let {
312
+ children,
313
+ size = 16,
314
+ ...rest
315
+ } = _ref14;
316
+ if (size === 20 || size === "20" || size === "20px") {
317
+ return /*#__PURE__*/React__default.createElement(Icon, {
318
+ width: size,
319
+ height: size,
320
+ ref: ref,
321
+ xmlns: "http://www.w3.org/2000/svg",
322
+ viewBox: "0 0 20 20",
323
+ fill: "currentColor",
324
+ ...rest
325
+ }, _path22 || (_path22 = /*#__PURE__*/React__default.createElement("path", {
326
+ 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"
327
+ })), _path23 || (_path23 = /*#__PURE__*/React__default.createElement("path", {
328
+ 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"
329
+ })), children);
330
+ }
331
+ if (size === 24 || size === "24" || size === "24px") {
332
+ return /*#__PURE__*/React__default.createElement(Icon, {
333
+ width: size,
334
+ height: size,
335
+ ref: ref,
336
+ xmlns: "http://www.w3.org/2000/svg",
337
+ viewBox: "0 0 24 24",
338
+ fill: "currentColor",
339
+ ...rest
340
+ }, _path24 || (_path24 = /*#__PURE__*/React__default.createElement("path", {
341
+ 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"
342
+ })), children);
343
+ }
344
+ return /*#__PURE__*/React__default.createElement(Icon, {
345
+ width: size,
346
+ height: size,
347
+ ref: ref,
348
+ xmlns: "http://www.w3.org/2000/svg",
349
+ viewBox: "0 0 32 32",
350
+ fill: "currentColor",
351
+ ...rest
352
+ }, _path25 || (_path25 = /*#__PURE__*/React__default.createElement("path", {
353
+ d: "M13 24L4 15 5.414 13.586 13 21.171 26.586 7.586 28 9 13 24z"
354
+ })), children);
355
+ });
356
+ if (process.env.NODE_ENV !== "production") {
357
+ Checkmark.propTypes = iconPropTypes;
358
+ }
359
+ const CheckmarkFilled = /*#__PURE__*/React__default.forwardRef(function CheckmarkFilled(_ref15, ref) {
360
+ let {
361
+ children,
362
+ size = 16,
363
+ ...rest
364
+ } = _ref15;
365
+ if (size === 16 || size === "16" || size === "16px") {
366
+ return /*#__PURE__*/React__default.createElement(Icon, {
367
+ width: size,
368
+ height: size,
369
+ ref: ref,
370
+ xmlns: "http://www.w3.org/2000/svg",
371
+ viewBox: "0 0 16 16",
372
+ fill: "currentColor",
373
+ ...rest
374
+ }, _path26 || (_path26 = /*#__PURE__*/React__default.createElement("path", {
375
+ 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"
376
+ })), _path27 || (_path27 = /*#__PURE__*/React__default.createElement("path", {
377
+ d: "M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z",
378
+ "data-icon-path": "inner-path",
379
+ opacity: "0"
380
+ })), children);
381
+ }
382
+ if (size === 20 || size === "20" || size === "20px") {
383
+ return /*#__PURE__*/React__default.createElement(Icon, {
384
+ width: size,
385
+ height: size,
386
+ ref: ref,
387
+ xmlns: "http://www.w3.org/2000/svg",
388
+ viewBox: "0 0 20 20",
389
+ fill: "currentColor",
390
+ ...rest
391
+ }, _path28 || (_path28 = /*#__PURE__*/React__default.createElement("path", {
392
+ 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"
393
+ })), _path29 || (_path29 = /*#__PURE__*/React__default.createElement("path", {
394
+ fill: "none",
395
+ d: "M8.7,13.5l-3.2-3.2l1-1l2.2,2.2l4.8-4.8l1,1L8.7,13.5z",
396
+ "data-icon-path": "inner-path",
397
+ opacity: "0"
398
+ })), children);
399
+ }
400
+ if (size === 24 || size === "24" || size === "24px") {
401
+ return /*#__PURE__*/React__default.createElement(Icon, {
402
+ width: size,
403
+ height: size,
404
+ ref: ref,
405
+ xmlns: "http://www.w3.org/2000/svg",
406
+ viewBox: "0 0 24 24",
407
+ fill: "currentColor",
408
+ ...rest
409
+ }, _path30 || (_path30 = /*#__PURE__*/React__default.createElement("path", {
410
+ 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"
411
+ })), _path31 || (_path31 = /*#__PURE__*/React__default.createElement("path", {
412
+ fill: "none",
413
+ d: "M10.4,16.3l-3.9-3.9l1.3-1.2l2.7,2.7l5.8-5.8l1.3,1.3L10.4,16.3z",
414
+ "data-icon-path": "inner-path",
415
+ opacity: "0"
416
+ })), children);
417
+ }
418
+ return /*#__PURE__*/React__default.createElement(Icon, {
419
+ width: size,
420
+ height: size,
421
+ ref: ref,
422
+ xmlns: "http://www.w3.org/2000/svg",
423
+ viewBox: "0 0 32 32",
424
+ fill: "currentColor",
425
+ ...rest
426
+ }, _path32 || (_path32 = /*#__PURE__*/React__default.createElement("path", {
427
+ 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"
428
+ })), _path33 || (_path33 = /*#__PURE__*/React__default.createElement("path", {
429
+ fill: "none",
430
+ d: "M14 21.591L9 16.591 10.591 15 14 18.409 21.41 11 23.005 12.585 14 21.591z",
431
+ "data-icon-path": "inner-path"
432
+ })), children);
433
+ });
434
+ if (process.env.NODE_ENV !== "production") {
435
+ CheckmarkFilled.propTypes = iconPropTypes;
436
+ }
437
+ const CheckmarkFilledError = /*#__PURE__*/React__default.forwardRef(function CheckmarkFilledError(_ref16, ref) {
438
+ let {
439
+ children,
440
+ size = 16,
441
+ ...rest
442
+ } = _ref16;
443
+ return /*#__PURE__*/React__default.createElement(Icon, {
444
+ width: size,
445
+ height: size,
446
+ ref: ref,
447
+ xmlns: "http://www.w3.org/2000/svg",
448
+ viewBox: "0 0 32 32",
449
+ fill: "currentColor",
450
+ ...rest
451
+ }, _path34 || (_path34 = /*#__PURE__*/React__default.createElement("path", {
452
+ 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"
453
+ })), _path35 || (_path35 = /*#__PURE__*/React__default.createElement("path", {
454
+ 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"
455
+ })), _path36 || (_path36 = /*#__PURE__*/React__default.createElement("path", {
456
+ fill: "none",
457
+ d: "M12 18.591L8 14.591 9.591 13 12 15.409 17.409 10 19 11.591 12 18.591z",
458
+ "data-icon-path": "inner-path"
459
+ })), children);
460
+ });
461
+ if (process.env.NODE_ENV !== "production") {
462
+ CheckmarkFilledError.propTypes = iconPropTypes;
463
+ }
464
+ const CheckmarkFilledWarning = /*#__PURE__*/React__default.forwardRef(function CheckmarkFilledWarning(_ref17, ref) {
465
+ let {
466
+ children,
467
+ size = 16,
468
+ ...rest
469
+ } = _ref17;
470
+ return /*#__PURE__*/React__default.createElement(Icon, {
471
+ width: size,
472
+ height: size,
473
+ ref: ref,
474
+ xmlns: "http://www.w3.org/2000/svg",
475
+ viewBox: "0 0 32 32",
476
+ fill: "currentColor",
477
+ ...rest
478
+ }, _path37 || (_path37 = /*#__PURE__*/React__default.createElement("path", {
479
+ 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"
480
+ })), _path38 || (_path38 = /*#__PURE__*/React__default.createElement("path", {
481
+ 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"
482
+ })), _path39 || (_path39 = /*#__PURE__*/React__default.createElement("path", {
483
+ fill: "none",
484
+ d: "M12 18.591L8 14.591 9.591 13 12 15.409 17.409 10 19 11.591 12 18.591z",
485
+ "data-icon-path": "inner-path"
486
+ })), children);
487
+ });
488
+ if (process.env.NODE_ENV !== "production") {
489
+ CheckmarkFilledWarning.propTypes = iconPropTypes;
490
+ }
491
+ const CheckmarkOutline = /*#__PURE__*/React__default.forwardRef(function CheckmarkOutline(_ref18, ref) {
492
+ let {
493
+ children,
494
+ size = 16,
495
+ ...rest
496
+ } = _ref18;
497
+ return /*#__PURE__*/React__default.createElement(Icon, {
498
+ width: size,
499
+ height: size,
500
+ ref: ref,
501
+ xmlns: "http://www.w3.org/2000/svg",
502
+ viewBox: "0 0 32 32",
503
+ fill: "currentColor",
504
+ ...rest
505
+ }, _path40 || (_path40 = /*#__PURE__*/React__default.createElement("path", {
506
+ d: "M14 21.414L9 16.413 10.413 15 14 18.586 21.585 11 23 12.415 14 21.414z"
507
+ })), _path41 || (_path41 = /*#__PURE__*/React__default.createElement("path", {
508
+ 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"
509
+ })), children);
510
+ });
511
+ if (process.env.NODE_ENV !== "production") {
512
+ CheckmarkOutline.propTypes = iconPropTypes;
513
+ }
514
+ const CheckmarkOutlineError = /*#__PURE__*/React__default.forwardRef(function CheckmarkOutlineError(_ref19, ref) {
515
+ let {
516
+ children,
517
+ size = 16,
518
+ ...rest
519
+ } = _ref19;
520
+ return /*#__PURE__*/React__default.createElement(Icon, {
521
+ width: size,
522
+ height: size,
523
+ ref: ref,
524
+ xmlns: "http://www.w3.org/2000/svg",
525
+ viewBox: "0 0 32 32",
526
+ fill: "currentColor",
527
+ ...rest
528
+ }, _path42 || (_path42 = /*#__PURE__*/React__default.createElement("path", {
529
+ d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z"
530
+ })), _path43 || (_path43 = /*#__PURE__*/React__default.createElement("path", {
531
+ 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"
532
+ })), children);
533
+ });
534
+ if (process.env.NODE_ENV !== "production") {
535
+ CheckmarkOutlineError.propTypes = iconPropTypes;
536
+ }
537
+ const CheckmarkOutlineWarning = /*#__PURE__*/React__default.forwardRef(function CheckmarkOutlineWarning(_ref20, ref) {
538
+ let {
539
+ children,
540
+ size = 16,
541
+ ...rest
542
+ } = _ref20;
543
+ return /*#__PURE__*/React__default.createElement(Icon, {
544
+ width: size,
545
+ height: size,
546
+ ref: ref,
547
+ xmlns: "http://www.w3.org/2000/svg",
548
+ viewBox: "0 0 32 32",
549
+ fill: "currentColor",
550
+ ...rest
551
+ }, _path44 || (_path44 = /*#__PURE__*/React__default.createElement("path", {
552
+ d: "M14,24A10,10,0,1,1,24,14h2A12,12,0,1,0,14,26Z"
553
+ })), _path45 || (_path45 = /*#__PURE__*/React__default.createElement("path", {
554
+ 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"
555
+ })), children);
556
+ });
557
+ if (process.env.NODE_ENV !== "production") {
558
+ CheckmarkOutlineWarning.propTypes = iconPropTypes;
559
+ }
560
+ const Chemistry = /*#__PURE__*/React__default.forwardRef(function Chemistry(_ref21, ref) {
561
+ let {
562
+ children,
563
+ size = 16,
564
+ ...rest
565
+ } = _ref21;
566
+ return /*#__PURE__*/React__default.createElement(Icon, {
567
+ width: size,
568
+ height: size,
569
+ ref: ref,
570
+ xmlns: "http://www.w3.org/2000/svg",
571
+ viewBox: "0 0 32 32",
572
+ fill: "currentColor",
573
+ ...rest
574
+ }, _path46 || (_path46 = /*#__PURE__*/React__default.createElement("path", {
575
+ 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"
576
+ })), children);
577
+ });
578
+ if (process.env.NODE_ENV !== "production") {
579
+ Chemistry.propTypes = iconPropTypes;
580
+ }
581
+ const ChemistryReference = /*#__PURE__*/React__default.forwardRef(function ChemistryReference(_ref22, ref) {
582
+ let {
583
+ children,
584
+ size = 16,
585
+ ...rest
586
+ } = _ref22;
587
+ return /*#__PURE__*/React__default.createElement(Icon, {
588
+ width: size,
589
+ height: size,
590
+ ref: ref,
591
+ xmlns: "http://www.w3.org/2000/svg",
592
+ viewBox: "0 0 32 32",
593
+ fill: "currentColor",
594
+ ...rest
595
+ }, _path47 || (_path47 = /*#__PURE__*/React__default.createElement("path", {
596
+ d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"
597
+ })), _path48 || (_path48 = /*#__PURE__*/React__default.createElement("path", {
598
+ 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"
599
+ })), children);
600
+ });
601
+ if (process.env.NODE_ENV !== "production") {
602
+ ChemistryReference.propTypes = iconPropTypes;
603
+ }
604
+ const ChevronDown = /*#__PURE__*/React__default.forwardRef(function ChevronDown(_ref23, ref) {
605
+ let {
606
+ children,
607
+ size = 16,
608
+ ...rest
609
+ } = _ref23;
610
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") {
611
+ return /*#__PURE__*/React__default.createElement(Icon, {
612
+ width: size,
613
+ height: size,
614
+ ref: ref,
615
+ xmlns: "http://www.w3.org/2000/svg",
616
+ viewBox: "0 0 10 6",
617
+ fill: "currentColor",
618
+ ...rest
619
+ }, _path49 || (_path49 = /*#__PURE__*/React__default.createElement("path", {
620
+ d: "M5 6L0 1 0.7 0.3 5 4.6 9.3 0.3 10 1z"
621
+ })), children);
622
+ }
623
+ if (size === 16 || size === "16" || size === "16px") {
624
+ return /*#__PURE__*/React__default.createElement(Icon, {
625
+ width: size,
626
+ height: size,
627
+ ref: ref,
628
+ xmlns: "http://www.w3.org/2000/svg",
629
+ viewBox: "0 0 16 16",
630
+ fill: "currentColor",
631
+ ...rest
632
+ }, _path50 || (_path50 = /*#__PURE__*/React__default.createElement("path", {
633
+ d: "M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z"
634
+ })), children);
635
+ }
636
+ return /*#__PURE__*/React__default.createElement(Icon, {
637
+ width: size,
638
+ height: size,
639
+ ref: ref,
640
+ xmlns: "http://www.w3.org/2000/svg",
641
+ viewBox: "0 0 32 32",
642
+ fill: "currentColor",
643
+ ...rest
644
+ }, _path51 || (_path51 = /*#__PURE__*/React__default.createElement("path", {
645
+ d: "M16 22L6 12 7.4 10.6 16 19.2 24.6 10.6 26 12z"
646
+ })), children);
647
+ });
648
+ if (process.env.NODE_ENV !== "production") {
649
+ ChevronDown.propTypes = iconPropTypes;
650
+ }
651
+ const ChevronDownOutline = /*#__PURE__*/React__default.forwardRef(function ChevronDownOutline(_ref24, ref) {
652
+ let {
653
+ children,
654
+ size = 16,
655
+ ...rest
656
+ } = _ref24;
657
+ return /*#__PURE__*/React__default.createElement(Icon, {
658
+ width: size,
659
+ height: size,
660
+ ref: ref,
661
+ xmlns: "http://www.w3.org/2000/svg",
662
+ viewBox: "0 0 32 32",
663
+ fill: "currentColor",
664
+ ...rest
665
+ }, _path52 || (_path52 = /*#__PURE__*/React__default.createElement("path", {
666
+ d: "M9.4142 12.5858L16 19.1714 22.5858 12.5858 24 14 16 22 8 14 9.4142 12.5858z"
667
+ })), _path53 || (_path53 = /*#__PURE__*/React__default.createElement("path", {
668
+ 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"
669
+ })), children);
670
+ });
671
+ if (process.env.NODE_ENV !== "production") {
672
+ ChevronDownOutline.propTypes = iconPropTypes;
673
+ }
674
+ const ChevronLeft = /*#__PURE__*/React__default.forwardRef(function ChevronLeft(_ref25, ref) {
675
+ let {
676
+ children,
677
+ size = 16,
678
+ ...rest
679
+ } = _ref25;
680
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") {
681
+ return /*#__PURE__*/React__default.createElement(Icon, {
682
+ width: size,
683
+ height: size,
684
+ ref: ref,
685
+ xmlns: "http://www.w3.org/2000/svg",
686
+ viewBox: "0 0 6 10",
687
+ fill: "currentColor",
688
+ ...rest
689
+ }, _path54 || (_path54 = /*#__PURE__*/React__default.createElement("path", {
690
+ d: "M0 5L5 0 5.7 0.7 1.4 5 5.7 9.3 5 10z"
691
+ })), children);
692
+ }
693
+ if (size === 16 || size === "16" || size === "16px") {
694
+ return /*#__PURE__*/React__default.createElement(Icon, {
695
+ width: size,
696
+ height: size,
697
+ ref: ref,
698
+ xmlns: "http://www.w3.org/2000/svg",
699
+ viewBox: "0 0 16 16",
700
+ fill: "currentColor",
701
+ ...rest
702
+ }, _path55 || (_path55 = /*#__PURE__*/React__default.createElement("path", {
703
+ d: "M5 8L10 3 10.7 3.7 6.4 8 10.7 12.3 10 13z"
704
+ })), children);
705
+ }
706
+ return /*#__PURE__*/React__default.createElement(Icon, {
707
+ width: size,
708
+ height: size,
709
+ ref: ref,
710
+ xmlns: "http://www.w3.org/2000/svg",
711
+ viewBox: "0 0 32 32",
712
+ fill: "currentColor",
713
+ ...rest
714
+ }, _path56 || (_path56 = /*#__PURE__*/React__default.createElement("path", {
715
+ d: "M10 16L20 6 21.4 7.4 12.8 16 21.4 24.6 20 26z"
716
+ })), children);
717
+ });
718
+ if (process.env.NODE_ENV !== "production") {
719
+ ChevronLeft.propTypes = iconPropTypes;
720
+ }
721
+ const ChevronMini = /*#__PURE__*/React__default.forwardRef(function ChevronMini(_ref26, ref) {
722
+ let {
723
+ children,
724
+ size = 16,
725
+ ...rest
726
+ } = _ref26;
727
+ if (size === 16 || size === "16" || size === "16px") {
728
+ return /*#__PURE__*/React__default.createElement(Icon, {
729
+ width: size,
730
+ height: size,
731
+ ref: ref,
732
+ xmlns: "http://www.w3.org/2000/svg",
733
+ viewBox: "0 0 16 16",
734
+ fill: "currentColor",
735
+ ...rest
736
+ }, _path57 || (_path57 = /*#__PURE__*/React__default.createElement("path", {
737
+ d: "M15 9L15 15 9 15z"
738
+ })), children);
739
+ }
740
+ return /*#__PURE__*/React__default.createElement(Icon, {
741
+ width: size,
742
+ height: size,
743
+ ref: ref,
744
+ xmlns: "http://www.w3.org/2000/svg",
745
+ viewBox: "0 0 32 32",
746
+ fill: "currentColor",
747
+ ...rest
748
+ }, _path58 || (_path58 = /*#__PURE__*/React__default.createElement("path", {
749
+ d: "M31 19L31 31 19 31 31 19z"
750
+ })), children);
751
+ });
752
+ if (process.env.NODE_ENV !== "production") {
753
+ ChevronMini.propTypes = iconPropTypes;
754
+ }
755
+ const ChevronRight = /*#__PURE__*/React__default.forwardRef(function ChevronRight(_ref27, ref) {
756
+ let {
757
+ children,
758
+ size = 16,
759
+ ...rest
760
+ } = _ref27;
761
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") {
762
+ return /*#__PURE__*/React__default.createElement(Icon, {
763
+ width: size,
764
+ height: size,
765
+ ref: ref,
766
+ xmlns: "http://www.w3.org/2000/svg",
767
+ viewBox: "0 0 6 10",
768
+ fill: "currentColor",
769
+ ...rest
770
+ }, _path59 || (_path59 = /*#__PURE__*/React__default.createElement("path", {
771
+ d: "M6 5L1 10 0.3 9.3 4.6 5 0.3 0.7 1 0z"
772
+ })), children);
773
+ }
774
+ if (size === 16 || size === "16" || size === "16px") {
775
+ return /*#__PURE__*/React__default.createElement(Icon, {
776
+ width: size,
777
+ height: size,
778
+ ref: ref,
779
+ xmlns: "http://www.w3.org/2000/svg",
780
+ viewBox: "0 0 16 16",
781
+ fill: "currentColor",
782
+ ...rest
783
+ }, _path60 || (_path60 = /*#__PURE__*/React__default.createElement("path", {
784
+ d: "M11 8L6 13 5.3 12.3 9.6 8 5.3 3.7 6 3z"
785
+ })), children);
786
+ }
787
+ return /*#__PURE__*/React__default.createElement(Icon, {
788
+ width: size,
789
+ height: size,
790
+ ref: ref,
791
+ xmlns: "http://www.w3.org/2000/svg",
792
+ viewBox: "0 0 32 32",
793
+ fill: "currentColor",
794
+ ...rest
795
+ }, _path61 || (_path61 = /*#__PURE__*/React__default.createElement("path", {
796
+ d: "M22 16L12 26 10.6 24.6 19.2 16 10.6 7.4 12 6z"
797
+ })), children);
798
+ });
799
+ if (process.env.NODE_ENV !== "production") {
800
+ ChevronRight.propTypes = iconPropTypes;
801
+ }
802
+ const ChevronSort = /*#__PURE__*/React__default.forwardRef(function ChevronSort(_ref28, ref) {
803
+ let {
804
+ children,
805
+ size = 16,
806
+ ...rest
807
+ } = _ref28;
808
+ if (size === 16 || size === "16" || size === "16px") {
809
+ return /*#__PURE__*/React__default.createElement(Icon, {
810
+ width: size,
811
+ height: size,
812
+ ref: ref,
813
+ xmlns: "http://www.w3.org/2000/svg",
814
+ viewBox: "0 0 16 16",
815
+ fill: "currentColor",
816
+ ...rest
817
+ }, _path62 || (_path62 = /*#__PURE__*/React__default.createElement("path", {
818
+ 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"
819
+ })), children);
820
+ }
821
+ return /*#__PURE__*/React__default.createElement(Icon, {
822
+ width: size,
823
+ height: size,
824
+ ref: ref,
825
+ xmlns: "http://www.w3.org/2000/svg",
826
+ viewBox: "0 0 32 32",
827
+ fill: "currentColor",
828
+ ...rest
829
+ }, _path63 || (_path63 = /*#__PURE__*/React__default.createElement("path", {
830
+ 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"
831
+ })), children);
832
+ });
833
+ if (process.env.NODE_ENV !== "production") {
834
+ ChevronSort.propTypes = iconPropTypes;
835
+ }
836
+ const ChevronSortDown = /*#__PURE__*/React__default.forwardRef(function ChevronSortDown(_ref29, ref) {
837
+ let {
838
+ children,
839
+ size = 16,
840
+ ...rest
841
+ } = _ref29;
842
+ if (size === 16 || size === "16" || size === "16px") {
843
+ return /*#__PURE__*/React__default.createElement(Icon, {
844
+ width: size,
845
+ height: size,
846
+ ref: ref,
847
+ xmlns: "http://www.w3.org/2000/svg",
848
+ viewBox: "0 0 16 16",
849
+ fill: "currentColor",
850
+ ...rest
851
+ }, _path64 || (_path64 = /*#__PURE__*/React__default.createElement("path", {
852
+ d: "M8 14L4.5 10.5 5.2 9.8 8 12.6 10.8 9.8 11.5 10.5z"
853
+ })), children);
854
+ }
855
+ return /*#__PURE__*/React__default.createElement(Icon, {
856
+ width: size,
857
+ height: size,
858
+ ref: ref,
859
+ xmlns: "http://www.w3.org/2000/svg",
860
+ viewBox: "0 0 32 32",
861
+ fill: "currentColor",
862
+ ...rest
863
+ }, _path65 || (_path65 = /*#__PURE__*/React__default.createElement("path", {
864
+ d: "M16 28L9 21 10.4 19.6 16 25.2 21.6 19.6 23 21z"
865
+ })), children);
866
+ });
867
+ if (process.env.NODE_ENV !== "production") {
868
+ ChevronSortDown.propTypes = iconPropTypes;
869
+ }
870
+ const ChevronSortUp = /*#__PURE__*/React__default.forwardRef(function ChevronSortUp(_ref30, ref) {
871
+ let {
872
+ children,
873
+ size = 16,
874
+ ...rest
875
+ } = _ref30;
876
+ if (size === 16 || size === "16" || size === "16px") {
877
+ return /*#__PURE__*/React__default.createElement(Icon, {
878
+ width: size,
879
+ height: size,
880
+ ref: ref,
881
+ xmlns: "http://www.w3.org/2000/svg",
882
+ viewBox: "0 0 16 16",
883
+ fill: "currentColor",
884
+ ...rest
885
+ }, _path66 || (_path66 = /*#__PURE__*/React__default.createElement("path", {
886
+ d: "M8 2L11.5 5.5 10.8 6.2 8 3.4 5.2 6.2 4.5 5.5z"
887
+ })), children);
888
+ }
889
+ return /*#__PURE__*/React__default.createElement(Icon, {
890
+ width: size,
891
+ height: size,
892
+ ref: ref,
893
+ xmlns: "http://www.w3.org/2000/svg",
894
+ viewBox: "0 0 32 32",
895
+ fill: "currentColor",
896
+ ...rest
897
+ }, _path67 || (_path67 = /*#__PURE__*/React__default.createElement("path", {
898
+ d: "M16 4L23 11 21.6 12.4 16 6.8 10.4 12.4 9 11z"
899
+ })), children);
900
+ });
901
+ if (process.env.NODE_ENV !== "production") {
902
+ ChevronSortUp.propTypes = iconPropTypes;
903
+ }
904
+ const ChevronUp = /*#__PURE__*/React__default.forwardRef(function ChevronUp(_ref31, ref) {
905
+ let {
906
+ children,
907
+ size = 16,
908
+ ...rest
909
+ } = _ref31;
910
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") {
911
+ return /*#__PURE__*/React__default.createElement(Icon, {
912
+ width: size,
913
+ height: size,
914
+ ref: ref,
915
+ xmlns: "http://www.w3.org/2000/svg",
916
+ viewBox: "0 0 10 6",
917
+ fill: "currentColor",
918
+ ...rest
919
+ }, _path68 || (_path68 = /*#__PURE__*/React__default.createElement("path", {
920
+ d: "M5 0L10 5 9.3 5.7 5 1.4 0.7 5.7 0 5z"
921
+ })), children);
922
+ }
923
+ if (size === 16 || size === "16" || size === "16px") {
924
+ return /*#__PURE__*/React__default.createElement(Icon, {
925
+ width: size,
926
+ height: size,
927
+ ref: ref,
928
+ xmlns: "http://www.w3.org/2000/svg",
929
+ viewBox: "0 0 16 16",
930
+ fill: "currentColor",
931
+ ...rest
932
+ }, _path69 || (_path69 = /*#__PURE__*/React__default.createElement("path", {
933
+ d: "M8 5L13 10 12.3 10.7 8 6.4 3.7 10.7 3 10z"
934
+ })), children);
935
+ }
936
+ return /*#__PURE__*/React__default.createElement(Icon, {
937
+ width: size,
938
+ height: size,
939
+ ref: ref,
940
+ xmlns: "http://www.w3.org/2000/svg",
941
+ viewBox: "0 0 32 32",
942
+ fill: "currentColor",
943
+ ...rest
944
+ }, _path70 || (_path70 = /*#__PURE__*/React__default.createElement("path", {
945
+ d: "M16 10L26 20 24.6 21.4 16 12.8 7.4 21.4 6 20z"
946
+ })), children);
947
+ });
948
+ if (process.env.NODE_ENV !== "production") {
949
+ ChevronUp.propTypes = iconPropTypes;
950
+ }
951
+ const ChevronUpOutline = /*#__PURE__*/React__default.forwardRef(function ChevronUpOutline(_ref32, ref) {
952
+ let {
953
+ children,
954
+ size = 16,
955
+ ...rest
956
+ } = _ref32;
957
+ return /*#__PURE__*/React__default.createElement(Icon, {
958
+ width: size,
959
+ height: size,
960
+ ref: ref,
961
+ xmlns: "http://www.w3.org/2000/svg",
962
+ viewBox: "0 0 32 32",
963
+ fill: "currentColor",
964
+ ...rest
965
+ }, _path71 || (_path71 = /*#__PURE__*/React__default.createElement("path", {
966
+ d: "M9.4142 19.4142L16 12.8286 22.5858 19.4142 24 18 16 10 8 18 9.4142 19.4142z"
967
+ })), _path72 || (_path72 = /*#__PURE__*/React__default.createElement("path", {
968
+ 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"
969
+ })), children);
970
+ });
971
+ if (process.env.NODE_ENV !== "production") {
972
+ ChevronUpOutline.propTypes = iconPropTypes;
973
+ }
974
+ const ChildNode = /*#__PURE__*/React__default.forwardRef(function ChildNode(_ref33, ref) {
975
+ let {
976
+ children,
977
+ size = 16,
978
+ ...rest
979
+ } = _ref33;
980
+ return /*#__PURE__*/React__default.createElement(Icon, {
981
+ width: size,
982
+ height: size,
983
+ ref: ref,
984
+ xmlns: "http://www.w3.org/2000/svg",
985
+ viewBox: "0 0 32 32",
986
+ fill: "currentColor",
987
+ ...rest
988
+ }, _path73 || (_path73 = /*#__PURE__*/React__default.createElement("path", {
989
+ 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"
990
+ })), children);
991
+ });
992
+ if (process.env.NODE_ENV !== "production") {
993
+ ChildNode.propTypes = iconPropTypes;
994
+ }
995
+ const Chip = /*#__PURE__*/React__default.forwardRef(function Chip(_ref34, ref) {
996
+ let {
997
+ children,
998
+ size = 16,
999
+ ...rest
1000
+ } = _ref34;
1001
+ return /*#__PURE__*/React__default.createElement(Icon, {
1002
+ width: size,
1003
+ height: size,
1004
+ ref: ref,
1005
+ xmlns: "http://www.w3.org/2000/svg",
1006
+ viewBox: "0 0 32 32",
1007
+ fill: "currentColor",
1008
+ ...rest
1009
+ }, _path74 || (_path74 = /*#__PURE__*/React__default.createElement("path", {
1010
+ d: "M11,11V21H21V11Zm8,8H13V13h6Z"
1011
+ })), _path75 || (_path75 = /*#__PURE__*/React__default.createElement("path", {
1012
+ 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"
1013
+ })), children);
1014
+ });
1015
+ if (process.env.NODE_ENV !== "production") {
1016
+ Chip.propTypes = iconPropTypes;
1017
+ }
1018
+ const Choices = /*#__PURE__*/React__default.forwardRef(function Choices(_ref35, ref) {
1019
+ let {
1020
+ children,
1021
+ size = 16,
1022
+ ...rest
1023
+ } = _ref35;
1024
+ return /*#__PURE__*/React__default.createElement(Icon, {
1025
+ width: size,
1026
+ height: size,
1027
+ ref: ref,
1028
+ xmlns: "http://www.w3.org/2000/svg",
1029
+ viewBox: "0 0 32 32",
1030
+ fill: "currentColor",
1031
+ ...rest
1032
+ }, _path76 || (_path76 = /*#__PURE__*/React__default.createElement("path", {
1033
+ 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"
1034
+ })), children);
1035
+ });
1036
+ if (process.env.NODE_ENV !== "production") {
1037
+ Choices.propTypes = iconPropTypes;
1038
+ }
1039
+ const ChooseItem = /*#__PURE__*/React__default.forwardRef(function ChooseItem(_ref36, ref) {
1040
+ let {
1041
+ children,
1042
+ size = 16,
1043
+ ...rest
1044
+ } = _ref36;
1045
+ return /*#__PURE__*/React__default.createElement(Icon, {
1046
+ width: size,
1047
+ height: size,
1048
+ ref: ref,
1049
+ xmlns: "http://www.w3.org/2000/svg",
1050
+ viewBox: "0 0 32 32",
1051
+ fill: "currentColor",
1052
+ ...rest
1053
+ }, _path77 || (_path77 = /*#__PURE__*/React__default.createElement("path", {
1054
+ 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"
1055
+ })), children);
1056
+ });
1057
+ if (process.env.NODE_ENV !== "production") {
1058
+ ChooseItem.propTypes = iconPropTypes;
1059
+ }
1060
+ const ChoroplethMap = /*#__PURE__*/React__default.forwardRef(function ChoroplethMap(_ref37, ref) {
1061
+ let {
1062
+ children,
1063
+ size = 16,
1064
+ ...rest
1065
+ } = _ref37;
1066
+ return /*#__PURE__*/React__default.createElement(Icon, {
1067
+ width: size,
1068
+ height: size,
1069
+ ref: ref,
1070
+ xmlns: "http://www.w3.org/2000/svg",
1071
+ viewBox: "0 0 32 32",
1072
+ fill: "currentColor",
1073
+ ...rest
1074
+ }, _path78 || (_path78 = /*#__PURE__*/React__default.createElement("path", {
1075
+ 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"
1076
+ })), children);
1077
+ });
1078
+ if (process.env.NODE_ENV !== "production") {
1079
+ ChoroplethMap.propTypes = iconPropTypes;
1080
+ }
1081
+ const CicsCmas = /*#__PURE__*/React__default.forwardRef(function CicsCmas(_ref38, ref) {
1082
+ let {
1083
+ children,
1084
+ size = 16,
1085
+ ...rest
1086
+ } = _ref38;
1087
+ return /*#__PURE__*/React__default.createElement(Icon, {
1088
+ width: size,
1089
+ height: size,
1090
+ ref: ref,
1091
+ xmlns: "http://www.w3.org/2000/svg",
1092
+ viewBox: "0 0 32 32",
1093
+ fill: "currentColor",
1094
+ ...rest
1095
+ }, _path79 || (_path79 = /*#__PURE__*/React__default.createElement("path", {
1096
+ 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"
1097
+ })), _path80 || (_path80 = /*#__PURE__*/React__default.createElement("path", {
1098
+ d: "M6,6H26V18h2V6a2.0059,2.0059,0,0,0-2-2H6A2.0059,2.0059,0,0,0,4,6V18H6Z"
1099
+ })), children);
1100
+ });
1101
+ if (process.env.NODE_ENV !== "production") {
1102
+ CicsCmas.propTypes = iconPropTypes;
1103
+ }
1104
+ const CicsDb2Connection = /*#__PURE__*/React__default.forwardRef(function CicsDb2Connection(_ref39, ref) {
1105
+ let {
1106
+ children,
1107
+ size = 16,
1108
+ ...rest
1109
+ } = _ref39;
1110
+ return /*#__PURE__*/React__default.createElement(Icon, {
1111
+ width: size,
1112
+ height: size,
1113
+ ref: ref,
1114
+ xmlns: "http://www.w3.org/2000/svg",
1115
+ viewBox: "0 0 32 32",
1116
+ fill: "currentColor",
1117
+ ...rest
1118
+ }, _path81 || (_path81 = /*#__PURE__*/React__default.createElement("path", {
1119
+ 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"
1120
+ })), _path82 || (_path82 = /*#__PURE__*/React__default.createElement("path", {
1121
+ 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"
1122
+ })), children);
1123
+ });
1124
+ if (process.env.NODE_ENV !== "production") {
1125
+ CicsDb2Connection.propTypes = iconPropTypes;
1126
+ }
1127
+ const CicsExplorer = /*#__PURE__*/React__default.forwardRef(function CicsExplorer(_ref40, ref) {
1128
+ let {
1129
+ children,
1130
+ size = 16,
1131
+ ...rest
1132
+ } = _ref40;
1133
+ return /*#__PURE__*/React__default.createElement(Icon, {
1134
+ width: size,
1135
+ height: size,
1136
+ ref: ref,
1137
+ xmlns: "http://www.w3.org/2000/svg",
1138
+ viewBox: "0 0 32 32",
1139
+ fill: "currentColor",
1140
+ ...rest
1141
+ }, _path83 || (_path83 = /*#__PURE__*/React__default.createElement("path", {
1142
+ 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"
1143
+ })), _path84 || (_path84 = /*#__PURE__*/React__default.createElement("path", {
1144
+ 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"
1145
+ })), children);
1146
+ });
1147
+ if (process.env.NODE_ENV !== "production") {
1148
+ CicsExplorer.propTypes = iconPropTypes;
1149
+ }
1150
+ const CicsProgram = /*#__PURE__*/React__default.forwardRef(function CicsProgram(_ref41, ref) {
1151
+ let {
1152
+ children,
1153
+ size = 16,
1154
+ ...rest
1155
+ } = _ref41;
1156
+ return /*#__PURE__*/React__default.createElement(Icon, {
1157
+ width: size,
1158
+ height: size,
1159
+ ref: ref,
1160
+ xmlns: "http://www.w3.org/2000/svg",
1161
+ viewBox: "0 0 32 32",
1162
+ fill: "currentColor",
1163
+ ...rest
1164
+ }, _path85 || (_path85 = /*#__PURE__*/React__default.createElement("path", {
1165
+ 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"
1166
+ })), _circle || (_circle = /*#__PURE__*/React__default.createElement("circle", {
1167
+ cx: "9",
1168
+ cy: "8",
1169
+ r: "1"
1170
+ })), _circle2 || (_circle2 = /*#__PURE__*/React__default.createElement("circle", {
1171
+ cx: "6",
1172
+ cy: "8",
1173
+ r: "1"
1174
+ })), _path86 || (_path86 = /*#__PURE__*/React__default.createElement("path", {
1175
+ 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"
1176
+ })), children);
1177
+ });
1178
+ if (process.env.NODE_ENV !== "production") {
1179
+ CicsProgram.propTypes = iconPropTypes;
1180
+ }
1181
+ const CicsSit = /*#__PURE__*/React__default.forwardRef(function CicsSit(_ref42, ref) {
1182
+ let {
1183
+ children,
1184
+ size = 16,
1185
+ ...rest
1186
+ } = _ref42;
1187
+ return /*#__PURE__*/React__default.createElement(Icon, {
1188
+ width: size,
1189
+ height: size,
1190
+ ref: ref,
1191
+ xmlns: "http://www.w3.org/2000/svg",
1192
+ viewBox: "0 0 32 32",
1193
+ fill: "currentColor",
1194
+ ...rest
1195
+ }, _path87 || (_path87 = /*#__PURE__*/React__default.createElement("path", {
1196
+ d: "M23 22L30 27 23 32 23 22z"
1197
+ })), _path88 || (_path88 = /*#__PURE__*/React__default.createElement("path", {
1198
+ 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"
1199
+ })), children);
1200
+ });
1201
+ if (process.env.NODE_ENV !== "production") {
1202
+ CicsSit.propTypes = iconPropTypes;
1203
+ }
1204
+ const CicsSitOverrides = /*#__PURE__*/React__default.forwardRef(function CicsSitOverrides(_ref43, ref) {
1205
+ let {
1206
+ children,
1207
+ size = 16,
1208
+ ...rest
1209
+ } = _ref43;
1210
+ return /*#__PURE__*/React__default.createElement(Icon, {
1211
+ width: size,
1212
+ height: size,
1213
+ ref: ref,
1214
+ xmlns: "http://www.w3.org/2000/svg",
1215
+ viewBox: "0 0 32 32",
1216
+ fill: "currentColor",
1217
+ ...rest
1218
+ }, _path89 || (_path89 = /*#__PURE__*/React__default.createElement("path", {
1219
+ 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"
1220
+ })), children);
1221
+ });
1222
+ if (process.env.NODE_ENV !== "production") {
1223
+ CicsSitOverrides.propTypes = iconPropTypes;
1224
+ }
1225
+ const CicsSystemGroup = /*#__PURE__*/React__default.forwardRef(function CicsSystemGroup(_ref44, ref) {
1226
+ let {
1227
+ children,
1228
+ size = 16,
1229
+ ...rest
1230
+ } = _ref44;
1231
+ return /*#__PURE__*/React__default.createElement(Icon, {
1232
+ width: size,
1233
+ height: size,
1234
+ ref: ref,
1235
+ xmlns: "http://www.w3.org/2000/svg",
1236
+ viewBox: "0 0 32 32",
1237
+ fill: "currentColor",
1238
+ ...rest
1239
+ }, _path90 || (_path90 = /*#__PURE__*/React__default.createElement("path", {
1240
+ 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"
1241
+ })), _path91 || (_path91 = /*#__PURE__*/React__default.createElement("path", {
1242
+ 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"
1243
+ })), _path92 || (_path92 = /*#__PURE__*/React__default.createElement("path", {
1244
+ d: "M4,4H9V2H4A2.0059,2.0059,0,0,0,2,4V28a2.0059,2.0059,0,0,0,2,2H9V28H4Z"
1245
+ })), children);
1246
+ });
1247
+ if (process.env.NODE_ENV !== "production") {
1248
+ CicsSystemGroup.propTypes = iconPropTypes;
1249
+ }
1250
+ const CicsTransactionServerZos = /*#__PURE__*/React__default.forwardRef(function CicsTransactionServerZos(_ref45, ref) {
1251
+ let {
1252
+ children,
1253
+ size = 16,
1254
+ ...rest
1255
+ } = _ref45;
1256
+ return /*#__PURE__*/React__default.createElement(Icon, {
1257
+ width: size,
1258
+ height: size,
1259
+ ref: ref,
1260
+ xmlns: "http://www.w3.org/2000/svg",
1261
+ viewBox: "0 0 32 32",
1262
+ fill: "currentColor",
1263
+ ...rest
1264
+ }, _circle3 || (_circle3 = /*#__PURE__*/React__default.createElement("circle", {
1265
+ cx: "28",
1266
+ cy: "10",
1267
+ r: "2"
1268
+ })), _path93 || (_path93 = /*#__PURE__*/React__default.createElement("path", {
1269
+ d: "M18,29h-7v-2h7c4.9626,0,9-4.0374,9-9v-4h2v4c0,6.0654-4.9346,11-11,11Z"
1270
+ })), _path94 || (_path94 = /*#__PURE__*/React__default.createElement("path", {
1271
+ 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"
1272
+ })), _circle4 || (_circle4 = /*#__PURE__*/React__default.createElement("circle", {
1273
+ cx: "4",
1274
+ cy: "22",
1275
+ r: "2"
1276
+ })), _path95 || (_path95 = /*#__PURE__*/React__default.createElement("path", {
1277
+ d: "M5,18H3v-4C3,7.9346,7.9346,3,14,3h7v2h-7c-4.9626,0-9,4.0374-9,9v4Z"
1278
+ })), children);
1279
+ });
1280
+ if (process.env.NODE_ENV !== "production") {
1281
+ CicsTransactionServerZos.propTypes = iconPropTypes;
1282
+ }
1283
+ const CicsWuiRegion = /*#__PURE__*/React__default.forwardRef(function CicsWuiRegion(_ref46, ref) {
1284
+ let {
1285
+ children,
1286
+ size = 16,
1287
+ ...rest
1288
+ } = _ref46;
1289
+ return /*#__PURE__*/React__default.createElement(Icon, {
1290
+ width: size,
1291
+ height: size,
1292
+ ref: ref,
1293
+ xmlns: "http://www.w3.org/2000/svg",
1294
+ viewBox: "0 0 32 32",
1295
+ fill: "currentColor",
1296
+ ...rest
1297
+ }, _path96 || (_path96 = /*#__PURE__*/React__default.createElement("path", {
1298
+ 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"
1299
+ })), _path97 || (_path97 = /*#__PURE__*/React__default.createElement("path", {
1300
+ d: "M26,4H6A2.0059,2.0059,0,0,0,4,6V18H6V6H26V18h2V6A2.0059,2.0059,0,0,0,26,4Z"
1301
+ })), children);
1302
+ });
1303
+ if (process.env.NODE_ENV !== "production") {
1304
+ CicsWuiRegion.propTypes = iconPropTypes;
1305
+ }
1306
+ const CicsRegion = /*#__PURE__*/React__default.forwardRef(function CicsRegion(_ref47, ref) {
1307
+ let {
1308
+ children,
1309
+ size = 16,
1310
+ ...rest
1311
+ } = _ref47;
1312
+ return /*#__PURE__*/React__default.createElement(Icon, {
1313
+ width: size,
1314
+ height: size,
1315
+ ref: ref,
1316
+ xmlns: "http://www.w3.org/2000/svg",
1317
+ viewBox: "0 0 32 32",
1318
+ fill: "currentColor",
1319
+ ...rest
1320
+ }, _path98 || (_path98 = /*#__PURE__*/React__default.createElement("path", {
1321
+ 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"
1322
+ })), _path99 || (_path99 = /*#__PURE__*/React__default.createElement("path", {
1323
+ 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"
1324
+ })), children);
1325
+ });
1326
+ if (process.env.NODE_ENV !== "production") {
1327
+ CicsRegion.propTypes = iconPropTypes;
1328
+ }
1329
+ const CicsRegionAlt = /*#__PURE__*/React__default.forwardRef(function CicsRegionAlt(_ref48, ref) {
1330
+ let {
1331
+ children,
1332
+ size = 16,
1333
+ ...rest
1334
+ } = _ref48;
1335
+ return /*#__PURE__*/React__default.createElement(Icon, {
1336
+ width: size,
1337
+ height: size,
1338
+ ref: ref,
1339
+ xmlns: "http://www.w3.org/2000/svg",
1340
+ viewBox: "0 0 32 32",
1341
+ fill: "currentColor",
1342
+ ...rest
1343
+ }, _path100 || (_path100 = /*#__PURE__*/React__default.createElement("path", {
1344
+ 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"
1345
+ })), children);
1346
+ });
1347
+ if (process.env.NODE_ENV !== "production") {
1348
+ CicsRegionAlt.propTypes = iconPropTypes;
1349
+ }
1350
+ const CicsRegionRouting = /*#__PURE__*/React__default.forwardRef(function CicsRegionRouting(_ref49, ref) {
1351
+ let {
1352
+ children,
1353
+ size = 16,
1354
+ ...rest
1355
+ } = _ref49;
1356
+ return /*#__PURE__*/React__default.createElement(Icon, {
1357
+ width: size,
1358
+ height: size,
1359
+ ref: ref,
1360
+ xmlns: "http://www.w3.org/2000/svg",
1361
+ viewBox: "0 0 32 32",
1362
+ fill: "currentColor",
1363
+ ...rest
1364
+ }, _path101 || (_path101 = /*#__PURE__*/React__default.createElement("path", {
1365
+ 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"
1366
+ })), _path102 || (_path102 = /*#__PURE__*/React__default.createElement("path", {
1367
+ 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"
1368
+ })), children);
1369
+ });
1370
+ if (process.env.NODE_ENV !== "production") {
1371
+ CicsRegionRouting.propTypes = iconPropTypes;
1372
+ }
1373
+ const CicsRegionTarget = /*#__PURE__*/React__default.forwardRef(function CicsRegionTarget(_ref50, ref) {
1374
+ let {
1375
+ children,
1376
+ size = 16,
1377
+ ...rest
1378
+ } = _ref50;
1379
+ return /*#__PURE__*/React__default.createElement(Icon, {
1380
+ width: size,
1381
+ height: size,
1382
+ ref: ref,
1383
+ xmlns: "http://www.w3.org/2000/svg",
1384
+ viewBox: "0 0 32 32",
1385
+ fill: "currentColor",
1386
+ ...rest
1387
+ }, _path103 || (_path103 = /*#__PURE__*/React__default.createElement("path", {
1388
+ 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"
1389
+ })), _path104 || (_path104 = /*#__PURE__*/React__default.createElement("path", {
1390
+ 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"
1391
+ })), children);
1392
+ });
1393
+ if (process.env.NODE_ENV !== "production") {
1394
+ CicsRegionTarget.propTypes = iconPropTypes;
1395
+ }
1396
+ const Cicsplex = /*#__PURE__*/React__default.forwardRef(function Cicsplex(_ref51, ref) {
1397
+ let {
1398
+ children,
1399
+ size = 16,
1400
+ ...rest
1401
+ } = _ref51;
1402
+ return /*#__PURE__*/React__default.createElement(Icon, {
1403
+ width: size,
1404
+ height: size,
1405
+ ref: ref,
1406
+ xmlns: "http://www.w3.org/2000/svg",
1407
+ viewBox: "0 0 32 32",
1408
+ fill: "currentColor",
1409
+ ...rest
1410
+ }, _path105 || (_path105 = /*#__PURE__*/React__default.createElement("path", {
1411
+ 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"
1412
+ })), children);
1413
+ });
1414
+ if (process.env.NODE_ENV !== "production") {
1415
+ Cicsplex.propTypes = iconPropTypes;
1416
+ }
1417
+ const CircleFilled = /*#__PURE__*/React__default.forwardRef(function CircleFilled(_ref52, ref) {
1418
+ let {
1419
+ children,
1420
+ size = 16,
1421
+ ...rest
1422
+ } = _ref52;
1423
+ return /*#__PURE__*/React__default.createElement(Icon, {
1424
+ width: size,
1425
+ height: size,
1426
+ ref: ref,
1427
+ xmlns: "http://www.w3.org/2000/svg",
1428
+ viewBox: "0 0 32 32",
1429
+ fill: "currentColor",
1430
+ ...rest
1431
+ }, _circle5 || (_circle5 = /*#__PURE__*/React__default.createElement("circle", {
1432
+ cx: "16",
1433
+ cy: "16",
1434
+ r: "10"
1435
+ })), _path106 || (_path106 = /*#__PURE__*/React__default.createElement("path", {
1436
+ 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"
1437
+ })), children);
1438
+ });
1439
+ if (process.env.NODE_ENV !== "production") {
1440
+ CircleFilled.propTypes = iconPropTypes;
1441
+ }
1442
+ const CircleOutline = /*#__PURE__*/React__default.forwardRef(function CircleOutline(_ref53, ref) {
1443
+ let {
1444
+ children,
1445
+ size = 16,
1446
+ ...rest
1447
+ } = _ref53;
1448
+ return /*#__PURE__*/React__default.createElement(Icon, {
1449
+ width: size,
1450
+ height: size,
1451
+ ref: ref,
1452
+ xmlns: "http://www.w3.org/2000/svg",
1453
+ viewBox: "0 0 32 32",
1454
+ fill: "currentColor",
1455
+ ...rest
1456
+ }, _path107 || (_path107 = /*#__PURE__*/React__default.createElement("path", {
1457
+ strokeWidth: "0",
1458
+ 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"
1459
+ })), children);
1460
+ });
1461
+ if (process.env.NODE_ENV !== "production") {
1462
+ CircleOutline.propTypes = iconPropTypes;
1463
+ }
1464
+ const CircleSolid = /*#__PURE__*/React__default.forwardRef(function CircleSolid(_ref54, ref) {
1465
+ let {
1466
+ children,
1467
+ size = 16,
1468
+ ...rest
1469
+ } = _ref54;
1470
+ return /*#__PURE__*/React__default.createElement(Icon, {
1471
+ width: size,
1472
+ height: size,
1473
+ ref: ref,
1474
+ xmlns: "http://www.w3.org/2000/svg",
1475
+ viewBox: "0 0 32 32",
1476
+ fill: "currentColor",
1477
+ ...rest
1478
+ }, _circle6 || (_circle6 = /*#__PURE__*/React__default.createElement("circle", {
1479
+ cx: "16",
1480
+ cy: "16",
1481
+ r: "14"
1482
+ })), children);
1483
+ });
1484
+ if (process.env.NODE_ENV !== "production") {
1485
+ CircleSolid.propTypes = iconPropTypes;
1486
+ }
1487
+ const CircleDash = /*#__PURE__*/React__default.forwardRef(function CircleDash(_ref55, ref) {
1488
+ let {
1489
+ children,
1490
+ size = 16,
1491
+ ...rest
1492
+ } = _ref55;
1493
+ return /*#__PURE__*/React__default.createElement(Icon, {
1494
+ width: size,
1495
+ height: size,
1496
+ ref: ref,
1497
+ xmlns: "http://www.w3.org/2000/svg",
1498
+ viewBox: "0 0 32 32",
1499
+ fill: "currentColor",
1500
+ ...rest
1501
+ }, _path108 || (_path108 = /*#__PURE__*/React__default.createElement("path", {
1502
+ 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"
1503
+ })), children);
1504
+ });
1505
+ if (process.env.NODE_ENV !== "production") {
1506
+ CircleDash.propTypes = iconPropTypes;
1507
+ }
1508
+ const CircleFill = /*#__PURE__*/React__default.forwardRef(function CircleFill(_ref56, ref) {
1509
+ let {
1510
+ children,
1511
+ size = 16,
1512
+ ...rest
1513
+ } = _ref56;
1514
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") {
1515
+ return /*#__PURE__*/React__default.createElement(Icon, {
1516
+ width: size,
1517
+ height: size,
1518
+ ref: ref,
1519
+ xmlns: "http://www.w3.org/2000/svg",
1520
+ viewBox: "0 0 16 16",
1521
+ fill: "currentColor",
1522
+ ...rest
1523
+ }, _circle7 || (_circle7 = /*#__PURE__*/React__default.createElement("circle", {
1524
+ cx: "8",
1525
+ cy: "8",
1526
+ r: "6"
1527
+ })), children);
1528
+ }
1529
+ return /*#__PURE__*/React__default.createElement(Icon, {
1530
+ width: size,
1531
+ height: size,
1532
+ ref: ref,
1533
+ xmlns: "http://www.w3.org/2000/svg",
1534
+ viewBox: "0 0 16 16",
1535
+ fill: "currentColor",
1536
+ ...rest
1537
+ }, _circle8 || (_circle8 = /*#__PURE__*/React__default.createElement("circle", {
1538
+ cx: "8",
1539
+ cy: "8",
1540
+ r: "6"
1541
+ })), children);
1542
+ });
1543
+ if (process.env.NODE_ENV !== "production") {
1544
+ CircleFill.propTypes = iconPropTypes;
1545
+ }
1546
+ const WatsonHealthCircleMeasurement = /*#__PURE__*/React__default.forwardRef(function WatsonHealthCircleMeasurement(_ref57, ref) {
1547
+ let {
1548
+ children,
1549
+ size = 16,
1550
+ ...rest
1551
+ } = _ref57;
1552
+ return /*#__PURE__*/React__default.createElement(Icon, {
1553
+ width: size,
1554
+ height: size,
1555
+ ref: ref,
1556
+ xmlns: "http://www.w3.org/2000/svg",
1557
+ viewBox: "0 0 32 32",
1558
+ fill: "currentColor",
1559
+ ...rest
1560
+ }, _path109 || (_path109 = /*#__PURE__*/React__default.createElement("path", {
1561
+ 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"
1562
+ })), _path110 || (_path110 = /*#__PURE__*/React__default.createElement("path", {
1563
+ d: "M21,12.41V16h2V9H16v2h3.59L11,19.59V16H9v7h7V21H12.41Z"
1564
+ })), children);
1565
+ });
1566
+ if (process.env.NODE_ENV !== "production") {
1567
+ WatsonHealthCircleMeasurement.propTypes = iconPropTypes;
1568
+ }
1569
+ const CirclePacking = /*#__PURE__*/React__default.forwardRef(function CirclePacking(_ref58, ref) {
1570
+ let {
1571
+ children,
1572
+ size = 16,
1573
+ ...rest
1574
+ } = _ref58;
1575
+ return /*#__PURE__*/React__default.createElement(Icon, {
1576
+ width: size,
1577
+ height: size,
1578
+ ref: ref,
1579
+ xmlns: "http://www.w3.org/2000/svg",
1580
+ viewBox: "0 0 32 32",
1581
+ fill: "currentColor",
1582
+ ...rest
1583
+ }, _path111 || (_path111 = /*#__PURE__*/React__default.createElement("path", {
1584
+ 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"
1585
+ })), children);
1586
+ });
1587
+ if (process.env.NODE_ENV !== "production") {
1588
+ CirclePacking.propTypes = iconPropTypes;
1589
+ }
1590
+ const CircleStroke = /*#__PURE__*/React__default.forwardRef(function CircleStroke(_ref59, ref) {
1591
+ let {
1592
+ children,
1593
+ size = 16,
1594
+ ...rest
1595
+ } = _ref59;
1596
+ if (size === "glyph" || size === "glyph" || size === "glyphpx") {
1597
+ return /*#__PURE__*/React__default.createElement(Icon, {
1598
+ width: size,
1599
+ height: size,
1600
+ ref: ref,
1601
+ xmlns: "http://www.w3.org/2000/svg",
1602
+ viewBox: "0 0 16 16",
1603
+ fill: "currentColor",
1604
+ ...rest
1605
+ }, _path112 || (_path112 = /*#__PURE__*/React__default.createElement("path", {
1606
+ 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"
1607
+ })), children);
1608
+ }
1609
+ return /*#__PURE__*/React__default.createElement(Icon, {
1610
+ width: size,
1611
+ height: size,
1612
+ ref: ref,
1613
+ xmlns: "http://www.w3.org/2000/svg",
1614
+ viewBox: "0 0 16 16",
1615
+ fill: "currentColor",
1616
+ ...rest
1617
+ }, _path113 || (_path113 = /*#__PURE__*/React__default.createElement("path", {
1618
+ 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"
1619
+ })), children);
1620
+ });
1621
+ if (process.env.NODE_ENV !== "production") {
1622
+ CircleStroke.propTypes = iconPropTypes;
1623
+ }
1624
+ const QCircuitComposer = /*#__PURE__*/React__default.forwardRef(function QCircuitComposer(_ref60, ref) {
1625
+ let {
1626
+ children,
1627
+ size = 16,
1628
+ ...rest
1629
+ } = _ref60;
1630
+ return /*#__PURE__*/React__default.createElement(Icon, {
1631
+ width: size,
1632
+ height: size,
1633
+ ref: ref,
1634
+ xmlns: "http://www.w3.org/2000/svg",
1635
+ viewBox: "0 0 32 32",
1636
+ fill: "currentColor",
1637
+ ...rest
1638
+ }, _path114 || (_path114 = /*#__PURE__*/React__default.createElement("path", {
1639
+ 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"
1640
+ })), _path115 || (_path115 = /*#__PURE__*/React__default.createElement("path", {
1641
+ 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"
1642
+ })), children);
1643
+ });
1644
+ if (process.env.NODE_ENV !== "production") {
1645
+ QCircuitComposer.propTypes = iconPropTypes;
1646
+ }
1647
+ const ClassicBatch = /*#__PURE__*/React__default.forwardRef(function ClassicBatch(_ref61, ref) {
1648
+ let {
1649
+ children,
1650
+ size = 16,
1651
+ ...rest
1652
+ } = _ref61;
1653
+ return /*#__PURE__*/React__default.createElement(Icon, {
1654
+ width: size,
1655
+ height: size,
1656
+ ref: ref,
1657
+ xmlns: "http://www.w3.org/2000/svg",
1658
+ viewBox: "0 0 32 32",
1659
+ fill: "currentColor",
1660
+ ...rest
1661
+ }, _path116 || (_path116 = /*#__PURE__*/React__default.createElement("path", {
1662
+ 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"
1663
+ })), children);
1664
+ });
1665
+ if (process.env.NODE_ENV !== "production") {
1666
+ ClassicBatch.propTypes = iconPropTypes;
1667
+ }
1668
+ const Classification = /*#__PURE__*/React__default.forwardRef(function Classification(_ref62, ref) {
1669
+ let {
1670
+ children,
1671
+ size = 16,
1672
+ ...rest
1673
+ } = _ref62;
1674
+ return /*#__PURE__*/React__default.createElement(Icon, {
1675
+ width: size,
1676
+ height: size,
1677
+ ref: ref,
1678
+ xmlns: "http://www.w3.org/2000/svg",
1679
+ viewBox: "0 0 32 32",
1680
+ fill: "currentColor",
1681
+ ...rest
1682
+ }, _circle9 || (_circle9 = /*#__PURE__*/React__default.createElement("circle", {
1683
+ cx: "15",
1684
+ cy: "19",
1685
+ r: "1"
1686
+ })), _path117 || (_path117 = /*#__PURE__*/React__default.createElement("path", {
1687
+ 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"
1688
+ })), children);
1689
+ });
1690
+ if (process.env.NODE_ENV !== "production") {
1691
+ Classification.propTypes = iconPropTypes;
1692
+ }
1693
+ const ClassifierLanguage = /*#__PURE__*/React__default.forwardRef(function ClassifierLanguage(_ref63, ref) {
1694
+ let {
1695
+ children,
1696
+ size = 16,
1697
+ ...rest
1698
+ } = _ref63;
1699
+ return /*#__PURE__*/React__default.createElement(Icon, {
1700
+ width: size,
1701
+ height: size,
1702
+ ref: ref,
1703
+ xmlns: "http://www.w3.org/2000/svg",
1704
+ viewBox: "0 0 32 32",
1705
+ fill: "currentColor",
1706
+ ...rest
1707
+ }, _path118 || (_path118 = /*#__PURE__*/React__default.createElement("path", {
1708
+ 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"
1709
+ })), children);
1710
+ });
1711
+ if (process.env.NODE_ENV !== "production") {
1712
+ ClassifierLanguage.propTypes = iconPropTypes;
1713
+ }
1714
+ const Clean = /*#__PURE__*/React__default.forwardRef(function Clean(_ref64, ref) {
1715
+ let {
1716
+ children,
1717
+ size = 16,
1718
+ ...rest
1719
+ } = _ref64;
1720
+ return /*#__PURE__*/React__default.createElement(Icon, {
1721
+ width: size,
1722
+ height: size,
1723
+ ref: ref,
1724
+ xmlns: "http://www.w3.org/2000/svg",
1725
+ viewBox: "0 0 32 32",
1726
+ fill: "currentColor",
1727
+ ...rest
1728
+ }, _path119 || (_path119 = /*#__PURE__*/React__default.createElement("path", {
1729
+ d: "M20 18H26V20H20z",
1730
+ transform: "rotate(-180 23 19)"
1731
+ })), _path120 || (_path120 = /*#__PURE__*/React__default.createElement("path", {
1732
+ d: "M24 26H30V28H24z",
1733
+ transform: "rotate(-180 27 27)"
1734
+ })), _path121 || (_path121 = /*#__PURE__*/React__default.createElement("path", {
1735
+ d: "M22 22H28V24H22z",
1736
+ transform: "rotate(-180 25 23)"
1737
+ })), _path122 || (_path122 = /*#__PURE__*/React__default.createElement("path", {
1738
+ 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"
1739
+ })), children);
1740
+ });
1741
+ if (process.env.NODE_ENV !== "production") {
1742
+ Clean.propTypes = iconPropTypes;
1743
+ }
1744
+ const Close = /*#__PURE__*/React__default.forwardRef(function Close(_ref65, ref) {
1745
+ let {
1746
+ children,
1747
+ size = 16,
1748
+ ...rest
1749
+ } = _ref65;
1750
+ return /*#__PURE__*/React__default.createElement(Icon, {
1751
+ width: size,
1752
+ height: size,
1753
+ ref: ref,
1754
+ xmlns: "http://www.w3.org/2000/svg",
1755
+ viewBox: "0 0 32 32",
1756
+ fill: "currentColor",
1757
+ ...rest
1758
+ }, _path123 || (_path123 = /*#__PURE__*/React__default.createElement("path", {
1759
+ 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"
1760
+ })), children);
1761
+ });
1762
+ if (process.env.NODE_ENV !== "production") {
1763
+ Close.propTypes = iconPropTypes;
1764
+ }
1765
+ const CloseFilled = /*#__PURE__*/React__default.forwardRef(function CloseFilled(_ref66, ref) {
1766
+ let {
1767
+ children,
1768
+ size = 16,
1769
+ ...rest
1770
+ } = _ref66;
1771
+ if (size === 16 || size === "16" || size === "16px") {
1772
+ return /*#__PURE__*/React__default.createElement(Icon, {
1773
+ width: size,
1774
+ height: size,
1775
+ ref: ref,
1776
+ xmlns: "http://www.w3.org/2000/svg",
1777
+ viewBox: "0 0 16 16",
1778
+ fill: "currentColor",
1779
+ ...rest
1780
+ }, _path124 || (_path124 = /*#__PURE__*/React__default.createElement("path", {
1781
+ 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"
1782
+ })), children);
1783
+ }
1784
+ return /*#__PURE__*/React__default.createElement(Icon, {
1785
+ width: size,
1786
+ height: size,
1787
+ ref: ref,
1788
+ xmlns: "http://www.w3.org/2000/svg",
1789
+ viewBox: "0 0 32 32",
1790
+ fill: "currentColor",
1791
+ ...rest
1792
+ }, _path125 || (_path125 = /*#__PURE__*/React__default.createElement("path", {
1793
+ 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"
1794
+ })), _path126 || (_path126 = /*#__PURE__*/React__default.createElement("path", {
1795
+ 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",
1796
+ "data-icon-path": "inner-path",
1797
+ opacity: "0"
1798
+ })), children);
1799
+ });
1800
+ if (process.env.NODE_ENV !== "production") {
1801
+ CloseFilled.propTypes = iconPropTypes;
1802
+ }
1803
+ const CloseLarge = /*#__PURE__*/React__default.forwardRef(function CloseLarge(_ref67, ref) {
1804
+ let {
1805
+ children,
1806
+ size = 16,
1807
+ ...rest
1808
+ } = _ref67;
1809
+ return /*#__PURE__*/React__default.createElement(Icon, {
1810
+ width: size,
1811
+ height: size,
1812
+ ref: ref,
1813
+ xmlns: "http://www.w3.org/2000/svg",
1814
+ viewBox: "0 0 32 32",
1815
+ fill: "currentColor",
1816
+ ...rest
1817
+ }, _path127 || (_path127 = /*#__PURE__*/React__default.createElement("path", {
1818
+ 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"
1819
+ })), children);
1820
+ });
1821
+ if (process.env.NODE_ENV !== "production") {
1822
+ CloseLarge.propTypes = iconPropTypes;
1823
+ }
1824
+ const CloseOutline = /*#__PURE__*/React__default.forwardRef(function CloseOutline(_ref68, ref) {
1825
+ let {
1826
+ children,
1827
+ size = 16,
1828
+ ...rest
1829
+ } = _ref68;
1830
+ return /*#__PURE__*/React__default.createElement(Icon, {
1831
+ width: size,
1832
+ height: size,
1833
+ ref: ref,
1834
+ xmlns: "http://www.w3.org/2000/svg",
1835
+ viewBox: "0 0 32 32",
1836
+ fill: "currentColor",
1837
+ ...rest
1838
+ }, _path128 || (_path128 = /*#__PURE__*/React__default.createElement("path", {
1839
+ 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"
1840
+ })), _path129 || (_path129 = /*#__PURE__*/React__default.createElement("path", {
1841
+ 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"
1842
+ })), children);
1843
+ });
1844
+ if (process.env.NODE_ENV !== "production") {
1845
+ CloseOutline.propTypes = iconPropTypes;
1846
+ }
1847
+ const ClosedCaption = /*#__PURE__*/React__default.forwardRef(function ClosedCaption(_ref69, ref) {
1848
+ let {
1849
+ children,
1850
+ size = 16,
1851
+ ...rest
1852
+ } = _ref69;
1853
+ return /*#__PURE__*/React__default.createElement(Icon, {
1854
+ width: size,
1855
+ height: size,
1856
+ ref: ref,
1857
+ xmlns: "http://www.w3.org/2000/svg",
1858
+ viewBox: "0 0 32 32",
1859
+ fill: "currentColor",
1860
+ ...rest
1861
+ }, _path130 || (_path130 = /*#__PURE__*/React__default.createElement("path", {
1862
+ d: "M15 21H10a2 2 0 01-2-2V13a2 2 0 012-2h5v2H10v6h5zM25 21H20a2 2 0 01-2-2V13a2 2 0 012-2h5v2H20v6h5z"
1863
+ })), _path131 || (_path131 = /*#__PURE__*/React__default.createElement("path", {
1864
+ 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"
1865
+ })), children);
1866
+ });
1867
+ if (process.env.NODE_ENV !== "production") {
1868
+ ClosedCaption.propTypes = iconPropTypes;
1869
+ }
1870
+ const ClosedCaptionAlt = /*#__PURE__*/React__default.forwardRef(function ClosedCaptionAlt(_ref70, ref) {
1871
+ let {
1872
+ children,
1873
+ size = 16,
1874
+ ...rest
1875
+ } = _ref70;
1876
+ return /*#__PURE__*/React__default.createElement(Icon, {
1877
+ width: size,
1878
+ height: size,
1879
+ ref: ref,
1880
+ xmlns: "http://www.w3.org/2000/svg",
1881
+ viewBox: "0 0 32 32",
1882
+ fill: "currentColor",
1883
+ ...rest
1884
+ }, _path132 || (_path132 = /*#__PURE__*/React__default.createElement("path", {
1885
+ d: "M19 17H25V19H19zM11 17H17V19H11zM6 17H9V19H6zM22 13H26V15H22zM13 13H20V15H13zM6 13H11V15H6z"
1886
+ })), _path133 || (_path133 = /*#__PURE__*/React__default.createElement("path", {
1887
+ 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"
1888
+ })), children);
1889
+ });
1890
+ if (process.env.NODE_ENV !== "production") {
1891
+ ClosedCaptionAlt.propTypes = iconPropTypes;
1892
+ }
1893
+ const ClosedCaptionFilled = /*#__PURE__*/React__default.forwardRef(function ClosedCaptionFilled(_ref71, ref) {
1894
+ let {
1895
+ children,
1896
+ size = 16,
1897
+ ...rest
1898
+ } = _ref71;
1899
+ return /*#__PURE__*/React__default.createElement(Icon, {
1900
+ width: size,
1901
+ height: size,
1902
+ ref: ref,
1903
+ xmlns: "http://www.w3.org/2000/svg",
1904
+ viewBox: "0 0 32 32",
1905
+ fill: "currentColor",
1906
+ ...rest
1907
+ }, _path134 || (_path134 = /*#__PURE__*/React__default.createElement("path", {
1908
+ 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"
1909
+ })), children);
1910
+ });
1911
+ if (process.env.NODE_ENV !== "production") {
1912
+ ClosedCaptionFilled.propTypes = iconPropTypes;
1913
+ }
1914
+ const Cloud = /*#__PURE__*/React__default.forwardRef(function Cloud(_ref72, ref) {
1915
+ let {
1916
+ children,
1917
+ size = 16,
1918
+ ...rest
1919
+ } = _ref72;
1920
+ return /*#__PURE__*/React__default.createElement(Icon, {
1921
+ width: size,
1922
+ height: size,
1923
+ ref: ref,
1924
+ xmlns: "http://www.w3.org/2000/svg",
1925
+ viewBox: "0 0 32 32",
1926
+ fill: "currentColor",
1927
+ ...rest
1928
+ }, _path135 || (_path135 = /*#__PURE__*/React__default.createElement("path", {
1929
+ 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"
1930
+ })), children);
1931
+ });
1932
+ if (process.env.NODE_ENV !== "production") {
1933
+ Cloud.propTypes = iconPropTypes;
1934
+ }
1935
+ const CloudAlerting = /*#__PURE__*/React__default.forwardRef(function CloudAlerting(_ref73, ref) {
1936
+ let {
1937
+ children,
1938
+ size = 16,
1939
+ ...rest
1940
+ } = _ref73;
1941
+ return /*#__PURE__*/React__default.createElement(Icon, {
1942
+ width: size,
1943
+ height: size,
1944
+ ref: ref,
1945
+ xmlns: "http://www.w3.org/2000/svg",
1946
+ viewBox: "0 0 32 32",
1947
+ fill: "currentColor",
1948
+ ...rest
1949
+ }, _path136 || (_path136 = /*#__PURE__*/React__default.createElement("path", {
1950
+ d: "M28,17v5H4V6H15V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V17ZM18,28H14V24h4Z"
1951
+ })), _path137 || (_path137 = /*#__PURE__*/React__default.createElement("path", {
1952
+ 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"
1953
+ })), children);
1954
+ });
1955
+ if (process.env.NODE_ENV !== "production") {
1956
+ CloudAlerting.propTypes = iconPropTypes;
1957
+ }
1958
+ const CloudAuditing = /*#__PURE__*/React__default.forwardRef(function CloudAuditing(_ref74, ref) {
1959
+ let {
1960
+ children,
1961
+ size = 16,
1962
+ ...rest
1963
+ } = _ref74;
1964
+ return /*#__PURE__*/React__default.createElement(Icon, {
1965
+ width: size,
1966
+ height: size,
1967
+ ref: ref,
1968
+ xmlns: "http://www.w3.org/2000/svg",
1969
+ viewBox: "0 0 32 32",
1970
+ fill: "currentColor",
1971
+ ...rest
1972
+ }, _path138 || (_path138 = /*#__PURE__*/React__default.createElement("path", {
1973
+ d: "M28,16v6H4V6H16V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z"
1974
+ })), _path139 || (_path139 = /*#__PURE__*/React__default.createElement("path", {
1975
+ d: "M21 15L16 10.04 17.59 8.47 21 11.85 28.41 4.5 30 6.08 21 15z"
1976
+ })), children);
1977
+ });
1978
+ if (process.env.NODE_ENV !== "production") {
1979
+ CloudAuditing.propTypes = iconPropTypes;
1980
+ }
1981
+ const CloudDataOps = /*#__PURE__*/React__default.forwardRef(function CloudDataOps(_ref75, ref) {
1982
+ let {
1983
+ children,
1984
+ size = 16,
1985
+ ...rest
1986
+ } = _ref75;
1987
+ return /*#__PURE__*/React__default.createElement(Icon, {
1988
+ width: size,
1989
+ height: size,
1990
+ ref: ref,
1991
+ xmlns: "http://www.w3.org/2000/svg",
1992
+ viewBox: "0 0 32 32",
1993
+ fill: "currentColor",
1994
+ ...rest
1995
+ }, _path140 || (_path140 = /*#__PURE__*/React__default.createElement("path", {
1996
+ 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"
1997
+ })), children);
1998
+ });
1999
+ if (process.env.NODE_ENV !== "production") {
2000
+ CloudDataOps.propTypes = iconPropTypes;
2001
+ }
2002
+ const CloudDownload = /*#__PURE__*/React__default.forwardRef(function CloudDownload(_ref76, ref) {
2003
+ let {
2004
+ children,
2005
+ size = 16,
2006
+ ...rest
2007
+ } = _ref76;
2008
+ return /*#__PURE__*/React__default.createElement(Icon, {
2009
+ width: size,
2010
+ height: size,
2011
+ ref: ref,
2012
+ xmlns: "http://www.w3.org/2000/svg",
2013
+ viewBox: "0 0 32 32",
2014
+ fill: "currentColor",
2015
+ ...rest
2016
+ }, _path141 || (_path141 = /*#__PURE__*/React__default.createElement("path", {
2017
+ 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"
2018
+ })), _path142 || (_path142 = /*#__PURE__*/React__default.createElement("path", {
2019
+ 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"
2020
+ })), children);
2021
+ });
2022
+ if (process.env.NODE_ENV !== "production") {
2023
+ CloudDownload.propTypes = iconPropTypes;
2024
+ }
2025
+ const CloudLogging = /*#__PURE__*/React__default.forwardRef(function CloudLogging(_ref77, ref) {
2026
+ let {
2027
+ children,
2028
+ size = 16,
2029
+ ...rest
2030
+ } = _ref77;
2031
+ return /*#__PURE__*/React__default.createElement(Icon, {
2032
+ width: size,
2033
+ height: size,
2034
+ ref: ref,
2035
+ xmlns: "http://www.w3.org/2000/svg",
2036
+ viewBox: "0 0 32 32",
2037
+ fill: "currentColor",
2038
+ ...rest
2039
+ }, _path143 || (_path143 = /*#__PURE__*/React__default.createElement("path", {
2040
+ d: "M28 16v6H4V6H15V4H4A2 2 0 002 6V22a2 2 0 002 2h8v4H8v2H24V28H20V24h8a2 2 0 002-2V16zM18 28H14V24h4zM18 4H30V6H18z"
2041
+ })), _path144 || (_path144 = /*#__PURE__*/React__default.createElement("path", {
2042
+ d: "M18 8H30V10H18zM18 12H24V14H18z"
2043
+ })), children);
2044
+ });
2045
+ if (process.env.NODE_ENV !== "production") {
2046
+ CloudLogging.propTypes = iconPropTypes;
2047
+ }
2048
+ const CloudMonitoring = /*#__PURE__*/React__default.forwardRef(function CloudMonitoring(_ref78, ref) {
2049
+ let {
2050
+ children,
2051
+ size = 16,
2052
+ ...rest
2053
+ } = _ref78;
2054
+ return /*#__PURE__*/React__default.createElement(Icon, {
2055
+ width: size,
2056
+ height: size,
2057
+ ref: ref,
2058
+ xmlns: "http://www.w3.org/2000/svg",
2059
+ viewBox: "0 0 32 32",
2060
+ fill: "currentColor",
2061
+ ...rest
2062
+ }, _path145 || (_path145 = /*#__PURE__*/React__default.createElement("path", {
2063
+ d: "M28,16v6H4V6h7V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z"
2064
+ })), _path146 || (_path146 = /*#__PURE__*/React__default.createElement("path", {
2065
+ 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"
2066
+ })), children);
2067
+ });
2068
+ if (process.env.NODE_ENV !== "production") {
2069
+ CloudMonitoring.propTypes = iconPropTypes;
2070
+ }
2071
+ const CloudOffline = /*#__PURE__*/React__default.forwardRef(function CloudOffline(_ref79, ref) {
2072
+ let {
2073
+ children,
2074
+ size = 16,
2075
+ ...rest
2076
+ } = _ref79;
2077
+ return /*#__PURE__*/React__default.createElement(Icon, {
2078
+ width: size,
2079
+ height: size,
2080
+ ref: ref,
2081
+ xmlns: "http://www.w3.org/2000/svg",
2082
+ viewBox: "0 0 32 32",
2083
+ fill: "currentColor",
2084
+ ...rest
2085
+ }, _path147 || (_path147 = /*#__PURE__*/React__default.createElement("path", {
2086
+ 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"
2087
+ })), children);
2088
+ });
2089
+ if (process.env.NODE_ENV !== "production") {
2090
+ CloudOffline.propTypes = iconPropTypes;
2091
+ }
2092
+ const CloudServiceManagement = /*#__PURE__*/React__default.forwardRef(function CloudServiceManagement(_ref80, ref) {
2093
+ let {
2094
+ children,
2095
+ size = 16,
2096
+ ...rest
2097
+ } = _ref80;
2098
+ return /*#__PURE__*/React__default.createElement(Icon, {
2099
+ width: size,
2100
+ height: size,
2101
+ ref: ref,
2102
+ xmlns: "http://www.w3.org/2000/svg",
2103
+ viewBox: "0 0 32 32",
2104
+ fill: "currentColor",
2105
+ ...rest
2106
+ }, _path148 || (_path148 = /*#__PURE__*/React__default.createElement("path", {
2107
+ d: "M28,17v5H4V6H14V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V17ZM18,28H14V24h4Z"
2108
+ })), _path149 || (_path149 = /*#__PURE__*/React__default.createElement("path", {
2109
+ 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"
2110
+ })), children);
2111
+ });
2112
+ if (process.env.NODE_ENV !== "production") {
2113
+ CloudServiceManagement.propTypes = iconPropTypes;
2114
+ }
2115
+ const CloudUpload = /*#__PURE__*/React__default.forwardRef(function CloudUpload(_ref81, ref) {
2116
+ let {
2117
+ children,
2118
+ size = 16,
2119
+ ...rest
2120
+ } = _ref81;
2121
+ return /*#__PURE__*/React__default.createElement(Icon, {
2122
+ width: size,
2123
+ height: size,
2124
+ ref: ref,
2125
+ xmlns: "http://www.w3.org/2000/svg",
2126
+ viewBox: "0 0 32 32",
2127
+ fill: "currentColor",
2128
+ ...rest
2129
+ }, _path150 || (_path150 = /*#__PURE__*/React__default.createElement("path", {
2130
+ 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"
2131
+ })), _path151 || (_path151 = /*#__PURE__*/React__default.createElement("path", {
2132
+ 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"
2133
+ })), children);
2134
+ });
2135
+ if (process.env.NODE_ENV !== "production") {
2136
+ CloudUpload.propTypes = iconPropTypes;
2137
+ }
2138
+ const CloudApp = /*#__PURE__*/React__default.forwardRef(function CloudApp(_ref82, ref) {
2139
+ let {
2140
+ children,
2141
+ size = 16,
2142
+ ...rest
2143
+ } = _ref82;
2144
+ return /*#__PURE__*/React__default.createElement(Icon, {
2145
+ width: size,
2146
+ height: size,
2147
+ ref: ref,
2148
+ xmlns: "http://www.w3.org/2000/svg",
2149
+ viewBox: "0 0 32 32",
2150
+ fill: "currentColor",
2151
+ ...rest
2152
+ }, _path152 || (_path152 = /*#__PURE__*/React__default.createElement("path", {
2153
+ 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"
2154
+ })), children);
2155
+ });
2156
+ if (process.env.NODE_ENV !== "production") {
2157
+ CloudApp.propTypes = iconPropTypes;
2158
+ }
2159
+ const CloudCeiling = /*#__PURE__*/React__default.forwardRef(function CloudCeiling(_ref83, ref) {
2160
+ let {
2161
+ children,
2162
+ size = 16,
2163
+ ...rest
2164
+ } = _ref83;
2165
+ return /*#__PURE__*/React__default.createElement(Icon, {
2166
+ width: size,
2167
+ height: size,
2168
+ ref: ref,
2169
+ xmlns: "http://www.w3.org/2000/svg",
2170
+ viewBox: "0 0 32 32",
2171
+ fill: "currentColor",
2172
+ ...rest
2173
+ }, _path153 || (_path153 = /*#__PURE__*/React__default.createElement("path", {
2174
+ 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"
2175
+ })), _path154 || (_path154 = /*#__PURE__*/React__default.createElement("path", {
2176
+ 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"
2177
+ })), children);
2178
+ });
2179
+ if (process.env.NODE_ENV !== "production") {
2180
+ CloudCeiling.propTypes = iconPropTypes;
2181
+ }
2182
+ const CloudFoundry_1 = /*#__PURE__*/React__default.forwardRef(function CloudFoundry_1(_ref84, ref) {
2183
+ let {
2184
+ children,
2185
+ size = 16,
2186
+ ...rest
2187
+ } = _ref84;
2188
+ return /*#__PURE__*/React__default.createElement(Icon, {
2189
+ width: size,
2190
+ height: size,
2191
+ ref: ref,
2192
+ xmlns: "http://www.w3.org/2000/svg",
2193
+ viewBox: "0 0 32 32",
2194
+ fill: "currentColor",
2195
+ ...rest
2196
+ }, _path155 || (_path155 = /*#__PURE__*/React__default.createElement("path", {
2197
+ 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"
2198
+ })), _path156 || (_path156 = /*#__PURE__*/React__default.createElement("path", {
2199
+ d: "M14 24H11a2 2 0 01-2-2V19a2 2 0 012-2h3v2H11v3h3zM21 15V13H19a2 2 0 00-2 2v2H16v2h1v5h2V19h2V17H19V15z"
2200
+ })), children);
2201
+ });
2202
+ if (process.env.NODE_ENV !== "production") {
2203
+ CloudFoundry_1.propTypes = iconPropTypes;
2204
+ }
2205
+ const CloudFoundry_2 = /*#__PURE__*/React__default.forwardRef(function CloudFoundry_2(_ref85, ref) {
2206
+ let {
2207
+ children,
2208
+ size = 16,
2209
+ ...rest
2210
+ } = _ref85;
2211
+ return /*#__PURE__*/React__default.createElement(Icon, {
2212
+ width: size,
2213
+ height: size,
2214
+ ref: ref,
2215
+ xmlns: "http://www.w3.org/2000/svg",
2216
+ viewBox: "0 0 32 32",
2217
+ fill: "currentColor",
2218
+ ...rest
2219
+ }, _path157 || (_path157 = /*#__PURE__*/React__default.createElement("path", {
2220
+ 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"
2221
+ })), children);
2222
+ });
2223
+ if (process.env.NODE_ENV !== "production") {
2224
+ CloudFoundry_2.propTypes = iconPropTypes;
2225
+ }
2226
+ const CloudRegistry = /*#__PURE__*/React__default.forwardRef(function CloudRegistry(_ref86, ref) {
2227
+ let {
2228
+ children,
2229
+ size = 16,
2230
+ ...rest
2231
+ } = _ref86;
2232
+ return /*#__PURE__*/React__default.createElement(Icon, {
2233
+ width: size,
2234
+ height: size,
2235
+ ref: ref,
2236
+ xmlns: "http://www.w3.org/2000/svg",
2237
+ viewBox: "0 0 32 32",
2238
+ fill: "currentColor",
2239
+ ...rest
2240
+ }, _path158 || (_path158 = /*#__PURE__*/React__default.createElement("path", {
2241
+ 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"
2242
+ })), _path159 || (_path159 = /*#__PURE__*/React__default.createElement("path", {
2243
+ 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"
2244
+ })), children);
2245
+ });
2246
+ if (process.env.NODE_ENV !== "production") {
2247
+ CloudRegistry.propTypes = iconPropTypes;
2248
+ }
2249
+ const CloudSatellite = /*#__PURE__*/React__default.forwardRef(function CloudSatellite(_ref87, ref) {
2250
+ let {
2251
+ children,
2252
+ size = 16,
2253
+ ...rest
2254
+ } = _ref87;
2255
+ return /*#__PURE__*/React__default.createElement(Icon, {
2256
+ width: size,
2257
+ height: size,
2258
+ ref: ref,
2259
+ xmlns: "http://www.w3.org/2000/svg",
2260
+ viewBox: "0 0 32 32",
2261
+ fill: "currentColor",
2262
+ ...rest
2263
+ }, _circle0 || (_circle0 = /*#__PURE__*/React__default.createElement("circle", {
2264
+ cx: "9",
2265
+ cy: "20",
2266
+ r: "2"
2267
+ })), _path160 || (_path160 = /*#__PURE__*/React__default.createElement("path", {
2268
+ 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"
2269
+ })), _circle1 || (_circle1 = /*#__PURE__*/React__default.createElement("circle", {
2270
+ cx: "23",
2271
+ cy: "12",
2272
+ r: "2"
2273
+ })), _path161 || (_path161 = /*#__PURE__*/React__default.createElement("path", {
2274
+ 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"
2275
+ })), children);
2276
+ });
2277
+ if (process.env.NODE_ENV !== "production") {
2278
+ CloudSatellite.propTypes = iconPropTypes;
2279
+ }
2280
+ const CloudSatelliteConfig = /*#__PURE__*/React__default.forwardRef(function CloudSatelliteConfig(_ref88, ref) {
2281
+ let {
2282
+ children,
2283
+ size = 16,
2284
+ ...rest
2285
+ } = _ref88;
2286
+ return /*#__PURE__*/React__default.createElement(Icon, {
2287
+ width: size,
2288
+ height: size,
2289
+ ref: ref,
2290
+ xmlns: "http://www.w3.org/2000/svg",
2291
+ viewBox: "0 0 32 32",
2292
+ fill: "currentColor",
2293
+ ...rest
2294
+ }, _path162 || (_path162 = /*#__PURE__*/React__default.createElement("path", {
2295
+ 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"
2296
+ })), _circle10 || (_circle10 = /*#__PURE__*/React__default.createElement("circle", {
2297
+ cx: "7",
2298
+ cy: "20",
2299
+ r: "2"
2300
+ })), _path163 || (_path163 = /*#__PURE__*/React__default.createElement("path", {
2301
+ 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"
2302
+ })), _circle11 || (_circle11 = /*#__PURE__*/React__default.createElement("circle", {
2303
+ cx: "21",
2304
+ cy: "12",
2305
+ r: "2"
2306
+ })), _path164 || (_path164 = /*#__PURE__*/React__default.createElement("path", {
2307
+ 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"
2308
+ })), children);
2309
+ });
2310
+ if (process.env.NODE_ENV !== "production") {
2311
+ CloudSatelliteConfig.propTypes = iconPropTypes;
2312
+ }
2313
+ const CloudSatelliteLink = /*#__PURE__*/React__default.forwardRef(function CloudSatelliteLink(_ref89, ref) {
2314
+ let {
2315
+ children,
2316
+ size = 16,
2317
+ ...rest
2318
+ } = _ref89;
2319
+ return /*#__PURE__*/React__default.createElement(Icon, {
2320
+ width: size,
2321
+ height: size,
2322
+ ref: ref,
2323
+ xmlns: "http://www.w3.org/2000/svg",
2324
+ viewBox: "0 0 32 32",
2325
+ fill: "currentColor",
2326
+ ...rest
2327
+ }, _path165 || (_path165 = /*#__PURE__*/React__default.createElement("path", {
2328
+ 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"
2329
+ })), _path166 || (_path166 = /*#__PURE__*/React__default.createElement("path", {
2330
+ 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"
2331
+ })), _circle12 || (_circle12 = /*#__PURE__*/React__default.createElement("circle", {
2332
+ cx: "7",
2333
+ cy: "20",
2334
+ r: "2"
2335
+ })), _path167 || (_path167 = /*#__PURE__*/React__default.createElement("path", {
2336
+ 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"
2337
+ })), _circle13 || (_circle13 = /*#__PURE__*/React__default.createElement("circle", {
2338
+ cx: "21",
2339
+ cy: "12",
2340
+ r: "2"
2341
+ })), _path168 || (_path168 = /*#__PURE__*/React__default.createElement("path", {
2342
+ 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"
2343
+ })), children);
2344
+ });
2345
+ if (process.env.NODE_ENV !== "production") {
2346
+ CloudSatelliteLink.propTypes = iconPropTypes;
2347
+ }
2348
+ const CloudSatelliteServices = /*#__PURE__*/React__default.forwardRef(function CloudSatelliteServices(_ref90, ref) {
2349
+ let {
2350
+ children,
2351
+ size = 16,
2352
+ ...rest
2353
+ } = _ref90;
2354
+ return /*#__PURE__*/React__default.createElement(Icon, {
2355
+ width: size,
2356
+ height: size,
2357
+ ref: ref,
2358
+ xmlns: "http://www.w3.org/2000/svg",
2359
+ viewBox: "0 0 32 32",
2360
+ fill: "currentColor",
2361
+ ...rest
2362
+ }, _path169 || (_path169 = /*#__PURE__*/React__default.createElement("path", {
2363
+ 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"
2364
+ })), _circle14 || (_circle14 = /*#__PURE__*/React__default.createElement("circle", {
2365
+ cx: "7",
2366
+ cy: "20",
2367
+ r: "2"
2368
+ })), _path170 || (_path170 = /*#__PURE__*/React__default.createElement("path", {
2369
+ 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"
2370
+ })), _circle15 || (_circle15 = /*#__PURE__*/React__default.createElement("circle", {
2371
+ cx: "21",
2372
+ cy: "12",
2373
+ r: "2"
2374
+ })), _path171 || (_path171 = /*#__PURE__*/React__default.createElement("path", {
2375
+ 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"
2376
+ })), children);
2377
+ });
2378
+ if (process.env.NODE_ENV !== "production") {
2379
+ CloudSatelliteServices.propTypes = iconPropTypes;
2380
+ }
2381
+ const CloudServices = /*#__PURE__*/React__default.forwardRef(function CloudServices(_ref91, ref) {
2382
+ let {
2383
+ children,
2384
+ size = 16,
2385
+ ...rest
2386
+ } = _ref91;
2387
+ return /*#__PURE__*/React__default.createElement(Icon, {
2388
+ width: size,
2389
+ height: size,
2390
+ ref: ref,
2391
+ xmlns: "http://www.w3.org/2000/svg",
2392
+ viewBox: "0 0 32 32",
2393
+ fill: "currentColor",
2394
+ ...rest
2395
+ }, _path172 || (_path172 = /*#__PURE__*/React__default.createElement("path", {
2396
+ 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"
2397
+ })), _path173 || (_path173 = /*#__PURE__*/React__default.createElement("path", {
2398
+ 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"
2399
+ })), children);
2400
+ });
2401
+ if (process.env.NODE_ENV !== "production") {
2402
+ CloudServices.propTypes = iconPropTypes;
2403
+ }
2404
+ const Cloudy = /*#__PURE__*/React__default.forwardRef(function Cloudy(_ref92, ref) {
2405
+ let {
2406
+ children,
2407
+ size = 16,
2408
+ ...rest
2409
+ } = _ref92;
2410
+ return /*#__PURE__*/React__default.createElement(Icon, {
2411
+ width: size,
2412
+ height: size,
2413
+ ref: ref,
2414
+ xmlns: "http://www.w3.org/2000/svg",
2415
+ viewBox: "0 0 32 32",
2416
+ fill: "currentColor",
2417
+ ...rest
2418
+ }, _path174 || (_path174 = /*#__PURE__*/React__default.createElement("path", {
2419
+ 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"
2420
+ })), children);
2421
+ });
2422
+ if (process.env.NODE_ENV !== "production") {
2423
+ Cloudy.propTypes = iconPropTypes;
2424
+ }
2425
+ const WatsonHealthCobbAngle = /*#__PURE__*/React__default.forwardRef(function WatsonHealthCobbAngle(_ref93, ref) {
2426
+ let {
2427
+ children,
2428
+ size = 16,
2429
+ ...rest
2430
+ } = _ref93;
2431
+ return /*#__PURE__*/React__default.createElement(Icon, {
2432
+ width: size,
2433
+ height: size,
2434
+ ref: ref,
2435
+ xmlns: "http://www.w3.org/2000/svg",
2436
+ viewBox: "0 0 32 32",
2437
+ fill: "currentColor",
2438
+ ...rest
2439
+ }, _path175 || (_path175 = /*#__PURE__*/React__default.createElement("path", {
2440
+ 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"
2441
+ })), children);
2442
+ });
2443
+ if (process.env.NODE_ENV !== "production") {
2444
+ WatsonHealthCobbAngle.propTypes = iconPropTypes;
2445
+ }
2446
+ const Code = /*#__PURE__*/React__default.forwardRef(function Code(_ref94, ref) {
2447
+ let {
2448
+ children,
2449
+ size = 16,
2450
+ ...rest
2451
+ } = _ref94;
2452
+ return /*#__PURE__*/React__default.createElement(Icon, {
2453
+ width: size,
2454
+ height: size,
2455
+ ref: ref,
2456
+ xmlns: "http://www.w3.org/2000/svg",
2457
+ viewBox: "0 0 32 32",
2458
+ fill: "currentColor",
2459
+ ...rest
2460
+ }, _path176 || (_path176 = /*#__PURE__*/React__default.createElement("path", {
2461
+ 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"
2462
+ })), _path177 || (_path177 = /*#__PURE__*/React__default.createElement("path", {
2463
+ d: "M5.91 15H26.080000000000002V17H5.91z",
2464
+ transform: "rotate(-75 15.996 16)"
2465
+ })), children);
2466
+ });
2467
+ if (process.env.NODE_ENV !== "production") {
2468
+ Code.propTypes = iconPropTypes;
2469
+ }
2470
+ const CodeHide = /*#__PURE__*/React__default.forwardRef(function CodeHide(_ref95, ref) {
2471
+ let {
2472
+ children,
2473
+ size = 16,
2474
+ ...rest
2475
+ } = _ref95;
2476
+ return /*#__PURE__*/React__default.createElement(Icon, {
2477
+ width: size,
2478
+ height: size,
2479
+ ref: ref,
2480
+ xmlns: "http://www.w3.org/2000/svg",
2481
+ viewBox: "0 0 32 32",
2482
+ fill: "currentColor",
2483
+ ...rest
2484
+ }, _path178 || (_path178 = /*#__PURE__*/React__default.createElement("path", {
2485
+ 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"
2486
+ })), children);
2487
+ });
2488
+ if (process.env.NODE_ENV !== "production") {
2489
+ CodeHide.propTypes = iconPropTypes;
2490
+ }
2491
+ const CodeReference = /*#__PURE__*/React__default.forwardRef(function CodeReference(_ref96, ref) {
2492
+ let {
2493
+ children,
2494
+ size = 16,
2495
+ ...rest
2496
+ } = _ref96;
2497
+ return /*#__PURE__*/React__default.createElement(Icon, {
2498
+ width: size,
2499
+ height: size,
2500
+ ref: ref,
2501
+ xmlns: "http://www.w3.org/2000/svg",
2502
+ viewBox: "0 0 32 32",
2503
+ fill: "currentColor",
2504
+ ...rest
2505
+ }, _path179 || (_path179 = /*#__PURE__*/React__default.createElement("path", {
2506
+ 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"
2507
+ })), _path180 || (_path180 = /*#__PURE__*/React__default.createElement("path", {
2508
+ d: "M8.944 9.001H24.974000000000004V11.001H8.944z",
2509
+ transform: "rotate(-74.995 16.96 10)"
2510
+ })), _path181 || (_path181 = /*#__PURE__*/React__default.createElement("path", {
2511
+ d: "M4 10L10 4 11.414 5.414 6.828 10 11.414 14.586 10 16 4 10z"
2512
+ })), children);
2513
+ });
2514
+ if (process.env.NODE_ENV !== "production") {
2515
+ CodeReference.propTypes = iconPropTypes;
2516
+ }
2517
+ const CodeBlock = /*#__PURE__*/React__default.forwardRef(function CodeBlock(_ref97, ref) {
2518
+ let {
2519
+ children,
2520
+ size = 16,
2521
+ ...rest
2522
+ } = _ref97;
2523
+ return /*#__PURE__*/React__default.createElement(Icon, {
2524
+ width: size,
2525
+ height: size,
2526
+ ref: ref,
2527
+ xmlns: "http://www.w3.org/2000/svg",
2528
+ viewBox: "0 0 32 32",
2529
+ fill: "currentColor",
2530
+ ...rest
2531
+ }, _path182 || (_path182 = /*#__PURE__*/React__default.createElement("path", {
2532
+ strokeWidth: "0",
2533
+ d: "M2 3H10V5H2zM6 9H30V11H6zM6 15H30V17H6zM2 27H10V29H2zM6 21H22V23H6z"
2534
+ })), children);
2535
+ });
2536
+ if (process.env.NODE_ENV !== "production") {
2537
+ CodeBlock.propTypes = iconPropTypes;
2538
+ }
2539
+ const CodeSigningService = /*#__PURE__*/React__default.forwardRef(function CodeSigningService(_ref98, ref) {
2540
+ let {
2541
+ children,
2542
+ size = 16,
2543
+ ...rest
2544
+ } = _ref98;
2545
+ return /*#__PURE__*/React__default.createElement(Icon, {
2546
+ width: size,
2547
+ height: size,
2548
+ ref: ref,
2549
+ xmlns: "http://www.w3.org/2000/svg",
2550
+ viewBox: "0 0 32 32",
2551
+ fill: "currentColor",
2552
+ ...rest
2553
+ }, _circle16 || (_circle16 = /*#__PURE__*/React__default.createElement("circle", {
2554
+ cx: "25",
2555
+ cy: "20",
2556
+ r: "1"
2557
+ })), _path183 || (_path183 = /*#__PURE__*/React__default.createElement("path", {
2558
+ 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"
2559
+ })), children);
2560
+ });
2561
+ if (process.env.NODE_ENV !== "production") {
2562
+ CodeSigningService.propTypes = iconPropTypes;
2563
+ }
2564
+ const Cognitive = /*#__PURE__*/React__default.forwardRef(function Cognitive(_ref99, ref) {
2565
+ let {
2566
+ children,
2567
+ size = 16,
2568
+ ...rest
2569
+ } = _ref99;
2570
+ return /*#__PURE__*/React__default.createElement(Icon, {
2571
+ width: size,
2572
+ height: size,
2573
+ ref: ref,
2574
+ xmlns: "http://www.w3.org/2000/svg",
2575
+ viewBox: "0 0 32 32",
2576
+ fill: "currentColor",
2577
+ ...rest
2578
+ }, _path184 || (_path184 = /*#__PURE__*/React__default.createElement("path", {
2579
+ 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"
2580
+ })), children);
2581
+ });
2582
+ if (process.env.NODE_ENV !== "production") {
2583
+ Cognitive.propTypes = iconPropTypes;
2584
+ }
2585
+ const Collaborate = /*#__PURE__*/React__default.forwardRef(function Collaborate(_ref100, ref) {
2586
+ let {
2587
+ children,
2588
+ size = 16,
2589
+ ...rest
2590
+ } = _ref100;
2591
+ return /*#__PURE__*/React__default.createElement(Icon, {
2592
+ width: size,
2593
+ height: size,
2594
+ ref: ref,
2595
+ xmlns: "http://www.w3.org/2000/svg",
2596
+ viewBox: "0 0 32 32",
2597
+ fill: "currentColor",
2598
+ ...rest
2599
+ }, _path185 || (_path185 = /*#__PURE__*/React__default.createElement("path", {
2600
+ 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"
2601
+ })), children);
2602
+ });
2603
+ if (process.env.NODE_ENV !== "production") {
2604
+ Collaborate.propTypes = iconPropTypes;
2605
+ }
2606
+ const CollapseAll = /*#__PURE__*/React__default.forwardRef(function CollapseAll(_ref101, ref) {
2607
+ let {
2608
+ children,
2609
+ size = 16,
2610
+ ...rest
2611
+ } = _ref101;
2612
+ return /*#__PURE__*/React__default.createElement(Icon, {
2613
+ width: size,
2614
+ height: size,
2615
+ ref: ref,
2616
+ xmlns: "http://www.w3.org/2000/svg",
2617
+ viewBox: "0 0 32 32",
2618
+ fill: "currentColor",
2619
+ ...rest
2620
+ }, _path186 || (_path186 = /*#__PURE__*/React__default.createElement("path", {
2621
+ d: "M30,15H28V7H13V5H28a2.0023,2.0023,0,0,1,2,2Z"
2622
+ })), _path187 || (_path187 = /*#__PURE__*/React__default.createElement("path", {
2623
+ d: "M25,20H23V12H8V10H23a2.0023,2.0023,0,0,1,2,2Z"
2624
+ })), _path188 || (_path188 = /*#__PURE__*/React__default.createElement("path", {
2625
+ 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"
2626
+ })), children);
2627
+ });
2628
+ if (process.env.NODE_ENV !== "production") {
2629
+ CollapseAll.propTypes = iconPropTypes;
2630
+ }
2631
+ const CollapseCategories = /*#__PURE__*/React__default.forwardRef(function CollapseCategories(_ref102, ref) {
2632
+ let {
2633
+ children,
2634
+ size = 16,
2635
+ ...rest
2636
+ } = _ref102;
2637
+ return /*#__PURE__*/React__default.createElement(Icon, {
2638
+ width: size,
2639
+ height: size,
2640
+ ref: ref,
2641
+ xmlns: "http://www.w3.org/2000/svg",
2642
+ viewBox: "0 0 32 32",
2643
+ fill: "currentColor",
2644
+ ...rest
2645
+ }, _path189 || (_path189 = /*#__PURE__*/React__default.createElement("path", {
2646
+ 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"
2647
+ })), children);
2648
+ });
2649
+ if (process.env.NODE_ENV !== "production") {
2650
+ CollapseCategories.propTypes = iconPropTypes;
2651
+ }
2652
+ const ColorPalette = /*#__PURE__*/React__default.forwardRef(function ColorPalette(_ref103, ref) {
2653
+ let {
2654
+ children,
2655
+ size = 16,
2656
+ ...rest
2657
+ } = _ref103;
2658
+ return /*#__PURE__*/React__default.createElement(Icon, {
2659
+ width: size,
2660
+ height: size,
2661
+ ref: ref,
2662
+ xmlns: "http://www.w3.org/2000/svg",
2663
+ viewBox: "0 0 32 32",
2664
+ fill: "currentColor",
2665
+ ...rest
2666
+ }, _circle17 || (_circle17 = /*#__PURE__*/React__default.createElement("circle", {
2667
+ cx: "10",
2668
+ cy: "12",
2669
+ r: "2"
2670
+ })), _circle18 || (_circle18 = /*#__PURE__*/React__default.createElement("circle", {
2671
+ cx: "16",
2672
+ cy: "9",
2673
+ r: "2"
2674
+ })), _circle19 || (_circle19 = /*#__PURE__*/React__default.createElement("circle", {
2675
+ cx: "22",
2676
+ cy: "12",
2677
+ r: "2"
2678
+ })), _circle20 || (_circle20 = /*#__PURE__*/React__default.createElement("circle", {
2679
+ cx: "23",
2680
+ cy: "18",
2681
+ r: "2"
2682
+ })), _circle21 || (_circle21 = /*#__PURE__*/React__default.createElement("circle", {
2683
+ cx: "19",
2684
+ cy: "23",
2685
+ r: "2"
2686
+ })), _path190 || (_path190 = /*#__PURE__*/React__default.createElement("path", {
2687
+ 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"
2688
+ })), children);
2689
+ });
2690
+ if (process.env.NODE_ENV !== "production") {
2691
+ ColorPalette.propTypes = iconPropTypes;
2692
+ }
2693
+ const ColorSwitch = /*#__PURE__*/React__default.forwardRef(function ColorSwitch(_ref104, ref) {
2694
+ let {
2695
+ children,
2696
+ size = 16,
2697
+ ...rest
2698
+ } = _ref104;
2699
+ return /*#__PURE__*/React__default.createElement(Icon, {
2700
+ width: size,
2701
+ height: size,
2702
+ ref: ref,
2703
+ xmlns: "http://www.w3.org/2000/svg",
2704
+ viewBox: "0 0 32 32",
2705
+ fill: "currentColor",
2706
+ ...rest
2707
+ }, _path191 || (_path191 = /*#__PURE__*/React__default.createElement("path", {
2708
+ 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"
2709
+ })), children);
2710
+ });
2711
+ if (process.env.NODE_ENV !== "production") {
2712
+ ColorSwitch.propTypes = iconPropTypes;
2713
+ }
2714
+ const Column = /*#__PURE__*/React__default.forwardRef(function Column(_ref105, ref) {
2715
+ let {
2716
+ children,
2717
+ size = 16,
2718
+ ...rest
2719
+ } = _ref105;
2720
+ return /*#__PURE__*/React__default.createElement(Icon, {
2721
+ width: size,
2722
+ height: size,
2723
+ ref: ref,
2724
+ xmlns: "http://www.w3.org/2000/svg",
2725
+ viewBox: "0 0 32 32",
2726
+ fill: "currentColor",
2727
+ ...rest
2728
+ }, _path192 || (_path192 = /*#__PURE__*/React__default.createElement("path", {
2729
+ d: "M24 4H26V28H24zM18 6V26H14V6h4m0-2H14a2 2 0 00-2 2V26a2 2 0 002 2h4a2 2 0 002-2V6a2 2 0 00-2-2zM6 4H8V28H6z"
2730
+ })), children);
2731
+ });
2732
+ if (process.env.NODE_ENV !== "production") {
2733
+ Column.propTypes = iconPropTypes;
2734
+ }
2735
+ const ColumnDelete = /*#__PURE__*/React__default.forwardRef(function ColumnDelete(_ref106, ref) {
2736
+ let {
2737
+ children,
2738
+ size = 16,
2739
+ ...rest
2740
+ } = _ref106;
2741
+ return /*#__PURE__*/React__default.createElement(Icon, {
2742
+ width: size,
2743
+ height: size,
2744
+ ref: ref,
2745
+ xmlns: "http://www.w3.org/2000/svg",
2746
+ viewBox: "0 0 32 32",
2747
+ fill: "currentColor",
2748
+ ...rest
2749
+ }, _path193 || (_path193 = /*#__PURE__*/React__default.createElement("path", {
2750
+ 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"
2751
+ })), _path194 || (_path194 = /*#__PURE__*/React__default.createElement("path", {
2752
+ 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"
2753
+ })), children);
2754
+ });
2755
+ if (process.env.NODE_ENV !== "production") {
2756
+ ColumnDelete.propTypes = iconPropTypes;
2757
+ }
2758
+ const ColumnInsert = /*#__PURE__*/React__default.forwardRef(function ColumnInsert(_ref107, ref) {
2759
+ let {
2760
+ children,
2761
+ size = 16,
2762
+ ...rest
2763
+ } = _ref107;
2764
+ return /*#__PURE__*/React__default.createElement(Icon, {
2765
+ width: size,
2766
+ height: size,
2767
+ ref: ref,
2768
+ xmlns: "http://www.w3.org/2000/svg",
2769
+ viewBox: "0 0 32 32",
2770
+ fill: "currentColor",
2771
+ ...rest
2772
+ }, _path195 || (_path195 = /*#__PURE__*/React__default.createElement("path", {
2773
+ 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"
2774
+ })), children);
2775
+ });
2776
+ if (process.env.NODE_ENV !== "production") {
2777
+ ColumnInsert.propTypes = iconPropTypes;
2778
+ }
2779
+ const ColumnDependency = /*#__PURE__*/React__default.forwardRef(function ColumnDependency(_ref108, ref) {
2780
+ let {
2781
+ children,
2782
+ size = 16,
2783
+ ...rest
2784
+ } = _ref108;
2785
+ return /*#__PURE__*/React__default.createElement(Icon, {
2786
+ width: size,
2787
+ height: size,
2788
+ ref: ref,
2789
+ xmlns: "http://www.w3.org/2000/svg",
2790
+ viewBox: "0 0 32 32",
2791
+ fill: "currentColor",
2792
+ ...rest
2793
+ }, _path196 || (_path196 = /*#__PURE__*/React__default.createElement("path", {
2794
+ d: "M30,10V2H22V5H17a2.0023,2.0023,0,0,0-2,2v8H10V12H2v8h8V17h5v8a2.0023,2.0023,0,0,0,2,2h5v3h8V22H22v3H17V17h5v3h8V12H22v3H17V7h5v3ZM8,18H4V14H8Zm16,6h4v4H24Zm0-10h4v4H24ZM24,4h4V8H24Z"
2795
+ })), children);
2796
+ });
2797
+ if (process.env.NODE_ENV !== "production") {
2798
+ ColumnDependency.propTypes = iconPropTypes;
2799
+ }
2800
+ const Comments = /*#__PURE__*/React__default.forwardRef(function Comments(_ref109, ref) {
2801
+ let {
2802
+ children,
2803
+ size = 16,
2804
+ ...rest
2805
+ } = _ref109;
2806
+ return /*#__PURE__*/React__default.createElement(Icon, {
2807
+ width: size,
2808
+ height: size,
2809
+ ref: ref,
2810
+ xmlns: "http://www.w3.org/2000/svg",
2811
+ viewBox: "0 0 32 32",
2812
+ fill: "currentColor",
2813
+ ...rest
2814
+ }, _path197 || (_path197 = /*#__PURE__*/React__default.createElement("path", {
2815
+ 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"
2816
+ })), children);
2817
+ });
2818
+ if (process.env.NODE_ENV !== "production") {
2819
+ Comments.propTypes = iconPropTypes;
2820
+ }
2821
+ const Commit = /*#__PURE__*/React__default.forwardRef(function Commit(_ref110, ref) {
2822
+ let {
2823
+ children,
2824
+ size = 16,
2825
+ ...rest
2826
+ } = _ref110;
2827
+ return /*#__PURE__*/React__default.createElement(Icon, {
2828
+ width: size,
2829
+ height: size,
2830
+ ref: ref,
2831
+ xmlns: "http://www.w3.org/2000/svg",
2832
+ viewBox: "0 0 32 32",
2833
+ fill: "currentColor",
2834
+ ...rest
2835
+ }, _path198 || (_path198 = /*#__PURE__*/React__default.createElement("path", {
2836
+ 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"
2837
+ })), children);
2838
+ });
2839
+ if (process.env.NODE_ENV !== "production") {
2840
+ Commit.propTypes = iconPropTypes;
2841
+ }
2842
+ const CommitAlt = /*#__PURE__*/React__default.forwardRef(function CommitAlt(_ref111, ref) {
2843
+ let {
2844
+ children,
2845
+ size = 16,
2846
+ ...rest
2847
+ } = _ref111;
2848
+ return /*#__PURE__*/React__default.createElement(Icon, {
2849
+ width: size,
2850
+ height: size,
2851
+ ref: ref,
2852
+ xmlns: "http://www.w3.org/2000/svg",
2853
+ viewBox: "0 0 32 32",
2854
+ fill: "currentColor",
2855
+ ...rest
2856
+ }, _path199 || (_path199 = /*#__PURE__*/React__default.createElement("path", {
2857
+ 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"
2858
+ })), children);
2859
+ });
2860
+ if (process.env.NODE_ENV !== "production") {
2861
+ CommitAlt.propTypes = iconPropTypes;
2862
+ }
2863
+ const CommunicationUnified = /*#__PURE__*/React__default.forwardRef(function CommunicationUnified(_ref112, ref) {
2864
+ let {
2865
+ children,
2866
+ size = 16,
2867
+ ...rest
2868
+ } = _ref112;
2869
+ return /*#__PURE__*/React__default.createElement(Icon, {
2870
+ width: size,
2871
+ height: size,
2872
+ ref: ref,
2873
+ xmlns: "http://www.w3.org/2000/svg",
2874
+ viewBox: "0 0 32 32",
2875
+ fill: "currentColor",
2876
+ ...rest
2877
+ }, _path200 || (_path200 = /*#__PURE__*/React__default.createElement("path", {
2878
+ 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"
2879
+ })), children);
2880
+ });
2881
+ if (process.env.NODE_ENV !== "production") {
2882
+ CommunicationUnified.propTypes = iconPropTypes;
2883
+ }
2884
+ const Compare = /*#__PURE__*/React__default.forwardRef(function Compare(_ref113, ref) {
2885
+ let {
2886
+ children,
2887
+ size = 16,
2888
+ ...rest
2889
+ } = _ref113;
2890
+ return /*#__PURE__*/React__default.createElement(Icon, {
2891
+ width: size,
2892
+ height: size,
2893
+ ref: ref,
2894
+ xmlns: "http://www.w3.org/2000/svg",
2895
+ viewBox: "0 0 32 32",
2896
+ fill: "currentColor",
2897
+ ...rest
2898
+ }, _path201 || (_path201 = /*#__PURE__*/React__default.createElement("path", {
2899
+ 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"
2900
+ })), children);
2901
+ });
2902
+ if (process.env.NODE_ENV !== "production") {
2903
+ Compare.propTypes = iconPropTypes;
2904
+ }
2905
+ const Compass = /*#__PURE__*/React__default.forwardRef(function Compass(_ref114, ref) {
2906
+ let {
2907
+ children,
2908
+ size = 16,
2909
+ ...rest
2910
+ } = _ref114;
2911
+ return /*#__PURE__*/React__default.createElement(Icon, {
2912
+ width: size,
2913
+ height: size,
2914
+ ref: ref,
2915
+ xmlns: "http://www.w3.org/2000/svg",
2916
+ viewBox: "0 0 32 32",
2917
+ fill: "currentColor",
2918
+ ...rest
2919
+ }, _path202 || (_path202 = /*#__PURE__*/React__default.createElement("path", {
2920
+ 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"
2921
+ })), _path203 || (_path203 = /*#__PURE__*/React__default.createElement("path", {
2922
+ 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"
2923
+ })), _circle22 || (_circle22 = /*#__PURE__*/React__default.createElement("circle", {
2924
+ cx: "16",
2925
+ cy: "7.5",
2926
+ r: "1.5"
2927
+ })), children);
2928
+ });
2929
+ if (process.env.NODE_ENV !== "production") {
2930
+ Compass.propTypes = iconPropTypes;
2931
+ }
2932
+ const QComposerEdit = /*#__PURE__*/React__default.forwardRef(function QComposerEdit(_ref115, ref) {
2933
+ let {
2934
+ children,
2935
+ size = 16,
2936
+ ...rest
2937
+ } = _ref115;
2938
+ return /*#__PURE__*/React__default.createElement(Icon, {
2939
+ width: size,
2940
+ height: size,
2941
+ ref: ref,
2942
+ xmlns: "http://www.w3.org/2000/svg",
2943
+ viewBox: "0 0 32 32",
2944
+ fill: "currentColor",
2945
+ ...rest
2946
+ }, _path204 || (_path204 = /*#__PURE__*/React__default.createElement("path", {
2947
+ 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"
2948
+ })), children);
2949
+ });
2950
+ if (process.env.NODE_ENV !== "production") {
2951
+ QComposerEdit.propTypes = iconPropTypes;
2952
+ }
2953
+ const Concept = /*#__PURE__*/React__default.forwardRef(function Concept(_ref116, ref) {
2954
+ let {
2955
+ children,
2956
+ size = 16,
2957
+ ...rest
2958
+ } = _ref116;
2959
+ return /*#__PURE__*/React__default.createElement(Icon, {
2960
+ width: size,
2961
+ height: size,
2962
+ ref: ref,
2963
+ xmlns: "http://www.w3.org/2000/svg",
2964
+ viewBox: "0 0 32 32",
2965
+ fill: "currentColor",
2966
+ ...rest
2967
+ }, _path205 || (_path205 = /*#__PURE__*/React__default.createElement("path", {
2968
+ 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"
2969
+ })), children);
2970
+ });
2971
+ if (process.env.NODE_ENV !== "production") {
2972
+ Concept.propTypes = iconPropTypes;
2973
+ }
2974
+ const ConditionPoint = /*#__PURE__*/React__default.forwardRef(function ConditionPoint(_ref117, ref) {
2975
+ let {
2976
+ children,
2977
+ size = 16,
2978
+ ...rest
2979
+ } = _ref117;
2980
+ return /*#__PURE__*/React__default.createElement(Icon, {
2981
+ width: size,
2982
+ height: size,
2983
+ ref: ref,
2984
+ xmlns: "http://www.w3.org/2000/svg",
2985
+ viewBox: "0 0 32 32",
2986
+ fill: "currentColor",
2987
+ ...rest
2988
+ }, _path206 || (_path206 = /*#__PURE__*/React__default.createElement("path", {
2989
+ d: "M10.343 10.343H21.657V21.657H10.343z",
2990
+ transform: "rotate(-45 16 16)"
2991
+ })), _path207 || (_path207 = /*#__PURE__*/React__default.createElement("path", {
2992
+ 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"
2993
+ })), children);
2994
+ });
2995
+ if (process.env.NODE_ENV !== "production") {
2996
+ ConditionPoint.propTypes = iconPropTypes;
2997
+ }
2998
+ const ConditionWaitPoint = /*#__PURE__*/React__default.forwardRef(function ConditionWaitPoint(_ref118, ref) {
2999
+ let {
3000
+ children,
3001
+ size = 16,
3002
+ ...rest
3003
+ } = _ref118;
3004
+ return /*#__PURE__*/React__default.createElement(Icon, {
3005
+ width: size,
3006
+ height: size,
3007
+ ref: ref,
3008
+ xmlns: "http://www.w3.org/2000/svg",
3009
+ viewBox: "0 0 32 32",
3010
+ fill: "currentColor",
3011
+ ...rest
3012
+ }, _path208 || (_path208 = /*#__PURE__*/React__default.createElement("path", {
3013
+ d: "M10.343 10.343H21.657V21.657H10.343z",
3014
+ transform: "rotate(-45 16 16)"
3015
+ })), _path209 || (_path209 = /*#__PURE__*/React__default.createElement("path", {
3016
+ 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"
3017
+ })), children);
3018
+ });
3019
+ if (process.env.NODE_ENV !== "production") {
3020
+ ConditionWaitPoint.propTypes = iconPropTypes;
3021
+ }
3022
+ const Connect = /*#__PURE__*/React__default.forwardRef(function Connect(_ref119, ref) {
3023
+ let {
3024
+ children,
3025
+ size = 16,
3026
+ ...rest
3027
+ } = _ref119;
3028
+ return /*#__PURE__*/React__default.createElement(Icon, {
3029
+ width: size,
3030
+ height: size,
3031
+ ref: ref,
3032
+ xmlns: "http://www.w3.org/2000/svg",
3033
+ viewBox: "0 0 32 32",
3034
+ fill: "currentColor",
3035
+ ...rest
3036
+ }, _path210 || (_path210 = /*#__PURE__*/React__default.createElement("path", {
3037
+ 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",
3038
+ transform: "translate(0 .01)"
3039
+ })), children);
3040
+ });
3041
+ if (process.env.NODE_ENV !== "production") {
3042
+ Connect.propTypes = iconPropTypes;
3043
+ }
3044
+ const ConnectRecursive = /*#__PURE__*/React__default.forwardRef(function ConnectRecursive(_ref120, ref) {
3045
+ let {
3046
+ children,
3047
+ size = 16,
3048
+ ...rest
3049
+ } = _ref120;
3050
+ return /*#__PURE__*/React__default.createElement(Icon, {
3051
+ width: size,
3052
+ height: size,
3053
+ ref: ref,
3054
+ xmlns: "http://www.w3.org/2000/svg",
3055
+ viewBox: "0 0 32 32",
3056
+ fill: "currentColor",
3057
+ ...rest
3058
+ }, _path211 || (_path211 = /*#__PURE__*/React__default.createElement("path", {
3059
+ 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"
3060
+ })), children);
3061
+ });
3062
+ if (process.env.NODE_ENV !== "production") {
3063
+ ConnectRecursive.propTypes = iconPropTypes;
3064
+ }
3065
+ const ConnectReference = /*#__PURE__*/React__default.forwardRef(function ConnectReference(_ref121, ref) {
3066
+ let {
3067
+ children,
3068
+ size = 16,
3069
+ ...rest
3070
+ } = _ref121;
3071
+ return /*#__PURE__*/React__default.createElement(Icon, {
3072
+ width: size,
3073
+ height: size,
3074
+ ref: ref,
3075
+ xmlns: "http://www.w3.org/2000/svg",
3076
+ viewBox: "0 0 32 32",
3077
+ fill: "currentColor",
3078
+ ...rest
3079
+ }, _path212 || (_path212 = /*#__PURE__*/React__default.createElement("path", {
3080
+ d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20z"
3081
+ })), _path213 || (_path213 = /*#__PURE__*/React__default.createElement("path", {
3082
+ 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"
3083
+ })), children);
3084
+ });
3085
+ if (process.env.NODE_ENV !== "production") {
3086
+ ConnectReference.propTypes = iconPropTypes;
3087
+ }
3088
+ const ConnectSource = /*#__PURE__*/React__default.forwardRef(function ConnectSource(_ref122, ref) {
3089
+ let {
3090
+ children,
3091
+ size = 16,
3092
+ ...rest
3093
+ } = _ref122;
3094
+ return /*#__PURE__*/React__default.createElement(Icon, {
3095
+ width: size,
3096
+ height: size,
3097
+ ref: ref,
3098
+ xmlns: "http://www.w3.org/2000/svg",
3099
+ viewBox: "0 0 32 32",
3100
+ fill: "currentColor",
3101
+ ...rest
3102
+ }, _path214 || (_path214 = /*#__PURE__*/React__default.createElement("path", {
3103
+ 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"
3104
+ })), children);
3105
+ });
3106
+ if (process.env.NODE_ENV !== "production") {
3107
+ ConnectSource.propTypes = iconPropTypes;
3108
+ }
3109
+ const ConnectTarget = /*#__PURE__*/React__default.forwardRef(function ConnectTarget(_ref123, ref) {
3110
+ let {
3111
+ children,
3112
+ size = 16,
3113
+ ...rest
3114
+ } = _ref123;
3115
+ return /*#__PURE__*/React__default.createElement(Icon, {
3116
+ width: size,
3117
+ height: size,
3118
+ ref: ref,
3119
+ xmlns: "http://www.w3.org/2000/svg",
3120
+ viewBox: "0 0 32 32",
3121
+ fill: "currentColor",
3122
+ ...rest
3123
+ }, _path215 || (_path215 = /*#__PURE__*/React__default.createElement("path", {
3124
+ 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"
3125
+ })), children);
3126
+ });
3127
+ if (process.env.NODE_ENV !== "production") {
3128
+ ConnectTarget.propTypes = iconPropTypes;
3129
+ }
3130
+ const ConnectionReceive = /*#__PURE__*/React__default.forwardRef(function ConnectionReceive(_ref124, ref) {
3131
+ let {
3132
+ children,
3133
+ size = 16,
3134
+ ...rest
3135
+ } = _ref124;
3136
+ return /*#__PURE__*/React__default.createElement(Icon, {
3137
+ width: size,
3138
+ height: size,
3139
+ ref: ref,
3140
+ xmlns: "http://www.w3.org/2000/svg",
3141
+ viewBox: "0 0 32 32",
3142
+ fill: "currentColor",
3143
+ ...rest
3144
+ }, _path216 || (_path216 = /*#__PURE__*/React__default.createElement("path", {
3145
+ 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"
3146
+ })), _path217 || (_path217 = /*#__PURE__*/React__default.createElement("path", {
3147
+ d: "M28,20v8H22V20H20v8H4V4H20V6h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30V20Z"
3148
+ })), children);
3149
+ });
3150
+ if (process.env.NODE_ENV !== "production") {
3151
+ ConnectionReceive.propTypes = iconPropTypes;
3152
+ }
3153
+ const ConnectionSend = /*#__PURE__*/React__default.forwardRef(function ConnectionSend(_ref125, ref) {
3154
+ let {
3155
+ children,
3156
+ size = 16,
3157
+ ...rest
3158
+ } = _ref125;
3159
+ return /*#__PURE__*/React__default.createElement(Icon, {
3160
+ width: size,
3161
+ height: size,
3162
+ ref: ref,
3163
+ xmlns: "http://www.w3.org/2000/svg",
3164
+ viewBox: "0 0 32 32",
3165
+ fill: "currentColor",
3166
+ ...rest
3167
+ }, _path218 || (_path218 = /*#__PURE__*/React__default.createElement("path", {
3168
+ 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"
3169
+ })), _path219 || (_path219 = /*#__PURE__*/React__default.createElement("path", {
3170
+ d: "M28,20v8H22V20H20v8H4V4H20V6h2V4a2,2,0,0,0-2-2H4A2,2,0,0,0,2,4V30H30V20Z"
3171
+ })), children);
3172
+ });
3173
+ if (process.env.NODE_ENV !== "production") {
3174
+ ConnectionSend.propTypes = iconPropTypes;
3175
+ }
3176
+
3177
+ export { ChartViolinPlot, ChartWaterfall, ChartWinLoss, Chat, ChatBot, ChatLaunch, ChatOff, ChatOperational, Checkbox, CheckboxChecked, CheckboxCheckedFilled, CheckboxIndeterminate, CheckboxIndeterminateFilled, Checkmark, CheckmarkFilled, CheckmarkFilledError, CheckmarkFilledWarning, CheckmarkOutline, CheckmarkOutlineError, CheckmarkOutlineWarning, Chemistry, ChemistryReference, ChevronDown, ChevronDownOutline, ChevronLeft, ChevronMini, ChevronRight, ChevronSort, ChevronSortDown, ChevronSortUp, ChevronUp, ChevronUpOutline, ChildNode, Chip, Choices, ChooseItem, ChoroplethMap, CicsCmas, CicsDb2Connection, CicsExplorer, CicsProgram, CicsRegion, CicsRegionAlt, CicsRegionRouting, CicsRegionTarget, CicsSit, CicsSitOverrides, CicsSystemGroup, CicsTransactionServerZos, CicsWuiRegion, Cicsplex, CircleDash, CircleFill, CircleFilled, CircleOutline, CirclePacking, CircleSolid, CircleStroke, ClassicBatch, Classification, ClassifierLanguage, Clean, Close, CloseFilled, CloseLarge, CloseOutline, ClosedCaption, ClosedCaptionAlt, ClosedCaptionFilled, Cloud, CloudAlerting, CloudApp, CloudAuditing, CloudCeiling, CloudDataOps, CloudDownload, CloudFoundry_1, CloudFoundry_2, CloudLogging, CloudMonitoring, CloudOffline, CloudRegistry, CloudSatellite, CloudSatelliteConfig, CloudSatelliteLink, CloudSatelliteServices, CloudServiceManagement, CloudServices, CloudUpload, Cloudy, Code, CodeBlock, CodeHide, CodeReference, CodeSigningService, Cognitive, Collaborate, CollapseAll, CollapseCategories, ColorPalette, ColorSwitch, Column, ColumnDelete, ColumnDependency, ColumnInsert, Comments, Commit, CommitAlt, CommunicationUnified, Compare, Compass, Concept, ConditionPoint, ConditionWaitPoint, Connect, ConnectRecursive, ConnectReference, ConnectSource, ConnectTarget, ConnectionReceive, ConnectionSend, QCircuitComposer, QComposerEdit, WatsonHealthCircleMeasurement, WatsonHealthCobbAngle };