@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
@@ -7,8 +7,6 @@
|
|
7
7
|
|
8
8
|
'use strict';
|
9
9
|
|
10
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
11
|
-
|
12
10
|
var _rollupPluginBabelHelpers = require('../../_virtual/_rollupPluginBabelHelpers.js');
|
13
11
|
var icons = require('@carbon/react/icons');
|
14
12
|
var React = require('react');
|
@@ -17,11 +15,6 @@ var cx = require('classnames');
|
|
17
15
|
var devtools = require('../../global/js/utils/devtools.js');
|
18
16
|
var settings = require('../../settings.js');
|
19
17
|
|
20
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
21
|
-
|
22
|
-
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
23
|
-
var cx__default = /*#__PURE__*/_interopDefaultLegacy(cx);
|
24
|
-
|
25
18
|
var _excluded = ["kind", "theme", "size", "className", "iconDescription"];
|
26
19
|
var blockClass = "".concat(settings.pkg.prefix, "--status-icon");
|
27
20
|
var componentName = 'StatusIcon';
|
@@ -48,25 +41,25 @@ exports.StatusIcon = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
48
41
|
var icons$1 = {
|
49
42
|
fatal: {
|
50
43
|
sm: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
51
|
-
return /*#__PURE__*/
|
44
|
+
return /*#__PURE__*/React.createElement(icons.Misuse, _rollupPluginBabelHelpers.extends({
|
52
45
|
size: 16,
|
53
46
|
ref: forwardedRef
|
54
47
|
}, props));
|
55
48
|
}),
|
56
49
|
md: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
57
|
-
return /*#__PURE__*/
|
50
|
+
return /*#__PURE__*/React.createElement(icons.Misuse, _rollupPluginBabelHelpers.extends({
|
58
51
|
size: 20,
|
59
52
|
ref: forwardedRef
|
60
53
|
}, props));
|
61
54
|
}),
|
62
55
|
lg: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
63
|
-
return /*#__PURE__*/
|
56
|
+
return /*#__PURE__*/React.createElement(icons.Misuse, _rollupPluginBabelHelpers.extends({
|
64
57
|
size: 24,
|
65
58
|
ref: forwardedRef
|
66
59
|
}, props));
|
67
60
|
}),
|
68
61
|
xl: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
69
|
-
return /*#__PURE__*/
|
62
|
+
return /*#__PURE__*/React.createElement(icons.Misuse, _rollupPluginBabelHelpers.extends({
|
70
63
|
size: 32,
|
71
64
|
ref: forwardedRef
|
72
65
|
}, props));
|
@@ -74,25 +67,25 @@ exports.StatusIcon = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
74
67
|
},
|
75
68
|
critical: {
|
76
69
|
sm: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
77
|
-
return /*#__PURE__*/
|
70
|
+
return /*#__PURE__*/React.createElement(icons.ErrorFilled, _rollupPluginBabelHelpers.extends({
|
78
71
|
size: 16,
|
79
72
|
ref: forwardedRef
|
80
73
|
}, props));
|
81
74
|
}),
|
82
75
|
md: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
83
|
-
return /*#__PURE__*/
|
76
|
+
return /*#__PURE__*/React.createElement(icons.ErrorFilled, _rollupPluginBabelHelpers.extends({
|
84
77
|
size: 20,
|
85
78
|
ref: forwardedRef
|
86
79
|
}, props));
|
87
80
|
}),
|
88
81
|
lg: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
89
|
-
return /*#__PURE__*/
|
82
|
+
return /*#__PURE__*/React.createElement(icons.ErrorFilled, _rollupPluginBabelHelpers.extends({
|
90
83
|
size: 24,
|
91
84
|
ref: forwardedRef
|
92
85
|
}, props));
|
93
86
|
}),
|
94
87
|
xl: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
95
|
-
return /*#__PURE__*/
|
88
|
+
return /*#__PURE__*/React.createElement(icons.ErrorFilled, _rollupPluginBabelHelpers.extends({
|
96
89
|
size: 32,
|
97
90
|
ref: forwardedRef
|
98
91
|
}, props));
|
@@ -100,25 +93,25 @@ exports.StatusIcon = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
100
93
|
},
|
101
94
|
'major-warning': {
|
102
95
|
sm: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
103
|
-
return /*#__PURE__*/
|
96
|
+
return /*#__PURE__*/React.createElement(icons.WarningAltInvertedFilled, _rollupPluginBabelHelpers.extends({
|
104
97
|
size: 16,
|
105
98
|
ref: forwardedRef
|
106
99
|
}, props));
|
107
100
|
}),
|
108
101
|
md: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
109
|
-
return /*#__PURE__*/
|
102
|
+
return /*#__PURE__*/React.createElement(icons.WarningAltInvertedFilled, _rollupPluginBabelHelpers.extends({
|
110
103
|
size: 20,
|
111
104
|
ref: forwardedRef
|
112
105
|
}, props));
|
113
106
|
}),
|
114
107
|
lg: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
115
|
-
return /*#__PURE__*/
|
108
|
+
return /*#__PURE__*/React.createElement(icons.WarningAltInvertedFilled, _rollupPluginBabelHelpers.extends({
|
116
109
|
size: 24,
|
117
110
|
ref: forwardedRef
|
118
111
|
}, props));
|
119
112
|
}),
|
120
113
|
xl: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
121
|
-
return /*#__PURE__*/
|
114
|
+
return /*#__PURE__*/React.createElement(icons.WarningAltInvertedFilled, _rollupPluginBabelHelpers.extends({
|
122
115
|
size: 32,
|
123
116
|
ref: forwardedRef
|
124
117
|
}, props));
|
@@ -126,25 +119,25 @@ exports.StatusIcon = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
126
119
|
},
|
127
120
|
'minor-warning': {
|
128
121
|
sm: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
129
|
-
return /*#__PURE__*/
|
122
|
+
return /*#__PURE__*/React.createElement(icons.WarningAltFilled, _rollupPluginBabelHelpers.extends({
|
130
123
|
size: 16,
|
131
124
|
ref: forwardedRef
|
132
125
|
}, props));
|
133
126
|
}),
|
134
127
|
md: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
135
|
-
return /*#__PURE__*/
|
128
|
+
return /*#__PURE__*/React.createElement(icons.WarningAltFilled, _rollupPluginBabelHelpers.extends({
|
136
129
|
size: 20,
|
137
130
|
ref: forwardedRef
|
138
131
|
}, props));
|
139
132
|
}),
|
140
133
|
lg: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
141
|
-
return /*#__PURE__*/
|
134
|
+
return /*#__PURE__*/React.createElement(icons.WarningAltFilled, _rollupPluginBabelHelpers.extends({
|
142
135
|
size: 24,
|
143
136
|
ref: forwardedRef
|
144
137
|
}, props));
|
145
138
|
}),
|
146
139
|
xl: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
147
|
-
return /*#__PURE__*/
|
140
|
+
return /*#__PURE__*/React.createElement(icons.WarningAltFilled, _rollupPluginBabelHelpers.extends({
|
148
141
|
size: 32,
|
149
142
|
ref: forwardedRef
|
150
143
|
}, props));
|
@@ -152,25 +145,25 @@ exports.StatusIcon = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
152
145
|
},
|
153
146
|
undefined: {
|
154
147
|
sm: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
155
|
-
return /*#__PURE__*/
|
148
|
+
return /*#__PURE__*/React.createElement(icons.UndefinedFilled, _rollupPluginBabelHelpers.extends({
|
156
149
|
size: 16,
|
157
150
|
ref: forwardedRef
|
158
151
|
}, props));
|
159
152
|
}),
|
160
153
|
md: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
161
|
-
return /*#__PURE__*/
|
154
|
+
return /*#__PURE__*/React.createElement(icons.UndefinedFilled, _rollupPluginBabelHelpers.extends({
|
162
155
|
size: 20,
|
163
156
|
ref: forwardedRef
|
164
157
|
}, props));
|
165
158
|
}),
|
166
159
|
lg: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
167
|
-
return /*#__PURE__*/
|
160
|
+
return /*#__PURE__*/React.createElement(icons.UndefinedFilled, _rollupPluginBabelHelpers.extends({
|
168
161
|
size: 24,
|
169
162
|
ref: forwardedRef
|
170
163
|
}, props));
|
171
164
|
}),
|
172
165
|
xl: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
173
|
-
return /*#__PURE__*/
|
166
|
+
return /*#__PURE__*/React.createElement(icons.UndefinedFilled, _rollupPluginBabelHelpers.extends({
|
174
167
|
size: 32,
|
175
168
|
ref: forwardedRef
|
176
169
|
}, props));
|
@@ -178,25 +171,25 @@ exports.StatusIcon = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
178
171
|
},
|
179
172
|
unknown: {
|
180
173
|
sm: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
181
|
-
return /*#__PURE__*/
|
174
|
+
return /*#__PURE__*/React.createElement(icons.UnknownFilled, _rollupPluginBabelHelpers.extends({
|
182
175
|
size: 16,
|
183
176
|
ref: forwardedRef
|
184
177
|
}, props));
|
185
178
|
}),
|
186
179
|
md: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
187
|
-
return /*#__PURE__*/
|
180
|
+
return /*#__PURE__*/React.createElement(icons.UnknownFilled, _rollupPluginBabelHelpers.extends({
|
188
181
|
size: 20,
|
189
182
|
ref: forwardedRef
|
190
183
|
}, props));
|
191
184
|
}),
|
192
185
|
lg: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
193
|
-
return /*#__PURE__*/
|
186
|
+
return /*#__PURE__*/React.createElement(icons.UnknownFilled, _rollupPluginBabelHelpers.extends({
|
194
187
|
size: 24,
|
195
188
|
ref: forwardedRef
|
196
189
|
}, props));
|
197
190
|
}),
|
198
191
|
xl: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
199
|
-
return /*#__PURE__*/
|
192
|
+
return /*#__PURE__*/React.createElement(icons.UnknownFilled, _rollupPluginBabelHelpers.extends({
|
200
193
|
size: 32,
|
201
194
|
ref: forwardedRef
|
202
195
|
}, props));
|
@@ -204,25 +197,25 @@ exports.StatusIcon = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
204
197
|
},
|
205
198
|
normal: {
|
206
199
|
sm: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
207
|
-
return /*#__PURE__*/
|
200
|
+
return /*#__PURE__*/React.createElement(icons.CheckmarkFilled, _rollupPluginBabelHelpers.extends({
|
208
201
|
size: 16,
|
209
202
|
ref: forwardedRef
|
210
203
|
}, props));
|
211
204
|
}),
|
212
205
|
md: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
213
|
-
return /*#__PURE__*/
|
206
|
+
return /*#__PURE__*/React.createElement(icons.CheckmarkFilled, _rollupPluginBabelHelpers.extends({
|
214
207
|
size: 20,
|
215
208
|
ref: forwardedRef
|
216
209
|
}, props));
|
217
210
|
}),
|
218
211
|
lg: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
219
|
-
return /*#__PURE__*/
|
212
|
+
return /*#__PURE__*/React.createElement(icons.CheckmarkFilled, _rollupPluginBabelHelpers.extends({
|
220
213
|
size: 24,
|
221
214
|
ref: forwardedRef
|
222
215
|
}, props));
|
223
216
|
}),
|
224
217
|
xl: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
225
|
-
return /*#__PURE__*/
|
218
|
+
return /*#__PURE__*/React.createElement(icons.CheckmarkFilled, _rollupPluginBabelHelpers.extends({
|
226
219
|
size: 32,
|
227
220
|
ref: forwardedRef
|
228
221
|
}, props));
|
@@ -230,25 +223,25 @@ exports.StatusIcon = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
230
223
|
},
|
231
224
|
info: {
|
232
225
|
sm: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
233
|
-
return /*#__PURE__*/
|
226
|
+
return /*#__PURE__*/React.createElement(icons.InformationSquareFilled, _rollupPluginBabelHelpers.extends({
|
234
227
|
size: 16,
|
235
228
|
ref: forwardedRef
|
236
229
|
}, props));
|
237
230
|
}),
|
238
231
|
md: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
239
|
-
return /*#__PURE__*/
|
232
|
+
return /*#__PURE__*/React.createElement(icons.InformationSquareFilled, _rollupPluginBabelHelpers.extends({
|
240
233
|
size: 20,
|
241
234
|
ref: forwardedRef
|
242
235
|
}, props));
|
243
236
|
}),
|
244
237
|
lg: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
245
|
-
return /*#__PURE__*/
|
238
|
+
return /*#__PURE__*/React.createElement(icons.InformationSquareFilled, _rollupPluginBabelHelpers.extends({
|
246
239
|
size: 24,
|
247
240
|
ref: forwardedRef
|
248
241
|
}, props));
|
249
242
|
}),
|
250
243
|
xl: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
251
|
-
return /*#__PURE__*/
|
244
|
+
return /*#__PURE__*/React.createElement(icons.InformationSquareFilled, _rollupPluginBabelHelpers.extends({
|
252
245
|
size: 32,
|
253
246
|
ref: forwardedRef
|
254
247
|
}, props));
|
@@ -256,25 +249,25 @@ exports.StatusIcon = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
256
249
|
},
|
257
250
|
'in-progress': {
|
258
251
|
sm: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
259
|
-
return /*#__PURE__*/
|
252
|
+
return /*#__PURE__*/React.createElement(icons.InProgress, _rollupPluginBabelHelpers.extends({
|
260
253
|
size: 16,
|
261
254
|
ref: forwardedRef
|
262
255
|
}, props));
|
263
256
|
}),
|
264
257
|
md: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
265
|
-
return /*#__PURE__*/
|
258
|
+
return /*#__PURE__*/React.createElement(icons.InProgress, _rollupPluginBabelHelpers.extends({
|
266
259
|
size: 20,
|
267
260
|
ref: forwardedRef
|
268
261
|
}, props));
|
269
262
|
}),
|
270
263
|
lg: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
271
|
-
return /*#__PURE__*/
|
264
|
+
return /*#__PURE__*/React.createElement(icons.InProgress, _rollupPluginBabelHelpers.extends({
|
272
265
|
size: 24,
|
273
266
|
ref: forwardedRef
|
274
267
|
}, props));
|
275
268
|
}),
|
276
269
|
xl: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
277
|
-
return /*#__PURE__*/
|
270
|
+
return /*#__PURE__*/React.createElement(icons.InProgress, _rollupPluginBabelHelpers.extends({
|
278
271
|
size: 32,
|
279
272
|
ref: forwardedRef
|
280
273
|
}, props));
|
@@ -282,25 +275,25 @@ exports.StatusIcon = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
282
275
|
},
|
283
276
|
running: {
|
284
277
|
sm: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
285
|
-
return /*#__PURE__*/
|
278
|
+
return /*#__PURE__*/React.createElement(icons.CheckmarkOutline, _rollupPluginBabelHelpers.extends({
|
286
279
|
size: 16,
|
287
280
|
ref: forwardedRef
|
288
281
|
}, props));
|
289
282
|
}),
|
290
283
|
md: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
291
|
-
return /*#__PURE__*/
|
284
|
+
return /*#__PURE__*/React.createElement(icons.CheckmarkOutline, _rollupPluginBabelHelpers.extends({
|
292
285
|
size: 20,
|
293
286
|
ref: forwardedRef
|
294
287
|
}, props));
|
295
288
|
}),
|
296
289
|
lg: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
297
|
-
return /*#__PURE__*/
|
290
|
+
return /*#__PURE__*/React.createElement(icons.CheckmarkOutline, _rollupPluginBabelHelpers.extends({
|
298
291
|
size: 24,
|
299
292
|
ref: forwardedRef
|
300
293
|
}, props));
|
301
294
|
}),
|
302
295
|
xl: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
303
|
-
return /*#__PURE__*/
|
296
|
+
return /*#__PURE__*/React.createElement(icons.CheckmarkOutline, _rollupPluginBabelHelpers.extends({
|
304
297
|
size: 32,
|
305
298
|
ref: forwardedRef
|
306
299
|
}, props));
|
@@ -308,25 +301,25 @@ exports.StatusIcon = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
308
301
|
},
|
309
302
|
pending: {
|
310
303
|
sm: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
311
|
-
return /*#__PURE__*/
|
304
|
+
return /*#__PURE__*/React.createElement(icons.Pending, _rollupPluginBabelHelpers.extends({
|
312
305
|
size: 16,
|
313
306
|
ref: forwardedRef
|
314
307
|
}, props));
|
315
308
|
}),
|
316
309
|
md: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
317
|
-
return /*#__PURE__*/
|
310
|
+
return /*#__PURE__*/React.createElement(icons.Pending, _rollupPluginBabelHelpers.extends({
|
318
311
|
size: 20,
|
319
312
|
ref: forwardedRef
|
320
313
|
}, props));
|
321
314
|
}),
|
322
315
|
lg: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
323
|
-
return /*#__PURE__*/
|
316
|
+
return /*#__PURE__*/React.createElement(icons.Pending, _rollupPluginBabelHelpers.extends({
|
324
317
|
size: 24,
|
325
318
|
ref: forwardedRef
|
326
319
|
}, props));
|
327
320
|
}),
|
328
321
|
xl: /*#__PURE__*/React.forwardRef(function (props, _ref) {
|
329
|
-
return /*#__PURE__*/
|
322
|
+
return /*#__PURE__*/React.createElement(icons.Pending, _rollupPluginBabelHelpers.extends({
|
330
323
|
size: 32,
|
331
324
|
ref: forwardedRef
|
332
325
|
}, props));
|
@@ -334,11 +327,11 @@ exports.StatusIcon = /*#__PURE__*/React.forwardRef(function (_ref2, ref) {
|
|
334
327
|
}
|
335
328
|
};
|
336
329
|
var IconComponent = (_icons$kind = icons$1[kind]) === null || _icons$kind === void 0 ? void 0 : _icons$kind[size];
|
337
|
-
var classNames =
|
338
|
-
return IconComponent && /*#__PURE__*/
|
330
|
+
var classNames = cx(className, blockClass, "".concat(blockClass, "--").concat(theme), _rollupPluginBabelHelpers.defineProperty({}, "".concat(blockClass, "--").concat(theme, "-").concat(kind), kind));
|
331
|
+
return IconComponent && /*#__PURE__*/React.createElement(IconComponent, _rollupPluginBabelHelpers.extends({}, rest, {
|
339
332
|
className: classNames,
|
340
333
|
ref: ref
|
341
|
-
}, devtools.getDevtoolsProps(componentName)), /*#__PURE__*/
|
334
|
+
}, devtools.getDevtoolsProps(componentName)), /*#__PURE__*/React.createElement("title", null, iconDescription));
|
342
335
|
});
|
343
336
|
exports.StatusIcon = settings.pkg.checkComponentEnabled(exports.StatusIcon, componentName);
|
344
337
|
exports.StatusIcon.displayName = componentName;
|
@@ -346,21 +339,21 @@ exports.StatusIcon.propTypes = {
|
|
346
339
|
/**
|
347
340
|
* Provide an optional class to be applied to the modal root node.
|
348
341
|
*/
|
349
|
-
className: index
|
342
|
+
className: index.default.string,
|
350
343
|
/**
|
351
344
|
* A required prop that provides a title element and tooltip for the icon for accessibility purposes
|
352
345
|
*/
|
353
|
-
iconDescription: index
|
346
|
+
iconDescription: index.default.string.isRequired,
|
354
347
|
/**
|
355
348
|
* A required prop that displays the respective icon associated with the status
|
356
349
|
*/
|
357
|
-
kind: index
|
350
|
+
kind: index.default.oneOf(['fatal', 'critical', 'major-warning', 'minor-warning', 'undefined', 'unknown', 'normal', 'info', 'in-progress', 'running', 'pending']).isRequired,
|
358
351
|
/**
|
359
352
|
* A required prop that displays the size of the icon associate with the status
|
360
353
|
*/
|
361
|
-
size: index
|
354
|
+
size: index.default.oneOf(['sm', 'md', 'lg', 'xl']).isRequired,
|
362
355
|
/**
|
363
356
|
* A required prop that displays the theme of the icon associated with the status
|
364
357
|
*/
|
365
|
-
theme: index
|
358
|
+
theme: index.default.oneOf(['light', 'dark']).isRequired
|
366
359
|
};
|
@@ -7,8 +7,6 @@
|
|
7
7
|
|
8
8
|
'use strict';
|
9
9
|
|
10
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
11
|
-
|
12
10
|
var _rollupPluginBabelHelpers = require('../../_virtual/_rollupPluginBabelHelpers.js');
|
13
11
|
var React = require('react');
|
14
12
|
var index = require('../../node_modules/prop-types/index.js');
|
@@ -18,11 +16,6 @@ var settings = require('../../settings.js');
|
|
18
16
|
var react = require('@carbon/react');
|
19
17
|
var icons = require('@carbon/react/icons');
|
20
18
|
|
21
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
22
|
-
|
23
|
-
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
24
|
-
var cx__default = /*#__PURE__*/_interopDefaultLegacy(cx);
|
25
|
-
|
26
19
|
var _Restart;
|
27
20
|
var _excluded = ["children", "className", "onRetry", "retryLabel", "showRetry", "title"];
|
28
21
|
|
@@ -37,7 +30,7 @@ var defaults = {
|
|
37
30
|
/**
|
38
31
|
* A list of icon/description pairs used to show multiple states of progress.
|
39
32
|
*/
|
40
|
-
exports.StatusIndicator = /*#__PURE__*/
|
33
|
+
exports.StatusIndicator = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
41
34
|
var children = _ref.children,
|
42
35
|
className = _ref.className,
|
43
36
|
onRetry = _ref.onRetry,
|
@@ -47,20 +40,20 @@ exports.StatusIndicator = /*#__PURE__*/React__default["default"].forwardRef(func
|
|
47
40
|
showRetry = _ref$showRetry === void 0 ? defaults.showRetry : _ref$showRetry,
|
48
41
|
title = _ref.title,
|
49
42
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
|
50
|
-
return /*#__PURE__*/
|
51
|
-
className:
|
43
|
+
return /*#__PURE__*/React.createElement("div", _rollupPluginBabelHelpers.extends({}, rest, {
|
44
|
+
className: cx(blockClass, className),
|
52
45
|
ref: ref
|
53
|
-
}, devtools.getDevtoolsProps(componentName)), title && /*#__PURE__*/
|
46
|
+
}, devtools.getDevtoolsProps(componentName)), title && /*#__PURE__*/React.createElement("h1", {
|
54
47
|
className: "".concat(blockClass, "__title")
|
55
|
-
}, title), /*#__PURE__*/
|
48
|
+
}, title), /*#__PURE__*/React.createElement("ul", {
|
56
49
|
className: "".concat(blockClass, "__list")
|
57
|
-
}, children), showRetry && onRetry && retryLabel && /*#__PURE__*/
|
50
|
+
}, children), showRetry && onRetry && retryLabel && /*#__PURE__*/React.createElement(react.Button, {
|
58
51
|
className: "".concat(blockClass, "__button"),
|
59
52
|
kind: "ghost",
|
60
53
|
onClick: onRetry,
|
61
54
|
onKeyUp: onRetry,
|
62
55
|
renderIcon: function renderIcon() {
|
63
|
-
return _Restart || (_Restart = /*#__PURE__*/
|
56
|
+
return _Restart || (_Restart = /*#__PURE__*/React.createElement(icons.Restart, {
|
64
57
|
size: 16
|
65
58
|
}));
|
66
59
|
}
|
@@ -81,27 +74,27 @@ exports.StatusIndicator.propTypes = {
|
|
81
74
|
/**
|
82
75
|
* Provide the contents of the StatusIndicator.
|
83
76
|
*/
|
84
|
-
children: index
|
77
|
+
children: index.default.node.isRequired,
|
85
78
|
/**
|
86
79
|
* Provide an optional class to be applied to the containing node.
|
87
80
|
*/
|
88
|
-
className: index
|
81
|
+
className: index.default.string,
|
89
82
|
/**
|
90
83
|
* Optional callback function for the retry button.
|
91
84
|
*/
|
92
|
-
onRetry: index
|
85
|
+
onRetry: index.default.func,
|
93
86
|
/**
|
94
87
|
* The text for the retry button.
|
95
88
|
*/
|
96
|
-
retryLabel: index
|
89
|
+
retryLabel: index.default.string,
|
97
90
|
/**
|
98
91
|
* Set to `true` to show the retry button.
|
99
92
|
*
|
100
93
|
* `retryLabel` and `onRetry` must also be defined.
|
101
94
|
*/
|
102
|
-
showRetry: index
|
95
|
+
showRetry: index.default.bool,
|
103
96
|
/**
|
104
97
|
* The title that appears at the top of the list.
|
105
98
|
*/
|
106
|
-
title: index
|
99
|
+
title: index.default.node
|
107
100
|
};
|
@@ -7,8 +7,6 @@
|
|
7
7
|
|
8
8
|
'use strict';
|
9
9
|
|
10
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
11
|
-
|
12
10
|
var _rollupPluginBabelHelpers = require('../../_virtual/_rollupPluginBabelHelpers.js');
|
13
11
|
var React = require('react');
|
14
12
|
var index = require('../../node_modules/prop-types/index.js');
|
@@ -18,11 +16,6 @@ var settings = require('../../settings.js');
|
|
18
16
|
var react = require('@carbon/react');
|
19
17
|
var icons = require('@carbon/react/icons');
|
20
18
|
|
21
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
22
|
-
|
23
|
-
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
24
|
-
var cx__default = /*#__PURE__*/_interopDefaultLegacy(cx);
|
25
|
-
|
26
19
|
var _CircleStroke, _InlineLoading, _ErrorOutline, _CheckmarkOutline;
|
27
20
|
var _excluded = ["className", "description", "errorMessage", "status"];
|
28
21
|
|
@@ -36,30 +29,30 @@ var defaults = {
|
|
36
29
|
/**
|
37
30
|
* An icon/description pair that describes one step of the `StatusIndicator`.
|
38
31
|
*/
|
39
|
-
exports.StatusIndicatorStep = /*#__PURE__*/
|
32
|
+
exports.StatusIndicatorStep = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
40
33
|
var className = _ref.className,
|
41
34
|
description = _ref.description,
|
42
35
|
errorMessage = _ref.errorMessage,
|
43
36
|
_ref$status = _ref.status,
|
44
37
|
status = _ref$status === void 0 ? defaults.status : _ref$status,
|
45
38
|
rest = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
|
46
|
-
return /*#__PURE__*/
|
47
|
-
className:
|
39
|
+
return /*#__PURE__*/React.createElement("li", _rollupPluginBabelHelpers.extends({}, rest, {
|
40
|
+
className: cx(blockClass, className, "".concat(blockClass, "--").concat(status)),
|
48
41
|
ref: ref
|
49
|
-
}, devtools.getDevtoolsProps(componentName)), /*#__PURE__*/
|
42
|
+
}, devtools.getDevtoolsProps(componentName)), /*#__PURE__*/React.createElement("div", {
|
50
43
|
className: "".concat(blockClass, "__details")
|
51
|
-
}, /*#__PURE__*/
|
44
|
+
}, /*#__PURE__*/React.createElement("div", {
|
52
45
|
className: "".concat(blockClass, "__icon")
|
53
|
-
}, status === 'inactive' && (_CircleStroke || (_CircleStroke = /*#__PURE__*/
|
46
|
+
}, status === 'inactive' && (_CircleStroke || (_CircleStroke = /*#__PURE__*/React.createElement(icons.CircleStroke, {
|
54
47
|
size: 16,
|
55
48
|
viewBox: "1 1 14 14"
|
56
|
-
}))), status === 'active' && (_InlineLoading || (_InlineLoading = /*#__PURE__*/
|
49
|
+
}))), status === 'active' && (_InlineLoading || (_InlineLoading = /*#__PURE__*/React.createElement(react.InlineLoading, null))), status === 'error' && (_ErrorOutline || (_ErrorOutline = /*#__PURE__*/React.createElement(icons.ErrorOutline, {
|
57
50
|
size: 16
|
58
|
-
}))), status === 'finished' && (_CheckmarkOutline || (_CheckmarkOutline = /*#__PURE__*/
|
51
|
+
}))), status === 'finished' && (_CheckmarkOutline || (_CheckmarkOutline = /*#__PURE__*/React.createElement(icons.CheckmarkOutline, {
|
59
52
|
size: 16
|
60
|
-
})))), /*#__PURE__*/
|
53
|
+
})))), /*#__PURE__*/React.createElement("div", {
|
61
54
|
className: "".concat(blockClass, "__text")
|
62
|
-
}, description)), status === 'error' && errorMessage && /*#__PURE__*/
|
55
|
+
}, description)), status === 'error' && errorMessage && /*#__PURE__*/React.createElement("div", {
|
63
56
|
className: "".concat(blockClass, "__error-message")
|
64
57
|
}, errorMessage));
|
65
58
|
});
|
@@ -78,17 +71,17 @@ exports.StatusIndicatorStep.propTypes = {
|
|
78
71
|
/**
|
79
72
|
* Provide an optional class to be applied to the containing node.
|
80
73
|
*/
|
81
|
-
className: index
|
74
|
+
className: index.default.string,
|
82
75
|
/**
|
83
76
|
* The text associated with the icon.
|
84
77
|
*/
|
85
|
-
description: index
|
78
|
+
description: index.default.string.isRequired,
|
86
79
|
/**
|
87
80
|
* This message will appear below the description if the `status` is "error".
|
88
81
|
*/
|
89
|
-
errorMessage: index
|
82
|
+
errorMessage: index.default.string,
|
90
83
|
/**
|
91
84
|
* Each `status` represents a different icon..
|
92
85
|
*/
|
93
|
-
status: index
|
86
|
+
status: index.default.oneOf(['inactive', 'active', 'error', 'finished']).isRequired
|
94
87
|
};
|
@@ -7,8 +7,6 @@
|
|
7
7
|
|
8
8
|
'use strict';
|
9
9
|
|
10
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
11
|
-
|
12
10
|
var _rollupPluginBabelHelpers = require('../../_virtual/_rollupPluginBabelHelpers.js');
|
13
11
|
var React = require('react');
|
14
12
|
var lottie = require('lottie-web');
|
@@ -18,13 +16,6 @@ var cx = require('classnames');
|
|
18
16
|
var devtools = require('../../global/js/utils/devtools.js');
|
19
17
|
var settings = require('../../settings.js');
|
20
18
|
|
21
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
22
|
-
|
23
|
-
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
24
|
-
var lottie__default = /*#__PURE__*/_interopDefaultLegacy(lottie);
|
25
|
-
var clamp__default = /*#__PURE__*/_interopDefaultLegacy(clamp);
|
26
|
-
var cx__default = /*#__PURE__*/_interopDefaultLegacy(cx);
|
27
|
-
|
28
19
|
var _excluded = ["className", "playStep", "filePaths"];
|
29
20
|
|
30
21
|
// The block part of our conventional BEM class names (blockClass__E--M).
|
@@ -40,7 +31,7 @@ var defaults = {
|
|
40
31
|
/**
|
41
32
|
* The SteppedAnimatedMedia is an Onboarding internal component and is not intended for general use.
|
42
33
|
*/
|
43
|
-
var SteppedAnimatedMedia = /*#__PURE__*/
|
34
|
+
var SteppedAnimatedMedia = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
44
35
|
var className = _ref.className,
|
45
36
|
_ref$playStep = _ref.playStep,
|
46
37
|
playStep = _ref$playStep === void 0 ? defaults.playStep : _ref$playStep,
|
@@ -103,10 +94,10 @@ var SteppedAnimatedMedia = /*#__PURE__*/React__default["default"].forwardRef(fun
|
|
103
94
|
if (localRefValue) {
|
104
95
|
var _animRef$current, _animRef$current2, _animRef$current3;
|
105
96
|
(_animRef$current = animRef.current) === null || _animRef$current === void 0 || _animRef$current.destroy();
|
106
|
-
animRef.current =
|
97
|
+
animRef.current = lottie.loadAnimation({
|
107
98
|
container: localRefValue,
|
108
99
|
renderer: 'svg',
|
109
|
-
animationData: jsonData[
|
100
|
+
animationData: jsonData[clamp(playStep, 0, jsonData.length - 1)],
|
110
101
|
loop: false,
|
111
102
|
autoplay: false,
|
112
103
|
rendererSettings: {
|
@@ -123,8 +114,8 @@ var SteppedAnimatedMedia = /*#__PURE__*/React__default["default"].forwardRef(fun
|
|
123
114
|
if (!jsonData) {
|
124
115
|
return null;
|
125
116
|
}
|
126
|
-
return /*#__PURE__*/
|
127
|
-
className:
|
117
|
+
return /*#__PURE__*/React.createElement("div", _rollupPluginBabelHelpers.extends({}, rest, {
|
118
|
+
className: cx(blockClass, className),
|
128
119
|
role: "img",
|
129
120
|
ref: localRef
|
130
121
|
}, devtools.getDevtoolsProps(componentName)));
|
@@ -134,16 +125,16 @@ SteppedAnimatedMedia.propTypes = {
|
|
134
125
|
/**
|
135
126
|
* Optional class name for this component.
|
136
127
|
*/
|
137
|
-
className: index
|
128
|
+
className: index.default.string,
|
138
129
|
/**
|
139
130
|
* The file path(s) to json formatted Lottie animation files.
|
140
131
|
*/
|
141
132
|
/**@ts-ignore*/
|
142
|
-
filePaths: index
|
133
|
+
filePaths: index.default.arrayOf(index.default.string).isRequired,
|
143
134
|
/**
|
144
135
|
* Which animation step from the filePaths array to play.
|
145
136
|
*/
|
146
|
-
playStep: index
|
137
|
+
playStep: index.default.number
|
147
138
|
};
|
148
139
|
|
149
140
|
exports.SteppedAnimatedMedia = SteppedAnimatedMedia;
|