@carbon/ibm-products 2.50.0 → 2.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/css/index-full-carbon.css +56 -29
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +1 -1
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon-released-only.css +3 -10
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css +1 -1
- package/css/index-without-carbon-released-only.min.css.map +1 -1
- package/css/index-without-carbon.css +3 -10
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +1 -1
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +34 -28
- package/css/index.css.map +1 -1
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/es/components/ActionBar/ActionBarOverflowItems.js +5 -0
- package/es/components/AddSelect/AddSelectBody.js +1 -1
- package/es/components/BigNumbers/BigNumbers.js +1 -1
- package/es/components/Coachmark/utils/enums.js +1 -0
- package/es/components/ConditionBuilder/ConditionBuilder.js +26 -20
- package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +6 -2
- package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +11 -8
- package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +44 -24
- package/es/components/CreateFullPage/CreateFullPage.d.ts +4 -2
- package/es/components/CreateFullPage/CreateFullPage.js +10 -3
- package/es/components/CreateFullPage/CreateFullPageStep.d.ts +3 -1
- package/es/components/CreateFullPage/CreateFullPageStep.js +5 -2
- package/es/components/Datagrid/Datagrid/Datagrid.d.ts +1 -1
- package/es/components/Datagrid/Datagrid/Datagrid.js +1 -1
- package/es/components/Datagrid/Datagrid/DatagridToolbar.js +12 -1
- package/es/components/Datagrid/Datagrid/DraggableElement.js +1 -0
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +3 -8
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +15 -13
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +17 -2
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +13 -2
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +1 -12
- package/es/components/Datagrid/types/index.d.ts +4 -0
- package/es/components/Datagrid/useSelectRows.js +40 -19
- package/es/components/EditInPlace/EditInPlace.js +0 -3
- package/es/components/ExportModal/ExportModal.js +18 -5
- package/es/components/NotificationsPanel/NotificationsPanel.d.ts +5 -1
- package/es/components/NotificationsPanel/NotificationsPanel.js +14 -1
- package/es/components/OptionsTile/OptionsTile.d.ts +1 -1
- package/es/components/OptionsTile/OptionsTile.js +0 -1
- package/es/components/ProductiveCard/ProductiveCard.d.ts +4 -0
- package/es/components/ProductiveCard/ProductiveCard.js +4 -0
- package/es/components/ScrollGradient/ScrollGradient.js +1 -1
- package/es/components/SimpleHeader/SimpleHeader.d.ts +3 -1
- package/es/components/SimpleHeader/SimpleHeader.js +9 -2
- package/es/components/StringFormatter/StringFormatter.js +1 -1
- package/es/components/TagSet/TagSet.js +5 -0
- package/es/components/TagSet/TagSetOverflow.d.ts +4 -0
- package/es/components/TagSet/TagSetOverflow.js +13 -6
- package/es/components/Tearsheet/TearsheetShell.js +9 -2
- package/es/components/UserProfileImage/UserProfileImage.d.ts +1 -1
- package/es/components/UserProfileImage/UserProfileImage.js +1 -1
- package/es/global/js/utils/Wrap.d.ts +4 -0
- package/es/global/js/utils/Wrap.js +9 -3
- package/es/global/js/utils/devtools.js +1 -2
- package/es/node_modules/@carbon/icon-helpers/es/index.js +3 -3
- package/lib/_virtual/_commonjsHelpers.js +0 -2
- package/lib/_virtual/_rollupPluginBabelHelpers.js +2 -4
- package/lib/_virtual/index.js +0 -2
- package/lib/components/APIKeyModal/APIKeyDownloader.js +8 -14
- package/lib/components/APIKeyModal/APIKeyModal.js +70 -77
- package/lib/components/AboutModal/AboutModal.js +29 -36
- package/lib/components/ActionBar/ActionBar.js +26 -33
- package/lib/components/ActionBar/ActionBarItem.js +9 -16
- package/lib/components/ActionBar/ActionBarOverflowItems.js +23 -25
- package/lib/components/ActionSet/ActionSet.js +17 -24
- package/lib/components/AddSelect/AddSelect.js +62 -68
- package/lib/components/AddSelect/AddSelectBody.js +82 -89
- package/lib/components/AddSelect/AddSelectBreadcrumbs.js +6 -13
- package/lib/components/AddSelect/AddSelectColumn.js +29 -35
- package/lib/components/AddSelect/AddSelectFilter.js +30 -37
- package/lib/components/AddSelect/AddSelectFormControl.js +15 -21
- package/lib/components/AddSelect/AddSelectList.js +9 -16
- package/lib/components/AddSelect/AddSelectMetaPanel.js +16 -22
- package/lib/components/AddSelect/AddSelectRow.js +32 -39
- package/lib/components/AddSelect/AddSelectSidebar.js +29 -35
- package/lib/components/AddSelect/AddSelectSort.js +10 -16
- package/lib/components/AddSelect/add-select-utils.js +0 -2
- package/lib/components/AddSelect/hooks/useFocus.js +1 -1
- package/lib/components/AddSelect/hooks/useItemSort.js +0 -2
- package/lib/components/AddSelect/hooks/useParentSelect.js +1 -1
- package/lib/components/AddSelect/hooks/usePath.js +1 -1
- package/lib/components/BigNumbers/BigNumbers.js +39 -46
- package/lib/components/BigNumbers/constants.js +0 -2
- package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +35 -42
- package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +22 -29
- package/lib/components/Card/Card.js +73 -80
- package/lib/components/Card/CardFooter.js +28 -35
- package/lib/components/Card/CardHeader.js +37 -44
- package/lib/components/Carousel/Carousel.js +21 -28
- package/lib/components/Carousel/CarouselItem.js +5 -12
- package/lib/components/Cascade/Cascade.js +15 -22
- package/lib/components/Checklist/Checklist.js +50 -57
- package/lib/components/Checklist/Checklist.types.js +0 -2
- package/lib/components/Checklist/ChecklistChart.js +7 -15
- package/lib/components/Checklist/ChecklistIcon.js +7 -14
- package/lib/components/Coachmark/Coachmark.js +24 -31
- package/lib/components/Coachmark/CoachmarkDragbar.js +12 -19
- package/lib/components/Coachmark/CoachmarkHeader.js +9 -16
- package/lib/components/Coachmark/CoachmarkOverlay.js +14 -21
- package/lib/components/Coachmark/CoachmarkTagline.js +12 -19
- package/lib/components/Coachmark/utils/constants.js +0 -2
- package/lib/components/Coachmark/utils/context.js +0 -2
- package/lib/components/Coachmark/utils/enums.js +1 -2
- package/lib/components/Coachmark/utils/hooks.js +0 -2
- package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +10 -17
- package/lib/components/CoachmarkButton/CoachmarkButton.js +6 -13
- package/lib/components/CoachmarkFixed/CoachmarkFixed.js +13 -20
- package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +11 -18
- package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +25 -32
- package/lib/components/CoachmarkStack/CoachmarkStack.js +23 -30
- package/lib/components/CoachmarkStack/CoachmarkStackHome.js +29 -36
- package/lib/components/ComboButton/ComboButton.js +11 -18
- package/lib/components/ComboButton/ComboButtonItem/index.js +2 -8
- package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +34 -39
- package/lib/components/ConditionBuilder/ConditionBuilder.js +58 -59
- package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +6 -2
- package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +18 -23
- package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +15 -20
- package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +20 -27
- package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +8 -12
- package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +4 -8
- package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.d.ts +11 -8
- package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +63 -47
- package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +25 -31
- package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +0 -2
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +17 -23
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +9 -15
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +5 -11
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +13 -19
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +17 -23
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +6 -12
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +9 -15
- package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +27 -32
- package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +25 -30
- package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +0 -2
- package/lib/components/ConditionBuilder/utils/useDataConfigs.js +0 -2
- package/lib/components/ConditionBuilder/utils/useTranslations.js +0 -2
- package/lib/components/ConditionBuilder/utils/util.js +0 -2
- package/lib/components/CreateFullPage/CreateFullPage.d.ts +4 -2
- package/lib/components/CreateFullPage/CreateFullPage.js +53 -53
- package/lib/components/CreateFullPage/CreateFullPageStep.d.ts +3 -1
- package/lib/components/CreateFullPage/CreateFullPageStep.js +27 -31
- package/lib/components/CreateInfluencer/CreateInfluencer.js +15 -22
- package/lib/components/CreateModal/CreateModal.js +22 -29
- package/lib/components/CreateSidePanel/CreateSidePanel.js +24 -31
- package/lib/components/CreateTearsheet/CreateTearsheet.js +26 -33
- package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +3 -10
- package/lib/components/CreateTearsheet/CreateTearsheetStep.js +31 -38
- package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +24 -31
- package/lib/components/DataSpreadsheet/DataSpreadsheet.js +37 -44
- package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +54 -61
- package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +37 -44
- package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +0 -2
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +0 -2
- package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +0 -2
- package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.js +0 -2
- package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +0 -2
- package/lib/components/DataSpreadsheet/utils/commonEventHandlers.js +1 -3
- package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +0 -2
- package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +0 -2
- package/lib/components/DataSpreadsheet/utils/getCellSize.js +0 -2
- package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +0 -2
- package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +0 -2
- package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +0 -2
- package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +0 -2
- package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +0 -2
- package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +1 -3
- package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +1 -3
- package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +2 -4
- package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +0 -2
- package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +0 -2
- package/lib/components/DataSpreadsheet/utils/selectAllCells.js +1 -3
- package/lib/components/Datagrid/Datagrid/Datagrid.d.ts +1 -1
- package/lib/components/Datagrid/Datagrid/Datagrid.js +10 -17
- package/lib/components/Datagrid/Datagrid/DatagridBody.js +5 -9
- package/lib/components/Datagrid/Datagrid/DatagridContent.js +43 -50
- package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +4 -8
- package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +6 -11
- package/lib/components/Datagrid/Datagrid/DatagridHead.js +2 -6
- package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +12 -17
- package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +3 -8
- package/lib/components/Datagrid/Datagrid/DatagridRow.js +12 -17
- package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +4 -11
- package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +18 -23
- package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +3 -8
- package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +26 -20
- package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +5 -9
- package/lib/components/Datagrid/Datagrid/DraggableElement.js +18 -22
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +11 -12
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +10 -11
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +25 -31
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +21 -30
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +7 -13
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +18 -20
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -7
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +49 -39
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +54 -48
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +5 -11
- package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +11 -15
- package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +1 -1
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +16 -31
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +2 -6
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +1 -1
- package/lib/components/Datagrid/Datagrid/addons/Filtering/motion/variants.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +18 -25
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +32 -39
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +2 -8
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +0 -2
- package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +12 -17
- package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +11 -16
- package/lib/components/Datagrid/Datagrid/addons/Slug/DatagridSlug.js +2 -8
- package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +0 -2
- package/lib/components/Datagrid/common-column-ids.js +0 -2
- package/lib/components/Datagrid/types/index.d.ts +4 -0
- package/lib/components/Datagrid/useActionsColumn.js +12 -17
- package/lib/components/Datagrid/useColumnCenterAlign.js +4 -9
- package/lib/components/Datagrid/useColumnRightAlign.js +4 -9
- package/lib/components/Datagrid/useCustomizeColumns.js +6 -7
- package/lib/components/Datagrid/useDatagrid.js +4 -8
- package/lib/components/Datagrid/useDefaultStringRenderer.js +5 -10
- package/lib/components/Datagrid/useDisableSelectRows.js +1 -1
- package/lib/components/Datagrid/useEditableCell.js +2 -2
- package/lib/components/Datagrid/useExpandedRow.js +3 -3
- package/lib/components/Datagrid/useFiltering.js +5 -5
- package/lib/components/Datagrid/useFlexResize.js +1 -1
- package/lib/components/Datagrid/useFloatingScroll.js +2 -6
- package/lib/components/Datagrid/useFocusRowExpander.js +0 -2
- package/lib/components/Datagrid/useInfiniteScroll.js +4 -8
- package/lib/components/Datagrid/useInitialColumnSort.js +0 -2
- package/lib/components/Datagrid/useInlineEdit.js +7 -12
- package/lib/components/Datagrid/useNestedRowExpander.js +5 -10
- package/lib/components/Datagrid/useNestedRows.js +3 -7
- package/lib/components/Datagrid/useOnRowClick.js +1 -1
- package/lib/components/Datagrid/useParentDimensions.js +1 -1
- package/lib/components/Datagrid/useResizeTable.js +1 -1
- package/lib/components/Datagrid/useRowExpander.js +5 -10
- package/lib/components/Datagrid/useRowIsMouseOver.js +2 -6
- package/lib/components/Datagrid/useRowRenderer.js +2 -2
- package/lib/components/Datagrid/useRowSize.js +2 -2
- package/lib/components/Datagrid/useSelectAllToggle.js +3 -8
- package/lib/components/Datagrid/useSelectRows.js +45 -29
- package/lib/components/Datagrid/useSkeletonRows.js +1 -1
- package/lib/components/Datagrid/useSortableColumns.js +8 -13
- package/lib/components/Datagrid/useStickyColumn.js +4 -9
- package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +0 -2
- package/lib/components/Decorator/Decorator.js +16 -22
- package/lib/components/DecoratorBase/DecoratorBase.js +41 -48
- package/lib/components/DecoratorBase/DecoratorIcon.js +6 -13
- package/lib/components/DecoratorBase/utils.js +0 -2
- package/lib/components/DecoratorDualButton/DecoratorDualButton.js +21 -27
- package/lib/components/DecoratorLink/DecoratorLink.js +19 -25
- package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +19 -25
- package/lib/components/DelimitedList/DelimitedList.js +7 -14
- package/lib/components/DescriptionList/DescriptionList.js +8 -15
- package/lib/components/DescriptionList/DescriptionListBody.js +5 -12
- package/lib/components/DescriptionList/DescriptionListCell.js +5 -12
- package/lib/components/DescriptionList/DescriptionListRow.js +5 -12
- package/lib/components/DescriptionList/constants.js +0 -2
- package/lib/components/EditFullPage/EditFullPage.js +5 -12
- package/lib/components/EditInPlace/EditInPlace.js +35 -45
- package/lib/components/EditSidePanel/EditSidePanel.js +26 -33
- package/lib/components/EditTearsheet/EditTearsheet.js +24 -31
- package/lib/components/EditTearsheet/EditTearsheetForm.js +16 -23
- package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +5 -12
- package/lib/components/EditUpdateCards/EditUpdateCards.js +32 -39
- package/lib/components/EmptyStates/EmptyState.js +22 -29
- package/lib/components/EmptyStates/EmptyStateContent.js +18 -25
- package/lib/components/EmptyStates/EmptyStateIllustration.js +3 -7
- package/lib/components/EmptyStates/EmptyStateV2.js +25 -32
- package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +19 -26
- package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +19 -26
- package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +19 -26
- package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +19 -26
- package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +19 -26
- package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +19 -26
- package/lib/components/EmptyStates/assets/ErrorIllustration.js +53 -58
- package/lib/components/EmptyStates/assets/NoDataIllustration.js +43 -48
- package/lib/components/EmptyStates/assets/NoTagsIllustration.js +114 -119
- package/lib/components/EmptyStates/assets/NotFoundIllustration.js +84 -89
- package/lib/components/EmptyStates/assets/NotificationsIllustration.js +81 -86
- package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +74 -79
- package/lib/components/ExportModal/ExportModal.js +59 -53
- package/lib/components/ExpressiveCard/ExpressiveCard.js +28 -34
- package/lib/components/FeatureFlags/index.js +3 -9
- package/lib/components/FilterPanel/FilterPanel.js +7 -14
- package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +10 -17
- package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +13 -20
- package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +9 -16
- package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +17 -24
- package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +11 -18
- package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +9 -16
- package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +9 -16
- package/lib/components/FilterSummary/FilterSummary.js +22 -28
- package/lib/components/FullPageError/FullPageError.js +21 -28
- package/lib/components/FullPageError/assets/Error403SVG.js +129 -135
- package/lib/components/FullPageError/assets/Error404SVG.js +114 -120
- package/lib/components/FullPageError/assets/ErrorGenericSVG.js +128 -134
- package/lib/components/GetStartedCard/GetStartedCard.js +16 -22
- package/lib/components/Guidebanner/Guidebanner.js +32 -39
- package/lib/components/Guidebanner/GuidebannerElement.js +10 -17
- package/lib/components/Guidebanner/GuidebannerElementButton.js +9 -16
- package/lib/components/Guidebanner/GuidebannerElementLink.js +5 -12
- package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +5 -12
- package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +5 -12
- package/lib/components/HTTPErrors/HTTPErrorContent.js +5 -11
- package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +5 -12
- package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +358 -364
- package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +309 -315
- package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +321 -327
- package/lib/components/ImportModal/ImportModal.js +48 -55
- package/lib/components/InlineTip/InlineTip.js +38 -45
- package/lib/components/InlineTip/InlineTipButton.js +5 -12
- package/lib/components/InlineTip/InlineTipLink.js +6 -13
- package/lib/components/InlineTip/utils.js +2 -4
- package/lib/components/InterstitialScreen/InterstitialScreen.js +73 -80
- package/lib/components/InterstitialScreenView/InterstitialScreenView.js +6 -13
- package/lib/components/InterstitialScreenViewModule/InterstitialScreenViewModule.js +8 -15
- package/lib/components/MultiAddSelect/MultiAddSelect.js +45 -51
- package/lib/components/Nav/Nav.js +14 -21
- package/lib/components/Nav/NavItem.js +19 -24
- package/lib/components/Nav/NavItemLink.js +4 -8
- package/lib/components/Nav/NavList.js +12 -17
- package/lib/components/NonLinearReading/NonLinearReading.js +12 -19
- package/lib/components/NotificationsPanel/NotificationsPanel.d.ts +5 -1
- package/lib/components/NotificationsPanel/NotificationsPanel.js +104 -98
- package/lib/components/NotificationsPanel/utils.js +0 -2
- package/lib/components/OptionsTile/OptionsTile.d.ts +1 -1
- package/lib/components/OptionsTile/OptionsTile.js +40 -48
- package/lib/components/PageHeader/PageHeader.js +105 -112
- package/lib/components/PageHeader/PageHeaderTitle.js +23 -30
- package/lib/components/PageHeader/PageHeaderUtils.js +2 -9
- package/lib/components/ProductiveCard/ProductiveCard.d.ts +4 -0
- package/lib/components/ProductiveCard/ProductiveCard.js +39 -41
- package/lib/components/RemoveModal/RemoveModal.js +27 -34
- package/lib/components/Saving/Saving.js +27 -34
- package/lib/components/ScrollGradient/ScrollGradient.js +17 -24
- package/lib/components/ScrollGradient/constants.js +0 -2
- package/lib/components/SearchBar/SearchBar.js +22 -29
- package/lib/components/SidePanel/SidePanel.js +66 -73
- package/lib/components/SidePanel/constants.js +0 -2
- package/lib/components/SidePanel/motion/variants.js +0 -2
- package/lib/components/SimpleHeader/SimpleHeader.d.ts +3 -1
- package/lib/components/SimpleHeader/SimpleHeader.js +27 -27
- package/lib/components/SingleAddSelect/SingleAddSelect.js +21 -27
- package/lib/components/StatusIcon/StatusIcon.js +52 -59
- package/lib/components/StatusIndicator/StatusIndicator.js +13 -20
- package/lib/components/StatusIndicator/StatusIndicatorStep.js +14 -21
- package/lib/components/SteppedAnimatedMedia/SteppedAnimatedMedia.js +8 -17
- package/lib/components/StringFormatter/StringFormatter.js +12 -19
- package/lib/components/StringFormatter/utils/enums.js +0 -2
- package/lib/components/TagOverflow/TagOverflow.js +26 -33
- package/lib/components/TagOverflow/TagOverflowModal.js +17 -24
- package/lib/components/TagOverflow/TagOverflowPopover.js +22 -29
- package/lib/components/TagOverflow/constants.js +0 -2
- package/lib/components/TagSet/TagSet.js +39 -41
- package/lib/components/TagSet/TagSetModal.js +16 -23
- package/lib/components/TagSet/TagSetOverflow.d.ts +4 -0
- package/lib/components/TagSet/TagSetOverflow.js +32 -32
- package/lib/components/Tearsheet/Tearsheet.js +23 -29
- package/lib/components/Tearsheet/TearsheetNarrow.js +18 -24
- package/lib/components/Tearsheet/TearsheetShell.js +63 -63
- package/lib/components/Toolbar/Toolbar.js +3 -10
- package/lib/components/Toolbar/ToolbarButton.js +3 -10
- package/lib/components/Toolbar/ToolbarGroup.js +2 -9
- package/lib/components/TooltipTrigger/TooltipTrigger.js +4 -11
- package/lib/components/TruncatedList/TruncatedList.js +15 -22
- package/lib/components/UserAvatar/UserAvatar.js +18 -25
- package/lib/components/UserProfileImage/UserProfileImage.d.ts +1 -1
- package/lib/components/UserProfileImage/UserProfileImage.js +25 -32
- package/lib/components/WebTerminal/WebTerminal.js +26 -33
- package/lib/components/WebTerminal/WebTerminalContentWrapper.js +4 -11
- package/lib/components/WebTerminal/hooks/index.js +2 -8
- package/lib/components/_Canary/Canary.js +7 -14
- package/lib/feature-flags.js +3 -4
- package/lib/global/js/hooks/useActiveElement.js +0 -2
- package/lib/global/js/hooks/useClickOutside.js +0 -2
- package/lib/global/js/hooks/useControllableState.js +2 -4
- package/lib/global/js/hooks/useCreateComponentFocus.js +1 -3
- package/lib/global/js/hooks/useCreateComponentStepChange.js +0 -2
- package/lib/global/js/hooks/useFocus.js +1 -3
- package/lib/global/js/hooks/useIsomorphicEffect.js +0 -2
- package/lib/global/js/hooks/usePortalTarget.js +0 -2
- package/lib/global/js/hooks/usePrefersReducedMotion.js +1 -1
- package/lib/global/js/hooks/usePrefix.js +1 -3
- package/lib/global/js/hooks/usePreviousValue.js +0 -2
- package/lib/global/js/hooks/useResetCreateComponent.js +0 -2
- package/lib/global/js/hooks/useResizeObserver.js +0 -2
- package/lib/global/js/hooks/useRetrieveFormTitles.js +0 -2
- package/lib/global/js/hooks/useRetrieveStepData.js +0 -2
- package/lib/global/js/hooks/useValidCreateStepCount.js +0 -2
- package/lib/global/js/hooks/useWindowResize.js +1 -3
- package/lib/global/js/hooks/useWindowScroll.js +1 -3
- package/lib/global/js/package-settings.js +1 -1
- package/lib/global/js/utils/Wrap.d.ts +4 -0
- package/lib/global/js/utils/Wrap.js +16 -16
- package/lib/global/js/utils/deepCloneObject.js +1 -3
- package/lib/global/js/utils/devtools.js +0 -2
- package/lib/global/js/utils/getBezierValues.js +0 -2
- package/lib/global/js/utils/getFocusableElements.js +0 -2
- package/lib/global/js/utils/getNodeTextContent.js +1 -3
- package/lib/global/js/utils/getNumberOfHiddenSteps.js +0 -2
- package/lib/global/js/utils/getScrollbarWidth.js +0 -2
- package/lib/global/js/utils/keyboardNavigation.js +0 -2
- package/lib/global/js/utils/lastIndexInArray.js +0 -2
- package/lib/global/js/utils/motionConstants.js +0 -2
- package/lib/global/js/utils/pconsole.js +1 -1
- package/lib/global/js/utils/props-helper.js +10 -12
- package/lib/global/js/utils/rangeWithCallback.js +0 -2
- package/lib/global/js/utils/scrollableAncestor.js +1 -3
- package/lib/global/js/utils/uuidv4.js +1 -1
- package/lib/global/js/utils/wait.js +1 -1
- package/lib/global/js/utils/wrapFocus.js +1 -1
- package/lib/index.js +19 -21
- package/lib/node_modules/@carbon/colors/es/index.js +0 -2
- package/lib/node_modules/@carbon/icon-helpers/es/index.js +6 -8
- package/lib/node_modules/@carbon/icons-react/es/Icon.js +14 -18
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-2.js +525 -531
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-9.js +500 -506
- package/lib/node_modules/@carbon/icons-react/es/iconPropTypes-4cbeb95d.js +1 -3
- package/lib/node_modules/object-assign/index.js +0 -2
- package/lib/node_modules/prop-types/checkPropTypes.js +2 -4
- package/lib/node_modules/prop-types/factoryWithThrowingShims.js +0 -2
- package/lib/node_modules/prop-types/factoryWithTypeCheckers.js +4 -10
- package/lib/node_modules/prop-types/index.js +2 -6
- package/lib/node_modules/prop-types/lib/ReactPropTypesSecret.js +0 -2
- package/lib/node_modules/prop-types/lib/has.js +0 -2
- package/lib/settings.js +9 -15
- package/package.json +11 -11
- package/scss/components/EditInPlace/_edit-in-place.scss +0 -11
- package/scss/components/SidePanel/_side-panel.scss +1 -0
- package/scss/components/TagSet/_tag-set.scss +2 -0
- package/telemetry.yml +3 -3
@@ -7,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');
|
@@ -29,11 +27,6 @@ var usePath = require('./hooks/usePath.js');
|
|
29
27
|
var settings = require('../../settings.js');
|
30
28
|
var NotFoundEmptyState = require('../EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js');
|
31
29
|
|
32
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
33
|
-
|
34
|
-
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
35
|
-
var cx__default = /*#__PURE__*/_interopDefaultLegacy(cx);
|
36
|
-
|
37
30
|
var _excluded = ["className", "clearFiltersText", "closeIconDescription", "columnInputPlaceholder", "defaultModifiers", "description", "filterByLabel", "globalFilterOpts", "globalFiltersLabel", "globalFiltersIconDescription", "globalFiltersPlaceholderText", "globalFiltersPrimaryButtonText", "globalFiltersSecondaryButtonText", "globalSearchLabel", "globalSearchPlaceholder", "globalSortBy", "illustrationTheme", "influencerTitle", "items", "itemsLabel", "metaIconDescription", "metaPanelTitle", "multi", "navIconDescription", "noResultsDescription", "noResultsTitle", "noSelectionDescription", "noSelectionTitle", "normalizedItems", "onClose", "onCloseButtonText", "onSubmit", "onSubmitButtonText", "open", "portalTarget", "searchResultsTitle", "sortByLabel", "title", "useNormalizedItems"];
|
38
31
|
var blockClass = "".concat(settings.pkg.prefix, "--add-select");
|
39
32
|
var componentName = 'AddSelectBody';
|
@@ -109,10 +102,10 @@ var AddSelectBody = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
109
102
|
setSortDirection = _useItemSort.setSortDirection,
|
110
103
|
sortAttribute = _useItemSort.sortAttribute,
|
111
104
|
setSortAttribute = _useItemSort.setSortAttribute;
|
112
|
-
var _useParentSelect = useParentSelect
|
105
|
+
var _useParentSelect = useParentSelect.default(),
|
113
106
|
parentSelected = _useParentSelect.parentSelected,
|
114
107
|
setParentSelected = _useParentSelect.setParentSelected;
|
115
|
-
var _usePath = usePath
|
108
|
+
var _usePath = usePath.default(itemsLabel),
|
116
109
|
path = _usePath.path,
|
117
110
|
setPath = _usePath.setPath,
|
118
111
|
pathOnclick = _usePath.pathOnclick,
|
@@ -133,7 +126,7 @@ var AddSelectBody = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
133
126
|
resetState();
|
134
127
|
onClose === null || onClose === void 0 || onClose();
|
135
128
|
};
|
136
|
-
var tearsheetClassnames =
|
129
|
+
var tearsheetClassnames = cx(className, blockClass, _rollupPluginBabelHelpers.defineProperty(_rollupPluginBabelHelpers.defineProperty({}, "".concat(blockClass, "__single"), !multi), "".concat(blockClass, "__multi"), multi));
|
137
130
|
var globalFilterKeys = Object.keys(appliedGlobalFilters);
|
138
131
|
var globalFiltersApplied = globalFilterKeys.length > 0;
|
139
132
|
|
@@ -233,10 +226,10 @@ var AddSelectBody = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
233
226
|
var displayColumnView = multi && useNormalizedItems && !searchTerm && !globalFiltersApplied;
|
234
227
|
|
235
228
|
// main content
|
236
|
-
var body = /*#__PURE__*/
|
229
|
+
var body = /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
237
230
|
id: "add-select",
|
238
231
|
className: "".concat(blockClass, "__header")
|
239
|
-
}, /*#__PURE__*/
|
232
|
+
}, /*#__PURE__*/React.createElement(AddSelectFilter.AddSelectFilter, {
|
240
233
|
inputLabel: globalSearchLabel,
|
241
234
|
inputPlaceholder: globalSearchPlaceholder,
|
242
235
|
searchTerm: searchTerm,
|
@@ -252,32 +245,32 @@ var AddSelectBody = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
252
245
|
appliedFilters: appliedGlobalFilters,
|
253
246
|
hasFiltersApplied: globalFiltersApplied,
|
254
247
|
clearFiltersText: clearFiltersText
|
255
|
-
}), /*#__PURE__*/
|
256
|
-
className:
|
257
|
-
}, /*#__PURE__*/
|
248
|
+
}), /*#__PURE__*/React.createElement("div", {
|
249
|
+
className: cx("".concat(blockClass, "__sub-header"), _rollupPluginBabelHelpers.defineProperty({}, "".concat(blockClass, "__sub-header-multi"), multi))
|
250
|
+
}, /*#__PURE__*/React.createElement("div", {
|
258
251
|
className: "".concat(blockClass, "__tags")
|
259
|
-
}, showBreadsCrumbs ? /*#__PURE__*/
|
252
|
+
}, showBreadsCrumbs ? /*#__PURE__*/React.createElement(AddSelectBreadcrumbs.AddSelectBreadcrumbs, {
|
260
253
|
path: path,
|
261
254
|
onClick: pathOnclick,
|
262
255
|
multi: multi
|
263
|
-
}) : /*#__PURE__*/
|
256
|
+
}) : /*#__PURE__*/React.createElement("p", {
|
264
257
|
className: "".concat(blockClass, "__tags-label")
|
265
|
-
}, searchTerm ? searchResultsTitle : itemsLabel), showTags && /*#__PURE__*/
|
258
|
+
}, searchTerm ? searchResultsTitle : itemsLabel), showTags && /*#__PURE__*/React.createElement(react.Tag, {
|
266
259
|
type: "gray",
|
267
260
|
size: "sm"
|
268
|
-
}, itemsToDisplay.length)), showSort && /*#__PURE__*/
|
261
|
+
}, itemsToDisplay.length)), showSort && /*#__PURE__*/React.createElement(AddSelectSort.AddSelectSort, {
|
269
262
|
setSortAttribute: setSortAttribute,
|
270
263
|
setSortDirection: setSortDirection,
|
271
264
|
sortBy: globalSortBy
|
272
|
-
}))), displayColumnView ? /*#__PURE__*/
|
265
|
+
}))), displayColumnView ? /*#__PURE__*/React.createElement("div", {
|
273
266
|
className: "".concat(blockClass, "__columns")
|
274
|
-
}, /*#__PURE__*/
|
267
|
+
}, /*#__PURE__*/React.createElement(AddSelectColumn.AddSelectColumn, _rollupPluginBabelHelpers.extends({}, commonListProps, {
|
275
268
|
items: itemsToDisplay,
|
276
269
|
columnInputPlaceholder: columnInputPlaceholder,
|
277
270
|
header: (_path$ = path[0]) === null || _path$ === void 0 ? void 0 : _path$.title,
|
278
271
|
filterByLabel: filterByLabel,
|
279
272
|
sortByLabel: sortByLabel
|
280
|
-
}))) : /*#__PURE__*/
|
273
|
+
}))) : /*#__PURE__*/React.createElement("div", null, hasResults ? /*#__PURE__*/React.createElement(AddSelectList.AddSelectList, _rollupPluginBabelHelpers.extends({}, commonListProps, {
|
281
274
|
filteredItems: itemsToDisplay,
|
282
275
|
modifiers: items === null || items === void 0 ? void 0 : items.modifiers,
|
283
276
|
appliedModifiers: appliedModifiers,
|
@@ -285,89 +278,89 @@ var AddSelectBody = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
285
278
|
setParentSelected: parentSelectionHandler,
|
286
279
|
parentSelected: parentSelected,
|
287
280
|
parentId: parentSelected || path[0].id
|
288
|
-
})) : /*#__PURE__*/
|
281
|
+
})) : /*#__PURE__*/React.createElement("div", {
|
289
282
|
className: "".concat(blockClass, "__body")
|
290
|
-
}, /*#__PURE__*/
|
283
|
+
}, /*#__PURE__*/React.createElement(NotFoundEmptyState.NotFoundEmptyState, {
|
291
284
|
subtitle: noResultsDescription,
|
292
285
|
title: noResultsTitle,
|
293
286
|
illustrationTheme: illustrationTheme
|
294
287
|
}))));
|
295
288
|
if (multi) {
|
296
|
-
return /*#__PURE__*/
|
297
|
-
influencer: multi && /*#__PURE__*/
|
289
|
+
return /*#__PURE__*/React.createElement(Tearsheet.Tearsheet, _rollupPluginBabelHelpers.extends({}, commonTearsheetProps, {
|
290
|
+
influencer: multi && /*#__PURE__*/React.createElement(AddSelectSidebar.AddSelectSidebar, sidebarProps),
|
298
291
|
influencerPosition: "right"
|
299
292
|
}), body);
|
300
293
|
}
|
301
|
-
return /*#__PURE__*/
|
294
|
+
return /*#__PURE__*/React.createElement(TearsheetNarrow.TearsheetNarrow, commonTearsheetProps, body);
|
302
295
|
});
|
303
296
|
AddSelectBody.propTypes = {
|
304
|
-
className: index
|
305
|
-
clearFiltersText: index
|
306
|
-
closeIconDescription: index
|
307
|
-
columnInputPlaceholder: index
|
308
|
-
defaultModifiers: index
|
309
|
-
description: index
|
310
|
-
filterByLabel: index
|
311
|
-
globalFilterOpts: index
|
312
|
-
globalFiltersIconDescription: index
|
313
|
-
globalFiltersLabel: index
|
314
|
-
globalFiltersPlaceholderText: index
|
315
|
-
globalFiltersPrimaryButtonText: index
|
316
|
-
globalFiltersSecondaryButtonText: index
|
317
|
-
globalSearchLabel: index
|
318
|
-
globalSearchPlaceholder: index
|
319
|
-
globalSortBy: index
|
320
|
-
illustrationTheme: index
|
321
|
-
influencerTitle: index
|
297
|
+
className: index.default.string,
|
298
|
+
clearFiltersText: index.default.string,
|
299
|
+
closeIconDescription: index.default.string,
|
300
|
+
columnInputPlaceholder: index.default.string,
|
301
|
+
defaultModifiers: index.default.array,
|
302
|
+
description: index.default.string,
|
303
|
+
filterByLabel: index.default.string,
|
304
|
+
globalFilterOpts: index.default.array,
|
305
|
+
globalFiltersIconDescription: index.default.string,
|
306
|
+
globalFiltersLabel: index.default.string,
|
307
|
+
globalFiltersPlaceholderText: index.default.string,
|
308
|
+
globalFiltersPrimaryButtonText: index.default.string,
|
309
|
+
globalFiltersSecondaryButtonText: index.default.string,
|
310
|
+
globalSearchLabel: index.default.string.isRequired,
|
311
|
+
globalSearchPlaceholder: index.default.string,
|
312
|
+
globalSortBy: index.default.array,
|
313
|
+
illustrationTheme: index.default.oneOf(['light', 'dark']),
|
314
|
+
influencerTitle: index.default.string,
|
322
315
|
/**@ts-ignore */
|
323
|
-
items: index
|
324
|
-
modifiers: index
|
325
|
-
id: index
|
326
|
-
label: index
|
327
|
-
options: index
|
316
|
+
items: index.default.shape({
|
317
|
+
modifiers: index.default.shape({
|
318
|
+
id: index.default.string,
|
319
|
+
label: index.default.string,
|
320
|
+
options: index.default.array
|
328
321
|
}),
|
329
|
-
sortBy: index
|
330
|
-
filterBy: index
|
331
|
-
entries: index
|
332
|
-
avatar: index
|
333
|
-
alt: index
|
334
|
-
icon: index
|
335
|
-
src: index
|
336
|
-
theme: index
|
322
|
+
sortBy: index.default.array,
|
323
|
+
filterBy: index.default.array,
|
324
|
+
entries: index.default.arrayOf(index.default.shape({
|
325
|
+
avatar: index.default.shape({
|
326
|
+
alt: index.default.string,
|
327
|
+
icon: index.default.oneOfType([index.default.func, index.default.object]),
|
328
|
+
src: index.default.string,
|
329
|
+
theme: index.default.oneOf(['light', 'dark'])
|
337
330
|
}),
|
338
|
-
children: index
|
339
|
-
icon: index
|
340
|
-
id: index
|
341
|
-
meta: index
|
342
|
-
id: index
|
343
|
-
title: index
|
344
|
-
value: index
|
345
|
-
})), index
|
346
|
-
subtitle: index
|
347
|
-
title: index
|
348
|
-
value: index
|
331
|
+
children: index.default.object,
|
332
|
+
icon: index.default.oneOfType([index.default.func, index.default.object]),
|
333
|
+
id: index.default.string.isRequired,
|
334
|
+
meta: index.default.oneOfType([index.default.arrayOf(index.default.shape({
|
335
|
+
id: index.default.string,
|
336
|
+
title: index.default.string,
|
337
|
+
value: index.default.string
|
338
|
+
})), index.default.node]),
|
339
|
+
subtitle: index.default.string,
|
340
|
+
title: index.default.string.isRequired,
|
341
|
+
value: index.default.string.isRequired
|
349
342
|
}))
|
350
343
|
}),
|
351
|
-
itemsLabel: index
|
352
|
-
metaIconDescription: index
|
353
|
-
metaPanelTitle: index
|
354
|
-
multi: index
|
355
|
-
navIconDescription: index
|
356
|
-
noResultsDescription: index
|
357
|
-
noResultsTitle: index
|
358
|
-
noSelectionDescription: index
|
359
|
-
noSelectionTitle: index
|
360
|
-
normalizedItems: index
|
361
|
-
onClose: index
|
362
|
-
onCloseButtonText: index
|
363
|
-
onSubmit: index
|
364
|
-
onSubmitButtonText: index
|
365
|
-
open: index
|
366
|
-
portalTarget: index
|
367
|
-
searchResultsTitle: index
|
368
|
-
sortByLabel: index
|
369
|
-
title: index
|
370
|
-
useNormalizedItems: index
|
344
|
+
itemsLabel: index.default.string,
|
345
|
+
metaIconDescription: index.default.string,
|
346
|
+
metaPanelTitle: index.default.string,
|
347
|
+
multi: index.default.bool,
|
348
|
+
navIconDescription: index.default.string,
|
349
|
+
noResultsDescription: index.default.string,
|
350
|
+
noResultsTitle: index.default.string,
|
351
|
+
noSelectionDescription: index.default.string,
|
352
|
+
noSelectionTitle: index.default.string,
|
353
|
+
normalizedItems: index.default.object,
|
354
|
+
onClose: index.default.func,
|
355
|
+
onCloseButtonText: index.default.string,
|
356
|
+
onSubmit: index.default.func,
|
357
|
+
onSubmitButtonText: index.default.string,
|
358
|
+
open: index.default.bool,
|
359
|
+
portalTarget: index.default.node,
|
360
|
+
searchResultsTitle: index.default.string,
|
361
|
+
sortByLabel: index.default.string,
|
362
|
+
title: index.default.string,
|
363
|
+
useNormalizedItems: index.default.bool
|
371
364
|
};
|
372
365
|
AddSelectBreadcrumbs.AddSelectBreadcrumbs.displayName = componentName;
|
373
366
|
|
@@ -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 react = require('@carbon/react');
|
@@ -16,11 +14,6 @@ var index = require('../../node_modules/prop-types/index.js');
|
|
16
14
|
var cx = require('classnames');
|
17
15
|
var settings = require('../../settings.js');
|
18
16
|
|
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
17
|
var blockClass = "".concat(settings.pkg.prefix, "--add-select__breadcrumbs");
|
25
18
|
var componentName = 'AddSelectBreadcrumbs';
|
26
19
|
var AddSelectBreadcrumbs = function AddSelectBreadcrumbs(_ref) {
|
@@ -31,13 +24,13 @@ var AddSelectBreadcrumbs = function AddSelectBreadcrumbs(_ref) {
|
|
31
24
|
e.preventDefault();
|
32
25
|
onClick(idx);
|
33
26
|
};
|
34
|
-
var classNames =
|
35
|
-
return /*#__PURE__*/
|
27
|
+
var classNames = cx(blockClass, _rollupPluginBabelHelpers.defineProperty({}, "".concat(blockClass, "-multi"), multi));
|
28
|
+
return /*#__PURE__*/React.createElement(react.Breadcrumb, {
|
36
29
|
noTrailingSlash: true,
|
37
30
|
className: classNames
|
38
31
|
}, path.map(function (entry, idx) {
|
39
32
|
var isCurrentPage = idx === path.length - 1;
|
40
|
-
return /*#__PURE__*/
|
33
|
+
return /*#__PURE__*/React.createElement(react.BreadcrumbItem, {
|
41
34
|
key: entry.id,
|
42
35
|
isCurrentPage: isCurrentPage,
|
43
36
|
onClick: function onClick(e) {
|
@@ -48,9 +41,9 @@ var AddSelectBreadcrumbs = function AddSelectBreadcrumbs(_ref) {
|
|
48
41
|
}));
|
49
42
|
};
|
50
43
|
AddSelectBreadcrumbs.propTypes = {
|
51
|
-
multi: index
|
52
|
-
onClick: index
|
53
|
-
path: index
|
44
|
+
multi: index.default.bool,
|
45
|
+
onClick: index.default.func,
|
46
|
+
path: index.default.array
|
54
47
|
};
|
55
48
|
AddSelectBreadcrumbs.displayName = componentName;
|
56
49
|
|
@@ -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');
|
@@ -22,10 +20,6 @@ var useItemSort = require('./hooks/useItemSort.js');
|
|
22
20
|
var uuidv4 = require('../../global/js/utils/uuidv4.js');
|
23
21
|
var useParentSelect = require('./hooks/useParentSelect.js');
|
24
22
|
|
25
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
26
|
-
|
27
|
-
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
|
28
|
-
|
29
23
|
var _excluded = ["columnInputPlaceholder", "filterByLabel", "header", "items", "multiSelection", "parentId", "path", "setMultiSelection", "setPath", "sortByLabel"];
|
30
24
|
var blockClass = "".concat(settings.pkg.prefix, "--add-select");
|
31
25
|
var colClass = "".concat(blockClass, "__column");
|
@@ -43,7 +37,7 @@ var AddSelectColumn = function AddSelectColumn(_ref) {
|
|
43
37
|
sortByLabel = _ref.sortByLabel,
|
44
38
|
props = _rollupPluginBabelHelpers.objectWithoutProperties(_ref, _excluded);
|
45
39
|
var carbonPrefix = react.usePrefix();
|
46
|
-
var _useParentSelect = useParentSelect
|
40
|
+
var _useParentSelect = useParentSelect.default(),
|
47
41
|
parentSelected = _useParentSelect.parentSelected,
|
48
42
|
setParentSelected = _useParentSelect.setParentSelected;
|
49
43
|
var _useState = React.useState(''),
|
@@ -149,23 +143,23 @@ var AddSelectColumn = function AddSelectColumn(_ref) {
|
|
149
143
|
setParentSelected(id);
|
150
144
|
setPath(id, title, parentId);
|
151
145
|
};
|
152
|
-
return /*#__PURE__*/
|
146
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
153
147
|
className: colClass
|
154
|
-
}, /*#__PURE__*/
|
148
|
+
}, /*#__PURE__*/React.createElement("div", {
|
155
149
|
className: "".concat(colClass, "-search-bar")
|
156
|
-
}, /*#__PURE__*/
|
150
|
+
}, /*#__PURE__*/React.createElement(react.Search, {
|
157
151
|
value: searchTerm,
|
158
152
|
onChange: function onChange(e) {
|
159
153
|
return setSearchTerm(e.target.value);
|
160
154
|
},
|
161
155
|
placeholder: columnInputPlaceholder,
|
162
156
|
className: "".concat(colClass, "-input"),
|
163
|
-
id: uuidv4
|
157
|
+
id: uuidv4.default(),
|
164
158
|
labelText: columnInputPlaceholder,
|
165
159
|
size: "md"
|
166
|
-
}), /*#__PURE__*/
|
160
|
+
}), /*#__PURE__*/React.createElement("div", {
|
167
161
|
className: "".concat(colClass, "-sort-filter")
|
168
|
-
}, /*#__PURE__*/
|
162
|
+
}, /*#__PURE__*/React.createElement(AddSelectSort.AddSelectSort, {
|
169
163
|
items: entries,
|
170
164
|
setSortAttribute: setSortAttribute,
|
171
165
|
setSortDirection: setSortDirection,
|
@@ -173,9 +167,9 @@ var AddSelectColumn = function AddSelectColumn(_ref) {
|
|
173
167
|
sortDirection: sortDirection,
|
174
168
|
sortBy: sortBy,
|
175
169
|
sortByLabel: sortByLabel
|
176
|
-
}), filterByOpts.length > 0 && /*#__PURE__*/
|
170
|
+
}), filterByOpts.length > 0 && /*#__PURE__*/React.createElement(react.OverflowMenu, {
|
177
171
|
renderIcon: function renderIcon(props) {
|
178
|
-
return /*#__PURE__*/
|
172
|
+
return /*#__PURE__*/React.createElement(icons.Filter, _rollupPluginBabelHelpers.extends({
|
179
173
|
size: 32
|
180
174
|
}, props));
|
181
175
|
},
|
@@ -184,12 +178,12 @@ var AddSelectColumn = function AddSelectColumn(_ref) {
|
|
184
178
|
"aria-label": filterByLabel,
|
185
179
|
iconDescription: filterByLabel
|
186
180
|
}, filterByOpts.map(function (opt) {
|
187
|
-
return /*#__PURE__*/
|
181
|
+
return /*#__PURE__*/React.createElement("div", {
|
188
182
|
key: opt,
|
189
183
|
className: "".concat(carbonPrefix, "--overflow-menu-options__option")
|
190
|
-
}, /*#__PURE__*/
|
184
|
+
}, /*#__PURE__*/React.createElement("div", {
|
191
185
|
className: "".concat(carbonPrefix, "--overflow-menu-options__btn")
|
192
|
-
}, /*#__PURE__*/
|
186
|
+
}, /*#__PURE__*/React.createElement(react.Checkbox, {
|
193
187
|
id: opt,
|
194
188
|
labelText: opt,
|
195
189
|
onChange: function onChange(event, _ref3) {
|
@@ -200,26 +194,26 @@ var AddSelectColumn = function AddSelectColumn(_ref) {
|
|
200
194
|
return o === opt;
|
201
195
|
}) ? true : false
|
202
196
|
})));
|
203
|
-
})))), /*#__PURE__*/
|
197
|
+
})))), /*#__PURE__*/React.createElement("div", {
|
204
198
|
className: "".concat(blockClass, "__tags")
|
205
|
-
}, /*#__PURE__*/
|
206
|
-
id: "".concat(uuidv4
|
199
|
+
}, /*#__PURE__*/React.createElement(react.Checkbox, {
|
200
|
+
id: "".concat(uuidv4.default(), "-select-all"),
|
207
201
|
className: "".concat(colClass, "__select-all"),
|
208
202
|
checked: allSelected,
|
209
203
|
onChange: selectAllHandler,
|
210
|
-
labelText: /*#__PURE__*/
|
204
|
+
labelText: /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", {
|
211
205
|
className: "".concat(blockClass, "__tag-label")
|
212
|
-
}, header), /*#__PURE__*/
|
206
|
+
}, header), /*#__PURE__*/React.createElement(react.Tag, {
|
213
207
|
type: "gray",
|
214
208
|
size: "sm"
|
215
209
|
}, colItems.length))
|
216
|
-
})), /*#__PURE__*/
|
210
|
+
})), /*#__PURE__*/React.createElement(AddSelectList.AddSelectList, _rollupPluginBabelHelpers.extends({}, props, {
|
217
211
|
filteredItems: colItems,
|
218
212
|
setMultiSelection: setMultiSelection,
|
219
213
|
multiSelection: multiSelection,
|
220
214
|
setParentSelected: parentSelectionHandler,
|
221
215
|
parentSelected: parentSelected
|
222
|
-
}))), selectedItem && itemInPath && /*#__PURE__*/
|
216
|
+
}))), selectedItem && itemInPath && /*#__PURE__*/React.createElement(AddSelectColumn, _rollupPluginBabelHelpers.extends({
|
223
217
|
columnInputPlaceholder: columnInputPlaceholder,
|
224
218
|
header: selectedItem.title,
|
225
219
|
items: selectedItem.children,
|
@@ -233,16 +227,16 @@ var AddSelectColumn = function AddSelectColumn(_ref) {
|
|
233
227
|
}, props)));
|
234
228
|
};
|
235
229
|
AddSelectColumn.propTypes = {
|
236
|
-
columnInputPlaceholder: index
|
237
|
-
filterByLabel: index
|
238
|
-
header: index
|
239
|
-
items: index
|
240
|
-
multiSelection: index
|
241
|
-
parentId: index
|
242
|
-
path: index
|
243
|
-
setMultiSelection: index
|
244
|
-
setPath: index
|
245
|
-
sortByLabel: index
|
230
|
+
columnInputPlaceholder: index.default.string,
|
231
|
+
filterByLabel: index.default.string,
|
232
|
+
header: index.default.string,
|
233
|
+
items: index.default.object,
|
234
|
+
multiSelection: index.default.array,
|
235
|
+
parentId: index.default.string,
|
236
|
+
path: index.default.array,
|
237
|
+
setMultiSelection: index.default.func,
|
238
|
+
setPath: index.default.func,
|
239
|
+
sortByLabel: index.default.string
|
246
240
|
};
|
247
241
|
AddSelectColumn.displayName = componentName;
|
248
242
|
|
@@ -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 react = require('@carbon/react');
|
@@ -17,11 +15,6 @@ var index = require('../../node_modules/prop-types/index.js');
|
|
17
15
|
var icons = require('@carbon/react/icons');
|
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 blockClass = "".concat(settings.pkg.prefix, "--add-select__global-filter");
|
26
19
|
var componentName = 'AddSelectFilter';
|
27
20
|
var AddSelectFilter = function AddSelectFilter(_ref) {
|
@@ -84,19 +77,19 @@ var AddSelectFilter = function AddSelectFilter(_ref) {
|
|
84
77
|
return filters[id] || '';
|
85
78
|
};
|
86
79
|
var showFilter = multi && (filterOpts === null || filterOpts === void 0 ? void 0 : filterOpts.length) > 0;
|
87
|
-
var filterBtnClassnames =
|
80
|
+
var filterBtnClassnames = cx("".concat(blockClass, "-toggle"), _rollupPluginBabelHelpers.defineProperty({}, "".concat(blockClass, "-toggle--open"), open));
|
88
81
|
var dirtyInput = Object.keys(filters).length > 0;
|
89
|
-
return /*#__PURE__*/
|
82
|
+
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("div", {
|
90
83
|
className: "".concat(blockClass, "-search")
|
91
|
-
}, /*#__PURE__*/
|
84
|
+
}, /*#__PURE__*/React.createElement(react.Search, {
|
92
85
|
id: "add-select-global-search-filter",
|
93
86
|
labelText: inputLabel,
|
94
87
|
placeholder: inputPlaceholder,
|
95
88
|
value: searchTerm,
|
96
89
|
onChange: searchHandler
|
97
|
-
}), showFilter && /*#__PURE__*/
|
90
|
+
}), showFilter && /*#__PURE__*/React.createElement(react.Button, {
|
98
91
|
renderIcon: function renderIcon(props) {
|
99
|
-
return /*#__PURE__*/
|
92
|
+
return /*#__PURE__*/React.createElement(icons.Filter, _rollupPluginBabelHelpers.extends({
|
100
93
|
size: 16
|
101
94
|
}, props));
|
102
95
|
},
|
@@ -109,15 +102,15 @@ var AddSelectFilter = function AddSelectFilter(_ref) {
|
|
109
102
|
className: filterBtnClassnames,
|
110
103
|
size: "md",
|
111
104
|
tooltipPosition: "left"
|
112
|
-
}), open && /*#__PURE__*/
|
105
|
+
}), open && /*#__PURE__*/React.createElement(react.Layer, {
|
113
106
|
className: blockClass,
|
114
107
|
level: 1
|
115
|
-
}, /*#__PURE__*/
|
108
|
+
}, /*#__PURE__*/React.createElement("div", {
|
116
109
|
className: "".concat(blockClass, "-content")
|
117
|
-
}, /*#__PURE__*/
|
110
|
+
}, /*#__PURE__*/React.createElement("p", null, filtersLabel), /*#__PURE__*/React.createElement("div", {
|
118
111
|
className: "".concat(blockClass, "-opts")
|
119
112
|
}, filterOpts.map(function (filterOpts) {
|
120
|
-
return /*#__PURE__*/
|
113
|
+
return /*#__PURE__*/React.createElement(react.Dropdown, {
|
121
114
|
key: filterOpts.id,
|
122
115
|
id: filterOpts.id,
|
123
116
|
titleText: filterOpts.label,
|
@@ -128,22 +121,22 @@ var AddSelectFilter = function AddSelectFilter(_ref) {
|
|
128
121
|
selectedItem: getSelectedItem(filterOpts.id),
|
129
122
|
label: placeholder
|
130
123
|
});
|
131
|
-
}))), /*#__PURE__*/
|
124
|
+
}))), /*#__PURE__*/React.createElement(react.ButtonSet, {
|
132
125
|
className: "".concat(blockClass, "-button-set")
|
133
|
-
}, /*#__PURE__*/
|
126
|
+
}, /*#__PURE__*/React.createElement(react.Button, {
|
134
127
|
kind: "secondary",
|
135
128
|
onClick: resetFilters,
|
136
129
|
className: "".concat(blockClass, "-button"),
|
137
130
|
disabled: !dirtyInput
|
138
|
-
}, secondaryButtonText), /*#__PURE__*/
|
131
|
+
}, secondaryButtonText), /*#__PURE__*/React.createElement(react.Button, {
|
139
132
|
kind: "primary",
|
140
133
|
onClick: applyFilters,
|
141
134
|
className: "".concat(blockClass, "-button"),
|
142
135
|
disabled: !dirtyInput && !hasFiltersApplied
|
143
|
-
}, primaryButtonText)))), hasFiltersApplied && /*#__PURE__*/
|
136
|
+
}, primaryButtonText)))), hasFiltersApplied && /*#__PURE__*/React.createElement("div", {
|
144
137
|
className: "".concat(blockClass, "-applied")
|
145
138
|
}, Object.keys(appliedFilters).map(function (filterType) {
|
146
|
-
return /*#__PURE__*/
|
139
|
+
return /*#__PURE__*/React.createElement(react.Tag, {
|
147
140
|
key: filterType,
|
148
141
|
type: "gray",
|
149
142
|
size: "sm",
|
@@ -152,28 +145,28 @@ var AddSelectFilter = function AddSelectFilter(_ref) {
|
|
152
145
|
},
|
153
146
|
filter: true
|
154
147
|
}, "".concat(filterType, ": ").concat(appliedFilters[filterType]));
|
155
|
-
}), /*#__PURE__*/
|
148
|
+
}), /*#__PURE__*/React.createElement(react.Button, {
|
156
149
|
kind: "ghost",
|
157
150
|
size: "sm",
|
158
151
|
onClick: clearFilters
|
159
152
|
}, clearFiltersText)));
|
160
153
|
};
|
161
154
|
AddSelectFilter.propTypes = {
|
162
|
-
appliedFilters: index
|
163
|
-
clearFiltersText: index
|
164
|
-
filterOpts: index
|
165
|
-
filtersLabel: index
|
166
|
-
handleFilter: index
|
167
|
-
handleSearch: index
|
168
|
-
hasFiltersApplied: index
|
169
|
-
iconDescription: index
|
170
|
-
inputLabel: index
|
171
|
-
inputPlaceholder: index
|
172
|
-
multi: index
|
173
|
-
placeholder: index
|
174
|
-
primaryButtonText: index
|
175
|
-
searchTerm: index
|
176
|
-
secondaryButtonText: index
|
155
|
+
appliedFilters: index.default.object,
|
156
|
+
clearFiltersText: index.default.string,
|
157
|
+
filterOpts: index.default.array,
|
158
|
+
filtersLabel: index.default.string,
|
159
|
+
handleFilter: index.default.func,
|
160
|
+
handleSearch: index.default.func,
|
161
|
+
hasFiltersApplied: index.default.bool,
|
162
|
+
iconDescription: index.default.string,
|
163
|
+
inputLabel: index.default.string.isRequired,
|
164
|
+
inputPlaceholder: index.default.string,
|
165
|
+
multi: index.default.bool,
|
166
|
+
placeholder: index.default.string,
|
167
|
+
primaryButtonText: index.default.string,
|
168
|
+
searchTerm: index.default.string,
|
169
|
+
secondaryButtonText: index.default.string
|
177
170
|
};
|
178
171
|
AddSelectFilter.displayName = componentName;
|
179
172
|
|