@carbon/ibm-products 2.81.0-rc.0 → 2.82.0-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2272) 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 +76 -0
  101. package/es/components/Carousel/Carousel.js +381 -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/CoachmarkBubble/CoachmarkBubble.d.ts +38 -0
  134. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.js +137 -0
  135. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts +24 -0
  136. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.js +25 -0
  137. package/es/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts +10 -0
  138. package/es/components/Coachmark/next/Coachmark/CoachmarkContent.d.ts +34 -0
  139. package/es/components/Coachmark/next/Coachmark/CoachmarkContent.js +114 -0
  140. package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.d.ts +43 -0
  141. package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +102 -0
  142. package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/index.d.ts +8 -0
  143. package/es/components/Coachmark/next/Coachmark/ContentBody.d.ts +23 -0
  144. package/es/components/Coachmark/next/Coachmark/ContentBody.js +37 -0
  145. package/es/components/Coachmark/next/Coachmark/ContentHeader.d.ts +20 -0
  146. package/es/components/Coachmark/next/Coachmark/ContentHeader.js +103 -0
  147. package/es/components/Coachmark/next/Coachmark/context.d.ts +25 -0
  148. package/es/components/Coachmark/next/Coachmark/context.js +28 -0
  149. package/es/components/Coachmark/next/Coachmark/index.d.ts +11 -0
  150. package/es/components/Coachmark/utils/constants.d.ts +1 -0
  151. package/es/components/Coachmark/utils/constants.js +86 -0
  152. package/es/components/Coachmark/utils/context.d.ts +28 -0
  153. package/es/components/Coachmark/utils/context.js +15 -0
  154. package/es/components/Coachmark/utils/enums.d.ts +43 -0
  155. package/es/components/Coachmark/utils/enums.js +50 -0
  156. package/es/components/Coachmark/utils/hooks.d.ts +9 -0
  157. package/es/components/Coachmark/utils/hooks.js +63 -0
  158. package/es/components/CoachmarkBeacon/CoachmarkBeacon.d.ts +40 -0
  159. package/es/components/CoachmarkBeacon/CoachmarkBeacon.js +99 -0
  160. package/es/components/CoachmarkBeacon/index.d.ts +8 -0
  161. package/es/components/CoachmarkButton/CoachmarkButton.d.ts +22 -0
  162. package/es/components/CoachmarkButton/CoachmarkButton.js +100 -0
  163. package/es/components/CoachmarkButton/index.d.ts +8 -0
  164. package/es/components/CoachmarkFixed/CoachmarkFixed.d.ts +52 -0
  165. package/es/components/CoachmarkFixed/CoachmarkFixed.js +221 -0
  166. package/es/components/CoachmarkFixed/index.d.ts +8 -0
  167. package/es/components/CoachmarkOverlayElement/CoachmarkOverlayElement.d.ts +33 -0
  168. package/es/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +88 -0
  169. package/es/components/CoachmarkOverlayElement/index.d.ts +8 -0
  170. package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.d.ts +57 -0
  171. package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +227 -0
  172. package/es/components/CoachmarkOverlayElements/index.d.ts +8 -0
  173. package/es/components/CoachmarkStack/CoachmarkStack.d.ts +72 -0
  174. package/es/components/CoachmarkStack/CoachmarkStack.js +289 -0
  175. package/es/components/CoachmarkStack/CoachmarkStackHome.d.ts +67 -0
  176. package/es/components/CoachmarkStack/CoachmarkStackHome.js +206 -0
  177. package/es/components/CoachmarkStack/index.d.ts +1 -0
  178. package/es/components/ComboButton/ComboButton.d.ts +41 -0
  179. package/es/components/ComboButton/ComboButton.js +98 -0
  180. package/es/components/ComboButton/ComboButtonItem/index.d.ts +26 -0
  181. package/es/components/ComboButton/ComboButtonItem/index.js +31 -0
  182. package/es/components/ComboButton/index.d.ts +9 -0
  183. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.d.ts +103 -0
  184. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +363 -0
  185. package/es/components/ConditionBuilder/ConditionBuilder.d.ts +12 -0
  186. package/es/components/ConditionBuilder/ConditionBuilder.js +235 -0
  187. package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +186 -0
  188. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts +26 -0
  189. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +139 -0
  190. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +65 -0
  191. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +148 -0
  192. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.d.ts +86 -0
  193. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +133 -0
  194. package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.d.ts +30 -0
  195. package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +94 -0
  196. package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.d.ts +3 -0
  197. package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +54 -0
  198. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +38 -0
  199. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +251 -0
  200. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts +11 -0
  201. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +120 -0
  202. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.d.ts +51 -0
  203. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +60 -0
  204. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.d.ts +82 -0
  205. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +268 -0
  206. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.d.ts +30 -0
  207. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +128 -0
  208. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.d.ts +31 -0
  209. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +81 -0
  210. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +40 -0
  211. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +134 -0
  212. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.d.ts +34 -0
  213. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +185 -0
  214. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.d.ts +36 -0
  215. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +53 -0
  216. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.d.ts +34 -0
  217. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +90 -0
  218. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts +51 -0
  219. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +402 -0
  220. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.d.ts +33 -0
  221. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +103 -0
  222. package/es/components/ConditionBuilder/index.d.ts +8 -0
  223. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.d.ts +2 -0
  224. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.js +233 -0
  225. package/es/components/ConditionBuilder/utils/useDataConfigs.d.ts +17 -0
  226. package/es/components/ConditionBuilder/utils/useDataConfigs.js +101 -0
  227. package/es/components/ConditionBuilder/utils/useEvent.d.ts +8 -0
  228. package/es/components/ConditionBuilder/utils/useEvent.js +32 -0
  229. package/es/components/ConditionBuilder/utils/useTranslations.d.ts +1 -0
  230. package/es/components/ConditionBuilder/utils/useTranslations.js +30 -0
  231. package/es/components/ConditionBuilder/utils/util.d.ts +13 -0
  232. package/es/components/ConditionBuilder/utils/util.js +94 -0
  233. package/es/components/CreateFullPage/CreateFullPage.d.ts +146 -0
  234. package/es/components/CreateFullPage/CreateFullPage.js +338 -0
  235. package/es/components/CreateFullPage/CreateFullPageStep.d.ts +77 -0
  236. package/es/components/CreateFullPage/CreateFullPageStep.js +197 -0
  237. package/es/components/CreateFullPage/index.d.ts +10 -0
  238. package/es/components/CreateInfluencer/CreateInfluencer.d.ts +63 -0
  239. package/es/components/CreateInfluencer/CreateInfluencer.js +104 -0
  240. package/es/components/CreateInfluencer/index.d.ts +1 -0
  241. package/es/components/CreateModal/CreateModal.d.ts +67 -0
  242. package/es/components/CreateModal/CreateModal.js +141 -0
  243. package/es/components/CreateModal/index.d.ts +2 -0
  244. package/es/components/CreateSidePanel/CreateSidePanel.d.ts +84 -0
  245. package/es/components/CreateSidePanel/CreateSidePanel.js +168 -0
  246. package/es/components/CreateSidePanel/index.d.ts +7 -0
  247. package/es/components/CreateTearsheet/CreateTearsheet.d.ts +126 -0
  248. package/es/components/CreateTearsheet/CreateTearsheet.js +299 -0
  249. package/es/components/CreateTearsheet/CreateTearsheetDivider.d.ts +13 -0
  250. package/es/components/CreateTearsheet/CreateTearsheetDivider.js +33 -0
  251. package/es/components/CreateTearsheet/CreateTearsheetStep.d.ts +121 -0
  252. package/es/components/CreateTearsheet/CreateTearsheetStep.js +239 -0
  253. package/es/components/CreateTearsheet/index.d.ts +10 -0
  254. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.d.ts +86 -0
  255. package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +166 -0
  256. package/es/components/CreateTearsheetNarrow/index.d.ts +8 -0
  257. package/es/components/DataSpreadsheet/DataSpreadsheet.d.ts +96 -0
  258. package/es/components/DataSpreadsheet/DataSpreadsheet.js +828 -0
  259. package/es/components/DataSpreadsheet/DataSpreadsheetBody.d.ts +162 -0
  260. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +561 -0
  261. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.d.ts +106 -0
  262. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +324 -0
  263. package/es/components/DataSpreadsheet/hooks/index.d.ts +7 -0
  264. package/es/components/DataSpreadsheet/hooks/useMoveActiveCell.d.ts +8 -0
  265. package/es/components/DataSpreadsheet/hooks/useMoveActiveCell.js +40 -0
  266. package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.d.ts +9 -0
  267. package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +103 -0
  268. package/es/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.d.ts +6 -0
  269. package/es/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +30 -0
  270. package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.d.ts +12 -0
  271. package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +98 -0
  272. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.d.ts +6 -0
  273. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +64 -0
  274. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.d.ts +19 -0
  275. package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +165 -0
  276. package/es/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.d.ts +10 -0
  277. package/es/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +45 -0
  278. package/es/components/DataSpreadsheet/index.d.ts +8 -0
  279. package/es/components/DataSpreadsheet/types/index.d.ts +35 -0
  280. package/es/components/DataSpreadsheet/utils/checkActiveHeaderCell.d.ts +1 -0
  281. package/es/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +30 -0
  282. package/es/components/DataSpreadsheet/utils/checkForHoldingKey.d.ts +1 -0
  283. package/es/components/DataSpreadsheet/utils/checkForHoldingKey.js +17 -0
  284. package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.d.ts +1 -0
  285. package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +31 -0
  286. package/es/components/DataSpreadsheet/utils/commonEventHandlers.d.ts +4 -0
  287. package/es/components/DataSpreadsheet/utils/commonEventHandlers.js +255 -0
  288. package/es/components/DataSpreadsheet/utils/createActiveCellFn.d.ts +12 -0
  289. package/es/components/DataSpreadsheet/utils/createActiveCellFn.js +59 -0
  290. package/es/components/DataSpreadsheet/utils/createCellSelectionArea.d.ts +10 -0
  291. package/es/components/DataSpreadsheet/utils/createCellSelectionArea.js +69 -0
  292. package/es/components/DataSpreadsheet/utils/getCellSize.d.ts +1 -0
  293. package/es/components/DataSpreadsheet/utils/getCellSize.js +26 -0
  294. package/es/components/DataSpreadsheet/utils/getSelectionAreaPoints.d.ts +6 -0
  295. package/es/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +21 -0
  296. package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.d.ts +9 -0
  297. package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +35 -0
  298. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.d.ts +7 -0
  299. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +112 -0
  300. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.d.ts +7 -0
  301. package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +104 -0
  302. package/es/components/DataSpreadsheet/utils/handleCellDeletion.d.ts +8 -0
  303. package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +42 -0
  304. package/es/components/DataSpreadsheet/utils/handleEditSubmit.d.ts +13 -0
  305. package/es/components/DataSpreadsheet/utils/handleEditSubmit.js +81 -0
  306. package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.d.ts +16 -0
  307. package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +150 -0
  308. package/es/components/DataSpreadsheet/utils/handleMultipleKeys.d.ts +18 -0
  309. package/es/components/DataSpreadsheet/utils/handleMultipleKeys.js +266 -0
  310. package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.d.ts +7 -0
  311. package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +71 -0
  312. package/es/components/DataSpreadsheet/utils/removeCellSelections.d.ts +5 -0
  313. package/es/components/DataSpreadsheet/utils/removeCellSelections.js +28 -0
  314. package/es/components/DataSpreadsheet/utils/selectAllCells.d.ts +9 -0
  315. package/es/components/DataSpreadsheet/utils/selectAllCells.js +53 -0
  316. package/es/components/Datagrid/Datagrid/Datagrid.d.ts +24 -0
  317. package/es/components/Datagrid/Datagrid/Datagrid.js +86 -0
  318. package/es/components/Datagrid/Datagrid/DatagridBody.d.ts +10 -0
  319. package/es/components/Datagrid/Datagrid/DatagridBody.js +33 -0
  320. package/es/components/Datagrid/Datagrid/DatagridContent.d.ts +16 -0
  321. package/es/components/Datagrid/Datagrid/DatagridContent.js +254 -0
  322. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.d.ts +10 -0
  323. package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +54 -0
  324. package/es/components/Datagrid/Datagrid/DatagridExpandedRow.d.ts +10 -0
  325. package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +58 -0
  326. package/es/components/Datagrid/Datagrid/DatagridHead.d.ts +10 -0
  327. package/es/components/Datagrid/Datagrid/DatagridHead.js +22 -0
  328. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.d.ts +9 -0
  329. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +281 -0
  330. package/es/components/Datagrid/Datagrid/DatagridRefBody.d.ts +10 -0
  331. package/es/components/Datagrid/Datagrid/DatagridRefBody.js +42 -0
  332. package/es/components/Datagrid/Datagrid/DatagridRow.d.ts +10 -0
  333. package/es/components/Datagrid/Datagrid/DatagridRow.js +190 -0
  334. package/es/components/Datagrid/Datagrid/DatagridSelectAll.d.ts +10 -0
  335. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +115 -0
  336. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.d.ts +24 -0
  337. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +130 -0
  338. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.d.ts +10 -0
  339. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.js +39 -0
  340. package/es/components/Datagrid/Datagrid/DatagridToolbar.d.ts +18 -0
  341. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +192 -0
  342. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.d.ts +10 -0
  343. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +150 -0
  344. package/es/components/Datagrid/Datagrid/DraggableElement.d.ts +34 -0
  345. package/es/components/Datagrid/Datagrid/DraggableElement.js +94 -0
  346. package/es/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.d.ts +12 -0
  347. package/es/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +31 -0
  348. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.d.ts +18 -0
  349. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +43 -0
  350. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.d.ts +17 -0
  351. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +49 -0
  352. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.d.ts +29 -0
  353. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +95 -0
  354. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.d.ts +37 -0
  355. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +168 -0
  356. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.d.ts +19 -0
  357. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +198 -0
  358. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.d.ts +11 -0
  359. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +64 -0
  360. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/common.d.ts +1 -0
  361. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +10 -0
  362. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/index.d.ts +2 -0
  363. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.d.ts +36 -0
  364. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +321 -0
  365. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.d.ts +46 -0
  366. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +321 -0
  367. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.d.ts +46 -0
  368. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +184 -0
  369. package/es/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.d.ts +24 -0
  370. package/es/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +73 -0
  371. package/es/components/Datagrid/Datagrid/addons/Filtering/constants.d.ts +27 -0
  372. package/es/components/Datagrid/Datagrid/addons/Filtering/constants.js +31 -0
  373. package/es/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.d.ts +9 -0
  374. package/es/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +36 -0
  375. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/index.d.ts +4 -0
  376. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.d.ts +8 -0
  377. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +22 -0
  378. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.d.ts +28 -0
  379. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +475 -0
  380. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.d.ts +9 -0
  381. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +40 -0
  382. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.d.ts +7 -0
  383. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +26 -0
  384. package/es/components/Datagrid/Datagrid/addons/Filtering/index.d.ts +3 -0
  385. package/es/components/Datagrid/Datagrid/addons/Filtering/utils.d.ts +1 -0
  386. package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +99 -0
  387. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.d.ts +26 -0
  388. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +65 -0
  389. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/index.d.ts +1 -0
  390. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.d.ts +25 -0
  391. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +567 -0
  392. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/index.d.ts +1 -0
  393. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.d.ts +16 -0
  394. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +115 -0
  395. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.d.ts +1 -0
  396. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +27 -0
  397. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/index.d.ts +1 -0
  398. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.d.ts +7 -0
  399. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +38 -0
  400. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.d.ts +1 -0
  401. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +22 -0
  402. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.d.ts +10 -0
  403. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +250 -0
  404. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.d.ts +7 -0
  405. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +79 -0
  406. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.d.ts +19 -0
  407. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +88 -0
  408. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.d.ts +3 -0
  409. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +85 -0
  410. package/es/components/Datagrid/Datagrid/addons/RowSize/index.d.ts +1 -0
  411. package/es/components/Datagrid/Datagrid/addons/stateReducer.d.ts +31 -0
  412. package/es/components/Datagrid/Datagrid/addons/stateReducer.js +346 -0
  413. package/es/components/Datagrid/Datagrid/index.d.ts +7 -0
  414. package/es/components/Datagrid/common-column-ids.d.ts +7 -0
  415. package/es/components/Datagrid/common-column-ids.js +10 -0
  416. package/es/components/Datagrid/index.d.ts +29 -0
  417. package/es/components/Datagrid/types/index.d.ts +280 -0
  418. package/es/components/Datagrid/useActionsColumn.d.ts +9 -0
  419. package/es/components/Datagrid/useActionsColumn.js +167 -0
  420. package/es/components/Datagrid/useColumnCenterAlign.d.ts +9 -0
  421. package/es/components/Datagrid/useColumnCenterAlign.js +33 -0
  422. package/es/components/Datagrid/useColumnOrder.d.ts +8 -0
  423. package/es/components/Datagrid/useColumnOrder.js +9 -0
  424. package/es/components/Datagrid/useColumnRightAlign.d.ts +9 -0
  425. package/es/components/Datagrid/useColumnRightAlign.js +33 -0
  426. package/es/components/Datagrid/useCustomizeColumns.d.ts +9 -0
  427. package/es/components/Datagrid/useCustomizeColumns.js +45 -0
  428. package/es/components/Datagrid/useDatagrid.d.ts +9 -0
  429. package/es/components/Datagrid/useDatagrid.js +46 -0
  430. package/es/components/Datagrid/useDefaultStringRenderer.d.ts +2 -0
  431. package/es/components/Datagrid/useDefaultStringRenderer.js +39 -0
  432. package/es/components/Datagrid/useDisableSelectRows.d.ts +9 -0
  433. package/es/components/Datagrid/useDisableSelectRows.js +92 -0
  434. package/es/components/Datagrid/useEditableCell.d.ts +2 -0
  435. package/es/components/Datagrid/useEditableCell.js +14 -0
  436. package/es/components/Datagrid/useExpandedRow.d.ts +9 -0
  437. package/es/components/Datagrid/useExpandedRow.js +42 -0
  438. package/es/components/Datagrid/useFiltering.d.ts +10 -0
  439. package/es/components/Datagrid/useFiltering.js +102 -0
  440. package/es/components/Datagrid/useFlexResize.d.ts +2 -0
  441. package/es/components/Datagrid/useFlexResize.js +81 -0
  442. package/es/components/Datagrid/useFloatingScroll.d.ts +2 -0
  443. package/es/components/Datagrid/useFloatingScroll.js +79 -0
  444. package/es/components/Datagrid/useFocusRowExpander.d.ts +6 -0
  445. package/es/components/Datagrid/useFocusRowExpander.js +43 -0
  446. package/es/components/Datagrid/useInfiniteScroll.d.ts +9 -0
  447. package/es/components/Datagrid/useInfiniteScroll.js +55 -0
  448. package/es/components/Datagrid/useInitialColumnSort.d.ts +1 -0
  449. package/es/components/Datagrid/useInitialColumnSort.js +47 -0
  450. package/es/components/Datagrid/useInlineEdit.d.ts +9 -0
  451. package/es/components/Datagrid/useInlineEdit.js +69 -0
  452. package/es/components/Datagrid/useNestedRowExpander.d.ts +2 -0
  453. package/es/components/Datagrid/useNestedRowExpander.js +104 -0
  454. package/es/components/Datagrid/useNestedRows.d.ts +9 -0
  455. package/es/components/Datagrid/useNestedRows.js +98 -0
  456. package/es/components/Datagrid/useOnRowClick.d.ts +9 -0
  457. package/es/components/Datagrid/useOnRowClick.js +76 -0
  458. package/es/components/Datagrid/useParentDimensions.d.ts +2 -0
  459. package/es/components/Datagrid/useParentDimensions.js +57 -0
  460. package/es/components/Datagrid/useResizeTable.d.ts +2 -0
  461. package/es/components/Datagrid/useResizeTable.js +38 -0
  462. package/es/components/Datagrid/useRowExpander.d.ts +2 -0
  463. package/es/components/Datagrid/useRowExpander.js +74 -0
  464. package/es/components/Datagrid/useRowIsMouseOver.d.ts +9 -0
  465. package/es/components/Datagrid/useRowIsMouseOver.js +47 -0
  466. package/es/components/Datagrid/useRowRenderer.d.ts +2 -0
  467. package/es/components/Datagrid/useRowRenderer.js +58 -0
  468. package/es/components/Datagrid/useRowSize.d.ts +2 -0
  469. package/es/components/Datagrid/useRowSize.js +58 -0
  470. package/es/components/Datagrid/useSelectAllToggle.d.ts +9 -0
  471. package/es/components/Datagrid/useSelectAllToggle.js +94 -0
  472. package/es/components/Datagrid/useSelectRows.d.ts +9 -0
  473. package/es/components/Datagrid/useSelectRows.js +143 -0
  474. package/es/components/Datagrid/useSkeletonRows.d.ts +8 -0
  475. package/es/components/Datagrid/useSkeletonRows.js +33 -0
  476. package/es/components/Datagrid/useSortableColumns.d.ts +14 -0
  477. package/es/components/Datagrid/useSortableColumns.js +145 -0
  478. package/es/components/Datagrid/useStickyColumn.d.ts +9 -0
  479. package/es/components/Datagrid/useStickyColumn.js +187 -0
  480. package/es/components/Datagrid/utils/getAutoSizedColumnWidth.d.ts +8 -0
  481. package/es/components/Datagrid/utils/getAutoSizedColumnWidth.js +19 -0
  482. package/es/components/Decorator/Decorator.d.ts +5 -0
  483. package/es/components/Decorator/Decorator.js +112 -0
  484. package/es/components/Decorator/index.d.ts +1 -0
  485. package/es/components/DecoratorBase/DecoratorBase.d.ts +7 -0
  486. package/es/components/DecoratorBase/DecoratorBase.js +237 -0
  487. package/es/components/DecoratorBase/DecoratorIcon.d.ts +5 -0
  488. package/es/components/DecoratorBase/DecoratorIcon.js +95 -0
  489. package/es/components/DecoratorBase/index.d.ts +1 -0
  490. package/es/components/DecoratorBase/utils.d.ts +8 -0
  491. package/es/components/DecoratorBase/utils.js +45 -0
  492. package/es/components/DecoratorDualButton/DecoratorDualButton.d.ts +6 -0
  493. package/es/components/DecoratorDualButton/DecoratorDualButton.js +141 -0
  494. package/es/components/DecoratorDualButton/index.d.ts +1 -0
  495. package/es/components/DecoratorLink/DecoratorLink.d.ts +6 -0
  496. package/es/components/DecoratorLink/DecoratorLink.js +131 -0
  497. package/es/components/DecoratorLink/index.d.ts +1 -0
  498. package/es/components/DecoratorSingleButton/DecoratorSingleButton.d.ts +6 -0
  499. package/es/components/DecoratorSingleButton/DecoratorSingleButton.js +131 -0
  500. package/es/components/DecoratorSingleButton/index.d.ts +1 -0
  501. package/es/components/DelimitedList/DelimitedList.d.ts +30 -0
  502. package/es/components/DelimitedList/DelimitedList.js +71 -0
  503. package/es/components/DelimitedList/index.d.ts +8 -0
  504. package/es/components/DescriptionList/DescriptionList.d.ts +6 -0
  505. package/es/components/DescriptionList/DescriptionList.js +92 -0
  506. package/es/components/DescriptionList/DescriptionListBody.d.ts +2 -0
  507. package/es/components/DescriptionList/DescriptionListBody.js +39 -0
  508. package/es/components/DescriptionList/DescriptionListCell.d.ts +2 -0
  509. package/es/components/DescriptionList/DescriptionListCell.js +39 -0
  510. package/es/components/DescriptionList/DescriptionListRow.d.ts +2 -0
  511. package/es/components/DescriptionList/DescriptionListRow.js +41 -0
  512. package/es/components/DescriptionList/constants.d.ts +6 -0
  513. package/es/components/DescriptionList/constants.js +16 -0
  514. package/es/components/DescriptionList/index.d.ts +4 -0
  515. package/es/components/EditFullPage/EditFullPage.d.ts +24 -0
  516. package/es/components/EditFullPage/EditFullPage.js +99 -0
  517. package/es/components/EditFullPage/index.d.ts +8 -0
  518. package/es/components/EditInPlace/EditInPlace.d.ts +105 -0
  519. package/es/components/EditInPlace/EditInPlace.js +314 -0
  520. package/es/components/EditInPlace/index.d.ts +8 -0
  521. package/es/components/EditSidePanel/EditSidePanel.d.ts +96 -0
  522. package/es/components/EditSidePanel/EditSidePanel.js +200 -0
  523. package/es/components/EditSidePanel/index.d.ts +8 -0
  524. package/es/components/EditTearsheet/EditTearsheet.d.ts +89 -0
  525. package/es/components/EditTearsheet/EditTearsheet.js +225 -0
  526. package/es/components/EditTearsheet/EditTearsheetForm.d.ts +47 -0
  527. package/es/components/EditTearsheet/EditTearsheetForm.js +118 -0
  528. package/es/components/EditTearsheet/index.d.ts +2 -0
  529. package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.d.ts +23 -0
  530. package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.js +95 -0
  531. package/es/components/EditTearsheetNarrow/index.d.ts +8 -0
  532. package/es/components/EditUpdateCards/EditUpdateCards.d.ts +105 -0
  533. package/es/components/EditUpdateCards/EditUpdateCards.js +224 -0
  534. package/es/components/EditUpdateCards/index.d.ts +8 -0
  535. package/es/components/EmptyStates/EmptyState.d.ts +80 -0
  536. package/es/components/EmptyStates/EmptyState.js +137 -0
  537. package/es/components/EmptyStates/EmptyStateContent.d.ts +65 -0
  538. package/es/components/EmptyStates/EmptyStateContent.js +93 -0
  539. package/es/components/EmptyStates/EmptyStateIllustration.deprecated.d.ts +11 -0
  540. package/es/components/EmptyStates/EmptyStateIllustration.deprecated.js +50 -0
  541. package/es/components/EmptyStates/EmptyStateV2.deprecated.d.ts +67 -0
  542. package/es/components/EmptyStates/EmptyStateV2.deprecated.js +139 -0
  543. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.d.ts +21 -0
  544. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +123 -0
  545. package/es/components/EmptyStates/ErrorEmptyState/index.d.ts +8 -0
  546. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.d.ts +21 -0
  547. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +123 -0
  548. package/es/components/EmptyStates/NoDataEmptyState/index.d.ts +8 -0
  549. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.d.ts +21 -0
  550. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +123 -0
  551. package/es/components/EmptyStates/NoTagsEmptyState/index.d.ts +8 -0
  552. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.d.ts +21 -0
  553. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +121 -0
  554. package/es/components/EmptyStates/NotFoundEmptyState/index.d.ts +8 -0
  555. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.d.ts +21 -0
  556. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +121 -0
  557. package/es/components/EmptyStates/NotificationsEmptyState/index.d.ts +8 -0
  558. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.d.ts +21 -0
  559. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +125 -0
  560. package/es/components/EmptyStates/UnauthorizedEmptyState/index.d.ts +8 -0
  561. package/es/components/EmptyStates/assets/ErrorIllustration.d.ts +15 -0
  562. package/es/components/EmptyStates/assets/ErrorIllustration.js +217 -0
  563. package/es/components/EmptyStates/assets/NoDataIllustration.d.ts +15 -0
  564. package/es/components/EmptyStates/assets/NoDataIllustration.js +180 -0
  565. package/es/components/EmptyStates/assets/NoTagsIllustration.d.ts +15 -0
  566. package/es/components/EmptyStates/assets/NoTagsIllustration.js +487 -0
  567. package/es/components/EmptyStates/assets/NotFoundIllustration.d.ts +15 -0
  568. package/es/components/EmptyStates/assets/NotFoundIllustration.js +364 -0
  569. package/es/components/EmptyStates/assets/NotificationsIllustration.d.ts +15 -0
  570. package/es/components/EmptyStates/assets/NotificationsIllustration.js +334 -0
  571. package/es/components/EmptyStates/assets/UnauthorizedIllustration.d.ts +15 -0
  572. package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +308 -0
  573. package/es/components/EmptyStates/index.d.ts +22 -0
  574. package/es/components/ExportModal/ExportModal.d.ts +116 -0
  575. package/es/components/ExportModal/ExportModal.js +300 -0
  576. package/es/components/ExportModal/index.d.ts +2 -0
  577. package/es/components/ExpressiveCard/ExpressiveCard.d.ts +95 -0
  578. package/es/components/ExpressiveCard/ExpressiveCard.js +136 -0
  579. package/es/components/ExpressiveCard/index.d.ts +2 -0
  580. package/es/components/FeatureFlags/index.d.ts +59 -0
  581. package/es/components/FeatureFlags/index.js +184 -0
  582. package/es/components/FilterPanel/FilterPanel.d.ts +6 -0
  583. package/es/components/FilterPanel/FilterPanel.js +61 -0
  584. package/es/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.d.ts +6 -0
  585. package/es/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +88 -0
  586. package/es/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.d.ts +6 -0
  587. package/es/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +94 -0
  588. package/es/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.d.ts +11 -0
  589. package/es/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +81 -0
  590. package/es/components/FilterPanel/FilterPanelCheckbox/index.d.ts +1 -0
  591. package/es/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.d.ts +11 -0
  592. package/es/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +156 -0
  593. package/es/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.d.ts +6 -0
  594. package/es/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +77 -0
  595. package/es/components/FilterPanel/FilterPanelGroup/index.d.ts +1 -0
  596. package/es/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.d.ts +5 -0
  597. package/es/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +63 -0
  598. package/es/components/FilterPanel/FilterPanelLabel/index.d.ts +1 -0
  599. package/es/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.d.ts +6 -0
  600. package/es/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +92 -0
  601. package/es/components/FilterPanel/index.d.ts +8 -0
  602. package/es/components/FilterSummary/FilterSummary.d.ts +23 -0
  603. package/es/components/FilterSummary/FilterSummary.js +141 -0
  604. package/es/components/FilterSummary/index.d.ts +8 -0
  605. package/es/components/FullPageError/FullPageError.d.ts +39 -0
  606. package/es/components/FullPageError/FullPageError.js +131 -0
  607. package/es/components/FullPageError/assets/Error403SVG.d.ts +9 -0
  608. package/es/components/FullPageError/assets/Error403SVG.js +717 -0
  609. package/es/components/FullPageError/assets/Error404SVG.d.ts +9 -0
  610. package/es/components/FullPageError/assets/Error404SVG.js +626 -0
  611. package/es/components/FullPageError/assets/ErrorGenericSVG.d.ts +9 -0
  612. package/es/components/FullPageError/assets/ErrorGenericSVG.js +717 -0
  613. package/es/components/FullPageError/index.d.ts +8 -0
  614. package/es/components/GetStartedCard/GetStartedCard.d.ts +63 -0
  615. package/es/components/GetStartedCard/GetStartedCard.js +82 -0
  616. package/es/components/GetStartedCard/index.d.ts +8 -0
  617. package/es/components/Guidebanner/Guidebanner.d.ts +73 -0
  618. package/es/components/Guidebanner/Guidebanner.js +216 -0
  619. package/es/components/Guidebanner/GuidebannerElement.d.ts +31 -0
  620. package/es/components/Guidebanner/GuidebannerElement.js +70 -0
  621. package/es/components/Guidebanner/GuidebannerElementButton.d.ts +30 -0
  622. package/es/components/Guidebanner/GuidebannerElementButton.js +83 -0
  623. package/es/components/Guidebanner/GuidebannerElementLink.d.ts +21 -0
  624. package/es/components/Guidebanner/GuidebannerElementLink.js +55 -0
  625. package/es/components/Guidebanner/index.d.ts +14 -0
  626. package/es/components/HTTPErrors/HTTPError403/HTTPError403.d.ts +45 -0
  627. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +96 -0
  628. package/es/components/HTTPErrors/HTTPError403/index.d.ts +1 -0
  629. package/es/components/HTTPErrors/HTTPError404/HTTPError404.d.ts +45 -0
  630. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +96 -0
  631. package/es/components/HTTPErrors/HTTPError404/index.d.ts +1 -0
  632. package/es/components/HTTPErrors/HTTPErrorContent.d.ts +18 -0
  633. package/es/components/HTTPErrors/HTTPErrorContent.js +76 -0
  634. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.d.ts +45 -0
  635. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +96 -0
  636. package/es/components/HTTPErrors/HTTPErrorOther/index.d.ts +1 -0
  637. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.d.ts +11 -0
  638. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +1250 -0
  639. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.d.ts +11 -0
  640. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +1049 -0
  641. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.d.ts +11 -0
  642. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1100 -0
  643. package/es/components/HTTPErrors/index.d.ts +3 -0
  644. package/es/components/ImportModal/ImportModal.d.ts +136 -0
  645. package/es/components/ImportModal/ImportModal.js +351 -0
  646. package/es/components/ImportModal/index.d.ts +2 -0
  647. package/es/components/InlineTip/InlineTip.d.ts +86 -0
  648. package/es/components/InlineTip/InlineTip.js +197 -0
  649. package/es/components/InlineTip/InlineTipButton.d.ts +24 -0
  650. package/es/components/InlineTip/InlineTipButton.js +53 -0
  651. package/es/components/InlineTip/InlineTipLink.d.ts +21 -0
  652. package/es/components/InlineTip/InlineTipLink.js +57 -0
  653. package/es/components/InlineTip/index.d.ts +12 -0
  654. package/es/components/InlineTip/utils.d.ts +1 -0
  655. package/es/components/InlineTip/utils.js +36 -0
  656. package/es/components/InterstitialScreen/InterstitialScreen.d.ts +54 -0
  657. package/es/components/InterstitialScreen/InterstitialScreen.js +197 -0
  658. package/es/components/InterstitialScreen/InterstitialScreenBody.d.ts +33 -0
  659. package/es/components/InterstitialScreen/InterstitialScreenBody.js +118 -0
  660. package/es/components/InterstitialScreen/InterstitialScreenFooter.d.ts +47 -0
  661. package/es/components/InterstitialScreen/InterstitialScreenFooter.js +170 -0
  662. package/es/components/InterstitialScreen/InterstitialScreenHeader.d.ts +41 -0
  663. package/es/components/InterstitialScreen/InterstitialScreenHeader.js +107 -0
  664. package/es/components/InterstitialScreen/InterstitialScreenView.d.ts +29 -0
  665. package/es/components/InterstitialScreen/InterstitialScreenView.js +60 -0
  666. package/es/components/InterstitialScreen/_story-assets/InterstitialScreenViewModule/InterstitialScreenViewModule.d.ts +33 -0
  667. package/es/components/InterstitialScreen/context.d.ts +31 -0
  668. package/es/components/InterstitialScreen/context.js +18 -0
  669. package/es/components/InterstitialScreen/index.d.ts +13 -0
  670. package/es/components/MultiAddSelect/MultiAddSelect.d.ts +145 -0
  671. package/es/components/MultiAddSelect/MultiAddSelect.js +157 -0
  672. package/es/components/MultiAddSelect/index.d.ts +2 -0
  673. package/es/components/Nav/Nav.d.ts +6 -0
  674. package/es/components/Nav/Nav.js +158 -0
  675. package/es/components/Nav/NavItem.d.ts +35 -0
  676. package/es/components/Nav/NavItem.js +153 -0
  677. package/es/components/Nav/NavItemLink.d.ts +3 -0
  678. package/es/components/Nav/NavItemLink.js +27 -0
  679. package/es/components/Nav/NavList.d.ts +4 -0
  680. package/es/components/Nav/NavList.js +161 -0
  681. package/es/components/Nav/index.d.ts +3 -0
  682. package/es/components/NonLinearReading/NonLinearReading.d.ts +33 -0
  683. package/es/components/NonLinearReading/NonLinearReading.js +80 -0
  684. package/es/components/NonLinearReading/index.d.ts +8 -0
  685. package/es/components/NotificationsPanel/NotificationsPanel.d.ts +223 -0
  686. package/es/components/NotificationsPanel/NotificationsPanel.js +590 -0
  687. package/es/components/NotificationsPanel/index.d.ts +8 -0
  688. package/es/components/NotificationsPanel/utils.d.ts +15 -0
  689. package/es/components/NotificationsPanel/utils.js +54 -0
  690. package/es/components/OptionsTile/OptionsTile.d.ts +77 -0
  691. package/es/components/OptionsTile/OptionsTile.js +292 -0
  692. package/es/components/OptionsTile/index.d.ts +8 -0
  693. package/es/components/PageHeader/PageHeader.d.ts +305 -0
  694. package/es/components/PageHeader/PageHeader.js +856 -0
  695. package/es/components/PageHeader/PageHeaderTitle.d.ts +16 -0
  696. package/es/components/PageHeader/PageHeaderTitle.js +145 -0
  697. package/es/components/PageHeader/PageHeaderUtils.d.ts +7 -0
  698. package/es/components/PageHeader/PageHeaderUtils.js +191 -0
  699. package/es/components/PageHeader/index.d.ts +2 -0
  700. package/es/components/PageHeader/next/PageHeader.d.ts +292 -0
  701. package/es/components/PageHeader/next/PageHeader.js +772 -0
  702. package/es/components/PageHeader/next/_story-assets/pageActionButtonItems.d.ts +15 -0
  703. package/es/components/PageHeader/next/context.d.ts +29 -0
  704. package/es/components/PageHeader/next/context.js +33 -0
  705. package/es/components/PageHeader/next/index.d.ts +8 -0
  706. package/es/components/PageHeader/next/index.js +8 -0
  707. package/es/components/PageHeader/next/overflowHandler.d.ts +100 -0
  708. package/es/components/PageHeader/next/overflowHandler.js +170 -0
  709. package/es/components/PageHeader/next/utils.d.ts +19 -0
  710. package/es/components/PageHeader/next/utils.js +68 -0
  711. package/es/components/ProductiveCard/ProductiveCard.d.ts +125 -0
  712. package/es/components/ProductiveCard/ProductiveCard.js +169 -0
  713. package/es/components/ProductiveCard/index.d.ts +2 -0
  714. package/es/components/RemoveModal/RemoveModal.d.ts +83 -0
  715. package/es/components/RemoveModal/RemoveModal.js +198 -0
  716. package/es/components/RemoveModal/index.d.ts +2 -0
  717. package/es/components/Saving/Saving.d.ts +69 -0
  718. package/es/components/Saving/Saving.js +155 -0
  719. package/es/components/Saving/index.d.ts +2 -0
  720. package/es/components/ScrollGradient/ScrollGradient.d.ts +5 -0
  721. package/es/components/ScrollGradient/ScrollGradient.js +211 -0
  722. package/es/components/ScrollGradient/constants.d.ts +10 -0
  723. package/es/components/ScrollGradient/constants.js +66 -0
  724. package/es/components/ScrollGradient/index.d.ts +1 -0
  725. package/es/components/SearchBar/SearchBar.d.ts +60 -0
  726. package/es/components/SearchBar/SearchBar.js +213 -0
  727. package/es/components/SearchBar/index.d.ts +8 -0
  728. package/es/components/SidePanel/SidePanel.d.ts +168 -0
  729. package/es/components/SidePanel/SidePanel.js +726 -0
  730. package/es/components/SidePanel/constants.d.ts +14 -0
  731. package/es/components/SidePanel/constants.js +17 -0
  732. package/es/components/SidePanel/index.d.ts +8 -0
  733. package/es/components/SimpleHeader/SimpleHeader.d.ts +34 -0
  734. package/es/components/SimpleHeader/SimpleHeader.js +93 -0
  735. package/es/components/SingleAddSelect/SingleAddSelect.d.ts +75 -0
  736. package/es/components/SingleAddSelect/SingleAddSelect.js +106 -0
  737. package/es/components/SingleAddSelect/index.d.ts +2 -0
  738. package/es/components/StatusIcon/StatusIcon.d.ts +43 -0
  739. package/es/components/StatusIcon/StatusIcon.js +272 -0
  740. package/es/components/StatusIcon/index.d.ts +8 -0
  741. package/es/components/StatusIndicator/StatusIndicator.d.ts +6 -0
  742. package/es/components/StatusIndicator/StatusIndicator.js +102 -0
  743. package/es/components/StatusIndicator/StatusIndicatorStep.d.ts +6 -0
  744. package/es/components/StatusIndicator/StatusIndicatorStep.js +92 -0
  745. package/es/components/StatusIndicator/index.d.ts +2 -0
  746. package/es/components/StepFlow/StepContext.d.ts +14 -0
  747. package/es/components/StepFlow/StepGroup.d.ts +10 -0
  748. package/es/components/StepFlow/index.d.ts +9 -0
  749. package/es/components/StepFlow/story-assets/SidePanel/Example.d.ts +8 -0
  750. package/es/components/StepFlow/story-assets/SidePanel/StepSidePanel.d.ts +21 -0
  751. package/es/components/StepFlow/story-assets/StepActions.d.ts +23 -0
  752. package/es/components/StepFlow/story-assets/Tearsheet/Example.d.ts +8 -0
  753. package/es/components/StepFlow/story-assets/Tearsheet/StepTearsheet.d.ts +20 -0
  754. package/es/components/StepFlow/types.d.ts +22 -0
  755. package/es/components/StringFormatter/StringFormatter.d.ts +6 -0
  756. package/es/components/StringFormatter/StringFormatter.js +120 -0
  757. package/es/components/StringFormatter/index.d.ts +1 -0
  758. package/es/components/StringFormatter/utils/enums.d.ts +33 -0
  759. package/es/components/StringFormatter/utils/enums.js +50 -0
  760. package/es/components/TagOverflow/TagOverflow.d.ts +54 -0
  761. package/es/components/TagOverflow/TagOverflow.js +235 -0
  762. package/es/components/TagOverflow/TagOverflowModal.d.ts +39 -0
  763. package/es/components/TagOverflow/TagOverflowModal.js +118 -0
  764. package/es/components/TagOverflow/TagOverflowPopover.d.ts +16 -0
  765. package/es/components/TagOverflow/TagOverflowPopover.js +169 -0
  766. package/es/components/TagOverflow/constants.d.ts +14 -0
  767. package/es/components/TagOverflow/constants.js +30 -0
  768. package/es/components/TagOverflow/index.d.ts +8 -0
  769. package/es/components/TagSet/TagSet.d.ts +101 -0
  770. package/es/components/TagSet/TagSet.js +355 -0
  771. package/es/components/TagSet/TagSetModal.d.ts +32 -0
  772. package/es/components/TagSet/TagSetModal.js +116 -0
  773. package/es/components/TagSet/TagSetOverflow.d.ts +57 -0
  774. package/es/components/TagSet/TagSetOverflow.js +192 -0
  775. package/es/components/TagSet/index.d.ts +2 -0
  776. package/es/components/Tearsheet/Tearsheet.d.ts +155 -0
  777. package/es/components/Tearsheet/Tearsheet.js +198 -0
  778. package/es/components/Tearsheet/TearsheetNarrow.d.ts +119 -0
  779. package/es/components/Tearsheet/TearsheetNarrow.js +158 -0
  780. package/es/components/Tearsheet/TearsheetShell.d.ts +155 -0
  781. package/es/components/Tearsheet/TearsheetShell.js +511 -0
  782. package/es/components/Tearsheet/index.d.ts +10 -0
  783. package/es/components/Tearsheet/next/StackContext.d.ts +21 -0
  784. package/es/components/Tearsheet/next/StackContext.js +94 -0
  785. package/es/components/Tearsheet/next/Tearsheet.d.ts +96 -0
  786. package/es/components/Tearsheet/next/Tearsheet.js +165 -0
  787. package/es/components/Tearsheet/next/TearsheetBody.d.ts +73 -0
  788. package/es/components/Tearsheet/next/TearsheetBody.js +133 -0
  789. package/es/components/Tearsheet/next/TearsheetHeader.d.ts +65 -0
  790. package/es/components/Tearsheet/next/TearsheetHeader.js +121 -0
  791. package/es/components/Tearsheet/next/TearsheetHeaderActions.d.ts +54 -0
  792. package/es/components/Tearsheet/next/TearsheetHeaderActions.js +106 -0
  793. package/es/components/Tearsheet/next/TearsheetHeaderContent.d.ts +42 -0
  794. package/es/components/Tearsheet/next/TearsheetHeaderContent.js +54 -0
  795. package/es/components/Tearsheet/next/_story-assets/StepTearsheet.d.ts +23 -0
  796. package/es/components/Tearsheet/next/context.d.ts +26 -0
  797. package/es/components/Tearsheet/next/context.js +26 -0
  798. package/es/components/Tearsheet/next/index.d.ts +14 -0
  799. package/es/components/Toolbar/Toolbar.d.ts +24 -0
  800. package/es/components/Toolbar/Toolbar.js +105 -0
  801. package/es/components/Toolbar/ToolbarButton.d.ts +34 -0
  802. package/es/components/Toolbar/ToolbarButton.js +65 -0
  803. package/es/components/Toolbar/ToolbarGroup.d.ts +17 -0
  804. package/es/components/Toolbar/ToolbarGroup.js +35 -0
  805. package/es/components/Toolbar/index.d.ts +12 -0
  806. package/es/components/TooltipTrigger/TooltipTrigger.d.ts +18 -0
  807. package/es/components/TooltipTrigger/TooltipTrigger.js +62 -0
  808. package/es/components/TooltipTrigger/index.d.ts +1 -0
  809. package/es/components/TruncatedList/TruncatedList.d.ts +51 -0
  810. package/es/components/TruncatedList/TruncatedList.js +160 -0
  811. package/es/components/TruncatedList/index.d.ts +8 -0
  812. package/es/components/TruncatedText/TruncatedText.d.ts +47 -0
  813. package/es/components/TruncatedText/TruncatedText.js +87 -0
  814. package/es/components/TruncatedText/index.d.ts +8 -0
  815. package/es/components/TruncatedText/useTruncatedText.d.ts +16 -0
  816. package/es/components/TruncatedText/useTruncatedText.js +41 -0
  817. package/es/components/UserAvatar/UserAvatar.d.ts +60 -0
  818. package/es/components/UserAvatar/UserAvatar.js +162 -0
  819. package/es/components/UserAvatar/index.d.ts +1 -0
  820. package/es/components/UserProfileImage/UserProfileImage.d.ts +69 -0
  821. package/es/components/UserProfileImage/UserProfileImage.js +171 -0
  822. package/es/components/UserProfileImage/index.d.ts +2 -0
  823. package/es/components/WebTerminal/WebTerminal.d.ts +52 -0
  824. package/es/components/WebTerminal/WebTerminal.js +202 -0
  825. package/es/components/WebTerminal/WebTerminalContentWrapper.d.ts +14 -0
  826. package/es/components/WebTerminal/WebTerminalContentWrapper.js +50 -0
  827. package/es/components/WebTerminal/hooks/index.d.ts +17 -0
  828. package/es/components/WebTerminal/hooks/index.js +47 -0
  829. package/es/components/WebTerminal/index.d.ts +11 -0
  830. package/es/components/_Canary/Canary.d.ts +12 -0
  831. package/es/components/_Canary/Canary.js +49 -0
  832. package/es/components/_Canary/index.d.ts +1 -0
  833. package/es/components/index.d.ts +91 -0
  834. package/es/global/js/hooks/index.d.ts +16 -0
  835. package/es/global/js/hooks/useActiveElement.d.ts +1 -0
  836. package/es/global/js/hooks/useActiveElement.js +24 -0
  837. package/es/global/js/hooks/useClickOutside.d.ts +1 -0
  838. package/es/global/js/hooks/useClickOutside.js +24 -0
  839. package/es/global/js/hooks/useCollapsible.d.ts +19 -0
  840. package/es/global/js/hooks/useCollapsible.js +68 -0
  841. package/es/global/js/hooks/useControllableState.d.ts +15 -0
  842. package/es/global/js/hooks/useControllableState.js +30 -0
  843. package/es/global/js/hooks/useCreateComponentFocus.d.ts +7 -0
  844. package/es/global/js/hooks/useCreateComponentFocus.js +72 -0
  845. package/es/global/js/hooks/useCreateComponentStepChange.d.ts +26 -0
  846. package/es/global/js/hooks/useCreateComponentStepChange.js +174 -0
  847. package/es/global/js/hooks/useFocus.d.ts +15 -0
  848. package/es/global/js/hooks/useFocus.js +98 -0
  849. package/es/global/js/hooks/useIsomorphicEffect.d.ts +8 -0
  850. package/es/global/js/hooks/useIsomorphicEffect.js +13 -0
  851. package/es/global/js/hooks/useMatchMedia.d.ts +13 -0
  852. package/es/global/js/hooks/useMatchMedia.js +33 -0
  853. package/es/global/js/hooks/useOverflowItems/index.d.ts +7 -0
  854. package/es/global/js/hooks/useOverflowItems/useOverflowItems.d.ts +21 -0
  855. package/es/global/js/hooks/useOverflowItems/useOverflowItems.js +111 -0
  856. package/es/global/js/hooks/useOverflowString.d.ts +9 -0
  857. package/es/global/js/hooks/useOverflowString.js +41 -0
  858. package/es/global/js/hooks/usePortalTarget.d.ts +1 -0
  859. package/es/global/js/hooks/usePortalTarget.js +29 -0
  860. package/es/global/js/hooks/usePrefersReducedMotion.d.ts +1 -0
  861. package/es/global/js/hooks/usePrefersReducedMotion.js +33 -0
  862. package/es/global/js/hooks/usePrefix.d.ts +1 -0
  863. package/es/global/js/hooks/usePrefix.js +12 -0
  864. package/es/global/js/hooks/usePresence.d.ts +33 -0
  865. package/es/global/js/hooks/usePresence.js +59 -0
  866. package/es/global/js/hooks/usePreviousValue.d.ts +1 -0
  867. package/es/global/js/hooks/usePreviousValue.js +23 -0
  868. package/es/global/js/hooks/useResetCreateComponent.d.ts +10 -0
  869. package/es/global/js/hooks/useResetCreateComponent.js +52 -0
  870. package/es/global/js/hooks/useResizeObserver.d.ts +11 -0
  871. package/es/global/js/hooks/useResizeObserver.js +74 -0
  872. package/es/global/js/hooks/useRetrieveFormTitles.d.ts +5 -0
  873. package/es/global/js/hooks/useRetrieveFormTitles.js +31 -0
  874. package/es/global/js/hooks/useRetrieveStepData.d.ts +9 -0
  875. package/es/global/js/hooks/useRetrieveStepData.js +54 -0
  876. package/es/global/js/hooks/useValidCreateStepCount.d.ts +1 -0
  877. package/es/global/js/hooks/useValidCreateStepCount.js +23 -0
  878. package/es/global/js/hooks/useWindowResize.d.ts +1 -0
  879. package/es/global/js/hooks/useWindowResize.js +68 -0
  880. package/es/global/js/hooks/useWindowScroll.d.ts +3 -0
  881. package/es/global/js/hooks/useWindowScroll.js +75 -0
  882. package/es/global/js/package-settings.d.ts +150 -0
  883. package/es/global/js/package-settings.js +246 -0
  884. package/es/global/js/utils/Wrap.d.ts +49 -0
  885. package/es/global/js/utils/Wrap.js +88 -0
  886. package/es/global/js/utils/carousel/carousel.d.ts +14 -0
  887. package/es/global/js/utils/carousel/index.d.ts +8 -0
  888. package/es/global/js/utils/carousel/swipeEvents.d.ts +7 -0
  889. package/es/global/js/utils/carousel/types.d.ts +38 -0
  890. package/es/global/js/utils/checkForOverflow.d.ts +5 -0
  891. package/es/global/js/utils/checkForOverflow.js +21 -0
  892. package/es/global/js/utils/clamp.d.ts +7 -0
  893. package/es/global/js/utils/clamp.js +25 -0
  894. package/es/global/js/utils/debounce.d.ts +7 -0
  895. package/es/global/js/utils/debounce.js +30 -0
  896. package/es/global/js/utils/deepCloneObject.d.ts +1 -0
  897. package/es/global/js/utils/deepCloneObject.js +24 -0
  898. package/es/global/js/utils/deepCompareObject.d.ts +7 -0
  899. package/es/global/js/utils/deepCompareObject.js +38 -0
  900. package/es/global/js/utils/devtools.d.ts +6 -0
  901. package/es/global/js/utils/devtools.js +16 -0
  902. package/es/global/js/utils/getFocusableElements.d.ts +1 -0
  903. package/es/global/js/utils/getFocusableElements.js +13 -0
  904. package/es/global/js/utils/getNodeTextContent.d.ts +1 -0
  905. package/es/global/js/utils/getNodeTextContent.js +52 -0
  906. package/es/global/js/utils/getNumberOfHiddenSteps.d.ts +1 -0
  907. package/es/global/js/utils/getNumberOfHiddenSteps.js +21 -0
  908. package/es/global/js/utils/getScrollbarWidth.d.ts +1 -0
  909. package/es/global/js/utils/getScrollbarWidth.js +17 -0
  910. package/es/global/js/utils/getSupportedLocale.d.ts +12 -0
  911. package/es/global/js/utils/getSupportedLocale.js +29 -0
  912. package/es/global/js/utils/lastIndexInArray.d.ts +1 -0
  913. package/es/global/js/utils/lastIndexInArray.js +25 -0
  914. package/es/global/js/utils/makeDraggable/index.d.ts +1 -0
  915. package/es/global/js/utils/makeDraggable/makeDraggable.d.ts +38 -0
  916. package/es/global/js/utils/makeDraggable/makeDraggable.js +145 -0
  917. package/es/global/js/utils/makeDraggable/makeDraggable.stories.d.ts +22 -0
  918. package/es/global/js/utils/pconsole.d.ts +15 -0
  919. package/es/global/js/utils/pconsole.js +35 -0
  920. package/es/global/js/utils/props-helper.d.ts +31 -0
  921. package/es/global/js/utils/props-helper.js +149 -0
  922. package/es/global/js/utils/rangeWithCallback.d.ts +1 -0
  923. package/es/global/js/utils/rangeWithCallback.js +16 -0
  924. package/es/global/js/utils/scrollableAncestor.d.ts +1 -0
  925. package/es/global/js/utils/scrollableAncestor.js +46 -0
  926. package/es/global/js/utils/throttle.d.ts +7 -0
  927. package/es/global/js/utils/throttle.js +19 -0
  928. package/es/global/js/utils/useId.d.ts +6 -0
  929. package/es/global/js/utils/useId.js +32 -0
  930. package/es/global/js/utils/uuidv4.d.ts +8 -0
  931. package/es/global/js/utils/uuidv4.js +16 -0
  932. package/es/global/js/utils/wait.d.ts +8 -0
  933. package/es/global/js/utils/wait.js +14 -0
  934. package/es/index.d.ts +9 -0
  935. package/es/index.js +150 -0
  936. package/es/node_modules/@carbon/colors/es/index.js +14 -0
  937. package/es/node_modules/@carbon/icon-helpers/es/index.js +125 -0
  938. package/es/node_modules/@carbon/icons-react/es/Icon.js +71 -0
  939. package/es/node_modules/@carbon/icons-react/es/generated/bucket-10.js +2986 -0
  940. package/es/node_modules/@carbon/icons-react/es/generated/bucket-3.js +3177 -0
  941. package/es/node_modules/@carbon/icons-react/es/iconPropTypes-C5chbmyn.js +14 -0
  942. package/es/node_modules/@floating-ui/core/dist/floating-ui.core.js +592 -0
  943. package/es/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +713 -0
  944. package/es/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +95 -0
  945. package/es/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +161 -0
  946. package/es/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +142 -0
  947. package/es/node_modules/object-assign/index.js +89 -0
  948. package/es/node_modules/prop-types/checkPropTypes.js +95 -0
  949. package/es/node_modules/prop-types/factoryWithThrowingShims.js +64 -0
  950. package/es/node_modules/prop-types/factoryWithTypeCheckers.js +561 -0
  951. package/es/node_modules/prop-types/index.js +32 -0
  952. package/es/node_modules/prop-types/lib/ReactPropTypesSecret.js +18 -0
  953. package/es/node_modules/prop-types/lib/has.js +17 -0
  954. package/es/settings.d.ts +133 -0
  955. package/es/settings.js +85 -0
  956. package/lib/_virtual/_commonjsHelpers.js +14 -0
  957. package/lib/_virtual/_rollupPluginBabelHelpers.js +20 -0
  958. package/lib/_virtual/index.js +19 -0
  959. package/lib/_virtual/index2.js +12 -0
  960. package/lib/components/APIKeyModal/APIKeyDownloader.d.ts +64 -0
  961. package/lib/components/APIKeyModal/APIKeyDownloader.js +82 -0
  962. package/lib/components/APIKeyModal/APIKeyModal.d.ts +15 -0
  963. package/lib/components/APIKeyModal/APIKeyModal.js +536 -0
  964. package/lib/components/APIKeyModal/APIKeyModal.types.d.ts +234 -0
  965. package/lib/components/APIKeyModal/index.d.ts +2 -0
  966. package/lib/components/AboutModal/AboutModal.d.ts +73 -0
  967. package/lib/components/AboutModal/AboutModal.js +179 -0
  968. package/lib/components/AboutModal/index.d.ts +8 -0
  969. package/lib/components/ActionBar/ActionBar.d.ts +65 -0
  970. package/lib/components/ActionBar/ActionBar.js +173 -0
  971. package/lib/components/ActionBar/ActionBarItem.d.ts +39 -0
  972. package/lib/components/ActionBar/ActionBarItem.js +102 -0
  973. package/lib/components/ActionBar/ActionBarOverflowItems.d.ts +65 -0
  974. package/lib/components/ActionBar/ActionBarOverflowItems.js +94 -0
  975. package/lib/components/ActionBar/index.d.ts +2 -0
  976. package/lib/components/ActionSet/ActionSet.d.ts +52 -0
  977. package/lib/components/ActionSet/ActionSet.js +215 -0
  978. package/lib/components/ActionSet/index.d.ts +8 -0
  979. package/lib/components/AddSelect/AddSelect.d.ts +45 -0
  980. package/lib/components/AddSelect/AddSelect.js +126 -0
  981. package/lib/components/AddSelect/AddSelectBody.d.ts +45 -0
  982. package/lib/components/AddSelect/AddSelectBody.js +369 -0
  983. package/lib/components/AddSelect/AddSelectBreadcrumbs.d.ts +16 -0
  984. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +57 -0
  985. package/lib/components/AddSelect/AddSelectColumn.d.ts +31 -0
  986. package/lib/components/AddSelect/AddSelectColumn.js +240 -0
  987. package/lib/components/AddSelect/AddSelectFilter.d.ts +40 -0
  988. package/lib/components/AddSelect/AddSelectFilter.js +166 -0
  989. package/lib/components/AddSelect/AddSelectFormControl.d.ts +18 -0
  990. package/lib/components/AddSelect/AddSelectFormControl.js +100 -0
  991. package/lib/components/AddSelect/AddSelectList.d.ts +16 -0
  992. package/lib/components/AddSelect/AddSelectList.js +55 -0
  993. package/lib/components/AddSelect/AddSelectMetaPanel.d.ts +18 -0
  994. package/lib/components/AddSelect/AddSelectMetaPanel.js +68 -0
  995. package/lib/components/AddSelect/AddSelectRow.d.ts +51 -0
  996. package/lib/components/AddSelect/AddSelectRow.js +232 -0
  997. package/lib/components/AddSelect/AddSelectSidebar.d.ts +34 -0
  998. package/lib/components/AddSelect/AddSelectSidebar.js +133 -0
  999. package/lib/components/AddSelect/AddSelectSort.d.ts +17 -0
  1000. package/lib/components/AddSelect/AddSelectSort.js +81 -0
  1001. package/lib/components/AddSelect/add-select-utils.d.ts +4 -0
  1002. package/lib/components/AddSelect/add-select-utils.js +133 -0
  1003. package/lib/components/AddSelect/hooks/useFocus.d.ts +2 -0
  1004. package/lib/components/AddSelect/hooks/useFocus.js +40 -0
  1005. package/lib/components/AddSelect/hooks/useItemSort.d.ts +6 -0
  1006. package/lib/components/AddSelect/hooks/useItemSort.js +29 -0
  1007. package/lib/components/AddSelect/hooks/useParentSelect.d.ts +5 -0
  1008. package/lib/components/AddSelect/hooks/useParentSelect.js +28 -0
  1009. package/lib/components/AddSelect/hooks/usePath.d.ts +10 -0
  1010. package/lib/components/AddSelect/hooks/usePath.js +71 -0
  1011. package/lib/components/AddSelect/index.d.ts +2 -0
  1012. package/lib/components/AddSelect/types/index.d.ts +51 -0
  1013. package/lib/components/BigNumber/BigNumber.d.ts +34 -0
  1014. package/lib/components/BigNumber/BigNumber.js +179 -0
  1015. package/lib/components/BigNumber/BigNumberSkeleton.d.ts +17 -0
  1016. package/lib/components/BigNumber/BigNumberSkeleton.js +68 -0
  1017. package/lib/components/BigNumber/constants.d.ts +19 -0
  1018. package/lib/components/BigNumber/constants.js +50 -0
  1019. package/lib/components/BigNumber/index.d.ts +8 -0
  1020. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.d.ts +25 -0
  1021. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +332 -0
  1022. package/lib/components/BreadcrumbWithOverflow/index.d.ts +1 -0
  1023. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.d.ts +22 -0
  1024. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +203 -0
  1025. package/lib/components/ButtonSetWithOverflow/index.d.ts +1 -0
  1026. package/lib/components/Card/Card.d.ts +78 -0
  1027. package/lib/components/Card/Card.js +360 -0
  1028. package/lib/components/Card/CardFooter.d.ts +52 -0
  1029. package/lib/components/Card/CardFooter.js +100 -0
  1030. package/lib/components/Card/CardHeader.d.ts +78 -0
  1031. package/lib/components/Card/CardHeader.js +164 -0
  1032. package/lib/components/Card/index.d.ts +3 -0
  1033. package/lib/components/Carousel/Carousel.d.ts +76 -0
  1034. package/lib/components/Carousel/Carousel.js +383 -0
  1035. package/lib/components/Carousel/CarouselItem.d.ts +22 -0
  1036. package/lib/components/Carousel/CarouselItem.js +54 -0
  1037. package/lib/components/Carousel/index.d.ts +9 -0
  1038. package/lib/components/Cascade/Cascade.d.ts +25 -0
  1039. package/lib/components/Cascade/Cascade.js +100 -0
  1040. package/lib/components/Cascade/index.d.ts +2 -0
  1041. package/lib/components/Checklist/Checklist.d.ts +105 -0
  1042. package/lib/components/Checklist/Checklist.js +274 -0
  1043. package/lib/components/Checklist/Checklist.types.d.ts +19 -0
  1044. package/lib/components/Checklist/Checklist.types.js +25 -0
  1045. package/lib/components/Checklist/ChecklistChart.d.ts +9 -0
  1046. package/lib/components/Checklist/ChecklistChart.js +80 -0
  1047. package/lib/components/Checklist/ChecklistIcon.d.ts +9 -0
  1048. package/lib/components/Checklist/ChecklistIcon.js +102 -0
  1049. package/lib/components/Checklist/index.d.ts +8 -0
  1050. package/lib/components/Coachmark/Coachmark.d.ts +127 -0
  1051. package/lib/components/Coachmark/Coachmark.js +318 -0
  1052. package/lib/components/Coachmark/CoachmarkDragbar.d.ts +41 -0
  1053. package/lib/components/Coachmark/CoachmarkDragbar.js +140 -0
  1054. package/lib/components/Coachmark/CoachmarkHeader.d.ts +28 -0
  1055. package/lib/components/Coachmark/CoachmarkHeader.js +93 -0
  1056. package/lib/components/Coachmark/CoachmarkOverlay.d.ts +47 -0
  1057. package/lib/components/Coachmark/CoachmarkOverlay.js +247 -0
  1058. package/lib/components/Coachmark/CoachmarkTagline.d.ts +32 -0
  1059. package/lib/components/Coachmark/CoachmarkTagline.js +104 -0
  1060. package/lib/components/Coachmark/index.d.ts +11 -0
  1061. package/lib/components/Coachmark/next/Coachmark/Coachmark.d.ts +58 -0
  1062. package/lib/components/Coachmark/next/Coachmark/Coachmark.js +175 -0
  1063. package/lib/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.d.ts +45 -0
  1064. package/lib/components/Coachmark/next/Coachmark/CoachmarkBeacon/CoachmarkBeacon.js +91 -0
  1065. package/lib/components/Coachmark/next/Coachmark/CoachmarkBeacon/index.d.ts +8 -0
  1066. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.d.ts +38 -0
  1067. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubble.js +139 -0
  1068. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.d.ts +24 -0
  1069. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/CoachmarkBubbleHeader.js +27 -0
  1070. package/lib/components/Coachmark/next/Coachmark/CoachmarkBubble/index.d.ts +10 -0
  1071. package/lib/components/Coachmark/next/Coachmark/CoachmarkContent.d.ts +34 -0
  1072. package/lib/components/Coachmark/next/Coachmark/CoachmarkContent.js +118 -0
  1073. package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.d.ts +43 -0
  1074. package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +104 -0
  1075. package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/index.d.ts +8 -0
  1076. package/lib/components/Coachmark/next/Coachmark/ContentBody.d.ts +23 -0
  1077. package/lib/components/Coachmark/next/Coachmark/ContentBody.js +42 -0
  1078. package/lib/components/Coachmark/next/Coachmark/ContentHeader.d.ts +20 -0
  1079. package/lib/components/Coachmark/next/Coachmark/ContentHeader.js +105 -0
  1080. package/lib/components/Coachmark/next/Coachmark/context.d.ts +25 -0
  1081. package/lib/components/Coachmark/next/Coachmark/context.js +31 -0
  1082. package/lib/components/Coachmark/next/Coachmark/index.d.ts +11 -0
  1083. package/lib/components/Coachmark/utils/constants.d.ts +1 -0
  1084. package/lib/components/Coachmark/utils/constants.js +88 -0
  1085. package/lib/components/Coachmark/utils/context.d.ts +28 -0
  1086. package/lib/components/Coachmark/utils/context.js +18 -0
  1087. package/lib/components/Coachmark/utils/enums.d.ts +43 -0
  1088. package/lib/components/Coachmark/utils/enums.js +54 -0
  1089. package/lib/components/Coachmark/utils/hooks.d.ts +9 -0
  1090. package/lib/components/Coachmark/utils/hooks.js +66 -0
  1091. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.d.ts +40 -0
  1092. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +101 -0
  1093. package/lib/components/CoachmarkBeacon/index.d.ts +8 -0
  1094. package/lib/components/CoachmarkButton/CoachmarkButton.d.ts +22 -0
  1095. package/lib/components/CoachmarkButton/CoachmarkButton.js +102 -0
  1096. package/lib/components/CoachmarkButton/index.d.ts +8 -0
  1097. package/lib/components/CoachmarkFixed/CoachmarkFixed.d.ts +52 -0
  1098. package/lib/components/CoachmarkFixed/CoachmarkFixed.js +223 -0
  1099. package/lib/components/CoachmarkFixed/index.d.ts +8 -0
  1100. package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.d.ts +33 -0
  1101. package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +90 -0
  1102. package/lib/components/CoachmarkOverlayElement/index.d.ts +8 -0
  1103. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.d.ts +57 -0
  1104. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +229 -0
  1105. package/lib/components/CoachmarkOverlayElements/index.d.ts +8 -0
  1106. package/lib/components/CoachmarkStack/CoachmarkStack.d.ts +72 -0
  1107. package/lib/components/CoachmarkStack/CoachmarkStack.js +291 -0
  1108. package/lib/components/CoachmarkStack/CoachmarkStackHome.d.ts +67 -0
  1109. package/lib/components/CoachmarkStack/CoachmarkStackHome.js +208 -0
  1110. package/lib/components/CoachmarkStack/index.d.ts +1 -0
  1111. package/lib/components/ComboButton/ComboButton.d.ts +41 -0
  1112. package/lib/components/ComboButton/ComboButton.js +100 -0
  1113. package/lib/components/ComboButton/ComboButtonItem/index.d.ts +26 -0
  1114. package/lib/components/ComboButton/ComboButtonItem/index.js +33 -0
  1115. package/lib/components/ComboButton/index.d.ts +9 -0
  1116. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.d.ts +103 -0
  1117. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +367 -0
  1118. package/lib/components/ConditionBuilder/ConditionBuilder.d.ts +12 -0
  1119. package/lib/components/ConditionBuilder/ConditionBuilder.js +237 -0
  1120. package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +186 -0
  1121. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts +26 -0
  1122. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +143 -0
  1123. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +65 -0
  1124. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +152 -0
  1125. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.d.ts +86 -0
  1126. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +135 -0
  1127. package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.d.ts +30 -0
  1128. package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +98 -0
  1129. package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.d.ts +3 -0
  1130. package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +58 -0
  1131. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +38 -0
  1132. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +255 -0
  1133. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts +11 -0
  1134. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +124 -0
  1135. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.d.ts +51 -0
  1136. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +62 -0
  1137. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.d.ts +82 -0
  1138. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +270 -0
  1139. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.d.ts +30 -0
  1140. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +130 -0
  1141. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.d.ts +31 -0
  1142. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +83 -0
  1143. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +40 -0
  1144. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +136 -0
  1145. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.d.ts +34 -0
  1146. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +187 -0
  1147. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.d.ts +36 -0
  1148. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +55 -0
  1149. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.d.ts +34 -0
  1150. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +92 -0
  1151. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts +51 -0
  1152. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +406 -0
  1153. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.d.ts +33 -0
  1154. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +107 -0
  1155. package/lib/components/ConditionBuilder/index.d.ts +8 -0
  1156. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.d.ts +2 -0
  1157. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +236 -0
  1158. package/lib/components/ConditionBuilder/utils/useDataConfigs.d.ts +17 -0
  1159. package/lib/components/ConditionBuilder/utils/useDataConfigs.js +103 -0
  1160. package/lib/components/ConditionBuilder/utils/useEvent.d.ts +8 -0
  1161. package/lib/components/ConditionBuilder/utils/useEvent.js +34 -0
  1162. package/lib/components/ConditionBuilder/utils/useTranslations.d.ts +1 -0
  1163. package/lib/components/ConditionBuilder/utils/useTranslations.js +32 -0
  1164. package/lib/components/ConditionBuilder/utils/util.d.ts +13 -0
  1165. package/lib/components/ConditionBuilder/utils/util.js +108 -0
  1166. package/lib/components/CreateFullPage/CreateFullPage.d.ts +146 -0
  1167. package/lib/components/CreateFullPage/CreateFullPage.js +342 -0
  1168. package/lib/components/CreateFullPage/CreateFullPageStep.d.ts +77 -0
  1169. package/lib/components/CreateFullPage/CreateFullPageStep.js +199 -0
  1170. package/lib/components/CreateFullPage/index.d.ts +10 -0
  1171. package/lib/components/CreateInfluencer/CreateInfluencer.d.ts +63 -0
  1172. package/lib/components/CreateInfluencer/CreateInfluencer.js +106 -0
  1173. package/lib/components/CreateInfluencer/index.d.ts +1 -0
  1174. package/lib/components/CreateModal/CreateModal.d.ts +67 -0
  1175. package/lib/components/CreateModal/CreateModal.js +143 -0
  1176. package/lib/components/CreateModal/index.d.ts +2 -0
  1177. package/lib/components/CreateSidePanel/CreateSidePanel.d.ts +84 -0
  1178. package/lib/components/CreateSidePanel/CreateSidePanel.js +170 -0
  1179. package/lib/components/CreateSidePanel/index.d.ts +7 -0
  1180. package/lib/components/CreateTearsheet/CreateTearsheet.d.ts +126 -0
  1181. package/lib/components/CreateTearsheet/CreateTearsheet.js +303 -0
  1182. package/lib/components/CreateTearsheet/CreateTearsheetDivider.d.ts +13 -0
  1183. package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +35 -0
  1184. package/lib/components/CreateTearsheet/CreateTearsheetStep.d.ts +121 -0
  1185. package/lib/components/CreateTearsheet/CreateTearsheetStep.js +241 -0
  1186. package/lib/components/CreateTearsheet/index.d.ts +10 -0
  1187. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.d.ts +86 -0
  1188. package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +168 -0
  1189. package/lib/components/CreateTearsheetNarrow/index.d.ts +8 -0
  1190. package/lib/components/DataSpreadsheet/DataSpreadsheet.d.ts +96 -0
  1191. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +830 -0
  1192. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.d.ts +162 -0
  1193. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +563 -0
  1194. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.d.ts +106 -0
  1195. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +326 -0
  1196. package/lib/components/DataSpreadsheet/hooks/index.d.ts +7 -0
  1197. package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.d.ts +8 -0
  1198. package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +42 -0
  1199. package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.d.ts +9 -0
  1200. package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +105 -0
  1201. package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.d.ts +6 -0
  1202. package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +32 -0
  1203. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.d.ts +12 -0
  1204. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +100 -0
  1205. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.d.ts +6 -0
  1206. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +66 -0
  1207. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.d.ts +19 -0
  1208. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +167 -0
  1209. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.d.ts +10 -0
  1210. package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +47 -0
  1211. package/lib/components/DataSpreadsheet/index.d.ts +8 -0
  1212. package/lib/components/DataSpreadsheet/types/index.d.ts +35 -0
  1213. package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.d.ts +1 -0
  1214. package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +32 -0
  1215. package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.d.ts +1 -0
  1216. package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.js +19 -0
  1217. package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.d.ts +1 -0
  1218. package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +33 -0
  1219. package/lib/components/DataSpreadsheet/utils/commonEventHandlers.d.ts +4 -0
  1220. package/lib/components/DataSpreadsheet/utils/commonEventHandlers.js +260 -0
  1221. package/lib/components/DataSpreadsheet/utils/createActiveCellFn.d.ts +12 -0
  1222. package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +61 -0
  1223. package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.d.ts +10 -0
  1224. package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +71 -0
  1225. package/lib/components/DataSpreadsheet/utils/getCellSize.d.ts +1 -0
  1226. package/lib/components/DataSpreadsheet/utils/getCellSize.js +28 -0
  1227. package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.d.ts +6 -0
  1228. package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +23 -0
  1229. package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.d.ts +9 -0
  1230. package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +37 -0
  1231. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.d.ts +7 -0
  1232. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +114 -0
  1233. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.d.ts +7 -0
  1234. package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +106 -0
  1235. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.d.ts +8 -0
  1236. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +44 -0
  1237. package/lib/components/DataSpreadsheet/utils/handleEditSubmit.d.ts +13 -0
  1238. package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +83 -0
  1239. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.d.ts +16 -0
  1240. package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +152 -0
  1241. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.d.ts +18 -0
  1242. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +270 -0
  1243. package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.d.ts +7 -0
  1244. package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +73 -0
  1245. package/lib/components/DataSpreadsheet/utils/removeCellSelections.d.ts +5 -0
  1246. package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +30 -0
  1247. package/lib/components/DataSpreadsheet/utils/selectAllCells.d.ts +9 -0
  1248. package/lib/components/DataSpreadsheet/utils/selectAllCells.js +55 -0
  1249. package/lib/components/Datagrid/Datagrid/Datagrid.d.ts +24 -0
  1250. package/lib/components/Datagrid/Datagrid/Datagrid.js +88 -0
  1251. package/lib/components/Datagrid/Datagrid/DatagridBody.d.ts +10 -0
  1252. package/lib/components/Datagrid/Datagrid/DatagridBody.js +37 -0
  1253. package/lib/components/Datagrid/Datagrid/DatagridContent.d.ts +16 -0
  1254. package/lib/components/Datagrid/Datagrid/DatagridContent.js +256 -0
  1255. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.d.ts +10 -0
  1256. package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +58 -0
  1257. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.d.ts +10 -0
  1258. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +62 -0
  1259. package/lib/components/Datagrid/Datagrid/DatagridHead.d.ts +10 -0
  1260. package/lib/components/Datagrid/Datagrid/DatagridHead.js +26 -0
  1261. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.d.ts +9 -0
  1262. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +285 -0
  1263. package/lib/components/Datagrid/Datagrid/DatagridRefBody.d.ts +10 -0
  1264. package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +46 -0
  1265. package/lib/components/Datagrid/Datagrid/DatagridRow.d.ts +10 -0
  1266. package/lib/components/Datagrid/Datagrid/DatagridRow.js +194 -0
  1267. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.d.ts +10 -0
  1268. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +117 -0
  1269. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.d.ts +24 -0
  1270. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +134 -0
  1271. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.d.ts +10 -0
  1272. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +43 -0
  1273. package/lib/components/Datagrid/Datagrid/DatagridToolbar.d.ts +18 -0
  1274. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +196 -0
  1275. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.d.ts +10 -0
  1276. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +154 -0
  1277. package/lib/components/Datagrid/Datagrid/DraggableElement.d.ts +34 -0
  1278. package/lib/components/Datagrid/Datagrid/DraggableElement.js +98 -0
  1279. package/lib/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.d.ts +12 -0
  1280. package/lib/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +33 -0
  1281. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.d.ts +18 -0
  1282. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +66 -0
  1283. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.d.ts +17 -0
  1284. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +72 -0
  1285. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.d.ts +29 -0
  1286. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +99 -0
  1287. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.d.ts +37 -0
  1288. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +172 -0
  1289. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.d.ts +19 -0
  1290. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +200 -0
  1291. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.d.ts +11 -0
  1292. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +68 -0
  1293. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.d.ts +1 -0
  1294. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +12 -0
  1295. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/index.d.ts +2 -0
  1296. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.d.ts +36 -0
  1297. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +325 -0
  1298. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.d.ts +46 -0
  1299. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +326 -0
  1300. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.d.ts +46 -0
  1301. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +188 -0
  1302. package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.d.ts +24 -0
  1303. package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +77 -0
  1304. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.d.ts +27 -0
  1305. package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +45 -0
  1306. package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.d.ts +9 -0
  1307. package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +38 -0
  1308. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/index.d.ts +4 -0
  1309. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.d.ts +8 -0
  1310. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +26 -0
  1311. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.d.ts +28 -0
  1312. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +479 -0
  1313. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.d.ts +9 -0
  1314. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +44 -0
  1315. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.d.ts +7 -0
  1316. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +30 -0
  1317. package/lib/components/Datagrid/Datagrid/addons/Filtering/index.d.ts +3 -0
  1318. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.d.ts +1 -0
  1319. package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +101 -0
  1320. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.d.ts +26 -0
  1321. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +67 -0
  1322. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/index.d.ts +1 -0
  1323. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.d.ts +25 -0
  1324. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +569 -0
  1325. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/index.d.ts +1 -0
  1326. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.d.ts +16 -0
  1327. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +118 -0
  1328. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.d.ts +1 -0
  1329. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +29 -0
  1330. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/index.d.ts +1 -0
  1331. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.d.ts +7 -0
  1332. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +40 -0
  1333. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.d.ts +1 -0
  1334. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +24 -0
  1335. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.d.ts +10 -0
  1336. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +252 -0
  1337. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.d.ts +7 -0
  1338. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +81 -0
  1339. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.d.ts +19 -0
  1340. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +92 -0
  1341. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.d.ts +3 -0
  1342. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +89 -0
  1343. package/lib/components/Datagrid/Datagrid/addons/RowSize/index.d.ts +1 -0
  1344. package/lib/components/Datagrid/Datagrid/addons/stateReducer.d.ts +31 -0
  1345. package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +354 -0
  1346. package/lib/components/Datagrid/Datagrid/index.d.ts +7 -0
  1347. package/lib/components/Datagrid/common-column-ids.d.ts +7 -0
  1348. package/lib/components/Datagrid/common-column-ids.js +12 -0
  1349. package/lib/components/Datagrid/index.d.ts +29 -0
  1350. package/lib/components/Datagrid/types/index.d.ts +280 -0
  1351. package/lib/components/Datagrid/useActionsColumn.d.ts +9 -0
  1352. package/lib/components/Datagrid/useActionsColumn.js +171 -0
  1353. package/lib/components/Datagrid/useColumnCenterAlign.d.ts +9 -0
  1354. package/lib/components/Datagrid/useColumnCenterAlign.js +37 -0
  1355. package/lib/components/Datagrid/useColumnOrder.d.ts +8 -0
  1356. package/lib/components/Datagrid/useColumnOrder.js +19 -0
  1357. package/lib/components/Datagrid/useColumnRightAlign.d.ts +9 -0
  1358. package/lib/components/Datagrid/useColumnRightAlign.js +37 -0
  1359. package/lib/components/Datagrid/useCustomizeColumns.d.ts +9 -0
  1360. package/lib/components/Datagrid/useCustomizeColumns.js +68 -0
  1361. package/lib/components/Datagrid/useDatagrid.d.ts +9 -0
  1362. package/lib/components/Datagrid/useDatagrid.js +50 -0
  1363. package/lib/components/Datagrid/useDefaultStringRenderer.d.ts +2 -0
  1364. package/lib/components/Datagrid/useDefaultStringRenderer.js +43 -0
  1365. package/lib/components/Datagrid/useDisableSelectRows.d.ts +9 -0
  1366. package/lib/components/Datagrid/useDisableSelectRows.js +96 -0
  1367. package/lib/components/Datagrid/useEditableCell.d.ts +2 -0
  1368. package/lib/components/Datagrid/useEditableCell.js +18 -0
  1369. package/lib/components/Datagrid/useExpandedRow.d.ts +9 -0
  1370. package/lib/components/Datagrid/useExpandedRow.js +46 -0
  1371. package/lib/components/Datagrid/useFiltering.d.ts +10 -0
  1372. package/lib/components/Datagrid/useFiltering.js +107 -0
  1373. package/lib/components/Datagrid/useFlexResize.d.ts +2 -0
  1374. package/lib/components/Datagrid/useFlexResize.js +85 -0
  1375. package/lib/components/Datagrid/useFloatingScroll.d.ts +2 -0
  1376. package/lib/components/Datagrid/useFloatingScroll.js +83 -0
  1377. package/lib/components/Datagrid/useFocusRowExpander.d.ts +6 -0
  1378. package/lib/components/Datagrid/useFocusRowExpander.js +45 -0
  1379. package/lib/components/Datagrid/useInfiniteScroll.d.ts +9 -0
  1380. package/lib/components/Datagrid/useInfiniteScroll.js +59 -0
  1381. package/lib/components/Datagrid/useInitialColumnSort.d.ts +1 -0
  1382. package/lib/components/Datagrid/useInitialColumnSort.js +49 -0
  1383. package/lib/components/Datagrid/useInlineEdit.d.ts +9 -0
  1384. package/lib/components/Datagrid/useInlineEdit.js +73 -0
  1385. package/lib/components/Datagrid/useNestedRowExpander.d.ts +2 -0
  1386. package/lib/components/Datagrid/useNestedRowExpander.js +108 -0
  1387. package/lib/components/Datagrid/useNestedRows.d.ts +9 -0
  1388. package/lib/components/Datagrid/useNestedRows.js +102 -0
  1389. package/lib/components/Datagrid/useOnRowClick.d.ts +9 -0
  1390. package/lib/components/Datagrid/useOnRowClick.js +80 -0
  1391. package/lib/components/Datagrid/useParentDimensions.d.ts +2 -0
  1392. package/lib/components/Datagrid/useParentDimensions.js +61 -0
  1393. package/lib/components/Datagrid/useResizeTable.d.ts +2 -0
  1394. package/lib/components/Datagrid/useResizeTable.js +42 -0
  1395. package/lib/components/Datagrid/useRowExpander.d.ts +2 -0
  1396. package/lib/components/Datagrid/useRowExpander.js +78 -0
  1397. package/lib/components/Datagrid/useRowIsMouseOver.d.ts +9 -0
  1398. package/lib/components/Datagrid/useRowIsMouseOver.js +51 -0
  1399. package/lib/components/Datagrid/useRowRenderer.d.ts +2 -0
  1400. package/lib/components/Datagrid/useRowRenderer.js +62 -0
  1401. package/lib/components/Datagrid/useRowSize.d.ts +2 -0
  1402. package/lib/components/Datagrid/useRowSize.js +62 -0
  1403. package/lib/components/Datagrid/useSelectAllToggle.d.ts +9 -0
  1404. package/lib/components/Datagrid/useSelectAllToggle.js +98 -0
  1405. package/lib/components/Datagrid/useSelectRows.d.ts +9 -0
  1406. package/lib/components/Datagrid/useSelectRows.js +147 -0
  1407. package/lib/components/Datagrid/useSkeletonRows.d.ts +8 -0
  1408. package/lib/components/Datagrid/useSkeletonRows.js +37 -0
  1409. package/lib/components/Datagrid/useSortableColumns.d.ts +14 -0
  1410. package/lib/components/Datagrid/useSortableColumns.js +150 -0
  1411. package/lib/components/Datagrid/useStickyColumn.d.ts +9 -0
  1412. package/lib/components/Datagrid/useStickyColumn.js +191 -0
  1413. package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.d.ts +8 -0
  1414. package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +21 -0
  1415. package/lib/components/Decorator/Decorator.d.ts +5 -0
  1416. package/lib/components/Decorator/Decorator.js +112 -0
  1417. package/lib/components/Decorator/index.d.ts +1 -0
  1418. package/lib/components/DecoratorBase/DecoratorBase.d.ts +7 -0
  1419. package/lib/components/DecoratorBase/DecoratorBase.js +239 -0
  1420. package/lib/components/DecoratorBase/DecoratorIcon.d.ts +5 -0
  1421. package/lib/components/DecoratorBase/DecoratorIcon.js +95 -0
  1422. package/lib/components/DecoratorBase/index.d.ts +1 -0
  1423. package/lib/components/DecoratorBase/utils.d.ts +8 -0
  1424. package/lib/components/DecoratorBase/utils.js +48 -0
  1425. package/lib/components/DecoratorDualButton/DecoratorDualButton.d.ts +6 -0
  1426. package/lib/components/DecoratorDualButton/DecoratorDualButton.js +141 -0
  1427. package/lib/components/DecoratorDualButton/index.d.ts +1 -0
  1428. package/lib/components/DecoratorLink/DecoratorLink.d.ts +6 -0
  1429. package/lib/components/DecoratorLink/DecoratorLink.js +131 -0
  1430. package/lib/components/DecoratorLink/index.d.ts +1 -0
  1431. package/lib/components/DecoratorSingleButton/DecoratorSingleButton.d.ts +6 -0
  1432. package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +131 -0
  1433. package/lib/components/DecoratorSingleButton/index.d.ts +1 -0
  1434. package/lib/components/DelimitedList/DelimitedList.d.ts +30 -0
  1435. package/lib/components/DelimitedList/DelimitedList.js +73 -0
  1436. package/lib/components/DelimitedList/index.d.ts +8 -0
  1437. package/lib/components/DescriptionList/DescriptionList.d.ts +6 -0
  1438. package/lib/components/DescriptionList/DescriptionList.js +92 -0
  1439. package/lib/components/DescriptionList/DescriptionListBody.d.ts +2 -0
  1440. package/lib/components/DescriptionList/DescriptionListBody.js +39 -0
  1441. package/lib/components/DescriptionList/DescriptionListCell.d.ts +2 -0
  1442. package/lib/components/DescriptionList/DescriptionListCell.js +39 -0
  1443. package/lib/components/DescriptionList/DescriptionListRow.d.ts +2 -0
  1444. package/lib/components/DescriptionList/DescriptionListRow.js +41 -0
  1445. package/lib/components/DescriptionList/constants.d.ts +6 -0
  1446. package/lib/components/DescriptionList/constants.js +18 -0
  1447. package/lib/components/DescriptionList/index.d.ts +4 -0
  1448. package/lib/components/EditFullPage/EditFullPage.d.ts +24 -0
  1449. package/lib/components/EditFullPage/EditFullPage.js +101 -0
  1450. package/lib/components/EditFullPage/index.d.ts +8 -0
  1451. package/lib/components/EditInPlace/EditInPlace.d.ts +105 -0
  1452. package/lib/components/EditInPlace/EditInPlace.js +317 -0
  1453. package/lib/components/EditInPlace/index.d.ts +8 -0
  1454. package/lib/components/EditSidePanel/EditSidePanel.d.ts +96 -0
  1455. package/lib/components/EditSidePanel/EditSidePanel.js +202 -0
  1456. package/lib/components/EditSidePanel/index.d.ts +8 -0
  1457. package/lib/components/EditTearsheet/EditTearsheet.d.ts +89 -0
  1458. package/lib/components/EditTearsheet/EditTearsheet.js +229 -0
  1459. package/lib/components/EditTearsheet/EditTearsheetForm.d.ts +47 -0
  1460. package/lib/components/EditTearsheet/EditTearsheetForm.js +120 -0
  1461. package/lib/components/EditTearsheet/index.d.ts +2 -0
  1462. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.d.ts +23 -0
  1463. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +97 -0
  1464. package/lib/components/EditTearsheetNarrow/index.d.ts +8 -0
  1465. package/lib/components/EditUpdateCards/EditUpdateCards.d.ts +105 -0
  1466. package/lib/components/EditUpdateCards/EditUpdateCards.js +226 -0
  1467. package/lib/components/EditUpdateCards/index.d.ts +8 -0
  1468. package/lib/components/EmptyStates/EmptyState.d.ts +80 -0
  1469. package/lib/components/EmptyStates/EmptyState.js +140 -0
  1470. package/lib/components/EmptyStates/EmptyStateContent.d.ts +65 -0
  1471. package/lib/components/EmptyStates/EmptyStateContent.js +95 -0
  1472. package/lib/components/EmptyStates/EmptyStateIllustration.deprecated.d.ts +11 -0
  1473. package/lib/components/EmptyStates/EmptyStateIllustration.deprecated.js +54 -0
  1474. package/lib/components/EmptyStates/EmptyStateV2.deprecated.d.ts +67 -0
  1475. package/lib/components/EmptyStates/EmptyStateV2.deprecated.js +141 -0
  1476. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.d.ts +21 -0
  1477. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +125 -0
  1478. package/lib/components/EmptyStates/ErrorEmptyState/index.d.ts +8 -0
  1479. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.d.ts +21 -0
  1480. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +125 -0
  1481. package/lib/components/EmptyStates/NoDataEmptyState/index.d.ts +8 -0
  1482. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.d.ts +21 -0
  1483. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +125 -0
  1484. package/lib/components/EmptyStates/NoTagsEmptyState/index.d.ts +8 -0
  1485. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.d.ts +21 -0
  1486. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +123 -0
  1487. package/lib/components/EmptyStates/NotFoundEmptyState/index.d.ts +8 -0
  1488. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.d.ts +21 -0
  1489. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +123 -0
  1490. package/lib/components/EmptyStates/NotificationsEmptyState/index.d.ts +8 -0
  1491. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.d.ts +21 -0
  1492. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +127 -0
  1493. package/lib/components/EmptyStates/UnauthorizedEmptyState/index.d.ts +8 -0
  1494. package/lib/components/EmptyStates/assets/ErrorIllustration.d.ts +15 -0
  1495. package/lib/components/EmptyStates/assets/ErrorIllustration.js +222 -0
  1496. package/lib/components/EmptyStates/assets/NoDataIllustration.d.ts +15 -0
  1497. package/lib/components/EmptyStates/assets/NoDataIllustration.js +185 -0
  1498. package/lib/components/EmptyStates/assets/NoTagsIllustration.d.ts +15 -0
  1499. package/lib/components/EmptyStates/assets/NoTagsIllustration.js +492 -0
  1500. package/lib/components/EmptyStates/assets/NotFoundIllustration.d.ts +15 -0
  1501. package/lib/components/EmptyStates/assets/NotFoundIllustration.js +369 -0
  1502. package/lib/components/EmptyStates/assets/NotificationsIllustration.d.ts +15 -0
  1503. package/lib/components/EmptyStates/assets/NotificationsIllustration.js +339 -0
  1504. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.d.ts +15 -0
  1505. package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +313 -0
  1506. package/lib/components/EmptyStates/index.d.ts +22 -0
  1507. package/lib/components/ExportModal/ExportModal.d.ts +116 -0
  1508. package/lib/components/ExportModal/ExportModal.js +302 -0
  1509. package/lib/components/ExportModal/index.d.ts +2 -0
  1510. package/lib/components/ExpressiveCard/ExpressiveCard.d.ts +95 -0
  1511. package/lib/components/ExpressiveCard/ExpressiveCard.js +138 -0
  1512. package/lib/components/ExpressiveCard/index.d.ts +2 -0
  1513. package/lib/components/FeatureFlags/index.d.ts +59 -0
  1514. package/lib/components/FeatureFlags/index.js +189 -0
  1515. package/lib/components/FilterPanel/FilterPanel.d.ts +6 -0
  1516. package/lib/components/FilterPanel/FilterPanel.js +61 -0
  1517. package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.d.ts +6 -0
  1518. package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +88 -0
  1519. package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.d.ts +6 -0
  1520. package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +94 -0
  1521. package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.d.ts +11 -0
  1522. package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +81 -0
  1523. package/lib/components/FilterPanel/FilterPanelCheckbox/index.d.ts +1 -0
  1524. package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.d.ts +11 -0
  1525. package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +156 -0
  1526. package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.d.ts +6 -0
  1527. package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +77 -0
  1528. package/lib/components/FilterPanel/FilterPanelGroup/index.d.ts +1 -0
  1529. package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.d.ts +5 -0
  1530. package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +63 -0
  1531. package/lib/components/FilterPanel/FilterPanelLabel/index.d.ts +1 -0
  1532. package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.d.ts +6 -0
  1533. package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +92 -0
  1534. package/lib/components/FilterPanel/index.d.ts +8 -0
  1535. package/lib/components/FilterSummary/FilterSummary.d.ts +23 -0
  1536. package/lib/components/FilterSummary/FilterSummary.js +145 -0
  1537. package/lib/components/FilterSummary/index.d.ts +8 -0
  1538. package/lib/components/FullPageError/FullPageError.d.ts +39 -0
  1539. package/lib/components/FullPageError/FullPageError.js +133 -0
  1540. package/lib/components/FullPageError/assets/Error403SVG.d.ts +9 -0
  1541. package/lib/components/FullPageError/assets/Error403SVG.js +719 -0
  1542. package/lib/components/FullPageError/assets/Error404SVG.d.ts +9 -0
  1543. package/lib/components/FullPageError/assets/Error404SVG.js +628 -0
  1544. package/lib/components/FullPageError/assets/ErrorGenericSVG.d.ts +9 -0
  1545. package/lib/components/FullPageError/assets/ErrorGenericSVG.js +719 -0
  1546. package/lib/components/FullPageError/index.d.ts +8 -0
  1547. package/lib/components/GetStartedCard/GetStartedCard.d.ts +63 -0
  1548. package/lib/components/GetStartedCard/GetStartedCard.js +84 -0
  1549. package/lib/components/GetStartedCard/index.d.ts +8 -0
  1550. package/lib/components/Guidebanner/Guidebanner.d.ts +73 -0
  1551. package/lib/components/Guidebanner/Guidebanner.js +218 -0
  1552. package/lib/components/Guidebanner/GuidebannerElement.d.ts +31 -0
  1553. package/lib/components/Guidebanner/GuidebannerElement.js +72 -0
  1554. package/lib/components/Guidebanner/GuidebannerElementButton.d.ts +30 -0
  1555. package/lib/components/Guidebanner/GuidebannerElementButton.js +85 -0
  1556. package/lib/components/Guidebanner/GuidebannerElementLink.d.ts +21 -0
  1557. package/lib/components/Guidebanner/GuidebannerElementLink.js +57 -0
  1558. package/lib/components/Guidebanner/index.d.ts +14 -0
  1559. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.d.ts +45 -0
  1560. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +98 -0
  1561. package/lib/components/HTTPErrors/HTTPError403/index.d.ts +1 -0
  1562. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.d.ts +45 -0
  1563. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +98 -0
  1564. package/lib/components/HTTPErrors/HTTPError404/index.d.ts +1 -0
  1565. package/lib/components/HTTPErrors/HTTPErrorContent.d.ts +18 -0
  1566. package/lib/components/HTTPErrors/HTTPErrorContent.js +78 -0
  1567. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.d.ts +45 -0
  1568. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +98 -0
  1569. package/lib/components/HTTPErrors/HTTPErrorOther/index.d.ts +1 -0
  1570. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.d.ts +11 -0
  1571. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +1252 -0
  1572. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.d.ts +11 -0
  1573. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +1051 -0
  1574. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.d.ts +11 -0
  1575. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +1102 -0
  1576. package/lib/components/HTTPErrors/index.d.ts +3 -0
  1577. package/lib/components/ImportModal/ImportModal.d.ts +136 -0
  1578. package/lib/components/ImportModal/ImportModal.js +353 -0
  1579. package/lib/components/ImportModal/index.d.ts +2 -0
  1580. package/lib/components/InlineTip/InlineTip.d.ts +86 -0
  1581. package/lib/components/InlineTip/InlineTip.js +199 -0
  1582. package/lib/components/InlineTip/InlineTipButton.d.ts +24 -0
  1583. package/lib/components/InlineTip/InlineTipButton.js +55 -0
  1584. package/lib/components/InlineTip/InlineTipLink.d.ts +21 -0
  1585. package/lib/components/InlineTip/InlineTipLink.js +59 -0
  1586. package/lib/components/InlineTip/index.d.ts +12 -0
  1587. package/lib/components/InlineTip/utils.d.ts +1 -0
  1588. package/lib/components/InlineTip/utils.js +38 -0
  1589. package/lib/components/InterstitialScreen/InterstitialScreen.d.ts +54 -0
  1590. package/lib/components/InterstitialScreen/InterstitialScreen.js +199 -0
  1591. package/lib/components/InterstitialScreen/InterstitialScreenBody.d.ts +33 -0
  1592. package/lib/components/InterstitialScreen/InterstitialScreenBody.js +122 -0
  1593. package/lib/components/InterstitialScreen/InterstitialScreenFooter.d.ts +47 -0
  1594. package/lib/components/InterstitialScreen/InterstitialScreenFooter.js +174 -0
  1595. package/lib/components/InterstitialScreen/InterstitialScreenHeader.d.ts +41 -0
  1596. package/lib/components/InterstitialScreen/InterstitialScreenHeader.js +111 -0
  1597. package/lib/components/InterstitialScreen/InterstitialScreenView.d.ts +29 -0
  1598. package/lib/components/InterstitialScreen/InterstitialScreenView.js +62 -0
  1599. package/lib/components/InterstitialScreen/_story-assets/InterstitialScreenViewModule/InterstitialScreenViewModule.d.ts +33 -0
  1600. package/lib/components/InterstitialScreen/context.d.ts +31 -0
  1601. package/lib/components/InterstitialScreen/context.js +21 -0
  1602. package/lib/components/InterstitialScreen/index.d.ts +13 -0
  1603. package/lib/components/MultiAddSelect/MultiAddSelect.d.ts +145 -0
  1604. package/lib/components/MultiAddSelect/MultiAddSelect.js +159 -0
  1605. package/lib/components/MultiAddSelect/index.d.ts +2 -0
  1606. package/lib/components/Nav/Nav.d.ts +6 -0
  1607. package/lib/components/Nav/Nav.js +158 -0
  1608. package/lib/components/Nav/NavItem.d.ts +35 -0
  1609. package/lib/components/Nav/NavItem.js +158 -0
  1610. package/lib/components/Nav/NavItemLink.d.ts +3 -0
  1611. package/lib/components/Nav/NavItemLink.js +31 -0
  1612. package/lib/components/Nav/NavList.d.ts +4 -0
  1613. package/lib/components/Nav/NavList.js +166 -0
  1614. package/lib/components/Nav/index.d.ts +3 -0
  1615. package/lib/components/NonLinearReading/NonLinearReading.d.ts +33 -0
  1616. package/lib/components/NonLinearReading/NonLinearReading.js +82 -0
  1617. package/lib/components/NonLinearReading/index.d.ts +8 -0
  1618. package/lib/components/NotificationsPanel/NotificationsPanel.d.ts +223 -0
  1619. package/lib/components/NotificationsPanel/NotificationsPanel.js +592 -0
  1620. package/lib/components/NotificationsPanel/index.d.ts +8 -0
  1621. package/lib/components/NotificationsPanel/utils.d.ts +15 -0
  1622. package/lib/components/NotificationsPanel/utils.js +56 -0
  1623. package/lib/components/OptionsTile/OptionsTile.d.ts +77 -0
  1624. package/lib/components/OptionsTile/OptionsTile.js +313 -0
  1625. package/lib/components/OptionsTile/index.d.ts +8 -0
  1626. package/lib/components/PageHeader/PageHeader.d.ts +305 -0
  1627. package/lib/components/PageHeader/PageHeader.js +859 -0
  1628. package/lib/components/PageHeader/PageHeaderTitle.d.ts +16 -0
  1629. package/lib/components/PageHeader/PageHeaderTitle.js +147 -0
  1630. package/lib/components/PageHeader/PageHeaderUtils.d.ts +7 -0
  1631. package/lib/components/PageHeader/PageHeaderUtils.js +196 -0
  1632. package/lib/components/PageHeader/index.d.ts +2 -0
  1633. package/lib/components/PageHeader/next/PageHeader.d.ts +292 -0
  1634. package/lib/components/PageHeader/next/PageHeader.js +795 -0
  1635. package/lib/components/PageHeader/next/_story-assets/pageActionButtonItems.d.ts +15 -0
  1636. package/lib/components/PageHeader/next/context.d.ts +29 -0
  1637. package/lib/components/PageHeader/next/context.js +36 -0
  1638. package/lib/components/PageHeader/next/index.d.ts +8 -0
  1639. package/lib/components/PageHeader/next/index.js +35 -0
  1640. package/lib/components/PageHeader/next/overflowHandler.d.ts +100 -0
  1641. package/lib/components/PageHeader/next/overflowHandler.js +174 -0
  1642. package/lib/components/PageHeader/next/utils.d.ts +19 -0
  1643. package/lib/components/PageHeader/next/utils.js +71 -0
  1644. package/lib/components/ProductiveCard/ProductiveCard.d.ts +125 -0
  1645. package/lib/components/ProductiveCard/ProductiveCard.js +171 -0
  1646. package/lib/components/ProductiveCard/index.d.ts +2 -0
  1647. package/lib/components/RemoveModal/RemoveModal.d.ts +83 -0
  1648. package/lib/components/RemoveModal/RemoveModal.js +200 -0
  1649. package/lib/components/RemoveModal/index.d.ts +2 -0
  1650. package/lib/components/Saving/Saving.d.ts +69 -0
  1651. package/lib/components/Saving/Saving.js +157 -0
  1652. package/lib/components/Saving/index.d.ts +2 -0
  1653. package/lib/components/ScrollGradient/ScrollGradient.d.ts +5 -0
  1654. package/lib/components/ScrollGradient/ScrollGradient.js +211 -0
  1655. package/lib/components/ScrollGradient/constants.d.ts +10 -0
  1656. package/lib/components/ScrollGradient/constants.js +69 -0
  1657. package/lib/components/ScrollGradient/index.d.ts +1 -0
  1658. package/lib/components/SearchBar/SearchBar.d.ts +60 -0
  1659. package/lib/components/SearchBar/SearchBar.js +216 -0
  1660. package/lib/components/SearchBar/index.d.ts +8 -0
  1661. package/lib/components/SidePanel/SidePanel.d.ts +168 -0
  1662. package/lib/components/SidePanel/SidePanel.js +728 -0
  1663. package/lib/components/SidePanel/constants.d.ts +14 -0
  1664. package/lib/components/SidePanel/constants.js +19 -0
  1665. package/lib/components/SidePanel/index.d.ts +8 -0
  1666. package/lib/components/SimpleHeader/SimpleHeader.d.ts +34 -0
  1667. package/lib/components/SimpleHeader/SimpleHeader.js +95 -0
  1668. package/lib/components/SingleAddSelect/SingleAddSelect.d.ts +75 -0
  1669. package/lib/components/SingleAddSelect/SingleAddSelect.js +108 -0
  1670. package/lib/components/SingleAddSelect/index.d.ts +2 -0
  1671. package/lib/components/StatusIcon/StatusIcon.d.ts +43 -0
  1672. package/lib/components/StatusIcon/StatusIcon.js +274 -0
  1673. package/lib/components/StatusIcon/index.d.ts +8 -0
  1674. package/lib/components/StatusIndicator/StatusIndicator.d.ts +6 -0
  1675. package/lib/components/StatusIndicator/StatusIndicator.js +102 -0
  1676. package/lib/components/StatusIndicator/StatusIndicatorStep.d.ts +6 -0
  1677. package/lib/components/StatusIndicator/StatusIndicatorStep.js +92 -0
  1678. package/lib/components/StatusIndicator/index.d.ts +2 -0
  1679. package/lib/components/StepFlow/StepContext.d.ts +14 -0
  1680. package/lib/components/StepFlow/StepGroup.d.ts +10 -0
  1681. package/lib/components/StepFlow/index.d.ts +9 -0
  1682. package/lib/components/StepFlow/story-assets/SidePanel/Example.d.ts +8 -0
  1683. package/lib/components/StepFlow/story-assets/SidePanel/StepSidePanel.d.ts +21 -0
  1684. package/lib/components/StepFlow/story-assets/StepActions.d.ts +23 -0
  1685. package/lib/components/StepFlow/story-assets/Tearsheet/Example.d.ts +8 -0
  1686. package/lib/components/StepFlow/story-assets/Tearsheet/StepTearsheet.d.ts +20 -0
  1687. package/lib/components/StepFlow/types.d.ts +22 -0
  1688. package/lib/components/StringFormatter/StringFormatter.d.ts +6 -0
  1689. package/lib/components/StringFormatter/StringFormatter.js +120 -0
  1690. package/lib/components/StringFormatter/index.d.ts +1 -0
  1691. package/lib/components/StringFormatter/utils/enums.d.ts +33 -0
  1692. package/lib/components/StringFormatter/utils/enums.js +54 -0
  1693. package/lib/components/TagOverflow/TagOverflow.d.ts +54 -0
  1694. package/lib/components/TagOverflow/TagOverflow.js +237 -0
  1695. package/lib/components/TagOverflow/TagOverflowModal.d.ts +39 -0
  1696. package/lib/components/TagOverflow/TagOverflowModal.js +120 -0
  1697. package/lib/components/TagOverflow/TagOverflowPopover.d.ts +16 -0
  1698. package/lib/components/TagOverflow/TagOverflowPopover.js +171 -0
  1699. package/lib/components/TagOverflow/constants.d.ts +14 -0
  1700. package/lib/components/TagOverflow/constants.js +32 -0
  1701. package/lib/components/TagOverflow/index.d.ts +8 -0
  1702. package/lib/components/TagSet/TagSet.d.ts +101 -0
  1703. package/lib/components/TagSet/TagSet.js +360 -0
  1704. package/lib/components/TagSet/TagSetModal.d.ts +32 -0
  1705. package/lib/components/TagSet/TagSetModal.js +118 -0
  1706. package/lib/components/TagSet/TagSetOverflow.d.ts +57 -0
  1707. package/lib/components/TagSet/TagSetOverflow.js +194 -0
  1708. package/lib/components/TagSet/index.d.ts +2 -0
  1709. package/lib/components/Tearsheet/Tearsheet.d.ts +155 -0
  1710. package/lib/components/Tearsheet/Tearsheet.js +201 -0
  1711. package/lib/components/Tearsheet/TearsheetNarrow.d.ts +119 -0
  1712. package/lib/components/Tearsheet/TearsheetNarrow.js +161 -0
  1713. package/lib/components/Tearsheet/TearsheetShell.d.ts +155 -0
  1714. package/lib/components/Tearsheet/TearsheetShell.js +518 -0
  1715. package/lib/components/Tearsheet/index.d.ts +10 -0
  1716. package/lib/components/Tearsheet/next/StackContext.d.ts +21 -0
  1717. package/lib/components/Tearsheet/next/StackContext.js +97 -0
  1718. package/lib/components/Tearsheet/next/Tearsheet.d.ts +96 -0
  1719. package/lib/components/Tearsheet/next/Tearsheet.js +167 -0
  1720. package/lib/components/Tearsheet/next/TearsheetBody.d.ts +73 -0
  1721. package/lib/components/Tearsheet/next/TearsheetBody.js +140 -0
  1722. package/lib/components/Tearsheet/next/TearsheetHeader.d.ts +65 -0
  1723. package/lib/components/Tearsheet/next/TearsheetHeader.js +127 -0
  1724. package/lib/components/Tearsheet/next/TearsheetHeaderActions.d.ts +54 -0
  1725. package/lib/components/Tearsheet/next/TearsheetHeaderActions.js +109 -0
  1726. package/lib/components/Tearsheet/next/TearsheetHeaderContent.d.ts +42 -0
  1727. package/lib/components/Tearsheet/next/TearsheetHeaderContent.js +58 -0
  1728. package/lib/components/Tearsheet/next/_story-assets/StepTearsheet.d.ts +23 -0
  1729. package/lib/components/Tearsheet/next/context.d.ts +26 -0
  1730. package/lib/components/Tearsheet/next/context.js +29 -0
  1731. package/lib/components/Tearsheet/next/index.d.ts +14 -0
  1732. package/lib/components/Toolbar/Toolbar.d.ts +24 -0
  1733. package/lib/components/Toolbar/Toolbar.js +110 -0
  1734. package/lib/components/Toolbar/ToolbarButton.d.ts +34 -0
  1735. package/lib/components/Toolbar/ToolbarButton.js +69 -0
  1736. package/lib/components/Toolbar/ToolbarGroup.d.ts +17 -0
  1737. package/lib/components/Toolbar/ToolbarGroup.js +37 -0
  1738. package/lib/components/Toolbar/index.d.ts +12 -0
  1739. package/lib/components/TooltipTrigger/TooltipTrigger.d.ts +18 -0
  1740. package/lib/components/TooltipTrigger/TooltipTrigger.js +64 -0
  1741. package/lib/components/TooltipTrigger/index.d.ts +1 -0
  1742. package/lib/components/TruncatedList/TruncatedList.d.ts +51 -0
  1743. package/lib/components/TruncatedList/TruncatedList.js +162 -0
  1744. package/lib/components/TruncatedList/index.d.ts +8 -0
  1745. package/lib/components/TruncatedText/TruncatedText.d.ts +47 -0
  1746. package/lib/components/TruncatedText/TruncatedText.js +89 -0
  1747. package/lib/components/TruncatedText/index.d.ts +8 -0
  1748. package/lib/components/TruncatedText/useTruncatedText.d.ts +16 -0
  1749. package/lib/components/TruncatedText/useTruncatedText.js +45 -0
  1750. package/lib/components/UserAvatar/UserAvatar.d.ts +60 -0
  1751. package/lib/components/UserAvatar/UserAvatar.js +164 -0
  1752. package/lib/components/UserAvatar/index.d.ts +1 -0
  1753. package/lib/components/UserProfileImage/UserProfileImage.d.ts +69 -0
  1754. package/lib/components/UserProfileImage/UserProfileImage.js +173 -0
  1755. package/lib/components/UserProfileImage/index.d.ts +2 -0
  1756. package/lib/components/WebTerminal/WebTerminal.d.ts +52 -0
  1757. package/lib/components/WebTerminal/WebTerminal.js +204 -0
  1758. package/lib/components/WebTerminal/WebTerminalContentWrapper.d.ts +14 -0
  1759. package/lib/components/WebTerminal/WebTerminalContentWrapper.js +52 -0
  1760. package/lib/components/WebTerminal/hooks/index.d.ts +17 -0
  1761. package/lib/components/WebTerminal/hooks/index.js +51 -0
  1762. package/lib/components/WebTerminal/index.d.ts +11 -0
  1763. package/lib/components/_Canary/Canary.d.ts +12 -0
  1764. package/lib/components/_Canary/Canary.js +51 -0
  1765. package/lib/components/_Canary/index.d.ts +1 -0
  1766. package/lib/components/index.d.ts +91 -0
  1767. package/lib/global/js/hooks/index.d.ts +16 -0
  1768. package/lib/global/js/hooks/useActiveElement.d.ts +1 -0
  1769. package/lib/global/js/hooks/useActiveElement.js +26 -0
  1770. package/lib/global/js/hooks/useClickOutside.d.ts +1 -0
  1771. package/lib/global/js/hooks/useClickOutside.js +26 -0
  1772. package/lib/global/js/hooks/useCollapsible.d.ts +19 -0
  1773. package/lib/global/js/hooks/useCollapsible.js +70 -0
  1774. package/lib/global/js/hooks/useControllableState.d.ts +15 -0
  1775. package/lib/global/js/hooks/useControllableState.js +32 -0
  1776. package/lib/global/js/hooks/useCreateComponentFocus.d.ts +7 -0
  1777. package/lib/global/js/hooks/useCreateComponentFocus.js +74 -0
  1778. package/lib/global/js/hooks/useCreateComponentStepChange.d.ts +26 -0
  1779. package/lib/global/js/hooks/useCreateComponentStepChange.js +176 -0
  1780. package/lib/global/js/hooks/useFocus.d.ts +15 -0
  1781. package/lib/global/js/hooks/useFocus.js +101 -0
  1782. package/lib/global/js/hooks/useIsomorphicEffect.d.ts +8 -0
  1783. package/lib/global/js/hooks/useIsomorphicEffect.js +15 -0
  1784. package/lib/global/js/hooks/useMatchMedia.d.ts +13 -0
  1785. package/lib/global/js/hooks/useMatchMedia.js +35 -0
  1786. package/lib/global/js/hooks/useOverflowItems/index.d.ts +7 -0
  1787. package/lib/global/js/hooks/useOverflowItems/useOverflowItems.d.ts +21 -0
  1788. package/lib/global/js/hooks/useOverflowItems/useOverflowItems.js +113 -0
  1789. package/lib/global/js/hooks/useOverflowString.d.ts +9 -0
  1790. package/lib/global/js/hooks/useOverflowString.js +44 -0
  1791. package/lib/global/js/hooks/usePortalTarget.d.ts +1 -0
  1792. package/lib/global/js/hooks/usePortalTarget.js +31 -0
  1793. package/lib/global/js/hooks/usePrefersReducedMotion.d.ts +1 -0
  1794. package/lib/global/js/hooks/usePrefersReducedMotion.js +35 -0
  1795. package/lib/global/js/hooks/usePrefix.d.ts +1 -0
  1796. package/lib/global/js/hooks/usePrefix.js +14 -0
  1797. package/lib/global/js/hooks/usePresence.d.ts +33 -0
  1798. package/lib/global/js/hooks/usePresence.js +61 -0
  1799. package/lib/global/js/hooks/usePreviousValue.d.ts +1 -0
  1800. package/lib/global/js/hooks/usePreviousValue.js +25 -0
  1801. package/lib/global/js/hooks/useResetCreateComponent.d.ts +10 -0
  1802. package/lib/global/js/hooks/useResetCreateComponent.js +54 -0
  1803. package/lib/global/js/hooks/useResizeObserver.d.ts +11 -0
  1804. package/lib/global/js/hooks/useResizeObserver.js +76 -0
  1805. package/lib/global/js/hooks/useRetrieveFormTitles.d.ts +5 -0
  1806. package/lib/global/js/hooks/useRetrieveFormTitles.js +33 -0
  1807. package/lib/global/js/hooks/useRetrieveStepData.d.ts +9 -0
  1808. package/lib/global/js/hooks/useRetrieveStepData.js +56 -0
  1809. package/lib/global/js/hooks/useValidCreateStepCount.d.ts +1 -0
  1810. package/lib/global/js/hooks/useValidCreateStepCount.js +25 -0
  1811. package/lib/global/js/hooks/useWindowResize.d.ts +1 -0
  1812. package/lib/global/js/hooks/useWindowResize.js +70 -0
  1813. package/lib/global/js/hooks/useWindowScroll.d.ts +3 -0
  1814. package/lib/global/js/hooks/useWindowScroll.js +77 -0
  1815. package/lib/global/js/package-settings.d.ts +150 -0
  1816. package/lib/global/js/package-settings.js +252 -0
  1817. package/lib/global/js/utils/Wrap.d.ts +49 -0
  1818. package/lib/global/js/utils/Wrap.js +90 -0
  1819. package/lib/global/js/utils/carousel/carousel.d.ts +14 -0
  1820. package/lib/global/js/utils/carousel/index.d.ts +8 -0
  1821. package/lib/global/js/utils/carousel/swipeEvents.d.ts +7 -0
  1822. package/lib/global/js/utils/carousel/types.d.ts +38 -0
  1823. package/lib/global/js/utils/checkForOverflow.d.ts +5 -0
  1824. package/lib/global/js/utils/checkForOverflow.js +23 -0
  1825. package/lib/global/js/utils/clamp.d.ts +7 -0
  1826. package/lib/global/js/utils/clamp.js +27 -0
  1827. package/lib/global/js/utils/debounce.d.ts +7 -0
  1828. package/lib/global/js/utils/debounce.js +32 -0
  1829. package/lib/global/js/utils/deepCloneObject.d.ts +1 -0
  1830. package/lib/global/js/utils/deepCloneObject.js +26 -0
  1831. package/lib/global/js/utils/deepCompareObject.d.ts +7 -0
  1832. package/lib/global/js/utils/deepCompareObject.js +40 -0
  1833. package/lib/global/js/utils/devtools.d.ts +6 -0
  1834. package/lib/global/js/utils/devtools.js +20 -0
  1835. package/lib/global/js/utils/getFocusableElements.d.ts +1 -0
  1836. package/lib/global/js/utils/getFocusableElements.js +15 -0
  1837. package/lib/global/js/utils/getNodeTextContent.d.ts +1 -0
  1838. package/lib/global/js/utils/getNodeTextContent.js +54 -0
  1839. package/lib/global/js/utils/getNumberOfHiddenSteps.d.ts +1 -0
  1840. package/lib/global/js/utils/getNumberOfHiddenSteps.js +23 -0
  1841. package/lib/global/js/utils/getScrollbarWidth.d.ts +1 -0
  1842. package/lib/global/js/utils/getScrollbarWidth.js +19 -0
  1843. package/lib/global/js/utils/getSupportedLocale.d.ts +12 -0
  1844. package/lib/global/js/utils/getSupportedLocale.js +31 -0
  1845. package/lib/global/js/utils/lastIndexInArray.d.ts +1 -0
  1846. package/lib/global/js/utils/lastIndexInArray.js +27 -0
  1847. package/lib/global/js/utils/makeDraggable/index.d.ts +1 -0
  1848. package/lib/global/js/utils/makeDraggable/makeDraggable.d.ts +38 -0
  1849. package/lib/global/js/utils/makeDraggable/makeDraggable.js +147 -0
  1850. package/lib/global/js/utils/makeDraggable/makeDraggable.stories.d.ts +22 -0
  1851. package/lib/global/js/utils/pconsole.d.ts +15 -0
  1852. package/lib/global/js/utils/pconsole.js +45 -0
  1853. package/lib/global/js/utils/props-helper.d.ts +31 -0
  1854. package/lib/global/js/utils/props-helper.js +153 -0
  1855. package/lib/global/js/utils/rangeWithCallback.d.ts +1 -0
  1856. package/lib/global/js/utils/rangeWithCallback.js +18 -0
  1857. package/lib/global/js/utils/scrollableAncestor.d.ts +1 -0
  1858. package/lib/global/js/utils/scrollableAncestor.js +48 -0
  1859. package/lib/global/js/utils/throttle.d.ts +7 -0
  1860. package/lib/global/js/utils/throttle.js +21 -0
  1861. package/lib/global/js/utils/useId.d.ts +6 -0
  1862. package/lib/global/js/utils/useId.js +34 -0
  1863. package/lib/global/js/utils/uuidv4.d.ts +8 -0
  1864. package/lib/global/js/utils/uuidv4.js +20 -0
  1865. package/lib/global/js/utils/wait.d.ts +8 -0
  1866. package/lib/global/js/utils/wait.js +18 -0
  1867. package/lib/index.d.ts +9 -0
  1868. package/lib/index.js +371 -0
  1869. package/lib/node_modules/@carbon/colors/es/index.js +20 -0
  1870. package/lib/node_modules/@carbon/icon-helpers/es/index.js +128 -0
  1871. package/lib/node_modules/@carbon/icons-react/es/Icon.js +75 -0
  1872. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-10.js +3112 -0
  1873. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-3.js +3303 -0
  1874. package/lib/node_modules/@carbon/icons-react/es/iconPropTypes-C5chbmyn.js +16 -0
  1875. package/lib/node_modules/@floating-ui/core/dist/floating-ui.core.js +600 -0
  1876. package/lib/node_modules/@floating-ui/dom/dist/floating-ui.dom.js +722 -0
  1877. package/lib/node_modules/@floating-ui/react-dom/dist/floating-ui.react-dom.js +102 -0
  1878. package/lib/node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.js +182 -0
  1879. package/lib/node_modules/@floating-ui/utils/dist/floating-ui.utils.js +164 -0
  1880. package/lib/node_modules/object-assign/index.js +91 -0
  1881. package/lib/node_modules/prop-types/checkPropTypes.js +97 -0
  1882. package/lib/node_modules/prop-types/factoryWithThrowingShims.js +66 -0
  1883. package/lib/node_modules/prop-types/factoryWithTypeCheckers.js +563 -0
  1884. package/lib/node_modules/prop-types/index.js +34 -0
  1885. package/lib/node_modules/prop-types/lib/ReactPropTypesSecret.js +20 -0
  1886. package/lib/node_modules/prop-types/lib/has.js +19 -0
  1887. package/lib/settings.d.ts +133 -0
  1888. package/lib/settings.js +87 -0
  1889. package/package.json +6 -6
  1890. package/scss/components/APIKeyModal/_api-key-modal.scss +56 -0
  1891. package/scss/components/APIKeyModal/_carbon-imports.scss +15 -0
  1892. package/scss/components/APIKeyModal/_index-with-carbon.scss +9 -0
  1893. package/scss/components/APIKeyModal/_index.scss +10 -0
  1894. package/scss/components/AboutModal/_about-modal.scss +101 -0
  1895. package/scss/components/AboutModal/_carbon-imports.scss +11 -0
  1896. package/scss/components/AboutModal/_index-with-carbon.scss +9 -0
  1897. package/scss/components/AboutModal/_index.scss +8 -0
  1898. package/scss/components/ActionBar/_action-bar.scss +51 -0
  1899. package/scss/components/ActionBar/_carbon-imports.scss +11 -0
  1900. package/scss/components/ActionBar/_index-with-carbon.scss +9 -0
  1901. package/scss/components/ActionBar/_index.scss +8 -0
  1902. package/scss/components/ActionSet/_action-set.scss +126 -0
  1903. package/scss/components/ActionSet/_carbon-imports.scss +11 -0
  1904. package/scss/components/ActionSet/_index-with-carbon.scss +9 -0
  1905. package/scss/components/ActionSet/_index.scss +8 -0
  1906. package/scss/components/AddSelect/_add-select.scss +468 -0
  1907. package/scss/components/AddSelect/_carbon-imports.scss +19 -0
  1908. package/scss/components/AddSelect/_index-with-carbon.scss +9 -0
  1909. package/scss/components/AddSelect/_index.scss +10 -0
  1910. package/scss/components/BigNumber/_big-number.scss +157 -0
  1911. package/scss/components/BigNumber/_carbon-imports.scss +11 -0
  1912. package/scss/components/BigNumber/_index-with-carbon.scss +9 -0
  1913. package/scss/components/BigNumber/_index.scss +8 -0
  1914. package/scss/components/BreadcrumbWithOverflow/_breadcrumb-with-overflow.scss +96 -0
  1915. package/scss/components/BreadcrumbWithOverflow/_carbon-imports.scss +12 -0
  1916. package/scss/components/BreadcrumbWithOverflow/_index-with-carbon.scss +9 -0
  1917. package/scss/components/BreadcrumbWithOverflow/_index.scss +8 -0
  1918. package/scss/components/ButtonMenu/_button-menu.scss +60 -0
  1919. package/scss/components/ButtonMenu/_carbon-imports.scss +9 -0
  1920. package/scss/components/ButtonMenu/_index-with-carbon.scss +9 -0
  1921. package/scss/components/ButtonMenu/_index.scss +8 -0
  1922. package/scss/components/ButtonSetWithOverflow/_button-set-with-overflow.scss +42 -0
  1923. package/scss/components/ButtonSetWithOverflow/_carbon-imports.scss +10 -0
  1924. package/scss/components/ButtonSetWithOverflow/_index-with-carbon.scss +9 -0
  1925. package/scss/components/ButtonSetWithOverflow/_index.scss +8 -0
  1926. package/scss/components/Card/_carbon-imports.scss +11 -0
  1927. package/scss/components/Card/_card.scss +238 -0
  1928. package/scss/components/Card/_index-with-carbon.scss +9 -0
  1929. package/scss/components/Card/_index.scss +8 -0
  1930. package/scss/components/Carousel/_carbon-imports.scss +6 -0
  1931. package/scss/components/Carousel/_carousel.scss +76 -0
  1932. package/scss/components/Carousel/_index-with-carbon.scss +9 -0
  1933. package/scss/components/Carousel/_index.scss +8 -0
  1934. package/scss/components/Cascade/_carbon-imports.scss +6 -0
  1935. package/scss/components/Cascade/_cascade.scss +47 -0
  1936. package/scss/components/Cascade/_index-with-carbon.scss +9 -0
  1937. package/scss/components/Cascade/_index.scss +10 -0
  1938. package/scss/components/Checklist/_carbon-imports.scss +11 -0
  1939. package/scss/components/Checklist/_checklist.scss +217 -0
  1940. package/scss/components/Checklist/_index-with-carbon.scss +9 -0
  1941. package/scss/components/Checklist/_index.scss +8 -0
  1942. package/scss/components/Coachmark/_bubble.scss +61 -0
  1943. package/scss/components/Coachmark/_carbon-imports.scss +10 -0
  1944. package/scss/components/Coachmark/_coachmark-beacon.scss +164 -0
  1945. package/scss/components/Coachmark/_coachmark-dragbar.scss +26 -0
  1946. package/scss/components/Coachmark/_coachmark-header.scss +20 -0
  1947. package/scss/components/Coachmark/_coachmark-overlay.scss +376 -0
  1948. package/scss/components/Coachmark/_coachmark-tagline.scss +143 -0
  1949. package/scss/components/Coachmark/_coachmark.scss +53 -0
  1950. package/scss/components/Coachmark/_index-with-carbon.scss +9 -0
  1951. package/scss/components/Coachmark/_index.scss +8 -0
  1952. package/scss/components/CoachmarkBeacon/_carbon-imports.scss +9 -0
  1953. package/scss/components/CoachmarkBeacon/_coachmark-beacon.scss +164 -0
  1954. package/scss/components/CoachmarkBeacon/_index-with-carbon.scss +9 -0
  1955. package/scss/components/CoachmarkBeacon/_index.scss +8 -0
  1956. package/scss/components/CoachmarkButton/_carbon-imports.scss +9 -0
  1957. package/scss/components/CoachmarkButton/_coachmark-button.scss +25 -0
  1958. package/scss/components/CoachmarkButton/_index-with-carbon.scss +9 -0
  1959. package/scss/components/CoachmarkButton/_index.scss +8 -0
  1960. package/scss/components/CoachmarkFixed/_carbon-imports.scss +9 -0
  1961. package/scss/components/CoachmarkFixed/_coachmark-fixed.scss +25 -0
  1962. package/scss/components/CoachmarkFixed/_index-with-carbon.scss +9 -0
  1963. package/scss/components/CoachmarkFixed/_index.scss +8 -0
  1964. package/scss/components/CoachmarkOverlayElement/_carbon-imports.scss +9 -0
  1965. package/scss/components/CoachmarkOverlayElement/_coachmark-overlay-element.scss +52 -0
  1966. package/scss/components/CoachmarkOverlayElement/_index-with-carbon.scss +9 -0
  1967. package/scss/components/CoachmarkOverlayElement/_index.scss +8 -0
  1968. package/scss/components/CoachmarkOverlayElements/_carbon-imports.scss +9 -0
  1969. package/scss/components/CoachmarkOverlayElements/_coachmark-overlay-elements.scss +48 -0
  1970. package/scss/components/CoachmarkOverlayElements/_index-with-carbon.scss +9 -0
  1971. package/scss/components/CoachmarkOverlayElements/_index.scss +8 -0
  1972. package/scss/components/CoachmarkStack/_carbon-imports.scss +9 -0
  1973. package/scss/components/CoachmarkStack/_coachmark-stack.scss +133 -0
  1974. package/scss/components/CoachmarkStack/_index-with-carbon.scss +9 -0
  1975. package/scss/components/CoachmarkStack/_index.scss +8 -0
  1976. package/scss/components/ComboButton/_carbon-imports.scss +11 -0
  1977. package/scss/components/ComboButton/_combo-button.scss +78 -0
  1978. package/scss/components/ComboButton/_index-with-carbon.scss +9 -0
  1979. package/scss/components/ComboButton/_index.scss +10 -0
  1980. package/scss/components/ConditionBuilder/_carbon-imports.scss +9 -0
  1981. package/scss/components/ConditionBuilder/_condition-builder.scss +79 -0
  1982. package/scss/components/ConditionBuilder/_index-with-carbon.scss +9 -0
  1983. package/scss/components/ConditionBuilder/_index.scss +8 -0
  1984. package/scss/components/ConditionBuilder/styles/_conditionBuilderCondition.scss +114 -0
  1985. package/scss/components/ConditionBuilder/styles/_conditionBuilderItem.scss +322 -0
  1986. package/scss/components/ConditionBuilder/styles/_index.scss +9 -0
  1987. package/scss/components/CreateFullPage/_carbon-imports.scss +17 -0
  1988. package/scss/components/CreateFullPage/_create-full-page.scss +188 -0
  1989. package/scss/components/CreateFullPage/_index-with-carbon.scss +9 -0
  1990. package/scss/components/CreateFullPage/_index.scss +8 -0
  1991. package/scss/components/CreateInfluencer/_carbon-imports.scss +10 -0
  1992. package/scss/components/CreateInfluencer/_create-influencer.scss +93 -0
  1993. package/scss/components/CreateInfluencer/_index-with-carbon.scss +9 -0
  1994. package/scss/components/CreateInfluencer/_index.scss +8 -0
  1995. package/scss/components/CreateModal/_carbon-imports.scss +12 -0
  1996. package/scss/components/CreateModal/_create-modal.scss +78 -0
  1997. package/scss/components/CreateModal/_index-with-carbon.scss +9 -0
  1998. package/scss/components/CreateModal/_index.scss +8 -0
  1999. package/scss/components/CreateSidePanel/_carbon-imports.scss +10 -0
  2000. package/scss/components/CreateSidePanel/_create-side-panel.scss +56 -0
  2001. package/scss/components/CreateSidePanel/_index-with-carbon.scss +9 -0
  2002. package/scss/components/CreateSidePanel/_index.scss +8 -0
  2003. package/scss/components/CreateTearsheet/_carbon-imports.scss +10 -0
  2004. package/scss/components/CreateTearsheet/_create-tearsheet.scss +165 -0
  2005. package/scss/components/CreateTearsheet/_index-with-carbon.scss +9 -0
  2006. package/scss/components/CreateTearsheet/_index.scss +8 -0
  2007. package/scss/components/CreateTearsheetNarrow/_carbon-imports.scss +10 -0
  2008. package/scss/components/CreateTearsheetNarrow/_create-tearsheet-narrow.scss +61 -0
  2009. package/scss/components/CreateTearsheetNarrow/_index-with-carbon.scss +9 -0
  2010. package/scss/components/CreateTearsheetNarrow/_index.scss +8 -0
  2011. package/scss/components/DataSpreadsheet/_carbon-imports.scss +6 -0
  2012. package/scss/components/DataSpreadsheet/_data-spreadsheet.scss +310 -0
  2013. package/scss/components/DataSpreadsheet/_index-with-carbon.scss +9 -0
  2014. package/scss/components/DataSpreadsheet/_index.scss +8 -0
  2015. package/scss/components/Datagrid/_carbon-imports.scss +6 -0
  2016. package/scss/components/Datagrid/_datagrid.scss +86 -0
  2017. package/scss/components/Datagrid/_index-with-carbon.scss +9 -0
  2018. package/scss/components/Datagrid/_index.scss +8 -0
  2019. package/scss/components/Datagrid/styles/_datagrid.scss +1006 -0
  2020. package/scss/components/Datagrid/styles/_draggableElement.scss +120 -0
  2021. package/scss/components/Datagrid/styles/_index.scss +22 -0
  2022. package/scss/components/Datagrid/styles/_useActionsColumn.scss +42 -0
  2023. package/scss/components/Datagrid/styles/_useColumnCenterAlign.scss +19 -0
  2024. package/scss/components/Datagrid/styles/_useColumnRightAlign.scss +28 -0
  2025. package/scss/components/Datagrid/styles/_useExpandedRow.scss +101 -0
  2026. package/scss/components/Datagrid/styles/_useInlineEdit.scss +445 -0
  2027. package/scss/components/Datagrid/styles/_useNestedRows.scss +128 -0
  2028. package/scss/components/Datagrid/styles/_useNestedTable.scss +36 -0
  2029. package/scss/components/Datagrid/styles/_useSelectAllToggle.scss +37 -0
  2030. package/scss/components/Datagrid/styles/_useSortableColumns.scss +85 -0
  2031. package/scss/components/Datagrid/styles/_useStickyColumn.scss +72 -0
  2032. package/scss/components/Datagrid/styles/_variables.scss +10 -0
  2033. package/scss/components/Datagrid/styles/addons/_CustomizeColumnsTearsheet.scss +77 -0
  2034. package/scss/components/Datagrid/styles/addons/_FilterFlyout.scss +110 -0
  2035. package/scss/components/Datagrid/styles/addons/_FilterPanel.scss +218 -0
  2036. package/scss/components/Datagrid/styles/addons/_RowSizeDropdown.scss +94 -0
  2037. package/scss/components/Datagrid/styles/addons/_animations.scss +56 -0
  2038. package/scss/components/Decorator/_carbon-imports.scss +9 -0
  2039. package/scss/components/Decorator/_decorator.scss +23 -0
  2040. package/scss/components/Decorator/_index-with-carbon.scss +9 -0
  2041. package/scss/components/Decorator/_index.scss +8 -0
  2042. package/scss/components/DecoratorBase/_carbon-imports.scss +9 -0
  2043. package/scss/components/DecoratorBase/_decorator-base-mixins.scss +39 -0
  2044. package/scss/components/DecoratorBase/_decorator-base.scss +145 -0
  2045. package/scss/components/DecoratorBase/_index-with-carbon.scss +9 -0
  2046. package/scss/components/DecoratorBase/_index.scss +8 -0
  2047. package/scss/components/DecoratorDualButton/_carbon-imports.scss +9 -0
  2048. package/scss/components/DecoratorDualButton/_decorator-dual-button.scss +112 -0
  2049. package/scss/components/DecoratorDualButton/_index-with-carbon.scss +9 -0
  2050. package/scss/components/DecoratorDualButton/_index.scss +8 -0
  2051. package/scss/components/DecoratorLink/_carbon-imports.scss +9 -0
  2052. package/scss/components/DecoratorLink/_decorator-link.scss +53 -0
  2053. package/scss/components/DecoratorLink/_index-with-carbon.scss +9 -0
  2054. package/scss/components/DecoratorLink/_index.scss +8 -0
  2055. package/scss/components/DecoratorSingleButton/_carbon-imports.scss +9 -0
  2056. package/scss/components/DecoratorSingleButton/_decorator-single-button.scss +117 -0
  2057. package/scss/components/DecoratorSingleButton/_index-with-carbon.scss +9 -0
  2058. package/scss/components/DecoratorSingleButton/_index.scss +8 -0
  2059. package/scss/components/DelimitedList/_carbon-imports.scss +9 -0
  2060. package/scss/components/DelimitedList/_delimited-list.scss +27 -0
  2061. package/scss/components/DelimitedList/_index-with-carbon.scss +9 -0
  2062. package/scss/components/DelimitedList/_index.scss +8 -0
  2063. package/scss/components/DescriptionList/_carbon-imports.scss +9 -0
  2064. package/scss/components/DescriptionList/_description-list.scss +103 -0
  2065. package/scss/components/DescriptionList/_index-with-carbon.scss +9 -0
  2066. package/scss/components/DescriptionList/_index.scss +8 -0
  2067. package/scss/components/EditFullPage/_edit-full-page.scss +26 -0
  2068. package/scss/components/EditFullPage/_index.scss +8 -0
  2069. package/scss/components/EditInPlace/_carbon-imports.scss +9 -0
  2070. package/scss/components/EditInPlace/_edit-in-place.scss +154 -0
  2071. package/scss/components/EditInPlace/_index-with-carbon.scss +9 -0
  2072. package/scss/components/EditInPlace/_index.scss +10 -0
  2073. package/scss/components/EditSidePanel/_carbon-imports.scss +9 -0
  2074. package/scss/components/EditSidePanel/_edit-side-panel.scss +48 -0
  2075. package/scss/components/EditSidePanel/_index-with-carbon.scss +9 -0
  2076. package/scss/components/EditSidePanel/_index.scss +8 -0
  2077. package/scss/components/EditTearsheet/_carbon-imports.scss +9 -0
  2078. package/scss/components/EditTearsheet/_edit-tearsheet.scss +134 -0
  2079. package/scss/components/EditTearsheet/_index-with-carbon.scss +9 -0
  2080. package/scss/components/EditTearsheet/_index.scss +8 -0
  2081. package/scss/components/EditTearsheetNarrow/_edit-tearsheet-narrow.scss +26 -0
  2082. package/scss/components/EditTearsheetNarrow/_index.scss +8 -0
  2083. package/scss/components/EditUpdateCards/_carbon-imports.scss +9 -0
  2084. package/scss/components/EditUpdateCards/_edit-update-cards.scss +95 -0
  2085. package/scss/components/EditUpdateCards/_index-with-carbon.scss +9 -0
  2086. package/scss/components/EditUpdateCards/_index.scss +8 -0
  2087. package/scss/components/EmptyStates/_carbon-imports.scss +11 -0
  2088. package/scss/components/EmptyStates/_empty-state.scss +85 -0
  2089. package/scss/components/EmptyStates/_index-with-carbon.scss +9 -0
  2090. package/scss/components/EmptyStates/_index.scss +8 -0
  2091. package/scss/components/ExampleComponent/_carbon-imports.scss +10 -0
  2092. package/scss/components/ExampleComponent/_example-component.scss +28 -0
  2093. package/scss/components/ExampleComponent/_index-with-carbon.scss +9 -0
  2094. package/scss/components/ExampleComponent/_index.scss +8 -0
  2095. package/scss/components/ExportModal/_carbon-imports.scss +16 -0
  2096. package/scss/components/ExportModal/_export-modal.scss +46 -0
  2097. package/scss/components/ExportModal/_index-with-carbon.scss +9 -0
  2098. package/scss/components/ExportModal/_index.scss +10 -0
  2099. package/scss/components/ExpressiveCard/_carbon-imports.scss +6 -0
  2100. package/scss/components/ExpressiveCard/_expressive-card.scss +18 -0
  2101. package/scss/components/ExpressiveCard/_index-with-carbon.scss +9 -0
  2102. package/scss/components/ExpressiveCard/_index.scss +10 -0
  2103. package/scss/components/FilterPanel/_carbon-imports.scss +14 -0
  2104. package/scss/components/FilterPanel/_filter-panel-accordion-item.scss +54 -0
  2105. package/scss/components/FilterPanel/_filter-panel-accordion.scss +6 -0
  2106. package/scss/components/FilterPanel/_filter-panel-checkbox-with-overflow.scss +60 -0
  2107. package/scss/components/FilterPanel/_filter-panel-checkbox.scss +53 -0
  2108. package/scss/components/FilterPanel/_filter-panel-group.scss +37 -0
  2109. package/scss/components/FilterPanel/_filter-panel-label.scss +39 -0
  2110. package/scss/components/FilterPanel/_filter-panel-search.scss +40 -0
  2111. package/scss/components/FilterPanel/_filter-panel.scss +30 -0
  2112. package/scss/components/FilterPanel/_index-with-carbon.scss +16 -0
  2113. package/scss/components/FilterPanel/_index.scss +15 -0
  2114. package/scss/components/FilterSummary/_filter-summary.scss +55 -0
  2115. package/scss/components/FilterSummary/_index.scss +10 -0
  2116. package/scss/components/FullPageError/_carbon-imports.scss +9 -0
  2117. package/scss/components/FullPageError/_full-page-error.scss +87 -0
  2118. package/scss/components/FullPageError/_index-with-carbon.scss +9 -0
  2119. package/scss/components/FullPageError/_index.scss +8 -0
  2120. package/scss/components/GetStartedCard/_carbon-imports.scss +9 -0
  2121. package/scss/components/GetStartedCard/_get-started-card.scss +133 -0
  2122. package/scss/components/GetStartedCard/_index-with-carbon.scss +9 -0
  2123. package/scss/components/GetStartedCard/_index.scss +8 -0
  2124. package/scss/components/Guidebanner/_carbon-imports.scss +6 -0
  2125. package/scss/components/Guidebanner/_guidebanner.scss +274 -0
  2126. package/scss/components/Guidebanner/_index-with-carbon.scss +9 -0
  2127. package/scss/components/Guidebanner/_index.scss +8 -0
  2128. package/scss/components/HTTPErrors/_carbon-imports.scss +10 -0
  2129. package/scss/components/HTTPErrors/_http-errors.scss +145 -0
  2130. package/scss/components/HTTPErrors/_index-with-carbon.scss +9 -0
  2131. package/scss/components/HTTPErrors/_index.scss +8 -0
  2132. package/scss/components/ImportModal/_carbon-imports.scss +14 -0
  2133. package/scss/components/ImportModal/_import-modal.scss +82 -0
  2134. package/scss/components/ImportModal/_index-with-carbon.scss +9 -0
  2135. package/scss/components/ImportModal/_index.scss +8 -0
  2136. package/scss/components/InlineTip/_index.scss +8 -0
  2137. package/scss/components/InlineTip/_inline-tip.scss +242 -0
  2138. package/scss/components/InterstitialScreen/_carbon-imports.scss +9 -0
  2139. package/scss/components/InterstitialScreen/_index-with-carbon.scss +9 -0
  2140. package/scss/components/InterstitialScreen/_index.scss +8 -0
  2141. package/scss/components/InterstitialScreen/_interstitial-screen.scss +158 -0
  2142. package/scss/components/MultiAddSelect/_carbon-imports.scss +6 -0
  2143. package/scss/components/MultiAddSelect/_index-with-carbon.scss +9 -0
  2144. package/scss/components/MultiAddSelect/_index.scss +8 -0
  2145. package/scss/components/MultiAddSelect/_multi-add-select.scss +8 -0
  2146. package/scss/components/Nav/_carbon-imports.scss +9 -0
  2147. package/scss/components/Nav/_index-with-carbon.scss +9 -0
  2148. package/scss/components/Nav/_index.scss +8 -0
  2149. package/scss/components/Nav/_nav.scss +254 -0
  2150. package/scss/components/NonLinearReading/_carbon-imports.scss +6 -0
  2151. package/scss/components/NonLinearReading/_index-with-carbon.scss +9 -0
  2152. package/scss/components/NonLinearReading/_index.scss +8 -0
  2153. package/scss/components/NonLinearReading/_non-linear-reading.scss +126 -0
  2154. package/scss/components/NotificationsPanel/_carbon-imports.scss +12 -0
  2155. package/scss/components/NotificationsPanel/_index-with-carbon.scss +9 -0
  2156. package/scss/components/NotificationsPanel/_index.scss +8 -0
  2157. package/scss/components/NotificationsPanel/_notifications-panel.scss +359 -0
  2158. package/scss/components/OptionsTile/_carbon-imports.scss +10 -0
  2159. package/scss/components/OptionsTile/_index-with-carbon.scss +9 -0
  2160. package/scss/components/OptionsTile/_index.scss +8 -0
  2161. package/scss/components/OptionsTile/_options-tile.scss +226 -0
  2162. package/scss/components/PageHeader/_carbon-imports.scss +13 -0
  2163. package/scss/components/PageHeader/_index-with-carbon.scss +9 -0
  2164. package/scss/components/PageHeader/_index.scss +10 -0
  2165. package/scss/components/PageHeader/_page-header.scss +1116 -0
  2166. package/scss/components/ProductiveCard/_carbon-imports.scss +6 -0
  2167. package/scss/components/ProductiveCard/_index-with-carbon.scss +9 -0
  2168. package/scss/components/ProductiveCard/_index.scss +10 -0
  2169. package/scss/components/ProductiveCard/_productive-card.scss +116 -0
  2170. package/scss/components/RemoveModal/_carbon-imports.scss +12 -0
  2171. package/scss/components/RemoveModal/_index-with-carbon.scss +9 -0
  2172. package/scss/components/RemoveModal/_index.scss +10 -0
  2173. package/scss/components/RemoveModal/_remove-modal.scss +27 -0
  2174. package/scss/components/Saving/_carbon-imports.scss +11 -0
  2175. package/scss/components/Saving/_index-with-carbon.scss +9 -0
  2176. package/scss/components/Saving/_index.scss +10 -0
  2177. package/scss/components/Saving/_saving.scss +40 -0
  2178. package/scss/components/ScrollGradient/_carbon-imports.scss +9 -0
  2179. package/scss/components/ScrollGradient/_index-with-carbon.scss +9 -0
  2180. package/scss/components/ScrollGradient/_index.scss +8 -0
  2181. package/scss/components/ScrollGradient/_scroll-gradient.scss +132 -0
  2182. package/scss/components/SearchBar/_carbon-imports.scss +9 -0
  2183. package/scss/components/SearchBar/_index-with-carbon.scss +9 -0
  2184. package/scss/components/SearchBar/_index.scss +8 -0
  2185. package/scss/components/SearchBar/_search-bar.scss +26 -0
  2186. package/scss/components/SidePanel/_animations.scss +78 -0
  2187. package/scss/components/SidePanel/_carbon-imports.scss +10 -0
  2188. package/scss/components/SidePanel/_index-with-carbon.scss +9 -0
  2189. package/scss/components/SidePanel/_index.scss +8 -0
  2190. package/scss/components/SidePanel/_side-panel-variables.scss +15 -0
  2191. package/scss/components/SidePanel/_side-panel.scss +626 -0
  2192. package/scss/components/SimpleHeader/_carbon-imports.scss +11 -0
  2193. package/scss/components/SimpleHeader/_index-with-carbon.scss +9 -0
  2194. package/scss/components/SimpleHeader/_index.scss +10 -0
  2195. package/scss/components/SimpleHeader/_simple-header.scss +37 -0
  2196. package/scss/components/SingleAddSelect/_carbon-imports.scss +6 -0
  2197. package/scss/components/SingleAddSelect/_index-with-carbon.scss +9 -0
  2198. package/scss/components/SingleAddSelect/_index.scss +8 -0
  2199. package/scss/components/SingleAddSelect/_single-add-select.scss +8 -0
  2200. package/scss/components/StatusIcon/_carbon-imports.scss +6 -0
  2201. package/scss/components/StatusIcon/_index-with-carbon.scss +9 -0
  2202. package/scss/components/StatusIcon/_index.scss +8 -0
  2203. package/scss/components/StatusIcon/_status-icon.scss +146 -0
  2204. package/scss/components/StatusIndicator/_carbon-imports.scss +12 -0
  2205. package/scss/components/StatusIndicator/_index-with-carbon.scss +9 -0
  2206. package/scss/components/StatusIndicator/_index.scss +8 -0
  2207. package/scss/components/StatusIndicator/_status-indicator.scss +93 -0
  2208. package/scss/components/StringFormatter/_carbon-imports.scss +10 -0
  2209. package/scss/components/StringFormatter/_index-with-carbon.scss +9 -0
  2210. package/scss/components/StringFormatter/_index.scss +8 -0
  2211. package/scss/components/StringFormatter/_string-formatter.scss +112 -0
  2212. package/scss/components/TagOverflow/_carbon-imports.scss +9 -0
  2213. package/scss/components/TagOverflow/_index-with-carbon.scss +9 -0
  2214. package/scss/components/TagOverflow/_index.scss +8 -0
  2215. package/scss/components/TagOverflow/_tag-overflow.scss +197 -0
  2216. package/scss/components/TagSet/_carbon-imports.scss +14 -0
  2217. package/scss/components/TagSet/_index-with-carbon.scss +9 -0
  2218. package/scss/components/TagSet/_index.scss +8 -0
  2219. package/scss/components/TagSet/_tag-set.scss +189 -0
  2220. package/scss/components/Tearsheet/_carbon-imports.scss +11 -0
  2221. package/scss/components/Tearsheet/_index-with-carbon.scss +9 -0
  2222. package/scss/components/Tearsheet/_index.scss +8 -0
  2223. package/scss/components/Tearsheet/_tearsheet.scss +464 -0
  2224. package/scss/components/Tearsheet/_tearsheet_next.scss +530 -0
  2225. package/scss/components/Toolbar/_carbon-imports.scss +8 -0
  2226. package/scss/components/Toolbar/_index-with-carbon.scss +9 -0
  2227. package/scss/components/Toolbar/_index.scss +8 -0
  2228. package/scss/components/Toolbar/_toolbar.scss +75 -0
  2229. package/scss/components/TooltipTrigger/_index-with-carbon.scss +8 -0
  2230. package/scss/components/TooltipTrigger/_index.scss +8 -0
  2231. package/scss/components/TooltipTrigger/_tooltip-trigger.scss +29 -0
  2232. package/scss/components/TruncatedList/_carbon-imports.scss +9 -0
  2233. package/scss/components/TruncatedList/_index-with-carbon.scss +9 -0
  2234. package/scss/components/TruncatedList/_index.scss +8 -0
  2235. package/scss/components/TruncatedList/_truncated-list.scss +51 -0
  2236. package/scss/components/TruncatedText/_carbon-imports.scss +6 -0
  2237. package/scss/components/TruncatedText/_index-with-carbon.scss +9 -0
  2238. package/scss/components/TruncatedText/_index.scss +8 -0
  2239. package/scss/components/TruncatedText/_truncated-text.scss +27 -0
  2240. package/scss/components/UserAvatar/_carbon-imports.scss +10 -0
  2241. package/scss/components/UserAvatar/_index-with-carbon.scss +9 -0
  2242. package/scss/components/UserAvatar/_index.scss +8 -0
  2243. package/scss/components/UserAvatar/_user-avatar.scss +153 -0
  2244. package/scss/components/UserProfileImage/_carbon-imports.scss +10 -0
  2245. package/scss/components/UserProfileImage/_color-map.scss +39 -0
  2246. package/scss/components/UserProfileImage/_index-with-carbon.scss +9 -0
  2247. package/scss/components/UserProfileImage/_index.scss +8 -0
  2248. package/scss/components/UserProfileImage/_user-profile-image.scss +162 -0
  2249. package/scss/components/WebTerminal/_carbon-imports.scss +12 -0
  2250. package/scss/components/WebTerminal/_index-with-carbon.scss +9 -0
  2251. package/scss/components/WebTerminal/_index.scss +8 -0
  2252. package/scss/components/WebTerminal/_web-terminal.scss +110 -0
  2253. package/scss/components/_Canary/_canary.scss +6 -0
  2254. package/scss/components/_Canary/_carbon-imports.scss +7 -0
  2255. package/scss/components/_Canary/_index-with-carbon.scss +8 -0
  2256. package/scss/components/_Canary/_index.scss +7 -0
  2257. package/scss/components/_index-released-only-with-carbon.scss +40 -0
  2258. package/scss/components/_index-released-only.scss +44 -0
  2259. package/scss/components/_index-with-carbon.scss +80 -0
  2260. package/scss/components/_index.scss +85 -0
  2261. package/scss/config-dev.scss +10 -0
  2262. package/scss/config.scss +8 -0
  2263. package/scss/global/decorators/_side-panel-decorator.scss +53 -0
  2264. package/scss/global/styles/_display-box.scss +65 -0
  2265. package/scss/global/styles/_imported-carbon-modules.scss +25 -0
  2266. package/scss/global/styles/_mixins.scss +22 -0
  2267. package/scss/global/styles/_project-settings.scss +10 -0
  2268. package/scss/index-full-carbon.scss +10 -0
  2269. package/scss/index-without-carbon-released-only.scss +12 -0
  2270. package/scss/index-without-carbon.scss +12 -0
  2271. package/scss/index.scss +10 -0
  2272. package/telemetry.yml +1 -0
@@ -0,0 +1,3112 @@
1
+ /**
2
+ * Copyright IBM Corp. 2020, 2026
3
+ *
4
+ * This source code is licensed under the Apache-2.0 license found in the
5
+ * LICENSE file in the root directory of this source tree.
6
+ */
7
+
8
+ 'use strict';
9
+
10
+ var React = require('react');
11
+ var Icon = require('../Icon.js');
12
+ var iconPropTypesC5chbmyn = require('../iconPropTypes-C5chbmyn.js');
13
+
14
+ var _path, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path0, _path1, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _circle, _path23, _path24, _circle2, _path25, _circle3, _path26, _path27, _circle4, _path28, _circle5, _path29, _path30, _path31, _path32, _path33, _path34, _path35, _path36, _circle6, _circle7, _circle8, _path37, _path38, _path39, _path40, _path41, _path42, _path43, _path44, _path45, _path46, _path47, _path48, _path49, _path50, _path51, _path52, _path53, _path54, _path55, _path56, _path57, _path58, _circle9, _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, _path86, _path87, _path88, _path89, _path90, _path91, _path92, _path93, _path94, _path95, _path96, _path97, _path98, _path99, _path100, _path101, _path102, _path103, _path104, _path105, _path106, _path107, _path108, _path109, _path110, _path111, _path112, _path113, _path114, _path115, _circle0, _circle1, _path116, _path117, _path118, _path119, _path120, _path121, _path122, _path123, _path124, _path125, _path126, _path127, _path128, _path129, _path130, _path131, _path132, _path133, _path134, _circle10, _path135, _path136, _circle11, _path137, _path138, _circle12, _path139, _path140, _path141, _path142, _path143, _path144, _path145, _rect, _path146, _path147, _path148, _path149, _path150, _path151, _path152, _path153, _path154, _path155, _path156, _path157, _path158, _path159, _path160, _path161, _path162, _path163, _path164, _path165, _path166, _path167, _path168, _path169, _path170, _path171, _path172, _path173, _path174, _path175, _path176, _path177, _path178, _path179, _path180, _path181, _path182, _path183, _path184, _path185, _path186, _path187, _path188, _path189, _path190, _path191, _path192, _path193, _path194, _path195, _path196, _path197, _path198, _path199, _path200, _path201, _path202, _path203, _path204, _path205, _path206, _path207, _path208, _path209, _path210, _path211, _path212, _path213, _path214, _path215, _path216, _path217, _path218, _path219, _path220;
15
+ const didWarnAboutDeprecation = {};
16
+ const IncreaseLevel = /*#__PURE__*/React.forwardRef(function IncreaseLevel(_ref, ref) {
17
+ let {
18
+ children,
19
+ size = 16,
20
+ ...rest
21
+ } = _ref;
22
+ return /*#__PURE__*/React.createElement(Icon.default, {
23
+ width: size,
24
+ height: size,
25
+ ref: ref,
26
+ xmlns: "http://www.w3.org/2000/svg",
27
+ viewBox: "0 0 32 32",
28
+ fill: "currentColor",
29
+ ...rest
30
+ }, _path || (_path = /*#__PURE__*/React.createElement("path", {
31
+ d: "M23 4L18 7.75 18 14.25 15 12 10 15.75 10 22.25 7 20 2 23.75 2 30 4 30 4 24.75 7 22.5 10 24.75 10 30 12 30 12 16.75 15 14.5 18 16.75 18 30 20 30 20 8.75 23 6.5 26 8.75 26 30 28 30 28 7.75 23 4z"
32
+ })), children);
33
+ });
34
+ if (process.env.NODE_ENV !== "production") {
35
+ IncreaseLevel.propTypes = iconPropTypesC5chbmyn.i;
36
+ }
37
+ const Industry = /*#__PURE__*/React.forwardRef(function Industry(_ref2, ref) {
38
+ let {
39
+ children,
40
+ size = 16,
41
+ ...rest
42
+ } = _ref2;
43
+ return /*#__PURE__*/React.createElement(Icon.default, {
44
+ width: size,
45
+ height: size,
46
+ ref: ref,
47
+ xmlns: "http://www.w3.org/2000/svg",
48
+ viewBox: "0 0 32 32",
49
+ fill: "currentColor",
50
+ ...rest
51
+ }, _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
52
+ d: "M29.53,6.15a1,1,0,0,0-1,0L20,10.38V7a1,1,0,0,0-1.45-.89L10,10.38V3A1,1,0,0,0,9,2H3A1,1,0,0,0,2,3V28H30V7A1,1,0,0,0,29.53,6.15ZM22,26H18V19h4Zm6,0H24V18a1,1,0,0,0-1-1H17a1,1,0,0,0-1,1v8H4V4H8v9.62l10-5v5l10-5Z"
53
+ })), children);
54
+ });
55
+ if (process.env.NODE_ENV !== "production") {
56
+ Industry.propTypes = iconPropTypesC5chbmyn.i;
57
+ }
58
+ const InfinitySymbol = /*#__PURE__*/React.forwardRef(function InfinitySymbol(_ref3, ref) {
59
+ let {
60
+ children,
61
+ size = 16,
62
+ ...rest
63
+ } = _ref3;
64
+ return /*#__PURE__*/React.createElement(Icon.default, {
65
+ width: size,
66
+ height: size,
67
+ ref: ref,
68
+ xmlns: "http://www.w3.org/2000/svg",
69
+ viewBox: "0 0 32 32",
70
+ fill: "currentColor",
71
+ ...rest
72
+ }, _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
73
+ d: "m23,23c-5.6558,0-7.8577-6.4109-7.9487-6.6837-.0173-.0514-1.8435-5.3163-6.0513-5.3163-2.7571,0-5,2.243-5,5s2.2429,5,5,5c1.5876,0,3.0134-.7322,4.2373-2.1764l1.5259,1.2932c-1.5989,1.8862-3.5916,2.8832-5.7632,2.8832-3.8599,0-7-3.1401-7-7s3.1401-7,7-7c5.6558,0,7.8577,6.4109,7.9487,6.6837.0173.0514,1.8435,5.3163,6.0513,5.3163,2.7571,0,5-2.243,5-5s-2.2429-5-5-5c-1.5876,0-3.0134.7322-4.2373,2.1764l-1.5259-1.2932c1.5989-1.8862,3.5916-2.8832,5.7632-2.8832,3.8599,0,7,3.1401,7,7s-3.1401,7-7,7Z"
74
+ })), children);
75
+ });
76
+ if (process.env.NODE_ENV !== "production") {
77
+ InfinitySymbol.propTypes = iconPropTypesC5chbmyn.i;
78
+ }
79
+ const Information = /*#__PURE__*/React.forwardRef(function Information(_ref4, ref) {
80
+ let {
81
+ children,
82
+ size = 16,
83
+ ...rest
84
+ } = _ref4;
85
+ if (size === 16 || size === "16" || size === "16px") {
86
+ return /*#__PURE__*/React.createElement(Icon.default, {
87
+ width: size,
88
+ height: size,
89
+ ref: ref,
90
+ xmlns: "http://www.w3.org/2000/svg",
91
+ viewBox: "0 0 16 16",
92
+ fill: "currentColor",
93
+ ...rest
94
+ }, _path4 || (_path4 = /*#__PURE__*/React.createElement("path", {
95
+ d: "M8.5 11L8.5 6.5 6.5 6.5 6.5 7.5 7.5 7.5 7.5 11 6 11 6 12 10 12 10 11zM8 3.5c-.4 0-.8.3-.8.8S7.6 5 8 5c.4 0 .8-.3.8-.8S8.4 3.5 8 3.5z"
96
+ })), _path5 || (_path5 = /*#__PURE__*/React.createElement("path", {
97
+ d: "M8,15c-3.9,0-7-3.1-7-7s3.1-7,7-7s7,3.1,7,7S11.9,15,8,15z M8,2C4.7,2,2,4.7,2,8s2.7,6,6,6s6-2.7,6-6S11.3,2,8,2z"
98
+ })), children);
99
+ }
100
+ return /*#__PURE__*/React.createElement(Icon.default, {
101
+ width: size,
102
+ height: size,
103
+ ref: ref,
104
+ xmlns: "http://www.w3.org/2000/svg",
105
+ viewBox: "0 0 32 32",
106
+ fill: "currentColor",
107
+ ...rest
108
+ }, _path6 || (_path6 = /*#__PURE__*/React.createElement("path", {
109
+ d: "M17 22L17 14 13 14 13 16 15 16 15 22 12 22 12 24 20 24 20 22 17 22zM16 8a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 8z"
110
+ })), _path7 || (_path7 = /*#__PURE__*/React.createElement("path", {
111
+ 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"
112
+ })), children);
113
+ });
114
+ if (process.env.NODE_ENV !== "production") {
115
+ Information.propTypes = iconPropTypesC5chbmyn.i;
116
+ }
117
+ const InformationDisabled = /*#__PURE__*/React.forwardRef(function InformationDisabled(_ref5, ref) {
118
+ let {
119
+ children,
120
+ size = 16,
121
+ ...rest
122
+ } = _ref5;
123
+ return /*#__PURE__*/React.createElement(Icon.default, {
124
+ width: size,
125
+ height: size,
126
+ ref: ref,
127
+ xmlns: "http://www.w3.org/2000/svg",
128
+ viewBox: "0 0 32 32",
129
+ fill: "currentColor",
130
+ ...rest
131
+ }, _path8 || (_path8 = /*#__PURE__*/React.createElement("path", {
132
+ d: "M30 3.4141L28.5859 2 2 28.5859 3.4141 30l3.4433-3.4434A13.9614 13.9614 0 0026.5565 6.8574zM28 16A11.9734 11.9734 0 018.2678 25.146L15 18.4141V22H13v2h7V22H17V16.4141l8.146-8.146A11.8967 11.8967 0 0128 16zM16 8a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 8z"
133
+ })), _path9 || (_path9 = /*#__PURE__*/React.createElement("path", {
134
+ d: "M5.67,22.0854A11.9829,11.9829,0,0,1,22.0856,5.67L23.54,4.2163A13.985,13.985,0,0,0,4.2162,23.54Z"
135
+ })), children);
136
+ });
137
+ if (process.env.NODE_ENV !== "production") {
138
+ InformationDisabled.propTypes = iconPropTypesC5chbmyn.i;
139
+ }
140
+ const InformationFilled = /*#__PURE__*/React.forwardRef(function InformationFilled(_ref6, ref) {
141
+ let {
142
+ children,
143
+ size = 16,
144
+ ...rest
145
+ } = _ref6;
146
+ return /*#__PURE__*/React.createElement(Icon.default, {
147
+ width: size,
148
+ height: size,
149
+ ref: ref,
150
+ xmlns: "http://www.w3.org/2000/svg",
151
+ viewBox: "0 0 32 32",
152
+ fill: "currentColor",
153
+ ...rest
154
+ }, _path0 || (_path0 = /*#__PURE__*/React.createElement("path", {
155
+ fill: "none",
156
+ d: "M16,8a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,13.875H17.125v-8H13v2.25h1.875v5.75H12v2.25h8Z",
157
+ "data-icon-path": "inner-path"
158
+ })), _path1 || (_path1 = /*#__PURE__*/React.createElement("path", {
159
+ d: "M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,6a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,16.125H12v-2.25h2.875v-5.75H13v-2.25h4.125v8H20Z"
160
+ })), children);
161
+ });
162
+ if (process.env.NODE_ENV !== "production") {
163
+ InformationFilled.propTypes = iconPropTypesC5chbmyn.i;
164
+ }
165
+ const InformationSquare = /*#__PURE__*/React.forwardRef(function InformationSquare(_ref7, ref) {
166
+ let {
167
+ children,
168
+ size = 16,
169
+ ...rest
170
+ } = _ref7;
171
+ return /*#__PURE__*/React.createElement(Icon.default, {
172
+ width: size,
173
+ height: size,
174
+ ref: ref,
175
+ xmlns: "http://www.w3.org/2000/svg",
176
+ viewBox: "0 0 32 32",
177
+ fill: "currentColor",
178
+ ...rest
179
+ }, _path10 || (_path10 = /*#__PURE__*/React.createElement("path", {
180
+ d: "M17 22L17 14 13 14 13 16 15 16 15 22 12 22 12 24 20 24 20 22 17 22zM16 8a1.5 1.5 0 101.5 1.5A1.5 1.5 0 0016 8z"
181
+ })), _path11 || (_path11 = /*#__PURE__*/React.createElement("path", {
182
+ d: "M26,28H6a2.0023,2.0023,0,0,1-2-2V6A2.0023,2.0023,0,0,1,6,4H26a2.0023,2.0023,0,0,1,2,2V26A2.0023,2.0023,0,0,1,26,28ZM6,6V26H26V6Z"
183
+ })), children);
184
+ });
185
+ if (process.env.NODE_ENV !== "production") {
186
+ InformationSquare.propTypes = iconPropTypesC5chbmyn.i;
187
+ }
188
+ const InformationSquareFilled = /*#__PURE__*/React.forwardRef(function InformationSquareFilled(_ref8, ref) {
189
+ let {
190
+ children,
191
+ size = 16,
192
+ ...rest
193
+ } = _ref8;
194
+ return /*#__PURE__*/React.createElement(Icon.default, {
195
+ width: size,
196
+ height: size,
197
+ ref: ref,
198
+ xmlns: "http://www.w3.org/2000/svg",
199
+ viewBox: "0 0 32 32",
200
+ fill: "currentColor",
201
+ ...rest
202
+ }, _path12 || (_path12 = /*#__PURE__*/React.createElement("path", {
203
+ fill: "none",
204
+ d: "M16,8a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,13.875H17.125v-8H13v2.25h1.875v5.75H12v2.25h8Z",
205
+ "data-icon-path": "inner-path"
206
+ })), _path13 || (_path13 = /*#__PURE__*/React.createElement("path", {
207
+ 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,4ZM16,8a1.5,1.5,0,1,1-1.5,1.5A1.5,1.5,0,0,1,16,8Zm4,16.125H12v-2.25h2.875v-5.75H13v-2.25h4.125v8H20Z"
208
+ })), children);
209
+ });
210
+ if (process.env.NODE_ENV !== "production") {
211
+ InformationSquareFilled.propTypes = iconPropTypesC5chbmyn.i;
212
+ }
213
+ const InfrastructureClassic = /*#__PURE__*/React.forwardRef(function InfrastructureClassic(_ref9, ref) {
214
+ let {
215
+ children,
216
+ size = 16,
217
+ ...rest
218
+ } = _ref9;
219
+ return /*#__PURE__*/React.createElement(Icon.default, {
220
+ width: size,
221
+ height: size,
222
+ ref: ref,
223
+ xmlns: "http://www.w3.org/2000/svg",
224
+ viewBox: "0 0 32 32",
225
+ fill: "currentColor",
226
+ ...rest
227
+ }, _path14 || (_path14 = /*#__PURE__*/React.createElement("path", {
228
+ d: "M18 26H30V28H18zM18 21H30V23H18zM18 16H30V18H18z"
229
+ })), _path15 || (_path15 = /*#__PURE__*/React.createElement("path", {
230
+ d: "M14,25H9.5A7.4964,7.4964,0,0,1,8.1782,10.124,10,10,0,0,1,28,12H26a7.999,7.999,0,0,0-15.9507-.87l-.09.8335L9.123,12.02A5.4962,5.4962,0,0,0,9.5,23H14Z"
231
+ })), children);
232
+ });
233
+ if (process.env.NODE_ENV !== "production") {
234
+ InfrastructureClassic.propTypes = iconPropTypesC5chbmyn.i;
235
+ }
236
+ const Insert = /*#__PURE__*/React.forwardRef(function Insert(_ref10, ref) {
237
+ let {
238
+ children,
239
+ size = 16,
240
+ ...rest
241
+ } = _ref10;
242
+ return /*#__PURE__*/React.createElement(Icon.default, {
243
+ width: size,
244
+ height: size,
245
+ ref: ref,
246
+ xmlns: "http://www.w3.org/2000/svg",
247
+ viewBox: "0 0 32 32",
248
+ fill: "currentColor",
249
+ ...rest
250
+ }, _path16 || (_path16 = /*#__PURE__*/React.createElement("path", {
251
+ d: "M2 9h9V2H2zM4 4H9V7H4zM2 19h9V12H2zm2-5H9v3H4zM2 29h9V22H2zm2-5H9v3H4zM27 9H18l3.41-3.59L20 4l-6 6 6 6 1.41-1.41L18 11h9a1 1 0 011 1V24a1 1 0 01-1 1H15v2H27a3 3 0 003-3V12A3 3 0 0027 9z"
252
+ })), children);
253
+ });
254
+ if (process.env.NODE_ENV !== "production") {
255
+ Insert.propTypes = iconPropTypesC5chbmyn.i;
256
+ }
257
+ const InsertPage = /*#__PURE__*/React.forwardRef(function InsertPage(_ref11, ref) {
258
+ let {
259
+ children,
260
+ size = 16,
261
+ ...rest
262
+ } = _ref11;
263
+ return /*#__PURE__*/React.createElement(Icon.default, {
264
+ width: size,
265
+ height: size,
266
+ ref: ref,
267
+ xmlns: "http://www.w3.org/2000/svg",
268
+ viewBox: "0 0 32 32",
269
+ fill: "currentColor",
270
+ ...rest
271
+ }, _path17 || (_path17 = /*#__PURE__*/React.createElement("path", {
272
+ d: "M26 30H24V20H12V30H10V20a2.0021 2.0021 0 012-2H24a2.0021 2.0021 0 012 2zM5.17 16L2 19.17 3.411 20.589 8 16 3.42 11.42 2 12.83 5.17 16zM24 14H12a2.0021 2.0021 0 01-2-2V2h2V12H24V2h2V12A2.0021 2.0021 0 0124 14z"
273
+ })), children);
274
+ });
275
+ if (process.env.NODE_ENV !== "production") {
276
+ InsertPage.propTypes = iconPropTypesC5chbmyn.i;
277
+ }
278
+ const InsertSyntax = /*#__PURE__*/React.forwardRef(function InsertSyntax(_ref12, ref) {
279
+ let {
280
+ children,
281
+ size = 16,
282
+ ...rest
283
+ } = _ref12;
284
+ return /*#__PURE__*/React.createElement(Icon.default, {
285
+ width: size,
286
+ height: size,
287
+ ref: ref,
288
+ xmlns: "http://www.w3.org/2000/svg",
289
+ viewBox: "0 0 32 32",
290
+ fill: "currentColor",
291
+ ...rest
292
+ }, _path18 || (_path18 = /*#__PURE__*/React.createElement("path", {
293
+ d: "M20.17 16L17.59 18.58 19 20 23 16 19 12 17.58 13.41 20.17 16zM11.83 16L14.41 13.42 13 12 9 16 13 20 14.42 18.59 11.83 16z"
294
+ })), _path19 || (_path19 = /*#__PURE__*/React.createElement("path", {
295
+ d: "M27,22.142V9.858A3.9916,3.9916,0,1,0,22.142,5H9.858A3.9916,3.9916,0,1,0,5,9.858V22.142A3.9916,3.9916,0,1,0,9.858,27H22.142A3.9916,3.9916,0,1,0,27,22.142ZM26,4a2,2,0,1,1-2,2A2.0023,2.0023,0,0,1,26,4ZM4,6A2,2,0,1,1,6,8,2.002,2.002,0,0,1,4,6ZM6,28a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,6,28Zm16.142-3H9.858A3.9937,3.9937,0,0,0,7,22.142V9.858A3.9947,3.9947,0,0,0,9.858,7H22.142A3.9937,3.9937,0,0,0,25,9.858V22.142A3.9931,3.9931,0,0,0,22.142,25ZM26,28a2,2,0,1,1,2-2A2.0027,2.0027,0,0,1,26,28Z"
296
+ })), children);
297
+ });
298
+ if (process.env.NODE_ENV !== "production") {
299
+ InsertSyntax.propTypes = iconPropTypesC5chbmyn.i;
300
+ }
301
+ const Inspection = /*#__PURE__*/React.forwardRef(function Inspection(_ref13, ref) {
302
+ let {
303
+ children,
304
+ size = 16,
305
+ ...rest
306
+ } = _ref13;
307
+ return /*#__PURE__*/React.createElement(Icon.default, {
308
+ width: size,
309
+ height: size,
310
+ ref: ref,
311
+ xmlns: "http://www.w3.org/2000/svg",
312
+ viewBox: "0 0 32 32",
313
+ fill: "currentColor",
314
+ ...rest
315
+ }, _path20 || (_path20 = /*#__PURE__*/React.createElement("path", {
316
+ d: "M15 17.18L12.41 14.59 11 16 15 20 22 13 20.59 11.59 15 17.18z"
317
+ })), _path21 || (_path21 = /*#__PURE__*/React.createElement("path", {
318
+ d: "M30,15H27.9492A12.0071,12.0071,0,0,0,17,4.0508V2H15V4.0508A12.0071,12.0071,0,0,0,4.0508,15H2v2H4.0508A12.0071,12.0071,0,0,0,15,27.9492V30h2V27.9492A12.0071,12.0071,0,0,0,27.9492,17H30ZM17,25.9492V23H15v2.9492A10.0166,10.0166,0,0,1,6.0508,17H9V15H6.0508A10.0166,10.0166,0,0,1,15,6.0508V9h2V6.0508A10.0166,10.0166,0,0,1,25.9492,15H23v2h2.949A10.0165,10.0165,0,0,1,17,25.9492Z"
319
+ })), children);
320
+ });
321
+ if (process.env.NODE_ENV !== "production") {
322
+ Inspection.propTypes = iconPropTypesC5chbmyn.i;
323
+ }
324
+ const InstanceBx = /*#__PURE__*/React.forwardRef(function InstanceBx(_ref14, ref) {
325
+ let {
326
+ children,
327
+ size = 16,
328
+ ...rest
329
+ } = _ref14;
330
+ return /*#__PURE__*/React.createElement(Icon.default, {
331
+ width: size,
332
+ height: size,
333
+ ref: ref,
334
+ xmlns: "http://www.w3.org/2000/svg",
335
+ viewBox: "0 0 32 32",
336
+ fill: "currentColor",
337
+ ...rest
338
+ }, _path22 || (_path22 = /*#__PURE__*/React.createElement("path", {
339
+ d: "M12 5A3.0033 3.0033 0 009 2H4V15H9a3.0033 3.0033 0 003-3V10.5a2.977 2.977 0 00-.78-2 2.9768 2.9768 0 00.78-2zM6 4H9a1.0013 1.0013 0 011 1V6.5513A.9587.9587 0 019 7.5H6zm4 8a1.0009 1.0009 0 01-1 1H6V9.5H9a1.0009 1.0009 0 011 1zM22 5L20 5 18 8.897 16 5 14 5 16.905 10 14 15 16 15 18 11.201 20 15 22 15 19.098 10 22 5z"
340
+ })), _circle || (_circle = /*#__PURE__*/React.createElement("circle", {
341
+ cx: "9",
342
+ cy: "27",
343
+ r: "1"
344
+ })), _path23 || (_path23 = /*#__PURE__*/React.createElement("path", {
345
+ d: "M2 18H6V20H2zM8 18H12V20H8zM14 18H18V20H14zM20 18H24V20H20zM26 18H30V20H26zM26 31H6a2.0021 2.0021 0 01-2-2V25a2.0021 2.0021 0 012-2H26a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0126 31zM6 25v4H26V25z"
346
+ })), children);
347
+ });
348
+ if (process.env.NODE_ENV !== "production") {
349
+ InstanceBx.propTypes = iconPropTypesC5chbmyn.i;
350
+ }
351
+ const InstanceClassic = /*#__PURE__*/React.forwardRef(function InstanceClassic(_ref15, ref) {
352
+ let {
353
+ children,
354
+ size = 16,
355
+ ...rest
356
+ } = _ref15;
357
+ return /*#__PURE__*/React.createElement(Icon.default, {
358
+ width: size,
359
+ height: size,
360
+ ref: ref,
361
+ xmlns: "http://www.w3.org/2000/svg",
362
+ viewBox: "0 0 32 32",
363
+ fill: "currentColor",
364
+ ...rest
365
+ }, _path24 || (_path24 = /*#__PURE__*/React.createElement("path", {
366
+ d: "M23.5,21H23V19h.5a4.4975,4.4975,0,0,0,.3564-8.981l-.8154-.0639-.0986-.812a6.9938,6.9938,0,0,0-13.8838,0l-.0991.812-.8155.0639A4.4975,4.4975,0,0,0,8.5,19H9v2H8.5A6.4973,6.4973,0,0,1,7.2,8.1362a8.9943,8.9943,0,0,1,17.6006,0A6.4974,6.4974,0,0,1,23.5,21Z"
367
+ })), _circle2 || (_circle2 = /*#__PURE__*/React.createElement("circle", {
368
+ cx: "9",
369
+ cy: "27",
370
+ r: "1"
371
+ })), _path25 || (_path25 = /*#__PURE__*/React.createElement("path", {
372
+ d: "M26,23H17V15.83l2.59,2.58L21,17l-5-5-5,5,1.41,1.41L15,15.83V23H6a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2H26a2.0023,2.0023,0,0,0,2-2V25A2.0023,2.0023,0,0,0,26,23Zm0,6H6V25H26Z"
373
+ })), children);
374
+ });
375
+ if (process.env.NODE_ENV !== "production") {
376
+ InstanceClassic.propTypes = iconPropTypesC5chbmyn.i;
377
+ }
378
+ const InstanceCx = /*#__PURE__*/React.forwardRef(function InstanceCx(_ref16, ref) {
379
+ let {
380
+ children,
381
+ size = 16,
382
+ ...rest
383
+ } = _ref16;
384
+ return /*#__PURE__*/React.createElement(Icon.default, {
385
+ width: size,
386
+ height: size,
387
+ ref: ref,
388
+ xmlns: "http://www.w3.org/2000/svg",
389
+ viewBox: "0 0 32 32",
390
+ fill: "currentColor",
391
+ ...rest
392
+ }, _circle3 || (_circle3 = /*#__PURE__*/React.createElement("circle", {
393
+ cx: "9",
394
+ cy: "27",
395
+ r: "1"
396
+ })), _path26 || (_path26 = /*#__PURE__*/React.createElement("path", {
397
+ d: "M22 5L20 5 18 8.897 16 5 14 5 16.905 10 14 15 16 15 18 11.201 20 15 22 15 19.098 10 22 5zM12 15H6a2.0023 2.0023 0 01-2-2V4A2.002 2.002 0 016 2h6V4H6v9h6zM2 18H6V20H2zM8 18H12V20H8zM14 18H18V20H14zM20 18H24V20H20zM26 18H30V20H26zM26 31H6a2.0021 2.0021 0 01-2-2V25a2.0021 2.0021 0 012-2H26a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0126 31zM6 25v4H26V25z"
398
+ })), children);
399
+ });
400
+ if (process.env.NODE_ENV !== "production") {
401
+ InstanceCx.propTypes = iconPropTypesC5chbmyn.i;
402
+ }
403
+ const InstanceMx = /*#__PURE__*/React.forwardRef(function InstanceMx(_ref17, ref) {
404
+ let {
405
+ children,
406
+ size = 16,
407
+ ...rest
408
+ } = _ref17;
409
+ return /*#__PURE__*/React.createElement(Icon.default, {
410
+ width: size,
411
+ height: size,
412
+ ref: ref,
413
+ xmlns: "http://www.w3.org/2000/svg",
414
+ viewBox: "0 0 32 32",
415
+ fill: "currentColor",
416
+ ...rest
417
+ }, _path27 || (_path27 = /*#__PURE__*/React.createElement("path", {
418
+ d: "M22 5L20 5 18 8.897 16 5 14 5 16.905 10 14 15 16 15 18 11.201 20 15 22 15 19.098 10 22 5zM10 2L8.485 6.374 8 8 7.535 6.374 6 2 4 2 4 15 6 15 6 7.374 5.841 5.378 6.421 7.374 8 12 9.579 7.374 10.159 5.374 10 7.374 10 15 12 15 12 2 10 2z"
419
+ })), _circle4 || (_circle4 = /*#__PURE__*/React.createElement("circle", {
420
+ cx: "9",
421
+ cy: "27",
422
+ r: "1"
423
+ })), _path28 || (_path28 = /*#__PURE__*/React.createElement("path", {
424
+ d: "M2 18H6V20H2zM8 18H12V20H8zM14 18H18V20H14zM20 18H24V20H20zM26 18H30V20H26zM26 31H6a2.0021 2.0021 0 01-2-2V25a2.0021 2.0021 0 012-2H26a2.0021 2.0021 0 012 2v4A2.0021 2.0021 0 0126 31zM6 25v4H26V25z"
425
+ })), children);
426
+ });
427
+ if (process.env.NODE_ENV !== "production") {
428
+ InstanceMx.propTypes = iconPropTypesC5chbmyn.i;
429
+ }
430
+ const InstanceVirtual = /*#__PURE__*/React.forwardRef(function InstanceVirtual(_ref18, ref) {
431
+ let {
432
+ children,
433
+ size = 16,
434
+ ...rest
435
+ } = _ref18;
436
+ return /*#__PURE__*/React.createElement(Icon.default, {
437
+ width: size,
438
+ height: size,
439
+ ref: ref,
440
+ xmlns: "http://www.w3.org/2000/svg",
441
+ viewBox: "0 0 32 32",
442
+ fill: "currentColor",
443
+ ...rest
444
+ }, _circle5 || (_circle5 = /*#__PURE__*/React.createElement("circle", {
445
+ cx: "7",
446
+ cy: "23",
447
+ r: "1"
448
+ })), _path29 || (_path29 = /*#__PURE__*/React.createElement("path", {
449
+ d: "M2 6H6V8H2zM8 6H12V8H8zM14 6H18V8H14zM20 6H24V8H20zM26 6H30V8H26zM28 28H4a2.0021 2.0021 0 01-2-2V20a2.0021 2.0021 0 012-2H28a2.0021 2.0021 0 012 2v6A2.0021 2.0021 0 0128 28zM4 20v6H28V20zM2 12H30V14H2z"
450
+ })), children);
451
+ });
452
+ if (process.env.NODE_ENV !== "production") {
453
+ InstanceVirtual.propTypes = iconPropTypesC5chbmyn.i;
454
+ }
455
+ const Integration = /*#__PURE__*/React.forwardRef(function Integration(_ref19, ref) {
456
+ let {
457
+ children,
458
+ size = 16,
459
+ ...rest
460
+ } = _ref19;
461
+ return /*#__PURE__*/React.createElement(Icon.default, {
462
+ width: size,
463
+ height: size,
464
+ ref: ref,
465
+ xmlns: "http://www.w3.org/2000/svg",
466
+ viewBox: "0 0 32 32",
467
+ fill: "currentColor",
468
+ ...rest
469
+ }, _path30 || (_path30 = /*#__PURE__*/React.createElement("path", {
470
+ d: "M29.88,15.52l-6-11A1,1,0,0,0,23,4H9a1,1,0,0,0-.88.52l-6,11a1,1,0,0,0,0,1l6,11A1,1,0,0,0,9,28H23a1,1,0,0,0,.88-.52l6-11A1,1,0,0,0,29.88,15.52ZM22.93,7l4.39,8h-9.5ZM16,14.14,10.82,6H21.18ZM9.07,7l5.11,8H4.68ZM4.68,17h9.5L9.07,25ZM16,17.86,21.18,26H10.82ZM22.93,25l-5.11-8h9.5Z"
471
+ })), children);
472
+ });
473
+ if (process.env.NODE_ENV !== "production") {
474
+ Integration.propTypes = iconPropTypesC5chbmyn.i;
475
+ }
476
+ const IntentRequestActive = /*#__PURE__*/React.forwardRef(function IntentRequestActive(_ref20, ref) {
477
+ let {
478
+ children,
479
+ size = 16,
480
+ ...rest
481
+ } = _ref20;
482
+ return /*#__PURE__*/React.createElement(Icon.default, {
483
+ width: size,
484
+ height: size,
485
+ ref: ref,
486
+ xmlns: "http://www.w3.org/2000/svg",
487
+ viewBox: "0 0 32 32",
488
+ fill: "currentColor",
489
+ ...rest
490
+ }, _path31 || (_path31 = /*#__PURE__*/React.createElement("path", {
491
+ d: "M23 27.2L20.4 24.6 19 26 23 30 31 22 29.6 20.6z"
492
+ })), _path32 || (_path32 = /*#__PURE__*/React.createElement("path", {
493
+ d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
494
+ })), children);
495
+ });
496
+ if (process.env.NODE_ENV !== "production") {
497
+ IntentRequestActive.propTypes = iconPropTypesC5chbmyn.i;
498
+ }
499
+ const IntentRequestCreate = /*#__PURE__*/React.forwardRef(function IntentRequestCreate(_ref21, ref) {
500
+ let {
501
+ children,
502
+ size = 16,
503
+ ...rest
504
+ } = _ref21;
505
+ return /*#__PURE__*/React.createElement(Icon.default, {
506
+ width: size,
507
+ height: size,
508
+ ref: ref,
509
+ xmlns: "http://www.w3.org/2000/svg",
510
+ viewBox: "0 0 32 32",
511
+ fill: "currentColor",
512
+ ...rest
513
+ }, _path33 || (_path33 = /*#__PURE__*/React.createElement("path", {
514
+ d: "M30 24L26 24 26 20 24 20 24 24 20 24 20 26 24 26 24 30 26 30 26 26 30 26z"
515
+ })), _path34 || (_path34 = /*#__PURE__*/React.createElement("path", {
516
+ d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
517
+ })), children);
518
+ });
519
+ if (process.env.NODE_ENV !== "production") {
520
+ IntentRequestCreate.propTypes = iconPropTypesC5chbmyn.i;
521
+ }
522
+ const IntentRequestHeal = /*#__PURE__*/React.forwardRef(function IntentRequestHeal(_ref22, ref) {
523
+ let {
524
+ children,
525
+ size = 16,
526
+ ...rest
527
+ } = _ref22;
528
+ return /*#__PURE__*/React.createElement(Icon.default, {
529
+ width: size,
530
+ height: size,
531
+ ref: ref,
532
+ xmlns: "http://www.w3.org/2000/svg",
533
+ viewBox: "0 0 32 32",
534
+ fill: "currentColor",
535
+ ...rest
536
+ }, _path35 || (_path35 = /*#__PURE__*/React.createElement("path", {
537
+ d: "M27,20c-0.8,0-1.5,0.3-2.1,0.9l-0.4,0.5l-0.4-0.5C23.5,20.3,22.7,20,22,20s-1.5,0.3-2.1,0.9c-1.2,1.2-1.2,3.1,0,4.3l4.6,4.8 l4.6-4.8c1.2-1.2,1.2-3.1,0-4.3C28.6,20.3,27.8,20,27,20L27,20z"
538
+ })), _path36 || (_path36 = /*#__PURE__*/React.createElement("path", {
539
+ d: "M16.6,28.6L4,16L16,4l12.6,12.6l1.4-1.4L17.5,2.6c-0.8-0.8-2.1-0.8-2.9,0L2.6,14.5c-0.8,0.8-0.8,2.1,0,2.9L15.1,30 L16.6,28.6z"
540
+ })), children);
541
+ });
542
+ if (process.env.NODE_ENV !== "production") {
543
+ IntentRequestHeal.propTypes = iconPropTypesC5chbmyn.i;
544
+ }
545
+ const IntentRequestInactive = /*#__PURE__*/React.forwardRef(function IntentRequestInactive(_ref23, ref) {
546
+ let {
547
+ children,
548
+ size = 16,
549
+ ...rest
550
+ } = _ref23;
551
+ return /*#__PURE__*/React.createElement(Icon.default, {
552
+ width: size,
553
+ height: size,
554
+ ref: ref,
555
+ xmlns: "http://www.w3.org/2000/svg",
556
+ viewBox: "0 0 32 32",
557
+ fill: "currentColor",
558
+ ...rest
559
+ }, _circle6 || (_circle6 = /*#__PURE__*/React.createElement("circle", {
560
+ cx: "18.5",
561
+ cy: "22.5",
562
+ r: "1.5"
563
+ })), _circle7 || (_circle7 = /*#__PURE__*/React.createElement("circle", {
564
+ cx: "23.5",
565
+ cy: "22.5",
566
+ r: "1.5"
567
+ })), _circle8 || (_circle8 = /*#__PURE__*/React.createElement("circle", {
568
+ cx: "28.5",
569
+ cy: "22.5",
570
+ r: "1.5"
571
+ })), _path37 || (_path37 = /*#__PURE__*/React.createElement("path", {
572
+ d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
573
+ })), children);
574
+ });
575
+ if (process.env.NODE_ENV !== "production") {
576
+ IntentRequestInactive.propTypes = iconPropTypesC5chbmyn.i;
577
+ }
578
+ const IntentRequestScaleIn = /*#__PURE__*/React.forwardRef(function IntentRequestScaleIn(_ref24, ref) {
579
+ let {
580
+ children,
581
+ size = 16,
582
+ ...rest
583
+ } = _ref24;
584
+ return /*#__PURE__*/React.createElement(Icon.default, {
585
+ width: size,
586
+ height: size,
587
+ ref: ref,
588
+ xmlns: "http://www.w3.org/2000/svg",
589
+ viewBox: "0 0 32 32",
590
+ fill: "currentColor",
591
+ ...rest
592
+ }, _path38 || (_path38 = /*#__PURE__*/React.createElement("path", {
593
+ d: "M28.6 30L30 28.6 22.4 21 29 21 29 19 19 19 19 29 21 29 21 22.4zM2 28.6L3.4 30 11 22.4 11 29 13 29 13 19 3 19 3 21 9.6 21zM17 2L15 2 15 12.2 10.4 7.6 9 9 16 16 23 9 21.6 7.6 17 12.2z"
594
+ })), children);
595
+ });
596
+ if (process.env.NODE_ENV !== "production") {
597
+ IntentRequestScaleIn.propTypes = iconPropTypesC5chbmyn.i;
598
+ }
599
+ const IntentRequestScaleOut = /*#__PURE__*/React.forwardRef(function IntentRequestScaleOut(_ref25, ref) {
600
+ let {
601
+ children,
602
+ size = 16,
603
+ ...rest
604
+ } = _ref25;
605
+ return /*#__PURE__*/React.createElement(Icon.default, {
606
+ width: size,
607
+ height: size,
608
+ ref: ref,
609
+ xmlns: "http://www.w3.org/2000/svg",
610
+ viewBox: "0 0 32 32",
611
+ fill: "currentColor",
612
+ ...rest
613
+ }, _path39 || (_path39 = /*#__PURE__*/React.createElement("path", {
614
+ d: "M19 20.4L20.4 19 28 26.6 28 20 30 20 30 30 20 30 20 28 26.6 28zM13 20.4L11.6 19 4 26.6 4 20 2 20 2 30 12 30 12 28 5.4 28zM17 16L15 16 15 5.8 10.4 10.4 9 9 16 2 23 9 21.6 10.4 17 5.8z"
615
+ })), children);
616
+ });
617
+ if (process.env.NODE_ENV !== "production") {
618
+ IntentRequestScaleOut.propTypes = iconPropTypesC5chbmyn.i;
619
+ }
620
+ const IntentRequestUninstall = /*#__PURE__*/React.forwardRef(function IntentRequestUninstall(_ref26, ref) {
621
+ let {
622
+ children,
623
+ size = 16,
624
+ ...rest
625
+ } = _ref26;
626
+ return /*#__PURE__*/React.createElement(Icon.default, {
627
+ width: size,
628
+ height: size,
629
+ ref: ref,
630
+ xmlns: "http://www.w3.org/2000/svg",
631
+ viewBox: "0 0 32 32",
632
+ fill: "currentColor",
633
+ ...rest
634
+ }, _path40 || (_path40 = /*#__PURE__*/React.createElement("path", {
635
+ d: "M30 21.4L28.6 20 25 23.6 21.4 20 20 21.4 23.6 25 20 28.6 21.4 30 25 26.4 28.6 30 30 28.6 26.4 25z"
636
+ })), _path41 || (_path41 = /*#__PURE__*/React.createElement("path", {
637
+ d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
638
+ })), children);
639
+ });
640
+ if (process.env.NODE_ENV !== "production") {
641
+ IntentRequestUninstall.propTypes = iconPropTypesC5chbmyn.i;
642
+ }
643
+ const IntentRequestUpgrade = /*#__PURE__*/React.forwardRef(function IntentRequestUpgrade(_ref27, ref) {
644
+ let {
645
+ children,
646
+ size = 16,
647
+ ...rest
648
+ } = _ref27;
649
+ return /*#__PURE__*/React.createElement(Icon.default, {
650
+ width: size,
651
+ height: size,
652
+ ref: ref,
653
+ xmlns: "http://www.w3.org/2000/svg",
654
+ viewBox: "0 0 32 32",
655
+ fill: "currentColor",
656
+ ...rest
657
+ }, _path42 || (_path42 = /*#__PURE__*/React.createElement("path", {
658
+ d: "M28 23L26.6 24.4 24 21.8 24 30 22 30 22 21.8 19.4 24.4 18 23 23 18z"
659
+ })), _path43 || (_path43 = /*#__PURE__*/React.createElement("path", {
660
+ d: "M15.4,30L5,23.8c-0.6-0.4-1-1-1-1.7V9.9c0-0.7,0.4-1.4,1-1.7l10-5.9C15.3,2.1,15.6,2,16,2c0.4,0,0.7,0.1,1,0.3l10,5.9 c0.6,0.4,1,1,1,1.7V16h-2V9.9L16,4L6,9.9v12.2l10.5,6.2L15.4,30z"
661
+ })), children);
662
+ });
663
+ if (process.env.NODE_ENV !== "production") {
664
+ IntentRequestUpgrade.propTypes = iconPropTypesC5chbmyn.i;
665
+ }
666
+ const Interactions = /*#__PURE__*/React.forwardRef(function Interactions(_ref28, ref) {
667
+ let {
668
+ children,
669
+ size = 16,
670
+ ...rest
671
+ } = _ref28;
672
+ if (size === 16 || size === "16" || size === "16px") {
673
+ return /*#__PURE__*/React.createElement(Icon.default, {
674
+ width: size,
675
+ height: size,
676
+ ref: ref,
677
+ xmlns: "http://www.w3.org/2000/svg",
678
+ viewBox: "0 0 16 16",
679
+ fill: "currentColor",
680
+ ...rest
681
+ }, _path44 || (_path44 = /*#__PURE__*/React.createElement("path", {
682
+ fillRule: "evenodd",
683
+ d: "M11,7 L11,9 L13,9 C13.5522847,9 14,9.44771525 14,10 L14,10 L14,13 C14,13.5522847 13.5522847,14 13,14 L13,14 L10,14 L10,7 L11,7 Z M5,9 C5.55228475,9 6,9.44771525 6,10 L6,10 L6,14 L3,14 C2.44771525,14 2,13.5522847 2,13 L2,13 L2,12 C2,11.4477153 2.44771525,11 3,11 L3,11 L5,11 L5,10 L2.5,10 L2.5,9 Z M13,10 L11,10 L11,13 L13,13 L13,10 Z M5,12 L3,12 L3,13 L5,13 L5,12 Z M7.912,2 L7.834,3.911 L9.628,3.248 L9.914,4.119 L8.068,4.626 L9.251,6.134 L8.523,6.667 L7.457,5.068 L6.391,6.667 L5.663,6.134 L6.846,4.626 L5,4.119 L5.286,3.248 L7.08,3.911 L7.002,2 L7.912,2 Z"
684
+ })), children);
685
+ }
686
+ return /*#__PURE__*/React.createElement(Icon.default, {
687
+ width: size,
688
+ height: size,
689
+ ref: ref,
690
+ xmlns: "http://www.w3.org/2000/svg",
691
+ viewBox: "0 0 32 32",
692
+ fill: "currentColor",
693
+ ...rest
694
+ }, _path45 || (_path45 = /*#__PURE__*/React.createElement("path", {
695
+ d: "M26 18H22V14H20V28h6a2.0027 2.0027 0 002-2V20A2.0023 2.0023 0 0026 18zm-4 8V20h4v6zM20 6.076L19.256 4.219 16 5.522 16 2 14 2 14 5.523 10.744 4.22 10 6.077 13.417 7.444 10.9 10.8 12.5 12 15 8.667 17.5 12 19.1 10.8 16.583 7.443 20 6.076zM10 18H5v2h5v2H6a2 2 0 00-2 2v2a2 2 0 002 2h6V20A2.0023 2.0023 0 0010 18zm0 8H6V24h4z"
696
+ })), children);
697
+ });
698
+ if (process.env.NODE_ENV !== "production") {
699
+ Interactions.propTypes = iconPropTypesC5chbmyn.i;
700
+ }
701
+ const WatsonHealthInteractiveSegmentationCursor = /*#__PURE__*/React.forwardRef(function WatsonHealthInteractiveSegmentationCursor(_ref29, ref) {
702
+ let {
703
+ children,
704
+ size = 16,
705
+ ...rest
706
+ } = _ref29;
707
+ return /*#__PURE__*/React.createElement(Icon.default, {
708
+ width: size,
709
+ height: size,
710
+ ref: ref,
711
+ xmlns: "http://www.w3.org/2000/svg",
712
+ viewBox: "0 0 32 32",
713
+ fill: "currentColor",
714
+ ...rest
715
+ }, _path46 || (_path46 = /*#__PURE__*/React.createElement("path", {
716
+ d: "M29.4139,24,15.9989,10.5663a2.0473,2.0473,0,0,0-2.8281,0l-2.586,2.586a2.0023,2.0023,0,0,0,0,2.8283L23.9989,29.4145a2.0021,2.0021,0,0,0,2.8281,0l2.5869-2.5865a1.9993,1.9993,0,0,0,0-2.8283Zm-17.415-9.4335,2.5859-2.5859,3.5,3.5L15.498,18.0676l-3.5-3.5ZM25.413,28l-8.5009-8.5188,2.5867-2.587L28,25.4143Z"
717
+ })), _path47 || (_path47 = /*#__PURE__*/React.createElement("path", {
718
+ d: "M7.586 18.586H10.414V21.413999999999998H7.586z",
719
+ transform: "rotate(-45 9 20)"
720
+ })), _path48 || (_path48 = /*#__PURE__*/React.createElement("path", {
721
+ d: "M18.586 7.586H21.413999999999998V10.414H18.586z",
722
+ transform: "rotate(-45 20 9)"
723
+ })), _path49 || (_path49 = /*#__PURE__*/React.createElement("path", {
724
+ d: "M7.586 7.586H10.414V10.414H7.586z",
725
+ transform: "rotate(-45 9 9)"
726
+ })), _path50 || (_path50 = /*#__PURE__*/React.createElement("path", {
727
+ d: "M11 2L2 2 2 11 4 11 4 4 11 4 11 2z"
728
+ })), children);
729
+ });
730
+ if (process.env.NODE_ENV !== "production") {
731
+ WatsonHealthInteractiveSegmentationCursor.propTypes = iconPropTypesC5chbmyn.i;
732
+ }
733
+ const InterfaceDefinition = /*#__PURE__*/React.forwardRef(function InterfaceDefinition(_ref30, ref) {
734
+ let {
735
+ children,
736
+ size = 16,
737
+ ...rest
738
+ } = _ref30;
739
+ return /*#__PURE__*/React.createElement(Icon.default, {
740
+ width: size,
741
+ height: size,
742
+ ref: ref,
743
+ xmlns: "http://www.w3.org/2000/svg",
744
+ viewBox: "0 0 32 32",
745
+ fill: "currentColor",
746
+ ...rest
747
+ }, _path51 || (_path51 = /*#__PURE__*/React.createElement("path", {
748
+ d: "M28,19h-7c-1.1028,0-2,.8975-2,2v2h-2v-14c0-1.1025-.8972-2-2-2h-2v-3c0-1.1025-.8972-2-2-2h-7c-1.1028,0-2,.8975-2,2v7c0,1.1025.8972,2,2,2h7c1.1028,0,2-.8975,2-2v-2h2v14c0,1.1025.8972,2,2,2h2v3c0,1.1025.8972,2,2,2h7c1.1028,0,2-.8975,2-2v-7c0-1.1025-.8972-2-2-2ZM11,11h-7v-7h7v7ZM28,28h-7v-7h7v7Z"
749
+ })), children);
750
+ });
751
+ if (process.env.NODE_ENV !== "production") {
752
+ InterfaceDefinition.propTypes = iconPropTypesC5chbmyn.i;
753
+ }
754
+ const InterfaceDefinitionAlt = /*#__PURE__*/React.forwardRef(function InterfaceDefinitionAlt(_ref31, ref) {
755
+ let {
756
+ children,
757
+ size = 16,
758
+ ...rest
759
+ } = _ref31;
760
+ return /*#__PURE__*/React.createElement(Icon.default, {
761
+ width: size,
762
+ height: size,
763
+ ref: ref,
764
+ xmlns: "http://www.w3.org/2000/svg",
765
+ viewBox: "0 0 32 32",
766
+ fill: "currentColor",
767
+ ...rest
768
+ }, _path52 || (_path52 = /*#__PURE__*/React.createElement("path", {
769
+ d: "M28,30H4c-1.1,0-2-.9-2-2V4c0-1.1.9-2,2-2h24c1.1,0,2,.9,2,2v24c0,1.1-.9,2-2,2ZM4,28h24V4H4v24ZM9,22v-1.8232h1.582v-8.3545h-1.582v-1.8223h5.4512v1.8223h-1.5991v8.3545h1.5991v1.8232h-5.4512ZM16.3301,22v-9h2.2012v1.5195h.0859c.3613-.9629,1.1182-1.7021,2.5107-1.7021,1.8403,0,2.8721,1.2725,2.8721,3.5078v5.6748h-2.2012v-5.4512c0-1.2725-.4302-1.9258-1.479-1.9258-.9116,0-1.7886.4814-1.7886,1.4443v5.9326h-2.2012Z"
770
+ })), children);
771
+ });
772
+ if (process.env.NODE_ENV !== "production") {
773
+ InterfaceDefinitionAlt.propTypes = iconPropTypesC5chbmyn.i;
774
+ }
775
+ const InterfaceUsage = /*#__PURE__*/React.forwardRef(function InterfaceUsage(_ref32, ref) {
776
+ let {
777
+ children,
778
+ size = 16,
779
+ ...rest
780
+ } = _ref32;
781
+ return /*#__PURE__*/React.createElement(Icon.default, {
782
+ width: size,
783
+ height: size,
784
+ ref: ref,
785
+ xmlns: "http://www.w3.org/2000/svg",
786
+ viewBox: "0 0 32 32",
787
+ fill: "currentColor",
788
+ ...rest
789
+ }, _path53 || (_path53 = /*#__PURE__*/React.createElement("path", {
790
+ strokeWidth: "0",
791
+ d: "M18.3242 11.7334v1.29h-1.3242v1.7368h1.3242v7.2397h2.2012v-7.2397h1.8398v-1.7368h-1.8398v-1.9951h1.8398v-1.7539h-1.5649c-1.6167 0-2.4761.877-2.4761 2.459zM10 11.8193L11.582 11.8193 11.582 20.1772 10 20.1772 10 22 15.4516 22 15.4516 20.1772 13.8525 20.1772 13.8525 11.8193 15.4516 11.8193 15.4516 9.9966 10 9.9966 10 11.8193z"
792
+ })), _path54 || (_path54 = /*#__PURE__*/React.createElement("path", {
793
+ strokeWidth: "0",
794
+ d: "m21,30h-10c-4.9626,0-9-4.0374-9-9v-10C2,6.0374,6.0374,2,11,2h10c4.9626,0,9,4.0374,9,9v10c0,4.9626-4.0374,9-9,9ZM11,4c-3.8599,0-7,3.1401-7,7v10c0,3.8599,3.1401,7,7,7h10c3.8599,0,7-3.1401,7-7v-10c0-3.8599-3.1401-7-7-7h-10Z"
795
+ })), children);
796
+ });
797
+ if (process.env.NODE_ENV !== "production") {
798
+ InterfaceUsage.propTypes = iconPropTypesC5chbmyn.i;
799
+ }
800
+ const InterfaceUsage_1 = /*#__PURE__*/React.forwardRef(function InterfaceUsage_1(_ref33, ref) {
801
+ let {
802
+ children,
803
+ size = 16,
804
+ ...rest
805
+ } = _ref33;
806
+ return /*#__PURE__*/React.createElement(Icon.default, {
807
+ width: size,
808
+ height: size,
809
+ ref: ref,
810
+ xmlns: "http://www.w3.org/2000/svg",
811
+ viewBox: "0 0 32 32",
812
+ fill: "currentColor",
813
+ ...rest
814
+ }, _path55 || (_path55 = /*#__PURE__*/React.createElement("path", {
815
+ d: "M21.0259,30h-10c-5,0-9-4-9-9v-10C2.0259,6,6.0259,2,11.0259,2h10c5,0,9,4,9,9v10c0,5-4,9-9,9ZM11.0259,4c-3.9,0-7,3.1-7,7v10c0,3.9,3.1,7,7,7h10c3.9,0,7-3.1,7-7v-10c0-3.9-3.1-7-7-7h-10ZM9,22.0029v-1.8232h1.582v-8.3574h-1.582v-1.8223h5.4512v1.8223h-1.5991v8.3574h1.5991v1.8232h-5.4512ZM16.3301,22.0029v-9.0029h2.2012v1.5225h.0859c.3613-.9629,1.1182-1.7021,2.5107-1.7021,1.8403,0,2.8721,1.2725,2.8721,3.5078v5.6748h-2.2012v-5.4512c0-1.2725-.4302-1.9258-1.479-1.9258-.9116,0-1.7886.4814-1.7886,1.4443v5.9326h-2.2012Z"
816
+ })), children);
817
+ });
818
+ if (process.env.NODE_ENV !== "production") {
819
+ InterfaceUsage_1.propTypes = iconPropTypesC5chbmyn.i;
820
+ }
821
+ const InterfaceUsageAlt = /*#__PURE__*/React.forwardRef(function InterfaceUsageAlt(_ref34, ref) {
822
+ let {
823
+ children,
824
+ size = 16,
825
+ ...rest
826
+ } = _ref34;
827
+ return /*#__PURE__*/React.createElement(Icon.default, {
828
+ width: size,
829
+ height: size,
830
+ ref: ref,
831
+ xmlns: "http://www.w3.org/2000/svg",
832
+ viewBox: "0 0 32 32",
833
+ fill: "currentColor",
834
+ ...rest
835
+ }, _path56 || (_path56 = /*#__PURE__*/React.createElement("path", {
836
+ d: "M26,19h-3c-2.2056,0-4,1.7944-4,4h-2v-14c0-1.1025-.8972-2-2-2h-2v-1c0-2.2056-1.7944-4-4-4h-3c-2.2056,0-4,1.7944-4,4v3c0,2.2056,1.7944,4,4,4h3c2.2056,0,4-1.7944,4-4h2v14c0,1.1025.8972,2,2,2h2v1c0,2.2056,1.7944,4,4,4h3c2.2056,0,4-1.7944,4-4v-3c0-2.2056-1.7944-4-4-4ZM11,9c0,1.1025-.8972,2-2,2h-3c-1.1028,0-2-.8975-2-2v-3c0-1.1025.8972-2,2-2h3c1.1028,0,2,.8975,2,2v3ZM28,26c0,1.1025-.8972,2-2,2h-3c-1.1028,0-2-.8975-2-2v-3c0-1.1025.8972-2,2-2h3c1.1028,0,2,.8975,2,2v3Z"
837
+ })), children);
838
+ });
839
+ if (process.env.NODE_ENV !== "production") {
840
+ InterfaceUsageAlt.propTypes = iconPropTypesC5chbmyn.i;
841
+ }
842
+ const Intersect = /*#__PURE__*/React.forwardRef(function Intersect(_ref35, ref) {
843
+ let {
844
+ children,
845
+ size = 16,
846
+ ...rest
847
+ } = _ref35;
848
+ return /*#__PURE__*/React.createElement(Icon.default, {
849
+ width: size,
850
+ height: size,
851
+ ref: ref,
852
+ xmlns: "http://www.w3.org/2000/svg",
853
+ viewBox: "0 0 32 32",
854
+ fill: "currentColor",
855
+ ...rest
856
+ }, _path57 || (_path57 = /*#__PURE__*/React.createElement("path", {
857
+ d: "M22 24H18V22h4V18h2v4A2.0021 2.0021 0 0122 24zM10 14H8V10a2.0022 2.0022 0 012-2h4v2H10z"
858
+ })), _path58 || (_path58 = /*#__PURE__*/React.createElement("path", {
859
+ d: "M28,8H24V4a2.0023,2.0023,0,0,0-2-2H4A2.0023,2.0023,0,0,0,2,4V22a2.0023,2.0023,0,0,0,2,2H8v4a2.0023,2.0023,0,0,0,2,2H28a2.0023,2.0023,0,0,0,2-2V10A2.0023,2.0023,0,0,0,28,8Zm0,20H10V24h4V22H10V18H8v4H4V4H22V8H18v2h4v4h2V10h4Z"
860
+ })), children);
861
+ });
862
+ if (process.env.NODE_ENV !== "production") {
863
+ Intersect.propTypes = iconPropTypesC5chbmyn.i;
864
+ }
865
+ const IntrusionPrevention = /*#__PURE__*/React.forwardRef(function IntrusionPrevention(_ref36, ref) {
866
+ let {
867
+ children,
868
+ size = 16,
869
+ ...rest
870
+ } = _ref36;
871
+ return /*#__PURE__*/React.createElement(Icon.default, {
872
+ width: size,
873
+ height: size,
874
+ ref: ref,
875
+ xmlns: "http://www.w3.org/2000/svg",
876
+ viewBox: "0 0 32 32",
877
+ fill: "currentColor",
878
+ ...rest
879
+ }, _circle9 || (_circle9 = /*#__PURE__*/React.createElement("circle", {
880
+ cx: "22",
881
+ cy: "23.887",
882
+ r: "2"
883
+ })), _path59 || (_path59 = /*#__PURE__*/React.createElement("path", {
884
+ d: "M29.7769 23.4785A8.64 8.64 0 0022 18a8.64 8.64 0 00-7.7769 5.4785L14 24l.2231.5215A8.64 8.64 0 0022 30a8.64 8.64 0 007.7769-5.4785L30 24zM22 28a4 4 0 114-4A4.0045 4.0045 0 0122 28zM25 10H4A2.0021 2.0021 0 012 8V4A2.0021 2.0021 0 014 2H25a2.0021 2.0021 0 012 2V8A2.0021 2.0021 0 0125 10zM4 4V8H25V4zM12 28H4V24h8V22H4a2.0023 2.0023 0 00-2 2v4a2.0023 2.0023 0 002 2h8z"
885
+ })), _path60 || (_path60 = /*#__PURE__*/React.createElement("path", {
886
+ d: "M28,12H7a2.0023,2.0023,0,0,0-2,2v4a2.0023,2.0023,0,0,0,2,2h5V18H7V14H28l.0007,2H30V14A2.0023,2.0023,0,0,0,28,12Z"
887
+ })), children);
888
+ });
889
+ if (process.env.NODE_ENV !== "production") {
890
+ IntrusionPrevention.propTypes = iconPropTypesC5chbmyn.i;
891
+ }
892
+ const InventoryManagement = /*#__PURE__*/React.forwardRef(function InventoryManagement(_ref37, ref) {
893
+ let {
894
+ children,
895
+ size = 16,
896
+ ...rest
897
+ } = _ref37;
898
+ return /*#__PURE__*/React.createElement(Icon.default, {
899
+ width: size,
900
+ height: size,
901
+ ref: ref,
902
+ xmlns: "http://www.w3.org/2000/svg",
903
+ viewBox: "0 0 32 32",
904
+ fill: "currentColor",
905
+ ...rest
906
+ }, _path61 || (_path61 = /*#__PURE__*/React.createElement("path", {
907
+ d: "M19 24H23V28H19zM26 24H30V28H26zM19 17H23V21H19zM26 17H30V21H26z"
908
+ })), _path62 || (_path62 = /*#__PURE__*/React.createElement("path", {
909
+ d: "M17,24H4V10H28v5h2V10a2.0023,2.0023,0,0,0-2-2H22V4a2.0023,2.0023,0,0,0-2-2H12a2.002,2.002,0,0,0-2,2V8H4a2.002,2.002,0,0,0-2,2V24a2.0023,2.0023,0,0,0,2,2H17ZM12,4h8V8H12Z"
910
+ })), children);
911
+ });
912
+ if (process.env.NODE_ENV !== "production") {
913
+ InventoryManagement.propTypes = iconPropTypesC5chbmyn.i;
914
+ }
915
+ const IotConnect = /*#__PURE__*/React.forwardRef(function IotConnect(_ref38, ref) {
916
+ let {
917
+ children,
918
+ size = 16,
919
+ ...rest
920
+ } = _ref38;
921
+ return /*#__PURE__*/React.createElement(Icon.default, {
922
+ width: size,
923
+ height: size,
924
+ ref: ref,
925
+ xmlns: "http://www.w3.org/2000/svg",
926
+ viewBox: "0 0 32 32",
927
+ fill: "currentColor",
928
+ ...rest
929
+ }, _path63 || (_path63 = /*#__PURE__*/React.createElement("path", {
930
+ d: "M30,19H26V15H24v9H8V8l9-.0009V6H13V2H11V6H8A2.002,2.002,0,0,0,6,8v3H2v2H6v6H2v2H6v3a2.0023,2.0023,0,0,0,2,2h3v4h2V26h6v4h2V26h3a2.0027,2.0027,0,0,0,2-2V21h4Z"
931
+ })), _path64 || (_path64 = /*#__PURE__*/React.createElement("path", {
932
+ d: "M26,2a4.0042,4.0042,0,0,0-4,4,3.9556,3.9556,0,0,0,.5668,2.0192L19.5859,11H11V21H21V12.4141l2.9808-2.9808A3.9553,3.9553,0,0,0,26,10a4,4,0,0,0,0-8ZM19,19H13V13h6ZM26,8a2,2,0,1,1,2-2A2.0023,2.0023,0,0,1,26,8Z"
933
+ })), children);
934
+ });
935
+ if (process.env.NODE_ENV !== "production") {
936
+ IotConnect.propTypes = iconPropTypesC5chbmyn.i;
937
+ }
938
+ const IotPlatform = /*#__PURE__*/React.forwardRef(function IotPlatform(_ref39, ref) {
939
+ let {
940
+ children,
941
+ size = 16,
942
+ ...rest
943
+ } = _ref39;
944
+ return /*#__PURE__*/React.createElement(Icon.default, {
945
+ width: size,
946
+ height: size,
947
+ ref: ref,
948
+ xmlns: "http://www.w3.org/2000/svg",
949
+ viewBox: "0 0 32 32",
950
+ fill: "currentColor",
951
+ ...rest
952
+ }, _path65 || (_path65 = /*#__PURE__*/React.createElement("path", {
953
+ d: "M30,19H26V15H24v9H8V8l9-.0009V6H13V2H11V6H8A2.002,2.002,0,0,0,6,8v3H2v2H6v6H2v2H6v3a2.0023,2.0023,0,0,0,2,2h3v4h2V26h6v4h2V26h3a2.0027,2.0027,0,0,0,2-2V21h4Z"
954
+ })), _path66 || (_path66 = /*#__PURE__*/React.createElement("path", {
955
+ d: "M21 21H11V11H21zm-8-2h6V13H13zM31 13H29A10.0117 10.0117 0 0019 3V1A12.0131 12.0131 0 0131 13z"
956
+ })), _path67 || (_path67 = /*#__PURE__*/React.createElement("path", {
957
+ d: "M26,13H24a5.0059,5.0059,0,0,0-5-5V6A7.0085,7.0085,0,0,1,26,13Z"
958
+ })), children);
959
+ });
960
+ if (process.env.NODE_ENV !== "production") {
961
+ IotPlatform.propTypes = iconPropTypesC5chbmyn.i;
962
+ }
963
+ const Ip = /*#__PURE__*/React.forwardRef(function Ip(_ref40, ref) {
964
+ let {
965
+ children,
966
+ size = 16,
967
+ ...rest
968
+ } = _ref40;
969
+ return /*#__PURE__*/React.createElement(Icon.default, {
970
+ width: size,
971
+ height: size,
972
+ ref: ref,
973
+ xmlns: "http://www.w3.org/2000/svg",
974
+ viewBox: "0 0 32 32",
975
+ fill: "currentColor",
976
+ ...rest
977
+ }, _path68 || (_path68 = /*#__PURE__*/React.createElement("path", {
978
+ strokeWidth: "0",
979
+ d: "M19 23h-2v-14h6c1.103 0 2 .897 2 2v5c0 1.103-.897 2-2 2h-4v5zm0-7h4v-5.0015h-4v5.0015zM7 11L10 11 10 21 7 21 7 23 15 23 15 21 12 21 12 11 15 11 15 9 7 9 7 11z"
980
+ })), children);
981
+ });
982
+ if (process.env.NODE_ENV !== "production") {
983
+ Ip.propTypes = iconPropTypesC5chbmyn.i;
984
+ }
985
+ const Iso = /*#__PURE__*/React.forwardRef(function Iso(_ref41, ref) {
986
+ let {
987
+ children,
988
+ size = 16,
989
+ ...rest
990
+ } = _ref41;
991
+ return /*#__PURE__*/React.createElement(Icon.default, {
992
+ width: size,
993
+ height: size,
994
+ ref: ref,
995
+ xmlns: "http://www.w3.org/2000/svg",
996
+ viewBox: "0 0 32 32",
997
+ fill: "currentColor",
998
+ ...rest
999
+ }, _path69 || (_path69 = /*#__PURE__*/React.createElement("path", {
1000
+ d: "M28 23H24a2 2 0 01-2-2V11a2 2 0 012-2h4a2 2 0 012 2V21A2 2 0 0128 23zM24 11V21h4V11zM18 23H12V21h6V17H14a2 2 0 01-2-2V11a2 2 0 012-2h6v2H14v4h4a2 2 0 012 2v4A2 2 0 0118 23zM2 11L5 11 5 21 2 21 2 23 10 23 10 21 7 21 7 11 10 11 10 9 2 9 2 11z"
1001
+ })), children);
1002
+ });
1003
+ if (process.env.NODE_ENV !== "production") {
1004
+ Iso.propTypes = iconPropTypesC5chbmyn.i;
1005
+ }
1006
+ const IsoFilled = /*#__PURE__*/React.forwardRef(function IsoFilled(_ref42, ref) {
1007
+ let {
1008
+ children,
1009
+ size = 16,
1010
+ ...rest
1011
+ } = _ref42;
1012
+ return /*#__PURE__*/React.createElement(Icon.default, {
1013
+ width: size,
1014
+ height: size,
1015
+ ref: ref,
1016
+ xmlns: "http://www.w3.org/2000/svg",
1017
+ viewBox: "0 0 32 32",
1018
+ fill: "currentColor",
1019
+ ...rest
1020
+ }, _path70 || (_path70 = /*#__PURE__*/React.createElement("path", {
1021
+ d: "M21 13H24V19H21z"
1022
+ })), _path71 || (_path71 = /*#__PURE__*/React.createElement("path", {
1023
+ 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,6ZM8,21H6V11H8Zm9-8H12v2h3a2,2,0,0,1,2,2v2a2,2,0,0,1-2,2H10V19h5V17H12a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h5Zm9,6a2,2,0,0,1-2,2H21a2,2,0,0,1-2-2V13a2,2,0,0,1,2-2h3a2,2,0,0,1,2,2Z"
1024
+ })), children);
1025
+ });
1026
+ if (process.env.NODE_ENV !== "production") {
1027
+ IsoFilled.propTypes = iconPropTypesC5chbmyn.i;
1028
+ }
1029
+ const IsoOutline = /*#__PURE__*/React.forwardRef(function IsoOutline(_ref43, ref) {
1030
+ let {
1031
+ children,
1032
+ size = 16,
1033
+ ...rest
1034
+ } = _ref43;
1035
+ return /*#__PURE__*/React.createElement(Icon.default, {
1036
+ width: size,
1037
+ height: size,
1038
+ ref: ref,
1039
+ xmlns: "http://www.w3.org/2000/svg",
1040
+ viewBox: "0 0 32 32",
1041
+ fill: "currentColor",
1042
+ ...rest
1043
+ }, _path72 || (_path72 = /*#__PURE__*/React.createElement("path", {
1044
+ d: "M24 21H21a2 2 0 01-2-2V13a2 2 0 012-2h3a2 2 0 012 2v6A2 2 0 0124 21zm-3-8v6h3V13zM15 21H10V19h5V17H12a2 2 0 01-2-2V13a2 2 0 012-2h5v2H12v2h3a2 2 0 012 2v2A2 2 0 0115 21zM6 11H8V21H6z"
1045
+ })), _path73 || (_path73 = /*#__PURE__*/React.createElement("path", {
1046
+ 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,6ZM4,24V8H28V24Z"
1047
+ })), children);
1048
+ });
1049
+ if (process.env.NODE_ENV !== "production") {
1050
+ IsoOutline.propTypes = iconPropTypesC5chbmyn.i;
1051
+ }
1052
+ const ItemDefinition = /*#__PURE__*/React.forwardRef(function ItemDefinition(_ref44, ref) {
1053
+ let {
1054
+ children,
1055
+ size = 16,
1056
+ ...rest
1057
+ } = _ref44;
1058
+ return /*#__PURE__*/React.createElement(Icon.default, {
1059
+ width: size,
1060
+ height: size,
1061
+ ref: ref,
1062
+ xmlns: "http://www.w3.org/2000/svg",
1063
+ viewBox: "0 0 32 32",
1064
+ fill: "currentColor",
1065
+ ...rest
1066
+ }, _path74 || (_path74 = /*#__PURE__*/React.createElement("path", {
1067
+ d: "M28,2H4c-1.1,0-2,.9-2,2v24c0,1.1.9,2,2,2h24c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2ZM28,28H4V4h24v24ZM10,22v-1.8232h1.582v-8.3574h-1.582v-1.8223h5.4512v1.8223h-1.5991v8.3574h1.5991v1.8232h-5.4512ZM18.0906,19.7129v-4.9487h-1.3242v-1.7539h.688c.6538,0,.8599-.3096.8599-.9287v-1.5171h1.9775v2.4458h1.8403v1.7539h-1.8403v5.4819h1.7026v1.7539h-1.582c-1.5132,0-2.3218-.8252-2.3218-2.2871Z"
1068
+ })), children);
1069
+ });
1070
+ if (process.env.NODE_ENV !== "production") {
1071
+ ItemDefinition.propTypes = iconPropTypesC5chbmyn.i;
1072
+ }
1073
+ const ItemUsage = /*#__PURE__*/React.forwardRef(function ItemUsage(_ref45, ref) {
1074
+ let {
1075
+ children,
1076
+ size = 16,
1077
+ ...rest
1078
+ } = _ref45;
1079
+ return /*#__PURE__*/React.createElement(Icon.default, {
1080
+ width: size,
1081
+ height: size,
1082
+ ref: ref,
1083
+ xmlns: "http://www.w3.org/2000/svg",
1084
+ viewBox: "0 0 32 32",
1085
+ fill: "currentColor",
1086
+ ...rest
1087
+ }, _path75 || (_path75 = /*#__PURE__*/React.createElement("path", {
1088
+ d: "M21,30h-10c-5,0-9-4-9-9v-10C2,6,6,2,11,2h10c5,0,9,4,9,9v10c0,5-4,9-9,9ZM11,4c-3.9,0-7,3.1-7,7v10c0,3.9,3.1,7,7,7h10c3.9,0,7-3.1,7-7v-10c0-3.9-3.1-7-7-7h-10ZM10,22v-1.8232h1.582v-8.3574h-1.582v-1.8223h5.4512v1.8223h-1.5991v8.3574h1.5991v1.8232h-5.4512ZM18.0906,19.7129v-4.9487h-1.3242v-1.7539h.688c.6538,0,.8599-.3096.8599-.9287v-1.5171h1.9775v2.4458h1.8403v1.7539h-1.8403v5.4819h1.7026v1.7539h-1.582c-1.5132,0-2.3218-.8252-2.3218-2.2871Z"
1089
+ })), children);
1090
+ });
1091
+ if (process.env.NODE_ENV !== "production") {
1092
+ ItemUsage.propTypes = iconPropTypesC5chbmyn.i;
1093
+ }
1094
+ const JobDaemon = /*#__PURE__*/React.forwardRef(function JobDaemon(_ref46, ref) {
1095
+ let {
1096
+ children,
1097
+ size = 16,
1098
+ ...rest
1099
+ } = _ref46;
1100
+ return /*#__PURE__*/React.createElement(Icon.default, {
1101
+ width: size,
1102
+ height: size,
1103
+ ref: ref,
1104
+ xmlns: "http://www.w3.org/2000/svg",
1105
+ viewBox: "0 0 32 32",
1106
+ fill: "currentColor",
1107
+ ...rest
1108
+ }, _path76 || (_path76 = /*#__PURE__*/React.createElement("path", {
1109
+ d: "M12,17h8c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2h-8c-1.1,0-2,.9-2,2v11c0,1.1.9,2,2,2ZM12,4h8v11h-8V4ZM8,19h5v2h-5c-1.1,0-2-.9-2-2v-11h2v11ZM4,23h5v2h-5c-1.1,0-2-.9-2-2v-11h2v11ZM27,20c-1.6,0-3.1,1.4-4,2.4-.9-1-2.4-2.4-4-2.4-2.6,0-4,2-4,4s1.4,4,4,4,3.1-1.4,4-2.4c.9,1,2.4,2.4,4,2.4,2.6,0,4-2,4-4s-1.4-4-4-4ZM19,26c-1.5,0-2-1.1-2-2s.5-2,2-2,2,1.1,2.8,2c-.7.9-1.9,2-2.8,2ZM27,26c-.9,0-2-1.1-2.8-2,.7-.9,1.9-2,2.8-2,1.5,0,2,1.1,2,2s-.5,2-2,2Z"
1110
+ })), children);
1111
+ });
1112
+ if (process.env.NODE_ENV !== "production") {
1113
+ JobDaemon.propTypes = iconPropTypesC5chbmyn.i;
1114
+ }
1115
+ const JobRun = /*#__PURE__*/React.forwardRef(function JobRun(_ref47, ref) {
1116
+ let {
1117
+ children,
1118
+ size = 16,
1119
+ ...rest
1120
+ } = _ref47;
1121
+ return /*#__PURE__*/React.createElement(Icon.default, {
1122
+ width: size,
1123
+ height: size,
1124
+ ref: ref,
1125
+ xmlns: "http://www.w3.org/2000/svg",
1126
+ viewBox: "0 0 32 32",
1127
+ fill: "currentColor",
1128
+ ...rest
1129
+ }, _path77 || (_path77 = /*#__PURE__*/React.createElement("path", {
1130
+ d: "M12,17h8c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2h-8c-1.1,0-2,.9-2,2v11c0,1.1.9,2,2,2ZM12,4h8v11h-8V4ZM8,19h6v2h-6c-1.1,0-2-.9-2-2v-11h2v11ZM4,23h6v2h-6c-1.1,0-2-.9-2-2v-11h2v11ZM30,24l-6,6-1.4-1.4,3.6-3.6h-9.2v-2h9.2l-3.6-3.6,1.4-1.4,6,6Z"
1131
+ })), children);
1132
+ });
1133
+ if (process.env.NODE_ENV !== "production") {
1134
+ JobRun.propTypes = iconPropTypesC5chbmyn.i;
1135
+ }
1136
+ const JoinFull = /*#__PURE__*/React.forwardRef(function JoinFull(_ref48, ref) {
1137
+ let {
1138
+ children,
1139
+ size = 16,
1140
+ ...rest
1141
+ } = _ref48;
1142
+ return /*#__PURE__*/React.createElement(Icon.default, {
1143
+ width: size,
1144
+ height: size,
1145
+ ref: ref,
1146
+ xmlns: "http://www.w3.org/2000/svg",
1147
+ viewBox: "0 0 32 32",
1148
+ fill: "currentColor",
1149
+ ...rest
1150
+ }, _path78 || (_path78 = /*#__PURE__*/React.createElement("path", {
1151
+ fill: "none",
1152
+ d: "M16,9.0752a7.9941,7.9941,0,0,1,0,13.85,7.9941,7.9941,0,0,1,0-13.85m0-2.2373a9.9953,9.9953,0,0,0,0,18.3242A9.9953,9.9953,0,0,0,16,6.8379Z",
1153
+ "data-icon-path": "inner-path"
1154
+ })), _path79 || (_path79 = /*#__PURE__*/React.createElement("path", {
1155
+ d: "M10,16a9.9976,9.9976,0,0,1,6-9.1621,10,10,0,1,0,0,18.3242A9.9976,9.9976,0,0,1,10,16Z"
1156
+ })), _path80 || (_path80 = /*#__PURE__*/React.createElement("path", {
1157
+ d: "M16,9.0752a7.9941,7.9941,0,0,0,0,13.85,7.9941,7.9941,0,0,0,0-13.85Z"
1158
+ })), _path81 || (_path81 = /*#__PURE__*/React.createElement("path", {
1159
+ d: "M20,6a9.9539,9.9539,0,0,0-4,.8379,9.9953,9.9953,0,0,1,0,18.3242A9.9988,9.9988,0,1,0,20,6Z"
1160
+ })), children);
1161
+ });
1162
+ if (process.env.NODE_ENV !== "production") {
1163
+ JoinFull.propTypes = iconPropTypesC5chbmyn.i;
1164
+ }
1165
+ const JoinInner = /*#__PURE__*/React.forwardRef(function JoinInner(_ref49, ref) {
1166
+ let {
1167
+ children,
1168
+ size = 16,
1169
+ ...rest
1170
+ } = _ref49;
1171
+ return /*#__PURE__*/React.createElement(Icon.default, {
1172
+ width: size,
1173
+ height: size,
1174
+ ref: ref,
1175
+ xmlns: "http://www.w3.org/2000/svg",
1176
+ viewBox: "0 0 32 32",
1177
+ fill: "currentColor",
1178
+ ...rest
1179
+ }, _path82 || (_path82 = /*#__PURE__*/React.createElement("path", {
1180
+ d: "M20,6a9.9355,9.9355,0,0,0-4,.8418A9.999,9.999,0,1,0,16,25.16,9.998,9.998,0,1,0,20,6ZM12,24A8,8,0,1,1,13.7573,8.2017a9.9734,9.9734,0,0,0,0,15.5986A7.9919,7.9919,0,0,1,12,24Zm8,0a7.9919,7.9919,0,0,1-1.7573-.2,9.9734,9.9734,0,0,0,0-15.5986A7.9972,7.9972,0,1,1,20,24Z"
1181
+ })), children);
1182
+ });
1183
+ if (process.env.NODE_ENV !== "production") {
1184
+ JoinInner.propTypes = iconPropTypesC5chbmyn.i;
1185
+ }
1186
+ const JoinInnerAlt = /*#__PURE__*/React.forwardRef(function JoinInnerAlt(_ref50, ref) {
1187
+ let {
1188
+ children,
1189
+ size = 16,
1190
+ ...rest
1191
+ } = _ref50;
1192
+ return /*#__PURE__*/React.createElement(Icon.default, {
1193
+ width: size,
1194
+ height: size,
1195
+ ref: ref,
1196
+ xmlns: "http://www.w3.org/2000/svg",
1197
+ viewBox: "0 0 32 32",
1198
+ fill: "currentColor",
1199
+ ...rest
1200
+ }, _path83 || (_path83 = /*#__PURE__*/React.createElement("path", {
1201
+ d: "M9.3,12.6l-1.3,1.5c-1.1-1-2-2.2-2.7-3.5l1.8-.9c.6,1.1,1.3,2.1,2.2,2.9h0ZM6.4,7.7c-.3-.9-.4-1.9-.4-2.8v-.9s-2,0-2,0v.9c0,1.1.2,2.3.5,3.4l1.9-.6h0ZM14.2,15c-1.2-.2-2.4-.7-3.4-1.3l-1,1.7c.3.2.7.4,1.1.6-.4.2-.7.4-1.1.6l1,1.7c1.1-.7,2.2-1.1,3.4-1.3v-1.9h0ZM5.3,21.4l1.8.9c.6-1.1,1.3-2.1,2.2-2.9l-1.3-1.5c-1.1,1-2,2.2-2.7,3.5h0ZM4,27.1v.9h2v-.9c0-1,.1-1.9.4-2.8l-1.9-.6c-.3,1.1-.5,2.2-.5,3.4h0ZM23,11l-1.4,1.4,2.6,2.6h-8.2s0,2,0,2h8.2s-2.6,2.6-2.6,2.6l1.4,1.4,5-5s-5-5-5-5Z"
1202
+ })), children);
1203
+ });
1204
+ if (process.env.NODE_ENV !== "production") {
1205
+ JoinInnerAlt.propTypes = iconPropTypesC5chbmyn.i;
1206
+ }
1207
+ const JoinLeft = /*#__PURE__*/React.forwardRef(function JoinLeft(_ref51, ref) {
1208
+ let {
1209
+ children,
1210
+ size = 16,
1211
+ ...rest
1212
+ } = _ref51;
1213
+ return /*#__PURE__*/React.createElement(Icon.default, {
1214
+ width: size,
1215
+ height: size,
1216
+ ref: ref,
1217
+ xmlns: "http://www.w3.org/2000/svg",
1218
+ viewBox: "0 0 32 32",
1219
+ fill: "currentColor",
1220
+ ...rest
1221
+ }, _path84 || (_path84 = /*#__PURE__*/React.createElement("path", {
1222
+ d: "M20,6a9.9272,9.9272,0,0,0-3.9968.8394,9.9758,9.9758,0,0,1,2.2451,1.36,8,8,0,1,1,0,15.6016,9.9758,9.9758,0,0,1-2.2451,1.36A9.9976,9.9976,0,1,0,20,6Z"
1223
+ })), _path85 || (_path85 = /*#__PURE__*/React.createElement("path", {
1224
+ d: "M12,16a8.01,8.01,0,0,0,6.2483,7.8008,9.9858,9.9858,0,0,0,0-15.6016A8.01,8.01,0,0,0,12,16Z"
1225
+ })), _path86 || (_path86 = /*#__PURE__*/React.createElement("path", {
1226
+ fill: "none",
1227
+ d: "M12,16a8.01,8.01,0,0,1,6.2483-7.8008,9.9758,9.9758,0,0,0-2.2451-1.36,9.9909,9.9909,0,0,0,0,18.3212,9.9758,9.9758,0,0,0,2.2451-1.36A8.01,8.01,0,0,1,12,16Z",
1228
+ "data-icon-path": "inner-path"
1229
+ })), _path87 || (_path87 = /*#__PURE__*/React.createElement("path", {
1230
+ d: "M10,16a10.0105,10.0105,0,0,1,6.0032-9.1606,10,10,0,1,0,0,18.3212A10.0105,10.0105,0,0,1,10,16Z"
1231
+ })), children);
1232
+ });
1233
+ if (process.env.NODE_ENV !== "production") {
1234
+ JoinLeft.propTypes = iconPropTypesC5chbmyn.i;
1235
+ }
1236
+ const JoinLeftOuter = /*#__PURE__*/React.forwardRef(function JoinLeftOuter(_ref52, ref) {
1237
+ let {
1238
+ children,
1239
+ size = 16,
1240
+ ...rest
1241
+ } = _ref52;
1242
+ return /*#__PURE__*/React.createElement(Icon.default, {
1243
+ width: size,
1244
+ height: size,
1245
+ ref: ref,
1246
+ xmlns: "http://www.w3.org/2000/svg",
1247
+ viewBox: "0 0 32 32",
1248
+ fill: "currentColor",
1249
+ ...rest
1250
+ }, _path88 || (_path88 = /*#__PURE__*/React.createElement("path", {
1251
+ d: "M28,16l-5,5-1.4-1.4,2.6-2.6h-10.2c-1.2.2-2.3.7-3.4,1.3l-1-1.7c.4-.3.8-.5,1.3-.7-4.1-1.8-6.9-5.6-6.9-10.1v-1.8s2,0,2,0v1.8c0,5.1,4.5,9.2,10,9.2h8.2l-2.6-2.6,1.4-1.4,5,5h0s0,0,0,0ZM4,27v1h2v-1c0-1,0-1.9.3-2.9l-1.9-.6c-.3,1.1-.5,2.3-.5,3.4h0ZM5.3,21.5l1.7.9c.6-1.1,1.3-2.1,2.2-3l-1.3-1.5c-1.1,1-2,2.2-2.6,3.6Z"
1252
+ })), children);
1253
+ });
1254
+ if (process.env.NODE_ENV !== "production") {
1255
+ JoinLeftOuter.propTypes = iconPropTypesC5chbmyn.i;
1256
+ }
1257
+ const JoinOuter = /*#__PURE__*/React.forwardRef(function JoinOuter(_ref53, ref) {
1258
+ let {
1259
+ children,
1260
+ size = 16,
1261
+ ...rest
1262
+ } = _ref53;
1263
+ return /*#__PURE__*/React.createElement(Icon.default, {
1264
+ width: size,
1265
+ height: size,
1266
+ ref: ref,
1267
+ xmlns: "http://www.w3.org/2000/svg",
1268
+ viewBox: "0 0 32 32",
1269
+ fill: "currentColor",
1270
+ ...rest
1271
+ }, _path89 || (_path89 = /*#__PURE__*/React.createElement("path", {
1272
+ d: "M20 6a9.9539 9.9539 0 00-4 .8379 9.9953 9.9953 0 010 18.3242A9.9988 9.9988 0 1020 6zM10 16a9.9976 9.9976 0 016-9.1621 10 10 0 100 18.3242A9.9976 9.9976 0 0110 16z"
1273
+ })), children);
1274
+ });
1275
+ if (process.env.NODE_ENV !== "production") {
1276
+ JoinOuter.propTypes = iconPropTypesC5chbmyn.i;
1277
+ }
1278
+ const JoinRight = /*#__PURE__*/React.forwardRef(function JoinRight(_ref54, ref) {
1279
+ let {
1280
+ children,
1281
+ size = 16,
1282
+ ...rest
1283
+ } = _ref54;
1284
+ return /*#__PURE__*/React.createElement(Icon.default, {
1285
+ width: size,
1286
+ height: size,
1287
+ ref: ref,
1288
+ xmlns: "http://www.w3.org/2000/svg",
1289
+ viewBox: "0 0 32 32",
1290
+ fill: "currentColor",
1291
+ ...rest
1292
+ }, _path90 || (_path90 = /*#__PURE__*/React.createElement("path", {
1293
+ d: "M20,6a9.95,9.95,0,0,0-4.0032.8394,9.9909,9.9909,0,0,1,0,18.3212A9.9988,9.9988,0,1,0,20,6Z"
1294
+ })), _path91 || (_path91 = /*#__PURE__*/React.createElement("path", {
1295
+ fill: "none",
1296
+ d: "M20,16a8.01,8.01,0,0,0-6.2483-7.8008,9.9758,9.9758,0,0,1,2.2451-1.36,9.9909,9.9909,0,0,1,0,18.3212,9.9758,9.9758,0,0,1-2.2451-1.36A8.01,8.01,0,0,0,20,16Z",
1297
+ "data-icon-path": "inner-path"
1298
+ })), _path92 || (_path92 = /*#__PURE__*/React.createElement("path", {
1299
+ d: "M10,16a9.9759,9.9759,0,0,0,3.7517,7.8008,7.9937,7.9937,0,0,0,0-15.6016A9.9759,9.9759,0,0,0,10,16Z"
1300
+ })), _path93 || (_path93 = /*#__PURE__*/React.createElement("path", {
1301
+ d: "M12,24A8,8,0,1,1,13.7517,8.1992a9.9758,9.9758,0,0,1,2.2451-1.36,10,10,0,1,0,0,18.3212,9.9758,9.9758,0,0,1-2.2451-1.36A7.9727,7.9727,0,0,1,12,24Z"
1302
+ })), children);
1303
+ });
1304
+ if (process.env.NODE_ENV !== "production") {
1305
+ JoinRight.propTypes = iconPropTypesC5chbmyn.i;
1306
+ }
1307
+ const JoinRightOuter = /*#__PURE__*/React.forwardRef(function JoinRightOuter(_ref55, ref) {
1308
+ let {
1309
+ children,
1310
+ size = 16,
1311
+ ...rest
1312
+ } = _ref55;
1313
+ return /*#__PURE__*/React.createElement(Icon.default, {
1314
+ width: size,
1315
+ height: size,
1316
+ ref: ref,
1317
+ xmlns: "http://www.w3.org/2000/svg",
1318
+ viewBox: "0 0 32 32",
1319
+ fill: "currentColor",
1320
+ ...rest
1321
+ }, _path94 || (_path94 = /*#__PURE__*/React.createElement("path", {
1322
+ d: "M28.01,16l-5,5-1.41-1.41,2.59-2.59h-6.09s-2.07,0-2.07,0c-5.52,0-10.02,4.11-10.02,9.17v1.83h-2v-1.83c0-4.45,2.82-8.29,6.89-10.09-.43-.21-.85-.43-1.26-.69l1.02-1.74c1.04.66,2.16,1.11,3.35,1.34h2s0,0,0,0h8.17l-2.59-2.59,1.41-1.41,5,5h0ZM6.36,7.81c-.26-.92-.39-1.88-.39-2.85v-.96h-1.95v.96c0,1.16.16,2.32.47,3.43l1.87-.57ZM7.9,14.04l1.31-1.51c-.9-.85-1.64-1.85-2.19-2.97l-1.74.92c.66,1.35,1.54,2.54,2.62,3.56Z"
1323
+ })), children);
1324
+ });
1325
+ if (process.env.NODE_ENV !== "production") {
1326
+ JoinRightOuter.propTypes = iconPropTypesC5chbmyn.i;
1327
+ }
1328
+ const JoinNode = /*#__PURE__*/React.forwardRef(function JoinNode(_ref56, ref) {
1329
+ let {
1330
+ children,
1331
+ size = 16,
1332
+ ...rest
1333
+ } = _ref56;
1334
+ return /*#__PURE__*/React.createElement(Icon.default, {
1335
+ width: size,
1336
+ height: size,
1337
+ ref: ref,
1338
+ xmlns: "http://www.w3.org/2000/svg",
1339
+ viewBox: "0 0 32 32",
1340
+ fill: "currentColor",
1341
+ ...rest
1342
+ }, _path95 || (_path95 = /*#__PURE__*/React.createElement("path", {
1343
+ strokeWidth: "0",
1344
+ d: "M2 9H6V11H2zM2 21H6V23H2zM25 11L23.5859 12.4141 26.1719 15 18 15 18 4 12 4 12 9 8 9 8 11 12 11 12 21 8 21 8 23 12 23 12 28 18 28 18 17 26.1719 17 23.5859 19.5859 25 21 30 16 25 11z"
1345
+ })), children);
1346
+ });
1347
+ if (process.env.NODE_ENV !== "production") {
1348
+ JoinNode.propTypes = iconPropTypesC5chbmyn.i;
1349
+ }
1350
+ const Jpg = /*#__PURE__*/React.forwardRef(function Jpg(_ref57, ref) {
1351
+ let {
1352
+ children,
1353
+ size = 16,
1354
+ ...rest
1355
+ } = _ref57;
1356
+ return /*#__PURE__*/React.createElement(Icon.default, {
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
+ }, _path96 || (_path96 = /*#__PURE__*/React.createElement("path", {
1365
+ d: "M30 23H24a2 2 0 01-2-2V11a2 2 0 012-2h6v2H24V21h4V17H26V15h4zM14 23H12V9h6a2 2 0 012 2v5a2 2 0 01-2 2H14zm0-7h4V11H14zM8 23H4a2 2 0 01-2-2V19H4v2H8V9h2V21A2 2 0 018 23z"
1366
+ })), children);
1367
+ });
1368
+ if (process.env.NODE_ENV !== "production") {
1369
+ Jpg.propTypes = iconPropTypesC5chbmyn.i;
1370
+ }
1371
+ const JsError = /*#__PURE__*/React.forwardRef(function JsError(_ref58, ref) {
1372
+ let {
1373
+ children,
1374
+ size = 16,
1375
+ ...rest
1376
+ } = _ref58;
1377
+ return /*#__PURE__*/React.createElement(Icon.default, {
1378
+ width: size,
1379
+ height: size,
1380
+ ref: ref,
1381
+ xmlns: "http://www.w3.org/2000/svg",
1382
+ viewBox: "0 0 32 32",
1383
+ fill: "currentColor",
1384
+ ...rest
1385
+ }, _path97 || (_path97 = /*#__PURE__*/React.createElement("path", {
1386
+ d: "M20.3335 30h-2.667c-.9189 0-1.6665-.7476-1.6665-1.6665v-2.3335h2v2h2v-8h2v8.3335c0 .9189-.7476 1.6665-1.6665 1.6665zM28.3335 30h-4.3335v-2h4v-2h-2c-1.103 0-2-.897-2-2v-2.3335c0-.9189.7476-1.6665 1.6665-1.6665h4.3335v2h-4v2h2c1.103 0 2 .897 2 2v2.3335c0 .9189-.7476 1.6665-1.6665 1.6665zM16 18c-.8284 0-1.5.6716-1.5 1.5s.6716 1.5 1.5 1.5 1.5-.6716 1.5-1.5-.6716-1.5-1.5-1.5h0zM15 7H17V16H15z"
1387
+ })), _path98 || (_path98 = /*#__PURE__*/React.createElement("path", {
1388
+ d: "m14,26h-4.5c-.3538,0-.6809-.1868-.8608-.4912L2.1392,14.5088c-.0928-.1569-.1392-.3329-.1392-.5088s.0464-.3519.1392-.5088L8.6392,2.4912c.1799-.3044.5071-.4912.8608-.4912h13c.3538,0,.6809.1868.8608.4912l6.5,11c.0928.1569.1392.3328.1392.5088s-.0464.3519-.1392.5088l-2,3.3845-1.7217-1.0173,1.6992-2.876-5.9089-10h-11.8589l-5.9089,10,5.9089,10h3.9294v2Z"
1389
+ })), children);
1390
+ });
1391
+ if (process.env.NODE_ENV !== "production") {
1392
+ JsError.propTypes = iconPropTypesC5chbmyn.i;
1393
+ }
1394
+ const Json = /*#__PURE__*/React.forwardRef(function Json(_ref59, ref) {
1395
+ let {
1396
+ children,
1397
+ size = 16,
1398
+ ...rest
1399
+ } = _ref59;
1400
+ return /*#__PURE__*/React.createElement(Icon.default, {
1401
+ width: size,
1402
+ height: size,
1403
+ ref: ref,
1404
+ xmlns: "http://www.w3.org/2000/svg",
1405
+ viewBox: "0 0 32 32",
1406
+ fill: "currentColor",
1407
+ ...rest
1408
+ }, _path99 || (_path99 = /*#__PURE__*/React.createElement("path", {
1409
+ d: "M31 11L31 21 29 21 27 15 27 21 25 21 25 11 27 11 29 17 29 11 31 11zM21.3335 21h-2.667A1.6684 1.6684 0 0117 19.3335v-6.667A1.6684 1.6684 0 0118.6665 11h2.667A1.6684 1.6684 0 0123 12.6665v6.667A1.6684 1.6684 0 0121.3335 21zM19 19h2V13H19zM13.3335 21H9V19h4V17H11a2.002 2.002 0 01-2-2V12.6665A1.6684 1.6684 0 0110.6665 11H15v2H11v2h2a2.002 2.002 0 012 2v2.3335A1.6684 1.6684 0 0113.3335 21zM5.3335 21H2.6665A1.6684 1.6684 0 011 19.3335V17H3v2H5V11H7v8.3335A1.6684 1.6684 0 015.3335 21z"
1410
+ })), children);
1411
+ });
1412
+ if (process.env.NODE_ENV !== "production") {
1413
+ Json.propTypes = iconPropTypesC5chbmyn.i;
1414
+ }
1415
+ const JsonReference = /*#__PURE__*/React.forwardRef(function JsonReference(_ref60, ref) {
1416
+ let {
1417
+ children,
1418
+ size = 16,
1419
+ ...rest
1420
+ } = _ref60;
1421
+ return /*#__PURE__*/React.createElement(Icon.default, {
1422
+ width: size,
1423
+ height: size,
1424
+ ref: ref,
1425
+ xmlns: "http://www.w3.org/2000/svg",
1426
+ viewBox: "0 0 32 32",
1427
+ fill: "currentColor",
1428
+ ...rest
1429
+ }, _path100 || (_path100 = /*#__PURE__*/React.createElement("path", {
1430
+ d: "M4 20L4 22 8.586 22 2 28.586 3.414 30 10 23.414 10 28 12 28 12 20 4 20zM29 12L27 6 25 6 25 16 27 16 27 10 29 16 31 16 31 6 29 6 29 12zM21.3335 6h-2.667A1.6683 1.6683 0 0017 7.6665v6.667A1.6684 1.6684 0 0018.6665 16h2.667A1.6683 1.6683 0 0023 14.3335V7.6665A1.6683 1.6683 0 0021.3335 6zM21 14H19V8h2zM9 7.6665V10a2.002 2.002 0 002 2h2v2H9v2h4.3335A1.6683 1.6683 0 0015 14.3335V12a2.002 2.002 0 00-2-2H11V8h4V6H10.6665A1.6683 1.6683 0 009 7.6665zM5 14H3V12H1v2.3335A1.6684 1.6684 0 002.6665 16h2.667A1.6683 1.6683 0 007 14.3335V6H5z"
1431
+ })), children);
1432
+ });
1433
+ if (process.env.NODE_ENV !== "production") {
1434
+ JsonReference.propTypes = iconPropTypesC5chbmyn.i;
1435
+ }
1436
+ const JumpLink = /*#__PURE__*/React.forwardRef(function JumpLink(_ref61, ref) {
1437
+ let {
1438
+ children,
1439
+ size = 16,
1440
+ ...rest
1441
+ } = _ref61;
1442
+ return /*#__PURE__*/React.createElement(Icon.default, {
1443
+ width: size,
1444
+ height: size,
1445
+ ref: ref,
1446
+ xmlns: "http://www.w3.org/2000/svg",
1447
+ viewBox: "0 0 32 32",
1448
+ fill: "currentColor",
1449
+ ...rest
1450
+ }, _path101 || (_path101 = /*#__PURE__*/React.createElement("path", {
1451
+ d: "M13.4141,17.5859,18,22.1719V8H8V6H18a2.0024,2.0024,0,0,1,2,2V22.1719l4.5859-4.586L26,19l-7,7-7-7Z"
1452
+ })), children);
1453
+ });
1454
+ if (process.env.NODE_ENV !== "production") {
1455
+ JumpLink.propTypes = iconPropTypesC5chbmyn.i;
1456
+ }
1457
+ const KeepDry = /*#__PURE__*/React.forwardRef(function KeepDry(_ref62, ref) {
1458
+ let {
1459
+ children,
1460
+ size = 16,
1461
+ ...rest
1462
+ } = _ref62;
1463
+ return /*#__PURE__*/React.createElement(Icon.default, {
1464
+ width: size,
1465
+ height: size,
1466
+ ref: ref,
1467
+ xmlns: "http://www.w3.org/2000/svg",
1468
+ viewBox: "0 0 32 32",
1469
+ fill: "currentColor",
1470
+ ...rest
1471
+ }, _path102 || (_path102 = /*#__PURE__*/React.createElement("path", {
1472
+ d: "M25,10a3.8978,3.8978,0,0,1-4-3.777,3.9017,3.9017,0,0,1,.6533-2.0639L24.17.4141a1.0381,1.0381,0,0,1,1.6592,0L28.3154,4.11A3.9693,3.9693,0,0,1,29,6.223,3.8978,3.8978,0,0,1,25,10Zm0-7.2368L23.3438,5.2257A1.89,1.89,0,0,0,23,6.223a2.014,2.014,0,0,0,4,0,1.98,1.98,0,0,0-.375-1.0466Z"
1473
+ })), _path103 || (_path103 = /*#__PURE__*/React.createElement("path", {
1474
+ d: "M29.9854,15.83a13.9726,13.9726,0,0,0-1.8147-4.8323L26.4329,12.001a12.092,12.092,0,0,1,1.07,2.2124A5.4079,5.4079,0,0,0,26,14a6.5439,6.5439,0,0,0-3.939,1.333,14.5177,14.5177,0,0,0-3.0456-8.9341A13.8858,13.8858,0,0,0,17,4.4014V2H15V4.0464A14.3808,14.3808,0,0,0,2.0146,15.83,1,1,0,0,0,3.51,16.86,4.8551,4.8551,0,0,1,6,16a4.8653,4.8653,0,0,1,4.1406,2.5107,1.0393,1.0393,0,0,0,1.7188,0A5.02,5.02,0,0,1,15,16.1255V25.5a2.5,2.5,0,0,1-5,0V25H8v.5a4.5,4.5,0,0,0,9,0V16.1255a5.02,5.02,0,0,1,3.1406,2.3852.9994.9994,0,0,0,1.7188,0A4.8653,4.8653,0,0,1,26,16a4.8551,4.8551,0,0,1,2.49.86,1,1,0,0,0,1.4957-1.03ZM9.939,15.333A6.5439,6.5439,0,0,0,6,14a5.4079,5.4079,0,0,0-1.5034.2134,12.4413,12.4413,0,0,1,8.488-7.8145A14.5157,14.5157,0,0,0,9.939,15.333ZM16,14a6.5526,6.5526,0,0,0-4.0564,1.4307c.0378-2.22.6089-6.49,4.0564-9.1763,3.4307,2.6768,4.009,6.9487,4.0522,9.1728A6.552,6.552,0,0,0,16,14Z"
1475
+ })), children);
1476
+ });
1477
+ if (process.env.NODE_ENV !== "production") {
1478
+ KeepDry.propTypes = iconPropTypesC5chbmyn.i;
1479
+ }
1480
+ const Key = /*#__PURE__*/React.forwardRef(function Key(_ref63, ref) {
1481
+ let {
1482
+ children,
1483
+ size = 16,
1484
+ ...rest
1485
+ } = _ref63;
1486
+ return /*#__PURE__*/React.createElement(Icon.default, {
1487
+ width: size,
1488
+ height: size,
1489
+ ref: ref,
1490
+ xmlns: "http://www.w3.org/2000/svg",
1491
+ viewBox: "0 0 32 32",
1492
+ fill: "currentColor",
1493
+ ...rest
1494
+ }, _path104 || (_path104 = /*#__PURE__*/React.createElement("path", {
1495
+ strokeWidth: "0",
1496
+ d: "M30 9L28.0001 9 26 16 24.0001 9 22 9 25 17.9996 25 23 27 23 27 18 27.0001 18 30 9zM21 11L21 9 13 9 13 23 21 23 21 21 15 21 15 17 20 17 20 15 15 15 15 11 21 11zM11 9L8.8941 9 5 15.5527 5 9 3 9 3 23 5 23 5 18.7062 5.9277 17.2208 8.8941 23 11 23 7.1093 15.4308 11 9z"
1497
+ })), children);
1498
+ });
1499
+ if (process.env.NODE_ENV !== "production") {
1500
+ Key.propTypes = iconPropTypesC5chbmyn.i;
1501
+ }
1502
+ const Keyboard = /*#__PURE__*/React.forwardRef(function Keyboard(_ref64, ref) {
1503
+ let {
1504
+ children,
1505
+ size = 16,
1506
+ ...rest
1507
+ } = _ref64;
1508
+ return /*#__PURE__*/React.createElement(Icon.default, {
1509
+ width: size,
1510
+ height: size,
1511
+ ref: ref,
1512
+ xmlns: "http://www.w3.org/2000/svg",
1513
+ viewBox: "0 0 32 32",
1514
+ fill: "currentColor",
1515
+ ...rest
1516
+ }, _path105 || (_path105 = /*#__PURE__*/React.createElement("path", {
1517
+ d: "M28,26H4a2,2,0,0,1-2-2V10A2,2,0,0,1,4,8H28a2,2,0,0,1,2,2V24A2,2,0,0,1,28,26ZM4,10V24H28V10Z"
1518
+ })), _path106 || (_path106 = /*#__PURE__*/React.createElement("path", {
1519
+ d: "M10 20H21V22H10zM6 12H8V14H6zM10 12H12V14H10zM14 12H16V14H14zM18 12H20V14H18zM6 20H8V22H6zM6 16H8V18H6zM10 16H12V18H10zM14 16H16V18H14zM22 12H26V14H22zM22 16H26V18H22zM18 16H20V18H18zM23 20H26V22H23z"
1520
+ })), children);
1521
+ });
1522
+ if (process.env.NODE_ENV !== "production") {
1523
+ Keyboard.propTypes = iconPropTypesC5chbmyn.i;
1524
+ }
1525
+ const KeyboardOff = /*#__PURE__*/React.forwardRef(function KeyboardOff(_ref65, ref) {
1526
+ let {
1527
+ children,
1528
+ size = 16,
1529
+ ...rest
1530
+ } = _ref65;
1531
+ return /*#__PURE__*/React.createElement(Icon.default, {
1532
+ width: size,
1533
+ height: size,
1534
+ ref: ref,
1535
+ xmlns: "http://www.w3.org/2000/svg",
1536
+ viewBox: "0 0 32 32",
1537
+ fill: "currentColor",
1538
+ ...rest
1539
+ }, _path107 || (_path107 = /*#__PURE__*/React.createElement("path", {
1540
+ d: "M6 12H8V14H6zM18 12H20V14H18zM6 20H8V22H6zM6 16H8V18H6zM10 16H12V18H10zM22 12H26V14H22zM22 16H26V18H22z"
1541
+ })), _path108 || (_path108 = /*#__PURE__*/React.createElement("path", {
1542
+ d: "M14.2 10H28v13h2V10c0-1.1-.9-2-2-2H12.2L14.2 10zM30 28.6L3.4 2 2 3.4 6.6 8H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h20.6l4 4L30 28.6zM4 24V10h4.6l2 2H10v2h2.6l2 2H14v2h2.6l2 2H10v2h10.6l2 2H4z"
1543
+ })), children);
1544
+ });
1545
+ if (process.env.NODE_ENV !== "production") {
1546
+ KeyboardOff.propTypes = iconPropTypesC5chbmyn.i;
1547
+ }
1548
+ const KioskDevice = /*#__PURE__*/React.forwardRef(function KioskDevice(_ref66, ref) {
1549
+ let {
1550
+ children,
1551
+ size = 16,
1552
+ ...rest
1553
+ } = _ref66;
1554
+ return /*#__PURE__*/React.createElement(Icon.default, {
1555
+ width: size,
1556
+ height: size,
1557
+ ref: ref,
1558
+ xmlns: "http://www.w3.org/2000/svg",
1559
+ viewBox: "0 0 32 32",
1560
+ fill: "currentColor",
1561
+ ...rest
1562
+ }, _path109 || (_path109 = /*#__PURE__*/React.createElement("path", {
1563
+ d: "M26,19c1.1,0,2-.9,2-2V4c0-1.1-.9-2-2-2H6c-1.1,0-2,.9-2,2v13c0,1.1.9,2,2,2h7v9H4v2h24v-2h-9v-9h7ZM17,28h-2v-9h2v9ZM6,17V4h20v13H6ZM16,13c-.55,0-1,.45-1,1s.45,1,1,1,1-.45,1-1-.45-1-1-1Z"
1564
+ })), children);
1565
+ });
1566
+ if (process.env.NODE_ENV !== "production") {
1567
+ KioskDevice.propTypes = iconPropTypesC5chbmyn.i;
1568
+ }
1569
+ const Kubelet = /*#__PURE__*/React.forwardRef(function Kubelet(_ref67, ref) {
1570
+ let {
1571
+ children,
1572
+ size = 16,
1573
+ ...rest
1574
+ } = _ref67;
1575
+ return /*#__PURE__*/React.createElement(Icon.default, {
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
+ }, _path110 || (_path110 = /*#__PURE__*/React.createElement("path", {
1584
+ strokeWidth: "0",
1585
+ d: "m20.0444,27.2942l-3.0825-10.018-1.0132,3.04c-.1361.4084-.5183.6838-.9487.6838h-6s0-2,0-2h5.2793s1.772-5.3162,1.772-5.3162c.1307-.4123.5162-.6902.9487-.6838.4374.0046.8225.2891.9555.7058l3.0088,9.7783,1.0742-3.7589c.1227-.4293.5151-.7252.9615-.7252h5s0,2,0,2h-4.2456s-1.7933,6.2747-1.7933,6.2747c-.1216.4256-.5085.7207-.9511.7253h-.01c-.4389,0-.8265-.2863-.9556-.7058Z"
1586
+ })), _path111 || (_path111 = /*#__PURE__*/React.createElement("path", {
1587
+ strokeWidth: "0",
1588
+ d: "m16,28H6c-1.1028,0-2-.8972-2-2V6c0-1.1028.8972-2,2-2h20c1.1028,0,2,.8972,2,2v9h-2V6H6v20h10v2Z"
1589
+ })), children);
1590
+ });
1591
+ if (process.env.NODE_ENV !== "production") {
1592
+ Kubelet.propTypes = iconPropTypesC5chbmyn.i;
1593
+ }
1594
+ const Kubernetes = /*#__PURE__*/React.forwardRef(function Kubernetes(_ref68, ref) {
1595
+ let {
1596
+ children,
1597
+ size = 16,
1598
+ ...rest
1599
+ } = _ref68;
1600
+ if (process.env.NODE_ENV !== "production") {
1601
+ if (!didWarnAboutDeprecation["Kubernetes"]) {
1602
+ didWarnAboutDeprecation["Kubernetes"] = true;
1603
+ console.warn("The current kubernetes icon has been replaced by logo--kubernetes. As a result, the Kubernetes component will be removed in the next major version of @carbon/icons-react.");
1604
+ }
1605
+ }
1606
+ return /*#__PURE__*/React.createElement(Icon.default, {
1607
+ width: size,
1608
+ height: size,
1609
+ ref: ref,
1610
+ xmlns: "http://www.w3.org/2000/svg",
1611
+ viewBox: "0 0 32 32",
1612
+ fill: "currentColor",
1613
+ ...rest
1614
+ }, _path112 || (_path112 = /*#__PURE__*/React.createElement("path", {
1615
+ d: "M29.2227,17.9639,25.9194,17.21a9.7843,9.7843,0,0,0-1.5249-6.6245l2.54-2.0254L25.6875,6.9961,23.1482,9.0205A9.97,9.97,0,0,0,17,6.0508V3H15V6.0508a9.97,9.97,0,0,0-6.1482,2.97L6.3125,6.9961,5.0654,8.56l2.54,2.0254A9.7843,9.7843,0,0,0,6.0806,17.21l-3.3033.7544.4454,1.9492L6.52,19.1606a10.0359,10.0359,0,0,0,4.2688,5.358l-1.33,2.7631,1.8018.8677L12.59,25.3882a9.8113,9.8113,0,0,0,6.8208,0L20.74,28.1494l1.8018-.8682-1.33-2.7626a10.0359,10.0359,0,0,0,4.2688-5.358l3.2973.7525ZM24,16c0,.2573-.0148.5112-.0386.7627l-5-1.1416a2.9664,2.9664,0,0,0-.1376-.5942L22.82,11.84A7.9392,7.9392,0,0,1,24,16Zm-9,0a1,1,0,1,1,1,1A1.0009,1.0009,0,0,1,15,16Zm6.5758-5.7256L17.58,13.4609a3.0028,3.0028,0,0,0-.58-.2768V8.0693A7.9762,7.9762,0,0,1,21.5758,10.2744ZM15,8.0693v5.1148a3.0028,3.0028,0,0,0-.58.2768l-3.9956-3.1865A7.9762,7.9762,0,0,1,15,8.0693ZM8,16a7.9392,7.9392,0,0,1,1.18-4.16l3.9962,3.1866a2.9664,2.9664,0,0,0-.1376.5942l-5,1.1416C8.0148,16.5112,8,16.2573,8,16Zm.4835,2.7124,4.9752-1.1362a3.0132,3.0132,0,0,0,.4146.5366L11.6594,22.71A8.031,8.031,0,0,1,8.4835,18.7124ZM16,24a7.9679,7.9679,0,0,1-2.54-.42l2.2206-4.6123A2.9988,2.9988,0,0,0,16,19a2.9988,2.9988,0,0,0,.319-.0322L18.54,23.58A7.9546,7.9546,0,0,1,16,24Zm4.3406-1.29-2.2139-4.5976a3.0132,3.0132,0,0,0,.4146-.5366l4.9752,1.1362A8.031,8.031,0,0,1,20.3406,22.71Z"
1616
+ })), children);
1617
+ });
1618
+ if (process.env.NODE_ENV !== "production") {
1619
+ Kubernetes.propTypes = iconPropTypesC5chbmyn.i;
1620
+ }
1621
+ const KubernetesControlPlaneNode = /*#__PURE__*/React.forwardRef(function KubernetesControlPlaneNode(_ref69, ref) {
1622
+ let {
1623
+ children,
1624
+ size = 16,
1625
+ ...rest
1626
+ } = _ref69;
1627
+ return /*#__PURE__*/React.createElement(Icon.default, {
1628
+ width: size,
1629
+ height: size,
1630
+ ref: ref,
1631
+ xmlns: "http://www.w3.org/2000/svg",
1632
+ viewBox: "0 0 32 32",
1633
+ fill: "currentColor",
1634
+ ...rest
1635
+ }, _path113 || (_path113 = /*#__PURE__*/React.createElement("path", {
1636
+ d: "M22.951 20h-2.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157 2H8.951v2h6.1843c.4141 1.1611 1.5137 2 2.8157 2s2.4016-.8389 2.8157-2h2.1843v-2Zm-5 2c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1Zm5-10h-6.1843c-.4141-1.1611-1.5137-2-2.8157-2s-2.4016.8389-2.8157 2H8.951v2h2.1843c.4141 1.1611 1.5137 2 2.8157 2s2.4016-.8389 2.8157-2h6.1843v-2Zm-9 2c-.5515 0-1-.4487-1-1s.4485-1 1-1 1 .4487 1 1-.4485 1-1 1Z"
1637
+ })), _path114 || (_path114 = /*#__PURE__*/React.createElement("path", {
1638
+ d: "m29.8993 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5133 2.059 16.2321 2 15.9511 2s-.5623.0591-.8242.1777L5.7197 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8367 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.0653 28H10.837l-6.886-8.5586 2.593-11.187L15.951 4l9.407 4.2549 2.593 11.1865L21.0652 28Z"
1639
+ })), _path115 || (_path115 = /*#__PURE__*/React.createElement("path", {
1640
+ fill: "none",
1641
+ d: "M0 0h32v32H0z"
1642
+ })), children);
1643
+ });
1644
+ if (process.env.NODE_ENV !== "production") {
1645
+ KubernetesControlPlaneNode.propTypes = iconPropTypesC5chbmyn.i;
1646
+ }
1647
+ const KubernetesIpAddress = /*#__PURE__*/React.forwardRef(function KubernetesIpAddress(_ref70, ref) {
1648
+ let {
1649
+ children,
1650
+ size = 16,
1651
+ ...rest
1652
+ } = _ref70;
1653
+ return /*#__PURE__*/React.createElement(Icon.default, {
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
+ }, _circle0 || (_circle0 = /*#__PURE__*/React.createElement("circle", {
1662
+ cx: "16",
1663
+ cy: "9",
1664
+ r: "2"
1665
+ })), _circle1 || (_circle1 = /*#__PURE__*/React.createElement("circle", {
1666
+ cx: "16",
1667
+ cy: "16",
1668
+ r: "2"
1669
+ })), _path116 || (_path116 = /*#__PURE__*/React.createElement("path", {
1670
+ d: "m18.8157,26c-.302-.8472-.9685-1.5137-1.8157-1.8159v-2.1841h3c.2969,0,.5781-.1318.7683-.3599l5-6c.1982-.2378.2751-.5547.2078-.8569l-2-9c-.0696-.3145-.2864-.5757-.5823-.7021l-7-3c-.1257-.0542-.2598-.0811-.3938-.0811s-.2681.0269-.3938.0811l-7.0015,3c-.2959.1265-.5127.3877-.5825.7021l-1.9985,9c-.0671.3027.0098.6191.208.8569l5,6c.1902.228.4714.3599.7683.3599h3v2.1846c-.8472.3018-1.5137.9683-1.8157,1.8154H4v2h9.1843c.4141,1.1611,1.5137,2,2.8157,2s2.4016-.8389,2.8157-2h9.1843v-2h-9.1843Zm-10.7329-11.2627l1.7808-8.02,6.1365-2.6294,6.135,2.6294,1.7822,8.02-4.3855,5.2627h-7.0635l-4.3855-5.2627Zm7.9172,13.2627c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"
1671
+ })), children);
1672
+ });
1673
+ if (process.env.NODE_ENV !== "production") {
1674
+ KubernetesIpAddress.propTypes = iconPropTypesC5chbmyn.i;
1675
+ }
1676
+ const KubernetesOperator = /*#__PURE__*/React.forwardRef(function KubernetesOperator(_ref71, ref) {
1677
+ let {
1678
+ children,
1679
+ size = 16,
1680
+ ...rest
1681
+ } = _ref71;
1682
+ return /*#__PURE__*/React.createElement(Icon.default, {
1683
+ width: size,
1684
+ height: size,
1685
+ ref: ref,
1686
+ xmlns: "http://www.w3.org/2000/svg",
1687
+ viewBox: "0 0 32 32",
1688
+ fill: "currentColor",
1689
+ ...rest
1690
+ }, _path117 || (_path117 = /*#__PURE__*/React.createElement("path", {
1691
+ strokeWidth: "0",
1692
+ d: "m19,21h-6c-1.1028,0-2-.8972-2-2v-6c0-1.1028.8972-2,2-2h6c1.1028,0,2,.8972,2,2v6c0,1.1028-.8972,2-2,2Zm-6-8v6h6v-6h-6Z"
1693
+ })), _path118 || (_path118 = /*#__PURE__*/React.createElement("path", {
1694
+ strokeWidth: "0",
1695
+ d: "m30,16c0-7.7197-6.2803-14-14-14S2,8.2803,2,16s6.2803,14,14,14c2.7773,0,5.417-.7959,7.7012-2.3081.3948.1914.8315.3081,1.2988.3081,1.6543,0,3-1.3457,3-3,0-.4673-.1167-.9043-.3079-1.2988,1.5122-2.2842,2.3079-4.9238,2.3079-7.7012Zm-26,0c0-6.6167,5.3833-12,12-12s12,5.3833,12,12c0,2.248-.6152,4.3877-1.7744,6.2681-.375-.1689-.7881-.2681-1.2256-.2681-1.6543,0-3,1.3457-3,3,0,.4375.0991.8506.2681,1.2256-1.8801,1.1592-4.0198,1.7744-6.2681,1.7744-6.6167,0-12-5.3833-12-12Zm21,10c-.5515,0-1-.4487-1-1s.4485-1,1-1,1,.4487,1,1-.4485,1-1,1Z"
1696
+ })), children);
1697
+ });
1698
+ if (process.env.NODE_ENV !== "production") {
1699
+ KubernetesOperator.propTypes = iconPropTypesC5chbmyn.i;
1700
+ }
1701
+ const KubernetesPod = /*#__PURE__*/React.forwardRef(function KubernetesPod(_ref72, ref) {
1702
+ let {
1703
+ children,
1704
+ size = 16,
1705
+ ...rest
1706
+ } = _ref72;
1707
+ return /*#__PURE__*/React.createElement(Icon.default, {
1708
+ width: size,
1709
+ height: size,
1710
+ ref: ref,
1711
+ xmlns: "http://www.w3.org/2000/svg",
1712
+ viewBox: "0 0 32 32",
1713
+ fill: "currentColor",
1714
+ ...rest
1715
+ }, _path119 || (_path119 = /*#__PURE__*/React.createElement("path", {
1716
+ d: "m22.5046,11.6368l-5.9883-3.5c-.1594-.0933-.3381-.1387-.5164-.1367-.1699.002-.3394.0474-.4915.1357l-6.0117,3.5c-.3076.1792-.4968.5083-.4968.8643v7c0,.356.1892.6851.4968.8643l6.0117,3.5c.1555.0903.3176.1357.4915.1357.1743,0,.3604-.0454.5164-.1367l5.9883-3.5c.3069-.1792.4954-.5078.4954-.8633v-7c0-.3555-.1885-.6841-.4954-.8633Zm-6.4939-1.479l4.0076,2.3423-4.0076,2.3423-4.0232-2.3423,4.0232-2.3423Zm-5.0107,4.0815l4,2.3291v4.6855l-4-2.3291v-4.6855Zm6,7.0249v-4.6836l4-2.3379v4.6836l-4,2.3379Z"
1717
+ })), _path120 || (_path120 = /*#__PURE__*/React.createElement("path", {
1718
+ d: "m16,31c-.1741,0-.3481-.0454-.5039-.1362l-12-7c-.3071-.1792-.4961-.5081-.4961-.8638v-14c0-.3557.189-.6846.4961-.8638L15.4961,1.1362c.1558-.0908.3298-.1362.5039-.1362s.3481.0454.5039.1362l11,6.4166-1.0078,1.7275-10.4961-6.1227-11,6.4166v12.8513l11,6.4166,11-6.4166v-7.4257h2v8c0,.3557-.189.6846-.4961.8638l-12,7c-.1558.0908-.3298.1362-.5039.1362Z"
1719
+ })), children);
1720
+ });
1721
+ if (process.env.NODE_ENV !== "production") {
1722
+ KubernetesPod.propTypes = iconPropTypesC5chbmyn.i;
1723
+ }
1724
+ const KubernetesWorkerNode = /*#__PURE__*/React.forwardRef(function KubernetesWorkerNode(_ref73, ref) {
1725
+ let {
1726
+ children,
1727
+ size = 16,
1728
+ ...rest
1729
+ } = _ref73;
1730
+ return /*#__PURE__*/React.createElement(Icon.default, {
1731
+ width: size,
1732
+ height: size,
1733
+ ref: ref,
1734
+ xmlns: "http://www.w3.org/2000/svg",
1735
+ viewBox: "0 0 32 32",
1736
+ fill: "currentColor",
1737
+ ...rest
1738
+ }, _path121 || (_path121 = /*#__PURE__*/React.createElement("path", {
1739
+ d: "M23 18v-2h-2.1c-.1-.6-.4-1.2-.7-1.8l1.5-1.5-1.4-1.4-1.5 1.5c-.5-.3-1.1-.6-1.8-.7V10h-2v2.1c-.6.1-1.2.4-1.8.7l-1.5-1.5-1.4 1.4 1.5 1.5c-.3.5-.6 1.1-.7 1.8H9v2h2.1c.1.6.4 1.2.7 1.8l-1.5 1.5 1.4 1.4 1.5-1.5c.5.3 1.1.6 1.8.7V24h2v-2.1c.6-.1 1.2-.4 1.8-.7l1.5 1.5 1.4-1.4-1.5-1.5c.3-.5.6-1.1.7-1.8H23Zm-7 2c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3Z"
1740
+ })), _path122 || (_path122 = /*#__PURE__*/React.createElement("path", {
1741
+ d: "m29.9483 18.9897-2.593-11.1865a2 2 0 0 0-1.124-1.3711l-9.407-4.2544C16.5623 2.059 16.2811 2 16.0001 2s-.5623.0591-.8242.1777L5.7687 6.4321a2 2 0 0 0-1.124 1.3711l-2.593 11.1865a2.0008 2.0008 0 0 0 .3899 1.7056l6.886 8.5586A2.0001 2.0001 0 0 0 10.8857 30h10.2286a2.0001 2.0001 0 0 0 1.5581-.7461l6.886-8.5586a2.0008 2.0008 0 0 0 .3899-1.7056ZM21.1143 28H10.886L4 19.4414l2.593-11.187L16 4l9.407 4.2549L28 19.4414 21.1142 28Z"
1742
+ })), _path123 || (_path123 = /*#__PURE__*/React.createElement("path", {
1743
+ fill: "none",
1744
+ d: "M0 0h32v32H0z"
1745
+ })), children);
1746
+ });
1747
+ if (process.env.NODE_ENV !== "production") {
1748
+ KubernetesWorkerNode.propTypes = iconPropTypesC5chbmyn.i;
1749
+ }
1750
+ const Label = /*#__PURE__*/React.forwardRef(function Label(_ref74, ref) {
1751
+ let {
1752
+ children,
1753
+ size = 16,
1754
+ ...rest
1755
+ } = _ref74;
1756
+ return /*#__PURE__*/React.createElement(Icon.default, {
1757
+ width: size,
1758
+ height: size,
1759
+ ref: ref,
1760
+ xmlns: "http://www.w3.org/2000/svg",
1761
+ viewBox: "0 0 32 32",
1762
+ fill: "currentColor",
1763
+ ...rest
1764
+ }, _path124 || (_path124 = /*#__PURE__*/React.createElement("path", {
1765
+ d: "M23 13H18v2h5v2H19a2 2 0 00-2 2v2a2 2 0 002 2h6V15A2.0023 2.0023 0 0023 13zm0 8H19V19h4zM13 9H9a2.002 2.002 0 00-2 2V23H9V18h4v5h2V11A2.002 2.002 0 0013 9zM9 16V11h4v5z"
1766
+ })), _path125 || (_path125 = /*#__PURE__*/React.createElement("path", {
1767
+ d: "M28,28H4a2.0021,2.0021,0,0,1-2-2V6A2.0021,2.0021,0,0,1,4,4H28a2.0021,2.0021,0,0,1,2,2V26A2.0021,2.0021,0,0,1,28,28ZM4,6V26H28V6Z"
1768
+ })), children);
1769
+ });
1770
+ if (process.env.NODE_ENV !== "production") {
1771
+ Label.propTypes = iconPropTypesC5chbmyn.i;
1772
+ }
1773
+ const Language = /*#__PURE__*/React.forwardRef(function Language(_ref75, ref) {
1774
+ let {
1775
+ children,
1776
+ size = 16,
1777
+ ...rest
1778
+ } = _ref75;
1779
+ return /*#__PURE__*/React.createElement(Icon.default, {
1780
+ width: size,
1781
+ height: size,
1782
+ ref: ref,
1783
+ xmlns: "http://www.w3.org/2000/svg",
1784
+ viewBox: "0 0 32 32",
1785
+ fill: "currentColor",
1786
+ ...rest
1787
+ }, _path126 || (_path126 = /*#__PURE__*/React.createElement("path", {
1788
+ d: "M18 19H24V21H18zM18 15H30V17H18zM18 11H30V13H18zM14 21V19H9V17H7v2H2v2h8.2148a8.5914 8.5914 0 01-2.2159 3.9771A9.2731 9.2731 0 016.5521 23H4.3334a10.8553 10.8553 0 002.1451 3.2966A14.6584 14.6584 0 013 28.127L3.7021 30a16.42 16.42 0 004.2907-2.3362A16.4883 16.4883 0 0012.2979 30L13 28.127A14.664 14.664 0 019.5228 26.3 10.3132 10.3132 0 0012.2516 21zM11.1666 13H13.333L8.75 2H6.5832L2 13H4.1664L5 11h5.3335zM5.8331 9L7.6665 4.6 9.5 9z"
1789
+ })), children);
1790
+ });
1791
+ if (process.env.NODE_ENV !== "production") {
1792
+ Language.propTypes = iconPropTypesC5chbmyn.i;
1793
+ }
1794
+ const Laptop = /*#__PURE__*/React.forwardRef(function Laptop(_ref76, ref) {
1795
+ let {
1796
+ children,
1797
+ size = 16,
1798
+ ...rest
1799
+ } = _ref76;
1800
+ return /*#__PURE__*/React.createElement(Icon.default, {
1801
+ width: size,
1802
+ height: size,
1803
+ ref: ref,
1804
+ xmlns: "http://www.w3.org/2000/svg",
1805
+ viewBox: "0 0 32 32",
1806
+ fill: "currentColor",
1807
+ ...rest
1808
+ }, _path127 || (_path127 = /*#__PURE__*/React.createElement("path", {
1809
+ d: "M26,24H6a2.0023,2.0023,0,0,1-2-2V8A2.002,2.002,0,0,1,6,6H26a2.0023,2.0023,0,0,1,2,2V22A2.0027,2.0027,0,0,1,26,24ZM6,8V22H26V8Z",
1810
+ transform: "translate(0 .005)"
1811
+ })), _path128 || (_path128 = /*#__PURE__*/React.createElement("path", {
1812
+ d: "M2 26.005H30V28.005H2z"
1813
+ })), children);
1814
+ });
1815
+ if (process.env.NODE_ENV !== "production") {
1816
+ Laptop.propTypes = iconPropTypesC5chbmyn.i;
1817
+ }
1818
+ const Lasso = /*#__PURE__*/React.forwardRef(function Lasso(_ref77, ref) {
1819
+ let {
1820
+ children,
1821
+ size = 16,
1822
+ ...rest
1823
+ } = _ref77;
1824
+ return /*#__PURE__*/React.createElement(Icon.default, {
1825
+ width: size,
1826
+ height: size,
1827
+ ref: ref,
1828
+ xmlns: "http://www.w3.org/2000/svg",
1829
+ viewBox: "0 0 32 32",
1830
+ fill: "currentColor",
1831
+ ...rest
1832
+ }, _path129 || (_path129 = /*#__PURE__*/React.createElement("path", {
1833
+ d: "M20,2H12A9.9842,9.9842,0,0,0,7.0349,20.6553C7.0249,20.7705,7,20.8818,7,21a3.9929,3.9929,0,0,0,2.9106,3.83A4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,3.9966,3.9966,0,0,0,2.93-2.88H20A10,10,0,0,0,20,2ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm9-3H14.8579a3.9841,3.9841,0,0,0-7.15-1.2637A7.99,7.99,0,0,1,12,4h8a8,8,0,0,1,0,16Z"
1834
+ })), children);
1835
+ });
1836
+ if (process.env.NODE_ENV !== "production") {
1837
+ Lasso.propTypes = iconPropTypesC5chbmyn.i;
1838
+ }
1839
+ const LassoPolygon = /*#__PURE__*/React.forwardRef(function LassoPolygon(_ref78, ref) {
1840
+ let {
1841
+ children,
1842
+ size = 16,
1843
+ ...rest
1844
+ } = _ref78;
1845
+ return /*#__PURE__*/React.createElement(Icon.default, {
1846
+ width: size,
1847
+ height: size,
1848
+ ref: ref,
1849
+ xmlns: "http://www.w3.org/2000/svg",
1850
+ viewBox: "0 0 32 32",
1851
+ fill: "currentColor",
1852
+ ...rest
1853
+ }, _path130 || (_path130 = /*#__PURE__*/React.createElement("path", {
1854
+ d: "M29.6245,2.2193a1.0005,1.0005,0,0,0-1.0972-.1006L17.9353,7.8,3.366,2.0694a1,1,0,0,0-1.28,1.3369l6.4353,14.479A3.965,3.965,0,0,0,9.9106,24.83,4.0049,4.0049,0,0,1,6,28H4v2H6a6.0044,6.0044,0,0,0,5.928-5.12,4.0021,4.0021,0,0,0,2.93-2.88H23.24a2,2,0,0,0,1.9273-1.4649L29.9634,3.2676A1,1,0,0,0,29.6245,2.2193ZM11,23a2,2,0,1,1,2-2A2.0025,2.0025,0,0,1,11,23Zm12.24-3H14.8579a3.897,3.897,0,0,0-4.5117-2.9336L4.905,4.8238,18.0647,10,27.41,4.9878Z"
1855
+ })), children);
1856
+ });
1857
+ if (process.env.NODE_ENV !== "production") {
1858
+ LassoPolygon.propTypes = iconPropTypesC5chbmyn.i;
1859
+ }
1860
+ const Launch = /*#__PURE__*/React.forwardRef(function Launch(_ref79, ref) {
1861
+ let {
1862
+ children,
1863
+ size = 16,
1864
+ ...rest
1865
+ } = _ref79;
1866
+ if (size === 16 || size === "16" || size === "16px") {
1867
+ return /*#__PURE__*/React.createElement(Icon.default, {
1868
+ width: size,
1869
+ height: size,
1870
+ ref: ref,
1871
+ xmlns: "http://www.w3.org/2000/svg",
1872
+ viewBox: "0 0 16 16",
1873
+ fill: "currentColor",
1874
+ ...rest
1875
+ }, _path131 || (_path131 = /*#__PURE__*/React.createElement("path", {
1876
+ d: "M13,14H3c-0.6,0-1-0.4-1-1V3c0-0.6,0.4-1,1-1h5v1H3v10h10V8h1v5C14,13.6,13.6,14,13,14z"
1877
+ })), _path132 || (_path132 = /*#__PURE__*/React.createElement("path", {
1878
+ d: "M10 1L10 2 13.3 2 9 6.3 9.7 7 14 2.7 14 6 15 6 15 1z"
1879
+ })), children);
1880
+ }
1881
+ return /*#__PURE__*/React.createElement(Icon.default, {
1882
+ width: size,
1883
+ height: size,
1884
+ ref: ref,
1885
+ xmlns: "http://www.w3.org/2000/svg",
1886
+ viewBox: "0 0 32 32",
1887
+ fill: "currentColor",
1888
+ ...rest
1889
+ }, _path133 || (_path133 = /*#__PURE__*/React.createElement("path", {
1890
+ d: "M26,28H6a2.0027,2.0027,0,0,1-2-2V6A2.0027,2.0027,0,0,1,6,4H16V6H6V26H26V16h2V26A2.0027,2.0027,0,0,1,26,28Z"
1891
+ })), _path134 || (_path134 = /*#__PURE__*/React.createElement("path", {
1892
+ d: "M20 2L20 4 26.586 4 18 12.586 19.414 14 28 5.414 28 12 30 12 30 2 20 2z"
1893
+ })), children);
1894
+ });
1895
+ if (process.env.NODE_ENV !== "production") {
1896
+ Launch.propTypes = iconPropTypesC5chbmyn.i;
1897
+ }
1898
+ const WatsonHealthLaunchStudy_1 = /*#__PURE__*/React.forwardRef(function WatsonHealthLaunchStudy_1(_ref80, ref) {
1899
+ let {
1900
+ children,
1901
+ size = 16,
1902
+ ...rest
1903
+ } = _ref80;
1904
+ return /*#__PURE__*/React.createElement(Icon.default, {
1905
+ width: size,
1906
+ height: size,
1907
+ ref: ref,
1908
+ xmlns: "http://www.w3.org/2000/svg",
1909
+ viewBox: "0 0 32 32",
1910
+ fill: "currentColor",
1911
+ ...rest
1912
+ }, _circle10 || (_circle10 = /*#__PURE__*/React.createElement("circle", {
1913
+ cx: "23",
1914
+ cy: "25",
1915
+ r: "1"
1916
+ })), _path135 || (_path135 = /*#__PURE__*/React.createElement("path", {
1917
+ d: "M26 22v6H6V22H26m0-2H6a2 2 0 00-2 2v6a2 2 0 002 2H26a2 2 0 002-2V22a2 2 0 00-2-2zM20.59 10.59L17 14.17 17 2 15 2 15 14.17 11.41 10.59 10 12 16 18 22 12 20.59 10.59z"
1918
+ })), _path136 || (_path136 = /*#__PURE__*/React.createElement("path", {
1919
+ d: "M8 24H20V26H8z"
1920
+ })), children);
1921
+ });
1922
+ if (process.env.NODE_ENV !== "production") {
1923
+ WatsonHealthLaunchStudy_1.propTypes = iconPropTypesC5chbmyn.i;
1924
+ }
1925
+ const WatsonHealthLaunchStudy_2 = /*#__PURE__*/React.forwardRef(function WatsonHealthLaunchStudy_2(_ref81, ref) {
1926
+ let {
1927
+ children,
1928
+ size = 16,
1929
+ ...rest
1930
+ } = _ref81;
1931
+ return /*#__PURE__*/React.createElement(Icon.default, {
1932
+ width: size,
1933
+ height: size,
1934
+ ref: ref,
1935
+ xmlns: "http://www.w3.org/2000/svg",
1936
+ viewBox: "0 0 32 32",
1937
+ fill: "currentColor",
1938
+ ...rest
1939
+ }, _circle11 || (_circle11 = /*#__PURE__*/React.createElement("circle", {
1940
+ cx: "23",
1941
+ cy: "7",
1942
+ r: "1"
1943
+ })), _path137 || (_path137 = /*#__PURE__*/React.createElement("path", {
1944
+ d: "M26 4v6H6V4H26m0-2H6A2 2 0 004 4v6a2 2 0 002 2H26a2 2 0 002-2V4a2 2 0 00-2-2zM20.59 21.41L17 17.83 17 30 15 30 15 17.83 11.41 21.41 10 20 16 14 22 20 20.59 21.41z"
1945
+ })), _path138 || (_path138 = /*#__PURE__*/React.createElement("path", {
1946
+ d: "M8 6H20V8H8z"
1947
+ })), children);
1948
+ });
1949
+ if (process.env.NODE_ENV !== "production") {
1950
+ WatsonHealthLaunchStudy_2.propTypes = iconPropTypesC5chbmyn.i;
1951
+ }
1952
+ const WatsonHealthLaunchStudy_3 = /*#__PURE__*/React.forwardRef(function WatsonHealthLaunchStudy_3(_ref82, ref) {
1953
+ let {
1954
+ children,
1955
+ size = 16,
1956
+ ...rest
1957
+ } = _ref82;
1958
+ return /*#__PURE__*/React.createElement(Icon.default, {
1959
+ width: size,
1960
+ height: size,
1961
+ ref: ref,
1962
+ xmlns: "http://www.w3.org/2000/svg",
1963
+ viewBox: "0 0 32 32",
1964
+ fill: "currentColor",
1965
+ ...rest
1966
+ }, _circle12 || (_circle12 = /*#__PURE__*/React.createElement("circle", {
1967
+ cx: "23",
1968
+ cy: "25",
1969
+ r: "1"
1970
+ })), _path139 || (_path139 = /*#__PURE__*/React.createElement("path", {
1971
+ d: "M26 22v6H6V22H26m0-2H6a2 2 0 00-2 2v6a2 2 0 002 2H26a2 2 0 002-2V22a2 2 0 00-2-2zM20.59 4.59L17 8.17 17 0 15 0 15 8.17 11.41 4.59 10 6 16 12 22 6 20.59 4.59z"
1972
+ })), _path140 || (_path140 = /*#__PURE__*/React.createElement("path", {
1973
+ d: "M20.59 10.59L16 15.16 11.41 10.59 10 12 16 18 22 12 20.59 10.59zM8 24H20V26H8z"
1974
+ })), children);
1975
+ });
1976
+ if (process.env.NODE_ENV !== "production") {
1977
+ WatsonHealthLaunchStudy_3.propTypes = iconPropTypesC5chbmyn.i;
1978
+ }
1979
+ const Layers = /*#__PURE__*/React.forwardRef(function Layers(_ref83, ref) {
1980
+ let {
1981
+ children,
1982
+ size = 16,
1983
+ ...rest
1984
+ } = _ref83;
1985
+ return /*#__PURE__*/React.createElement(Icon.default, {
1986
+ width: size,
1987
+ height: size,
1988
+ ref: ref,
1989
+ xmlns: "http://www.w3.org/2000/svg",
1990
+ viewBox: "0 0 32 32",
1991
+ fill: "currentColor",
1992
+ ...rest
1993
+ }, _path141 || (_path141 = /*#__PURE__*/React.createElement("path", {
1994
+ d: "M16,24a.9967.9967,0,0,1-.4741-.12l-13-7L3.4741,15.12,16,21.8643,28.5259,15.12l.9482,1.7607-13,7A.9967.9967,0,0,1,16,24Z"
1995
+ })), _path142 || (_path142 = /*#__PURE__*/React.createElement("path", {
1996
+ d: "M16 30a.9967.9967 0 01-.4741-.12l-13-7L3.4741 21.12 16 27.8643 28.5259 21.12l.9482 1.7607-13 7A.9967.9967 0 0116 30zM16 18a.9967.9967 0 01-.4741-.12l-13-7a1 1 0 010-1.7607l13-7a.9982.9982 0 01.9482 0l13 7a1 1 0 010 1.7607l-13 7A.9967.9967 0 0116 18zM5.1094 10L16 15.8643 26.8906 10 16 4.1358z"
1997
+ })), children);
1998
+ });
1999
+ if (process.env.NODE_ENV !== "production") {
2000
+ Layers.propTypes = iconPropTypesC5chbmyn.i;
2001
+ }
2002
+ const LayersExternal = /*#__PURE__*/React.forwardRef(function LayersExternal(_ref84, ref) {
2003
+ let {
2004
+ children,
2005
+ size = 16,
2006
+ ...rest
2007
+ } = _ref84;
2008
+ return /*#__PURE__*/React.createElement(Icon.default, {
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
+ }, _path143 || (_path143 = /*#__PURE__*/React.createElement("path", {
2017
+ strokeWidth: "0",
2018
+ d: "m16,24c-.1631,0-.3262-.0398-.4741-.1196l-13-7,.9482-1.7607,12.5259,6.7446,12.5259-6.7446.9482,1.7607-13,7c-.1479.0798-.311.1196-.4741.1196Z"
2019
+ })), _path144 || (_path144 = /*#__PURE__*/React.createElement("path", {
2020
+ strokeWidth: "0",
2021
+ d: "M16 30c-.1631 0-.3262-.0398-.4741-.1196l-13-7 .9482-1.7607 12.5259 6.7446 12.5259-6.7446.9482 1.7607-13 7c-.1479.0798-.311.1196-.4741.1196zM29.4741 9.1196L16 1.8643v2.2715l10.8906 5.8643-10.8906 5.8643v2.2715l13.4741-7.2554c.324-.1743.5259-.5122.5259-.8804s-.2019-.7061-.5259-.8804zM4.4141 9.4141l3.5859-3.586v8.1719s2 0 2 0V5.8281s3.5859 3.5859 3.5859 3.5859l1.4141-1.414L9 2 3 8l1.4141 1.4141z"
2022
+ })), children);
2023
+ });
2024
+ if (process.env.NODE_ENV !== "production") {
2025
+ LayersExternal.propTypes = iconPropTypesC5chbmyn.i;
2026
+ }
2027
+ const Legend = /*#__PURE__*/React.forwardRef(function Legend(_ref85, ref) {
2028
+ let {
2029
+ children,
2030
+ size = 16,
2031
+ ...rest
2032
+ } = _ref85;
2033
+ return /*#__PURE__*/React.createElement(Icon.default, {
2034
+ width: size,
2035
+ height: size,
2036
+ ref: ref,
2037
+ xmlns: "http://www.w3.org/2000/svg",
2038
+ viewBox: "0 0 32 32",
2039
+ fill: "currentColor",
2040
+ ...rest
2041
+ }, _path145 || (_path145 = /*#__PURE__*/React.createElement("path", {
2042
+ d: "M16 22H30V24H16z"
2043
+ })), _rect || (_rect = /*#__PURE__*/React.createElement("rect", {
2044
+ width: "6",
2045
+ height: "6",
2046
+ x: "4",
2047
+ y: "20",
2048
+ rx: "1"
2049
+ })), _path146 || (_path146 = /*#__PURE__*/React.createElement("path", {
2050
+ d: "M16 8H30V10H16zM9.5 12h-5a.5.5 0 01-.4473-.7236l2.5-5.0224a.5206.5206 0 01.8945 0l2.5 5.0225A.5.5 0 019.5 12z"
2051
+ })), children);
2052
+ });
2053
+ if (process.env.NODE_ENV !== "production") {
2054
+ Legend.propTypes = iconPropTypesC5chbmyn.i;
2055
+ }
2056
+ const LetterAa = /*#__PURE__*/React.forwardRef(function LetterAa(_ref86, ref) {
2057
+ let {
2058
+ children,
2059
+ size = 16,
2060
+ ...rest
2061
+ } = _ref86;
2062
+ return /*#__PURE__*/React.createElement(Icon.default, {
2063
+ width: size,
2064
+ height: size,
2065
+ ref: ref,
2066
+ xmlns: "http://www.w3.org/2000/svg",
2067
+ viewBox: "0 0 32 32",
2068
+ fill: "currentColor",
2069
+ ...rest
2070
+ }, _path147 || (_path147 = /*#__PURE__*/React.createElement("path", {
2071
+ d: "M23 13H18v2h5v2H19a2 2 0 00-2 2v2a2 2 0 002 2h6V15A2 2 0 0023 13zm0 8H19V19h4zM13 9H9a2 2 0 00-2 2V23H9V18h4v5h2V11A2 2 0 0013 9zM9 16V11h4v5z"
2072
+ })), children);
2073
+ });
2074
+ if (process.env.NODE_ENV !== "production") {
2075
+ LetterAa.propTypes = iconPropTypesC5chbmyn.i;
2076
+ }
2077
+ const LetterBb = /*#__PURE__*/React.forwardRef(function LetterBb(_ref87, ref) {
2078
+ let {
2079
+ children,
2080
+ size = 16,
2081
+ ...rest
2082
+ } = _ref87;
2083
+ return /*#__PURE__*/React.createElement(Icon.default, {
2084
+ width: size,
2085
+ height: size,
2086
+ ref: ref,
2087
+ xmlns: "http://www.w3.org/2000/svg",
2088
+ viewBox: "0 0 32 32",
2089
+ fill: "currentColor",
2090
+ ...rest
2091
+ }, _path148 || (_path148 = /*#__PURE__*/React.createElement("path", {
2092
+ d: "M23 13H19V9H17V23h6a2 2 0 002-2V15A2 2 0 0023 13zm-4 8V15h4v6zM15 12a3 3 0 00-3-3H7V23h5a3 3 0 003-3V18a3 3 0 00-.78-2A3 3 0 0015 14zM9 11h3a1 1 0 011 1v2a1 1 0 01-1 1H9zm4 9a1 1 0 01-1 1H9V17h3a1 1 0 011 1z"
2093
+ })), children);
2094
+ });
2095
+ if (process.env.NODE_ENV !== "production") {
2096
+ LetterBb.propTypes = iconPropTypesC5chbmyn.i;
2097
+ }
2098
+ const LetterCc = /*#__PURE__*/React.forwardRef(function LetterCc(_ref88, ref) {
2099
+ let {
2100
+ children,
2101
+ size = 16,
2102
+ ...rest
2103
+ } = _ref88;
2104
+ return /*#__PURE__*/React.createElement(Icon.default, {
2105
+ width: size,
2106
+ height: size,
2107
+ ref: ref,
2108
+ xmlns: "http://www.w3.org/2000/svg",
2109
+ viewBox: "0 0 32 32",
2110
+ fill: "currentColor",
2111
+ ...rest
2112
+ }, _path149 || (_path149 = /*#__PURE__*/React.createElement("path", {
2113
+ d: "M24 23H19a2 2 0 01-2-2V15a2 2 0 012-2h5v2H19v6h5zM15 23H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9V21h6z"
2114
+ })), children);
2115
+ });
2116
+ if (process.env.NODE_ENV !== "production") {
2117
+ LetterCc.propTypes = iconPropTypesC5chbmyn.i;
2118
+ }
2119
+ const LetterDd = /*#__PURE__*/React.forwardRef(function LetterDd(_ref89, ref) {
2120
+ let {
2121
+ children,
2122
+ size = 16,
2123
+ ...rest
2124
+ } = _ref89;
2125
+ return /*#__PURE__*/React.createElement(Icon.default, {
2126
+ width: size,
2127
+ height: size,
2128
+ ref: ref,
2129
+ xmlns: "http://www.w3.org/2000/svg",
2130
+ viewBox: "0 0 32 32",
2131
+ fill: "currentColor",
2132
+ ...rest
2133
+ }, _path150 || (_path150 = /*#__PURE__*/React.createElement("path", {
2134
+ d: "M23 9v4H19a2 2 0 00-2 2v6a2 2 0 002 2h6V9zm-4 6h4v6H19zM11 23H7V9h4a4 4 0 014 4v6A4 4 0 0111 23zM9 21h2a2 2 0 002-2V13a2 2 0 00-2-2H9z"
2135
+ })), children);
2136
+ });
2137
+ if (process.env.NODE_ENV !== "production") {
2138
+ LetterDd.propTypes = iconPropTypesC5chbmyn.i;
2139
+ }
2140
+ const LetterEe = /*#__PURE__*/React.forwardRef(function LetterEe(_ref90, ref) {
2141
+ let {
2142
+ children,
2143
+ size = 16,
2144
+ ...rest
2145
+ } = _ref90;
2146
+ return /*#__PURE__*/React.createElement(Icon.default, {
2147
+ width: size,
2148
+ height: size,
2149
+ ref: ref,
2150
+ xmlns: "http://www.w3.org/2000/svg",
2151
+ viewBox: "0 0 32 32",
2152
+ fill: "currentColor",
2153
+ ...rest
2154
+ }, _path151 || (_path151 = /*#__PURE__*/React.createElement("path", {
2155
+ d: "M25 19V15a2.0023 2.0023 0 00-2-2H19a2.0023 2.0023 0 00-2 2v6a2.0077 2.0077 0 002 2h5V21H19V19zm-6-4h4v2H19zM15 11L15 9 7 9 7 23 15 23 15 21 9 21 9 17 14 17 14 15 9 15 9 11 15 11z"
2156
+ })), children);
2157
+ });
2158
+ if (process.env.NODE_ENV !== "production") {
2159
+ LetterEe.propTypes = iconPropTypesC5chbmyn.i;
2160
+ }
2161
+ const LetterFf = /*#__PURE__*/React.forwardRef(function LetterFf(_ref91, ref) {
2162
+ let {
2163
+ children,
2164
+ size = 16,
2165
+ ...rest
2166
+ } = _ref91;
2167
+ return /*#__PURE__*/React.createElement(Icon.default, {
2168
+ width: size,
2169
+ height: size,
2170
+ ref: ref,
2171
+ xmlns: "http://www.w3.org/2000/svg",
2172
+ viewBox: "0 0 32 32",
2173
+ fill: "currentColor",
2174
+ ...rest
2175
+ }, _path152 || (_path152 = /*#__PURE__*/React.createElement("path", {
2176
+ d: "M16 11L16 9 8 9 8 23 10 23 10 17 15 17 15 15 10 15 10 11 16 11zM24 11V9H21a2 2 0 00-2 2v2H17v2h2v8h2V15h3V13H21V11z"
2177
+ })), children);
2178
+ });
2179
+ if (process.env.NODE_ENV !== "production") {
2180
+ LetterFf.propTypes = iconPropTypesC5chbmyn.i;
2181
+ }
2182
+ const LetterGg = /*#__PURE__*/React.forwardRef(function LetterGg(_ref92, ref) {
2183
+ let {
2184
+ children,
2185
+ size = 16,
2186
+ ...rest
2187
+ } = _ref92;
2188
+ return /*#__PURE__*/React.createElement(Icon.default, {
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
+ }, _path153 || (_path153 = /*#__PURE__*/React.createElement("path", {
2197
+ d: "M19 13a2 2 0 00-2 2v6a2 2 0 002 2h4v2H18v2h5a2 2 0 002-2V13zm4 8H19V15h4zM15 23H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9V21h4V17H11V15h4z"
2198
+ })), children);
2199
+ });
2200
+ if (process.env.NODE_ENV !== "production") {
2201
+ LetterGg.propTypes = iconPropTypesC5chbmyn.i;
2202
+ }
2203
+ const LetterHh = /*#__PURE__*/React.forwardRef(function LetterHh(_ref93, ref) {
2204
+ let {
2205
+ children,
2206
+ size = 16,
2207
+ ...rest
2208
+ } = _ref93;
2209
+ return /*#__PURE__*/React.createElement(Icon.default, {
2210
+ width: size,
2211
+ height: size,
2212
+ ref: ref,
2213
+ xmlns: "http://www.w3.org/2000/svg",
2214
+ viewBox: "0 0 32 32",
2215
+ fill: "currentColor",
2216
+ ...rest
2217
+ }, _path154 || (_path154 = /*#__PURE__*/React.createElement("path", {
2218
+ d: "M13 9L13 15 9 15 9 9 7 9 7 23 9 23 9 17 13 17 13 23 15 23 15 9 13 9zM23 13H19V9H17V23h2V15h4v8h2V15A2 2 0 0023 13z"
2219
+ })), children);
2220
+ });
2221
+ if (process.env.NODE_ENV !== "production") {
2222
+ LetterHh.propTypes = iconPropTypesC5chbmyn.i;
2223
+ }
2224
+ const LetterIi = /*#__PURE__*/React.forwardRef(function LetterIi(_ref94, ref) {
2225
+ let {
2226
+ children,
2227
+ size = 16,
2228
+ ...rest
2229
+ } = _ref94;
2230
+ return /*#__PURE__*/React.createElement(Icon.default, {
2231
+ width: size,
2232
+ height: size,
2233
+ ref: ref,
2234
+ xmlns: "http://www.w3.org/2000/svg",
2235
+ viewBox: "0 0 32 32",
2236
+ fill: "currentColor",
2237
+ ...rest
2238
+ }, _path155 || (_path155 = /*#__PURE__*/React.createElement("path", {
2239
+ d: "M10 11L13 11 13 21 10 21 10 23 18 23 18 21 15 21 15 11 18 11 18 9 10 9 10 11zM20 13H22V23H20zM20 9H22V11H20z"
2240
+ })), children);
2241
+ });
2242
+ if (process.env.NODE_ENV !== "production") {
2243
+ LetterIi.propTypes = iconPropTypesC5chbmyn.i;
2244
+ }
2245
+ const LetterJj = /*#__PURE__*/React.forwardRef(function LetterJj(_ref95, ref) {
2246
+ let {
2247
+ children,
2248
+ size = 16,
2249
+ ...rest
2250
+ } = _ref95;
2251
+ return /*#__PURE__*/React.createElement(Icon.default, {
2252
+ width: size,
2253
+ height: size,
2254
+ ref: ref,
2255
+ xmlns: "http://www.w3.org/2000/svg",
2256
+ viewBox: "0 0 32 32",
2257
+ fill: "currentColor",
2258
+ ...rest
2259
+ }, _path156 || (_path156 = /*#__PURE__*/React.createElement("path", {
2260
+ d: "M20 9H22V11H20zM20 25H17v2h3a2 2 0 002-2V13H20zM14 23H10a2 2 0 01-2-2V19h2v2h4V9h2V21A2 2 0 0114 23z"
2261
+ })), children);
2262
+ });
2263
+ if (process.env.NODE_ENV !== "production") {
2264
+ LetterJj.propTypes = iconPropTypesC5chbmyn.i;
2265
+ }
2266
+ const LetterKk = /*#__PURE__*/React.forwardRef(function LetterKk(_ref96, ref) {
2267
+ let {
2268
+ children,
2269
+ size = 16,
2270
+ ...rest
2271
+ } = _ref96;
2272
+ return /*#__PURE__*/React.createElement(Icon.default, {
2273
+ width: size,
2274
+ height: size,
2275
+ ref: ref,
2276
+ xmlns: "http://www.w3.org/2000/svg",
2277
+ viewBox: "0 0 32 32",
2278
+ fill: "currentColor",
2279
+ ...rest
2280
+ }, _path157 || (_path157 = /*#__PURE__*/React.createElement("path", {
2281
+ d: "M15 9L12.89 9 9 15.55 9 9 7 9 7 23 9 23 9 18.71 9.93 17.22 12.89 23 15 23 11.11 15.43 15 9zM22.78 23L25 23 21.22 17 25 13 22.76 13 19 17.17 19 9 17 9 17 23 19 23 19 19.25 19.96 18.21 22.78 23z"
2282
+ })), children);
2283
+ });
2284
+ if (process.env.NODE_ENV !== "production") {
2285
+ LetterKk.propTypes = iconPropTypesC5chbmyn.i;
2286
+ }
2287
+ const LetterLl = /*#__PURE__*/React.forwardRef(function LetterLl(_ref97, ref) {
2288
+ let {
2289
+ children,
2290
+ size = 16,
2291
+ ...rest
2292
+ } = _ref97;
2293
+ return /*#__PURE__*/React.createElement(Icon.default, {
2294
+ width: size,
2295
+ height: size,
2296
+ ref: ref,
2297
+ xmlns: "http://www.w3.org/2000/svg",
2298
+ viewBox: "0 0 32 32",
2299
+ fill: "currentColor",
2300
+ ...rest
2301
+ }, _path158 || (_path158 = /*#__PURE__*/React.createElement("path", {
2302
+ d: "M11 21L11 9 9 9 9 23 17 23 17 21 11 21zM23 23H21a2 2 0 01-2-2V9h2V21h2z"
2303
+ })), children);
2304
+ });
2305
+ if (process.env.NODE_ENV !== "production") {
2306
+ LetterLl.propTypes = iconPropTypesC5chbmyn.i;
2307
+ }
2308
+ const LetterMm = /*#__PURE__*/React.forwardRef(function LetterMm(_ref98, ref) {
2309
+ let {
2310
+ children,
2311
+ size = 16,
2312
+ ...rest
2313
+ } = _ref98;
2314
+ return /*#__PURE__*/React.createElement(Icon.default, {
2315
+ width: size,
2316
+ height: size,
2317
+ ref: ref,
2318
+ xmlns: "http://www.w3.org/2000/svg",
2319
+ viewBox: "0 0 32 32",
2320
+ fill: "currentColor",
2321
+ ...rest
2322
+ }, _path159 || (_path159 = /*#__PURE__*/React.createElement("path", {
2323
+ d: "M24 13H16V23h2V15h2v8h2V15h2v8h2V15A2 2 0 0024 13zM12 9L10.48 14 10 15.98 9.54 14 8 9 6 9 6 23 8 23 8 15 7.84 13 8.42 15 10 19.63 11.58 15 12.16 13 12 15 12 23 14 23 14 9 12 9z"
2324
+ })), children);
2325
+ });
2326
+ if (process.env.NODE_ENV !== "production") {
2327
+ LetterMm.propTypes = iconPropTypesC5chbmyn.i;
2328
+ }
2329
+ const LetterNn = /*#__PURE__*/React.forwardRef(function LetterNn(_ref99, ref) {
2330
+ let {
2331
+ children,
2332
+ size = 16,
2333
+ ...rest
2334
+ } = _ref99;
2335
+ return /*#__PURE__*/React.createElement(Icon.default, {
2336
+ width: size,
2337
+ height: size,
2338
+ ref: ref,
2339
+ xmlns: "http://www.w3.org/2000/svg",
2340
+ viewBox: "0 0 32 32",
2341
+ fill: "currentColor",
2342
+ ...rest
2343
+ }, _path160 || (_path160 = /*#__PURE__*/React.createElement("path", {
2344
+ d: "M25 23H23V15H19v8H17V13h6a2 2 0 012 2zM13 19L9.32 9 7 9 7 23 9 23 9 13 12.68 23 15 23 15 9 13 9 13 19z"
2345
+ })), children);
2346
+ });
2347
+ if (process.env.NODE_ENV !== "production") {
2348
+ LetterNn.propTypes = iconPropTypesC5chbmyn.i;
2349
+ }
2350
+ const LetterOo = /*#__PURE__*/React.forwardRef(function LetterOo(_ref100, ref) {
2351
+ let {
2352
+ children,
2353
+ size = 16,
2354
+ ...rest
2355
+ } = _ref100;
2356
+ return /*#__PURE__*/React.createElement(Icon.default, {
2357
+ width: size,
2358
+ height: size,
2359
+ ref: ref,
2360
+ xmlns: "http://www.w3.org/2000/svg",
2361
+ viewBox: "0 0 32 32",
2362
+ fill: "currentColor",
2363
+ ...rest
2364
+ }, _path161 || (_path161 = /*#__PURE__*/React.createElement("path", {
2365
+ d: "M23 23H19a2 2 0 01-2-2V15a2 2 0 012-2h4a2 2 0 012 2v6A2 2 0 0123 23zm-4-8v6h4V15zM13 23H9a2 2 0 01-2-2V11A2 2 0 019 9h4a2 2 0 012 2V21A2 2 0 0113 23zM9 11V21h4V11z"
2366
+ })), children);
2367
+ });
2368
+ if (process.env.NODE_ENV !== "production") {
2369
+ LetterOo.propTypes = iconPropTypesC5chbmyn.i;
2370
+ }
2371
+ const LetterPp = /*#__PURE__*/React.forwardRef(function LetterPp(_ref101, ref) {
2372
+ let {
2373
+ children,
2374
+ size = 16,
2375
+ ...rest
2376
+ } = _ref101;
2377
+ return /*#__PURE__*/React.createElement(Icon.default, {
2378
+ width: size,
2379
+ height: size,
2380
+ ref: ref,
2381
+ xmlns: "http://www.w3.org/2000/svg",
2382
+ viewBox: "0 0 32 32",
2383
+ fill: "currentColor",
2384
+ ...rest
2385
+ }, _path162 || (_path162 = /*#__PURE__*/React.createElement("path", {
2386
+ d: "M23 13H17V27h2V23h4a2 2 0 002-2V15A2 2 0 0023 13zm-4 8V15h4v6zM9 23H7V9h6a2 2 0 012 2v5a2 2 0 01-2 2H9zm0-7h4V11H9z"
2387
+ })), children);
2388
+ });
2389
+ if (process.env.NODE_ENV !== "production") {
2390
+ LetterPp.propTypes = iconPropTypesC5chbmyn.i;
2391
+ }
2392
+ const LetterQq = /*#__PURE__*/React.forwardRef(function LetterQq(_ref102, ref) {
2393
+ let {
2394
+ children,
2395
+ size = 16,
2396
+ ...rest
2397
+ } = _ref102;
2398
+ return /*#__PURE__*/React.createElement(Icon.default, {
2399
+ width: size,
2400
+ height: size,
2401
+ ref: ref,
2402
+ xmlns: "http://www.w3.org/2000/svg",
2403
+ viewBox: "0 0 32 32",
2404
+ fill: "currentColor",
2405
+ ...rest
2406
+ }, _path163 || (_path163 = /*#__PURE__*/React.createElement("path", {
2407
+ d: "M19 13a2 2 0 00-2 2v6a2 2 0 002 2h4v4h2V13zm4 8H19V15h4zM13 9H9a2 2 0 00-2 2V21a2 2 0 002 2h1v2a2 2 0 002 2h2V25H12V23h1a2 2 0 002-2V11A2 2 0 0013 9zM9 21V11h4V21z"
2408
+ })), children);
2409
+ });
2410
+ if (process.env.NODE_ENV !== "production") {
2411
+ LetterQq.propTypes = iconPropTypesC5chbmyn.i;
2412
+ }
2413
+ const LetterRr = /*#__PURE__*/React.forwardRef(function LetterRr(_ref103, ref) {
2414
+ let {
2415
+ children,
2416
+ size = 16,
2417
+ ...rest
2418
+ } = _ref103;
2419
+ return /*#__PURE__*/React.createElement(Icon.default, {
2420
+ width: size,
2421
+ height: size,
2422
+ ref: ref,
2423
+ xmlns: "http://www.w3.org/2000/svg",
2424
+ viewBox: "0 0 32 32",
2425
+ fill: "currentColor",
2426
+ ...rest
2427
+ }, _path164 || (_path164 = /*#__PURE__*/React.createElement("path", {
2428
+ d: "M16 15V11a2 2 0 00-2-2H8V23h2V17h1.48l2.34 6H16l-2.33-6H14A2 2 0 0016 15zm-6-4h4v4H10zM24 13L18 13 18 23 20 23 20 15 24 15 24 13z"
2429
+ })), children);
2430
+ });
2431
+ if (process.env.NODE_ENV !== "production") {
2432
+ LetterRr.propTypes = iconPropTypesC5chbmyn.i;
2433
+ }
2434
+ const LetterSs = /*#__PURE__*/React.forwardRef(function LetterSs(_ref104, ref) {
2435
+ let {
2436
+ children,
2437
+ size = 16,
2438
+ ...rest
2439
+ } = _ref104;
2440
+ return /*#__PURE__*/React.createElement(Icon.default, {
2441
+ width: size,
2442
+ height: size,
2443
+ ref: ref,
2444
+ xmlns: "http://www.w3.org/2000/svg",
2445
+ viewBox: "0 0 32 32",
2446
+ fill: "currentColor",
2447
+ ...rest
2448
+ }, _path165 || (_path165 = /*#__PURE__*/React.createElement("path", {
2449
+ d: "M22 23H17V21h5V19H19a2 2 0 01-2-2V15a2 2 0 012-2h5v2H19v2h3a2 2 0 012 2v2A2 2 0 0122 23zM13 23H7V21h6V17H9a2 2 0 01-2-2V11A2 2 0 019 9h6v2H9v4h4a2 2 0 012 2v4A2 2 0 0113 23z"
2450
+ })), children);
2451
+ });
2452
+ if (process.env.NODE_ENV !== "production") {
2453
+ LetterSs.propTypes = iconPropTypesC5chbmyn.i;
2454
+ }
2455
+ const LetterTt = /*#__PURE__*/React.forwardRef(function LetterTt(_ref105, ref) {
2456
+ let {
2457
+ children,
2458
+ size = 16,
2459
+ ...rest
2460
+ } = _ref105;
2461
+ return /*#__PURE__*/React.createElement(Icon.default, {
2462
+ width: size,
2463
+ height: size,
2464
+ ref: ref,
2465
+ xmlns: "http://www.w3.org/2000/svg",
2466
+ viewBox: "0 0 32 32",
2467
+ fill: "currentColor",
2468
+ ...rest
2469
+ }, _path166 || (_path166 = /*#__PURE__*/React.createElement("path", {
2470
+ d: "M8 11L11 11 11 23 13 23 13 11 16 11 16 9 8 9 8 11zM23 15V13H20V11H18v2H16v2h2v6a2 2 0 002 2h3V21H20V15z"
2471
+ })), children);
2472
+ });
2473
+ if (process.env.NODE_ENV !== "production") {
2474
+ LetterTt.propTypes = iconPropTypesC5chbmyn.i;
2475
+ }
2476
+ const LetterUu = /*#__PURE__*/React.forwardRef(function LetterUu(_ref106, ref) {
2477
+ let {
2478
+ children,
2479
+ size = 16,
2480
+ ...rest
2481
+ } = _ref106;
2482
+ return /*#__PURE__*/React.createElement(Icon.default, {
2483
+ width: size,
2484
+ height: size,
2485
+ ref: ref,
2486
+ xmlns: "http://www.w3.org/2000/svg",
2487
+ viewBox: "0 0 32 32",
2488
+ fill: "currentColor",
2489
+ ...rest
2490
+ }, _path167 || (_path167 = /*#__PURE__*/React.createElement("path", {
2491
+ d: "M23 23H19a2 2 0 01-2-2V13h2v8h4V13h2v8A2 2 0 0123 23zM13 23H9a2 2 0 01-2-2V9H9V21h4V9h2V21A2 2 0 0113 23z"
2492
+ })), children);
2493
+ });
2494
+ if (process.env.NODE_ENV !== "production") {
2495
+ LetterUu.propTypes = iconPropTypesC5chbmyn.i;
2496
+ }
2497
+ const LetterVv = /*#__PURE__*/React.forwardRef(function LetterVv(_ref107, ref) {
2498
+ let {
2499
+ children,
2500
+ size = 16,
2501
+ ...rest
2502
+ } = _ref107;
2503
+ return /*#__PURE__*/React.createElement(Icon.default, {
2504
+ width: size,
2505
+ height: size,
2506
+ ref: ref,
2507
+ xmlns: "http://www.w3.org/2000/svg",
2508
+ viewBox: "0 0 32 32",
2509
+ fill: "currentColor",
2510
+ ...rest
2511
+ }, _path168 || (_path168 = /*#__PURE__*/React.createElement("path", {
2512
+ d: "M25 13L23.25 13 21 22.03 18.79 13 17 13 19.5 23 22.5 23 25 13zM13 9L11 22 9 9 7 9 9.52 23 12.48 23 15 9 13 9z"
2513
+ })), children);
2514
+ });
2515
+ if (process.env.NODE_ENV !== "production") {
2516
+ LetterVv.propTypes = iconPropTypesC5chbmyn.i;
2517
+ }
2518
+ const LetterWw = /*#__PURE__*/React.forwardRef(function LetterWw(_ref108, ref) {
2519
+ let {
2520
+ children,
2521
+ size = 16,
2522
+ ...rest
2523
+ } = _ref108;
2524
+ return /*#__PURE__*/React.createElement(Icon.default, {
2525
+ width: size,
2526
+ height: size,
2527
+ ref: ref,
2528
+ xmlns: "http://www.w3.org/2000/svg",
2529
+ viewBox: "0 0 32 32",
2530
+ fill: "currentColor",
2531
+ ...rest
2532
+ }, _path169 || (_path169 = /*#__PURE__*/React.createElement("path", {
2533
+ d: "M24.3 13L23.39 21.61 22 13 20 13 18.61 21.61 17.7 13 16 13 17.36 23 19.64 23 21 14.63 22.36 23 24.64 23 26 13 24.3 13zM12.21 9L11.87 17 11.61 21.54 11.2 18 10.52 12.54 8.5 12.54 7.82 18 7.41 21.54 7.16 17 6.81 9 5.01 9 6.01 23 8.28 23 9.04 18.07 9.5 14 9.51 13.97 9.52 14 9.98 18.07 10.74 23 13.01 23 14.01 9 12.21 9z"
2534
+ })), children);
2535
+ });
2536
+ if (process.env.NODE_ENV !== "production") {
2537
+ LetterWw.propTypes = iconPropTypesC5chbmyn.i;
2538
+ }
2539
+ const LetterXx = /*#__PURE__*/React.forwardRef(function LetterXx(_ref109, ref) {
2540
+ let {
2541
+ children,
2542
+ size = 16,
2543
+ ...rest
2544
+ } = _ref109;
2545
+ return /*#__PURE__*/React.createElement(Icon.default, {
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
+ }, _path170 || (_path170 = /*#__PURE__*/React.createElement("path", {
2554
+ d: "M15 9L13 9 11 15 9 9 7 9 9.75 16 7 23 9 23 11 17 13 23 15 23 12.24 16 15 9zM25 13L23 13 21 16.9 19 13 17 13 19.91 18 17 23 19 23 21 19.2 23 23 25 23 22.1 18 25 13z"
2555
+ })), children);
2556
+ });
2557
+ if (process.env.NODE_ENV !== "production") {
2558
+ LetterXx.propTypes = iconPropTypesC5chbmyn.i;
2559
+ }
2560
+ const LetterYy = /*#__PURE__*/React.forwardRef(function LetterYy(_ref110, ref) {
2561
+ let {
2562
+ children,
2563
+ size = 16,
2564
+ ...rest
2565
+ } = _ref110;
2566
+ return /*#__PURE__*/React.createElement(Icon.default, {
2567
+ width: size,
2568
+ height: size,
2569
+ ref: ref,
2570
+ xmlns: "http://www.w3.org/2000/svg",
2571
+ viewBox: "0 0 32 32",
2572
+ fill: "currentColor",
2573
+ ...rest
2574
+ }, _path171 || (_path171 = /*#__PURE__*/React.createElement("path", {
2575
+ d: "M15 9L13 9 11 16 9 9 7 9 10 18 10 23 12 23 12 18 12 18 15 9zM23 13l-2 7.52L19.08 13H17l3.15 9.87L19.53 25H17v2h2.26a2 2 0 001.91-1.42L25 13z"
2576
+ })), children);
2577
+ });
2578
+ if (process.env.NODE_ENV !== "production") {
2579
+ LetterYy.propTypes = iconPropTypesC5chbmyn.i;
2580
+ }
2581
+ const LetterZz = /*#__PURE__*/React.forwardRef(function LetterZz(_ref111, ref) {
2582
+ let {
2583
+ children,
2584
+ size = 16,
2585
+ ...rest
2586
+ } = _ref111;
2587
+ return /*#__PURE__*/React.createElement(Icon.default, {
2588
+ width: size,
2589
+ height: size,
2590
+ ref: ref,
2591
+ xmlns: "http://www.w3.org/2000/svg",
2592
+ viewBox: "0 0 32 32",
2593
+ fill: "currentColor",
2594
+ ...rest
2595
+ }, _path172 || (_path172 = /*#__PURE__*/React.createElement("path", {
2596
+ d: "M25 15L25 13 17 13 17 15 22.5 15 17 21 17 23 25 23 25 21 19.51 21 25 15zM15 9L7 9 7 11 13 11 7 21 7 23 15 23 15 21 9 21 15 11 15 9z"
2597
+ })), children);
2598
+ });
2599
+ if (process.env.NODE_ENV !== "production") {
2600
+ LetterZz.propTypes = iconPropTypesC5chbmyn.i;
2601
+ }
2602
+ const License = /*#__PURE__*/React.forwardRef(function License(_ref112, ref) {
2603
+ let {
2604
+ children,
2605
+ size = 16,
2606
+ ...rest
2607
+ } = _ref112;
2608
+ return /*#__PURE__*/React.createElement(Icon.default, {
2609
+ width: size,
2610
+ height: size,
2611
+ ref: ref,
2612
+ xmlns: "http://www.w3.org/2000/svg",
2613
+ viewBox: "0 0 32 32",
2614
+ fill: "currentColor",
2615
+ ...rest
2616
+ }, _path173 || (_path173 = /*#__PURE__*/React.createElement("path", {
2617
+ d: "M10 6H22V8H10zM10 10H22V12H10zM10 24H16V26H10zM10 14H16V16H10z"
2618
+ })), _path174 || (_path174 = /*#__PURE__*/React.createElement("path", {
2619
+ d: "M24,30H8a2.0023,2.0023,0,0,1-2-2V4A2.0023,2.0023,0,0,1,8,2H24a2.0023,2.0023,0,0,1,2,2V28A2.0023,2.0023,0,0,1,24,30ZM8,4V28H24V4Z"
2620
+ })), children);
2621
+ });
2622
+ if (process.env.NODE_ENV !== "production") {
2623
+ License.propTypes = iconPropTypesC5chbmyn.i;
2624
+ }
2625
+ const LicenseDraft = /*#__PURE__*/React.forwardRef(function LicenseDraft(_ref113, ref) {
2626
+ let {
2627
+ children,
2628
+ size = 16,
2629
+ ...rest
2630
+ } = _ref113;
2631
+ return /*#__PURE__*/React.createElement(Icon.default, {
2632
+ width: size,
2633
+ height: size,
2634
+ ref: ref,
2635
+ xmlns: "http://www.w3.org/2000/svg",
2636
+ viewBox: "0 0 32 32",
2637
+ fill: "currentColor",
2638
+ ...rest
2639
+ }, _path175 || (_path175 = /*#__PURE__*/React.createElement("path", {
2640
+ d: "M8 6H20V8H8zM8 10H20V12H8zM8 14H14V16H8zM8 24H12V26H8z"
2641
+ })), _path176 || (_path176 = /*#__PURE__*/React.createElement("path", {
2642
+ d: "M29.707 19.293l-3-3a.9994.9994 0 00-1.414 0L16 25.5859V30h4.4141l9.2929-9.293A.9994.9994 0 0029.707 19.293zM19.5859 28H18V26.4141l5-5L24.5859 23zM26 21.5859L24.4141 20 26 18.4141 27.5859 20zM12 30H6a2.0021 2.0021 0 01-2-2V4A2.0021 2.0021 0 016 2H22a2.0021 2.0021 0 012 2V14H22V4H6V28h6z"
2643
+ })), children);
2644
+ });
2645
+ if (process.env.NODE_ENV !== "production") {
2646
+ LicenseDraft.propTypes = iconPropTypesC5chbmyn.i;
2647
+ }
2648
+ const LicenseGlobal = /*#__PURE__*/React.forwardRef(function LicenseGlobal(_ref114, ref) {
2649
+ let {
2650
+ children,
2651
+ size = 16,
2652
+ ...rest
2653
+ } = _ref114;
2654
+ return /*#__PURE__*/React.createElement(Icon.default, {
2655
+ width: size,
2656
+ height: size,
2657
+ ref: ref,
2658
+ xmlns: "http://www.w3.org/2000/svg",
2659
+ viewBox: "0 0 32 32",
2660
+ fill: "currentColor",
2661
+ ...rest
2662
+ }, _path177 || (_path177 = /*#__PURE__*/React.createElement("path", {
2663
+ d: "M22 14a8 8 0 108 8A8.0092 8.0092 0 0022 14zm5.91 7H25.9563a12.03 12.03 0 00-1.2183-4.3325A6.01 6.01 0 0127.91 21zm-7.8545 0A10.0135 10.0135 0 0122 16.0146 10.0121 10.0121 0 0123.9448 21zm3.89 2A10.01 10.01 0 0122 27.9854 10.0121 10.0121 0 0120.0552 23zm-4.6831-6.332A12.0265 12.0265 0 0018.0435 21H16.09A6.01 6.01 0 0119.2617 16.668zM16.09 23h1.9532a12.0265 12.0265 0 001.2182 4.332A6.01 6.01 0 0116.09 23zm8.6482 4.332A12.0242 12.0242 0 0025.9565 23H27.91A6.0088 6.0088 0 0124.7385 27.332zM6 14H12V16H6zM6 6H18V8H6zM6 10H18V12H6zM6 24H12V26H6z"
2664
+ })), _path178 || (_path178 = /*#__PURE__*/React.createElement("path", {
2665
+ d: "M12,30H4a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,4,2H20a2.0021,2.0021,0,0,1,2,2v8H20V4H4V28h8Z"
2666
+ })), children);
2667
+ });
2668
+ if (process.env.NODE_ENV !== "production") {
2669
+ LicenseGlobal.propTypes = iconPropTypesC5chbmyn.i;
2670
+ }
2671
+ const LicenseMaintenance = /*#__PURE__*/React.forwardRef(function LicenseMaintenance(_ref115, ref) {
2672
+ let {
2673
+ children,
2674
+ size = 16,
2675
+ ...rest
2676
+ } = _ref115;
2677
+ return /*#__PURE__*/React.createElement(Icon.default, {
2678
+ width: size,
2679
+ height: size,
2680
+ ref: ref,
2681
+ xmlns: "http://www.w3.org/2000/svg",
2682
+ viewBox: "0 0 32 32",
2683
+ fill: "currentColor",
2684
+ ...rest
2685
+ }, _path179 || (_path179 = /*#__PURE__*/React.createElement("path", {
2686
+ d: "M8 14H14V16H8zM8 6H20V8H8zM8 10H20V12H8zM8 24H14V26H8zM30 24V22H27.8989a4.9678 4.9678 0 00-.7319-1.7529l1.49-1.49-1.414-1.414-1.49 1.49A4.9678 4.9678 0 0024 18.1011V16H22v2.1011a4.9678 4.9678 0 00-1.7529.7319l-1.49-1.49-1.414 1.414 1.49 1.49A4.9678 4.9678 0 0018.1011 22H16v2h2.1011a4.9678 4.9678 0 00.7319 1.7529l-1.49 1.49 1.414 1.414 1.49-1.49A4.9678 4.9678 0 0022 27.8989V30h2V27.8989a4.9678 4.9678 0 001.7529-.7319l1.49 1.49 1.414-1.414-1.49-1.49A4.9678 4.9678 0 0027.8989 24zm-7 2a3 3 0 113-3A3.0033 3.0033 0 0123 26z"
2687
+ })), _path180 || (_path180 = /*#__PURE__*/React.createElement("path", {
2688
+ d: "M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z"
2689
+ })), children);
2690
+ });
2691
+ if (process.env.NODE_ENV !== "production") {
2692
+ LicenseMaintenance.propTypes = iconPropTypesC5chbmyn.i;
2693
+ }
2694
+ const LicenseMaintenanceDraft = /*#__PURE__*/React.forwardRef(function LicenseMaintenanceDraft(_ref116, ref) {
2695
+ let {
2696
+ children,
2697
+ size = 16,
2698
+ ...rest
2699
+ } = _ref116;
2700
+ return /*#__PURE__*/React.createElement(Icon.default, {
2701
+ width: size,
2702
+ height: size,
2703
+ ref: ref,
2704
+ xmlns: "http://www.w3.org/2000/svg",
2705
+ viewBox: "0 0 32 32",
2706
+ fill: "currentColor",
2707
+ ...rest
2708
+ }, _path181 || (_path181 = /*#__PURE__*/React.createElement("path", {
2709
+ d: "M29.707 19.293l-3-3a.9994.9994 0 00-1.414 0L16 25.5859V30h4.4141l9.2929-9.293A.9994.9994 0 0029.707 19.293zM19.5859 28H18V26.4141l5-5L24.5859 23zM26 21.5859L24.4141 20 26 18.4141 27.5859 20zM20 13V11H17.8579a3.94 3.94 0 00-.4248-1.019L18.95 8.4644 17.5356 7.05 16.019 8.5669A3.9443 3.9443 0 0015 8.1421V6H13V8.1421a3.9443 3.9443 0 00-1.019.4248L10.4644 7.05 9.05 8.4644 10.5669 9.981A3.94 3.94 0 0010.1421 11H8v2h2.1421a3.94 3.94 0 00.4248 1.019L9.05 15.5356 10.4644 16.95l1.5166-1.5166A3.9443 3.9443 0 0013 15.8579V18h2V15.8579a3.9443 3.9443 0 001.019-.4248L17.5356 16.95 18.95 15.5356 17.4331 14.019A3.94 3.94 0 0017.8579 13zm-6 1a2 2 0 112-2A2.0025 2.0025 0 0114 14z"
2710
+ })), _path182 || (_path182 = /*#__PURE__*/React.createElement("path", {
2711
+ d: "M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"
2712
+ })), children);
2713
+ });
2714
+ if (process.env.NODE_ENV !== "production") {
2715
+ LicenseMaintenanceDraft.propTypes = iconPropTypesC5chbmyn.i;
2716
+ }
2717
+ const LicenseThirdParty = /*#__PURE__*/React.forwardRef(function LicenseThirdParty(_ref117, ref) {
2718
+ let {
2719
+ children,
2720
+ size = 16,
2721
+ ...rest
2722
+ } = _ref117;
2723
+ return /*#__PURE__*/React.createElement(Icon.default, {
2724
+ width: size,
2725
+ height: size,
2726
+ ref: ref,
2727
+ xmlns: "http://www.w3.org/2000/svg",
2728
+ viewBox: "0 0 32 32",
2729
+ fill: "currentColor",
2730
+ ...rest
2731
+ }, _path183 || (_path183 = /*#__PURE__*/React.createElement("path", {
2732
+ d: "M8 14H14V16H8zM8 6H20V8H8zM8 10H20V12H8zM8 24H14V26H8zM27 25H21a3 3 0 00-3 3v2h2V28a1 1 0 011-1h6a1 1 0 011 1v2h2V28A3 3 0 0027 25zM24 24a4 4 0 10-4-4A4 4 0 0024 24zm0-6a2 2 0 11-2 2A2 2 0 0124 18z"
2733
+ })), _path184 || (_path184 = /*#__PURE__*/React.createElement("path", {
2734
+ d: "M14,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h8Z"
2735
+ })), children);
2736
+ });
2737
+ if (process.env.NODE_ENV !== "production") {
2738
+ LicenseThirdParty.propTypes = iconPropTypesC5chbmyn.i;
2739
+ }
2740
+ const LicenseThirdPartyDraft = /*#__PURE__*/React.forwardRef(function LicenseThirdPartyDraft(_ref118, ref) {
2741
+ let {
2742
+ children,
2743
+ size = 16,
2744
+ ...rest
2745
+ } = _ref118;
2746
+ return /*#__PURE__*/React.createElement(Icon.default, {
2747
+ width: size,
2748
+ height: size,
2749
+ ref: ref,
2750
+ xmlns: "http://www.w3.org/2000/svg",
2751
+ viewBox: "0 0 32 32",
2752
+ fill: "currentColor",
2753
+ ...rest
2754
+ }, _path185 || (_path185 = /*#__PURE__*/React.createElement("path", {
2755
+ d: "M29.707 19.293l-3-3a.9994.9994 0 00-1.414 0L16 25.5859V30h4.4141l9.2929-9.293A.9994.9994 0 0029.707 19.293zM19.5859 28H18V26.4141l5-5L24.5859 23zM26 21.5859L24.4141 20 26 18.4141 27.5859 20zM17 15H11a3 3 0 00-3 3v1h2V18a1 1 0 011-1h6a1 1 0 011 1v1h2V18A3 3 0 0017 15zM14 14a4 4 0 10-4-4A4 4 0 0014 14zm0-6a2 2 0 11-2 2A2 2 0 0114 8z"
2756
+ })), _path186 || (_path186 = /*#__PURE__*/React.createElement("path", {
2757
+ d: "M12,30H6a2.0021,2.0021,0,0,1-2-2V4A2.0021,2.0021,0,0,1,6,2H22a2.0021,2.0021,0,0,1,2,2V14H22V4H6V28h6Z"
2758
+ })), children);
2759
+ });
2760
+ if (process.env.NODE_ENV !== "production") {
2761
+ LicenseThirdPartyDraft.propTypes = iconPropTypesC5chbmyn.i;
2762
+ }
2763
+ const Lifesaver = /*#__PURE__*/React.forwardRef(function Lifesaver(_ref119, ref) {
2764
+ let {
2765
+ children,
2766
+ size = 16,
2767
+ ...rest
2768
+ } = _ref119;
2769
+ return /*#__PURE__*/React.createElement(Icon.default, {
2770
+ width: size,
2771
+ height: size,
2772
+ ref: ref,
2773
+ xmlns: "http://www.w3.org/2000/svg",
2774
+ viewBox: "0 0 32 32",
2775
+ fill: "currentColor",
2776
+ ...rest
2777
+ }, _path187 || (_path187 = /*#__PURE__*/React.createElement("path", {
2778
+ d: "M28.2261,22.812a13.9664,13.9664,0,0,0,0-13.624L28.4141,9a2.0021,2.0021,0,0,0,0-2.8281l-2.5857-2.586a2.0028,2.0028,0,0,0-2.8284,0l-.1877.1875a13.9687,13.9687,0,0,0-13.6243,0L9,3.5859a2.0024,2.0024,0,0,0-2.8284,0L3.5859,6.1719A2.0021,2.0021,0,0,0,3.5859,9l.1878.1875a13.97,13.97,0,0,0,0,13.625L3.5859,23a2.0021,2.0021,0,0,0,0,2.8281l2.5857,2.586a2.0021,2.0021,0,0,0,2.8284,0l.188-.188a13.9687,13.9687,0,0,0,13.6243.0005L23,28.4141a2.0021,2.0021,0,0,0,2.8284,0l2.5857-2.586a2.0021,2.0021,0,0,0,0-2.8281ZM28,16a11.973,11.973,0,0,1-1.2546,5.3315l-3.8948-3.895a6.9808,6.9808,0,0,0,0-2.873l3.8948-3.895A11.973,11.973,0,0,1,28,16ZM27,7.5859l-4.9346,4.9346A7.0434,7.0434,0,0,0,19.48,9.9346L24.4143,5ZM16,21a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,21ZM21.3154,5.2705,17.4365,9.1494a6.9808,6.9808,0,0,0-2.873,0L10.6846,5.2705A12.2484,12.2484,0,0,1,21.3154,5.2705ZM7.5859,5l4.9346,4.9346a7.0449,7.0449,0,0,0-2.5859,2.5859L5,7.5859ZM4,16a11.9716,11.9716,0,0,1,1.2546-5.3311l3.8948,3.8946a6.9808,6.9808,0,0,0,0,2.873L5.2546,21.3311A11.9716,11.9716,0,0,1,4,16ZM7.5857,27,5,24.4141,9.9346,19.48a7.0434,7.0434,0,0,0,2.5859,2.5859Zm3.0989-.27,3.8789-3.8789a6.9808,6.9808,0,0,0,2.873,0L21.3154,26.73A12.2484,12.2484,0,0,1,10.6846,26.73Zm13.73.27L19.48,22.0654A7.0449,7.0449,0,0,0,22.0654,19.48L27,24.4141Z"
2779
+ })), children);
2780
+ });
2781
+ if (process.env.NODE_ENV !== "production") {
2782
+ Lifesaver.propTypes = iconPropTypesC5chbmyn.i;
2783
+ }
2784
+ const Light = /*#__PURE__*/React.forwardRef(function Light(_ref120, ref) {
2785
+ let {
2786
+ children,
2787
+ size = 16,
2788
+ ...rest
2789
+ } = _ref120;
2790
+ if (size === 16 || size === "16" || size === "16px") {
2791
+ return /*#__PURE__*/React.createElement(Icon.default, {
2792
+ width: size,
2793
+ height: size,
2794
+ ref: ref,
2795
+ xmlns: "http://www.w3.org/2000/svg",
2796
+ viewBox: "0 0 16 16",
2797
+ fill: "currentColor",
2798
+ ...rest
2799
+ }, _path188 || (_path188 = /*#__PURE__*/React.createElement("path", {
2800
+ d: "M7.5 1H8.5V3.5H7.5z"
2801
+ })), _path189 || (_path189 = /*#__PURE__*/React.createElement("path", {
2802
+ d: "M10.8 3.4H13.3V4.4H10.8z",
2803
+ transform: "rotate(-45.001 12.041 3.923)"
2804
+ })), _path190 || (_path190 = /*#__PURE__*/React.createElement("path", {
2805
+ d: "M12.5 7.5H15V8.5H12.5z"
2806
+ })), _path191 || (_path191 = /*#__PURE__*/React.createElement("path", {
2807
+ d: "M11.6 10.8H12.6V13.3H11.6z",
2808
+ transform: "rotate(-45.001 12.075 12.041)"
2809
+ })), _path192 || (_path192 = /*#__PURE__*/React.createElement("path", {
2810
+ d: "M7.5 12.5H8.5V15H7.5z"
2811
+ })), _path193 || (_path193 = /*#__PURE__*/React.createElement("path", {
2812
+ d: "M2.7 11.6H5.2V12.6H2.7z",
2813
+ transform: "rotate(-45.001 3.96 12.079)"
2814
+ })), _path194 || (_path194 = /*#__PURE__*/React.createElement("path", {
2815
+ d: "M1 7.5H3.5V8.5H1z"
2816
+ })), _path195 || (_path195 = /*#__PURE__*/React.createElement("path", {
2817
+ d: "M3.4 2.7H4.4V5.2H3.4z",
2818
+ transform: "rotate(-45.001 3.925 3.961)"
2819
+ })), _path196 || (_path196 = /*#__PURE__*/React.createElement("path", {
2820
+ d: "M8,6c1.1,0,2,0.9,2,2s-0.9,2-2,2S6,9.1,6,8S6.9,6,8,6 M8,5C6.3,5,5,6.3,5,8s1.3,3,3,3s3-1.3,3-3S9.7,5,8,5z"
2821
+ })), children);
2822
+ }
2823
+ return /*#__PURE__*/React.createElement(Icon.default, {
2824
+ width: size,
2825
+ height: size,
2826
+ ref: ref,
2827
+ xmlns: "http://www.w3.org/2000/svg",
2828
+ viewBox: "0 0 32 32",
2829
+ fill: "currentColor",
2830
+ ...rest
2831
+ }, _path197 || (_path197 = /*#__PURE__*/React.createElement("path", {
2832
+ d: "M15 2H17V7H15z"
2833
+ })), _path198 || (_path198 = /*#__PURE__*/React.createElement("path", {
2834
+ d: "M21.668 6.854H26.625999999999998V8.854H21.668z",
2835
+ transform: "rotate(-45 24.147 7.853)"
2836
+ })), _path199 || (_path199 = /*#__PURE__*/React.createElement("path", {
2837
+ d: "M25 15H30V17H25z"
2838
+ })), _path200 || (_path200 = /*#__PURE__*/React.createElement("path", {
2839
+ d: "M23.147 21.668H25.147V26.625999999999998H23.147z",
2840
+ transform: "rotate(-45 24.147 24.146)"
2841
+ })), _path201 || (_path201 = /*#__PURE__*/React.createElement("path", {
2842
+ d: "M15 25H17V30H15z"
2843
+ })), _path202 || (_path202 = /*#__PURE__*/React.createElement("path", {
2844
+ d: "M5.375 23.147H10.333V25.147H5.375z",
2845
+ transform: "rotate(-45 7.853 24.146)"
2846
+ })), _path203 || (_path203 = /*#__PURE__*/React.createElement("path", {
2847
+ d: "M2 15H7V17H2z"
2848
+ })), _path204 || (_path204 = /*#__PURE__*/React.createElement("path", {
2849
+ d: "M6.854 5.375H8.854V10.333H6.854z",
2850
+ transform: "rotate(-45 7.854 7.853)"
2851
+ })), _path205 || (_path205 = /*#__PURE__*/React.createElement("path", {
2852
+ d: "M16,12a4,4,0,1,1-4,4,4.0045,4.0045,0,0,1,4-4m0-2a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z"
2853
+ })), children);
2854
+ });
2855
+ if (process.env.NODE_ENV !== "production") {
2856
+ Light.propTypes = iconPropTypesC5chbmyn.i;
2857
+ }
2858
+ const LightFilled = /*#__PURE__*/React.forwardRef(function LightFilled(_ref121, ref) {
2859
+ let {
2860
+ children,
2861
+ size = 16,
2862
+ ...rest
2863
+ } = _ref121;
2864
+ return /*#__PURE__*/React.createElement(Icon.default, {
2865
+ width: size,
2866
+ height: size,
2867
+ ref: ref,
2868
+ xmlns: "http://www.w3.org/2000/svg",
2869
+ viewBox: "0 0 32 32",
2870
+ fill: "currentColor",
2871
+ ...rest
2872
+ }, _path206 || (_path206 = /*#__PURE__*/React.createElement("path", {
2873
+ d: "M15 2H17V7H15z"
2874
+ })), _path207 || (_path207 = /*#__PURE__*/React.createElement("path", {
2875
+ d: "M21.668 6.854H26.625999999999998V8.854H21.668z",
2876
+ transform: "rotate(-45 24.147 7.853)"
2877
+ })), _path208 || (_path208 = /*#__PURE__*/React.createElement("path", {
2878
+ d: "M25 15H30V17H25z"
2879
+ })), _path209 || (_path209 = /*#__PURE__*/React.createElement("path", {
2880
+ d: "M23.147 21.668H25.147V26.625999999999998H23.147z",
2881
+ transform: "rotate(-45 24.147 24.146)"
2882
+ })), _path210 || (_path210 = /*#__PURE__*/React.createElement("path", {
2883
+ d: "M15 25H17V30H15z"
2884
+ })), _path211 || (_path211 = /*#__PURE__*/React.createElement("path", {
2885
+ d: "M5.375 23.147H10.333V25.147H5.375z",
2886
+ transform: "rotate(-45 7.853 24.146)"
2887
+ })), _path212 || (_path212 = /*#__PURE__*/React.createElement("path", {
2888
+ d: "M2 15H7V17H2z"
2889
+ })), _path213 || (_path213 = /*#__PURE__*/React.createElement("path", {
2890
+ d: "M6.854 5.375H8.854V10.333H6.854z",
2891
+ transform: "rotate(-45 7.854 7.853)"
2892
+ })), _path214 || (_path214 = /*#__PURE__*/React.createElement("path", {
2893
+ d: "M16,10a6,6,0,1,0,6,6,6,6,0,0,0-6-6Z"
2894
+ })), children);
2895
+ });
2896
+ if (process.env.NODE_ENV !== "production") {
2897
+ LightFilled.propTypes = iconPropTypesC5chbmyn.i;
2898
+ }
2899
+ const Lightning = /*#__PURE__*/React.forwardRef(function Lightning(_ref122, ref) {
2900
+ let {
2901
+ children,
2902
+ size = 16,
2903
+ ...rest
2904
+ } = _ref122;
2905
+ return /*#__PURE__*/React.createElement(Icon.default, {
2906
+ width: size,
2907
+ height: size,
2908
+ ref: ref,
2909
+ xmlns: "http://www.w3.org/2000/svg",
2910
+ viewBox: "0 0 32 32",
2911
+ fill: "currentColor",
2912
+ ...rest
2913
+ }, _path215 || (_path215 = /*#__PURE__*/React.createElement("path", {
2914
+ d: "M11.61,29.92a1,1,0,0,1-.6-1.07L12.83,17H8a1,1,0,0,1-1-1.23l3-13A1,1,0,0,1,11,2H21a1,1,0,0,1,.78.37,1,1,0,0,1,.2.85L20.25,11H25a1,1,0,0,1,.9.56,1,1,0,0,1-.11,1l-13,17A1,1,0,0,1,12,30,1.09,1.09,0,0,1,11.61,29.92ZM17.75,13l2-9H11.8L9.26,15h5.91L13.58,25.28,23,13Z"
2915
+ })), children);
2916
+ });
2917
+ if (process.env.NODE_ENV !== "production") {
2918
+ Lightning.propTypes = iconPropTypesC5chbmyn.i;
2919
+ }
2920
+ const Link = /*#__PURE__*/React.forwardRef(function Link(_ref123, ref) {
2921
+ let {
2922
+ children,
2923
+ size = 16,
2924
+ ...rest
2925
+ } = _ref123;
2926
+ return /*#__PURE__*/React.createElement(Icon.default, {
2927
+ width: size,
2928
+ height: size,
2929
+ ref: ref,
2930
+ xmlns: "http://www.w3.org/2000/svg",
2931
+ viewBox: "0 0 32 32",
2932
+ fill: "currentColor",
2933
+ ...rest
2934
+ }, _path216 || (_path216 = /*#__PURE__*/React.createElement("path", {
2935
+ d: "M29.25,6.76a6,6,0,0,0-8.5,0l1.42,1.42a4,4,0,1,1,5.67,5.67l-8,8a4,4,0,1,1-5.67-5.66l1.41-1.42-1.41-1.42-1.42,1.42a6,6,0,0,0,0,8.5A6,6,0,0,0,17,25a6,6,0,0,0,4.27-1.76l8-8A6,6,0,0,0,29.25,6.76Z"
2936
+ })), _path217 || (_path217 = /*#__PURE__*/React.createElement("path", {
2937
+ d: "M4.19,24.82a4,4,0,0,1,0-5.67l8-8a4,4,0,0,1,5.67,0A3.94,3.94,0,0,1,19,14a4,4,0,0,1-1.17,2.85L15.71,19l1.42,1.42,2.12-2.12a6,6,0,0,0-8.51-8.51l-8,8a6,6,0,0,0,0,8.51A6,6,0,0,0,7,28a6.07,6.07,0,0,0,4.28-1.76L9.86,24.82A4,4,0,0,1,4.19,24.82Z"
2938
+ })), children);
2939
+ });
2940
+ if (process.env.NODE_ENV !== "production") {
2941
+ Link.propTypes = iconPropTypesC5chbmyn.i;
2942
+ }
2943
+ const Linux = /*#__PURE__*/React.forwardRef(function Linux(_ref124, ref) {
2944
+ let {
2945
+ children,
2946
+ size = 16,
2947
+ ...rest
2948
+ } = _ref124;
2949
+ return /*#__PURE__*/React.createElement(Icon.default, {
2950
+ width: size,
2951
+ height: size,
2952
+ ref: ref,
2953
+ xmlns: "http://www.w3.org/2000/svg",
2954
+ viewBox: "0 0 32 32",
2955
+ fill: "currentColor",
2956
+ ...rest
2957
+ }, _path218 || (_path218 = /*#__PURE__*/React.createElement("path", {
2958
+ d: "M29.8945,23.542l-1.7238-3.4473a1.9994,1.9994,0,0,0-1.7886-1.1054h-.4683a14.887,14.887,0,0,0-1.8193-4.5977C23.0647,12.4429,22,10.4277,22,8A6,6,0,0,0,10,8a13.0041,13.0041,0,0,1-2.0486,6.2153,14.7022,14.7022,0,0,0-1.8708,4.7759H5.6184a2.0007,2.0007,0,0,0-1.7893,1.106L2.1055,23.5439a1,1,0,0,0,.0971,1.0508L6.2319,29.92a2.9995,2.9995,0,0,0,3.8482.6519l1.8735-1.1241A13.8223,13.8223,0,0,0,16,30a13.8034,13.8034,0,0,0,4.0488-.5527L21.92,30.57a2.9819,2.9819,0,0,0,1.5385.43,3.0385,3.0385,0,0,0,2.3389-1.1187l4-5.2885A1.001,1.001,0,0,0,29.8945,23.542Zm-7.5683-8.2158a14.8311,14.8311,0,0,1,1.5591,3.6631H21.738a16.6591,16.6591,0,0,0-.98-2.6455,12.7083,12.7083,0,0,1-.8789-2.4454,8.8046,8.8046,0,0,0,1.0034-1.4277l.0384-.0718A30.746,30.746,0,0,0,22.3262,15.3262ZM12,21a9.3959,9.3959,0,0,1,1.0728-3.8516c.2563-.5825.5158-1.1757.726-1.7993a4.0474,4.0474,0,0,0,4.4024,0c.21.6236.47,1.2168.726,1.7993A9.3959,9.3959,0,0,1,20,21c0,1.2881-.4146,3-4,3S12,22.2881,12,21Zm6.5105-8.5752A3.6265,3.6265,0,0,1,16,14a3.6273,3.6273,0,0,1-2.5107-1.5757,7.6356,7.6356,0,0,1,5.0212,0ZM12,8a4,4,0,0,1,8,0,10.9164,10.9164,0,0,0,.4673,3.1152A7.9811,7.9811,0,0,0,19,10.4849V8H17v2.0542a9.2522,9.2522,0,0,0-2,0V8H13v2.4849a7.9019,7.9019,0,0,0-1.4785.6372A10.7093,10.7093,0,0,0,12,8ZM9.7146,15.1592A29.8007,29.8007,0,0,0,11.0693,12.38l.0484.09a8.8046,8.8046,0,0,0,1.0034,1.4277,12.7083,12.7083,0,0,1-.8789,2.4454,16.6574,16.6574,0,0,0-.981,2.6474H8.1047A14.0567,14.0567,0,0,1,9.7146,15.1592Zm1.3708,12.4775L9.0508,28.8574a.9866.9866,0,0,1-1.2529-.1806L4.1724,23.8833l1.4458-2.8921h3.706L11.49,26.3853A1.0036,1.0036,0,0,1,11.0854,27.6367Zm2.316.1177a2.9571,2.9571,0,0,0-.0562-2.11A9.03,9.03,0,0,0,16,26a9.0237,9.0237,0,0,0,2.6562-.3564,2.9889,2.9889,0,0,0-.0546,2.11,13.8722,13.8722,0,0,1-5.2,0Zm10.83.8833a.996.996,0,0,1-1.2827.2178l-2.0342-1.2207h0a1.01,1.01,0,0,1-.396-1.273l2.157-5.3725h3.7058l1.4461,2.892Z"
2959
+ })), children);
2960
+ });
2961
+ if (process.env.NODE_ENV !== "production") {
2962
+ Linux.propTypes = iconPropTypesC5chbmyn.i;
2963
+ }
2964
+ const LinuxAlt = /*#__PURE__*/React.forwardRef(function LinuxAlt(_ref125, ref) {
2965
+ let {
2966
+ children,
2967
+ size = 16,
2968
+ ...rest
2969
+ } = _ref125;
2970
+ return /*#__PURE__*/React.createElement(Icon.default, {
2971
+ width: size,
2972
+ height: size,
2973
+ ref: ref,
2974
+ xmlns: "http://www.w3.org/2000/svg",
2975
+ viewBox: "0 0 32 32",
2976
+ fill: "currentColor",
2977
+ ...rest
2978
+ }, _path219 || (_path219 = /*#__PURE__*/React.createElement("path", {
2979
+ d: "M22.6121,20.5215A6.1582,6.1582,0,0,0,24,16.5254C24,13.4785,21.9812,11,19.5,11A4.2435,4.2435,0,0,0,16,13.06,4.2435,4.2435,0,0,0,12.5,11C10.0188,11,8,13.4785,8,16.5254a6.1593,6.1593,0,0,0,1.3879,3.9961c-.5688.3686-.9389.6416-.988.6787a1,1,0,0,0-.1807,1.4248C8.6592,23.1748,12.6169,28,16,28s7.3408-4.8252,7.7808-5.375A1,1,0,0,0,23.6,21.2C23.551,21.1631,23.1812,20.89,22.6121,20.5215ZM12.5,13c1.3552,0,2.5,1.6143,2.5,3.5254v1.5664a9.1005,9.1005,0,0,0-1.0244.2314A2.6411,2.6411,0,0,0,14,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.38,2.38,0,0,0,.4072,1.3623c-.0813.0415-.1687.0806-.248.1221A4.0291,4.0291,0,0,1,10,16.5254C10,14.6143,11.1448,13,12.5,13ZM16,26c-1.5691,0-3.9648-2.084-5.52-3.8057C11.9,21.2788,14.2656,20,16,20s4.1,1.2788,5.52,2.1943C19.9648,23.916,17.5691,26,16,26Zm4.8408-6.5156c-.0793-.0415-.1667-.0806-.248-.1221A2.38,2.38,0,0,0,21,18c0-1.1045-.6716-2-1.5-2s-1.5.8955-1.5,2a2.6411,2.6411,0,0,0,.0244.3232A9.1005,9.1005,0,0,0,17,18.0918V16.5254C17,14.6143,18.1448,13,19.5,13S22,14.6143,22,16.5254A4.0291,4.0291,0,0,1,20.8408,19.4844Z"
2980
+ })), _path220 || (_path220 = /*#__PURE__*/React.createElement("path", {
2981
+ d: "M30,30a3.8876,3.8876,0,0,1-4-4V14A10,10,0,0,0,6,14V26a3.8876,3.8876,0,0,1-4,4V28a1.8793,1.8793,0,0,0,2-2V14a12,12,0,0,1,24,0V26a1.8825,1.8825,0,0,0,2,2Z"
2982
+ })), children);
2983
+ });
2984
+ if (process.env.NODE_ENV !== "production") {
2985
+ LinuxAlt.propTypes = iconPropTypesC5chbmyn.i;
2986
+ }
2987
+
2988
+ exports.IncreaseLevel = IncreaseLevel;
2989
+ exports.Industry = Industry;
2990
+ exports.InfinitySymbol = InfinitySymbol;
2991
+ exports.Information = Information;
2992
+ exports.InformationDisabled = InformationDisabled;
2993
+ exports.InformationFilled = InformationFilled;
2994
+ exports.InformationSquare = InformationSquare;
2995
+ exports.InformationSquareFilled = InformationSquareFilled;
2996
+ exports.InfrastructureClassic = InfrastructureClassic;
2997
+ exports.Insert = Insert;
2998
+ exports.InsertPage = InsertPage;
2999
+ exports.InsertSyntax = InsertSyntax;
3000
+ exports.Inspection = Inspection;
3001
+ exports.InstanceBx = InstanceBx;
3002
+ exports.InstanceClassic = InstanceClassic;
3003
+ exports.InstanceCx = InstanceCx;
3004
+ exports.InstanceMx = InstanceMx;
3005
+ exports.InstanceVirtual = InstanceVirtual;
3006
+ exports.Integration = Integration;
3007
+ exports.IntentRequestActive = IntentRequestActive;
3008
+ exports.IntentRequestCreate = IntentRequestCreate;
3009
+ exports.IntentRequestHeal = IntentRequestHeal;
3010
+ exports.IntentRequestInactive = IntentRequestInactive;
3011
+ exports.IntentRequestScaleIn = IntentRequestScaleIn;
3012
+ exports.IntentRequestScaleOut = IntentRequestScaleOut;
3013
+ exports.IntentRequestUninstall = IntentRequestUninstall;
3014
+ exports.IntentRequestUpgrade = IntentRequestUpgrade;
3015
+ exports.Interactions = Interactions;
3016
+ exports.InterfaceDefinition = InterfaceDefinition;
3017
+ exports.InterfaceDefinitionAlt = InterfaceDefinitionAlt;
3018
+ exports.InterfaceUsage = InterfaceUsage;
3019
+ exports.InterfaceUsageAlt = InterfaceUsageAlt;
3020
+ exports.InterfaceUsage_1 = InterfaceUsage_1;
3021
+ exports.Intersect = Intersect;
3022
+ exports.IntrusionPrevention = IntrusionPrevention;
3023
+ exports.InventoryManagement = InventoryManagement;
3024
+ exports.IotConnect = IotConnect;
3025
+ exports.IotPlatform = IotPlatform;
3026
+ exports.Ip = Ip;
3027
+ exports.Iso = Iso;
3028
+ exports.IsoFilled = IsoFilled;
3029
+ exports.IsoOutline = IsoOutline;
3030
+ exports.ItemDefinition = ItemDefinition;
3031
+ exports.ItemUsage = ItemUsage;
3032
+ exports.JobDaemon = JobDaemon;
3033
+ exports.JobRun = JobRun;
3034
+ exports.JoinFull = JoinFull;
3035
+ exports.JoinInner = JoinInner;
3036
+ exports.JoinInnerAlt = JoinInnerAlt;
3037
+ exports.JoinLeft = JoinLeft;
3038
+ exports.JoinLeftOuter = JoinLeftOuter;
3039
+ exports.JoinNode = JoinNode;
3040
+ exports.JoinOuter = JoinOuter;
3041
+ exports.JoinRight = JoinRight;
3042
+ exports.JoinRightOuter = JoinRightOuter;
3043
+ exports.Jpg = Jpg;
3044
+ exports.JsError = JsError;
3045
+ exports.Json = Json;
3046
+ exports.JsonReference = JsonReference;
3047
+ exports.JumpLink = JumpLink;
3048
+ exports.KeepDry = KeepDry;
3049
+ exports.Key = Key;
3050
+ exports.Keyboard = Keyboard;
3051
+ exports.KeyboardOff = KeyboardOff;
3052
+ exports.KioskDevice = KioskDevice;
3053
+ exports.Kubelet = Kubelet;
3054
+ exports.Kubernetes = Kubernetes;
3055
+ exports.KubernetesControlPlaneNode = KubernetesControlPlaneNode;
3056
+ exports.KubernetesIpAddress = KubernetesIpAddress;
3057
+ exports.KubernetesOperator = KubernetesOperator;
3058
+ exports.KubernetesPod = KubernetesPod;
3059
+ exports.KubernetesWorkerNode = KubernetesWorkerNode;
3060
+ exports.Label = Label;
3061
+ exports.Language = Language;
3062
+ exports.Laptop = Laptop;
3063
+ exports.Lasso = Lasso;
3064
+ exports.LassoPolygon = LassoPolygon;
3065
+ exports.Launch = Launch;
3066
+ exports.Layers = Layers;
3067
+ exports.LayersExternal = LayersExternal;
3068
+ exports.Legend = Legend;
3069
+ exports.LetterAa = LetterAa;
3070
+ exports.LetterBb = LetterBb;
3071
+ exports.LetterCc = LetterCc;
3072
+ exports.LetterDd = LetterDd;
3073
+ exports.LetterEe = LetterEe;
3074
+ exports.LetterFf = LetterFf;
3075
+ exports.LetterGg = LetterGg;
3076
+ exports.LetterHh = LetterHh;
3077
+ exports.LetterIi = LetterIi;
3078
+ exports.LetterJj = LetterJj;
3079
+ exports.LetterKk = LetterKk;
3080
+ exports.LetterLl = LetterLl;
3081
+ exports.LetterMm = LetterMm;
3082
+ exports.LetterNn = LetterNn;
3083
+ exports.LetterOo = LetterOo;
3084
+ exports.LetterPp = LetterPp;
3085
+ exports.LetterQq = LetterQq;
3086
+ exports.LetterRr = LetterRr;
3087
+ exports.LetterSs = LetterSs;
3088
+ exports.LetterTt = LetterTt;
3089
+ exports.LetterUu = LetterUu;
3090
+ exports.LetterVv = LetterVv;
3091
+ exports.LetterWw = LetterWw;
3092
+ exports.LetterXx = LetterXx;
3093
+ exports.LetterYy = LetterYy;
3094
+ exports.LetterZz = LetterZz;
3095
+ exports.License = License;
3096
+ exports.LicenseDraft = LicenseDraft;
3097
+ exports.LicenseGlobal = LicenseGlobal;
3098
+ exports.LicenseMaintenance = LicenseMaintenance;
3099
+ exports.LicenseMaintenanceDraft = LicenseMaintenanceDraft;
3100
+ exports.LicenseThirdParty = LicenseThirdParty;
3101
+ exports.LicenseThirdPartyDraft = LicenseThirdPartyDraft;
3102
+ exports.Lifesaver = Lifesaver;
3103
+ exports.Light = Light;
3104
+ exports.LightFilled = LightFilled;
3105
+ exports.Lightning = Lightning;
3106
+ exports.Link = Link;
3107
+ exports.Linux = Linux;
3108
+ exports.LinuxAlt = LinuxAlt;
3109
+ exports.WatsonHealthInteractiveSegmentationCursor = WatsonHealthInteractiveSegmentationCursor;
3110
+ exports.WatsonHealthLaunchStudy_1 = WatsonHealthLaunchStudy_1;
3111
+ exports.WatsonHealthLaunchStudy_2 = WatsonHealthLaunchStudy_2;
3112
+ exports.WatsonHealthLaunchStudy_3 = WatsonHealthLaunchStudy_3;