@carbon/ibm-products 2.43.2-canary.12 → 2.43.2-canary.123

Sign up to get free protection for your applications and to get access to all the features.
Files changed (428) 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 +1854 -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 +1463 -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 +1659 -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 +69 -2
  30. package/es/components/Card/Card.js +33 -37
  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/CoachmarkOverlayElements/CoachmarkOverlayElements.js +2 -1
  42. package/es/components/CoachmarkStack/CoachmarkStack.d.ts +67 -2
  43. package/es/components/CoachmarkStack/CoachmarkStack.js +22 -11
  44. package/es/components/CoachmarkStack/CoachmarkStackHome.d.ts +71 -2
  45. package/es/components/CoachmarkStack/CoachmarkStackHome.js +25 -23
  46. package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +100 -58
  47. package/es/components/ConditionBuilder/ConditionBuilder.js +82 -25
  48. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts +15 -0
  49. package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +154 -0
  50. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +3 -1
  51. package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +30 -27
  52. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.d.ts +8 -1
  53. package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +35 -11
  54. package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +18 -10
  55. package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +19 -11
  56. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +9 -13
  57. package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +83 -64
  58. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts +13 -7
  59. package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +31 -8
  60. package/es/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.d.ts +8 -2
  61. package/es/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.js +35 -24
  62. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.d.ts +43 -36
  63. package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +43 -36
  64. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.d.ts +6 -2
  65. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +114 -40
  66. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.d.ts +3 -1
  67. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +24 -9
  68. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +27 -9
  69. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +13 -0
  70. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +114 -0
  71. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/{ConditionBuilderItemOption.d.ts → ItemOptionForValueField.d.ts} +2 -2
  72. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/{ConditionBuilderItemOption.js → ItemOptionForValueField.js} +71 -38
  73. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.d.ts +5 -1
  74. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +22 -9
  75. package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +1 -1
  76. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts +1 -3
  77. package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +122 -40
  78. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.d.ts +5 -1
  79. package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +51 -19
  80. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.d.ts +2 -1
  81. package/es/components/ConditionBuilder/utils/handleKeyboardEvents.js +152 -42
  82. package/es/components/ConditionBuilder/utils/useTranslations.d.ts +1 -0
  83. package/es/components/ConditionBuilder/utils/useTranslations.js +26 -0
  84. package/es/components/ConditionBuilder/utils/util.d.ts +6 -4
  85. package/es/components/ConditionBuilder/utils/util.js +42 -17
  86. package/es/components/CreateFullPage/CreateFullPage.js +2 -2
  87. package/es/components/DataSpreadsheet/DataSpreadsheet.d.ts +26 -0
  88. package/es/components/DataSpreadsheet/DataSpreadsheet.js +129 -53
  89. package/es/components/DataSpreadsheet/DataSpreadsheetBody.d.ts +16 -0
  90. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +32 -7
  91. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.d.ts +8 -0
  92. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +16 -3
  93. package/es/components/DataSpreadsheet/types/index.d.ts +7 -0
  94. package/es/components/Datagrid/Datagrid/Datagrid.d.ts +0 -4
  95. package/es/components/Datagrid/Datagrid/Datagrid.js +4 -9
  96. package/es/components/Datagrid/Datagrid/DatagridBody.d.ts +6 -0
  97. package/es/components/Datagrid/Datagrid/DatagridContent.js +4 -3
  98. package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +23 -8
  99. package/es/components/Datagrid/Datagrid/DatagridRefBody.d.ts +6 -0
  100. package/es/components/Datagrid/Datagrid/DatagridRow.js +21 -8
  101. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +6 -6
  102. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +3 -2
  103. package/es/components/Datagrid/Datagrid/DatagridSimpleBody.d.ts +6 -0
  104. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +3 -1
  105. package/es/components/Datagrid/Datagrid/DraggableElement.d.ts +6 -0
  106. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +34 -10
  107. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +6 -1
  108. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +6 -1
  109. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.d.ts +6 -3
  110. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +20 -12
  111. package/es/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +7 -0
  112. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.d.ts +1 -1
  113. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +54 -17
  114. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +2 -3
  115. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +75 -12
  116. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +10 -2
  117. package/es/components/Datagrid/common-column-ids.d.ts +6 -0
  118. package/es/components/Datagrid/types/index.d.ts +60 -9
  119. package/es/components/Datagrid/useActionsColumn.d.ts +8 -1
  120. package/es/components/Datagrid/useActionsColumn.js +7 -6
  121. package/es/components/Datagrid/useCustomizeColumns.d.ts +8 -1
  122. package/es/components/Datagrid/useCustomizeColumns.js +4 -3
  123. package/es/components/Datagrid/useDatagrid.d.ts +6 -0
  124. package/es/components/Datagrid/useDefaultStringRenderer.js +0 -1
  125. package/es/components/Datagrid/useDisableSelectRows.d.ts +8 -1
  126. package/es/components/Datagrid/useDisableSelectRows.js +27 -22
  127. package/es/components/Datagrid/useInitialColumnSort.js +4 -0
  128. package/es/components/Datagrid/useInlineEdit.js +12 -2
  129. package/es/components/Datagrid/useNestedRowExpander.js +1 -3
  130. package/es/components/Datagrid/useNestedRows.js +5 -4
  131. package/es/components/Datagrid/useRowExpander.js +1 -3
  132. package/es/components/Datagrid/useRowIsMouseOver.d.ts +6 -0
  133. package/es/components/Datagrid/useSelectRows.js +2 -1
  134. package/es/components/Datagrid/useSortableColumns.d.ts +5 -4
  135. package/es/components/Datagrid/useSortableColumns.js +18 -13
  136. package/es/components/Datagrid/useStickyColumn.d.ts +8 -1
  137. package/es/components/Datagrid/useStickyColumn.js +12 -9
  138. package/es/components/EditInPlace/EditInPlace.d.ts +4 -0
  139. package/es/components/EditInPlace/EditInPlace.js +21 -10
  140. package/es/components/EditTearsheet/EditTearsheet.d.ts +7 -2
  141. package/es/components/EditTearsheet/EditTearsheet.js +44 -10
  142. package/es/components/EditTearsheet/EditTearsheetForm.d.ts +45 -2
  143. package/es/components/EditTearsheet/EditTearsheetForm.js +3 -0
  144. package/es/components/EmptyStates/EmptyState.d.ts +72 -5
  145. package/es/components/EmptyStates/EmptyState.js +8 -5
  146. package/es/components/EmptyStates/EmptyStateV2.d.ts +63 -2
  147. package/es/components/EmptyStates/EmptyStateV2.js +3 -2
  148. package/es/components/FullPageError/FullPageError.d.ts +36 -2
  149. package/es/components/FullPageError/FullPageError.js +0 -3
  150. package/es/components/GetStartedCard/GetStartedCard.d.ts +60 -2
  151. package/es/components/GetStartedCard/GetStartedCard.js +11 -10
  152. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +6 -0
  153. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +6 -0
  154. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +6 -0
  155. package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +204 -200
  156. package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +116 -112
  157. package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +110 -106
  158. package/es/components/Nav/NavItem.js +12 -3
  159. package/es/components/OptionsTile/OptionsTile.js +11 -6
  160. package/es/components/PageHeader/PageHeader.js +1 -0
  161. package/es/components/PageHeader/PageHeaderUtils.js +1 -1
  162. package/es/components/ProductiveCard/ProductiveCard.d.ts +4 -0
  163. package/es/components/ProductiveCard/ProductiveCard.js +7 -1
  164. package/es/components/RemoveModal/RemoveModal.d.ts +4 -0
  165. package/es/components/RemoveModal/RemoveModal.js +7 -1
  166. package/es/components/SearchBar/SearchBar.d.ts +1 -1
  167. package/es/components/SearchBar/SearchBar.js +2 -2
  168. package/es/components/SidePanel/SidePanel.js +17 -21
  169. package/es/components/SidePanel/motion/variants.d.ts +4 -6
  170. package/es/components/SidePanel/motion/variants.js +10 -11
  171. package/es/components/StatusIndicator/StatusIndicatorStep.js +87 -0
  172. package/es/components/StringFormatter/StringFormatter.js +14 -3
  173. package/es/components/StringFormatter/utils/enums.d.ts +20 -1
  174. package/es/components/StringFormatter/utils/enums.js +29 -2
  175. package/es/components/TagOverflow/TagOverflow.d.ts +35 -4
  176. package/es/components/TagOverflow/TagOverflow.js +47 -64
  177. package/es/components/TagOverflow/TagOverflowModal.js +4 -6
  178. package/es/components/TagOverflow/TagOverflowPopover.d.ts +13 -1
  179. package/es/components/TagOverflow/TagOverflowPopover.js +38 -41
  180. package/es/components/Tearsheet/Tearsheet.d.ts +8 -1
  181. package/es/components/Tearsheet/Tearsheet.js +9 -1
  182. package/es/components/Tearsheet/TearsheetNarrow.d.ts +11 -0
  183. package/es/components/Tearsheet/TearsheetNarrow.js +12 -0
  184. package/es/components/Tearsheet/TearsheetShell.d.ts +11 -1
  185. package/es/components/Tearsheet/TearsheetShell.js +28 -7
  186. package/es/components/Toolbar/ToolbarButton.js +1 -1
  187. package/es/components/UserAvatar/UserAvatar.d.ts +59 -1
  188. package/es/components/UserAvatar/UserAvatar.js +7 -23
  189. package/es/components/WebTerminal/WebTerminal.js +10 -12
  190. package/es/components/index.d.ts +1 -1
  191. package/es/global/js/hooks/useFocus.d.ts +1 -0
  192. package/es/global/js/hooks/useFocus.js +5 -2
  193. package/es/global/js/hooks/usePrefersReducedMotion.js +14 -8
  194. package/es/global/js/package-settings.d.ts +1 -1
  195. package/es/global/js/package-settings.js +1 -1
  196. package/es/global/js/utils/scrollableAncestor.js +7 -0
  197. package/es/global/js/utils/uuidv4.d.ts +6 -0
  198. package/es/global/js/utils/uuidv4.js +2 -0
  199. package/es/global/js/utils/wait.d.ts +6 -0
  200. package/es/global/js/utils/wait.js +2 -0
  201. package/es/index.js +1 -0
  202. package/es/node_modules/@carbon/icon-helpers/es/index.js +49 -62
  203. package/es/node_modules/@carbon/icons-react/es/generated/bucket-2.js +1020 -1058
  204. package/es/node_modules/@carbon/icons-react/es/generated/bucket-9.js +881 -758
  205. package/es/settings.d.ts +1 -1
  206. package/flags.js +7 -0
  207. package/lib/components/APIKeyModal/APIKeyModal.types.d.ts +6 -0
  208. package/lib/components/ActionBar/ActionBar.d.ts +58 -2
  209. package/lib/components/ActionBar/ActionBar.js +14 -9
  210. package/lib/components/ActionBar/ActionBarItem.d.ts +36 -2
  211. package/lib/components/ActionBar/ActionBarItem.js +7 -4
  212. package/lib/components/ActionBar/ActionBarOverflowItems.d.ts +55 -16
  213. package/lib/components/ActionBar/ActionBarOverflowItems.js +8 -4
  214. package/lib/components/AddSelect/types/index.d.ts +6 -0
  215. package/lib/components/Card/Card.d.ts +69 -2
  216. package/lib/components/Card/Card.js +33 -37
  217. package/lib/components/Card/CardFooter.d.ts +51 -48
  218. package/lib/components/Card/CardFooter.js +4 -2
  219. package/lib/components/Card/CardHeader.d.ts +67 -49
  220. package/lib/components/Card/CardHeader.js +4 -2
  221. package/lib/components/Coachmark/Coachmark.d.ts +6 -1
  222. package/lib/components/Coachmark/Coachmark.js +46 -10
  223. package/lib/components/Coachmark/CoachmarkOverlay.js +2 -4
  224. package/lib/components/Coachmark/utils/enums.d.ts +6 -0
  225. package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +1 -7
  226. package/lib/components/CoachmarkFixed/CoachmarkFixed.js +13 -11
  227. package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +2 -1
  228. package/lib/components/CoachmarkStack/CoachmarkStack.d.ts +67 -2
  229. package/lib/components/CoachmarkStack/CoachmarkStack.js +22 -11
  230. package/lib/components/CoachmarkStack/CoachmarkStackHome.d.ts +71 -2
  231. package/lib/components/CoachmarkStack/CoachmarkStackHome.js +25 -23
  232. package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +98 -56
  233. package/lib/components/ConditionBuilder/ConditionBuilder.js +82 -25
  234. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.d.ts +15 -0
  235. package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +163 -0
  236. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +3 -1
  237. package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +29 -25
  238. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.d.ts +8 -1
  239. package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +33 -9
  240. package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +16 -8
  241. package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +18 -10
  242. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +9 -13
  243. package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +81 -62
  244. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.d.ts +13 -7
  245. package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +31 -8
  246. package/lib/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.d.ts +8 -2
  247. package/lib/components/ConditionBuilder/ConditionBuilderContext/DataConfigs.js +34 -24
  248. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.d.ts +43 -36
  249. package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +43 -36
  250. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.d.ts +6 -2
  251. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +112 -38
  252. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.d.ts +3 -1
  253. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +24 -9
  254. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +28 -10
  255. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.d.ts +13 -0
  256. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +122 -0
  257. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/{ConditionBuilderItemOption.d.ts → ItemOptionForValueField.d.ts} +2 -2
  258. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/{ConditionBuilderItemOption.js → ItemOptionForValueField.js} +68 -35
  259. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.d.ts +5 -1
  260. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +21 -8
  261. package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +1 -1
  262. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.d.ts +1 -3
  263. package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +119 -37
  264. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.d.ts +5 -1
  265. package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +50 -17
  266. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.d.ts +2 -1
  267. package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +152 -41
  268. package/lib/components/ConditionBuilder/utils/useTranslations.d.ts +1 -0
  269. package/lib/components/ConditionBuilder/utils/useTranslations.js +30 -0
  270. package/lib/components/ConditionBuilder/utils/util.d.ts +6 -4
  271. package/lib/components/ConditionBuilder/utils/util.js +44 -16
  272. package/lib/components/CreateFullPage/CreateFullPage.js +2 -2
  273. package/lib/components/DataSpreadsheet/DataSpreadsheet.d.ts +26 -0
  274. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +129 -53
  275. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.d.ts +16 -0
  276. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +32 -7
  277. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.d.ts +8 -0
  278. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +16 -3
  279. package/lib/components/DataSpreadsheet/types/index.d.ts +7 -0
  280. package/lib/components/Datagrid/Datagrid/Datagrid.d.ts +0 -4
  281. package/lib/components/Datagrid/Datagrid/Datagrid.js +4 -9
  282. package/lib/components/Datagrid/Datagrid/DatagridBody.d.ts +6 -0
  283. package/lib/components/Datagrid/Datagrid/DatagridContent.js +4 -3
  284. package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +23 -8
  285. package/lib/components/Datagrid/Datagrid/DatagridRefBody.d.ts +6 -0
  286. package/lib/components/Datagrid/Datagrid/DatagridRow.js +21 -8
  287. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +6 -6
  288. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +3 -2
  289. package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.d.ts +6 -0
  290. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +3 -1
  291. package/lib/components/Datagrid/Datagrid/DraggableElement.d.ts +6 -0
  292. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +34 -10
  293. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +6 -1
  294. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +6 -1
  295. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.d.ts +6 -3
  296. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +20 -12
  297. package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +7 -0
  298. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.d.ts +1 -1
  299. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +53 -16
  300. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +2 -3
  301. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +74 -11
  302. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +10 -2
  303. package/lib/components/Datagrid/common-column-ids.d.ts +6 -0
  304. package/lib/components/Datagrid/types/index.d.ts +60 -9
  305. package/lib/components/Datagrid/useActionsColumn.d.ts +8 -1
  306. package/lib/components/Datagrid/useActionsColumn.js +7 -6
  307. package/lib/components/Datagrid/useCustomizeColumns.d.ts +8 -1
  308. package/lib/components/Datagrid/useCustomizeColumns.js +4 -3
  309. package/lib/components/Datagrid/useDatagrid.d.ts +6 -0
  310. package/lib/components/Datagrid/useDefaultStringRenderer.js +0 -1
  311. package/lib/components/Datagrid/useDisableSelectRows.d.ts +8 -1
  312. package/lib/components/Datagrid/useDisableSelectRows.js +27 -22
  313. package/lib/components/Datagrid/useInitialColumnSort.js +4 -0
  314. package/lib/components/Datagrid/useInlineEdit.js +12 -2
  315. package/lib/components/Datagrid/useNestedRowExpander.js +1 -3
  316. package/lib/components/Datagrid/useNestedRows.js +5 -4
  317. package/lib/components/Datagrid/useRowExpander.js +1 -3
  318. package/lib/components/Datagrid/useRowIsMouseOver.d.ts +6 -0
  319. package/lib/components/Datagrid/useSelectRows.js +2 -1
  320. package/lib/components/Datagrid/useSortableColumns.d.ts +5 -4
  321. package/lib/components/Datagrid/useSortableColumns.js +18 -13
  322. package/lib/components/Datagrid/useStickyColumn.d.ts +8 -1
  323. package/lib/components/Datagrid/useStickyColumn.js +12 -9
  324. package/lib/components/EditInPlace/EditInPlace.d.ts +4 -0
  325. package/lib/components/EditInPlace/EditInPlace.js +21 -10
  326. package/lib/components/EditTearsheet/EditTearsheet.d.ts +7 -2
  327. package/lib/components/EditTearsheet/EditTearsheet.js +43 -9
  328. package/lib/components/EditTearsheet/EditTearsheetForm.d.ts +45 -2
  329. package/lib/components/EditTearsheet/EditTearsheetForm.js +3 -0
  330. package/lib/components/EmptyStates/EmptyState.d.ts +72 -5
  331. package/lib/components/EmptyStates/EmptyState.js +8 -5
  332. package/lib/components/EmptyStates/EmptyStateV2.d.ts +63 -2
  333. package/lib/components/EmptyStates/EmptyStateV2.js +3 -2
  334. package/lib/components/FullPageError/FullPageError.d.ts +36 -2
  335. package/lib/components/FullPageError/FullPageError.js +0 -3
  336. package/lib/components/GetStartedCard/GetStartedCard.d.ts +60 -2
  337. package/lib/components/GetStartedCard/GetStartedCard.js +10 -9
  338. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +6 -0
  339. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +6 -0
  340. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +6 -0
  341. package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +204 -200
  342. package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +116 -112
  343. package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +110 -106
  344. package/lib/components/Nav/NavItem.js +10 -1
  345. package/lib/components/OptionsTile/OptionsTile.js +11 -6
  346. package/lib/components/PageHeader/PageHeader.js +1 -0
  347. package/lib/components/PageHeader/PageHeaderUtils.js +1 -1
  348. package/lib/components/ProductiveCard/ProductiveCard.d.ts +4 -0
  349. package/lib/components/ProductiveCard/ProductiveCard.js +7 -1
  350. package/lib/components/RemoveModal/RemoveModal.d.ts +4 -0
  351. package/lib/components/RemoveModal/RemoveModal.js +7 -1
  352. package/lib/components/SearchBar/SearchBar.d.ts +1 -1
  353. package/lib/components/SearchBar/SearchBar.js +2 -2
  354. package/lib/components/SidePanel/SidePanel.js +16 -20
  355. package/lib/components/SidePanel/motion/variants.d.ts +4 -6
  356. package/lib/components/SidePanel/motion/variants.js +10 -11
  357. package/lib/components/StatusIndicator/StatusIndicatorStep.js +94 -0
  358. package/lib/components/StringFormatter/StringFormatter.js +13 -2
  359. package/lib/components/StringFormatter/utils/enums.d.ts +20 -1
  360. package/lib/components/StringFormatter/utils/enums.js +30 -1
  361. package/lib/components/TagOverflow/TagOverflow.d.ts +35 -4
  362. package/lib/components/TagOverflow/TagOverflow.js +46 -63
  363. package/lib/components/TagOverflow/TagOverflowModal.js +4 -6
  364. package/lib/components/TagOverflow/TagOverflowPopover.d.ts +13 -1
  365. package/lib/components/TagOverflow/TagOverflowPopover.js +37 -40
  366. package/lib/components/Tearsheet/Tearsheet.d.ts +8 -1
  367. package/lib/components/Tearsheet/Tearsheet.js +9 -1
  368. package/lib/components/Tearsheet/TearsheetNarrow.d.ts +11 -0
  369. package/lib/components/Tearsheet/TearsheetNarrow.js +12 -0
  370. package/lib/components/Tearsheet/TearsheetShell.d.ts +11 -1
  371. package/lib/components/Tearsheet/TearsheetShell.js +26 -5
  372. package/lib/components/Toolbar/ToolbarButton.js +1 -1
  373. package/lib/components/UserAvatar/UserAvatar.d.ts +59 -1
  374. package/lib/components/UserAvatar/UserAvatar.js +7 -23
  375. package/lib/components/WebTerminal/WebTerminal.js +10 -12
  376. package/lib/components/index.d.ts +1 -1
  377. package/lib/global/js/hooks/useFocus.d.ts +1 -0
  378. package/lib/global/js/hooks/useFocus.js +5 -1
  379. package/lib/global/js/hooks/usePrefersReducedMotion.js +13 -7
  380. package/lib/global/js/package-settings.d.ts +1 -1
  381. package/lib/global/js/package-settings.js +1 -1
  382. package/lib/global/js/utils/scrollableAncestor.js +7 -0
  383. package/lib/global/js/utils/uuidv4.d.ts +6 -0
  384. package/lib/global/js/utils/uuidv4.js +2 -0
  385. package/lib/global/js/utils/wait.d.ts +6 -0
  386. package/lib/global/js/utils/wait.js +2 -0
  387. package/lib/index.js +5 -0
  388. package/lib/node_modules/@carbon/icon-helpers/es/index.js +49 -62
  389. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-2.js +1036 -1074
  390. package/lib/node_modules/@carbon/icons-react/es/generated/bucket-9.js +946 -823
  391. package/lib/settings.d.ts +1 -1
  392. package/package.json +8 -7
  393. package/scss/components/Coachmark/_coachmark-overlay.scss +6 -70
  394. package/scss/components/Coachmark/_coachmark.scss +5 -4
  395. package/scss/components/CoachmarkBeacon/_coachmark-beacon.scss +1 -3
  396. package/scss/components/ConditionBuilder/_condition-builder.scss +8 -1
  397. package/scss/components/ConditionBuilder/styles/_conditionBuilderCondition.scss +30 -5
  398. package/scss/components/ConditionBuilder/styles/_conditionBuilderItem.scss +88 -22
  399. package/scss/components/ConditionBuilder/styles/_index.scss +7 -0
  400. package/scss/components/CreateModal/_create-modal.scss +0 -4
  401. package/scss/components/DataSpreadsheet/_data-spreadsheet.scss +16 -2
  402. package/scss/components/Datagrid/_datagrid.scss +0 -4
  403. package/scss/components/Datagrid/styles/_datagrid.scss +1 -0
  404. package/scss/components/Datagrid/styles/_useActionsColumn.scss +6 -7
  405. package/scss/components/Datagrid/styles/_useColumnRightAlign.scss +6 -7
  406. package/scss/components/Datagrid/styles/_useExpandedRow.scss +6 -7
  407. package/scss/components/Datagrid/styles/_useInlineEdit.scss +19 -7
  408. package/scss/components/Datagrid/styles/_useNestedRows.scss +6 -7
  409. package/scss/components/Datagrid/styles/_useNestedTable.scss +6 -7
  410. package/scss/components/Datagrid/styles/_useStickyColumn.scss +6 -7
  411. package/scss/components/Datagrid/styles/addons/_CustomizeColumnsTearsheet.scss +7 -5
  412. package/scss/components/Datagrid/styles/addons/_FilterFlyout.scss +5 -4
  413. package/scss/components/Datagrid/styles/addons/_RowSizeDropdown.scss +6 -7
  414. package/scss/components/HTTPErrors/_http-errors.scss +77 -0
  415. package/scss/components/OptionsTile/_options-tile.scss +6 -6
  416. package/scss/components/SidePanel/_side-panel.scss +1 -1
  417. package/scss/components/_index-released-only.scss +1 -0
  418. package/scss/config-dev.scss +7 -0
  419. package/scss/config.scss +7 -0
  420. package/telemetry.yml +34 -19
  421. package/es/components/ConditionBuilder/utils/checkForHoldingKey.d.ts +0 -1
  422. package/es/components/ConditionBuilder/utils/checkForHoldingKey.js +0 -16
  423. package/es/global/js/utils/window.d.ts +0 -2
  424. package/es/global/js/utils/window.js +0 -12
  425. package/lib/components/ConditionBuilder/utils/checkForHoldingKey.d.ts +0 -1
  426. package/lib/components/ConditionBuilder/utils/checkForHoldingKey.js +0 -20
  427. package/lib/global/js/utils/window.d.ts +0 -2
  428. 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, _path24, _path25;
