@carbon/ibm-products 2.50.0 → 2.51.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
@@ -16,11 +16,6 @@ var cx = require('classnames');
|
|
16
16
|
var settings = require('../../../settings.js');
|
17
17
|
var uuidv4 = require('../../../global/js/utils/uuidv4.js');
|
18
18
|
|
19
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
20
|
-
|
21
|
-
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
22
|
-
var cx__default = /*#__PURE__*/_interopDefaultLegacy(cx);
|
23
|
-
|
24
19
|
var _stop, _stop2, _stop3, _stop4, _stop5, _stop6, _stop7, _stop8, _stop9, _stop10, _stop11, _stop12, _stop13, _stop14, _stop15, _stop16, _stop17, _stop18, _stop19, _stop20, _stop21, _stop22, _stop23, _stop24, _stop25, _stop26, _stop27, _stop28, _path, _path2, _stop29, _stop30, _stop31, _stop32, _stop33, _stop34, _stop35, _stop36, _stop37, _stop38, _stop39, _stop40, _stop41, _stop42, _stop43, _stop44, _stop45, _stop46, _stop47, _stop48, _stop49, _stop50, _stop51, _stop52, _stop53, _stop54, _stop55, _stop56, _stop57, _stop58, _stop59, _stop60, _stop61, _stop62, _stop63, _stop64, _stop65, _stop66, _path3;
|
25
20
|
var _excluded = ["theme", "size", "alt"];
|
26
21
|
|
@@ -31,143 +26,143 @@ var NoTagsIllustration = function NoTagsIllustration(_ref) {
|
|
31
26
|
size = _ref.size,
|
32
27
|
alt = _ref.alt,
|
33
28
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
|
34
|
-
var svgId = uuidv4
|
35
|
-
return /*#__PURE__*/
|
29
|
+
var svgId = uuidv4.default();
|
30
|
+
return /*#__PURE__*/React.createElement("svg", _rollupPluginBabelHelpers.extends({}, rest, {
|
36
31
|
xmlns: "http://www.w3.org/2000/svg",
|
37
32
|
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
38
33
|
width: 80,
|
39
34
|
height: 80,
|
40
35
|
viewBox: "0 0 80 80",
|
41
|
-
className:
|
36
|
+
className: cx(["".concat(blockClass, "__illustration"), "".concat(blockClass, "__illustration-noTags"), "".concat(blockClass, "__illustration--").concat(size)]),
|
42
37
|
role: "img"
|
43
|
-
}), /*#__PURE__*/
|
38
|
+
}), /*#__PURE__*/React.createElement("title", null, alt), theme === 'dark' ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
44
39
|
id: "prefix__c_dark_".concat(svgId),
|
45
40
|
x1: 34.96,
|
46
41
|
y1: 5.37,
|
47
42
|
x2: 48.48,
|
48
43
|
y2: 28.8,
|
49
44
|
gradientUnits: "userSpaceOnUse"
|
50
|
-
}, _stop || (_stop = /*#__PURE__*/
|
45
|
+
}, _stop || (_stop = /*#__PURE__*/React.createElement("stop", {
|
51
46
|
offset: 0,
|
52
47
|
stopColor: "#525252"
|
53
|
-
})), _stop2 || (_stop2 = /*#__PURE__*/
|
48
|
+
})), _stop2 || (_stop2 = /*#__PURE__*/React.createElement("stop", {
|
54
49
|
offset: 1,
|
55
50
|
stopColor: "#393939"
|
56
|
-
}))), /*#__PURE__*/
|
51
|
+
}))), /*#__PURE__*/React.createElement("linearGradient", {
|
57
52
|
id: "prefix__a_dark_".concat(svgId),
|
58
53
|
x1: 45.47,
|
59
54
|
y1: 46.54,
|
60
55
|
x2: 55.21,
|
61
56
|
y2: 46.54,
|
62
57
|
gradientUnits: "userSpaceOnUse"
|
63
|
-
}, _stop3 || (_stop3 = /*#__PURE__*/
|
58
|
+
}, _stop3 || (_stop3 = /*#__PURE__*/React.createElement("stop", {
|
64
59
|
offset: 0,
|
65
60
|
stopColor: "#262626"
|
66
|
-
})), _stop4 || (_stop4 = /*#__PURE__*/
|
61
|
+
})), _stop4 || (_stop4 = /*#__PURE__*/React.createElement("stop", {
|
67
62
|
offset: 1,
|
68
63
|
stopColor: "#393939"
|
69
|
-
}))), /*#__PURE__*/
|
64
|
+
}))), /*#__PURE__*/React.createElement("linearGradient", {
|
70
65
|
id: "prefix__d_dark_".concat(svgId),
|
71
66
|
x1: 38.25,
|
72
67
|
y1: 70.94,
|
73
68
|
x2: 38.25,
|
74
69
|
y2: -3.31,
|
75
70
|
xlinkHref: "#prefix__a_dark_".concat(svgId)
|
76
|
-
}), /*#__PURE__*/
|
71
|
+
}), /*#__PURE__*/React.createElement("linearGradient", {
|
77
72
|
id: "prefix__e_dark_".concat(svgId),
|
78
73
|
x1: 28.77,
|
79
74
|
y1: 9.54,
|
80
75
|
x2: 48.15,
|
81
76
|
y2: 40.79,
|
82
77
|
gradientUnits: "userSpaceOnUse"
|
83
|
-
}, _stop5 || (_stop5 = /*#__PURE__*/
|
78
|
+
}, _stop5 || (_stop5 = /*#__PURE__*/React.createElement("stop", {
|
84
79
|
offset: 0.42,
|
85
80
|
stopColor: "#6f6f6f"
|
86
|
-
})), _stop6 || (_stop6 = /*#__PURE__*/
|
81
|
+
})), _stop6 || (_stop6 = /*#__PURE__*/React.createElement("stop", {
|
87
82
|
offset: 0.51,
|
88
83
|
stopColor: "#6e6e6e",
|
89
84
|
stopOpacity: 0.98
|
90
|
-
})), _stop7 || (_stop7 = /*#__PURE__*/
|
85
|
+
})), _stop7 || (_stop7 = /*#__PURE__*/React.createElement("stop", {
|
91
86
|
offset: 0.56,
|
92
87
|
stopColor: "#6c6c6c",
|
93
88
|
stopOpacity: 0.9
|
94
|
-
})), _stop8 || (_stop8 = /*#__PURE__*/
|
89
|
+
})), _stop8 || (_stop8 = /*#__PURE__*/React.createElement("stop", {
|
95
90
|
offset: 0.61,
|
96
91
|
stopColor: "#686868",
|
97
92
|
stopOpacity: 0.77
|
98
|
-
})), _stop9 || (_stop9 = /*#__PURE__*/
|
93
|
+
})), _stop9 || (_stop9 = /*#__PURE__*/React.createElement("stop", {
|
99
94
|
offset: 0.65,
|
100
95
|
stopColor: "#636363",
|
101
96
|
stopOpacity: 0.58
|
102
|
-
})), _stop10 || (_stop10 = /*#__PURE__*/
|
97
|
+
})), _stop10 || (_stop10 = /*#__PURE__*/React.createElement("stop", {
|
103
98
|
offset: 0.69,
|
104
99
|
stopColor: "#5c5c5c",
|
105
100
|
stopOpacity: 0.34
|
106
|
-
})), _stop11 || (_stop11 = /*#__PURE__*/
|
101
|
+
})), _stop11 || (_stop11 = /*#__PURE__*/React.createElement("stop", {
|
107
102
|
offset: 0.72,
|
108
103
|
stopColor: "#545454",
|
109
104
|
stopOpacity: 0.05
|
110
|
-
})), _stop12 || (_stop12 = /*#__PURE__*/
|
105
|
+
})), _stop12 || (_stop12 = /*#__PURE__*/React.createElement("stop", {
|
111
106
|
offset: 0.73,
|
112
107
|
stopColor: "#525252",
|
113
108
|
stopOpacity: 0
|
114
|
-
}))), /*#__PURE__*/
|
109
|
+
}))), /*#__PURE__*/React.createElement("linearGradient", {
|
115
110
|
id: "prefix__b_dark_".concat(svgId),
|
116
111
|
x1: 51.28,
|
117
112
|
y1: 68.32,
|
118
113
|
x2: 51.34,
|
119
114
|
y2: 68.35,
|
120
115
|
gradientUnits: "userSpaceOnUse"
|
121
|
-
}, _stop13 || (_stop13 = /*#__PURE__*/
|
116
|
+
}, _stop13 || (_stop13 = /*#__PURE__*/React.createElement("stop", {
|
122
117
|
offset: 0.87,
|
123
118
|
stopColor: "#fff"
|
124
|
-
})), _stop14 || (_stop14 = /*#__PURE__*/
|
119
|
+
})), _stop14 || (_stop14 = /*#__PURE__*/React.createElement("stop", {
|
125
120
|
offset: 0.89,
|
126
121
|
stopColor: "#fefefe",
|
127
122
|
stopOpacity: 0.98
|
128
|
-
})), _stop15 || (_stop15 = /*#__PURE__*/
|
123
|
+
})), _stop15 || (_stop15 = /*#__PURE__*/React.createElement("stop", {
|
129
124
|
offset: 0.9,
|
130
125
|
stopColor: "#fcfcfc",
|
131
126
|
stopOpacity: 0.93
|
132
|
-
})), _stop16 || (_stop16 = /*#__PURE__*/
|
127
|
+
})), _stop16 || (_stop16 = /*#__PURE__*/React.createElement("stop", {
|
133
128
|
offset: 0.92,
|
134
129
|
stopColor: "#f8f8f8",
|
135
130
|
stopOpacity: 0.84
|
136
|
-
})), _stop17 || (_stop17 = /*#__PURE__*/
|
131
|
+
})), _stop17 || (_stop17 = /*#__PURE__*/React.createElement("stop", {
|
137
132
|
offset: 0.94,
|
138
133
|
stopColor: "#f2f2f2",
|
139
134
|
stopOpacity: 0.72
|
140
|
-
})), _stop18 || (_stop18 = /*#__PURE__*/
|
135
|
+
})), _stop18 || (_stop18 = /*#__PURE__*/React.createElement("stop", {
|
141
136
|
offset: 0.95,
|
142
137
|
stopColor: "#eaeaea",
|
143
138
|
stopOpacity: 0.56
|
144
|
-
})), _stop19 || (_stop19 = /*#__PURE__*/
|
139
|
+
})), _stop19 || (_stop19 = /*#__PURE__*/React.createElement("stop", {
|
145
140
|
offset: 0.97,
|
146
141
|
stopColor: "#e1e1e1",
|
147
142
|
stopOpacity: 0.37
|
148
|
-
})), _stop20 || (_stop20 = /*#__PURE__*/
|
143
|
+
})), _stop20 || (_stop20 = /*#__PURE__*/React.createElement("stop", {
|
149
144
|
offset: 0.99,
|
150
145
|
stopColor: "#d7d7d7",
|
151
146
|
stopOpacity: 0.14
|
152
|
-
})), _stop21 || (_stop21 = /*#__PURE__*/
|
147
|
+
})), _stop21 || (_stop21 = /*#__PURE__*/React.createElement("stop", {
|
153
148
|
offset: 1,
|
154
149
|
stopColor: "#d0d0d0",
|
155
150
|
stopOpacity: 0
|
156
|
-
}))), /*#__PURE__*/
|
151
|
+
}))), /*#__PURE__*/React.createElement("linearGradient", {
|
157
152
|
id: "prefix__f_dark_".concat(svgId),
|
158
153
|
x1: 51.09,
|
159
154
|
y1: 68.25,
|
160
155
|
x2: 51.22,
|
161
156
|
y2: 68.33,
|
162
157
|
xlinkHref: "#prefix__b_dark_".concat(svgId)
|
163
|
-
}), /*#__PURE__*/
|
158
|
+
}), /*#__PURE__*/React.createElement("linearGradient", {
|
164
159
|
id: "prefix__g_dark_".concat(svgId),
|
165
160
|
x1: 51.41,
|
166
161
|
y1: 68.32,
|
167
162
|
x2: 51.46,
|
168
163
|
y2: 68.35,
|
169
164
|
xlinkHref: "#prefix__b_dark_".concat(svgId)
|
170
|
-
}), /*#__PURE__*/
|
165
|
+
}), /*#__PURE__*/React.createElement("linearGradient", {
|
171
166
|
id: "prefix__h_dark_".concat(svgId),
|
172
167
|
x1: 33.94,
|
173
168
|
y1: 119.46,
|
@@ -175,72 +170,72 @@ var NoTagsIllustration = function NoTagsIllustration(_ref) {
|
|
175
170
|
y2: 119.46,
|
176
171
|
gradientTransform: "translate(0 -100)",
|
177
172
|
gradientUnits: "userSpaceOnUse"
|
178
|
-
}, _stop22 || (_stop22 = /*#__PURE__*/
|
173
|
+
}, _stop22 || (_stop22 = /*#__PURE__*/React.createElement("stop", {
|
179
174
|
offset: 0,
|
180
175
|
stopColor: "#262626"
|
181
|
-
})), _stop23 || (_stop23 = /*#__PURE__*/
|
176
|
+
})), _stop23 || (_stop23 = /*#__PURE__*/React.createElement("stop", {
|
182
177
|
offset: 1,
|
183
178
|
stopColor: "#161616"
|
184
|
-
}))), /*#__PURE__*/
|
179
|
+
}))), /*#__PURE__*/React.createElement("linearGradient", {
|
185
180
|
id: "prefix__i_dark_".concat(svgId),
|
186
181
|
x1: 35.3,
|
187
182
|
y1: 23.46,
|
188
183
|
x2: 38.85,
|
189
184
|
y2: 17.31,
|
190
185
|
gradientUnits: "userSpaceOnUse"
|
191
|
-
}, _stop24 || (_stop24 = /*#__PURE__*/
|
186
|
+
}, _stop24 || (_stop24 = /*#__PURE__*/React.createElement("stop", {
|
192
187
|
offset: 0,
|
193
188
|
stopColor: "#6f6f6f"
|
194
|
-
})), _stop25 || (_stop25 = /*#__PURE__*/
|
189
|
+
})), _stop25 || (_stop25 = /*#__PURE__*/React.createElement("stop", {
|
195
190
|
offset: 0.09,
|
196
191
|
stopColor: "#6f6f6f",
|
197
192
|
stopOpacity: 0.9
|
198
|
-
})), _stop26 || (_stop26 = /*#__PURE__*/
|
193
|
+
})), _stop26 || (_stop26 = /*#__PURE__*/React.createElement("stop", {
|
199
194
|
offset: 0.24,
|
200
195
|
stopColor: "#6f6f6f",
|
201
196
|
stopOpacity: 0.63
|
202
|
-
})), _stop27 || (_stop27 = /*#__PURE__*/
|
197
|
+
})), _stop27 || (_stop27 = /*#__PURE__*/React.createElement("stop", {
|
203
198
|
offset: 0.44,
|
204
199
|
stopColor: "#6f6f6f",
|
205
200
|
stopOpacity: 0.19
|
206
|
-
})), _stop28 || (_stop28 = /*#__PURE__*/
|
201
|
+
})), _stop28 || (_stop28 = /*#__PURE__*/React.createElement("stop", {
|
207
202
|
offset: 0.52,
|
208
203
|
stopColor: "#6f6f6f",
|
209
204
|
stopOpacity: 0
|
210
|
-
})))), _path || (_path = /*#__PURE__*/
|
205
|
+
})))), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
211
206
|
fill: "none",
|
212
207
|
d: "M0 0h80v80H0z"
|
213
|
-
})), _path2 || (_path2 = /*#__PURE__*/
|
208
|
+
})), _path2 || (_path2 = /*#__PURE__*/React.createElement("path", {
|
214
209
|
opacity: 0.25,
|
215
210
|
d: "M51.59 78.34l-26.8-15.48 3.62-2.09 26.8 15.48-3.62 2.09z"
|
216
|
-
})), /*#__PURE__*/
|
211
|
+
})), /*#__PURE__*/React.createElement("path", {
|
217
212
|
d: "M45.47 30.38l6.58-3.76 3.12-1.85v.15a1.28 1.28 0 00-.17-.47L42.19 2.21c-.24-.42-.63-.65-.88-.51L28.47 9.12a.44.44 0 00-.18.4l13.88 3a1.38 1.38 0 00.62 1.07z",
|
218
213
|
fill: "url(#prefix__c_dark_".concat(svgId, ")")
|
219
|
-
}), /*#__PURE__*/
|
214
|
+
}), /*#__PURE__*/React.createElement("path", {
|
220
215
|
d: "M55 66.29a.46.46 0 00.18-.41V25.06a1 1 0 000-.29l-3.12 1.85-6.58 3.76 6.06 37.92z",
|
221
216
|
fill: "url(#prefix__a_dark_".concat(svgId, ")")
|
222
|
-
}), /*#__PURE__*/
|
217
|
+
}), /*#__PURE__*/React.createElement("path", {
|
223
218
|
d: "M51.53 26.47L38.69 4.23c-.25-.42-.64-.64-.88-.5L25 11.14a.43.43 0 00-.18.4v40.82a1.35 1.35 0 00.62 1.07l25.65 14.83c.34.2.62 0 .62-.36V27.08a1.33 1.33 0 00-.18-.61zM37.08 24a6.93 6.93 0 01-3.14-5.44c0-2 1.4-2.81 3.14-1.81a7 7 0 013.13 5.44c0 2.01-1.4 2.81-3.13 1.81z",
|
224
219
|
fill: "url(#prefix__d_dark_".concat(svgId, ")")
|
225
|
-
}), /*#__PURE__*/
|
220
|
+
}), /*#__PURE__*/React.createElement("path", {
|
226
221
|
d: "M39.05 4a1.71 1.71 0 00-.64-.64l-.6.34a.3.3 0 01.16 0 1 1 0 01.72.55l12.84 22.22a1.33 1.33 0 01.18.61V67.9a.41.41 0 01-.19.4l.58-.34V27.08a1.75 1.75 0 00-.24-.82z",
|
227
222
|
fill: "url(#prefix__e_dark_".concat(svgId, ")")
|
228
|
-
}), /*#__PURE__*/
|
223
|
+
}), /*#__PURE__*/React.createElement("path", {
|
229
224
|
d: "M51.28 68.33z",
|
230
225
|
fill: "url(#prefix__b_dark_".concat(svgId, ")")
|
231
|
-
}), /*#__PURE__*/
|
226
|
+
}), /*#__PURE__*/React.createElement("path", {
|
232
227
|
d: "M51.23 68.32a.42.42 0 01-.14-.06.42.42 0 00.14.06z",
|
233
228
|
fill: "url(#prefix__f_dark_".concat(svgId, ")")
|
234
|
-
}), /*#__PURE__*/
|
229
|
+
}), /*#__PURE__*/React.createElement("path", {
|
235
230
|
d: "M51.48 68.32h-.08z",
|
236
231
|
fill: "url(#prefix__g_dark_".concat(svgId, ")")
|
237
|
-
}), /*#__PURE__*/
|
232
|
+
}), /*#__PURE__*/React.createElement("path", {
|
238
233
|
d: "M39.66 22.17a6.93 6.93 0 01-3.14-5.44 1.36 1.36 0 010-.21c-1.48-.56-2.6.27-2.6 2.05A6.93 6.93 0 0037.08 24c1.66 1 3 .24 3.11-1.6a3.49 3.49 0 01-.53-.23z",
|
239
234
|
fill: "url(#prefix__h_dark_".concat(svgId, ")")
|
240
|
-
}), /*#__PURE__*/
|
235
|
+
}), /*#__PURE__*/React.createElement("path", {
|
241
236
|
d: "M35.67 16.33a2.88 2.88 0 011.41.43 7 7 0 013.13 5.44c0 1.42-.7 2.24-1.73 2.24a2.82 2.82 0 01-1.4-.43 6.93 6.93 0 01-3.14-5.44c0-1.42.7-2.24 1.73-2.24m0-.41c-1.3 0-2.15 1-2.15 2.65a7.3 7.3 0 003.35 5.8 3.23 3.23 0 001.61.48c1.3 0 2.15-1 2.15-2.65a7.29 7.29 0 00-3.35-5.8 3.2 3.2 0 00-1.61-.48z",
|
242
237
|
fill: "url(#prefix__i_dark_".concat(svgId, ")")
|
243
|
-
})) : /*#__PURE__*/
|
238
|
+
})) : /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
244
239
|
id: "prefix__b_".concat(svgId),
|
245
240
|
x1: 634.81,
|
246
241
|
y1: 667.18,
|
@@ -248,249 +243,249 @@ var NoTagsIllustration = function NoTagsIllustration(_ref) {
|
|
248
243
|
y2: 684.56,
|
249
244
|
gradientTransform: "matrix(.87 .5 -1 .58 161.49 -640.11)",
|
250
245
|
gradientUnits: "userSpaceOnUse"
|
251
|
-
}, _stop29 || (_stop29 = /*#__PURE__*/
|
246
|
+
}, _stop29 || (_stop29 = /*#__PURE__*/React.createElement("stop", {
|
252
247
|
offset: 0,
|
253
248
|
stopColor: "#525252",
|
254
249
|
stopOpacity: 0.05
|
255
|
-
})), _stop30 || (_stop30 = /*#__PURE__*/
|
250
|
+
})), _stop30 || (_stop30 = /*#__PURE__*/React.createElement("stop", {
|
256
251
|
offset: 1,
|
257
252
|
stopOpacity: 0.1
|
258
|
-
}))), /*#__PURE__*/
|
253
|
+
}))), /*#__PURE__*/React.createElement("linearGradient", {
|
259
254
|
id: "prefix__c_".concat(svgId),
|
260
255
|
x1: 29.21,
|
261
256
|
y1: 7.75,
|
262
257
|
x2: 56.14,
|
263
258
|
y2: 23.3,
|
264
259
|
gradientUnits: "userSpaceOnUse"
|
265
|
-
}, _stop31 || (_stop31 = /*#__PURE__*/
|
260
|
+
}, _stop31 || (_stop31 = /*#__PURE__*/React.createElement("stop", {
|
266
261
|
offset: 0,
|
267
262
|
stopColor: "#f4f4f4"
|
268
|
-
})), _stop32 || (_stop32 = /*#__PURE__*/
|
263
|
+
})), _stop32 || (_stop32 = /*#__PURE__*/React.createElement("stop", {
|
269
264
|
offset: 0.78,
|
270
265
|
stopColor: "#e0e0e0"
|
271
|
-
})), _stop33 || (_stop33 = /*#__PURE__*/
|
266
|
+
})), _stop33 || (_stop33 = /*#__PURE__*/React.createElement("stop", {
|
272
267
|
offset: 1,
|
273
268
|
stopColor: "#c6c6c6"
|
274
|
-
}))), /*#__PURE__*/
|
269
|
+
}))), /*#__PURE__*/React.createElement("linearGradient", {
|
275
270
|
id: "prefix__d_".concat(svgId),
|
276
271
|
x1: 45.47,
|
277
272
|
y1: 46.54,
|
278
273
|
x2: 55.21,
|
279
274
|
y2: 46.54,
|
280
275
|
gradientUnits: "userSpaceOnUse"
|
281
|
-
}, _stop34 || (_stop34 = /*#__PURE__*/
|
276
|
+
}, _stop34 || (_stop34 = /*#__PURE__*/React.createElement("stop", {
|
282
277
|
offset: 0,
|
283
278
|
stopColor: "#a8a8a8"
|
284
|
-
})), _stop35 || (_stop35 = /*#__PURE__*/
|
279
|
+
})), _stop35 || (_stop35 = /*#__PURE__*/React.createElement("stop", {
|
285
280
|
offset: 1,
|
286
281
|
stopColor: "#c6c6c6"
|
287
|
-
}))), /*#__PURE__*/
|
282
|
+
}))), /*#__PURE__*/React.createElement("linearGradient", {
|
288
283
|
id: "prefix__e_".concat(svgId),
|
289
284
|
x1: 38.25,
|
290
285
|
y1: 59.31,
|
291
286
|
x2: 38.25,
|
292
287
|
y2: 2.99,
|
293
288
|
gradientUnits: "userSpaceOnUse"
|
294
|
-
}, _stop36 || (_stop36 = /*#__PURE__*/
|
289
|
+
}, _stop36 || (_stop36 = /*#__PURE__*/React.createElement("stop", {
|
295
290
|
offset: 0,
|
296
291
|
stopColor: "#c6c6c6"
|
297
|
-
})), _stop37 || (_stop37 = /*#__PURE__*/
|
292
|
+
})), _stop37 || (_stop37 = /*#__PURE__*/React.createElement("stop", {
|
298
293
|
offset: 0.78,
|
299
294
|
stopColor: "#e0e0e0"
|
300
|
-
}))), /*#__PURE__*/
|
295
|
+
}))), /*#__PURE__*/React.createElement("linearGradient", {
|
301
296
|
id: "prefix__f_".concat(svgId),
|
302
297
|
x1: 28.77,
|
303
298
|
y1: 9.54,
|
304
299
|
x2: 48.15,
|
305
300
|
y2: 40.79,
|
306
301
|
gradientUnits: "userSpaceOnUse"
|
307
|
-
}, _stop38 || (_stop38 = /*#__PURE__*/
|
302
|
+
}, _stop38 || (_stop38 = /*#__PURE__*/React.createElement("stop", {
|
308
303
|
offset: 0.42,
|
309
304
|
stopColor: "#fff"
|
310
|
-
})), _stop39 || (_stop39 = /*#__PURE__*/
|
305
|
+
})), _stop39 || (_stop39 = /*#__PURE__*/React.createElement("stop", {
|
311
306
|
offset: 0.49,
|
312
307
|
stopColor: "#fff",
|
313
308
|
stopOpacity: 0.99
|
314
|
-
})), _stop40 || (_stop40 = /*#__PURE__*/
|
309
|
+
})), _stop40 || (_stop40 = /*#__PURE__*/React.createElement("stop", {
|
315
310
|
offset: 0.53,
|
316
311
|
stopColor: "#fdfdfd",
|
317
312
|
stopOpacity: 0.96
|
318
|
-
})), _stop41 || (_stop41 = /*#__PURE__*/
|
313
|
+
})), _stop41 || (_stop41 = /*#__PURE__*/React.createElement("stop", {
|
319
314
|
offset: 0.56,
|
320
315
|
stopColor: "#fafafa",
|
321
316
|
stopOpacity: 0.9
|
322
|
-
})), _stop42 || (_stop42 = /*#__PURE__*/
|
317
|
+
})), _stop42 || (_stop42 = /*#__PURE__*/React.createElement("stop", {
|
323
318
|
offset: 0.59,
|
324
319
|
stopColor: "#f6f6f6",
|
325
320
|
stopOpacity: 0.82
|
326
|
-
})), _stop43 || (_stop43 = /*#__PURE__*/
|
321
|
+
})), _stop43 || (_stop43 = /*#__PURE__*/React.createElement("stop", {
|
327
322
|
offset: 0.62,
|
328
323
|
stopColor: "#f2f2f2",
|
329
324
|
stopOpacity: 0.71
|
330
|
-
})), _stop44 || (_stop44 = /*#__PURE__*/
|
325
|
+
})), _stop44 || (_stop44 = /*#__PURE__*/React.createElement("stop", {
|
331
326
|
offset: 0.65,
|
332
327
|
stopColor: "#ebebeb",
|
333
328
|
stopOpacity: 0.59
|
334
|
-
})), _stop45 || (_stop45 = /*#__PURE__*/
|
329
|
+
})), _stop45 || (_stop45 = /*#__PURE__*/React.createElement("stop", {
|
335
330
|
offset: 0.67,
|
336
331
|
stopColor: "#e4e4e4",
|
337
332
|
stopOpacity: 0.43
|
338
|
-
})), _stop46 || (_stop46 = /*#__PURE__*/
|
333
|
+
})), _stop46 || (_stop46 = /*#__PURE__*/React.createElement("stop", {
|
339
334
|
offset: 0.7,
|
340
335
|
stopColor: "#dcdcdc",
|
341
336
|
stopOpacity: 0.25
|
342
|
-
})), _stop47 || (_stop47 = /*#__PURE__*/
|
337
|
+
})), _stop47 || (_stop47 = /*#__PURE__*/React.createElement("stop", {
|
343
338
|
offset: 0.72,
|
344
339
|
stopColor: "#d3d3d3",
|
345
340
|
stopOpacity: 0.06
|
346
|
-
})), _stop48 || (_stop48 = /*#__PURE__*/
|
341
|
+
})), _stop48 || (_stop48 = /*#__PURE__*/React.createElement("stop", {
|
347
342
|
offset: 0.73,
|
348
343
|
stopColor: "#d0d0d0",
|
349
344
|
stopOpacity: 0
|
350
|
-
}))), /*#__PURE__*/
|
345
|
+
}))), /*#__PURE__*/React.createElement("linearGradient", {
|
351
346
|
id: "prefix__a_".concat(svgId),
|
352
347
|
x1: 51.28,
|
353
348
|
y1: 68.32,
|
354
349
|
x2: 51.34,
|
355
350
|
y2: 68.35,
|
356
351
|
gradientUnits: "userSpaceOnUse"
|
357
|
-
}, _stop49 || (_stop49 = /*#__PURE__*/
|
352
|
+
}, _stop49 || (_stop49 = /*#__PURE__*/React.createElement("stop", {
|
358
353
|
offset: 0.87,
|
359
354
|
stopColor: "#fff"
|
360
|
-
})), _stop50 || (_stop50 = /*#__PURE__*/
|
355
|
+
})), _stop50 || (_stop50 = /*#__PURE__*/React.createElement("stop", {
|
361
356
|
offset: 0.89,
|
362
357
|
stopColor: "#fefefe",
|
363
358
|
stopOpacity: 0.98
|
364
|
-
})), _stop51 || (_stop51 = /*#__PURE__*/
|
359
|
+
})), _stop51 || (_stop51 = /*#__PURE__*/React.createElement("stop", {
|
365
360
|
offset: 0.9,
|
366
361
|
stopColor: "#fcfcfc",
|
367
362
|
stopOpacity: 0.93
|
368
|
-
})), _stop52 || (_stop52 = /*#__PURE__*/
|
363
|
+
})), _stop52 || (_stop52 = /*#__PURE__*/React.createElement("stop", {
|
369
364
|
offset: 0.92,
|
370
365
|
stopColor: "#f8f8f8",
|
371
366
|
stopOpacity: 0.84
|
372
|
-
})), _stop53 || (_stop53 = /*#__PURE__*/
|
367
|
+
})), _stop53 || (_stop53 = /*#__PURE__*/React.createElement("stop", {
|
373
368
|
offset: 0.94,
|
374
369
|
stopColor: "#f2f2f2",
|
375
370
|
stopOpacity: 0.72
|
376
|
-
})), _stop54 || (_stop54 = /*#__PURE__*/
|
371
|
+
})), _stop54 || (_stop54 = /*#__PURE__*/React.createElement("stop", {
|
377
372
|
offset: 0.95,
|
378
373
|
stopColor: "#eaeaea",
|
379
374
|
stopOpacity: 0.56
|
380
|
-
})), _stop55 || (_stop55 = /*#__PURE__*/
|
375
|
+
})), _stop55 || (_stop55 = /*#__PURE__*/React.createElement("stop", {
|
381
376
|
offset: 0.97,
|
382
377
|
stopColor: "#e1e1e1",
|
383
378
|
stopOpacity: 0.37
|
384
|
-
})), _stop56 || (_stop56 = /*#__PURE__*/
|
379
|
+
})), _stop56 || (_stop56 = /*#__PURE__*/React.createElement("stop", {
|
385
380
|
offset: 0.99,
|
386
381
|
stopColor: "#d7d7d7",
|
387
382
|
stopOpacity: 0.14
|
388
|
-
})), _stop57 || (_stop57 = /*#__PURE__*/
|
383
|
+
})), _stop57 || (_stop57 = /*#__PURE__*/React.createElement("stop", {
|
389
384
|
offset: 1,
|
390
385
|
stopColor: "#d0d0d0",
|
391
386
|
stopOpacity: 0
|
392
|
-
}))), /*#__PURE__*/
|
387
|
+
}))), /*#__PURE__*/React.createElement("linearGradient", {
|
393
388
|
id: "prefix__g_".concat(svgId),
|
394
389
|
x1: 51.09,
|
395
390
|
y1: 68.25,
|
396
391
|
x2: 51.22,
|
397
392
|
y2: 68.33,
|
398
393
|
xlinkHref: "#prefix__a_".concat(svgId)
|
399
|
-
}), /*#__PURE__*/
|
394
|
+
}), /*#__PURE__*/React.createElement("linearGradient", {
|
400
395
|
id: "prefix__h_".concat(svgId),
|
401
396
|
x1: 51.41,
|
402
397
|
y1: 68.32,
|
403
398
|
x2: 51.46,
|
404
399
|
y2: 68.35,
|
405
400
|
xlinkHref: "#prefix__a_".concat(svgId)
|
406
|
-
}), /*#__PURE__*/
|
401
|
+
}), /*#__PURE__*/React.createElement("linearGradient", {
|
407
402
|
id: "prefix__i_".concat(svgId),
|
408
403
|
x1: 33.94,
|
409
404
|
y1: 19.46,
|
410
405
|
x2: 42.79,
|
411
406
|
y2: 19.46,
|
412
407
|
gradientUnits: "userSpaceOnUse"
|
413
|
-
}, _stop58 || (_stop58 = /*#__PURE__*/
|
408
|
+
}, _stop58 || (_stop58 = /*#__PURE__*/React.createElement("stop", {
|
414
409
|
offset: 0,
|
415
410
|
stopColor: "#a4a4a4"
|
416
|
-
})), _stop59 || (_stop59 = /*#__PURE__*/
|
411
|
+
})), _stop59 || (_stop59 = /*#__PURE__*/React.createElement("stop", {
|
417
412
|
offset: 1,
|
418
413
|
stopColor: "#8c8c8c"
|
419
|
-
}))), /*#__PURE__*/
|
414
|
+
}))), /*#__PURE__*/React.createElement("linearGradient", {
|
420
415
|
id: "prefix__j_".concat(svgId),
|
421
416
|
x1: 35.3,
|
422
417
|
y1: 23.46,
|
423
418
|
x2: 38.85,
|
424
419
|
y2: 17.31,
|
425
420
|
gradientUnits: "userSpaceOnUse"
|
426
|
-
}, _stop60 || (_stop60 = /*#__PURE__*/
|
421
|
+
}, _stop60 || (_stop60 = /*#__PURE__*/React.createElement("stop", {
|
427
422
|
offset: 0,
|
428
423
|
stopColor: "#fff"
|
429
|
-
})), _stop61 || (_stop61 = /*#__PURE__*/
|
424
|
+
})), _stop61 || (_stop61 = /*#__PURE__*/React.createElement("stop", {
|
430
425
|
offset: 0.04,
|
431
426
|
stopColor: "#fdfdfd",
|
432
427
|
stopOpacity: 0.96
|
433
|
-
})), _stop62 || (_stop62 = /*#__PURE__*/
|
428
|
+
})), _stop62 || (_stop62 = /*#__PURE__*/React.createElement("stop", {
|
434
429
|
offset: 0.12,
|
435
430
|
stopColor: "#f7f7f7",
|
436
431
|
stopOpacity: 0.84
|
437
|
-
})), _stop63 || (_stop63 = /*#__PURE__*/
|
432
|
+
})), _stop63 || (_stop63 = /*#__PURE__*/React.createElement("stop", {
|
438
433
|
offset: 0.23,
|
439
434
|
stopColor: "#eee",
|
440
435
|
stopOpacity: 0.64
|
441
|
-
})), _stop64 || (_stop64 = /*#__PURE__*/
|
436
|
+
})), _stop64 || (_stop64 = /*#__PURE__*/React.createElement("stop", {
|
442
437
|
offset: 0.36,
|
443
438
|
stopColor: "#e2e2e2",
|
444
439
|
stopOpacity: 0.38
|
445
|
-
})), _stop65 || (_stop65 = /*#__PURE__*/
|
440
|
+
})), _stop65 || (_stop65 = /*#__PURE__*/React.createElement("stop", {
|
446
441
|
offset: 0.5,
|
447
442
|
stopColor: "#d2d2d2",
|
448
443
|
stopOpacity: 0.04
|
449
|
-
})), _stop66 || (_stop66 = /*#__PURE__*/
|
444
|
+
})), _stop66 || (_stop66 = /*#__PURE__*/React.createElement("stop", {
|
450
445
|
offset: 0.52,
|
451
446
|
stopColor: "#d0d0d0",
|
452
447
|
stopOpacity: 0
|
453
|
-
})))), _path3 || (_path3 = /*#__PURE__*/
|
448
|
+
})))), _path3 || (_path3 = /*#__PURE__*/React.createElement("path", {
|
454
449
|
fill: "none",
|
455
450
|
d: "M0 0h80v80H0z"
|
456
|
-
})), /*#__PURE__*/
|
451
|
+
})), /*#__PURE__*/React.createElement("path", {
|
457
452
|
fill: "url(#prefix__b_".concat(svgId, ")"),
|
458
453
|
d: "M51.59 78.34l-26.8-15.48 3.62-2.09 26.8 15.48-3.62 2.09z"
|
459
|
-
}), /*#__PURE__*/
|
454
|
+
}), /*#__PURE__*/React.createElement("path", {
|
460
455
|
d: "M45.47 30.38l6.58-3.76 3.12-1.85v.15a1.28 1.28 0 00-.17-.47L42.19 2.21c-.24-.42-.63-.65-.88-.51L28.47 9.12a.44.44 0 00-.18.4l13.88 3a1.38 1.38 0 00.62 1.07z",
|
461
456
|
fill: "url(#prefix__c_".concat(svgId, ")")
|
462
|
-
}), /*#__PURE__*/
|
457
|
+
}), /*#__PURE__*/React.createElement("path", {
|
463
458
|
d: "M55 66.29a.46.46 0 00.18-.41V25.06a1 1 0 000-.29l-3.12 1.85-6.58 3.76 6.06 37.92z",
|
464
459
|
fill: "url(#prefix__d_".concat(svgId, ")")
|
465
|
-
}), /*#__PURE__*/
|
460
|
+
}), /*#__PURE__*/React.createElement("path", {
|
466
461
|
d: "M51.53 26.47L38.69 4.23c-.25-.42-.64-.64-.88-.5L25 11.14a.43.43 0 00-.18.4v40.82a1.35 1.35 0 00.62 1.07l25.65 14.83c.34.2.62 0 .62-.36V27.08a1.33 1.33 0 00-.18-.61zM37.08 24a6.93 6.93 0 01-3.14-5.44c0-2 1.4-2.81 3.14-1.81a7 7 0 013.13 5.44c0 2.01-1.4 2.81-3.13 1.81z",
|
467
462
|
fill: "url(#prefix__e_".concat(svgId, ")")
|
468
|
-
}), /*#__PURE__*/
|
463
|
+
}), /*#__PURE__*/React.createElement("path", {
|
469
464
|
d: "M39.05 4a1.71 1.71 0 00-.64-.64l-.6.34a.3.3 0 01.16 0 1 1 0 01.72.55l12.84 22.22a1.33 1.33 0 01.18.61V67.9a.41.41 0 01-.19.4l.58-.34V27.08a1.75 1.75 0 00-.24-.82z",
|
470
465
|
fill: "url(#prefix__f_".concat(svgId, ")")
|
471
|
-
}), /*#__PURE__*/
|
466
|
+
}), /*#__PURE__*/React.createElement("path", {
|
472
467
|
d: "M51.28 68.33z",
|
473
468
|
fill: "url(#prefix__a_".concat(svgId, ")")
|
474
|
-
}), /*#__PURE__*/
|
469
|
+
}), /*#__PURE__*/React.createElement("path", {
|
475
470
|
d: "M51.23 68.32a.42.42 0 01-.14-.06.42.42 0 00.14.06z",
|
476
471
|
fill: "url(#prefix__g_".concat(svgId, ")")
|
477
|
-
}), /*#__PURE__*/
|
472
|
+
}), /*#__PURE__*/React.createElement("path", {
|
478
473
|
d: "M51.48 68.32h-.08z",
|
479
474
|
fill: "url(#prefix__h_".concat(svgId, ")")
|
480
|
-
}), /*#__PURE__*/
|
475
|
+
}), /*#__PURE__*/React.createElement("path", {
|
481
476
|
d: "M39.66 22.17a6.93 6.93 0 01-3.14-5.44 1.36 1.36 0 010-.21c-1.48-.56-2.6.27-2.6 2.05A6.93 6.93 0 0037.08 24c1.66 1 3 .24 3.11-1.6a3.49 3.49 0 01-.53-.23z",
|
482
477
|
fill: "url(#prefix__i_".concat(svgId, ")")
|
483
|
-
}), /*#__PURE__*/
|
478
|
+
}), /*#__PURE__*/React.createElement("path", {
|
484
479
|
d: "M35.67 16.33a2.88 2.88 0 011.41.43 7 7 0 013.13 5.44c0 1.42-.7 2.24-1.73 2.24a2.82 2.82 0 01-1.4-.43 6.93 6.93 0 01-3.14-5.44c0-1.42.7-2.24 1.73-2.24m0-.41c-1.3 0-2.15 1-2.15 2.65a7.3 7.3 0 003.35 5.8 3.23 3.23 0 001.61.48c1.3 0 2.15-1 2.15-2.65a7.29 7.29 0 00-3.35-5.8 3.2 3.2 0 00-1.61-.48z",
|
485
480
|
fill: "url(#prefix__j_".concat(svgId, ")")
|
486
481
|
})));
|
487
482
|
};
|
488
483
|
NoTagsIllustration.propTypes = {
|
489
|
-
alt: index
|
490
|
-
size: index
|
491
|
-
theme: index
|
484
|
+
alt: index.default.string.isRequired,
|
485
|
+
size: index.default.oneOf(['lg', 'sm']),
|
486
|
+
theme: index.default.oneOf(['light', 'dark'])
|
492
487
|
};
|
493
488
|
var NoTagsIllustration$1 = NoTagsIllustration;
|
494
489
|
|
495
490
|
exports.NoTagsIllustration = NoTagsIllustration;
|
496
|
-
exports
|
491
|
+
exports.default = NoTagsIllustration$1;
|