@carbon/ibm-products 2.43.2-canary.11 → 2.43.2-canary.112

Sign up to get free protection for your applications and to get access to all the features.
Files changed (416) hide show
  1. package/css/config-dev.css +6 -1
  2. package/css/config-dev.css.map +1 -1
  3. package/css/config.css +6 -1
  4. package/css/config.css.map +1 -1
  5. package/css/index-full-carbon.css +1846 -499
  6. package/css/index-full-carbon.css.map +1 -1
  7. package/css/index-full-carbon.min.css +1 -1
  8. package/css/index-full-carbon.min.css.map +1 -1
  9. package/css/index-without-carbon-released-only.css +267 -65
  10. package/css/index-without-carbon-released-only.css.map +1 -1
  11. package/css/index-without-carbon-released-only.min.css +1 -1
  12. package/css/index-without-carbon-released-only.min.css.map +1 -1
  13. package/css/index-without-carbon.css +1455 -250
  14. package/css/index-without-carbon.css.map +1 -1
  15. package/css/index-without-carbon.min.css +1 -1
  16. package/css/index-without-carbon.min.css.map +1 -1
  17. package/css/index.css +1651 -369
  18. package/css/index.css.map +1 -1
  19. package/css/index.min.css +1 -1
  20. package/css/index.min.css.map +1 -1
  21. package/es/components/APIKeyModal/APIKeyModal.types.d.ts +6 -0
  22. package/es/components/ActionBar/ActionBar.d.ts +58 -2
  23. package/es/components/ActionBar/ActionBar.js +14 -9
  24. package/es/components/ActionBar/ActionBarItem.d.ts +36 -2
  25. package/es/components/ActionBar/ActionBarItem.js +8 -5
  26. package/es/components/ActionBar/ActionBarOverflowItems.d.ts +55 -16
  27. package/es/components/ActionBar/ActionBarOverflowItems.js +8 -4
  28. package/es/components/AddSelect/types/index.d.ts +6 -0
  29. package/es/components/Card/Card.d.ts +68 -2
  30. package/es/components/Card/Card.js +28 -35
  31. package/es/components/Card/CardFooter.d.ts +51 -48
  32. package/es/components/Card/CardFooter.js +4 -2
  33. package/es/components/Card/CardHeader.d.ts +67 -49
  34. package/es/components/Card/CardHeader.js +4 -2
  35. package/es/components/Coachmark/Coachmark.d.ts +6 -1
  36. package/es/components/Coachmark/Coachmark.js +47 -11
  37. package/es/components/Coachmark/CoachmarkOverlay.js +2 -4
  38. package/es/components/Coachmark/utils/enums.d.ts +6 -0
  39. package/es/components/CoachmarkBeacon/CoachmarkBeacon.js +1 -7
  40. package/es/components/CoachmarkFixed/CoachmarkFixed.js +13 -11
  41. package/es/components/CoachmarkStack/CoachmarkStack.js +7 -3
  42. package/es/components/CoachmarkStack/CoachmarkStackHome.js +8 -4
  43. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.d.ts +1 -0
  44. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +90 -56
  45. package/es/components/ConditionBuilder/ConditionBuilder.js +82 -25
  46. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts +15 -0
  47. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +154 -0
  48. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +3 -1
  49. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +29 -13
  50. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.d.ts +8 -1
  51. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +35 -11
  52. package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +18 -10
  53. package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +19 -11
  54. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +9 -13
  55. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +83 -64
  56. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts +13 -7
  57. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +31 -8
  58. package/es/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.d.ts +8 -2
  59. package/es/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.js +35 -24
  60. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.d.ts +43 -36
  61. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +43 -36
  62. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.d.ts +6 -2
  63. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +114 -40
  64. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.d.ts +3 -1
  65. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +24 -9
  66. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +27 -9
  67. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +13 -0
  68. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +114 -0
  69. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/{ConditionBuilderItemOption.d.ts → ItemOptionForValueField.d.ts} +2 -2
  70. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/{ConditionBuilderItemOption.js → ItemOptionForValueField.js} +71 -38
  71. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.d.ts +5 -1
  72. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +22 -9
  73. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +1 -1
  74. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts +1 -3
  75. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +131 -42
  76. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.d.ts +5 -1
  77. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +51 -19
  78. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.d.ts +2 -1
  79. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.js +152 -42
  80. package/es/components/ConditionBuilder/utils/useTranslations.d.ts +1 -0
  81. package/es/components/ConditionBuilder/utils/useTranslations.js +26 -0
  82. package/es/components/ConditionBuilder/utils/util.d.ts +6 -4
  83. package/es/components/ConditionBuilder/utils/util.js +42 -17
  84. package/es/components/CreateFullPage/CreateFullPage.js +2 -2
  85. package/es/components/DataSpreadsheet/DataSpreadsheet.d.ts +26 -0
  86. package/es/components/DataSpreadsheet/DataSpreadsheet.js +129 -53
  87. package/es/components/DataSpreadsheet/DataSpreadsheetBody.d.ts +16 -0
  88. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +32 -7
  89. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.d.ts +8 -0
  90. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +16 -3
  91. package/es/components/DataSpreadsheet/types/index.d.ts +7 -0
  92. package/es/components/Datagrid/Datagrid/Datagrid.d.ts +0 -4
  93. package/es/components/Datagrid/Datagrid/Datagrid.js +4 -9
  94. package/es/components/Datagrid/Datagrid/DatagridBody.d.ts +6 -0
  95. package/es/components/Datagrid/Datagrid/DatagridContent.js +4 -3
  96. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +23 -8
  97. package/es/components/Datagrid/Datagrid/DatagridRefBody.d.ts +6 -0
  98. package/es/components/Datagrid/Datagrid/DatagridRow.js +21 -8
  99. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +6 -6
  100. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +3 -2
  101. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.d.ts +6 -0
  102. package/es/components/Datagrid/Datagrid/DraggableElement.d.ts +6 -0
  103. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +34 -10
  104. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +6 -1
  105. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +6 -1
  106. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.d.ts +6 -3
  107. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +20 -12
  108. package/es/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +7 -0
  109. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.d.ts +1 -1
  110. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +54 -17
  111. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +2 -3
  112. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +75 -12
  113. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +10 -2
  114. package/es/components/Datagrid/common-column-ids.d.ts +6 -0
  115. package/es/components/Datagrid/types/index.d.ts +63 -9
  116. package/es/components/Datagrid/useActionsColumn.d.ts +8 -1
  117. package/es/components/Datagrid/useActionsColumn.js +7 -6
  118. package/es/components/Datagrid/useColumnRightAlign.d.ts +8 -1
  119. package/es/components/Datagrid/useColumnRightAlign.js +4 -3
  120. package/es/components/Datagrid/useCustomizeColumns.d.ts +8 -1
  121. package/es/components/Datagrid/useCustomizeColumns.js +4 -3
  122. package/es/components/Datagrid/useDatagrid.d.ts +6 -0
  123. package/es/components/Datagrid/useDefaultStringRenderer.js +0 -1
  124. package/es/components/Datagrid/useDisableSelectRows.d.ts +8 -1
  125. package/es/components/Datagrid/useDisableSelectRows.js +27 -22
  126. package/es/components/Datagrid/useInlineEdit.js +12 -2
  127. package/es/components/Datagrid/useNestedRowExpander.js +1 -3
  128. package/es/components/Datagrid/useNestedRows.js +32 -13
  129. package/es/components/Datagrid/useRowExpander.js +1 -3
  130. package/es/components/Datagrid/useRowIsMouseOver.d.ts +6 -0
  131. package/es/components/Datagrid/useSelectRows.js +2 -1
  132. package/es/components/Datagrid/useStickyColumn.d.ts +8 -1
  133. package/es/components/Datagrid/useStickyColumn.js +12 -9
  134. package/es/components/EditInPlace/EditInPlace.d.ts +4 -0
  135. package/es/components/EditInPlace/EditInPlace.js +21 -10
  136. package/es/components/EditTearsheet/EditTearsheet.d.ts +7 -2
  137. package/es/components/EditTearsheet/EditTearsheet.js +44 -10
  138. package/es/components/EditTearsheet/EditTearsheetForm.d.ts +45 -2
  139. package/es/components/EditTearsheet/EditTearsheetForm.js +3 -0
  140. package/es/components/EmptyStates/EmptyState.d.ts +72 -5
  141. package/es/components/EmptyStates/EmptyState.js +8 -5
  142. package/es/components/EmptyStates/EmptyStateV2.d.ts +63 -2
  143. package/es/components/EmptyStates/EmptyStateV2.js +3 -2
  144. package/es/components/FullPageError/FullPageError.d.ts +36 -2
  145. package/es/components/FullPageError/FullPageError.js +0 -3
  146. package/es/components/GetStartedCard/GetStartedCard.d.ts +60 -2
  147. package/es/components/GetStartedCard/GetStartedCard.js +11 -10
  148. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +6 -0
  149. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +6 -0
  150. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +6 -0
  151. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +204 -200
  152. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +116 -112
  153. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +110 -106
  154. package/es/components/Nav/NavItem.js +12 -3
  155. package/es/components/OptionsTile/OptionsTile.js +11 -6
  156. package/es/components/PageHeader/PageHeader.js +1 -0
  157. package/es/components/PageHeader/PageHeaderUtils.js +1 -1
  158. package/es/components/RemoveModal/RemoveModal.d.ts +4 -0
  159. package/es/components/RemoveModal/RemoveModal.js +7 -1
  160. package/es/components/SearchBar/SearchBar.d.ts +1 -1
  161. package/es/components/SearchBar/SearchBar.js +2 -2
  162. package/es/components/SidePanel/SidePanel.js +17 -21
  163. package/es/components/SidePanel/motion/variants.d.ts +4 -6
  164. package/es/components/SidePanel/motion/variants.js +10 -11
  165. package/es/components/StatusIndicator/StatusIndicatorStep.js +87 -0
  166. package/es/components/StringFormatter/StringFormatter.js +14 -3
  167. package/es/components/StringFormatter/utils/enums.d.ts +20 -1
  168. package/es/components/StringFormatter/utils/enums.js +29 -2
  169. package/es/components/TagOverflow/TagOverflow.d.ts +35 -4
  170. package/es/components/TagOverflow/TagOverflow.js +47 -64
  171. package/es/components/TagOverflow/TagOverflowModal.js +4 -6
  172. package/es/components/TagOverflow/TagOverflowPopover.d.ts +13 -1
  173. package/es/components/TagOverflow/TagOverflowPopover.js +38 -41
  174. package/es/components/Tearsheet/Tearsheet.d.ts +8 -1
  175. package/es/components/Tearsheet/Tearsheet.js +9 -1
  176. package/es/components/Tearsheet/TearsheetNarrow.d.ts +11 -0
  177. package/es/components/Tearsheet/TearsheetNarrow.js +12 -0
  178. package/es/components/Tearsheet/TearsheetShell.d.ts +11 -1
  179. package/es/components/Tearsheet/TearsheetShell.js +28 -7
  180. package/es/components/Toolbar/ToolbarButton.js +1 -1
  181. package/es/components/UserAvatar/UserAvatar.d.ts +59 -1
  182. package/es/components/UserAvatar/UserAvatar.js +7 -23
  183. package/es/components/WebTerminal/WebTerminal.js +10 -12
  184. package/es/components/index.d.ts +1 -1
  185. package/es/global/js/hooks/useFocus.d.ts +1 -0
  186. package/es/global/js/hooks/useFocus.js +5 -2
  187. package/es/global/js/hooks/usePrefersReducedMotion.js +14 -8
  188. package/es/global/js/package-settings.d.ts +1 -1
  189. package/es/global/js/package-settings.js +1 -1
  190. package/es/global/js/utils/scrollableAncestor.js +7 -0
  191. package/es/global/js/utils/uuidv4.d.ts +6 -0
  192. package/es/global/js/utils/uuidv4.js +2 -0
  193. package/es/global/js/utils/wait.d.ts +6 -0
  194. package/es/global/js/utils/wait.js +2 -0
  195. package/es/index.js +1 -0
  196. package/es/node_modules/@carbon/icon-helpers/es/index.js +49 -62
  197. package/es/node_modules/@carbon/icons-react/es/generated/bucket-2.js +1020 -1058
  198. package/es/node_modules/@carbon/icons-react/es/generated/bucket-9.js +881 -758
  199. package/es/settings.d.ts +1 -1
  200. package/flags.js +7 -0
  201. package/lib/components/APIKeyModal/APIKeyModal.types.d.ts +6 -0
  202. package/lib/components/ActionBar/ActionBar.d.ts +58 -2
  203. package/lib/components/ActionBar/ActionBar.js +14 -9
  204. package/lib/components/ActionBar/ActionBarItem.d.ts +36 -2
  205. package/lib/components/ActionBar/ActionBarItem.js +7 -4
  206. package/lib/components/ActionBar/ActionBarOverflowItems.d.ts +55 -16
  207. package/lib/components/ActionBar/ActionBarOverflowItems.js +8 -4
  208. package/lib/components/AddSelect/types/index.d.ts +6 -0
  209. package/lib/components/Card/Card.d.ts +68 -2
  210. package/lib/components/Card/Card.js +28 -35
  211. package/lib/components/Card/CardFooter.d.ts +51 -48
  212. package/lib/components/Card/CardFooter.js +4 -2
  213. package/lib/components/Card/CardHeader.d.ts +67 -49
  214. package/lib/components/Card/CardHeader.js +4 -2
  215. package/lib/components/Coachmark/Coachmark.d.ts +6 -1
  216. package/lib/components/Coachmark/Coachmark.js +46 -10
  217. package/lib/components/Coachmark/CoachmarkOverlay.js +2 -4
  218. package/lib/components/Coachmark/utils/enums.d.ts +6 -0
  219. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +1 -7
  220. package/lib/components/CoachmarkFixed/CoachmarkFixed.js +13 -11
  221. package/lib/components/CoachmarkStack/CoachmarkStack.js +7 -3
  222. package/lib/components/CoachmarkStack/CoachmarkStackHome.js +8 -4
  223. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.d.ts +1 -0
  224. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +87 -53
  225. package/lib/components/ConditionBuilder/ConditionBuilder.js +82 -25
  226. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts +15 -0
  227. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +163 -0
  228. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +3 -1
  229. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +28 -11
  230. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.d.ts +8 -1
  231. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +33 -9
  232. package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +16 -8
  233. package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +18 -10
  234. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +9 -13
  235. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +81 -62
  236. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts +13 -7
  237. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +31 -8
  238. package/lib/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.d.ts +8 -2
  239. package/lib/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.js +34 -24
  240. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.d.ts +43 -36
  241. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +43 -36
  242. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.d.ts +6 -2
  243. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +112 -38
  244. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.d.ts +3 -1
  245. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +24 -9
  246. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +28 -10
  247. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +13 -0
  248. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +122 -0
  249. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/{ConditionBuilderItemOption.d.ts → ItemOptionForValueField.d.ts} +2 -2
  250. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/{ConditionBuilderItemOption.js → ItemOptionForValueField.js} +68 -35
  251. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.d.ts +5 -1
  252. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +21 -8
  253. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +1 -1
  254. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts +1 -3
  255. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +128 -39
  256. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.d.ts +5 -1
  257. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +50 -17
  258. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.d.ts +2 -1
  259. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +152 -41
  260. package/lib/components/ConditionBuilder/utils/useTranslations.d.ts +1 -0
  261. package/lib/components/ConditionBuilder/utils/useTranslations.js +30 -0
  262. package/lib/components/ConditionBuilder/utils/util.d.ts +6 -4
  263. package/lib/components/ConditionBuilder/utils/util.js +44 -16
  264. package/lib/components/CreateFullPage/CreateFullPage.js +2 -2
  265. package/lib/components/DataSpreadsheet/DataSpreadsheet.d.ts +26 -0
  266. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +129 -53
  267. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.d.ts +16 -0
  268. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +32 -7
  269. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.d.ts +8 -0
  270. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +16 -3
  271. package/lib/components/DataSpreadsheet/types/index.d.ts +7 -0
  272. package/lib/components/Datagrid/Datagrid/Datagrid.d.ts +0 -4
  273. package/lib/components/Datagrid/Datagrid/Datagrid.js +4 -9
  274. package/lib/components/Datagrid/Datagrid/DatagridBody.d.ts +6 -0
  275. package/lib/components/Datagrid/Datagrid/DatagridContent.js +4 -3
  276. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +23 -8
  277. package/lib/components/Datagrid/Datagrid/DatagridRefBody.d.ts +6 -0
  278. package/lib/components/Datagrid/Datagrid/DatagridRow.js +21 -8
  279. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +6 -6
  280. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +3 -2
  281. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.d.ts +6 -0
  282. package/lib/components/Datagrid/Datagrid/DraggableElement.d.ts +6 -0
  283. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +34 -10
  284. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +6 -1
  285. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +6 -1
  286. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.d.ts +6 -3
  287. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +20 -12
  288. package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +7 -0
  289. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.d.ts +1 -1
  290. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +53 -16
  291. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +2 -3
  292. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +74 -11
  293. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +10 -2
  294. package/lib/components/Datagrid/common-column-ids.d.ts +6 -0
  295. package/lib/components/Datagrid/types/index.d.ts +63 -9
  296. package/lib/components/Datagrid/useActionsColumn.d.ts +8 -1
  297. package/lib/components/Datagrid/useActionsColumn.js +7 -6
  298. package/lib/components/Datagrid/useColumnRightAlign.d.ts +8 -1
  299. package/lib/components/Datagrid/useColumnRightAlign.js +4 -3
  300. package/lib/components/Datagrid/useCustomizeColumns.d.ts +8 -1
  301. package/lib/components/Datagrid/useCustomizeColumns.js +4 -3
  302. package/lib/components/Datagrid/useDatagrid.d.ts +6 -0
  303. package/lib/components/Datagrid/useDefaultStringRenderer.js +0 -1
  304. package/lib/components/Datagrid/useDisableSelectRows.d.ts +8 -1
  305. package/lib/components/Datagrid/useDisableSelectRows.js +27 -22
  306. package/lib/components/Datagrid/useInlineEdit.js +12 -2
  307. package/lib/components/Datagrid/useNestedRowExpander.js +1 -3
  308. package/lib/components/Datagrid/useNestedRows.js +32 -13
  309. package/lib/components/Datagrid/useRowExpander.js +1 -3
  310. package/lib/components/Datagrid/useRowIsMouseOver.d.ts +6 -0
  311. package/lib/components/Datagrid/useSelectRows.js +2 -1
  312. package/lib/components/Datagrid/useStickyColumn.d.ts +8 -1
  313. package/lib/components/Datagrid/useStickyColumn.js +12 -9
  314. package/lib/components/EditInPlace/EditInPlace.d.ts +4 -0
  315. package/lib/components/EditInPlace/EditInPlace.js +21 -10
  316. package/lib/components/EditTearsheet/EditTearsheet.d.ts +7 -2
  317. package/lib/components/EditTearsheet/EditTearsheet.js +43 -9
  318. package/lib/components/EditTearsheet/EditTearsheetForm.d.ts +45 -2
  319. package/lib/components/EditTearsheet/EditTearsheetForm.js +3 -0
  320. package/lib/components/EmptyStates/EmptyState.d.ts +72 -5
  321. package/lib/components/EmptyStates/EmptyState.js +8 -5
  322. package/lib/components/EmptyStates/EmptyStateV2.d.ts +63 -2
  323. package/lib/components/EmptyStates/EmptyStateV2.js +3 -2
  324. package/lib/components/FullPageError/FullPageError.d.ts +36 -2
  325. package/lib/components/FullPageError/FullPageError.js +0 -3
  326. package/lib/components/GetStartedCard/GetStartedCard.d.ts +60 -2
  327. package/lib/components/GetStartedCard/GetStartedCard.js +10 -9
  328. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +6 -0
  329. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +6 -0
  330. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +6 -0
  331. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +204 -200
  332. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +116 -112
  333. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +110 -106
  334. package/lib/components/Nav/NavItem.js +10 -1
  335. package/lib/components/OptionsTile/OptionsTile.js +11 -6
  336. package/lib/components/PageHeader/PageHeader.js +1 -0
  337. package/lib/components/PageHeader/PageHeaderUtils.js +1 -1
  338. package/lib/components/RemoveModal/RemoveModal.d.ts +4 -0
  339. package/lib/components/RemoveModal/RemoveModal.js +7 -1
  340. package/lib/components/SearchBar/SearchBar.d.ts +1 -1
  341. package/lib/components/SearchBar/SearchBar.js +2 -2
  342. package/lib/components/SidePanel/SidePanel.js +16 -20
  343. package/lib/components/SidePanel/motion/variants.d.ts +4 -6
  344. package/lib/components/SidePanel/motion/variants.js +10 -11
  345. package/lib/components/StatusIndicator/StatusIndicatorStep.js +94 -0
  346. package/lib/components/StringFormatter/StringFormatter.js +13 -2
  347. package/lib/components/StringFormatter/utils/enums.d.ts +20 -1
  348. package/lib/components/StringFormatter/utils/enums.js +30 -1
  349. package/lib/components/TagOverflow/TagOverflow.d.ts +35 -4
  350. package/lib/components/TagOverflow/TagOverflow.js +46 -63
  351. package/lib/components/TagOverflow/TagOverflowModal.js +4 -6
  352. package/lib/components/TagOverflow/TagOverflowPopover.d.ts +13 -1
  353. package/lib/components/TagOverflow/TagOverflowPopover.js +37 -40
  354. package/lib/components/Tearsheet/Tearsheet.d.ts +8 -1
  355. package/lib/components/Tearsheet/Tearsheet.js +9 -1
  356. package/lib/components/Tearsheet/TearsheetNarrow.d.ts +11 -0
  357. package/lib/components/Tearsheet/TearsheetNarrow.js +12 -0
  358. package/lib/components/Tearsheet/TearsheetShell.d.ts +11 -1
  359. package/lib/components/Tearsheet/TearsheetShell.js +26 -5
  360. package/lib/components/Toolbar/ToolbarButton.js +1 -1
  361. package/lib/components/UserAvatar/UserAvatar.d.ts +59 -1
  362. package/lib/components/UserAvatar/UserAvatar.js +7 -23
  363. package/lib/components/WebTerminal/WebTerminal.js +10 -12
  364. package/lib/components/index.d.ts +1 -1
  365. package/lib/global/js/hooks/useFocus.d.ts +1 -0
  366. package/lib/global/js/hooks/useFocus.js +5 -1
  367. package/lib/global/js/hooks/usePrefersReducedMotion.js +13 -7
  368. package/lib/global/js/package-settings.d.ts +1 -1
  369. package/lib/global/js/package-settings.js +1 -1
  370. package/lib/global/js/utils/scrollableAncestor.js +7 -0
  371. package/lib/global/js/utils/uuidv4.d.ts +6 -0
  372. package/lib/global/js/utils/uuidv4.js +2 -0
  373. package/lib/global/js/utils/wait.d.ts +6 -0
  374. package/lib/global/js/utils/wait.js +2 -0
  375. package/lib/index.js +5 -0
  376. package/lib/node_modules/@carbon/icon-helpers/es/index.js +49 -62
  377. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-2.js +1036 -1074
  378. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-9.js +946 -823
  379. package/lib/settings.d.ts +1 -1
  380. package/package.json +8 -7
  381. package/scss/components/Coachmark/_coachmark-overlay.scss +6 -70
  382. package/scss/components/Coachmark/_coachmark.scss +5 -4
  383. package/scss/components/CoachmarkBeacon/_coachmark-beacon.scss +1 -3
  384. package/scss/components/ConditionBuilder/_condition-builder.scss +8 -1
  385. package/scss/components/ConditionBuilder/styles/_conditionBuilderCondition.scss +38 -5
  386. package/scss/components/ConditionBuilder/styles/_conditionBuilderItem.scss +68 -22
  387. package/scss/components/ConditionBuilder/styles/_index.scss +7 -0
  388. package/scss/components/CreateModal/_create-modal.scss +0 -4
  389. package/scss/components/DataSpreadsheet/_data-spreadsheet.scss +16 -2
  390. package/scss/components/Datagrid/_datagrid.scss +0 -4
  391. package/scss/components/Datagrid/styles/_datagrid.scss +1 -0
  392. package/scss/components/Datagrid/styles/_useActionsColumn.scss +6 -7
  393. package/scss/components/Datagrid/styles/_useColumnRightAlign.scss +6 -7
  394. package/scss/components/Datagrid/styles/_useExpandedRow.scss +6 -7
  395. package/scss/components/Datagrid/styles/_useInlineEdit.scss +19 -7
  396. package/scss/components/Datagrid/styles/_useNestedRows.scss +6 -7
  397. package/scss/components/Datagrid/styles/_useNestedTable.scss +6 -7
  398. package/scss/components/Datagrid/styles/_useStickyColumn.scss +6 -7
  399. package/scss/components/Datagrid/styles/addons/_CustomizeColumnsTearsheet.scss +7 -5
  400. package/scss/components/Datagrid/styles/addons/_FilterFlyout.scss +5 -4
  401. package/scss/components/Datagrid/styles/addons/_RowSizeDropdown.scss +6 -7
  402. package/scss/components/HTTPErrors/_http-errors.scss +77 -0
  403. package/scss/components/OptionsTile/_options-tile.scss +6 -6
  404. package/scss/components/SidePanel/_side-panel.scss +1 -1
  405. package/scss/components/_index-released-only.scss +1 -0
  406. package/scss/config-dev.scss +7 -0
  407. package/scss/config.scss +7 -0
  408. package/telemetry.yml +32 -19
  409. package/es/components/ConditionBuilder/utils/checkForHoldingKey.d.ts +0 -1
  410. package/es/components/ConditionBuilder/utils/checkForHoldingKey.js +0 -16
  411. package/es/global/js/utils/window.d.ts +0 -2
  412. package/es/global/js/utils/window.js +0 -12
  413. package/lib/components/ConditionBuilder/utils/checkForHoldingKey.d.ts +0 -1
  414. package/lib/components/ConditionBuilder/utils/checkForHoldingKey.js +0 -20
  415. package/lib/global/js/utils/window.d.ts +0 -2
  416. package/lib/global/js/utils/window.js +0 -16