12
+ var _linearGradient, _linearGradient2, _linearGradient3, _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;
13
+
14
+ // The block part of our conventional BEM class names (blockClass__E--M).
15
+ var blockClass = "".concat(pkg.prefix, "--http-errors-404");
12
16
  var HTTPErrorSvg404 = function HTTPErrorSvg404(_ref) {
13
17
  var className = _ref.className;
14
18
  return /*#__PURE__*/React__default.createElement("svg", {
@@ -17,307 +21,307 @@ var HTTPErrorSvg404 = function HTTPErrorSvg404(_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: 285.88,
323
327
  y1: 580.96,
@@ -331,14 +335,14 @@ var HTTPErrorSvg404 = function HTTPErrorSvg404(_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: 313.9,
337
341
  y1: 557.49,
338
342
  x2: 265.87,
339
343
  y2: 529.75,
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,
@@ -352,7 +356,7 @@ var HTTPErrorSvg404 = function HTTPErrorSvg404(_ref) {
352
356
  offset: 1,
353
357
  stopColor: "#fff",
354
358
  stopOpacity: 0
355
- })), /*#__PURE__*/React__default.createElement("style", null, '.prefix__cls-1{fill:none}.prefix__cls-67{fill:#697077}.prefix__cls-68{fill:#282828}.prefix__cls-69{fill:#51565c}.prefix__cls-70{fill:#002b50}.prefix__cls-71{fill:#413d3d}.prefix__cls-72{fill:#908b8b}.prefix__cls-75{fill:#a4a4a5}.prefix__cls-76{opacity:.15}'))), /*#__PURE__*/React__default.createElement("g", {
359
+ })))), /*#__PURE__*/React__default.createElement("g", {
356
360
  style: {
357
361
  isolation: 'isolate'
358
362
  }
@@ -945,49 +949,49 @@ var HTTPErrorSvg404 = function HTTPErrorSvg404(_ref) {
945
949
  height: 16,
946
950
  transform: "translate(-4 688)",
947
951
  xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAAQCAYAAAD0xERiAAAACXBIWXMAAAsSAAALEgHS3X78AAAAhElEQVQ4T6WUwQ3EIAwEd68x6qGhSzuhsr0XkmNpI5ubFzxsxsZASYhcCwKAOUA0+cTNTpTXVbjN3oKrlg8zx7WgiikltUtypiWzjDuc31stq0y0PDKLxH4e9czBOLT/JJ0DfJRZnScH83PadCy3hL2AOcCuqTXLONOj0ahYls0i7pv6AWHPRlkBO2yyAAAAAElFTkSuQmCC"
948
- }))), _path2 || (_path2 = /*#__PURE__*/React__default.createElement("path", {
949
- className: "prefix__cls-67",
952
+ }))), /*#__PURE__*/React__default.createElement("path", {
953
+ className: "".concat(blockClass, "__prefix-cls-67"),
950
954
  d: "M292.91 588v-1.74a3.61 3.61 0 01-2.12 3 11.33 11.33 0 01-10.27 0 3.59 3.59 0 01-2.13-3V588a3.6 3.6 0 002.13 3 11.33 11.33 0 0010.27 0 3.61 3.61 0 002.12-3"
951
- })), _path3 || (_path3 = /*#__PURE__*/React__default.createElement("path", {
952
- className: "prefix__cls-68",
955
+ }), /*#__PURE__*/React__default.createElement("path", {
956
+ className: "".concat(blockClass, "__prefix-cls-68"),
953
957
  d: "M291.38 565.4a2.86 2.86 0 00-1.68-2.34 9 9 0 00-8.1 0 2.86 2.86 0 00-1.68 2.34l-1.53 20.84a3.58 3.58 0 002.12 3 11.33 11.33 0 0010.27 0 3.61 3.61 0 002.12-3z"
954
- })), _path4 || (_path4 = /*#__PURE__*/React__default.createElement("path", {
955
- className: "prefix__cls-69",
958
+ }), /*#__PURE__*/React__default.createElement("path", {
959
+ className: "".concat(blockClass, "__prefix-cls-69"),
956
960
  d: "M289.19 558.16c-2.38-1.42-8-1.25-8.54 2V566c.53 3.29 6.15 3.46 8.54 2a2.48 2.48 0 001.47-2v-5.8a2.48 2.48 0 00-1.47-2.04z"
957
- })), _path5 || (_path5 = /*#__PURE__*/React__default.createElement("path", {
958
- className: "prefix__cls-68",
961
+ }), /*#__PURE__*/React__default.createElement("path", {
962
+ className: "".concat(blockClass, "__prefix-cls-68"),
959
963
  d: "M289.78 574.37l.73-6.78a2.47 2.47 0 00-1.66-2.61l-1.78-.62a4.42 4.42 0 00-2.83 0l-1.81.62a2.48 2.48 0 00-1.66 2.62l.75 6.77M334.63 562.08l-13.05-11-7-3.87a9.21 9.21 0 00-8 .12 3.41 3.41 0 00-1.7 2.94v5.48a2.88 2.88 0 001.7 2.36l8.63 5.53 7.53 4.81c.16.11.32.22.5.32 3.35 2.05 11.71 1.78 12.35-2.95v-1.67a2.64 2.64 0 00-.96-2.07z"
960
- })), _path6 || (_path6 = /*#__PURE__*/React__default.createElement("path", {
961
- className: "prefix__cls-69",
964
+ }), /*#__PURE__*/React__default.createElement("path", {
965
+ className: "".concat(blockClass, "__prefix-cls-69"),
962
966
  d: "M314.45 542.54c-2.39-1.43-8-1.25-8.54 2v5.78c.53 3.29 6.15 3.46 8.54 2a2.49 2.49 0 001.47-2v-5.78a2.48 2.48 0 00-1.47-2z"
963
- })), _path7 || (_path7 = /*#__PURE__*/React__default.createElement("path", {
964
- className: "prefix__cls-68",
967
+ }), /*#__PURE__*/React__default.createElement("path", {
968
+ className: "".concat(blockClass, "__prefix-cls-68"),
965
969
  d: "M313.13 554.42l-1.41-1.28a1.17 1.17 0 010-1.77l3.57-2.86c.39-.31-.41.27 0 0 1-.84 2.78-1.7 4-.14.09.12 2.4 2.93 2.23 2.72l13.13 11c1.11.83.94 2.47.93 3.69"
966
- })), _path8 || (_path8 = /*#__PURE__*/React__default.createElement("path", {
967
- className: "prefix__cls-67",
970
+ }), /*#__PURE__*/React__default.createElement("path", {
971
+ className: "".concat(blockClass, "__prefix-cls-67"),
968
972
  d: "M304.93 557.18a2.91 2.91 0 001.7 2.38c4.29 2.73 12.4 7.93 16.66 10.66a11.31 11.31 0 0010.23 0 3.61 3.61 0 002.12-3v-1.52a3.59 3.59 0 01-2.12 2.95 11.31 11.31 0 01-10.23 0L306.63 558a2.9 2.9 0 01-1.7-2.38z"
969
- })), _path9 || (_path9 = /*#__PURE__*/React__default.createElement("path", {
970
- className: "prefix__cls-70",
973
+ }), /*#__PURE__*/React__default.createElement("path", {
974
+ className: "".concat(blockClass, "__prefix-cls-70"),
971
975
  d: "M321.27 425.43c-6.12-3.5-15.32-3.53-21.52-.16-3.36 1.9-5.09 4.53-4.56 7.31.08.23 6.23 56.22 6.49 57.74-1.1 12.22-3.72 40.58.63 51.66.25.64.42 1.3.61 2 1.06 3.71 7.79 4.19 11 3.16 2.29-.66 4-2.17 4.06-4.68 0-.19 4.72-40.33 4.82-41.28 0 .1 1-7.3 1.06-8.92.19-3.64.58-11 1-19.15.83-15.72.87-27.75.87-27.75.21-2.44-1.37-17.81-4.46-19.93z"
972
- })), _path10 || (_path10 = /*#__PURE__*/React__default.createElement("path", {
973
- className: "prefix__cls-70",
976
+ }), /*#__PURE__*/React__default.createElement("path", {
977
+ className: "".concat(blockClass, "__prefix-cls-70"),
974
978
  d: "M302.87 458.5c.16-2.39.45-17.76-2.64-19.88-6.12-3.5-16.26-3.53-22.45-.16-3.36 1.89-5.09 4.53-4.56 7.31.08.23 3.33 43 3.59 44.51L278 558.1c.17 4.52 7.69 5.16 11.18 4 2.29-.66 4-2.17 4.06-4.68 0-.19 3.78-40.33 3.88-41.28l2.07-28.07z"
975
- })), _path11 || (_path11 = /*#__PURE__*/React__default.createElement("path", {
976
- className: "prefix__cls-71",
979
+ }), /*#__PURE__*/React__default.createElement("path", {
980
+ className: "".concat(blockClass, "__prefix-cls-71"),
977
981
  d: "M326.07 368.65c2.6-1.75 1.91-4.45.77-6.5-2-4.25-8.61-3.86-8.61-9.69.25-4.91-4.56-4-4.56-4l-8.75 7.54z"
978
- })), _path12 || (_path12 = /*#__PURE__*/React__default.createElement("path", {
979
- className: "prefix__cls-72",
982
+ }), /*#__PURE__*/React__default.createElement("path", {
983
+ className: "".concat(blockClass, "__prefix-cls-72"),
980
984
  d: "M329 430.49s2.94 12.21-2.18 13.56a2.91 2.91 0 01-3.64-1.79l.22-10.51a5.94 5.94 0 005.6-1.26l1.26-35"
981
- })), _path13 || (_path13 = /*#__PURE__*/React__default.createElement("path", {
982
- className: "prefix__cls-72",
985
+ }), /*#__PURE__*/React__default.createElement("path", {
986
+ className: "".concat(blockClass, "__prefix-cls-72"),
983
987
  d: "M323.44 431.75l-2.18-36.39s4.82 2.08 9 .17l-1.26 35a6.52 6.52 0 01-5.56 1.22z"
984
- })), _path14 || (_path14 = /*#__PURE__*/React__default.createElement("path", {
988
+ }), _path2 || (_path2 = /*#__PURE__*/React__default.createElement("path", {
985
989
  d: "M279.85 454.1c11.47 6.13 28 3.91 38.55-2.14 5.29-3 8-7.51 7.85-11.08-.67-4.64-3.29-23.3-3.2-22.69.17-4.64.64-17.18.82-21.82h.11a12.93 12.93 0 006.58-.73c4.21-2.1 2.14-10.37 2.35-14.46-.56-14.87-14.41-21-27.4-24.94l-17.32 3.92C255.78 385.34 260.25 391 259.73 411c-.13 7.38 6.39 10.22 12.66 7.78l.37 5.11c0 .08-.64 8.06-1 12.94-.17 2.16-.29 3.71-.28 3.72-.01 4.11 3.02 10.7 8.37 13.55z",
986
990
  fill: "#0058a1"
987
- })), _path15 || (_path15 = /*#__PURE__*/React__default.createElement("path", {
988
- className: "prefix__cls-72",
991
+ })), /*#__PURE__*/React__default.createElement("path", {
992
+ className: "".concat(blockClass, "__prefix-cls-72"),
989
993
  d: "M288.78 359.06c-2.06 2-1.41 4.2 2 6.15a33.51 33.51 0 007.43 3.24c2.81.77 5.63.93 7.77-.31 4.44-2.56 4.05-9.69-.44-11.93v-15a3.61 3.61 0 00-2.13-3c-2-1.24-5.84-1.63-8.73-.73-1.93.6-3.44 1.79-3.7 3.7v13.8a7.63 7.63 0 01-2.2 4.08z"
990
- })), /*#__PURE__*/React__default.createElement("image", {
994
+ }), /*#__PURE__*/React__default.createElement("image", {
991
995
  width: 23,
992
996
  height: 33,
993
997
  transform: "translate(287 337)",
@@ -996,35 +1000,35 @@ var HTTPErrorSvg404 = function HTTPErrorSvg404(_ref) {
996
1000
  mixBlendMode: 'multiply'
997
1001
  },
998
1002
  opacity: 0.25
999
- }), _path16 || (_path16 = /*#__PURE__*/React__default.createElement("path", {
1000
- className: "prefix__cls-75",
1003
+ }), /*#__PURE__*/React__default.createElement("path", {
1004
+ className: "".concat(blockClass, "__prefix-cls-75"),
1001
1005
  d: "M335.53 451.85l5.41-64.14 21.45-19.02-5.39 63.99-21.47 19.17z"
1002
- })), _path17 || (_path17 = /*#__PURE__*/React__default.createElement("path", {
1003
- className: "prefix__cls-75",
1006
+ }), /*#__PURE__*/React__default.createElement("path", {
1007
+ className: "".concat(blockClass, "__prefix-cls-75"),
1004
1008
  d: "M362.39 368.69L357 432.68l21.95-11.52 5.42-64.2-21.98 11.73zM316.52 396.04l24.42-8.33-5.41 64.14-24.48 8.34 5.47-64.15z"
1005
- })), _path18 || (_path18 = /*#__PURE__*/React__default.createElement("path", {
1006
- className: "prefix__cls-72",
1009
+ }), /*#__PURE__*/React__default.createElement("path", {
1010
+ className: "".concat(blockClass, "__prefix-cls-72"),
1007
1011
  d: "M262.58 430.46l-.9-13.44c3.83 4.23 11.71 2.5 14-.5v8.17"
1008
- })), _path19 || (_path19 = /*#__PURE__*/React__default.createElement("path", {
1009
- className: "prefix__cls-76",
1012
+ }), /*#__PURE__*/React__default.createElement("path", {
1013
+ className: "".concat(blockClass, "__prefix-cls-76"),
1010
1014
  d: "M261.68 417c2.88 3.18 8.1 3.11 11.68 1.29 4.12-2 3.69-5.44 3.56-9.35 2.22 0 1.87 2.61 1.86 4.09a7.08 7.08 0 01-.75 3.25 2.26 2.26 0 00-.49 1.24v4.14c0 .38.17 1.38-.07 1.59s-1.39.14-1.78.18v-4.4c-3.58 2.91-13.35 4.27-14.01-2.03z"
1011
- })), _path20 || (_path20 = /*#__PURE__*/React__default.createElement("path", {
1015
+ }), _path3 || (_path3 = /*#__PURE__*/React__default.createElement("path", {
1012
1016
  fill: "#575757",
1013
1017
  opacity: 0.2,
1014
1018
  d: "M381.89 392l-.81-1.68-20.41 9.93 2.7-32.08-.98.52-1.01.89-2.68 31.79-19.5 18.03 2.75-32.59-1.01.9-.97.33-2.78 32.97-23.77 7.31.54 1.78 23.06-7.09-2.46 29.17.97-.33 1.01-.9 2.43-28.8 19.5-18.03-2.48 29.47 1.01-.91.98-.51 2.5-29.76L381.89 392z"
1015
- })), _path21 || (_path21 = /*#__PURE__*/React__default.createElement("path", {
1016
- className: "prefix__cls-72",
1019
+ })), /*#__PURE__*/React__default.createElement("path", {
1020
+ className: "".concat(blockClass, "__prefix-cls-72"),
1017
1021
  d: "M384.28 397.47l-2.28 1.35a2.67 2.67 0 01-3.52-.82c-2.24-3.57-3-9.46 1.06-11.93l1.53-.88.6-.36a3.56 3.56 0 015.23 3.11v5.1a5.33 5.33 0 01-2.62 4.43z"
1018
- })), _path22 || (_path22 = /*#__PURE__*/React__default.createElement("path", {
1019
- className: "prefix__cls-76",
1022
+ }), /*#__PURE__*/React__default.createElement("path", {
1023
+ className: "".concat(blockClass, "__prefix-cls-76"),
1020
1024
  d: "M311.48 455.09c.41-4.9 1.57-18.27 2-23.49 5.37.82 11.31-.19 11.28-6.91-.37.69-.28 1.62-.6 2.34-.69 1.52-2.8 2.23-4.27 2.54-3.7 1-7.45-.58-11.13.24a83.69 83.69 0 00-11.21 1.74l-25.79 4.88-.15 1.93 32.8-6.22c2.4-.29 4.84-.53 7.21-.74l-1.89 22.27-.18 2z"
1021
- })), _path23 || (_path23 = /*#__PURE__*/React__default.createElement("path", {
1022
- className: "prefix__cls-72",
1025
+ }), /*#__PURE__*/React__default.createElement("path", {
1026
+ className: "".concat(blockClass, "__prefix-cls-72"),
1023
1027
  d: "M313.2 429.69c-2.37-.63-4.6.4-6.63.31a6.56 6.56 0 00-1.4.11l-34.51 6.53c-3.48.57-7.61-3.23-8.08-6.18s3.13-6 6.78-6.37l36.24-3.69c2.62-1.45 6.5-3.09 7.77-3.23 3.75-.5 9.49.69 10.88 4.76 3.41 9.98-11.05 7.76-11.05 7.76zM299.68 318.62a16.25 16.25 0 00-16.24 16.25v10c.85 21.54 31.63 21.54 32.48 0v-10a16.25 16.25 0 00-16.24-16.25z"
1024
- })), _path24 || (_path24 = /*#__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: "M315 324.93c-4.52-5.64-13.28-9.63-20.3-7.47-6.92-1-18.65 0-19.6 17.11 0 4.72.24 10.61-1.08 15.14a8.82 8.82 0 01-5.29 6 8.81 8.81 0 00-5.56 8.2c0 2.06 1.24 6.82-2.05 7.79-13.48 3.51-11.47 31.57-1.29 33.75 0-15.71-.78-22.55 28-45a4.11 4.11 0 011-1.36 9.6 9.6 0 001.05-1.32 17.29 17.29 0 01-5.74-9 16.54 16.54 0 01-.54-2.92c0-.27-.18-.6.09-.42 2 .76 5.54.67 5.3-5.07.12-4.74 1.43-6.65 3.69-7.23 4.74-.82 11.6 2.88 16.3 2.45 1.26-.07 7.49-.48 7.54-3.15s.15-5.43-1.52-7.5z"
1027
- })), _path25 || (_path25 = /*#__PURE__*/React__default.createElement("path", {
1031
+ }), _path4 || (_path4 = /*#__PURE__*/React__default.createElement("path", {
1028
1032
  d: "M294.6 271.56v-13.12q6.57-.26 10.25-3a9 9 0 003.69-7.74v-1.13a8.2 8.2 0 00-2.47-6.28 9.17 9.17 0 00-6.52-2.31 9.75 9.75 0 00-7.05 2.56 13.06 13.06 0 00-3.65 6.44l-6.72-2.6a20.18 20.18 0 012.15-4.94 16.59 16.59 0 018.66-7.09 19.93 19.93 0 016.85-1.09 21 21 0 016.92 1.09 14.83 14.83 0 015.31 3.16 14 14 0 013.36 4.94 16.75 16.75 0 011.18 6.36 16.23 16.23 0 01-1.3 6.69 15.49 15.49 0 01-3.36 4.86 17.78 17.78 0 01-4.74 3.24 22.13 22.13 0 01-5.35 1.74v8.18zm3.49 18.22a4.67 4.67 0 01-5.35-5v-1.21a5.35 5.35 0 1110.69 0v1.21a4.66 4.66 0 01-5.34 5z",
1029
1033
  fill: "#0062ff"
1030
1034
  })))));