@carbon/ibm-products 2.50.0 → 2.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/css/index-full-carbon.css +56 -29
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +1 -1
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon-released-only.css +3 -10
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css +1 -1
- package/css/index-without-carbon-released-only.min.css.map +1 -1
- package/css/index-without-carbon.css +3 -10
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +1 -1
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +34 -28
- package/css/index.css.map +1 -1
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/es/components/ActionBar/ActionBarOverflowItems.js +5 -0
- package/es/components/AddSelect/AddSelectBody.js +1 -1
- package/es/components/BigNumbers/BigNumbers.js +1 -1
- package/es/components/Coachmark/utils/enums.js +1 -0
- package/es/components/ConditionBuilder/ConditionBuilder.js +26 -20
- package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +6 -2
- package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +11 -8
- package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +44 -24
- package/es/components/CreateFullPage/CreateFullPage.d.ts +4 -2
- package/es/components/CreateFullPage/CreateFullPage.js +10 -3
- package/es/components/CreateFullPage/CreateFullPageStep.d.ts +3 -1
- package/es/components/CreateFullPage/CreateFullPageStep.js +5 -2
- package/es/components/Datagrid/Datagrid/Datagrid.d.ts +1 -1
- package/es/components/Datagrid/Datagrid/Datagrid.js +1 -1
- package/es/components/Datagrid/Datagrid/DatagridToolbar.js +12 -1
- package/es/components/Datagrid/Datagrid/DraggableElement.js +1 -0
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +3 -8
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +15 -13
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +17 -2
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +13 -2
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +1 -12
- package/es/components/Datagrid/types/index.d.ts +4 -0
- package/es/components/Datagrid/useSelectRows.js +40 -19
- package/es/components/EditInPlace/EditInPlace.js +0 -3
- package/es/components/ExportModal/ExportModal.js +18 -5
- package/es/components/NotificationsPanel/NotificationsPanel.d.ts +5 -1
- package/es/components/NotificationsPanel/NotificationsPanel.js +14 -1
- package/es/components/OptionsTile/OptionsTile.d.ts +1 -1
- package/es/components/OptionsTile/OptionsTile.js +0 -1
- package/es/components/ProductiveCard/ProductiveCard.d.ts +4 -0
- package/es/components/ProductiveCard/ProductiveCard.js +4 -0
- package/es/components/ScrollGradient/ScrollGradient.js +1 -1
- package/es/components/SimpleHeader/SimpleHeader.d.ts +3 -1
- package/es/components/SimpleHeader/SimpleHeader.js +9 -2
- package/es/components/StringFormatter/StringFormatter.js +1 -1
- package/es/components/TagSet/TagSet.js +5 -0
- package/es/components/TagSet/TagSetOverflow.d.ts +4 -0
- package/es/components/TagSet/TagSetOverflow.js +13 -6
- package/es/components/Tearsheet/TearsheetShell.js +9 -2
- package/es/components/UserProfileImage/UserProfileImage.d.ts +1 -1
- package/es/components/UserProfileImage/UserProfileImage.js +1 -1
- package/es/global/js/utils/Wrap.d.ts +4 -0
- package/es/global/js/utils/Wrap.js +9 -3
- package/es/global/js/utils/devtools.js +1 -2
- package/es/node_modules/@carbon/icon-helpers/es/index.js +3 -3
- package/lib/_virtual/_commonjsHelpers.js +0 -2
- package/lib/_virtual/_rollupPluginBabelHelpers.js +2 -4
- package/lib/_virtual/index.js +0 -2
- package/lib/components/APIKeyModal/APIKeyDownloader.js +8 -14
- package/lib/components/APIKeyModal/APIKeyModal.js +70 -77
- package/lib/components/AboutModal/AboutModal.js +29 -36
- package/lib/components/ActionBar/ActionBar.js +26 -33
- package/lib/components/ActionBar/ActionBarItem.js +9 -16
- package/lib/components/ActionBar/ActionBarOverflowItems.js +23 -25
- package/lib/components/ActionSet/ActionSet.js +17 -24
- package/lib/components/AddSelect/AddSelect.js +62 -68
- package/lib/components/AddSelect/AddSelectBody.js +82 -89
- package/lib/components/AddSelect/AddSelectBreadcrumbs.js +6 -13
- package/lib/components/AddSelect/AddSelectColumn.js +29 -35
- package/lib/components/AddSelect/AddSelectFilter.js +30 -37
- package/lib/components/AddSelect/AddSelectFormControl.js +15 -21
- package/lib/components/AddSelect/AddSelectList.js +9 -16
- package/lib/components/AddSelect/AddSelectMetaPanel.js +16 -22
- package/lib/components/AddSelect/AddSelectRow.js +32 -39
- package/lib/components/AddSelect/AddSelectSidebar.js +29 -35
- package/lib/components/AddSelect/AddSelectSort.js +10 -16
- package/lib/components/AddSelect/add-select-utils.js +0 -2
- package/lib/components/AddSelect/hooks/useFocus.js +1 -1
- package/lib/components/AddSelect/hooks/useItemSort.js +0 -2
- package/lib/components/AddSelect/hooks/useParentSelect.js +1 -1
- package/lib/components/AddSelect/hooks/usePath.js +1 -1
- package/lib/components/BigNumbers/BigNumbers.js +39 -46
- package/lib/components/BigNumbers/constants.js +0 -2
- package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +35 -42
- package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +22 -29
- package/lib/components/Card/Card.js +73 -80
- package/lib/components/Card/CardFooter.js +28 -35
- package/lib/components/Card/CardHeader.js +37 -44
- package/lib/components/Carousel/Carousel.js +21 -28
- package/lib/components/Carousel/CarouselItem.js +5 -12
- package/lib/components/Cascade/Cascade.js +15 -22
- package/lib/components/Checklist/Checklist.js +50 -57
- package/lib/components/Checklist/Checklist.types.js +0 -2
- package/lib/components/Checklist/ChecklistChart.js +7 -15
- package/lib/components/Checklist/ChecklistIcon.js +7 -14
- package/lib/components/Coachmark/Coachmark.js +24 -31
- package/lib/components/Coachmark/CoachmarkDragbar.js +12 -19
- package/lib/components/Coachmark/CoachmarkHeader.js +9 -16
- package/lib/components/Coachmark/CoachmarkOverlay.js +14 -21
- package/lib/components/Coachmark/CoachmarkTagline.js +12 -19
- package/lib/components/Coachmark/utils/constants.js +0 -2
- package/lib/components/Coachmark/utils/context.js +0 -2
- package/lib/components/Coachmark/utils/enums.js +1 -2
- package/lib/components/Coachmark/utils/hooks.js +0 -2
- package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +10 -17
- package/lib/components/CoachmarkButton/CoachmarkButton.js +6 -13
- package/lib/components/CoachmarkFixed/CoachmarkFixed.js +13 -20
- package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +11 -18
- package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +25 -32
- package/lib/components/CoachmarkStack/CoachmarkStack.js +23 -30
- package/lib/components/CoachmarkStack/CoachmarkStackHome.js +29 -36
- package/lib/components/ComboButton/ComboButton.js +11 -18
- package/lib/components/ComboButton/ComboButtonItem/index.js +2 -8
- package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +34 -39
- package/lib/components/ConditionBuilder/ConditionBuilder.js +58 -59
- package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +6 -2
- package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +18 -23
- package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +15 -20
- package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +20 -27
- package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +8 -12
- package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +4 -8
- package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +11 -8
- package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +63 -47
- package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +25 -31
- package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +0 -2
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +17 -23
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +9 -15
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +5 -11
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +13 -19
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +17 -23
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +6 -12
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +9 -15
- package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +27 -32
- package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +25 -30
- package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +0 -2
- package/lib/components/ConditionBuilder/utils/useDataConfigs.js +0 -2
- package/lib/components/ConditionBuilder/utils/useTranslations.js +0 -2
- package/lib/components/ConditionBuilder/utils/util.js +0 -2
- package/lib/components/CreateFullPage/CreateFullPage.d.ts +4 -2
- package/lib/components/CreateFullPage/CreateFullPage.js +53 -53
- package/lib/components/CreateFullPage/CreateFullPageStep.d.ts +3 -1
- package/lib/components/CreateFullPage/CreateFullPageStep.js +27 -31
- package/lib/components/CreateInfluencer/CreateInfluencer.js +15 -22
- package/lib/components/CreateModal/CreateModal.js +22 -29
- package/lib/components/CreateSidePanel/CreateSidePanel.js +24 -31
- package/lib/components/CreateTearsheet/CreateTearsheet.js +26 -33
- package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +3 -10
- package/lib/components/CreateTearsheet/CreateTearsheetStep.js +31 -38
- package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +24 -31
- package/lib/components/DataSpreadsheet/DataSpreadsheet.js +37 -44
- package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +54 -61
- package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +37 -44
- package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +0 -2
- package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +0 -2
- package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.js +0 -2
- package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +0 -2
- package/lib/components/DataSpreadsheet/utils/commonEventHandlers.js +1 -3
- package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +0 -2
- package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +0 -2
- package/lib/components/DataSpreadsheet/utils/getCellSize.js +0 -2
- package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +0 -2
- package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +0 -2
- package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +0 -2
- package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +0 -2
- package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +0 -2
- package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +1 -3
- package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +1 -3
- package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +2 -4
- package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +0 -2
- package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +0 -2
- package/lib/components/DataSpreadsheet/utils/selectAllCells.js +1 -3
- package/lib/components/Datagrid/Datagrid/Datagrid.d.ts +1 -1
- package/lib/components/Datagrid/Datagrid/Datagrid.js +10 -17
- package/lib/components/Datagrid/Datagrid/DatagridBody.js +5 -9
- package/lib/components/Datagrid/Datagrid/DatagridContent.js +43 -50
- package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +4 -8
- package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +6 -11
- package/lib/components/Datagrid/Datagrid/DatagridHead.js +2 -6
- package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +12 -17
- package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +3 -8
- package/lib/components/Datagrid/Datagrid/DatagridRow.js +12 -17
- package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +4 -11
- package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +18 -23
- package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +3 -8
- package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +26 -20
- package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +5 -9
- package/lib/components/Datagrid/Datagrid/DraggableElement.js +18 -22
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +11 -12
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +10 -11
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +25 -31
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +21 -30
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +7 -13
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +18 -20
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -7
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +49 -39
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +54 -48
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +5 -11
- package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +11 -15
- package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +1 -1
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +16 -31
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +2 -6
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +1 -1
- package/lib/components/Datagrid/Datagrid/addons/Filtering/motion/variants.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +18 -25
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +32 -39
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +2 -8
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +12 -17
- package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +11 -16
- package/lib/components/Datagrid/Datagrid/addons/Slug/DatagridSlug.js +2 -8
- package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +0 -2
- package/lib/components/Datagrid/common-column-ids.js +0 -2
- package/lib/components/Datagrid/types/index.d.ts +4 -0
- package/lib/components/Datagrid/useActionsColumn.js +12 -17
- package/lib/components/Datagrid/useColumnCenterAlign.js +4 -9
- package/lib/components/Datagrid/useColumnRightAlign.js +4 -9
- package/lib/components/Datagrid/useCustomizeColumns.js +6 -7
- package/lib/components/Datagrid/useDatagrid.js +4 -8
- package/lib/components/Datagrid/useDefaultStringRenderer.js +5 -10
- package/lib/components/Datagrid/useDisableSelectRows.js +1 -1
- package/lib/components/Datagrid/useEditableCell.js +2 -2
- package/lib/components/Datagrid/useExpandedRow.js +3 -3
- package/lib/components/Datagrid/useFiltering.js +5 -5
- package/lib/components/Datagrid/useFlexResize.js +1 -1
- package/lib/components/Datagrid/useFloatingScroll.js +2 -6
- package/lib/components/Datagrid/useFocusRowExpander.js +0 -2
- package/lib/components/Datagrid/useInfiniteScroll.js +4 -8
- package/lib/components/Datagrid/useInitialColumnSort.js +0 -2
- package/lib/components/Datagrid/useInlineEdit.js +7 -12
- package/lib/components/Datagrid/useNestedRowExpander.js +5 -10
- package/lib/components/Datagrid/useNestedRows.js +3 -7
- package/lib/components/Datagrid/useOnRowClick.js +1 -1
- package/lib/components/Datagrid/useParentDimensions.js +1 -1
- package/lib/components/Datagrid/useResizeTable.js +1 -1
- package/lib/components/Datagrid/useRowExpander.js +5 -10
- package/lib/components/Datagrid/useRowIsMouseOver.js +2 -6
- package/lib/components/Datagrid/useRowRenderer.js +2 -2
- package/lib/components/Datagrid/useRowSize.js +2 -2
- package/lib/components/Datagrid/useSelectAllToggle.js +3 -8
- package/lib/components/Datagrid/useSelectRows.js +45 -29
- package/lib/components/Datagrid/useSkeletonRows.js +1 -1
- package/lib/components/Datagrid/useSortableColumns.js +8 -13
- package/lib/components/Datagrid/useStickyColumn.js +4 -9
- package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +0 -2
- package/lib/components/Decorator/Decorator.js +16 -22
- package/lib/components/DecoratorBase/DecoratorBase.js +41 -48
- package/lib/components/DecoratorBase/DecoratorIcon.js +6 -13
- package/lib/components/DecoratorBase/utils.js +0 -2
- package/lib/components/DecoratorDualButton/DecoratorDualButton.js +21 -27
- package/lib/components/DecoratorLink/DecoratorLink.js +19 -25
- package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +19 -25
- package/lib/components/DelimitedList/DelimitedList.js +7 -14
- package/lib/components/DescriptionList/DescriptionList.js +8 -15
- package/lib/components/DescriptionList/DescriptionListBody.js +5 -12
- package/lib/components/DescriptionList/DescriptionListCell.js +5 -12
- package/lib/components/DescriptionList/DescriptionListRow.js +5 -12
- package/lib/components/DescriptionList/constants.js +0 -2
- package/lib/components/EditFullPage/EditFullPage.js +5 -12
- package/lib/components/EditInPlace/EditInPlace.js +35 -45
- package/lib/components/EditSidePanel/EditSidePanel.js +26 -33
- package/lib/components/EditTearsheet/EditTearsheet.js +24 -31
- package/lib/components/EditTearsheet/EditTearsheetForm.js +16 -23
- package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +5 -12
- package/lib/components/EditUpdateCards/EditUpdateCards.js +32 -39
- package/lib/components/EmptyStates/EmptyState.js +22 -29
- package/lib/components/EmptyStates/EmptyStateContent.js +18 -25
- package/lib/components/EmptyStates/EmptyStateIllustration.js +3 -7
- package/lib/components/EmptyStates/EmptyStateV2.js +25 -32
- package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +19 -26
- package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +19 -26
- package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +19 -26
- package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +19 -26
- package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +19 -26
- package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +19 -26
- package/lib/components/EmptyStates/assets/ErrorIllustration.js +53 -58
- package/lib/components/EmptyStates/assets/NoDataIllustration.js +43 -48
- package/lib/components/EmptyStates/assets/NoTagsIllustration.js +114 -119
- package/lib/components/EmptyStates/assets/NotFoundIllustration.js +84 -89
- package/lib/components/EmptyStates/assets/NotificationsIllustration.js +81 -86
- package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +74 -79
- package/lib/components/ExportModal/ExportModal.js +59 -53
- package/lib/components/ExpressiveCard/ExpressiveCard.js +28 -34
- package/lib/components/FeatureFlags/index.js +3 -9
- package/lib/components/FilterPanel/FilterPanel.js +7 -14
- package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +10 -17
- package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +13 -20
- package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +9 -16
- package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +17 -24
- package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +11 -18
- package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +9 -16
- package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +9 -16
- package/lib/components/FilterSummary/FilterSummary.js +22 -28
- package/lib/components/FullPageError/FullPageError.js +21 -28
- package/lib/components/FullPageError/assets/Error403SVG.js +129 -135
- package/lib/components/FullPageError/assets/Error404SVG.js +114 -120
- package/lib/components/FullPageError/assets/ErrorGenericSVG.js +128 -134
- package/lib/components/GetStartedCard/GetStartedCard.js +16 -22
- package/lib/components/Guidebanner/Guidebanner.js +32 -39
- package/lib/components/Guidebanner/GuidebannerElement.js +10 -17
- package/lib/components/Guidebanner/GuidebannerElementButton.js +9 -16
- package/lib/components/Guidebanner/GuidebannerElementLink.js +5 -12
- package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +5 -12
- package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +5 -12
- package/lib/components/HTTPErrors/HTTPErrorContent.js +5 -11
- package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +5 -12
- package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +358 -364
- package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +309 -315
- package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +321 -327
- package/lib/components/ImportModal/ImportModal.js +48 -55
- package/lib/components/InlineTip/InlineTip.js +38 -45
- package/lib/components/InlineTip/InlineTipButton.js +5 -12
- package/lib/components/InlineTip/InlineTipLink.js +6 -13
- package/lib/components/InlineTip/utils.js +2 -4
- package/lib/components/InterstitialScreen/InterstitialScreen.js +73 -80
- package/lib/components/InterstitialScreenView/InterstitialScreenView.js +6 -13
- package/lib/components/InterstitialScreenViewModule/InterstitialScreenViewModule.js +8 -15
- package/lib/components/MultiAddSelect/MultiAddSelect.js +45 -51
- package/lib/components/Nav/Nav.js +14 -21
- package/lib/components/Nav/NavItem.js +19 -24
- package/lib/components/Nav/NavItemLink.js +4 -8
- package/lib/components/Nav/NavList.js +12 -17
- package/lib/components/NonLinearReading/NonLinearReading.js +12 -19
- package/lib/components/NotificationsPanel/NotificationsPanel.d.ts +5 -1
- package/lib/components/NotificationsPanel/NotificationsPanel.js +104 -98
- package/lib/components/NotificationsPanel/utils.js +0 -2
- package/lib/components/OptionsTile/OptionsTile.d.ts +1 -1
- package/lib/components/OptionsTile/OptionsTile.js +40 -48
- package/lib/components/PageHeader/PageHeader.js +105 -112
- package/lib/components/PageHeader/PageHeaderTitle.js +23 -30
- package/lib/components/PageHeader/PageHeaderUtils.js +2 -9
- package/lib/components/ProductiveCard/ProductiveCard.d.ts +4 -0
- package/lib/components/ProductiveCard/ProductiveCard.js +39 -41
- package/lib/components/RemoveModal/RemoveModal.js +27 -34
- package/lib/components/Saving/Saving.js +27 -34
- package/lib/components/ScrollGradient/ScrollGradient.js +17 -24
- package/lib/components/ScrollGradient/constants.js +0 -2
- package/lib/components/SearchBar/SearchBar.js +22 -29
- package/lib/components/SidePanel/SidePanel.js +66 -73
- package/lib/components/SidePanel/constants.js +0 -2
- package/lib/components/SidePanel/motion/variants.js +0 -2
- package/lib/components/SimpleHeader/SimpleHeader.d.ts +3 -1
- package/lib/components/SimpleHeader/SimpleHeader.js +27 -27
- package/lib/components/SingleAddSelect/SingleAddSelect.js +21 -27
- package/lib/components/StatusIcon/StatusIcon.js +52 -59
- package/lib/components/StatusIndicator/StatusIndicator.js +13 -20
- package/lib/components/StatusIndicator/StatusIndicatorStep.js +14 -21
- package/lib/components/SteppedAnimatedMedia/SteppedAnimatedMedia.js +8 -17
- package/lib/components/StringFormatter/StringFormatter.js +12 -19
- package/lib/components/StringFormatter/utils/enums.js +0 -2
- package/lib/components/TagOverflow/TagOverflow.js +26 -33
- package/lib/components/TagOverflow/TagOverflowModal.js +17 -24
- package/lib/components/TagOverflow/TagOverflowPopover.js +22 -29
- package/lib/components/TagOverflow/constants.js +0 -2
- package/lib/components/TagSet/TagSet.js +39 -41
- package/lib/components/TagSet/TagSetModal.js +16 -23
- package/lib/components/TagSet/TagSetOverflow.d.ts +4 -0
- package/lib/components/TagSet/TagSetOverflow.js +32 -32
- package/lib/components/Tearsheet/Tearsheet.js +23 -29
- package/lib/components/Tearsheet/TearsheetNarrow.js +18 -24
- package/lib/components/Tearsheet/TearsheetShell.js +63 -63
- package/lib/components/Toolbar/Toolbar.js +3 -10
- package/lib/components/Toolbar/ToolbarButton.js +3 -10
- package/lib/components/Toolbar/ToolbarGroup.js +2 -9
- package/lib/components/TooltipTrigger/TooltipTrigger.js +4 -11
- package/lib/components/TruncatedList/TruncatedList.js +15 -22
- package/lib/components/UserAvatar/UserAvatar.js +18 -25
- package/lib/components/UserProfileImage/UserProfileImage.d.ts +1 -1
- package/lib/components/UserProfileImage/UserProfileImage.js +25 -32
- package/lib/components/WebTerminal/WebTerminal.js +26 -33
- package/lib/components/WebTerminal/WebTerminalContentWrapper.js +4 -11
- package/lib/components/WebTerminal/hooks/index.js +2 -8
- package/lib/components/_Canary/Canary.js +7 -14
- package/lib/feature-flags.js +3 -4
- package/lib/global/js/hooks/useActiveElement.js +0 -2
- package/lib/global/js/hooks/useClickOutside.js +0 -2
- package/lib/global/js/hooks/useControllableState.js +2 -4
- package/lib/global/js/hooks/useCreateComponentFocus.js +1 -3
- package/lib/global/js/hooks/useCreateComponentStepChange.js +0 -2
- package/lib/global/js/hooks/useFocus.js +1 -3
- package/lib/global/js/hooks/useIsomorphicEffect.js +0 -2
- package/lib/global/js/hooks/usePortalTarget.js +0 -2
- package/lib/global/js/hooks/usePrefersReducedMotion.js +1 -1
- package/lib/global/js/hooks/usePrefix.js +1 -3
- package/lib/global/js/hooks/usePreviousValue.js +0 -2
- package/lib/global/js/hooks/useResetCreateComponent.js +0 -2
- package/lib/global/js/hooks/useResizeObserver.js +0 -2
- package/lib/global/js/hooks/useRetrieveFormTitles.js +0 -2
- package/lib/global/js/hooks/useRetrieveStepData.js +0 -2
- package/lib/global/js/hooks/useValidCreateStepCount.js +0 -2
- package/lib/global/js/hooks/useWindowResize.js +1 -3
- package/lib/global/js/hooks/useWindowScroll.js +1 -3
- package/lib/global/js/package-settings.js +1 -1
- package/lib/global/js/utils/Wrap.d.ts +4 -0
- package/lib/global/js/utils/Wrap.js +16 -16
- package/lib/global/js/utils/deepCloneObject.js +1 -3
- package/lib/global/js/utils/devtools.js +0 -2
- package/lib/global/js/utils/getBezierValues.js +0 -2
- package/lib/global/js/utils/getFocusableElements.js +0 -2
- package/lib/global/js/utils/getNodeTextContent.js +1 -3
- package/lib/global/js/utils/getNumberOfHiddenSteps.js +0 -2
- package/lib/global/js/utils/getScrollbarWidth.js +0 -2
- package/lib/global/js/utils/keyboardNavigation.js +0 -2
- package/lib/global/js/utils/lastIndexInArray.js +0 -2
- package/lib/global/js/utils/motionConstants.js +0 -2
- package/lib/global/js/utils/pconsole.js +1 -1
- package/lib/global/js/utils/props-helper.js +10 -12
- package/lib/global/js/utils/rangeWithCallback.js +0 -2
- package/lib/global/js/utils/scrollableAncestor.js +1 -3
- package/lib/global/js/utils/uuidv4.js +1 -1
- package/lib/global/js/utils/wait.js +1 -1
- package/lib/global/js/utils/wrapFocus.js +1 -1
- package/lib/index.js +19 -21
- package/lib/node_modules/@carbon/colors/es/index.js +0 -2
- package/lib/node_modules/@carbon/icon-helpers/es/index.js +6 -8
- package/lib/node_modules/@carbon/icons-react/es/Icon.js +14 -18
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-2.js +525 -531
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-9.js +500 -506
- package/lib/node_modules/@carbon/icons-react/es/iconPropTypes-4cbeb95d.js +1 -3
- package/lib/node_modules/object-assign/index.js +0 -2
- package/lib/node_modules/prop-types/checkPropTypes.js +2 -4
- package/lib/node_modules/prop-types/factoryWithThrowingShims.js +0 -2
- package/lib/node_modules/prop-types/factoryWithTypeCheckers.js +4 -10
- package/lib/node_modules/prop-types/index.js +2 -6
- package/lib/node_modules/prop-types/lib/ReactPropTypesSecret.js +0 -2
- package/lib/node_modules/prop-types/lib/has.js +0 -2
- package/lib/settings.js +9 -15
- package/package.json +11 -11
- package/scss/components/EditInPlace/_edit-in-place.scss +0 -11
- package/scss/components/SidePanel/_side-panel.scss +1 -0
- package/scss/components/TagSet/_tag-set.scss +2 -0
- package/telemetry.yml +3 -3
@@ -7,615 +7,609 @@
|
|
7
7
|
|
8
8
|
'use strict';
|
9
9
|
|
10
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
11
|
-
|
12
10
|
var React = require('react');
|
13
11
|
var index = require('../../../node_modules/prop-types/index.js');
|
14
12
|
|
15
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
16
|
-
|
17
|
-
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
18
|
-
|
19
13
|
var _g, _defs;
|
20
14
|
var Error404SVG = function Error404SVG(_ref) {
|
21
15
|
var className = _ref.className,
|
22
16
|
title = _ref.title;
|
23
|
-
return /*#__PURE__*/
|
17
|
+
return /*#__PURE__*/React.createElement("svg", {
|
24
18
|
viewBox: "0 0 751 549",
|
25
19
|
fill: "none",
|
26
20
|
className: className,
|
27
21
|
xmlns: "http://www.w3.org/2000/svg",
|
28
22
|
"aria-label": title
|
29
|
-
}, _g || (_g = /*#__PURE__*/
|
23
|
+
}, _g || (_g = /*#__PURE__*/React.createElement("g", {
|
30
24
|
clipPath: "url(#clip0_0_2285)"
|
31
|
-
}, /*#__PURE__*/
|
25
|
+
}, /*#__PURE__*/React.createElement("path", {
|
32
26
|
d: "M103.296 290.22V153.267H612.488",
|
33
27
|
fill: "#F3F3F3"
|
34
|
-
}), /*#__PURE__*/
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
35
29
|
d: "M103.296 290.22V153.267H612.488",
|
36
30
|
stroke: "black",
|
37
31
|
strokeWidth: "0.860121",
|
38
32
|
strokeMiterlimit: "10"
|
39
|
-
}), /*#__PURE__*/
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
40
34
|
d: "M106.737 125.743H609.047C610.948 125.743 612.488 127.283 612.488 129.183V139.505H103.296V129.183C103.296 127.283 104.836 125.743 106.737 125.743Z",
|
41
35
|
fill: "#F3F3F3",
|
42
36
|
stroke: "black",
|
43
37
|
strokeWidth: "0.860121",
|
44
38
|
strokeMiterlimit: "10"
|
45
|
-
}), /*#__PURE__*/
|
39
|
+
}), /*#__PURE__*/React.createElement("path", {
|
46
40
|
d: "M113.618 136.03C115.518 136.03 117.058 134.497 117.058 132.607C117.058 130.716 115.518 129.183 113.618 129.183C111.718 129.183 110.177 130.716 110.177 132.607C110.177 134.497 111.718 136.03 113.618 136.03Z",
|
47
41
|
fill: "#F3F3F3",
|
48
42
|
stroke: "black",
|
49
43
|
strokeWidth: "0.860121",
|
50
44
|
strokeMiterlimit: "10"
|
51
|
-
}), /*#__PURE__*/
|
45
|
+
}), /*#__PURE__*/React.createElement("path", {
|
52
46
|
d: "M123.939 136.064C125.839 136.064 127.38 134.524 127.38 132.624C127.38 130.724 125.839 129.183 123.939 129.183C122.039 129.183 120.499 130.724 120.499 132.624C120.499 134.524 122.039 136.064 123.939 136.064Z",
|
53
47
|
fill: "#F3F3F3",
|
54
48
|
stroke: "black",
|
55
49
|
strokeWidth: "0.860121",
|
56
50
|
strokeMiterlimit: "10"
|
57
|
-
}), /*#__PURE__*/
|
51
|
+
}), /*#__PURE__*/React.createElement("path", {
|
58
52
|
d: "M134.261 136.064C136.161 136.064 137.701 134.524 137.701 132.624C137.701 130.724 136.161 129.183 134.261 129.183C132.36 129.183 130.82 130.724 130.82 132.624C130.82 134.524 132.36 136.064 134.261 136.064Z",
|
59
53
|
fill: "#F3F3F3",
|
60
54
|
stroke: "black",
|
61
55
|
strokeWidth: "0.860121",
|
62
56
|
strokeMiterlimit: "10"
|
63
|
-
}), /*#__PURE__*/
|
57
|
+
}), /*#__PURE__*/React.createElement("path", {
|
64
58
|
d: "M612.488 139.505H103.296V153.267H612.488V139.505Z",
|
65
59
|
fill: "#F3F3F3",
|
66
60
|
stroke: "black",
|
67
61
|
strokeWidth: "0.860121",
|
68
62
|
strokeMiterlimit: "10"
|
69
|
-
}), /*#__PURE__*/
|
63
|
+
}), /*#__PURE__*/React.createElement("path", {
|
70
64
|
d: "M117.058 146.386H144.582",
|
71
65
|
stroke: "black",
|
72
66
|
strokeWidth: "0.860121",
|
73
67
|
strokeMiterlimit: "10"
|
74
|
-
}), /*#__PURE__*/
|
68
|
+
}), /*#__PURE__*/React.createElement("path", {
|
75
69
|
d: "M158.344 146.386H185.868",
|
76
70
|
stroke: "black",
|
77
71
|
strokeWidth: "0.860121",
|
78
72
|
strokeMiterlimit: "10"
|
79
|
-
}), /*#__PURE__*/
|
73
|
+
}), /*#__PURE__*/React.createElement("path", {
|
80
74
|
d: "M199.63 146.386H227.154",
|
81
75
|
stroke: "black",
|
82
76
|
strokeWidth: "0.860121",
|
83
77
|
strokeMiterlimit: "10"
|
84
|
-
}), /*#__PURE__*/
|
78
|
+
}), /*#__PURE__*/React.createElement("path", {
|
85
79
|
d: "M240.916 146.386H268.439",
|
86
80
|
stroke: "black",
|
87
81
|
strokeWidth: "0.860121",
|
88
82
|
strokeMiterlimit: "10"
|
89
|
-
}), /*#__PURE__*/
|
83
|
+
}), /*#__PURE__*/React.createElement("path", {
|
90
84
|
d: "M612.488 318.41H357.892V153.267H612.488",
|
91
85
|
stroke: "black",
|
92
86
|
strokeWidth: "0.860121",
|
93
87
|
strokeMiterlimit: "10"
|
94
|
-
}), /*#__PURE__*/
|
88
|
+
}), /*#__PURE__*/React.createElement("path", {
|
95
89
|
d: "M165.225 431.946L206.511 421.625L240.916 438.827L295.963 414.744L357.892 438.827V483.553",
|
96
90
|
stroke: "black",
|
97
91
|
strokeWidth: "0.860121",
|
98
92
|
strokeMiterlimit: "10"
|
99
|
-
}), /*#__PURE__*/
|
93
|
+
}), /*#__PURE__*/React.createElement("path", {
|
100
94
|
d: "M357.892 483.553V452.589L323.487 438.827L227.154 452.589L154.904 428.506L132.54 443.988L103.296 426.106L74.8521 449.149L36.9551 438.444L0.0817261 445.708",
|
101
95
|
stroke: "black",
|
102
96
|
strokeWidth: "0.860121",
|
103
97
|
strokeMiterlimit: "10"
|
104
|
-
}), /*#__PURE__*/
|
98
|
+
}), /*#__PURE__*/React.createElement("path", {
|
105
99
|
d: "M295.963 414.064L323.487 438.148",
|
106
100
|
stroke: "black",
|
107
101
|
strokeWidth: "0.860121",
|
108
102
|
strokeMiterlimit: "10"
|
109
|
-
}), /*#__PURE__*/
|
103
|
+
}), /*#__PURE__*/React.createElement("path", {
|
110
104
|
d: "M357.892 483.553V473.232L323.487 462.91L244.356 473.232L166.945 443.988L148.023 459.47L113.618 449.149L79.2128 473.232L41.3675 466.351H24.1651",
|
111
105
|
stroke: "black",
|
112
106
|
strokeWidth: "0.860121",
|
113
107
|
strokeMiterlimit: "10"
|
114
|
-
}), /*#__PURE__*/
|
108
|
+
}), /*#__PURE__*/React.createElement("path", {
|
115
109
|
d: "M132.54 443.988L148.023 459.47",
|
116
110
|
stroke: "black",
|
117
111
|
strokeWidth: "0.860121",
|
118
112
|
strokeMiterlimit: "10"
|
119
|
-
}), /*#__PURE__*/
|
113
|
+
}), /*#__PURE__*/React.createElement("path", {
|
120
114
|
d: "M240.916 438.827L227.154 452.589L244.356 473.232",
|
121
115
|
stroke: "black",
|
122
116
|
strokeWidth: "0.860121",
|
123
117
|
strokeMiterlimit: "10"
|
124
|
-
}), /*#__PURE__*/
|
118
|
+
}), /*#__PURE__*/React.createElement("path", {
|
125
119
|
d: "M587.471 180.111H474.868C467.269 180.111 461.107 186.274 461.107 193.873C461.107 201.472 467.269 207.635 474.868 207.635H523.035C526.837 207.635 529.916 210.714 529.916 214.516C529.916 218.318 526.837 221.397 523.035 221.397H416.38C410.682 221.397 406.059 226.02 406.059 231.719C406.059 237.417 410.682 242.04 416.38 242.04H605.607",
|
126
120
|
stroke: "black",
|
127
121
|
strokeWidth: "0.860121",
|
128
122
|
strokeLinejoin: "round"
|
129
|
-
}), /*#__PURE__*/
|
123
|
+
}), /*#__PURE__*/React.createElement("path", {
|
130
124
|
d: "M584.624 176.593L584.035 177.226L587.144 180.111L584.035 182.997L584.624 183.629L588.405 180.111L584.624 176.593Z",
|
131
125
|
fill: "black"
|
132
|
-
}), /*#__PURE__*/
|
126
|
+
}), /*#__PURE__*/React.createElement("path", {
|
133
127
|
d: "M622.809 180.791C617.111 180.791 612.488 185.414 612.488 191.112C612.488 185.41 607.869 180.791 602.167 180.791C607.865 180.791 612.488 176.168 612.488 170.469C612.488 176.172 617.107 180.791 622.809 180.791Z",
|
134
128
|
fill: "#F3F3F3",
|
135
129
|
stroke: "black",
|
136
130
|
strokeWidth: "0.860121",
|
137
131
|
strokeMiterlimit: "10"
|
138
|
-
}), /*#__PURE__*/
|
132
|
+
}), /*#__PURE__*/React.createElement("path", {
|
139
133
|
d: "M691.619 115.422C685.921 115.422 681.298 120.045 681.298 125.743C681.298 120.04 676.679 115.422 670.976 115.422C676.674 115.422 681.298 110.798 681.298 105.1C681.298 110.803 685.916 115.422 691.619 115.422Z",
|
140
134
|
fill: "#F3F3F3",
|
141
135
|
stroke: "black",
|
142
136
|
strokeWidth: "0.860121",
|
143
137
|
strokeMiterlimit: "10"
|
144
|
-
}), /*#__PURE__*/
|
138
|
+
}), /*#__PURE__*/React.createElement("path", {
|
145
139
|
d: "M616.926 48.3321C611.228 48.3321 606.605 52.9553 606.605 58.6536C606.605 52.951 601.986 48.3321 596.283 48.3321C601.982 48.3321 606.605 43.709 606.605 38.0107C606.605 43.7133 611.224 48.3321 616.926 48.3321Z",
|
146
140
|
fill: "#F3F3F3",
|
147
141
|
stroke: "black",
|
148
142
|
strokeWidth: "0.860121",
|
149
143
|
strokeMiterlimit: "10"
|
150
|
-
}), /*#__PURE__*/
|
144
|
+
}), /*#__PURE__*/React.createElement("path", {
|
151
145
|
d: "M722.583 10.4868C716.885 10.4868 712.262 15.1099 712.262 20.8082C712.262 15.1056 707.643 10.4868 701.94 10.4868C707.639 10.4868 712.262 5.86362 712.262 0.165314C712.262 5.86792 716.881 10.4868 722.583 10.4868Z",
|
152
146
|
fill: "#F3F3F3",
|
153
147
|
stroke: "black",
|
154
148
|
strokeWidth: "0.860121",
|
155
149
|
strokeMiterlimit: "10"
|
156
|
-
}), /*#__PURE__*/
|
150
|
+
}), /*#__PURE__*/React.createElement("path", {
|
157
151
|
d: "M239.277 201.597C236.383 201.597 233.609 202.096 231.011 202.978C225.631 189.151 212.222 179.436 196.495 179.436C177.219 179.436 161.389 194.058 159.608 212.869C156.469 211.08 152.848 210.043 148.977 210.043C137.103 210.043 127.603 219.668 127.603 231.542C127.603 243.416 137.103 253.041 148.977 253.041H239.277C253.482 253.041 264.999 241.524 264.999 227.319C264.999 213.114 253.482 201.597 239.277 201.597Z",
|
158
152
|
stroke: "black",
|
159
153
|
strokeWidth: "0.860121",
|
160
154
|
strokeLinejoin: "round"
|
161
|
-
}), /*#__PURE__*/
|
155
|
+
}), /*#__PURE__*/React.createElement("path", {
|
162
156
|
d: "M564.321 373.707C568.471 372.555 572.845 371.94 577.365 371.94C580.509 371.94 583.579 372.249 586.555 372.817C590.4 349.757 610.432 332.172 634.584 332.172C660.113 332.172 681.04 351.817 683.108 376.808C704.886 380.562 735.249 405.897 736.315 443.442",
|
163
157
|
fill: "#F3F3F3"
|
164
|
-
}), /*#__PURE__*/
|
158
|
+
}), /*#__PURE__*/React.createElement("path", {
|
165
159
|
d: "M564.321 373.707C568.471 372.555 572.845 371.94 577.365 371.94C580.509 371.94 583.579 372.249 586.555 372.817C590.4 349.757 610.432 332.172 634.584 332.172C660.113 332.172 681.04 351.817 683.108 376.808C704.886 380.562 735.249 405.897 736.315 443.442",
|
166
160
|
stroke: "black",
|
167
161
|
strokeWidth: "0.860121",
|
168
162
|
strokeMiterlimit: "10"
|
169
|
-
}), /*#__PURE__*/
|
163
|
+
}), /*#__PURE__*/React.createElement("path", {
|
170
164
|
d: "M612.488 325.291C616.288 325.291 619.369 322.21 619.369 318.41C619.369 314.61 616.288 311.529 612.488 311.529C608.688 311.529 605.607 314.61 605.607 318.41C605.607 322.21 608.688 325.291 612.488 325.291Z",
|
171
165
|
fill: "#F3F3F3",
|
172
166
|
stroke: "black",
|
173
167
|
strokeWidth: "0.860121",
|
174
168
|
strokeMiterlimit: "10"
|
175
|
-
}), /*#__PURE__*/
|
169
|
+
}), /*#__PURE__*/React.createElement("path", {
|
176
170
|
d: "M591.639 388.794C572.368 374.817 548.663 366.577 523.04 366.577C458.436 366.577 406.063 418.95 406.063 483.553",
|
177
171
|
stroke: "black",
|
178
172
|
strokeWidth: "0.860121",
|
179
173
|
strokeMiterlimit: "10"
|
180
|
-
}), /*#__PURE__*/
|
174
|
+
}), /*#__PURE__*/React.createElement("path", {
|
181
175
|
d: "M492.071 414.744C512.972 414.744 529.916 397.8 529.916 376.898C529.916 355.997 512.972 339.053 492.071 339.053C471.17 339.053 454.226 355.997 454.226 376.898C454.226 397.8 471.17 414.744 492.071 414.744Z",
|
182
176
|
fill: "#F3F3F3",
|
183
177
|
stroke: "black",
|
184
178
|
strokeWidth: "0.860121",
|
185
179
|
strokeMiterlimit: "10"
|
186
|
-
}), /*#__PURE__*/
|
180
|
+
}), /*#__PURE__*/React.createElement("path", {
|
187
181
|
d: "M370.334 318.574L401.087 362.827L357.643 330.938L357.806 318.41L370.334 318.574Z",
|
188
182
|
fill: "#F3F3F3",
|
189
183
|
stroke: "black",
|
190
184
|
strokeWidth: "0.860121",
|
191
185
|
strokeMiterlimit: "10"
|
192
|
-
}), /*#__PURE__*/
|
186
|
+
}), /*#__PURE__*/React.createElement("path", {
|
193
187
|
d: "M357.965 305.882L402.218 275.125L370.334 318.574L357.806 318.41L357.965 305.882Z",
|
194
188
|
fill: "#F3F3F3",
|
195
189
|
stroke: "black",
|
196
190
|
strokeWidth: "0.860121",
|
197
191
|
strokeMiterlimit: "10"
|
198
|
-
}), /*#__PURE__*/
|
192
|
+
}), /*#__PURE__*/React.createElement("path", {
|
199
193
|
d: "M366.665 327.269L357.806 380.429V327.269V318.41L366.665 327.269Z",
|
200
194
|
fill: "#F3F3F3",
|
201
195
|
stroke: "black",
|
202
196
|
strokeWidth: "0.860121",
|
203
197
|
strokeMiterlimit: "10"
|
204
|
-
}), /*#__PURE__*/
|
198
|
+
}), /*#__PURE__*/React.createElement("path", {
|
205
199
|
d: "M366.665 309.551L419.821 318.41L366.665 327.269L357.806 318.41L366.665 309.551Z",
|
206
200
|
fill: "#F3F3F3",
|
207
201
|
stroke: "black",
|
208
202
|
strokeWidth: "0.860121",
|
209
203
|
strokeMiterlimit: "10"
|
210
|
-
}), /*#__PURE__*/
|
204
|
+
}), /*#__PURE__*/React.createElement("path", {
|
211
205
|
d: "M357.806 309.551V256.391L366.665 309.551L357.806 318.41V309.551Z",
|
212
206
|
fill: "#F3F3F3",
|
213
207
|
stroke: "black",
|
214
208
|
strokeWidth: "0.860121",
|
215
209
|
strokeMiterlimit: "10"
|
216
|
-
}), /*#__PURE__*/
|
210
|
+
}), /*#__PURE__*/React.createElement("path", {
|
217
211
|
d: "M357.806 242.719C361.606 242.719 364.687 239.639 364.687 235.838C364.687 232.038 361.606 228.958 357.806 228.958C354.006 228.958 350.925 232.038 350.925 235.838C350.925 239.639 354.006 242.719 357.806 242.719Z",
|
218
212
|
fill: "#F3F3F3",
|
219
213
|
stroke: "black",
|
220
214
|
strokeWidth: "0.860121",
|
221
215
|
strokeMiterlimit: "10"
|
222
|
-
}), /*#__PURE__*/
|
216
|
+
}), /*#__PURE__*/React.createElement("path", {
|
223
217
|
d: "M233.686 153.267H281.763C304.565 153.267 323.049 171.751 323.049 194.553C323.049 217.355 304.565 235.839 281.763 235.839H226.715C203.913 235.839 185.429 254.323 185.429 277.124C185.429 299.926 203.913 318.41 226.715 318.41H357.892",
|
224
218
|
fill: "#F3F3F3"
|
225
|
-
}), /*#__PURE__*/
|
219
|
+
}), /*#__PURE__*/React.createElement("path", {
|
226
220
|
d: "M233.686 153.267H281.763C304.565 153.267 323.049 171.751 323.049 194.553C323.049 217.355 304.565 235.839 281.763 235.839H226.715C203.913 235.839 185.429 254.323 185.429 277.124C185.429 299.926 203.913 318.41 226.715 318.41H357.892",
|
227
221
|
stroke: "black",
|
228
222
|
strokeWidth: "0.860121",
|
229
223
|
strokeLinejoin: "round"
|
230
|
-
}), /*#__PURE__*/
|
224
|
+
}), /*#__PURE__*/React.createElement("path", {
|
231
225
|
d: "M309.725 297.763C318.984 297.763 326.489 290.061 326.489 280.561C326.489 271.06 318.984 263.358 309.725 263.358C300.467 263.358 292.961 271.06 292.961 280.561C292.961 290.061 300.467 297.763 309.725 297.763Z",
|
232
226
|
fill: "#F3F3F3",
|
233
227
|
stroke: "black",
|
234
228
|
strokeWidth: "0.860121",
|
235
229
|
strokeMiterlimit: "10"
|
236
|
-
}), /*#__PURE__*/
|
230
|
+
}), /*#__PURE__*/React.createElement("path", {
|
237
231
|
d: "M302.647 280.178L309.725 287.441",
|
238
232
|
stroke: "black",
|
239
233
|
strokeWidth: "0.860121",
|
240
234
|
strokeMiterlimit: "10"
|
241
|
-
}), /*#__PURE__*/
|
235
|
+
}), /*#__PURE__*/React.createElement("path", {
|
242
236
|
d: "M316.808 280.178L309.725 287.441",
|
243
237
|
stroke: "black",
|
244
238
|
strokeWidth: "0.860121",
|
245
239
|
strokeMiterlimit: "10"
|
246
|
-
}), /*#__PURE__*/
|
240
|
+
}), /*#__PURE__*/React.createElement("path", {
|
247
241
|
d: "M309.725 287.441V318.406",
|
248
242
|
stroke: "black",
|
249
243
|
strokeWidth: "0.860121",
|
250
244
|
strokeMiterlimit: "10"
|
251
|
-
}), /*#__PURE__*/
|
245
|
+
}), /*#__PURE__*/React.createElement("path", {
|
252
246
|
d: "M262.212 287.777C262.509 286.943 262.668 286.048 262.668 285.111C262.668 280.698 259.09 277.12 254.678 277.12C250.265 277.12 246.687 280.698 246.687 285.111C246.687 286.044 246.846 286.943 247.143 287.777C244.429 289.975 242.692 293.333 242.692 297.096C242.692 303.715 248.059 309.082 254.678 309.082C261.296 309.082 266.663 303.715 266.663 297.096C266.663 293.333 264.926 289.975 262.212 287.777Z",
|
253
247
|
fill: "#F3F3F3",
|
254
248
|
stroke: "black",
|
255
249
|
strokeWidth: "0.860121",
|
256
250
|
strokeMiterlimit: "10"
|
257
|
-
}), /*#__PURE__*/
|
251
|
+
}), /*#__PURE__*/React.createElement("path", {
|
258
252
|
d: "M249.353 291.772L254.678 297.101",
|
259
253
|
stroke: "black",
|
260
254
|
strokeWidth: "0.860121",
|
261
255
|
strokeMiterlimit: "10"
|
262
|
-
}), /*#__PURE__*/
|
256
|
+
}), /*#__PURE__*/React.createElement("path", {
|
263
257
|
d: "M260.006 291.772L254.678 297.101",
|
264
258
|
stroke: "black",
|
265
259
|
strokeWidth: "0.860121",
|
266
260
|
strokeMiterlimit: "10"
|
267
|
-
}), /*#__PURE__*/
|
261
|
+
}), /*#__PURE__*/React.createElement("path", {
|
268
262
|
d: "M254.678 297.101V318.406",
|
269
263
|
stroke: "black",
|
270
264
|
strokeWidth: "0.860121",
|
271
265
|
strokeMiterlimit: "10"
|
272
|
-
}), /*#__PURE__*/
|
266
|
+
}), /*#__PURE__*/React.createElement("path", {
|
273
267
|
d: "M264.001 295.767L254.678 305.091",
|
274
268
|
stroke: "black",
|
275
269
|
strokeWidth: "0.860121",
|
276
270
|
strokeMiterlimit: "10"
|
277
|
-
}), /*#__PURE__*/
|
271
|
+
}), /*#__PURE__*/React.createElement("path", {
|
278
272
|
d: "M245.358 295.767L254.678 305.091",
|
279
273
|
stroke: "black",
|
280
274
|
strokeWidth: "0.860121",
|
281
275
|
strokeMiterlimit: "10"
|
282
|
-
}), /*#__PURE__*/
|
276
|
+
}), /*#__PURE__*/React.createElement("path", {
|
283
277
|
d: "M282.201 277.12L268.439 318.406H295.963L282.201 277.12Z",
|
284
278
|
fill: "#F3F3F3",
|
285
279
|
stroke: "black",
|
286
280
|
strokeWidth: "0.860121",
|
287
281
|
strokeMiterlimit: "10"
|
288
|
-
}), /*#__PURE__*/
|
282
|
+
}), /*#__PURE__*/React.createElement("path", {
|
289
283
|
d: "M282.201 290.022V318.406",
|
290
284
|
stroke: "black",
|
291
285
|
strokeWidth: "0.860121",
|
292
286
|
strokeMiterlimit: "10"
|
293
|
-
}), /*#__PURE__*/
|
287
|
+
}), /*#__PURE__*/React.createElement("path", {
|
294
288
|
d: "M278.073 297.763H282.201",
|
295
289
|
stroke: "black",
|
296
290
|
strokeWidth: "0.860121",
|
297
291
|
strokeMiterlimit: "10"
|
298
|
-
}), /*#__PURE__*/
|
292
|
+
}), /*#__PURE__*/React.createElement("path", {
|
299
293
|
d: "M282.201 304.214H286.33",
|
300
294
|
stroke: "black",
|
301
295
|
strokeWidth: "0.860121",
|
302
296
|
strokeMiterlimit: "10"
|
303
|
-
}), /*#__PURE__*/
|
297
|
+
}), /*#__PURE__*/React.createElement("path", {
|
304
298
|
d: "M275.32 311.955H282.201",
|
305
299
|
stroke: "black",
|
306
300
|
strokeWidth: "0.860121",
|
307
301
|
strokeMiterlimit: "10"
|
308
|
-
}), /*#__PURE__*/
|
302
|
+
}), /*#__PURE__*/React.createElement("path", {
|
309
303
|
d: "M420.754 545.482H681.298C686.996 545.482 691.619 540.859 691.619 535.161C691.619 529.462 686.996 524.839 681.298 524.839H591.845C580.444 524.839 571.202 515.597 571.202 504.196C571.202 492.795 580.444 483.553 591.845 483.553H729.464C740.865 483.553 750.107 474.311 750.107 462.91C750.107 451.51 740.865 442.268 729.464 442.268H492.071",
|
310
304
|
stroke: "black",
|
311
305
|
strokeWidth: "0.860121",
|
312
306
|
strokeLinejoin: "round"
|
313
|
-
}), /*#__PURE__*/
|
307
|
+
}), /*#__PURE__*/React.createElement("path", {
|
314
308
|
d: "M423.605 549L424.19 548.368L421.085 545.482L424.19 542.596L423.605 541.964L419.821 545.482L423.605 549Z",
|
315
309
|
fill: "black"
|
316
|
-
}), /*#__PURE__*/
|
310
|
+
}), /*#__PURE__*/React.createElement("path", {
|
317
311
|
d: "M516.877 418.107C517.384 411.961 522.532 407.132 528.811 407.132C534.75 407.132 539.679 411.454 540.62 417.126C541.201 417.014 541.795 416.946 542.401 416.924C544.771 408.895 552.198 403.033 560.997 403.033C563.775 403.033 566.42 403.622 568.811 404.676C572.368 400.491 577.67 397.829 583.592 397.829C584.844 397.829 586.065 397.954 587.252 398.178C588.783 388.996 596.761 381.995 606.377 381.995C616.539 381.995 624.874 389.817 625.695 399.769C634.825 401.343 647.74 412.439 646.85 428.703C646.656 432.26 646.046 436.023 642.515 442.268H507.635C504.809 439.734 503.029 436.053 503.029 431.955C503.029 424.308 509.23 418.107 516.877 418.107Z",
|
318
312
|
fill: "#F3F3F3",
|
319
313
|
stroke: "black",
|
320
314
|
strokeWidth: "0.860121",
|
321
315
|
strokeMiterlimit: "10"
|
322
|
-
}), /*#__PURE__*/
|
316
|
+
}), /*#__PURE__*/React.createElement("path", {
|
323
317
|
d: "M458.01 412.421C458.01 431.232 473.26 446.482 492.071 446.482C510.882 446.482 526.132 431.232 526.132 412.421C526.132 401.321 520.82 391.46 512.598 385.242C513.995 382.296 514.778 379.001 514.778 375.522C514.778 362.982 504.611 352.815 492.071 352.815C479.53 352.815 469.364 362.982 469.364 375.522C469.364 378.997 470.142 382.296 471.544 385.242C463.321 391.46 458.01 401.321 458.01 412.421Z",
|
324
318
|
fill: "#F3F3F3",
|
325
319
|
stroke: "black",
|
326
320
|
strokeWidth: "0.860121",
|
327
321
|
strokeMiterlimit: "10"
|
328
|
-
}), /*#__PURE__*/
|
322
|
+
}), /*#__PURE__*/React.createElement("path", {
|
329
323
|
d: "M475.041 401.068L492.071 415.26",
|
330
324
|
stroke: "black",
|
331
325
|
strokeWidth: "0.860121",
|
332
326
|
strokeMiterlimit: "10"
|
333
|
-
}), /*#__PURE__*/
|
327
|
+
}), /*#__PURE__*/React.createElement("path", {
|
334
328
|
d: "M509.101 401.068L492.071 415.26",
|
335
329
|
stroke: "black",
|
336
330
|
strokeWidth: "0.860121",
|
337
331
|
strokeMiterlimit: "10"
|
338
|
-
}), /*#__PURE__*/
|
332
|
+
}), /*#__PURE__*/React.createElement("path", {
|
339
333
|
d: "M492.071 415.26V545.482",
|
340
334
|
stroke: "black",
|
341
335
|
strokeWidth: "0.860121",
|
342
336
|
strokeMiterlimit: "10"
|
343
|
-
}), /*#__PURE__*/
|
337
|
+
}), /*#__PURE__*/React.createElement("path", {
|
344
338
|
d: "M466.525 409.583L492.071 429.452",
|
345
339
|
stroke: "black",
|
346
340
|
strokeWidth: "0.860121",
|
347
341
|
strokeMiterlimit: "10"
|
348
|
-
}), /*#__PURE__*/
|
342
|
+
}), /*#__PURE__*/React.createElement("path", {
|
349
343
|
d: "M517.617 409.583L492.071 429.452",
|
350
344
|
stroke: "black",
|
351
345
|
strokeWidth: "0.860121",
|
352
346
|
strokeMiterlimit: "10"
|
353
|
-
}), /*#__PURE__*/
|
347
|
+
}), /*#__PURE__*/React.createElement("path", {
|
354
348
|
d: "M75.7723 345.934H244.356C248.158 345.934 251.237 349.013 251.237 352.815C251.237 356.617 248.158 359.696 244.356 359.696H203.07C199.269 359.696 196.189 362.775 196.189 366.577C196.189 370.379 199.269 373.458 203.07 373.458H323.487C331.086 373.458 337.249 379.621 337.249 387.22C337.249 394.819 331.086 400.982 323.487 400.982H52.1276C29.3258 400.982 10.8418 382.498 10.8418 359.696C10.8418 336.894 29.3258 318.41 52.1276 318.41H223.713",
|
355
349
|
fill: "#F3F3F3"
|
356
|
-
}), /*#__PURE__*/
|
350
|
+
}), /*#__PURE__*/React.createElement("path", {
|
357
351
|
d: "M76.7056 345.934H244.356C248.158 345.934 251.237 349.013 251.237 352.815C251.237 356.617 248.158 359.696 244.356 359.696H203.07C199.269 359.696 196.189 362.775 196.189 366.577C196.189 370.379 199.269 373.458 203.07 373.458H323.487C331.086 373.458 337.249 379.621 337.249 387.22C337.249 394.819 331.086 400.982 323.487 400.982H52.1276C29.3258 400.982 10.8418 382.498 10.8418 359.696C10.8418 336.894 29.3258 318.41 52.1276 318.41H223.713",
|
358
352
|
stroke: "black",
|
359
353
|
strokeWidth: "0.860121",
|
360
354
|
strokeLinejoin: "round"
|
361
|
-
}), /*#__PURE__*/
|
355
|
+
}), /*#__PURE__*/React.createElement("path", {
|
362
356
|
d: "M79.5569 349.452L80.1418 348.82L77.0367 345.934L80.1418 343.048L79.5569 342.416L75.7723 345.934L79.5569 349.452Z",
|
363
357
|
fill: "black"
|
364
|
-
}), /*#__PURE__*/
|
358
|
+
}), /*#__PURE__*/React.createElement("path", {
|
365
359
|
d: "M41.3675 345.934C47.0658 345.934 51.6889 350.557 51.6889 356.255C51.6889 350.553 56.3078 345.934 62.0104 345.934C56.3121 345.934 51.6889 341.311 51.6889 335.613C51.6889 341.315 47.0701 345.934 41.3675 345.934Z",
|
366
360
|
fill: "#F3F3F3",
|
367
361
|
stroke: "black",
|
368
362
|
strokeWidth: "0.860121",
|
369
363
|
strokeMiterlimit: "10"
|
370
|
-
}), /*#__PURE__*/
|
364
|
+
}), /*#__PURE__*/React.createElement("path", {
|
371
365
|
d: "M103.296 297.101C107.097 297.101 110.177 294.02 110.177 290.22C110.177 286.419 107.097 283.339 103.296 283.339C99.496 283.339 96.4153 286.419 96.4153 290.22C96.4153 294.02 99.496 297.101 103.296 297.101Z",
|
372
366
|
fill: "#F3F3F3",
|
373
367
|
stroke: "black",
|
374
368
|
strokeWidth: "0.860121",
|
375
369
|
strokeMiterlimit: "10"
|
376
|
-
}), /*#__PURE__*/
|
370
|
+
}), /*#__PURE__*/React.createElement("path", {
|
377
371
|
d: "M638.317 421.534V429.09H650.045L650.123 421.543C650.127 421.066 649.74 420.674 649.262 420.674H639.178C638.704 420.674 638.317 421.061 638.317 421.534Z",
|
378
372
|
fill: "#F3F3F3",
|
379
373
|
stroke: "black",
|
380
374
|
strokeWidth: "0.860121",
|
381
375
|
strokeMiterlimit: "10"
|
382
|
-
}), /*#__PURE__*/
|
376
|
+
}), /*#__PURE__*/React.createElement("path", {
|
383
377
|
d: "M651.619 434.109L650.045 429.099V426.914C650.045 425.706 649.065 424.73 647.86 424.73H645.676C643.925 424.73 643.095 425.426 642.399 426.914C641.134 428.828 638.137 429.099 638.137 429.099C633.767 433.469 626.009 433.469 626.009 440.027V442.212H652.234V437.318C652.234 436.221 652.028 435.129 651.623 434.109H651.619Z",
|
384
378
|
fill: "#F3F3F3",
|
385
379
|
stroke: "black",
|
386
380
|
strokeWidth: "0.860121",
|
387
381
|
strokeMiterlimit: "10"
|
388
|
-
}), /*#__PURE__*/
|
382
|
+
}), /*#__PURE__*/React.createElement("path", {
|
389
383
|
d: "M652.234 437.842H643.491V440.027H652.234V437.842Z",
|
390
384
|
fill: "#F3F3F3",
|
391
385
|
stroke: "black",
|
392
386
|
strokeWidth: "0.860121",
|
393
387
|
strokeMiterlimit: "10"
|
394
|
-
}), /*#__PURE__*/
|
388
|
+
}), /*#__PURE__*/React.createElement("path", {
|
395
389
|
d: "M689.348 421.534V429.09L677.621 429.095L677.543 421.539C677.539 421.061 677.926 420.67 678.403 420.67H688.488C688.961 420.67 689.348 421.057 689.348 421.53V421.534Z",
|
396
390
|
fill: "#F3F3F3",
|
397
391
|
stroke: "black",
|
398
392
|
strokeWidth: "0.860121",
|
399
393
|
strokeMiterlimit: "10"
|
400
|
-
}), /*#__PURE__*/
|
394
|
+
}), /*#__PURE__*/React.createElement("path", {
|
401
395
|
d: "M676.042 434.109L677.616 429.099V426.914C677.616 425.706 678.597 424.73 679.801 424.73H681.986C683.736 424.73 684.566 425.426 685.263 426.914C686.527 428.828 689.525 429.099 689.525 429.099C693.894 433.469 701.652 433.469 701.652 440.027V442.212H690.725H688.54H675.427V437.318C675.427 436.221 675.634 435.129 676.038 434.109H676.042Z",
|
402
396
|
fill: "#F3F3F3",
|
403
397
|
stroke: "black",
|
404
398
|
strokeWidth: "0.860121",
|
405
399
|
strokeMiterlimit: "10"
|
406
|
-
}), /*#__PURE__*/
|
400
|
+
}), /*#__PURE__*/React.createElement("path", {
|
407
401
|
d: "M675.432 440.027H684.175V437.842H675.432V440.027Z",
|
408
402
|
fill: "#F3F3F3",
|
409
403
|
stroke: "black",
|
410
404
|
strokeWidth: "0.860121",
|
411
405
|
strokeMiterlimit: "10"
|
412
|
-
}), /*#__PURE__*/
|
406
|
+
}), /*#__PURE__*/React.createElement("path", {
|
413
407
|
d: "M688.484 420.674H678.399C678.399 420.674 665.489 345.685 665.334 343.913C665.334 343.913 665.334 341.307 663.829 341.307C662.323 341.307 662.323 343.913 662.323 343.913C662.173 345.685 649.262 420.674 649.262 420.674H639.177L640.674 380.636C640.799 378.898 641.874 355.989 640.661 342.64C639.384 328.62 647.03 308.592 647.03 308.592H680.631C680.631 308.592 688.277 328.62 687 342.64C685.787 355.989 686.863 378.898 686.983 380.636L688.484 420.674Z",
|
414
408
|
fill: "#F3F3F3",
|
415
409
|
stroke: "black",
|
416
410
|
strokeWidth: "0.860121",
|
417
411
|
strokeMiterlimit: "10"
|
418
|
-
}), /*#__PURE__*/
|
412
|
+
}), /*#__PURE__*/React.createElement("path", {
|
419
413
|
d: "M689.662 262.588L666.68 223.182L634.503 184.231L604.304 205.377L558.124 216.206L597.526 259.367L612.144 301.384L689.662 262.588Z",
|
420
414
|
fill: "#F3F3F3",
|
421
415
|
stroke: "black",
|
422
416
|
strokeWidth: "0.860121",
|
423
417
|
strokeMiterlimit: "10"
|
424
|
-
}), /*#__PURE__*/
|
418
|
+
}), /*#__PURE__*/React.createElement("path", {
|
425
419
|
d: "M604.304 205.377L634.025 240.268L655.167 280.806L612.144 301.384L597.526 259.367L558.124 216.206L604.304 205.377Z",
|
426
420
|
fill: "#F3F3F3",
|
427
421
|
stroke: "black",
|
428
422
|
strokeWidth: "0.860121",
|
429
423
|
strokeMiterlimit: "10"
|
430
|
-
}), /*#__PURE__*/
|
424
|
+
}), /*#__PURE__*/React.createElement("path", {
|
431
425
|
d: "M582.237 241.937C582.801 241.528 598.184 226.992 621.597 230.218",
|
432
426
|
stroke: "black",
|
433
427
|
strokeWidth: "0.860121",
|
434
428
|
strokeMiterlimit: "10"
|
435
|
-
}), /*#__PURE__*/
|
429
|
+
}), /*#__PURE__*/React.createElement("path", {
|
436
430
|
d: "M623.936 244.865C621.592 239.782 621.601 232.179 621.592 230.82C621.579 227.745 622.934 222.623 624.973 219.509C635.178 203.941 654.883 207.691 654.883 207.691",
|
437
431
|
stroke: "black",
|
438
432
|
strokeWidth: "0.860121",
|
439
433
|
strokeMiterlimit: "10"
|
440
|
-
}), /*#__PURE__*/
|
434
|
+
}), /*#__PURE__*/React.createElement("path", {
|
441
435
|
d: "M620.736 205.498C619.653 204.048 619.945 201.993 621.399 200.905C621.726 200.66 621.997 200.483 622.366 200.376M620.693 199.967L620.113 199.193M619.266 201.778L618.38 201.399M618.939 204.061L617.98 204.177M622.831 199.116L622.715 198.157M619.79 206.203L619.016 206.784",
|
442
436
|
stroke: "black",
|
443
437
|
strokeWidth: "0.860121",
|
444
438
|
strokeLinejoin: "round"
|
445
|
-
}), /*#__PURE__*/
|
439
|
+
}), /*#__PURE__*/React.createElement("path", {
|
446
440
|
d: "M631.359 197.43C631.062 197.649 630.817 197.911 630.624 198.2C629.019 197.202 626.912 197.232 625.308 198.432C623.343 199.903 622.844 202.599 624.1 204.655C623.644 204.711 623.196 204.883 622.801 205.179C621.588 206.087 621.356 207.79 622.263 209.003C623.171 210.216 624.874 210.469 626.082 209.566L635.29 202.677C636.739 201.593 637.036 199.541 635.952 198.092C634.868 196.643 632.817 196.346 631.368 197.43H631.359Z",
|
447
441
|
stroke: "black",
|
448
442
|
strokeWidth: "0.860121",
|
449
443
|
strokeLinejoin: "round"
|
450
|
-
}), /*#__PURE__*/
|
444
|
+
}), /*#__PURE__*/React.createElement("path", {
|
451
445
|
d: "M654.458 259.186C654.458 259.186 640.175 292.305 626.375 284.848C612.148 277.159 625.88 266.889 622.371 260.124C618.844 253.333 605.783 260.963 606.648 244.466C607.422 229.671 637.677 244.633 640.971 226.076",
|
452
446
|
stroke: "black",
|
453
447
|
strokeWidth: "0.860121",
|
454
448
|
strokeLinejoin: "round"
|
455
|
-
}), /*#__PURE__*/
|
449
|
+
}), /*#__PURE__*/React.createElement("path", {
|
456
450
|
d: "M643.693 229.628L642.949 230.058L640.829 226.386L637.32 228.773L636.838 228.063L641.108 225.156L643.693 229.628Z",
|
457
451
|
fill: "black"
|
458
|
-
}), /*#__PURE__*/
|
452
|
+
}), /*#__PURE__*/React.createElement("path", {
|
459
453
|
d: "M597.526 259.367L666.68 223.182",
|
460
454
|
stroke: "black",
|
461
455
|
strokeWidth: "0.860121",
|
462
456
|
strokeMiterlimit: "10"
|
463
|
-
}), /*#__PURE__*/
|
457
|
+
}), /*#__PURE__*/React.createElement("path", {
|
464
458
|
d: "M641.676 222.201C642.626 222.201 643.396 221.431 643.396 220.481C643.396 219.531 642.626 218.761 641.676 218.761C640.726 218.761 639.956 219.531 639.956 220.481C639.956 221.431 640.726 222.201 641.676 222.201Z",
|
465
459
|
fill: "#F3F3F3",
|
466
460
|
stroke: "black",
|
467
461
|
strokeWidth: "0.860121",
|
468
462
|
strokeMiterlimit: "10"
|
469
|
-
}), /*#__PURE__*/
|
463
|
+
}), /*#__PURE__*/React.createElement("path", {
|
470
464
|
d: "M592.516 255.733L595.036 259.427L596.58 258.292L593.802 254.791L592.516 255.733Z",
|
471
465
|
fill: "#F3F3F3",
|
472
466
|
stroke: "black",
|
473
467
|
strokeWidth: "0.860121",
|
474
468
|
strokeMiterlimit: "10"
|
475
|
-
}), /*#__PURE__*/
|
469
|
+
}), /*#__PURE__*/React.createElement("path", {
|
476
470
|
d: "M590.512 252.302C590.864 252.302 591.149 252.017 591.149 251.665C591.149 251.313 590.864 251.028 590.512 251.028C590.16 251.028 589.875 251.313 589.875 251.665C589.875 252.017 590.16 252.302 590.512 252.302Z",
|
477
471
|
fill: "#F3F3F3",
|
478
472
|
stroke: "black",
|
479
473
|
strokeWidth: "0.860121",
|
480
474
|
strokeMiterlimit: "10"
|
481
|
-
}), /*#__PURE__*/
|
475
|
+
}), /*#__PURE__*/React.createElement("path", {
|
482
476
|
d: "M595.806 259.819C596.336 259.819 596.765 259.389 596.765 258.86C596.765 258.33 596.336 257.901 595.806 257.901C595.276 257.901 594.847 258.33 594.847 258.86C594.847 259.389 595.276 259.819 595.806 259.819Z",
|
483
477
|
fill: "#F3F3F3",
|
484
478
|
stroke: "black",
|
485
479
|
strokeWidth: "0.860121",
|
486
480
|
strokeMiterlimit: "10"
|
487
|
-
}), /*#__PURE__*/
|
481
|
+
}), /*#__PURE__*/React.createElement("path", {
|
488
482
|
d: "M593.157 256.061C593.599 256.061 593.957 255.702 593.957 255.26C593.957 254.818 593.599 254.46 593.157 254.46C592.715 254.46 592.357 254.818 592.357 255.26C592.357 255.702 592.715 256.061 593.157 256.061Z",
|
489
483
|
fill: "#F3F3F3",
|
490
484
|
stroke: "black",
|
491
485
|
strokeWidth: "0.860121",
|
492
486
|
strokeMiterlimit: "10"
|
493
|
-
}), /*#__PURE__*/
|
487
|
+
}), /*#__PURE__*/React.createElement("path", {
|
494
488
|
d: "M589.996 252.043L591.024 251.286L593.802 254.791L592.516 255.733L589.996 252.043Z",
|
495
489
|
fill: "#F3F3F3",
|
496
490
|
stroke: "black",
|
497
491
|
strokeWidth: "0.860121",
|
498
492
|
strokeMiterlimit: "10"
|
499
|
-
}), /*#__PURE__*/
|
493
|
+
}), /*#__PURE__*/React.createElement("path", {
|
500
494
|
d: "M668.968 262.455L681.603 288.392C682.459 290.147 684.063 291.415 685.964 291.841C690.204 292.791 694.247 289.334 693.761 285.016C692.281 271.86 680.794 254.086 680.794 254.086L668.968 262.451V262.455Z",
|
501
495
|
fill: "#F3F3F3",
|
502
496
|
stroke: "black",
|
503
497
|
strokeWidth: "0.860121",
|
504
498
|
strokeMiterlimit: "10"
|
505
|
-
}), /*#__PURE__*/
|
499
|
+
}), /*#__PURE__*/React.createElement("path", {
|
506
500
|
d: "M663.717 246.28C663.717 246.28 649.469 245.347 646.932 261.281C644.863 274.277 649.258 279.481 648.888 290.465C648.712 295.707 643.874 305.328 643.874 311.615H684.747C684.747 311.615 683.598 305.057 680.274 290.465C679.41 286.667 681.388 282.134 682.906 277.09C690.135 253.075 674.993 246.28 663.717 246.28Z",
|
507
501
|
fill: "#F3F3F3",
|
508
502
|
stroke: "black",
|
509
503
|
strokeWidth: "0.860121",
|
510
504
|
strokeMiterlimit: "10"
|
511
|
-
}), /*#__PURE__*/
|
505
|
+
}), /*#__PURE__*/React.createElement("path", {
|
512
506
|
d: "M644.682 306.188C644.682 306.188 636.997 321.601 636.997 346.798C647.701 351.925 663.295 350.587 663.295 350.587L663.919 346.549L664.418 350.566C664.418 350.566 679.139 353.933 690.733 347.241C691.464 321.601 683.689 306.184 683.689 306.184C683.689 306.184 669.093 311.28 644.682 306.184V306.188Z",
|
513
507
|
fill: "#F3F3F3",
|
514
508
|
stroke: "black",
|
515
509
|
strokeWidth: "0.860121",
|
516
510
|
strokeMiterlimit: "10"
|
517
|
-
}), /*#__PURE__*/
|
511
|
+
}), /*#__PURE__*/React.createElement("path", {
|
518
512
|
d: "M659.717 253.243C656.917 250.757 652.049 251.583 649.069 255.165L630.013 271.8L607.68 263.896C607.68 263.896 605.71 264.093 605.121 263.612L603.143 259.096C602.971 258.67 602.687 258.301 602.326 258.021L599.836 255.97L597.513 254.064C595.999 255.462 598.378 257.247 598.623 257.453C599.608 258.262 600.193 259.565 600.193 259.565L596.421 258.124L593.514 254.89L590.813 250.934C590.624 250.637 590.228 250.547 589.931 250.736C589.635 250.925 589.544 251.321 589.733 251.617L592.168 255.742L594.602 259.866C594.658 259.956 601.887 267.56 601.887 267.56C602.317 267.912 602.339 269.117 602.339 269.117L627.635 284.926C629.088 285.833 630.955 285.717 632.284 284.633L658.083 263.62C661.446 260.447 663.42 256.529 659.726 253.247L659.717 253.243Z",
|
519
513
|
fill: "#F3F3F3",
|
520
514
|
stroke: "black",
|
521
515
|
strokeWidth: "0.860121",
|
522
516
|
strokeMiterlimit: "10"
|
523
|
-
}), /*#__PURE__*/
|
517
|
+
}), /*#__PURE__*/React.createElement("path", {
|
524
518
|
d: "M651.688 231.624L653.24 231.843L654.625 238.307C655.008 240.092 656.75 241.223 658.517 240.84L660.117 240.487L664.917 239.438C669.157 243.588 667.686 252.366 667.686 252.366L685.233 248.71C681.474 244.844 676.541 235.297 678.945 225.207C680.24 222.382 680.665 219.126 679.96 215.854C678.236 207.824 670.396 202.72 662.444 204.461C654.492 206.199 649.439 214.116 651.159 222.15L651.851 225.379L650.574 229.732C650.346 230.63 650.781 231.469 651.684 231.62L651.688 231.624Z",
|
525
519
|
fill: "#F3F3F3",
|
526
520
|
stroke: "black",
|
527
521
|
strokeWidth: "0.860121",
|
528
522
|
strokeMiterlimit: "10"
|
529
|
-
}), /*#__PURE__*/
|
523
|
+
}), /*#__PURE__*/React.createElement("path", {
|
530
524
|
d: "M650.518 215.673C650.518 215.673 656.087 225.01 666.542 221.866C667.222 221.664 668.25 220.528 668.108 223.431C668.06 224.442 668.452 225.513 669.135 226.545C669.071 226.898 669.032 227.259 669.015 227.624C668.77 232.63 672.567 236.888 677.5 237.142C682.433 237.391 686.63 233.538 686.88 228.532C687.082 224.468 684.613 220.898 681.044 219.565C680.932 214.314 679.134 202.801 665.751 202.431C653.55 202.096 650.522 215.673 650.522 215.673H650.518Z",
|
531
525
|
fill: "#F3F3F3",
|
532
526
|
stroke: "black",
|
533
527
|
strokeWidth: "0.860121",
|
534
528
|
strokeMiterlimit: "10"
|
535
|
-
}), /*#__PURE__*/
|
529
|
+
}), /*#__PURE__*/React.createElement("path", {
|
536
530
|
d: "M667.42 229.512C668.684 229.216 669.566 228.067 669.523 226.769L669.252 222.348C669.213 221.165 668.293 219.995 667.11 220.275C666.104 220.511 665.669 221.431 666.018 223.049",
|
537
531
|
fill: "#F3F3F3"
|
538
|
-
}), /*#__PURE__*/
|
532
|
+
}), /*#__PURE__*/React.createElement("path", {
|
539
533
|
d: "M667.42 229.512C668.684 229.216 669.566 228.067 669.523 226.769L669.252 222.348C669.213 221.165 668.293 219.995 667.11 220.275C666.104 220.511 665.669 221.431 666.018 223.049",
|
540
534
|
stroke: "black",
|
541
535
|
strokeWidth: "0.860121",
|
542
536
|
strokeMiterlimit: "10"
|
543
|
-
}), /*#__PURE__*/
|
537
|
+
}), /*#__PURE__*/React.createElement("path", {
|
544
538
|
d: "M668.757 254.163C668.757 254.163 657.752 273.8 657.902 295.406C658.053 317.017 702.998 316.385 702.848 295.088C702.697 273.796 694.015 253.983 694.015 253.983L668.757 254.159V254.163Z",
|
545
539
|
fill: "#F3F3F3",
|
546
540
|
stroke: "black",
|
547
541
|
strokeWidth: "0.860121",
|
548
542
|
strokeMiterlimit: "10"
|
549
|
-
}), /*#__PURE__*/
|
543
|
+
}), /*#__PURE__*/React.createElement("path", {
|
550
544
|
d: "M664.912 262.765L694.316 262.558C698.521 262.528 701.936 259.066 701.906 254.86C701.876 250.654 698.414 247.239 694.208 247.27L665.166 247.476C661.579 247.502 658.663 250.456 658.685 254.047L658.702 256.649C658.728 260.038 661.519 262.79 664.908 262.769L664.912 262.765Z",
|
551
545
|
fill: "#F3F3F3",
|
552
546
|
stroke: "black",
|
553
547
|
strokeWidth: "0.860121",
|
554
548
|
strokeMiterlimit: "10"
|
555
|
-
}), /*#__PURE__*/
|
549
|
+
}), /*#__PURE__*/React.createElement("path", {
|
556
550
|
d: "M658.973 282.857C658.973 282.857 649.237 303.702 663.721 303.599C678.205 303.496 671.561 282.767 671.561 282.767L658.973 282.857Z",
|
557
551
|
fill: "#F3F3F3",
|
558
552
|
stroke: "black",
|
559
553
|
strokeWidth: "0.860121",
|
560
554
|
strokeMiterlimit: "10"
|
561
|
-
}), /*#__PURE__*/
|
555
|
+
}), /*#__PURE__*/React.createElement("path", {
|
562
556
|
d: "M680.394 282.706C680.394 282.706 671.626 303.543 687.516 303.431C703.407 303.319 706.31 302.575 706.241 293.118C706.177 283.661 702.095 282.552 702.095 282.552L680.39 282.706H680.394Z",
|
563
557
|
fill: "#F3F3F3",
|
564
558
|
stroke: "black",
|
565
559
|
strokeWidth: "0.860121",
|
566
560
|
strokeMiterlimit: "10"
|
567
|
-
}), /*#__PURE__*/
|
561
|
+
}), /*#__PURE__*/React.createElement("path", {
|
568
562
|
d: "M658.281 255.165C658.311 259.303 660.87 262.64 663.996 262.618C667.123 262.597 669.634 259.225 669.609 255.088C669.578 250.951 667.02 247.614 663.893 247.635C660.766 247.657 658.255 251.028 658.281 255.165Z",
|
569
563
|
fill: "#F3F3F3",
|
570
564
|
stroke: "black",
|
571
565
|
strokeWidth: "0.860121",
|
572
566
|
strokeMiterlimit: "10"
|
573
|
-
}), /*#__PURE__*/
|
567
|
+
}), /*#__PURE__*/React.createElement("path", {
|
574
568
|
d: "M672.765 247.416C672.765 247.416 679.758 255.656 672.873 262.704L676.404 262.679C676.404 262.679 683.672 254.92 676.111 247.39L672.77 247.411L672.765 247.416Z",
|
575
569
|
fill: "#F3F3F3",
|
576
570
|
stroke: "black",
|
577
571
|
strokeWidth: "0.860121",
|
578
572
|
strokeMiterlimit: "10"
|
579
|
-
}), /*#__PURE__*/
|
573
|
+
}), /*#__PURE__*/React.createElement("path", {
|
580
574
|
d: "M689.55 247.3C689.55 247.3 696.543 255.54 689.658 262.588L693.189 262.562C693.189 262.562 700.457 254.804 692.896 247.274L689.555 247.295L689.55 247.3Z",
|
581
575
|
fill: "#F3F3F3",
|
582
576
|
stroke: "black",
|
583
577
|
strokeWidth: "0.860121",
|
584
578
|
strokeMiterlimit: "10"
|
585
|
-
}), /*#__PURE__*/
|
579
|
+
}), /*#__PURE__*/React.createElement("path", {
|
586
580
|
d: "M607.68 263.216L602.334 268.433",
|
587
581
|
stroke: "black",
|
588
582
|
strokeWidth: "0.860121",
|
589
583
|
strokeMiterlimit: "10"
|
590
|
-
}), /*#__PURE__*/
|
584
|
+
}), /*#__PURE__*/React.createElement("path", {
|
591
585
|
d: "M295.963 153.267H230.594",
|
592
586
|
stroke: "black",
|
593
587
|
strokeWidth: "0.860121",
|
594
588
|
strokeMiterlimit: "10"
|
595
|
-
}), /*#__PURE__*/
|
589
|
+
}), /*#__PURE__*/React.createElement("path", {
|
596
590
|
d: "M357.806 380.429V483.553H406.059",
|
597
591
|
stroke: "black",
|
598
592
|
strokeWidth: "0.860121",
|
599
593
|
strokeMiterlimit: "10"
|
600
|
-
}), /*#__PURE__*/
|
594
|
+
}), /*#__PURE__*/React.createElement("path", {
|
601
595
|
d: "M357.892 407.863C361.692 407.863 364.773 404.782 364.773 400.982C364.773 397.182 361.692 394.101 357.892 394.101C354.092 394.101 351.011 397.182 351.011 400.982C351.011 404.782 354.092 407.863 357.892 407.863Z",
|
602
596
|
fill: "#F3F3F3",
|
603
597
|
stroke: "black",
|
604
598
|
strokeWidth: "0.860121",
|
605
599
|
strokeMiterlimit: "10"
|
606
|
-
}), /*#__PURE__*/
|
600
|
+
}), /*#__PURE__*/React.createElement("path", {
|
607
601
|
d: "M357.892 483.553H106.737",
|
608
602
|
stroke: "black",
|
609
603
|
strokeWidth: "0.860121",
|
610
604
|
strokeMiterlimit: "10"
|
611
|
-
}), /*#__PURE__*/
|
605
|
+
}), /*#__PURE__*/React.createElement("path", {
|
612
606
|
d: "M701.657 442.268H622.809",
|
613
607
|
stroke: "black",
|
614
608
|
strokeWidth: "0.860121",
|
615
609
|
strokeMiterlimit: "10"
|
616
|
-
}))), _defs || (_defs = /*#__PURE__*/
|
610
|
+
}))), _defs || (_defs = /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
617
611
|
id: "clip0_0_2285"
|
618
|
-
}, /*#__PURE__*/
|
612
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
619
613
|
width: "750.537",
|
620
614
|
height: "548.835",
|
621
615
|
fill: "white",
|