@@ -7,8 +7,12 @@
7
7
 
8
8
  import React__default from 'react';
9
9
  import { p as propTypesExports } from '../../../node_modules/prop-types/index.js';
10
+ import { pkg } from '../../../settings.js';
10
11
 
11
- var _defs, _g, _path, _g2, _image, _g3, _g4, _image2, _g5, _g6, _image3, _g7, _g8, _image4, _g9, _g10, _image5, _g11, _g12, _image6, _g13, _g14, _image7, _g15, _g16, _image8, _g17, _g18, _image9, _g19, _g20, _image10, _g21, _g22, _image11, _g23, _g24, _image12, _g25, _g26, _image13, _g27, _g28, _image14, _g29, _g30, _image15, _g31, _g32, _image16, _g33, _g34, _image17, _g35, _g36, _image18, _g37, _g38, _image19, _g39, _g40, _image20, _g41, _g42, _image21, _g43, _g44, _image22, _g45, _g46, _image23, _g47, _g48, _image24, _g49, _g50, _image25, _g51, _g52, _image26, _g53, _g54, _image27, _g55, _g56, _image28, _g57, _g58, _image29, _g59, _g60, _image30, _g61, _path2, _path3, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _path11, _path12, _path13, _path14, _path15, _path16, _path17, _path18, _path19, _path20, _path21, _path22, _path23;
12
+ var _linearGradient, _linearGradient2, _linearGradient3, _linearGradient4, _linearGradient5, _g, _path, _g2, _image, _g3, _g4, _image2, _g5, _g6, _image3, _g7, _g8, _image4, _g9, _g10, _image5, _g11, _g12, _image6, _g13, _g14, _image7, _g15, _g16, _image8, _g17, _g18, _image9, _g19, _g20, _image10, _g21, _g22, _image11, _g23, _g24, _image12, _g25, _g26, _image13, _g27, _g28, _image14, _g29, _g30, _image15, _g31, _g32, _image16, _g33, _g34, _image17, _g35, _g36, _image18, _g37, _g38, _image19, _g39, _g40, _image20, _g41, _g42, _image21, _g43, _g44, _image22, _g45, _g46, _image23, _g47, _g48, _image24, _g49, _g50, _image25, _g51, _g52, _image26, _g53, _g54, _image27, _g55, _g56, _image28, _g57, _g58, _image29, _g59, _g60, _image30, _g61, _path2, _path3, _path4, _path5, _path6;
13
+
14
+ // The block part of our conventional BEM class names (blockClass__E--M).
15
+ var blockClass = "".concat(pkg.prefix, "--http-errors-other");
12
16
  var HTTPErrorSvgOther = function HTTPErrorSvgOther(_ref) {
13
17
  var className = _ref.className;
14
18
  return /*#__PURE__*/React__default.createElement("svg", {
@@ -17,307 +21,307 @@ var HTTPErrorSvgOther = function HTTPErrorSvgOther(_ref) {
17
21
  viewBox: "0 0 1584 916",
18
22
  className: className,
19
23
  preserveAspectRatio: "xMinYMax meet"
20
- }, _defs || (_defs = /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
24
+ }, /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
21
25
  id: "prefix__clip-path"
22
26
  }, /*#__PURE__*/React__default.createElement("path", {
23
- className: "prefix__cls-1",
27
+ className: "".concat(blockClass, "__prefix-cls-1"),
24
28
  d: "M412 617.45a4 4 0 114 6.93z"
25
29
  })), /*#__PURE__*/React__default.createElement("clipPath", {
26
30
  id: "prefix__clip-path-2"
27
31
  }, /*#__PURE__*/React__default.createElement("path", {
28
- className: "prefix__cls-1",
32
+ className: "".concat(blockClass, "__prefix-cls-1"),
29
33
  d: "M416 624.38a4 4 0 11-4-6.93z"
30
34
  })), /*#__PURE__*/React__default.createElement("clipPath", {
31
35
  id: "prefix__clip-path-3"
32
36
  }, /*#__PURE__*/React__default.createElement("path", {
33
- className: "prefix__cls-1",
37
+ className: "".concat(blockClass, "__prefix-cls-1"),
34
38
  d: "M398.19 625.45a4 4 0 014 6.93z"
35
39
  })), /*#__PURE__*/React__default.createElement("clipPath", {
36
40
  id: "prefix__clip-path-4"
37
41
  }, /*#__PURE__*/React__default.createElement("path", {
38
- className: "prefix__cls-1",
42
+ className: "".concat(blockClass, "__prefix-cls-1"),
39
43
  d: "M402.19 632.38a4 4 0 11-4-6.93z"
40
44
  })), /*#__PURE__*/React__default.createElement("clipPath", {
41
45
  id: "prefix__clip-path-5"
42
46
  }, /*#__PURE__*/React__default.createElement("path", {
43
- className: "prefix__cls-1",
47
+ className: "".concat(blockClass, "__prefix-cls-1"),
44
48
  d: "M384.33 633.45a4 4 0 014 6.93z"
45
49
  })), /*#__PURE__*/React__default.createElement("clipPath", {
46
50
  id: "prefix__clip-path-6"
47
51
  }, /*#__PURE__*/React__default.createElement("path", {
48
- className: "prefix__cls-1",
52
+ className: "".concat(blockClass, "__prefix-cls-1"),
49
53
  d: "M388.33 640.38a4 4 0 01-4-6.93z"
50
54
  })), /*#__PURE__*/React__default.createElement("clipPath", {
51
55
  id: "prefix__clip-path-7"
52
56
  }, /*#__PURE__*/React__default.createElement("path", {
53
- className: "prefix__cls-1",
57
+ className: "".concat(blockClass, "__prefix-cls-1"),
54
58
  d: "M370.48 641.45a4 4 0 114 6.93z"
55
59
  })), /*#__PURE__*/React__default.createElement("clipPath", {
56
60
  id: "prefix__clip-path-8"
57
61
  }, /*#__PURE__*/React__default.createElement("path", {
58
- className: "prefix__cls-1",
62
+ className: "".concat(blockClass, "__prefix-cls-1"),
59
63
  d: "M374.48 648.38a4 4 0 11-4-6.93z"
60
64
  })), /*#__PURE__*/React__default.createElement("clipPath", {
61
65
  id: "prefix__clip-path-9"
62
66
  }, /*#__PURE__*/React__default.createElement("path", {
63
- className: "prefix__cls-1",
67
+ className: "".concat(blockClass, "__prefix-cls-1"),
64
68
  d: "M356.62 649.45a4 4 0 014 6.93z"
65
69
  })), /*#__PURE__*/React__default.createElement("clipPath", {
66
70
  id: "prefix__clip-path-10"
67
71
  }, /*#__PURE__*/React__default.createElement("path", {
68
- className: "prefix__cls-1",
72
+ className: "".concat(blockClass, "__prefix-cls-1"),
69
73
  d: "M360.62 656.38a4 4 0 01-4-6.93z"
70
74
  })), /*#__PURE__*/React__default.createElement("clipPath", {
71
75
  id: "prefix__clip-path-11"
72
76
  }, /*#__PURE__*/React__default.createElement("path", {
73
- className: "prefix__cls-1",
77
+ className: "".concat(blockClass, "__prefix-cls-1"),
74
78
  d: "M342.76 657.45a4 4 0 014 6.93z"
75
79
  })), /*#__PURE__*/React__default.createElement("clipPath", {
76
80
  id: "prefix__clip-path-12"
77
81
  }, /*#__PURE__*/React__default.createElement("path", {
78
- className: "prefix__cls-1",
82
+ className: "".concat(blockClass, "__prefix-cls-1"),
79
83
  d: "M346.76 664.38a4 4 0 01-4-6.93z"
80
84
  })), /*#__PURE__*/React__default.createElement("clipPath", {
81
85
  id: "prefix__clip-path-13"
82
86
  }, /*#__PURE__*/React__default.createElement("path", {
83
- className: "prefix__cls-1",
87
+ className: "".concat(blockClass, "__prefix-cls-1"),
84
88
  d: "M328.91 665.45a4 4 0 114 6.93z"
85
89
  })), /*#__PURE__*/React__default.createElement("clipPath", {
86
90
  id: "prefix__clip-path-14"
87
91
  }, /*#__PURE__*/React__default.createElement("path", {
88
- className: "prefix__cls-1",
92
+ className: "".concat(blockClass, "__prefix-cls-1"),
89
93
  d: "M332.91 672.38a4 4 0 11-4-6.93z"
90
94
  })), /*#__PURE__*/React__default.createElement("clipPath", {
91
95
  id: "prefix__clip-path-15"
92
96
  }, /*#__PURE__*/React__default.createElement("path", {
93
- className: "prefix__cls-1",
97
+ className: "".concat(blockClass, "__prefix-cls-1"),
94
98
  d: "M315.05 673.45a4 4 0 014 6.93z"
95
99
  })), /*#__PURE__*/React__default.createElement("clipPath", {
96
100
  id: "prefix__clip-path-16"
97
101
  }, /*#__PURE__*/React__default.createElement("path", {
98
- className: "prefix__cls-1",
102
+ className: "".concat(blockClass, "__prefix-cls-1"),
99
103
  d: "M319.05 680.38a4 4 0 01-4-6.93z"
100
104
  })), /*#__PURE__*/React__default.createElement("clipPath", {
101
105
  id: "prefix__clip-path-17"
102
106
  }, /*#__PURE__*/React__default.createElement("path", {
103
- className: "prefix__cls-1",
107
+ className: "".concat(blockClass, "__prefix-cls-1"),
104
108
  d: "M301.19 681.45a4 4 0 114 6.93z"
105
109
  })), /*#__PURE__*/React__default.createElement("clipPath", {
106
110
  id: "prefix__clip-path-18"
107
111
  }, /*#__PURE__*/React__default.createElement("path", {
108
- className: "prefix__cls-1",
112
+ className: "".concat(blockClass, "__prefix-cls-1"),
109
113
  d: "M305.19 688.38a4 4 0 01-4-6.93z"
110
114
  })), /*#__PURE__*/React__default.createElement("clipPath", {
111
115
  id: "prefix__clip-path-19"
112
116
  }, /*#__PURE__*/React__default.createElement("path", {
113
- className: "prefix__cls-1",
117
+ className: "".concat(blockClass, "__prefix-cls-1"),
114
118
  d: "M287.34 689.45a4 4 0 014 6.93z"
115
119
  })), /*#__PURE__*/React__default.createElement("clipPath", {
116
120
  id: "prefix__clip-path-20"
117
121
  }, /*#__PURE__*/React__default.createElement("path", {
118
- className: "prefix__cls-1",
122
+ className: "".concat(blockClass, "__prefix-cls-1"),
119
123
  d: "M291.34 696.38a4 4 0 11-4-6.93z"
120
124
  })), /*#__PURE__*/React__default.createElement("clipPath", {
121
125
  id: "prefix__clip-path-21"
122
126
  }, /*#__PURE__*/React__default.createElement("path", {
123
- className: "prefix__cls-1",
127
+ className: "".concat(blockClass, "__prefix-cls-1"),
124
128
  d: "M273.48 697.45a4 4 0 014 6.93z"
125
129
  })), /*#__PURE__*/React__default.createElement("clipPath", {
126
130
  id: "prefix__clip-path-22"
127
131
  }, /*#__PURE__*/React__default.createElement("path", {
128
- className: "prefix__cls-1",
132
+ className: "".concat(blockClass, "__prefix-cls-1"),
129
133
  d: "M277.48 704.38a4 4 0 01-4-6.93z"
130
134
  })), /*#__PURE__*/React__default.createElement("clipPath", {
131
135
  id: "prefix__clip-path-23"
132
136
  }, /*#__PURE__*/React__default.createElement("path", {
133
- className: "prefix__cls-1",
137
+ className: "".concat(blockClass, "__prefix-cls-1"),
134
138
  d: "M259.62 705.45a4 4 0 114 6.93z"
135
139
  })), /*#__PURE__*/React__default.createElement("clipPath", {
136
140
  id: "prefix__clip-path-24"
137
141
  }, /*#__PURE__*/React__default.createElement("path", {
138
- className: "prefix__cls-1",
142
+ className: "".concat(blockClass, "__prefix-cls-1"),
139
143
  d: "M263.62 712.38a4 4 0 11-4-6.93z"
140
144
  })), /*#__PURE__*/React__default.createElement("clipPath", {
141
145
  id: "prefix__clip-path-25"
142
146
  }, /*#__PURE__*/React__default.createElement("path", {
143
- className: "prefix__cls-1",
147
+ className: "".concat(blockClass, "__prefix-cls-1"),
144
148
  d: "M245.77 713.45a4 4 0 014 6.93z"
145
149
  })), /*#__PURE__*/React__default.createElement("clipPath", {
146
150
  id: "prefix__clip-path-26"
147
151
  }, /*#__PURE__*/React__default.createElement("path", {
148
- className: "prefix__cls-1",
152
+ className: "".concat(blockClass, "__prefix-cls-1"),
149
153
  d: "M249.77 720.38a4 4 0 11-4-6.93z"
150
154
  })), /*#__PURE__*/React__default.createElement("clipPath", {
151
155
  id: "prefix__clip-path-27"
152
156
  }, /*#__PURE__*/React__default.createElement("path", {
153
- className: "prefix__cls-1",
157
+ className: "".concat(blockClass, "__prefix-cls-1"),
154
158
  d: "M231.91 721.45a4 4 0 014 6.93z"
155
159
  })), /*#__PURE__*/React__default.createElement("clipPath", {
156
160
  id: "prefix__clip-path-28"
157
161
  }, /*#__PURE__*/React__default.createElement("path", {
158
- className: "prefix__cls-1",
162
+ className: "".concat(blockClass, "__prefix-cls-1"),
159
163
  d: "M235.91 728.38a4 4 0 01-4-6.93z"
160
164
  })), /*#__PURE__*/React__default.createElement("clipPath", {
161
165
  id: "prefix__clip-path-29"
162
166
  }, /*#__PURE__*/React__default.createElement("path", {
163
- className: "prefix__cls-1",
167
+ className: "".concat(blockClass, "__prefix-cls-1"),
164
168
  d: "M218.05 729.45a4 4 0 114 6.93z"
165
169
  })), /*#__PURE__*/React__default.createElement("clipPath", {
166
170
  id: "prefix__clip-path-30"
167
171
  }, /*#__PURE__*/React__default.createElement("path", {
168
- className: "prefix__cls-1",
172
+ className: "".concat(blockClass, "__prefix-cls-1"),
169
173
  d: "M222.05 736.38a4 4 0 11-4-6.93z"
170
174
  })), /*#__PURE__*/React__default.createElement("clipPath", {
171
175
  id: "prefix__clip-path-31"
172
176
  }, /*#__PURE__*/React__default.createElement("path", {
173
- className: "prefix__cls-1",
177
+ className: "".concat(blockClass, "__prefix-cls-1"),
174
178
  d: "M204.2 737.45a4 4 0 014 6.93z"
175
179
  })), /*#__PURE__*/React__default.createElement("clipPath", {
176
180
  id: "prefix__clip-path-32"
177
181
  }, /*#__PURE__*/React__default.createElement("path", {
178
- className: "prefix__cls-1",
182
+ className: "".concat(blockClass, "__prefix-cls-1"),
179
183
  d: "M208.2 744.38a4 4 0 01-4-6.93z"
180
184
  })), /*#__PURE__*/React__default.createElement("clipPath", {
181
185
  id: "prefix__clip-path-33"
182
186
  }, /*#__PURE__*/React__default.createElement("path", {
183
- className: "prefix__cls-1",
187
+ className: "".concat(blockClass, "__prefix-cls-1"),
184
188
  d: "M190.34 745.45a4 4 0 014 6.93z"
185
189
  })), /*#__PURE__*/React__default.createElement("clipPath", {
186
190
  id: "prefix__clip-path-34"
187
191
  }, /*#__PURE__*/React__default.createElement("path", {
188
- className: "prefix__cls-1",
192
+ className: "".concat(blockClass, "__prefix-cls-1"),
189
193
  d: "M194.34 752.38a4 4 0 01-4-6.93z"
190
194
  })), /*#__PURE__*/React__default.createElement("clipPath", {
191
195
  id: "prefix__clip-path-35"
192
196
  }, /*#__PURE__*/React__default.createElement("path", {
193
- className: "prefix__cls-1",
197
+ className: "".concat(blockClass, "__prefix-cls-1"),
194
198
  d: "M176.49 753.45a4 4 0 114 6.93z"
195
199
  })), /*#__PURE__*/React__default.createElement("clipPath", {
196
200
  id: "prefix__clip-path-36"
197
201
  }, /*#__PURE__*/React__default.createElement("path", {
198
- className: "prefix__cls-1",
202
+ className: "".concat(blockClass, "__prefix-cls-1"),
199
203
  d: "M180.49 760.38a4 4 0 11-4-6.93z"
200
204
  })), /*#__PURE__*/React__default.createElement("clipPath", {
201
205
  id: "prefix__clip-path-37"
202
206
  }, /*#__PURE__*/React__default.createElement("path", {
203
- className: "prefix__cls-1",
207
+ className: "".concat(blockClass, "__prefix-cls-1"),
204
208
  d: "M162.63 761.45a4 4 0 014 6.93z"
205
209
  })), /*#__PURE__*/React__default.createElement("clipPath", {
206
210
  id: "prefix__clip-path-38"
207
211
  }, /*#__PURE__*/React__default.createElement("path", {
208
- className: "prefix__cls-1",
212
+ className: "".concat(blockClass, "__prefix-cls-1"),
209
213
  d: "M166.63 768.38a4 4 0 01-4-6.93z"
210
214
  })), /*#__PURE__*/React__default.createElement("clipPath", {
211
215
  id: "prefix__clip-path-39"
212
216
  }, /*#__PURE__*/React__default.createElement("path", {
213
- className: "prefix__cls-1",
217
+ className: "".concat(blockClass, "__prefix-cls-1"),
214
218
  d: "M148.77 769.45a4 4 0 114 6.93z"
215
219
  })), /*#__PURE__*/React__default.createElement("clipPath", {
216
220
  id: "prefix__clip-path-40"
217
221
  }, /*#__PURE__*/React__default.createElement("path", {
218
- className: "prefix__cls-1",
222
+ className: "".concat(blockClass, "__prefix-cls-1"),
219
223
  d: "M152.77 776.38a4 4 0 01-4-6.93z"
220
224
  })), /*#__PURE__*/React__default.createElement("clipPath", {
221
225
  id: "prefix__clip-path-41"
222
226
  }, /*#__PURE__*/React__default.createElement("path", {
223
- className: "prefix__cls-1",
227
+ className: "".concat(blockClass, "__prefix-cls-1"),
224
228
  d: "M138.92 768.48a4 4 0 11-4 6.93z"
225
229
  })), /*#__PURE__*/React__default.createElement("clipPath", {
226
230
  id: "prefix__clip-path-42"
227
231
  }, /*#__PURE__*/React__default.createElement("path", {
228
- className: "prefix__cls-1",
232
+ className: "".concat(blockClass, "__prefix-cls-1"),
229
233
  d: "M134.92 775.41a4 4 0 114-6.93z"
230
234
  })), /*#__PURE__*/React__default.createElement("clipPath", {
231
235
  id: "prefix__clip-path-43"
232
236
  }, /*#__PURE__*/React__default.createElement("path", {
233
- className: "prefix__cls-1",
237
+ className: "".concat(blockClass, "__prefix-cls-1"),
234
238
  d: "M125.06 760.48a4 4 0 01-4 6.93z"
235
239
  })), /*#__PURE__*/React__default.createElement("clipPath", {
236
240
  id: "prefix__clip-path-44"
237
241
  }, /*#__PURE__*/React__default.createElement("path", {
238
- className: "prefix__cls-1",
242
+ className: "".concat(blockClass, "__prefix-cls-1"),
239
243
  d: "M121.06 767.41a4 4 0 014-6.93z"
240
244
  })), /*#__PURE__*/React__default.createElement("clipPath", {
241
245
  id: "prefix__clip-path-45"
242
246
  }, /*#__PURE__*/React__default.createElement("path", {
243
- className: "prefix__cls-1",
247
+ className: "".concat(blockClass, "__prefix-cls-1"),
244
248
  d: "M111.2 752.48a4 4 0 11-4 6.93z"
245
249
  })), /*#__PURE__*/React__default.createElement("clipPath", {
246
250
  id: "prefix__clip-path-46"
247
251
  }, /*#__PURE__*/React__default.createElement("path", {
248
- className: "prefix__cls-1",
252
+ className: "".concat(blockClass, "__prefix-cls-1"),
249
253
  d: "M107.2 759.41a4 4 0 014-6.93z"
250
254
  })), /*#__PURE__*/React__default.createElement("clipPath", {
251
255
  id: "prefix__clip-path-47"
252
256
  }, /*#__PURE__*/React__default.createElement("path", {
253
- className: "prefix__cls-1",
257
+ className: "".concat(blockClass, "__prefix-cls-1"),
254
258
  d: "M97.35 744.48a4 4 0 01-4 6.93z"
255
259
  })), /*#__PURE__*/React__default.createElement("clipPath", {
256
260
  id: "prefix__clip-path-48"
257
261
  }, /*#__PURE__*/React__default.createElement("path", {
258
- className: "prefix__cls-1",
262
+ className: "".concat(blockClass, "__prefix-cls-1"),
259
263
  d: "M93.35 751.41a4 4 0 114-6.93z"
260
264
  })), /*#__PURE__*/React__default.createElement("clipPath", {
261
265
  id: "prefix__clip-path-49"
262
266
  }, /*#__PURE__*/React__default.createElement("path", {
263
- className: "prefix__cls-1",
267
+ className: "".concat(blockClass, "__prefix-cls-1"),
264
268
  d: "M83.49 736.48a4 4 0 01-4 6.93z"
265
269
  })), /*#__PURE__*/React__default.createElement("clipPath", {
266
270
  id: "prefix__clip-path-50"
267
271
  }, /*#__PURE__*/React__default.createElement("path", {
268
- className: "prefix__cls-1",
272
+ className: "".concat(blockClass, "__prefix-cls-1"),
269
273
  d: "M79.49 743.41a4 4 0 014-6.93z"
270
274
  })), /*#__PURE__*/React__default.createElement("clipPath", {
271
275
  id: "prefix__clip-path-51"
272
276
  }, /*#__PURE__*/React__default.createElement("path", {
273
- className: "prefix__cls-1",
277
+ className: "".concat(blockClass, "__prefix-cls-1"),
274
278
  d: "M69.63 728.48a4 4 0 11-4 6.93z"
275
279
  })), /*#__PURE__*/React__default.createElement("clipPath", {
276
280
  id: "prefix__clip-path-52"
277
281
  }, /*#__PURE__*/React__default.createElement("path", {
278
- className: "prefix__cls-1",
282
+ className: "".concat(blockClass, "__prefix-cls-1"),
279
283
  d: "M65.63 735.41a4 4 0 114-6.93z"
280
284
  })), /*#__PURE__*/React__default.createElement("clipPath", {
281
285
  id: "prefix__clip-path-53"
282
286
  }, /*#__PURE__*/React__default.createElement("path", {
283
- className: "prefix__cls-1",
287
+ className: "".concat(blockClass, "__prefix-cls-1"),
284
288
  d: "M55.78 720.48a4 4 0 01-4 6.93z"
285
289
  })), /*#__PURE__*/React__default.createElement("clipPath", {
286
290
  id: "prefix__clip-path-54"
287
291
  }, /*#__PURE__*/React__default.createElement("path", {
288
- className: "prefix__cls-1",
292
+ className: "".concat(blockClass, "__prefix-cls-1"),
289
293
  d: "M51.78 727.41a4 4 0 114-6.93z"
290
294
  })), /*#__PURE__*/React__default.createElement("clipPath", {
291
295
  id: "prefix__clip-path-55"
292
296
  }, /*#__PURE__*/React__default.createElement("path", {
293
- className: "prefix__cls-1",
297
+ className: "".concat(blockClass, "__prefix-cls-1"),
294
298
  d: "M41.92 712.48a4 4 0 01-4 6.93z"
295
299
  })), /*#__PURE__*/React__default.createElement("clipPath", {
296
300
  id: "prefix__clip-path-56"
297
301
  }, /*#__PURE__*/React__default.createElement("path", {
298
- className: "prefix__cls-1",
302
+ className: "".concat(blockClass, "__prefix-cls-1"),
299
303
  d: "M37.92 719.41a4 4 0 014-6.93z"
300
304
  })), /*#__PURE__*/React__default.createElement("clipPath", {
301
305
  id: "prefix__clip-path-57"
302
306
  }, /*#__PURE__*/React__default.createElement("path", {
303
- className: "prefix__cls-1",
307
+ className: "".concat(blockClass, "__prefix-cls-1"),
304
308
  d: "M28.06 704.48a4 4 0 11-4 6.93z"
305
309
  })), /*#__PURE__*/React__default.createElement("clipPath", {
306
310
  id: "prefix__clip-path-58"
307
311
  }, /*#__PURE__*/React__default.createElement("path", {
308
- className: "prefix__cls-1",
312
+ className: "".concat(blockClass, "__prefix-cls-1"),
309
313
  d: "M24.06 711.41a4 4 0 114-6.93z"
310
314
  })), /*#__PURE__*/React__default.createElement("clipPath", {
311
315
  id: "prefix__clip-path-59"
312
316
  }, /*#__PURE__*/React__default.createElement("path", {
313
- className: "prefix__cls-1",
317
+ className: "".concat(blockClass, "__prefix-cls-1"),
314
318
  d: "M14.21 696.48a4 4 0 01-4 6.93z"
315
319
  })), /*#__PURE__*/React__default.createElement("clipPath", {
316
320
  id: "prefix__clip-path-60"
317
321
  }, /*#__PURE__*/React__default.createElement("path", {
318
- className: "prefix__cls-1",
322
+ className: "".concat(blockClass, "__prefix-cls-1"),
319
323
  d: "M10.21 703.41a4 4 0 014-6.93z"
320
- })), /*#__PURE__*/React__default.createElement("linearGradient", {
324
+ })), _linearGradient || (_linearGradient = /*#__PURE__*/React__default.createElement("linearGradient", {
321
325
  id: "prefix__linear-gradient",
322
326
  x1: 286.64,
323
327
  y1: 562.27,
@@ -331,14 +335,14 @@ var HTTPErrorSvgOther = function HTTPErrorSvgOther(_ref) {
331
335
  offset: 0.9,
332
336
  stopColor: "#bebebe",
333
337
  stopOpacity: 0
334
- })), /*#__PURE__*/React__default.createElement("linearGradient", {
338
+ }))), _linearGradient2 || (_linearGradient2 = /*#__PURE__*/React__default.createElement("linearGradient", {
335
339
  id: "prefix__linear-gradient-2",
336
340
  x1: 316.05,
337
341
  y1: 537.64,
338
342
  x2: 265.64,
339
343
  y2: 508.54,
340
344
  xlinkHref: "#prefix__linear-gradient"
341
- }), /*#__PURE__*/React__default.createElement("linearGradient", {
345
+ })), _linearGradient3 || (_linearGradient3 = /*#__PURE__*/React__default.createElement("linearGradient", {
342
346
  id: "prefix__linear-gradient-3",
343
347
  x1: 410.05,
344
348
  y1: 763.45,
@@ -384,7 +388,7 @@ var HTTPErrorSvgOther = function HTTPErrorSvgOther(_ref) {
384
388
  offset: 1,
385
389
  stopColor: "#fff",
386
390
  stopOpacity: 0
387
- })), /*#__PURE__*/React__default.createElement("linearGradient", {
391
+ }))), _linearGradient4 || (_linearGradient4 = /*#__PURE__*/React__default.createElement("linearGradient", {
388
392
  id: "prefix__linear-gradient-4",
389
393
  x1: 390.79,
390
394
  y1: 661.21,
@@ -397,7 +401,7 @@ var HTTPErrorSvgOther = function HTTPErrorSvgOther(_ref) {
397
401
  }), /*#__PURE__*/React__default.createElement("stop", {
398
402
  offset: 1,
399
403
  stopColor: "#bebebe"
400
- })), /*#__PURE__*/React__default.createElement("linearGradient", {
404
+ }))), _linearGradient5 || (_linearGradient5 = /*#__PURE__*/React__default.createElement("linearGradient", {
401
405
  id: "prefix__linear-gradient-5",
402
406
  x1: 414.06,
403
407
  y1: 674.64,
@@ -410,7 +414,7 @@ var HTTPErrorSvgOther = function HTTPErrorSvgOther(_ref) {
410
414
  }), /*#__PURE__*/React__default.createElement("stop", {
411
415
  offset: 1,
412
416
  stopColor: "#bebebe"
413
- })), /*#__PURE__*/React__default.createElement("style", null, '.prefix__cls-1{fill:none}.prefix__cls-69{fill:#697077}.prefix__cls-70{fill:#282828}.prefix__cls-71{fill:#51565c}.prefix__cls-72{fill:#e0dbda}.prefix__cls-73{fill:#003d73}.prefix__cls-75{opacity:.15}'))), /*#__PURE__*/React__default.createElement("g", {
417
+ })))), /*#__PURE__*/React__default.createElement("g", {
414
418
  style: {
415
419
  isolation: 'isolate'
416
420
  }
@@ -1009,49 +1013,49 @@ var HTTPErrorSvgOther = function HTTPErrorSvgOther(_ref) {
1009
1013
  })), _path3 || (_path3 = /*#__PURE__*/React__default.createElement("path", {
1010
1014
  fill: "url(#prefix__linear-gradient-5)",
1011
1015
  d: "M414.06 567.18l93.07 53.73-93.07 53.72V567.18z"
1012
- })), _path4 || (_path4 = /*#__PURE__*/React__default.createElement("path", {
1013
- className: "prefix__cls-69",
1016
+ })), /*#__PURE__*/React__default.createElement("path", {
1017
+ className: "".concat(blockClass, "__prefix-cls-69"),
1014
1018
  d: "M294.65 569.94v-1.85a3.83 3.83 0 01-2.26 3.15 12.1 12.1 0 01-10.93 0 3.81 3.81 0 01-2.26-3.18V570a3.87 3.87 0 002.26 3.14 12.1 12.1 0 0010.93 0 3.83 3.83 0 002.26-3.16"
1015
- })), _path5 || (_path5 = /*#__PURE__*/React__default.createElement("path", {
1016
- className: "prefix__cls-70",
1019
+ }), /*#__PURE__*/React__default.createElement("path", {
1020
+ className: "".concat(blockClass, "__prefix-cls-70"),
1017
1021
  d: "M293 545.9a3 3 0 00-1.78-2.49 9.51 9.51 0 00-8.63 0 3 3 0 00-1.78 2.49l-1.63 22.16a3.78 3.78 0 002.25 3.18 12.1 12.1 0 0010.93 0 3.83 3.83 0 002.26-3.15z"
1018
- })), _path6 || (_path6 = /*#__PURE__*/React__default.createElement("path", {
1019
- className: "prefix__cls-71",
1022
+ }), /*#__PURE__*/React__default.createElement("path", {
1023
+ className: "".concat(blockClass, "__prefix-cls-71"),
1020
1024
  d: "M290.69 538.19c-2.54-1.52-8.52-1.33-9.09 2.17v6.15c.57 3.5 6.55 3.68 9.09 2.17a2.65 2.65 0 001.56-2.17v-6.15a2.64 2.64 0 00-1.56-2.17z"
1021
- })), _path7 || (_path7 = /*#__PURE__*/React__default.createElement("path", {
1022
- className: "prefix__cls-70",
1025
+ }), /*#__PURE__*/React__default.createElement("path", {
1026
+ className: "".concat(blockClass, "__prefix-cls-70"),
1023
1027
  d: "M291.32 555.44l.78-7.22a2.65 2.65 0 00-1.77-2.78l-1.9-.65a4.63 4.63 0 00-3 0l-1.93.66a2.65 2.65 0 00-1.76 2.8l.8 7.2M338 542.36l-13.89-11.7-7.4-4.11a9.76 9.76 0 00-8.49.12 3.62 3.62 0 00-1.81 3.13v5.83a3.06 3.06 0 001.81 2.52l9.17 5.87 8 5.13a5.37 5.37 0 00.53.34c3.56 2.18 12.45 1.89 13.14-3.14v-1.77a2.81 2.81 0 00-1.06-2.22z"
1024
- })), _path8 || (_path8 = /*#__PURE__*/React__default.createElement("path", {
1025
- className: "prefix__cls-71",
1028
+ }), /*#__PURE__*/React__default.createElement("path", {
1029
+ className: "".concat(blockClass, "__prefix-cls-71"),
1026
1030
  d: "M316.57 521.57c-2.54-1.52-8.52-1.33-9.09 2.17v6.15c.57 3.5 6.55 3.68 9.09 2.17a2.65 2.65 0 001.56-2.17v-6.15a2.64 2.64 0 00-1.56-2.17z"
1027
- })), _path9 || (_path9 = /*#__PURE__*/React__default.createElement("path", {
1028
- className: "prefix__cls-70",
1031
+ }), /*#__PURE__*/React__default.createElement("path", {
1032
+ className: "".concat(blockClass, "__prefix-cls-70"),
1029
1033
  d: "M315.17 534.21l-1.5-1.36a1.23 1.23 0 01.06-1.88l3.79-3.05c.41-.33-.44.29 0 0 1-.9 3-1.81 4.26-.15l2.38 2.9 14 11.75c1.19.89 1 2.63 1 3.93"
1030
- })), _path10 || (_path10 = /*#__PURE__*/React__default.createElement("path", {
1031
- className: "prefix__cls-69",
1034
+ }), /*#__PURE__*/React__default.createElement("path", {
1035
+ className: "".concat(blockClass, "__prefix-cls-69"),
1032
1036
  d: "M306.45 537.14a3 3 0 001.81 2.53c4.56 2.91 13.18 8.45 17.72 11.34a12 12 0 0010.88 0 3.82 3.82 0 002.26-3.14v-1.66a3.83 3.83 0 01-2.26 3.14 12 12 0 01-10.88 0c-4.54-2.89-13.16-8.43-17.72-11.34a3 3 0 01-1.81-2.53z"
1033
- })), _path11 || (_path11 = /*#__PURE__*/React__default.createElement("path", {
1034
- className: "prefix__cls-70",
1037
+ }), /*#__PURE__*/React__default.createElement("path", {
1038
+ className: "".concat(blockClass, "__prefix-cls-70"),
1035
1039
  d: "M278.61 538.26c0 2.1 2.13 3.47 3.89 4.1a14.48 14.48 0 005.54.69c2.93-.19 6.86-1.37 7.29-4.79l2.23-46.49c1-11 3-22 4-33l.56-8.1 2.62-38.14.36-5.17c.23-2.79-1.39-5.32-4.87-7.38-4.17-2.4-10-3.27-15.37-2.61a22 22 0 00-8.35 2.65c-2.72 1.6-5.34 4.35-4.75 7.76l1.1 13.89 2.8 35.35c0 .58.09 1.17.13 1.75 1 11 1.32 22 2.44 33z"
1036
- })), _path12 || (_path12 = /*#__PURE__*/React__default.createElement("path", {
1037
- className: "prefix__cls-70",
1040
+ }), /*#__PURE__*/React__default.createElement("path", {
1041
+ className: "".concat(blockClass, "__prefix-cls-70"),
1038
1042
  d: "M304.49 522.74c0 1.81 1.64 3.1 3.18 3.81a13.56 13.56 0 008.11.74c2.78-.56 5.12-2 5.44-4.55 1-19 2.95-38 4-57l1.12-13.13 1.06-12.28.14-5.4 1.11-42.17c.23-2.79-1.39-5.32-4.87-7.37a24.45 24.45 0 00-12.57-2.82c-4.29.11-8.81 1.08-12.34 3.63-2.8 2-4 4.54-3.56 7l6 48 1 7.65 1.08 8.7 1.46 11.7c.15 17.84-.58 35.67-.36 53.49z"
1039
- })), _path13 || (_path13 = /*#__PURE__*/React__default.createElement("path", {
1040
- className: "prefix__cls-72",
1043
+ }), /*#__PURE__*/React__default.createElement("path", {
1044
+ className: "".concat(blockClass, "__prefix-cls-72"),
1041
1045
  d: "M335 395.49s.52 13.47-2.38 14.47a3 3 0 01-3.88-1.93l.28-11.22a6 6 0 006.98-2.51"
1042
- })), _path14 || (_path14 = /*#__PURE__*/React__default.createElement("path", {
1043
- className: "prefix__cls-73",
1046
+ }), /*#__PURE__*/React__default.createElement("path", {
1047
+ className: "".concat(blockClass, "__prefix-cls-73"),
1044
1048
  d: "M338 331.19c.76-17.55-16.49-30.44-31.67-21.33-4.14 1.78-16.7 5.93-17.56 6.34-20.19 15.54-29.1 20.77-30.57 44.72 0 0-2.51 33.64 8.55 47.12.75.91 2.45 1.43 4.38 1.59 1.16 3.78 3.66 11.62 7.49 14.08a26.06 26.06 0 008.54 3.41 47 47 0 0011.59.86c2.13-.13 2.73-2 2.53-3.88a52.11 52.11 0 0014.37-3.24v.69a2 2 0 002.86 1.76c6-3 10.23-7.35 10.53-13v-13.45c5 1.25 8-2.34 8.12-6.94 1.24-11.45.84-57.39.84-58.73z"
1045
- })), _path15 || (_path15 = /*#__PURE__*/React__default.createElement("path", {
1049
+ }), _path4 || (_path4 = /*#__PURE__*/React__default.createElement("path", {
1046
1050
  d: "M315.54 328c-.31-4.9-1.77-9.83-4.15-11.86a6.41 6.41 0 00-1.29-.82L293.76 322c1.5 2.29 4.73 6.15 6.13 10.52a31.33 31.33 0 011.34 9.65v81.93a52.11 52.11 0 0014.37-3.24v-91c0-.61-.02-1.25-.06-1.86z",
1047
1051
  fill: "#07192b"
1048
- })), _path16 || (_path16 = /*#__PURE__*/React__default.createElement("path", {
1049
- className: "prefix__cls-75",
1052
+ })), /*#__PURE__*/React__default.createElement("path", {
1053
+ className: "".concat(blockClass, "__prefix-cls-75"),
1050
1054
  d: "M330.4 409.94c.82-2.18.42-8.6.53-11v-3.81l.22-52.93a1.92 1.92 0 00-1.9-1.92c0 6.88-.25 60.95-.27 66.25v2a3.28 3.28 0 001.39 1.38zM283.91 363.81c-.7-3.44-1.35-6.56-.49-9.34a2.14 2.14 0 00-1-2.51c-3 5.22.09 11.15.1 16.8l1.74-2.71c-.09-.75-.2-1.5-.35-2.24z"
1051
- })), _path17 || (_path17 = /*#__PURE__*/React__default.createElement("path", {
1052
- className: "prefix__cls-72",
1055
+ }), /*#__PURE__*/React__default.createElement("path", {
1056
+ className: "".concat(blockClass, "__prefix-cls-72"),
1053
1057
  d: "M291.8 295.38a4.48 4.48 0 012.54-3.35 12.6 12.6 0 0110.74.23 3.87 3.87 0 012.26 3.18c0 7.33-.06 5.35-.09 12.68v4c4.79 2.41 5.17 10 .43 12.74-3.42 2-8.44.59-12.62-1.32-1.31-.6-2.53-1.26-3.6-1.88-3.6-2.09-4.29-4.41-2.08-6.57a8.42 8.42 0 002.29-4.05 1.35 1.35 0 00.05-.44c.02-7.84.05-7.05.08-15.22z"
1054
- })), /*#__PURE__*/React__default.createElement("image", {
1058
+ }), /*#__PURE__*/React__default.createElement("image", {
1055
1059
  width: 24,
1056
1060
  height: 36,
1057
1061
  transform: "translate(288 290)",
@@ -1060,22 +1064,22 @@ var HTTPErrorSvgOther = function HTTPErrorSvgOther(_ref) {
1060
1064
  mixBlendMode: 'multiply'
1061
1065
  },
1062
1066
  opacity: 0.25
1063
- }), _path18 || (_path18 = /*#__PURE__*/React__default.createElement("path", {
1064
- className: "prefix__cls-75",
1067
+ }), /*#__PURE__*/React__default.createElement("path", {
1068
+ className: "".concat(blockClass, "__prefix-cls-75"),
1065
1069
  d: "M302.94 332.68a3.43 3.43 0 013.31 4.58l-2.41 6.38a.22.22 0 00.07.26c9.73 9 6.15 16.12-4 23.09l-17.83 39a9.65 9.65 0 01-8.36 5.58 2.56 2.56 0 01-2.65-1.84.05.05 0 01.06-.07c3.65.45 7.67-.88 9.22-4.46l16.95-37.07 1.1-2.42c3.49-2.39 8.41-6.22 9.23-10.3s-3.08-8.28-5.05-10.08a2.16 2.16 0 01-.57-2.35l2.79-7.35c.46-1.21-.25-.7-1.56-1a2.18 2.18 0 00-2.26.91z"
1066
- })), _path19 || (_path19 = /*#__PURE__*/React__default.createElement("path", {
1067
- className: "prefix__cls-72",
1070
+ }), /*#__PURE__*/React__default.createElement("path", {
1071
+ className: "".concat(blockClass, "__prefix-cls-72"),
1068
1072
  d: "M295.63 365.74a2.15 2.15 0 002.55.12c2.71-1.79 8.71-6.19 9.49-10.47s-3.08-8.28-5.05-10.08a2.16 2.16 0 01-.57-2.35l2.79-7.35a2.16 2.16 0 00-3.81-2c-2.55 3.76-9.09 13.9-8.67 18.35.5 5.25-4.08 7.79 3.27 13.78z"
1069
- })), _path20 || (_path20 = /*#__PURE__*/React__default.createElement("path", {
1070
- className: "prefix__cls-73",
1073
+ }), /*#__PURE__*/React__default.createElement("path", {
1074
+ className: "".concat(blockClass, "__prefix-cls-73"),
1071
1075
  d: "M266.7 408c1.15 1.4 4.51 1.88 7.52 1.56a7.7 7.7 0 006.17-4.42l18-39.29a.26.26 0 00-.09-.32c-5.69-4-6.14-8.87-6-11a.26.26 0 00-.48-.16l-18.17 28.13"
1072
- })), _path21 || (_path21 = /*#__PURE__*/React__default.createElement("path", {
1073
- className: "prefix__cls-72",
1076
+ }), /*#__PURE__*/React__default.createElement("path", {
1077
+ className: "".concat(blockClass, "__prefix-cls-72"),
1074
1078
  d: "M300.77 272.08a17.34 17.34 0 00-17.41 17.27V300c.82 23 33.68 23.13 34.68.14v-10.65a17.34 17.34 0 00-17.27-17.41z"
1075
- })), _path22 || (_path22 = /*#__PURE__*/React__default.createElement("path", {
1079
+ }), _path5 || (_path5 = /*#__PURE__*/React__default.createElement("path", {
1076
1080
  d: "M318.12 300.13c-.07-.22-.29-.1-.24.13-.2 2.9-1.36 5.33-4.9 4.39-4.39-1.09-8.49 1.37-12.1 2.72-5.75 2.35-10.83-.33-12.21-6.57-.65-2.41-1.12-4.15-5.33-4.4a.14.14 0 00-.13.12V300a17.46 17.46 0 1034.92.13z",
1077
1081
  fill: "#726e6e"
1078
- })), _path23 || (_path23 = /*#__PURE__*/React__default.createElement("path", {
1082
+ })), _path6 || (_path6 = /*#__PURE__*/React__default.createElement("path", {
1079
1083
  d: "M300.72 245.05a4.68 4.68 0 01-5.35-5v-1.21a5.35 5.35 0 1110.7 0V240a4.68 4.68 0 01-5.35 5zm-1.78-16.53l-2.27-24.7v-16.28h8.1v16.28l-2.27 24.7z",
1080
1084
  fill: "#0062ff"
1081
1085
  })))));
@@ -5,8 +5,8 @@
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  */
7
7
 
8
- import { objectWithoutProperties as _objectWithoutProperties, extends as _extends, defineProperty as _defineProperty } from '../../_virtual/_rollupPluginBabelHelpers.js';
9
- import React__default, { useRef } from 'react';
8
+ import { objectWithoutProperties as _objectWithoutProperties, slicedToArray as _slicedToArray, extends as _extends, defineProperty as _defineProperty } from '../../_virtual/_rollupPluginBabelHelpers.js';
9
+ import React__default, { useState, useEffect, useRef } from 'react';
10
10
  import PropTypes from '../../node_modules/prop-types/index.js';
11
11
  import cx from 'classnames';
12
12
  import { pkg } from '../../settings.js';
@@ -51,11 +51,20 @@ var NavItem = function NavItem(_ref) {
51
51
  _ref$tabIndex = _ref.tabIndex,
52
52
  tabIndex = _ref$tabIndex === void 0 ? defaults.tabIndex : _ref$tabIndex,
53
53
  rest = _objectWithoutProperties(_ref, _excluded);
54
+ var _useState = useState(false),
55
+ _useState2 = _slicedToArray(_useState, 2),
56
+ hrefHasDifferentHost = _useState2[0],
57
+ setHrefHasDifferentHost = _useState2[1];
58
+ useEffect(function () {
59
+ if (href.indexOf(window.location.host) === -1) {
60
+ setHrefHasDifferentHost(true);
61
+ }
62
+ }, [href]);
54
63
  var internalId = useRef(uuidv4());
55
64
  var instanceId = "".concat(blockClass, "__").concat(internalId.current);
56
65
  var navItemId = id || instanceId;
57
66
  var isAbsoluteLink = new RegExp('^([a-z]+://|//)', 'i');
58
- var externalLink = isAbsoluteLink.test(href) && href.indexOf(window.location.host) === -1;
67
+ var externalLink = isAbsoluteLink.test(href) && hrefHasDifferentHost;
59
68
  var linkClassName = "".concat(blockClass, "__link");
60
69
  var handleDisabled = function handleDisabled(action) {
61
70
  var defaultValue = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;