@carbon/ibm-products 2.65.0 → 2.66.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/css/index-full-carbon.css +482 -64
- 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 +14 -20
- 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 +29 -22
- 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 +123 -39
- package/css/index.css.map +1 -1
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/es/_virtual/_rollupPluginBabelHelpers.js +1 -510
- package/es/components/APIKeyModal/APIKeyDownloader.js +32 -50
- package/es/components/APIKeyModal/APIKeyModal.js +164 -217
- package/es/components/AboutModal/AboutModal.js +50 -52
- package/es/components/ActionBar/ActionBar.js +62 -56
- package/es/components/ActionBar/ActionBarItem.js +25 -18
- package/es/components/ActionBar/ActionBarOverflowItems.js +21 -19
- package/es/components/ActionSet/ActionSet.js +92 -88
- package/es/components/AddSelect/AddSelect.js +22 -20
- package/es/components/AddSelect/AddSelectBody.js +143 -154
- package/es/components/AddSelect/AddSelectBreadcrumbs.js +21 -14
- package/es/components/AddSelect/AddSelectColumn.js +97 -123
- package/es/components/AddSelect/AddSelectFilter.js +72 -79
- package/es/components/AddSelect/AddSelectFormControl.js +41 -35
- package/es/components/AddSelect/AddSelectList.js +24 -26
- package/es/components/AddSelect/AddSelectMetaPanel.js +24 -26
- package/es/components/AddSelect/AddSelectRow.js +86 -83
- package/es/components/AddSelect/AddSelectSidebar.js +56 -59
- package/es/components/AddSelect/AddSelectSort.js +31 -31
- package/es/components/AddSelect/add-select-utils.js +46 -41
- package/es/components/AddSelect/hooks/useFocus.js +7 -11
- package/es/components/AddSelect/hooks/useItemSort.js +13 -14
- package/es/components/AddSelect/hooks/useParentSelect.js +10 -8
- package/es/components/AddSelect/hooks/usePath.js +33 -36
- package/es/components/BigNumbers/BigNumbers.js +43 -46
- package/es/components/BigNumbers/BigNumbersSkeleton.js +15 -12
- package/es/components/BigNumbers/constants.js +5 -5
- package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +112 -127
- package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +70 -74
- package/es/components/Card/Card.d.ts +15 -11
- package/es/components/Card/Card.js +187 -171
- package/es/components/Card/CardFooter.js +32 -33
- package/es/components/Card/CardHeader.js +59 -46
- package/es/components/Carousel/Carousel.js +102 -118
- package/es/components/Carousel/CarouselItem.js +9 -8
- package/es/components/Cascade/Cascade.js +30 -25
- package/es/components/Checklist/Checklist.js +64 -75
- package/es/components/Checklist/Checklist.types.js +2 -2
- package/es/components/Checklist/ChecklistChart.js +22 -31
- package/es/components/Checklist/ChecklistIcon.js +14 -15
- package/es/components/Coachmark/Coachmark.js +71 -89
- package/es/components/Coachmark/CoachmarkDragbar.js +30 -40
- package/es/components/Coachmark/CoachmarkHeader.js +18 -21
- package/es/components/Coachmark/CoachmarkOverlay.js +70 -79
- package/es/components/Coachmark/CoachmarkTagline.js +19 -21
- package/es/components/Coachmark/utils/constants.js +10 -9
- package/es/components/Coachmark/utils/context.js +2 -2
- package/es/components/Coachmark/utils/enums.js +2 -2
- package/es/components/Coachmark/utils/hooks.js +12 -12
- package/es/components/CoachmarkBeacon/CoachmarkBeacon.js +15 -15
- package/es/components/CoachmarkButton/CoachmarkButton.js +10 -9
- package/es/components/CoachmarkFixed/CoachmarkFixed.js +50 -68
- package/es/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +16 -15
- package/es/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +54 -72
- package/es/components/CoachmarkStack/CoachmarkStack.js +64 -82
- package/es/components/CoachmarkStack/CoachmarkStackHome.js +55 -62
- package/es/components/ComboButton/ComboButton.js +45 -52
- package/es/components/ComboButton/ComboButtonItem/index.js +4 -3
- package/es/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +106 -105
- package/es/components/ConditionBuilder/ConditionBuilder.js +34 -45
- package/es/components/ConditionBuilder/ConditionBuilder.types.d.ts +15 -2
- package/es/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +72 -92
- package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +3 -1
- package/es/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +61 -38
- package/es/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +31 -27
- package/es/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +25 -24
- package/es/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +16 -16
- package/es/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +101 -108
- package/es/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +14 -20
- package/es/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +1 -1
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +59 -72
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +30 -39
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +18 -19
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +40 -51
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +59 -94
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +14 -13
- package/es/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +19 -30
- package/es/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +182 -200
- package/es/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +34 -33
- package/es/components/ConditionBuilder/utils/handleKeyboardEvents.js +52 -65
- package/es/components/ConditionBuilder/utils/useDataConfigs.js +11 -30
- package/es/components/ConditionBuilder/utils/useTranslations.js +7 -6
- package/es/components/ConditionBuilder/utils/util.js +27 -36
- package/es/components/CreateFullPage/CreateFullPage.d.ts +5 -1
- package/es/components/CreateFullPage/CreateFullPage.js +99 -151
- package/es/components/CreateFullPage/CreateFullPageStep.js +65 -59
- package/es/components/CreateInfluencer/CreateInfluencer.js +25 -29
- package/es/components/CreateModal/CreateModal.js +40 -36
- package/es/components/CreateSidePanel/CreateSidePanel.js +40 -39
- package/es/components/CreateTearsheet/CreateTearsheet.d.ts +1 -1
- package/es/components/CreateTearsheet/CreateTearsheet.js +113 -164
- package/es/components/CreateTearsheet/CreateTearsheetDivider.js +9 -7
- package/es/components/CreateTearsheet/CreateTearsheetStep.js +73 -69
- package/es/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +30 -30
- package/es/components/DataSpreadsheet/DataSpreadsheet.js +296 -339
- package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +215 -215
- package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +122 -121
- package/es/components/DataSpreadsheet/hooks/useMoveActiveCell.js +15 -13
- package/es/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +35 -53
- package/es/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +10 -9
- package/es/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +40 -46
- package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +29 -28
- package/es/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +73 -88
- package/es/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +16 -15
- package/es/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +10 -12
- package/es/components/DataSpreadsheet/utils/checkForHoldingKey.js +1 -1
- package/es/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +11 -12
- package/es/components/DataSpreadsheet/utils/commonEventHandlers.js +75 -124
- package/es/components/DataSpreadsheet/utils/createActiveCellFn.js +25 -25
- package/es/components/DataSpreadsheet/utils/createCellSelectionArea.js +32 -31
- package/es/components/DataSpreadsheet/utils/getCellSize.js +2 -4
- package/es/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +9 -9
- package/es/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +12 -14
- package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +40 -36
- package/es/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +37 -34
- package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +22 -23
- package/es/components/DataSpreadsheet/utils/handleEditSubmit.js +37 -34
- package/es/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +65 -76
- package/es/components/DataSpreadsheet/utils/handleMultipleKeys.js +94 -88
- package/es/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +29 -26
- package/es/components/DataSpreadsheet/utils/removeCellSelections.js +9 -11
- package/es/components/DataSpreadsheet/utils/selectAllCells.js +17 -14
- package/es/components/Datagrid/Datagrid/Datagrid.js +27 -24
- package/es/components/Datagrid/Datagrid/DatagridBody.js +7 -6
- package/es/components/Datagrid/Datagrid/DatagridContent.js +130 -112
- package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +19 -18
- package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +42 -43
- package/es/components/Datagrid/Datagrid/DatagridHead.js +9 -10
- package/es/components/Datagrid/Datagrid/DatagridHeaderRow.js +172 -125
- package/es/components/Datagrid/Datagrid/DatagridRefBody.js +18 -15
- package/es/components/Datagrid/Datagrid/DatagridRow.js +101 -91
- package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +63 -61
- package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +48 -57
- package/es/components/Datagrid/Datagrid/DatagridSimpleBody.js +18 -15
- package/es/components/Datagrid/Datagrid/DatagridToolbar.js +83 -96
- package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +74 -76
- package/es/components/Datagrid/Datagrid/DraggableElement.js +38 -29
- package/es/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +6 -4
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +9 -7
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +18 -20
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +34 -36
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +56 -85
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +88 -106
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +27 -29
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -3
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +96 -104
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +125 -136
- package/es/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +90 -106
- package/es/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +41 -46
- package/es/components/Datagrid/Datagrid/addons/Filtering/constants.js +13 -13
- package/es/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +23 -30
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +2 -2
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +212 -219
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +13 -11
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +4 -3
- package/es/components/Datagrid/Datagrid/addons/Filtering/utils.js +44 -42
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +28 -17
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +196 -191
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +41 -39
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +7 -9
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +18 -15
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +5 -3
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +84 -73
- package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +22 -26
- package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +24 -28
- package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +19 -18
- package/es/components/Datagrid/Datagrid/addons/stateReducer.js +211 -173
- package/es/components/Datagrid/common-column-ids.js +1 -1
- package/es/components/Datagrid/useActionsColumn.js +81 -61
- package/es/components/Datagrid/useColumnCenterAlign.js +17 -27
- package/es/components/Datagrid/useColumnRightAlign.js +17 -28
- package/es/components/Datagrid/useCustomizeColumns.js +18 -20
- package/es/components/Datagrid/useDatagrid.js +13 -18
- package/es/components/Datagrid/useDefaultStringRenderer.js +19 -20
- package/es/components/Datagrid/useDisableSelectRows.js +49 -57
- package/es/components/Datagrid/useEditableCell.js +1 -1
- package/es/components/Datagrid/useExpandedRow.js +20 -25
- package/es/components/Datagrid/useFiltering.js +53 -58
- package/es/components/Datagrid/useFlexResize.js +31 -29
- package/es/components/Datagrid/useFloatingScroll.js +40 -38
- package/es/components/Datagrid/useFocusRowExpander.js +16 -15
- package/es/components/Datagrid/useInfiniteScroll.js +22 -20
- package/es/components/Datagrid/useInitialColumnSort.js +22 -21
- package/es/components/Datagrid/useInlineEdit.js +24 -26
- package/es/components/Datagrid/useNestedRowExpander.js +63 -80
- package/es/components/Datagrid/useNestedRows.js +45 -45
- package/es/components/Datagrid/useOnRowClick.js +32 -26
- package/es/components/Datagrid/useParentDimensions.js +35 -37
- package/es/components/Datagrid/useResizeTable.js +11 -9
- package/es/components/Datagrid/useRowExpander.js +30 -27
- package/es/components/Datagrid/useRowIsMouseOver.js +22 -28
- package/es/components/Datagrid/useRowRenderer.js +25 -35
- package/es/components/Datagrid/useRowSize.js +27 -24
- package/es/components/Datagrid/useSelectAllToggle.js +47 -46
- package/es/components/Datagrid/useSelectRows.js +90 -107
- package/es/components/Datagrid/useSkeletonRows.js +14 -25
- package/es/components/Datagrid/useSortableColumns.js +61 -87
- package/es/components/Datagrid/useStickyColumn.js +84 -94
- package/es/components/Datagrid/utils/getAutoSizedColumnWidth.js +5 -16
- package/es/components/Decorator/Decorator.js +3 -3
- package/es/components/DecoratorBase/DecoratorBase.js +94 -88
- package/es/components/DecoratorBase/DecoratorIcon.js +15 -15
- package/es/components/DecoratorBase/utils.js +8 -6
- package/es/components/DecoratorDualButton/DecoratorDualButton.js +4 -4
- package/es/components/DecoratorLink/DecoratorLink.js +4 -4
- package/es/components/DecoratorSingleButton/DecoratorSingleButton.js +4 -4
- package/es/components/DelimitedList/DelimitedList.js +16 -15
- package/es/components/DescriptionList/DescriptionList.js +21 -17
- package/es/components/DescriptionList/DescriptionListBody.js +9 -9
- package/es/components/DescriptionList/DescriptionListCell.js +9 -9
- package/es/components/DescriptionList/DescriptionListRow.js +9 -9
- package/es/components/DescriptionList/constants.js +1 -1
- package/es/components/EditFullPage/EditFullPage.js +16 -10
- package/es/components/EditInPlace/EditInPlace.js +80 -78
- package/es/components/EditSidePanel/EditSidePanel.js +50 -47
- package/es/components/EditTearsheet/EditTearsheet.js +65 -99
- package/es/components/EditTearsheet/EditTearsheetForm.js +36 -28
- package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.js +15 -10
- package/es/components/EditUpdateCards/EditUpdateCards.d.ts +2 -9
- package/es/components/EditUpdateCards/EditUpdateCards.js +42 -31
- package/es/components/EmptyStates/EmptyState.js +38 -34
- package/es/components/EmptyStates/EmptyStateContent.js +29 -21
- package/es/components/EmptyStates/EmptyStateIllustration.js +15 -28
- package/es/components/EmptyStates/EmptyStateV2.js +34 -29
- package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +28 -25
- package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +28 -25
- package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +28 -25
- package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +28 -25
- package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +28 -25
- package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +28 -25
- package/es/components/EmptyStates/assets/ErrorIllustration.js +27 -26
- package/es/components/EmptyStates/assets/NoDataIllustration.js +25 -24
- package/es/components/EmptyStates/assets/NoTagsIllustration.js +54 -53
- package/es/components/EmptyStates/assets/NotFoundIllustration.js +38 -37
- package/es/components/EmptyStates/assets/NotificationsIllustration.js +43 -42
- package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +38 -37
- package/es/components/ExportModal/ExportModal.js +82 -94
- package/es/components/ExpressiveCard/ExpressiveCard.d.ts +2 -10
- package/es/components/ExpressiveCard/ExpressiveCard.js +11 -5
- package/es/components/FeatureFlags/index.js +33 -43
- package/es/components/FilterPanel/FilterPanel.js +12 -12
- package/es/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +20 -20
- package/es/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +21 -25
- package/es/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +13 -13
- package/es/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +54 -60
- package/es/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +15 -15
- package/es/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +13 -13
- package/es/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +21 -25
- package/es/components/FilterSummary/FilterSummary.js +60 -67
- package/es/components/FullPageError/FullPageError.js +28 -26
- package/es/components/FullPageError/assets/Error403SVG.js +4 -2
- package/es/components/FullPageError/assets/Error404SVG.js +4 -2
- package/es/components/FullPageError/assets/ErrorGenericSVG.js +4 -2
- package/es/components/GetStartedCard/GetStartedCard.js +6 -6
- package/es/components/Guidebanner/Guidebanner.js +46 -63
- package/es/components/Guidebanner/GuidebannerElement.js +14 -14
- package/es/components/Guidebanner/GuidebannerElementButton.js +15 -17
- package/es/components/Guidebanner/GuidebannerElementLink.js +9 -9
- package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +18 -18
- package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +18 -18
- package/es/components/HTTPErrors/HTTPErrorContent.js +23 -22
- package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +18 -18
- package/es/components/HTTPErrors/assets/HTTPErrorSvg403.js +83 -81
- package/es/components/HTTPErrors/assets/HTTPErrorSvg404.js +87 -85
- package/es/components/HTTPErrors/assets/HTTPErrorSvgOther.js +83 -81
- package/es/components/ImportModal/ImportModal.js +125 -162
- package/es/components/InlineTip/InlineTip.js +46 -61
- package/es/components/InlineTip/InlineTipButton.js +9 -9
- package/es/components/InlineTip/InlineTipLink.js +12 -13
- package/es/components/InlineTip/utils.js +9 -19
- package/es/components/InterstitialScreen/InterstitialScreen.js +62 -83
- package/es/components/InterstitialScreen/InterstitialScreenBody.js +56 -62
- package/es/components/InterstitialScreen/InterstitialScreenFooter.js +87 -118
- package/es/components/InterstitialScreen/InterstitialScreenHeader.js +29 -25
- package/es/components/MultiAddSelect/MultiAddSelect.js +5 -7
- package/es/components/Nav/Nav.js +39 -43
- package/es/components/Nav/NavItem.js +44 -51
- package/es/components/Nav/NavItemLink.js +9 -8
- package/es/components/Nav/NavList.js +57 -66
- package/es/components/NonLinearReading/NonLinearReading.js +18 -23
- package/es/components/NotificationsPanel/NotificationsPanel.js +178 -258
- package/es/components/NotificationsPanel/utils.js +26 -24
- package/es/components/OptionsTile/OptionsTile.js +90 -82
- package/es/components/PageHeader/PageHeader.js +293 -256
- package/es/components/PageHeader/PageHeaderTitle.js +43 -36
- package/es/components/PageHeader/PageHeaderUtils.js +31 -28
- package/es/components/ProductiveCard/ProductiveCard.d.ts +2 -13
- package/es/components/ProductiveCard/ProductiveCard.js +20 -14
- package/es/components/RemoveModal/RemoveModal.js +46 -49
- package/es/components/Saving/Saving.js +54 -59
- package/es/components/ScrollGradient/ScrollGradient.js +63 -66
- package/es/components/ScrollGradient/constants.js +13 -24
- package/es/components/SearchBar/SearchBar.d.ts +5 -6
- package/es/components/SearchBar/SearchBar.js +62 -68
- package/es/components/SidePanel/SidePanel.d.ts +2 -5
- package/es/components/SidePanel/SidePanel.js +242 -245
- package/es/components/SidePanel/constants.js +1 -1
- package/es/components/SimpleHeader/SimpleHeader.js +22 -25
- package/es/components/SingleAddSelect/SingleAddSelect.js +3 -3
- package/es/components/StatusIcon/StatusIcon.js +195 -281
- package/es/components/StatusIndicator/StatusIndicator.js +21 -24
- package/es/components/StatusIndicator/StatusIndicatorStep.js +18 -18
- package/es/components/StringFormatter/StringFormatter.js +62 -38
- package/es/components/StringFormatter/utils/enums.js +13 -13
- package/es/components/TagOverflow/TagOverflow.js +70 -74
- package/es/components/TagOverflow/TagOverflowModal.js +49 -52
- package/es/components/TagOverflow/TagOverflowPopover.js +63 -61
- package/es/components/TagOverflow/constants.js +1 -1
- package/es/components/TagSet/TagSet.js +104 -130
- package/es/components/TagSet/TagSetModal.js +48 -51
- package/es/components/TagSet/TagSetOverflow.js +54 -50
- package/es/components/Tearsheet/Tearsheet.js +22 -22
- package/es/components/Tearsheet/TearsheetNarrow.js +20 -19
- package/es/components/Tearsheet/TearsheetShell.js +160 -156
- package/es/components/Toolbar/Toolbar.js +44 -47
- package/es/components/Toolbar/ToolbarButton.js +25 -24
- package/es/components/Toolbar/ToolbarGroup.js +9 -8
- package/es/components/TooltipTrigger/TooltipTrigger.js +10 -9
- package/es/components/TruncatedList/TruncatedList.js +44 -61
- package/es/components/UserAvatar/UserAvatar.js +49 -48
- package/es/components/UserProfileImage/UserProfileImage.js +59 -74
- package/es/components/WebTerminal/WebTerminal.js +64 -67
- package/es/components/WebTerminal/WebTerminalContentWrapper.js +16 -11
- package/es/components/WebTerminal/hooks/index.js +21 -23
- package/es/components/_Canary/Canary.js +13 -8
- package/es/global/js/hooks/useActiveElement.js +5 -9
- package/es/global/js/hooks/useClickOutside.js +4 -4
- package/es/global/js/hooks/useControllableState.js +3 -7
- package/es/global/js/hooks/useCreateComponentFocus.js +16 -30
- package/es/global/js/hooks/useCreateComponentStepChange.js +99 -190
- package/es/global/js/hooks/useFocus.js +64 -85
- package/es/global/js/hooks/useIsomorphicEffect.js +1 -1
- package/es/global/js/hooks/useOverflowItems/useOverflowItems.js +48 -58
- package/es/global/js/hooks/useOverflowString.js +13 -24
- package/es/global/js/hooks/usePortalTarget.js +5 -11
- package/es/global/js/hooks/usePrefersReducedMotion.js +12 -12
- package/es/global/js/hooks/usePrefix.js +1 -3
- package/es/global/js/hooks/usePresence.js +8 -12
- package/es/global/js/hooks/usePreviousValue.js +3 -3
- package/es/global/js/hooks/useResetCreateComponent.js +15 -13
- package/es/global/js/hooks/useResizeObserver.js +26 -34
- package/es/global/js/hooks/useRetrieveFormTitles.js +10 -9
- package/es/global/js/hooks/useRetrieveStepData.js +21 -20
- package/es/global/js/hooks/useValidCreateStepCount.js +3 -3
- package/es/global/js/hooks/useWindowResize.js +23 -23
- package/es/global/js/hooks/useWindowScroll.js +15 -18
- package/es/global/js/package-settings.js +43 -56
- package/es/global/js/utils/Wrap.js +19 -18
- package/es/global/js/utils/clamp.js +1 -1
- package/es/global/js/utils/debounce.js +6 -6
- package/es/global/js/utils/deepCloneObject.js +7 -16
- package/es/global/js/utils/deepCompareObject.js +9 -18
- package/es/global/js/utils/devtools.js +3 -2
- package/es/global/js/utils/getFocusableElements.js +2 -13
- package/es/global/js/utils/getNodeTextContent.js +6 -15
- package/es/global/js/utils/getNumberOfHiddenSteps.js +3 -3
- package/es/global/js/utils/getScrollbarWidth.js +3 -3
- package/es/global/js/utils/getSupportedLocale.js +3 -3
- package/es/global/js/utils/lastIndexInArray.js +3 -4
- package/es/global/js/utils/pconsole.js +15 -22
- package/es/global/js/utils/props-helper.js +34 -40
- package/es/global/js/utils/rangeWithCallback.js +2 -2
- package/es/global/js/utils/scrollableAncestor.js +8 -17
- package/es/global/js/utils/throttle.js +4 -4
- package/es/global/js/utils/useId.js +11 -3
- package/es/global/js/utils/uuidv4.js +3 -7
- package/es/global/js/utils/wait.js +1 -3
- package/es/node_modules/@carbon/icons-react/es/Icon.js +17 -19
- package/es/node_modules/@carbon/icons-react/es/generated/bucket-10.js +1263 -1136
- package/es/node_modules/@carbon/icons-react/es/generated/bucket-3.js +1330 -1186
- package/es/node_modules/@carbon/icons-react/es/iconPropTypes-4cbeb95d.js +1 -1
- package/es/node_modules/@carbon/icons-react/node_modules/@carbon/icon-helpers/es/index.js +3 -5
- package/es/node_modules/prop-types/checkPropTypes.js +4 -5
- package/es/node_modules/prop-types/factoryWithThrowingShims.js +1 -1
- package/es/node_modules/prop-types/factoryWithTypeCheckers.js +6 -7
- package/es/settings.js +15 -19
- package/lib/_virtual/_rollupPluginBabelHelpers.js +0 -530
- package/lib/components/APIKeyModal/APIKeyDownloader.js +31 -49
- package/lib/components/APIKeyModal/APIKeyModal.js +163 -216
- package/lib/components/AboutModal/AboutModal.js +49 -51
- package/lib/components/ActionBar/ActionBar.js +61 -55
- package/lib/components/ActionBar/ActionBarItem.js +24 -17
- package/lib/components/ActionBar/ActionBarOverflowItems.js +21 -19
- package/lib/components/ActionSet/ActionSet.js +91 -87
- package/lib/components/AddSelect/AddSelect.js +20 -18
- package/lib/components/AddSelect/AddSelectBody.js +140 -151
- package/lib/components/AddSelect/AddSelectBreadcrumbs.js +21 -14
- package/lib/components/AddSelect/AddSelectColumn.js +96 -122
- package/lib/components/AddSelect/AddSelectFilter.js +71 -78
- package/lib/components/AddSelect/AddSelectFormControl.js +41 -35
- package/lib/components/AddSelect/AddSelectList.js +23 -25
- package/lib/components/AddSelect/AddSelectMetaPanel.js +24 -26
- package/lib/components/AddSelect/AddSelectRow.js +85 -82
- package/lib/components/AddSelect/AddSelectSidebar.js +56 -59
- package/lib/components/AddSelect/AddSelectSort.js +30 -30
- package/lib/components/AddSelect/add-select-utils.js +46 -41
- package/lib/components/AddSelect/hooks/useFocus.js +7 -11
- package/lib/components/AddSelect/hooks/useItemSort.js +13 -14
- package/lib/components/AddSelect/hooks/useParentSelect.js +10 -8
- package/lib/components/AddSelect/hooks/usePath.js +33 -36
- package/lib/components/BigNumbers/BigNumbers.js +42 -45
- package/lib/components/BigNumbers/BigNumbersSkeleton.js +14 -11
- package/lib/components/BigNumbers/constants.js +5 -5
- package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +111 -126
- package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +69 -73
- package/lib/components/Card/Card.d.ts +15 -11
- package/lib/components/Card/Card.js +185 -169
- package/lib/components/Card/CardFooter.js +32 -33
- package/lib/components/Card/CardHeader.js +58 -45
- package/lib/components/Carousel/Carousel.js +101 -117
- package/lib/components/Carousel/CarouselItem.js +8 -7
- package/lib/components/Cascade/Cascade.js +30 -25
- package/lib/components/Checklist/Checklist.js +63 -74
- package/lib/components/Checklist/Checklist.types.js +2 -2
- package/lib/components/Checklist/ChecklistChart.js +21 -30
- package/lib/components/Checklist/ChecklistIcon.js +13 -14
- package/lib/components/Coachmark/Coachmark.js +70 -88
- package/lib/components/Coachmark/CoachmarkDragbar.js +29 -39
- package/lib/components/Coachmark/CoachmarkHeader.js +17 -20
- package/lib/components/Coachmark/CoachmarkOverlay.js +69 -78
- package/lib/components/Coachmark/CoachmarkTagline.js +18 -20
- package/lib/components/Coachmark/utils/constants.js +10 -9
- package/lib/components/Coachmark/utils/context.js +2 -2
- package/lib/components/Coachmark/utils/enums.js +2 -2
- package/lib/components/Coachmark/utils/hooks.js +12 -12
- package/lib/components/CoachmarkBeacon/CoachmarkBeacon.js +14 -14
- package/lib/components/CoachmarkButton/CoachmarkButton.js +9 -8
- package/lib/components/CoachmarkFixed/CoachmarkFixed.js +49 -67
- package/lib/components/CoachmarkOverlayElement/CoachmarkOverlayElement.js +15 -14
- package/lib/components/CoachmarkOverlayElements/CoachmarkOverlayElements.js +53 -71
- package/lib/components/CoachmarkStack/CoachmarkStack.js +63 -81
- package/lib/components/CoachmarkStack/CoachmarkStackHome.js +54 -61
- package/lib/components/ComboButton/ComboButton.js +44 -51
- package/lib/components/ComboButton/ComboButtonItem/index.js +4 -3
- package/lib/components/ConditionBuilder/ConditionBlock/ConditionBlock.js +105 -104
- package/lib/components/ConditionBuilder/ConditionBuilder.js +33 -44
- package/lib/components/ConditionBuilder/ConditionBuilder.types.d.ts +15 -2
- package/lib/components/ConditionBuilder/ConditionBuilderActions/ConditionBuilderActions.js +72 -92
- package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.d.ts +3 -1
- package/lib/components/ConditionBuilder/ConditionBuilderAdd/ConditionBuilderAdd.js +59 -36
- package/lib/components/ConditionBuilder/ConditionBuilderButton/ConditionBuilderButton.js +30 -26
- package/lib/components/ConditionBuilder/ConditionBuilderConnector/ConditionConnector.js +24 -23
- package/lib/components/ConditionBuilder/ConditionBuilderConnector/GroupConnector.js +16 -16
- package/lib/components/ConditionBuilder/ConditionBuilderContent/ConditionBuilderContent.js +99 -106
- package/lib/components/ConditionBuilder/ConditionBuilderContext/ConditionBuilderProvider.js +14 -20
- package/lib/components/ConditionBuilder/ConditionBuilderContext/translationObject.js +1 -1
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItem.js +58 -71
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemDate/ConditionBuilderItemDate.js +29 -38
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemNumber/ConditionBuilderItemNumber.js +17 -18
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOption.js +40 -51
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemOption/ItemOptionForValueField.js +59 -94
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemText/ConditionBuilderItemText.js +14 -13
- package/lib/components/ConditionBuilder/ConditionBuilderItem/ConditionBuilderItemTime/ConditionBuilderItemTime.js +19 -30
- package/lib/components/ConditionBuilder/ConditionGroupBuilder/ConditionGroupBuilder.js +182 -200
- package/lib/components/ConditionBuilder/ConditionPreview/ConditionPreview.js +34 -33
- package/lib/components/ConditionBuilder/utils/handleKeyboardEvents.js +52 -65
- package/lib/components/ConditionBuilder/utils/useDataConfigs.js +11 -30
- package/lib/components/ConditionBuilder/utils/useTranslations.js +7 -6
- package/lib/components/ConditionBuilder/utils/util.js +27 -36
- package/lib/components/CreateFullPage/CreateFullPage.d.ts +5 -1
- package/lib/components/CreateFullPage/CreateFullPage.js +98 -150
- package/lib/components/CreateFullPage/CreateFullPageStep.js +64 -58
- package/lib/components/CreateInfluencer/CreateInfluencer.js +25 -29
- package/lib/components/CreateModal/CreateModal.js +39 -35
- package/lib/components/CreateSidePanel/CreateSidePanel.js +39 -38
- package/lib/components/CreateTearsheet/CreateTearsheet.d.ts +1 -1
- package/lib/components/CreateTearsheet/CreateTearsheet.js +112 -163
- package/lib/components/CreateTearsheet/CreateTearsheetDivider.js +8 -6
- package/lib/components/CreateTearsheet/CreateTearsheetStep.js +72 -68
- package/lib/components/CreateTearsheetNarrow/CreateTearsheetNarrow.js +29 -29
- package/lib/components/DataSpreadsheet/DataSpreadsheet.js +292 -335
- package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +213 -213
- package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +121 -120
- package/lib/components/DataSpreadsheet/hooks/useMoveActiveCell.js +15 -13
- package/lib/components/DataSpreadsheet/hooks/useMultipleKeyTracking.js +35 -53
- package/lib/components/DataSpreadsheet/hooks/useResetSpreadsheetFocus.js +10 -9
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetEdit.js +40 -46
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseMove.js +29 -28
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetMouseUp.js +72 -87
- package/lib/components/DataSpreadsheet/hooks/useSpreadsheetOutsideClick.js +16 -15
- package/lib/components/DataSpreadsheet/utils/checkActiveHeaderCell.js +9 -11
- package/lib/components/DataSpreadsheet/utils/checkForHoldingKey.js +1 -1
- package/lib/components/DataSpreadsheet/utils/checkSelectedHeaderCell.js +10 -11
- package/lib/components/DataSpreadsheet/utils/commonEventHandlers.js +73 -122
- package/lib/components/DataSpreadsheet/utils/createActiveCellFn.js +25 -25
- package/lib/components/DataSpreadsheet/utils/createCellSelectionArea.js +31 -30
- package/lib/components/DataSpreadsheet/utils/getCellSize.js +2 -4
- package/lib/components/DataSpreadsheet/utils/getSelectionAreaPoints.js +9 -9
- package/lib/components/DataSpreadsheet/utils/getSpreadsheetWidth.js +12 -14
- package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionEnter.js +40 -36
- package/lib/components/DataSpreadsheet/utils/handleActiveCellInSelectionTab.js +37 -34
- package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +21 -22
- package/lib/components/DataSpreadsheet/utils/handleEditSubmit.js +37 -34
- package/lib/components/DataSpreadsheet/utils/handleHeaderCellSelection.js +64 -75
- package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +93 -87
- package/lib/components/DataSpreadsheet/utils/moveColumnIndicatorLine.js +29 -26
- package/lib/components/DataSpreadsheet/utils/removeCellSelections.js +9 -11
- package/lib/components/DataSpreadsheet/utils/selectAllCells.js +17 -14
- package/lib/components/Datagrid/Datagrid/Datagrid.js +26 -23
- package/lib/components/Datagrid/Datagrid/DatagridBody.js +7 -6
- package/lib/components/Datagrid/Datagrid/DatagridContent.js +129 -111
- package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +19 -18
- package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +41 -42
- package/lib/components/Datagrid/Datagrid/DatagridHead.js +9 -10
- package/lib/components/Datagrid/Datagrid/DatagridHeaderRow.js +170 -123
- package/lib/components/Datagrid/Datagrid/DatagridRefBody.js +17 -14
- package/lib/components/Datagrid/Datagrid/DatagridRow.js +99 -89
- package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +62 -60
- package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +47 -56
- package/lib/components/Datagrid/Datagrid/DatagridSimpleBody.js +17 -14
- package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +83 -96
- package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +73 -75
- package/lib/components/Datagrid/Datagrid/DraggableElement.js +37 -28
- package/lib/components/Datagrid/Datagrid/addons/AiLabel/DatagridAiLabel.js +6 -4
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +9 -7
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ButtonWrapper.js +17 -19
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +34 -36
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +56 -85
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +86 -104
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +26 -28
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/common.js +1 -3
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +96 -104
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +124 -135
- package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterProvider.js +90 -106
- package/lib/components/Datagrid/Datagrid/addons/Filtering/OverflowCheckboxes.js +40 -45
- package/lib/components/Datagrid/Datagrid/addons/Filtering/constants.js +13 -13
- package/lib/components/Datagrid/Datagrid/addons/Filtering/handleCheckboxChange.js +23 -30
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +2 -2
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +211 -218
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useShouldDisableButtons.js +11 -9
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useSubscribeToEventEmitter.js +4 -3
- package/lib/components/Datagrid/Datagrid/addons/Filtering/utils.js +44 -42
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +28 -17
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +195 -190
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +41 -39
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +7 -9
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +18 -15
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +5 -3
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +84 -73
- package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +22 -26
- package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +23 -27
- package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +19 -18
- package/lib/components/Datagrid/Datagrid/addons/stateReducer.js +211 -173
- package/lib/components/Datagrid/common-column-ids.js +1 -1
- package/lib/components/Datagrid/useActionsColumn.js +80 -60
- package/lib/components/Datagrid/useColumnCenterAlign.js +17 -27
- package/lib/components/Datagrid/useColumnRightAlign.js +17 -28
- package/lib/components/Datagrid/useCustomizeColumns.js +17 -19
- package/lib/components/Datagrid/useDatagrid.js +12 -17
- package/lib/components/Datagrid/useDefaultStringRenderer.js +19 -20
- package/lib/components/Datagrid/useDisableSelectRows.js +49 -57
- package/lib/components/Datagrid/useEditableCell.js +1 -1
- package/lib/components/Datagrid/useExpandedRow.js +20 -25
- package/lib/components/Datagrid/useFiltering.js +51 -56
- package/lib/components/Datagrid/useFlexResize.js +31 -29
- package/lib/components/Datagrid/useFloatingScroll.js +40 -38
- package/lib/components/Datagrid/useFocusRowExpander.js +16 -15
- package/lib/components/Datagrid/useInfiniteScroll.js +22 -20
- package/lib/components/Datagrid/useInitialColumnSort.js +22 -21
- package/lib/components/Datagrid/useInlineEdit.js +24 -26
- package/lib/components/Datagrid/useNestedRowExpander.js +61 -78
- package/lib/components/Datagrid/useNestedRows.js +45 -45
- package/lib/components/Datagrid/useOnRowClick.js +32 -26
- package/lib/components/Datagrid/useParentDimensions.js +35 -37
- package/lib/components/Datagrid/useResizeTable.js +11 -9
- package/lib/components/Datagrid/useRowExpander.js +28 -25
- package/lib/components/Datagrid/useRowIsMouseOver.js +22 -28
- package/lib/components/Datagrid/useRowRenderer.js +25 -35
- package/lib/components/Datagrid/useRowSize.js +26 -23
- package/lib/components/Datagrid/useSelectAllToggle.js +47 -46
- package/lib/components/Datagrid/useSelectRows.js +89 -106
- package/lib/components/Datagrid/useSkeletonRows.js +14 -25
- package/lib/components/Datagrid/useSortableColumns.js +61 -87
- package/lib/components/Datagrid/useStickyColumn.js +84 -94
- package/lib/components/Datagrid/utils/getAutoSizedColumnWidth.js +5 -16
- package/lib/components/Decorator/Decorator.js +3 -3
- package/lib/components/DecoratorBase/DecoratorBase.js +93 -87
- package/lib/components/DecoratorBase/DecoratorIcon.js +14 -14
- package/lib/components/DecoratorBase/utils.js +8 -6
- package/lib/components/DecoratorDualButton/DecoratorDualButton.js +4 -4
- package/lib/components/DecoratorLink/DecoratorLink.js +4 -4
- package/lib/components/DecoratorSingleButton/DecoratorSingleButton.js +4 -4
- package/lib/components/DelimitedList/DelimitedList.js +15 -14
- package/lib/components/DescriptionList/DescriptionList.js +20 -16
- package/lib/components/DescriptionList/DescriptionListBody.js +8 -8
- package/lib/components/DescriptionList/DescriptionListCell.js +8 -8
- package/lib/components/DescriptionList/DescriptionListRow.js +8 -8
- package/lib/components/DescriptionList/constants.js +1 -1
- package/lib/components/EditFullPage/EditFullPage.js +15 -9
- package/lib/components/EditInPlace/EditInPlace.js +79 -77
- package/lib/components/EditSidePanel/EditSidePanel.js +49 -46
- package/lib/components/EditTearsheet/EditTearsheet.js +64 -98
- package/lib/components/EditTearsheet/EditTearsheetForm.js +35 -27
- package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +14 -9
- package/lib/components/EditUpdateCards/EditUpdateCards.d.ts +2 -9
- package/lib/components/EditUpdateCards/EditUpdateCards.js +41 -30
- package/lib/components/EmptyStates/EmptyState.js +37 -33
- package/lib/components/EmptyStates/EmptyStateContent.js +28 -20
- package/lib/components/EmptyStates/EmptyStateIllustration.js +14 -27
- package/lib/components/EmptyStates/EmptyStateV2.js +33 -28
- package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +27 -24
- package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +27 -24
- package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +27 -24
- package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +27 -24
- package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +27 -24
- package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +27 -24
- package/lib/components/EmptyStates/assets/ErrorIllustration.js +26 -25
- package/lib/components/EmptyStates/assets/NoDataIllustration.js +24 -23
- package/lib/components/EmptyStates/assets/NoTagsIllustration.js +53 -52
- package/lib/components/EmptyStates/assets/NotFoundIllustration.js +37 -36
- package/lib/components/EmptyStates/assets/NotificationsIllustration.js +42 -41
- package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +37 -36
- package/lib/components/ExportModal/ExportModal.js +81 -93
- package/lib/components/ExpressiveCard/ExpressiveCard.d.ts +2 -10
- package/lib/components/ExpressiveCard/ExpressiveCard.js +11 -5
- package/lib/components/FeatureFlags/index.js +33 -43
- package/lib/components/FilterPanel/FilterPanel.js +11 -11
- package/lib/components/FilterPanel/FilterPanelAccordion/FilterPanelAccordion.js +19 -19
- package/lib/components/FilterPanel/FilterPanelAccordionItem/FilterPanelAccordionItem.js +20 -24
- package/lib/components/FilterPanel/FilterPanelCheckbox/FilterPanelCheckbox.js +12 -12
- package/lib/components/FilterPanel/FilterPanelCheckboxWithOverflow/FilterPanelCheckboxWithOverflow.js +53 -59
- package/lib/components/FilterPanel/FilterPanelGroup/FilterPanelGroup.js +14 -14
- package/lib/components/FilterPanel/FilterPanelLabel/FilterPanelLabel.js +12 -12
- package/lib/components/FilterPanel/FilterPanelSearch/FilterPanelSearch.js +20 -24
- package/lib/components/FilterSummary/FilterSummary.js +59 -66
- package/lib/components/FullPageError/FullPageError.js +27 -25
- package/lib/components/FullPageError/assets/Error403SVG.js +4 -2
- package/lib/components/FullPageError/assets/Error404SVG.js +4 -2
- package/lib/components/FullPageError/assets/ErrorGenericSVG.js +4 -2
- package/lib/components/GetStartedCard/GetStartedCard.js +5 -5
- package/lib/components/Guidebanner/Guidebanner.js +45 -62
- package/lib/components/Guidebanner/GuidebannerElement.js +13 -13
- package/lib/components/Guidebanner/GuidebannerElementButton.js +14 -16
- package/lib/components/Guidebanner/GuidebannerElementLink.js +8 -8
- package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +17 -17
- package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +17 -17
- package/lib/components/HTTPErrors/HTTPErrorContent.js +22 -21
- package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +17 -17
- package/lib/components/HTTPErrors/assets/HTTPErrorSvg403.js +83 -81
- package/lib/components/HTTPErrors/assets/HTTPErrorSvg404.js +87 -85
- package/lib/components/HTTPErrors/assets/HTTPErrorSvgOther.js +83 -81
- package/lib/components/ImportModal/ImportModal.js +124 -161
- package/lib/components/InlineTip/InlineTip.js +44 -59
- package/lib/components/InlineTip/InlineTipButton.js +8 -8
- package/lib/components/InlineTip/InlineTipLink.js +11 -12
- package/lib/components/InlineTip/utils.js +9 -19
- package/lib/components/InterstitialScreen/InterstitialScreen.js +61 -82
- package/lib/components/InterstitialScreen/InterstitialScreenBody.js +55 -61
- package/lib/components/InterstitialScreen/InterstitialScreenFooter.js +86 -117
- package/lib/components/InterstitialScreen/InterstitialScreenHeader.js +29 -25
- package/lib/components/MultiAddSelect/MultiAddSelect.js +5 -7
- package/lib/components/Nav/Nav.js +38 -42
- package/lib/components/Nav/NavItem.js +43 -50
- package/lib/components/Nav/NavItemLink.js +9 -8
- package/lib/components/Nav/NavList.js +56 -65
- package/lib/components/NonLinearReading/NonLinearReading.js +17 -22
- package/lib/components/NotificationsPanel/NotificationsPanel.js +177 -257
- package/lib/components/NotificationsPanel/utils.js +26 -24
- package/lib/components/OptionsTile/OptionsTile.js +88 -80
- package/lib/components/PageHeader/PageHeader.js +292 -255
- package/lib/components/PageHeader/PageHeaderTitle.js +42 -35
- package/lib/components/PageHeader/PageHeaderUtils.js +31 -28
- package/lib/components/ProductiveCard/ProductiveCard.d.ts +2 -13
- package/lib/components/ProductiveCard/ProductiveCard.js +19 -13
- package/lib/components/RemoveModal/RemoveModal.js +45 -48
- package/lib/components/Saving/Saving.js +51 -56
- package/lib/components/ScrollGradient/ScrollGradient.js +62 -65
- package/lib/components/ScrollGradient/constants.js +13 -24
- package/lib/components/SearchBar/SearchBar.d.ts +5 -6
- package/lib/components/SearchBar/SearchBar.js +61 -67
- package/lib/components/SidePanel/SidePanel.d.ts +2 -5
- package/lib/components/SidePanel/SidePanel.js +243 -244
- package/lib/components/SidePanel/constants.js +1 -1
- package/lib/components/SimpleHeader/SimpleHeader.js +21 -24
- package/lib/components/SingleAddSelect/SingleAddSelect.js +3 -3
- package/lib/components/StatusIcon/StatusIcon.js +194 -280
- package/lib/components/StatusIndicator/StatusIndicator.js +20 -23
- package/lib/components/StatusIndicator/StatusIndicatorStep.js +17 -17
- package/lib/components/StringFormatter/StringFormatter.js +60 -36
- package/lib/components/StringFormatter/utils/enums.js +13 -13
- package/lib/components/TagOverflow/TagOverflow.js +69 -73
- package/lib/components/TagOverflow/TagOverflowModal.js +48 -51
- package/lib/components/TagOverflow/TagOverflowPopover.js +62 -60
- package/lib/components/TagOverflow/constants.js +1 -1
- package/lib/components/TagSet/TagSet.js +103 -129
- package/lib/components/TagSet/TagSetModal.js +47 -50
- package/lib/components/TagSet/TagSetOverflow.js +53 -49
- package/lib/components/Tearsheet/Tearsheet.js +21 -21
- package/lib/components/Tearsheet/TearsheetNarrow.js +19 -18
- package/lib/components/Tearsheet/TearsheetShell.js +156 -152
- package/lib/components/Toolbar/Toolbar.js +43 -46
- package/lib/components/Toolbar/ToolbarButton.js +24 -23
- package/lib/components/Toolbar/ToolbarGroup.js +8 -7
- package/lib/components/TooltipTrigger/TooltipTrigger.js +9 -8
- package/lib/components/TruncatedList/TruncatedList.js +43 -60
- package/lib/components/UserAvatar/UserAvatar.js +48 -47
- package/lib/components/UserProfileImage/UserProfileImage.js +58 -73
- package/lib/components/WebTerminal/WebTerminal.js +63 -66
- package/lib/components/WebTerminal/WebTerminalContentWrapper.js +15 -10
- package/lib/components/WebTerminal/hooks/index.js +21 -23
- package/lib/components/_Canary/Canary.js +12 -7
- package/lib/global/js/hooks/useActiveElement.js +5 -9
- package/lib/global/js/hooks/useClickOutside.js +4 -4
- package/lib/global/js/hooks/useControllableState.js +3 -7
- package/lib/global/js/hooks/useCreateComponentFocus.js +16 -30
- package/lib/global/js/hooks/useCreateComponentStepChange.js +99 -190
- package/lib/global/js/hooks/useFocus.js +64 -85
- package/lib/global/js/hooks/useIsomorphicEffect.js +1 -1
- package/lib/global/js/hooks/useOverflowItems/useOverflowItems.js +48 -58
- package/lib/global/js/hooks/useOverflowString.js +13 -24
- package/lib/global/js/hooks/usePortalTarget.js +5 -11
- package/lib/global/js/hooks/usePrefersReducedMotion.js +12 -12
- package/lib/global/js/hooks/usePrefix.js +1 -3
- package/lib/global/js/hooks/usePresence.js +8 -12
- package/lib/global/js/hooks/usePreviousValue.js +3 -3
- package/lib/global/js/hooks/useResetCreateComponent.js +15 -13
- package/lib/global/js/hooks/useResizeObserver.js +26 -34
- package/lib/global/js/hooks/useRetrieveFormTitles.js +10 -9
- package/lib/global/js/hooks/useRetrieveStepData.js +21 -20
- package/lib/global/js/hooks/useValidCreateStepCount.js +3 -3
- package/lib/global/js/hooks/useWindowResize.js +23 -23
- package/lib/global/js/hooks/useWindowScroll.js +15 -18
- package/lib/global/js/package-settings.js +43 -56
- package/lib/global/js/utils/Wrap.js +18 -17
- package/lib/global/js/utils/clamp.js +1 -1
- package/lib/global/js/utils/debounce.js +6 -6
- package/lib/global/js/utils/deepCloneObject.js +7 -16
- package/lib/global/js/utils/deepCompareObject.js +9 -18
- package/lib/global/js/utils/devtools.js +3 -2
- package/lib/global/js/utils/getFocusableElements.js +2 -13
- package/lib/global/js/utils/getNodeTextContent.js +6 -15
- package/lib/global/js/utils/getNumberOfHiddenSteps.js +3 -3
- package/lib/global/js/utils/getScrollbarWidth.js +3 -3
- package/lib/global/js/utils/getSupportedLocale.js +3 -3
- package/lib/global/js/utils/lastIndexInArray.js +3 -4
- package/lib/global/js/utils/pconsole.js +15 -22
- package/lib/global/js/utils/props-helper.js +34 -40
- package/lib/global/js/utils/rangeWithCallback.js +2 -2
- package/lib/global/js/utils/scrollableAncestor.js +8 -17
- package/lib/global/js/utils/throttle.js +4 -4
- package/lib/global/js/utils/useId.js +11 -3
- package/lib/global/js/utils/uuidv4.js +3 -7
- package/lib/global/js/utils/wait.js +1 -3
- package/lib/index.js +1 -4
- package/lib/node_modules/@carbon/icons-react/es/Icon.js +17 -19
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-10.js +1263 -1136
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-3.js +1330 -1186
- package/lib/node_modules/@carbon/icons-react/es/iconPropTypes-4cbeb95d.js +1 -1
- package/lib/node_modules/@carbon/icons-react/node_modules/@carbon/icon-helpers/es/index.js +3 -5
- package/lib/node_modules/prop-types/checkPropTypes.js +4 -5
- package/lib/node_modules/prop-types/factoryWithThrowingShims.js +1 -1
- package/lib/node_modules/prop-types/factoryWithTypeCheckers.js +6 -7
- package/lib/settings.js +15 -19
- package/package.json +13 -13
- package/scss/components/Datagrid/styles/_useSortableColumns.scss +3 -0
- package/scss/components/NotificationsPanel/_notifications-panel.scss +16 -4
- package/scss/components/StringFormatter/_string-formatter.scss +18 -2
- package/scss/components/Tearsheet/_tearsheet.scss +1 -22
- package/telemetry.yml +2 -3
- package/es/global/js/utils/checkForOverflow.js +0 -21
- package/lib/global/js/utils/checkForOverflow.js +0 -23
@@ -25,12 +25,11 @@ var usePreviousValue = require('../../global/js/hooks/usePreviousValue.js');
|
|
25
25
|
var usePrefersReducedMotion = require('../../global/js/hooks/usePrefersReducedMotion.js');
|
26
26
|
var usePresence = require('../../global/js/hooks/usePresence.js');
|
27
27
|
|
28
|
-
var
|
29
|
-
|
30
|
-
|
31
|
-
var componentName = 'SidePanel';
|
28
|
+
var _ArrowLeft;
|
29
|
+
const blockClass = `${settings.pkg.prefix}--side-panel`;
|
30
|
+
const componentName = 'SidePanel';
|
32
31
|
// Default values for props
|
33
|
-
|
32
|
+
const defaults = {
|
34
33
|
animateTitle: true,
|
35
34
|
closeIconDescription: 'Close',
|
36
35
|
currentStep: 0,
|
@@ -42,133 +41,115 @@ var defaults = {
|
|
42
41
|
/**
|
43
42
|
* Side panels keep users in-context of a page while performing tasks like navigating, editing, viewing details, or configuring something new.
|
44
43
|
*/
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
closeIconDescription =
|
56
|
-
condensedActions
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
var labelTextRef = React.useRef(null);
|
96
|
-
var subtitleRef = React.useRef(null);
|
97
|
-
var previousState = usePreviousValue.usePreviousValue({
|
98
|
-
size: size,
|
99
|
-
open: open,
|
100
|
-
currentStep: currentStep
|
44
|
+
const SidePanelBase = /*#__PURE__*/React.forwardRef((_ref, ref) => {
|
45
|
+
let {
|
46
|
+
// The component props, in alphabetical order (for consistency).
|
47
|
+
|
48
|
+
actionToolbarButtons,
|
49
|
+
actions,
|
50
|
+
aiLabel,
|
51
|
+
animateTitle = defaults.animateTitle,
|
52
|
+
children,
|
53
|
+
className,
|
54
|
+
closeIconDescription = defaults.closeIconDescription,
|
55
|
+
condensedActions,
|
56
|
+
currentStep = defaults.currentStep,
|
57
|
+
decorator,
|
58
|
+
id = blockClass,
|
59
|
+
includeOverlay,
|
60
|
+
labelText,
|
61
|
+
navigationBackIconDescription = defaults.navigationBackIconDescription,
|
62
|
+
onNavigationBack,
|
63
|
+
onRequestClose,
|
64
|
+
onUnmount,
|
65
|
+
open,
|
66
|
+
placement = defaults.placement,
|
67
|
+
preventCloseOnClickOutside,
|
68
|
+
selectorPageContent,
|
69
|
+
selectorPrimaryFocus,
|
70
|
+
size = defaults.size,
|
71
|
+
slideIn,
|
72
|
+
slug,
|
73
|
+
subtitle,
|
74
|
+
title,
|
75
|
+
launcherButtonRef,
|
76
|
+
// Collect any other property values passed in.
|
77
|
+
...rest
|
78
|
+
} = _ref;
|
79
|
+
const [animationComplete, setAnimationComplete] = React.useState(false);
|
80
|
+
const localRef = React.useRef(null);
|
81
|
+
const sidePanelRef = ref || localRef;
|
82
|
+
const overlayRef = React.useRef(null);
|
83
|
+
const innerContentRef = React.useRef(null);
|
84
|
+
const closeRef = React.useRef(null);
|
85
|
+
const animatedScrollRef = React.useRef(null);
|
86
|
+
const headerRef = React.useRef(null);
|
87
|
+
const titleRef = React.useRef(null);
|
88
|
+
const labelTextRef = React.useRef(null);
|
89
|
+
const subtitleRef = React.useRef(null);
|
90
|
+
const previousState = usePreviousValue.usePreviousValue({
|
91
|
+
size,
|
92
|
+
open,
|
93
|
+
currentStep
|
101
94
|
});
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
var shouldReduceMotion = usePrefersReducedMotion.usePrefersReducedMotion();
|
116
|
-
var exitAnimationName = shouldReduceMotion ? 'side-panel-exit-reduced' : placement === 'right' ? 'side-panel-exit-right' : 'side-panel-exit-left';
|
117
|
-
var _usePresence = usePresence.usePresence(open, sidePanelRef, exitAnimationName),
|
118
|
-
shouldRender = _usePresence.shouldRender;
|
95
|
+
const [scrollAnimationDistance, setScrollAnimationDistance] = React.useState(-1);
|
96
|
+
const [doAnimateTitle, setDoAnimateTitle] = React.useState(true);
|
97
|
+
const {
|
98
|
+
firstElement,
|
99
|
+
keyDownListener
|
100
|
+
} = useFocus.useFocus(sidePanelRef);
|
101
|
+
const panelRefValue = sidePanelRef.current;
|
102
|
+
const previousOpen = usePreviousValue.usePreviousValue(open);
|
103
|
+
const shouldReduceMotion = usePrefersReducedMotion.usePrefersReducedMotion();
|
104
|
+
const exitAnimationName = shouldReduceMotion ? 'side-panel-exit-reduced' : placement === 'right' ? 'side-panel-exit-right' : 'side-panel-exit-left';
|
105
|
+
const {
|
106
|
+
shouldRender
|
107
|
+
} = usePresence.usePresence(open, sidePanelRef, exitAnimationName);
|
119
108
|
|
120
109
|
// Title animation on scroll related state
|
121
|
-
|
122
|
-
|
123
|
-
labelTextHeight = _useState8[0],
|
124
|
-
setLabelTextHeight = _useState8[1];
|
125
|
-
var handleEscapeKey = function handleEscapeKey(event) {
|
110
|
+
const [labelTextHeight, setLabelTextHeight] = React.useState(0);
|
111
|
+
const handleEscapeKey = event => {
|
126
112
|
if (event.key === 'Escape' && open) {
|
127
|
-
onRequestClose
|
113
|
+
onRequestClose?.();
|
128
114
|
}
|
129
115
|
};
|
130
|
-
React.useEffect(
|
131
|
-
if (open && !
|
116
|
+
React.useEffect(() => {
|
117
|
+
if (open && !titleRef?.current) {
|
132
118
|
setDoAnimateTitle(false);
|
133
119
|
} else {
|
134
120
|
setDoAnimateTitle(animateTitle);
|
135
121
|
}
|
136
122
|
}, [animateTitle, open]);
|
137
|
-
|
138
|
-
if (subtitleRef
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
subtitleEl === null || subtitleEl === void 0 || (_subtitleEl$style = subtitleEl.style) === null || _subtitleEl$style === void 0 || _subtitleEl$style.setProperty('margin-top', "".concat(-calculatedMargin, "px"));
|
123
|
+
const titleItemsStyles = React.useCallback(progress => {
|
124
|
+
if (subtitleRef?.current) {
|
125
|
+
const subtitleEl = subtitleRef?.current;
|
126
|
+
const height = subtitleEl?.clientHeight;
|
127
|
+
const calculatedMargin = height * progress;
|
128
|
+
subtitleEl?.style?.setProperty('margin-top', `${-calculatedMargin}px`);
|
144
129
|
}
|
145
|
-
if (labelTextRef
|
146
|
-
|
147
|
-
|
148
|
-
labelTextRef === null || labelTextRef === void 0 || (_labelTextRef$current = labelTextRef.current) === null || _labelTextRef$current === void 0 || (_labelTextRef$current = _labelTextRef$current.style) === null || _labelTextRef$current === void 0 || _labelTextRef$current.setProperty('margin-top', "".concat(-_calculatedMargin, "px"));
|
130
|
+
if (labelTextRef?.current) {
|
131
|
+
const calculatedMargin = labelTextHeight * progress;
|
132
|
+
labelTextRef?.current?.style?.setProperty('margin-top', `${-calculatedMargin}px`);
|
149
133
|
}
|
150
134
|
}, [labelTextHeight]);
|
151
|
-
React.useEffect(
|
152
|
-
if (open && animateTitle && labelTextRef
|
153
|
-
|
154
|
-
setLabelTextHeight(Number((labelTextRef === null || labelTextRef === void 0 || (_labelTextRef$current2 = labelTextRef.current) === null || _labelTextRef$current2 === void 0 ? void 0 : _labelTextRef$current2.clientHeight) || null));
|
135
|
+
React.useEffect(() => {
|
136
|
+
if (open && animateTitle && labelTextRef?.current) {
|
137
|
+
setLabelTextHeight(Number(labelTextRef?.current?.clientHeight || null));
|
155
138
|
}
|
156
139
|
}, [animateTitle, labelTextRef, open]);
|
157
|
-
|
158
|
-
if (doAnimateTitle && innerContentRef
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
panelRefValue === null || panelRefValue === void 0 || panelRefValue.style.setProperty("--".concat(blockClass, "--scroll-animation-progress"), animationProgress.toString());
|
140
|
+
const handleScroll = React.useCallback(() => {
|
141
|
+
if (doAnimateTitle && innerContentRef?.current) {
|
142
|
+
const scrollTop = innerContentRef?.current?.scrollTop;
|
143
|
+
const animationProgress = Math.min(Number(scrollTop), scrollAnimationDistance) / scrollAnimationDistance;
|
144
|
+
panelRefValue?.style.setProperty(`--${blockClass}--scroll-animation-progress`, animationProgress.toString());
|
163
145
|
titleItemsStyles(animationProgress);
|
164
146
|
}
|
165
|
-
}, [doAnimateTitle, panelRefValue
|
147
|
+
}, [doAnimateTitle, panelRefValue?.style, scrollAnimationDistance, titleItemsStyles]);
|
166
148
|
|
167
149
|
// scroll panel to top going between steps
|
168
|
-
React.useEffect(
|
150
|
+
React.useEffect(() => {
|
169
151
|
if (sidePanelRef && panelRefValue) {
|
170
|
-
|
171
|
-
var scrollableSection = (_animatedScrollRef$cu = animatedScrollRef.current) !== null && _animatedScrollRef$cu !== void 0 ? _animatedScrollRef$cu : innerContentRef.current;
|
152
|
+
const scrollableSection = animatedScrollRef.current ?? innerContentRef.current;
|
172
153
|
if (previousState && previousState['currentStep'] !== currentStep && scrollableSection) {
|
173
154
|
scrollableSection.scrollTop = 0;
|
174
155
|
}
|
@@ -184,41 +165,38 @@ exports.SidePanel = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
184
165
|
|
185
166
|
// Add console warning if labelText is provided without a title.
|
186
167
|
// This combination is not allowed.
|
187
|
-
React.useEffect(
|
168
|
+
React.useEffect(() => {
|
188
169
|
if (!title && labelText) {
|
189
|
-
console.warn(
|
170
|
+
console.warn(`${componentName}: The prop \`labelText\` was provided without a \`title\`. It is required to have a \`title\` when using the \`labelText\` prop.`);
|
190
171
|
}
|
191
172
|
}, [labelText, title]);
|
192
|
-
React.useEffect(
|
173
|
+
React.useEffect(() => {
|
193
174
|
if (previousOpen && !open && launcherButtonRef) {
|
194
|
-
setTimeout(
|
195
|
-
|
196
|
-
launcherButtonRef === null || launcherButtonRef === void 0 || (_launcherButtonRef$cu = launcherButtonRef.current) === null || _launcherButtonRef$cu === void 0 || _launcherButtonRef$cu.focus();
|
175
|
+
setTimeout(() => {
|
176
|
+
launcherButtonRef?.current?.focus();
|
197
177
|
}, 0);
|
198
178
|
}
|
199
179
|
}, [launcherButtonRef, open, previousOpen]);
|
200
|
-
|
201
|
-
|
202
|
-
if (panelRefValue && open && animateTitle && animationComplete && titleRef
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
var subtitleHeight = (_subtitleRef$current$ = subtitleRef === null || subtitleRef === void 0 || (_subtitleRef$current = subtitleRef.current) === null || _subtitleRef$current === void 0 ? void 0 : _subtitleRef$current.offsetHeight) !== null && _subtitleRef$current$ !== void 0 ? _subtitleRef$current$ : 0;
|
180
|
+
const checkSetDoAnimateTitle = () => {
|
181
|
+
let canDoAnimateTitle = false;
|
182
|
+
if (panelRefValue && open && animateTitle && animationComplete && titleRef?.current && title && title.length && !shouldReduceMotion) {
|
183
|
+
const titleEl = titleRef.current;
|
184
|
+
const labelHeight = labelTextRef?.current?.offsetHeight ?? 0;
|
185
|
+
const subtitleHeight = subtitleRef?.current?.offsetHeight ?? 0;
|
207
186
|
|
208
187
|
// Adjusts space at bottom of titles by changing where scrolling finishes
|
209
188
|
// Styles use border to save use of get computed style
|
210
|
-
|
211
|
-
|
212
|
-
setScrollAnimationDistance(
|
189
|
+
const titleVerticalBorder = actionToolbarButtons ? titleEl.offsetHeight - titleEl.clientHeight : 0;
|
190
|
+
const scrollAnimationDistance = labelHeight + subtitleHeight + titleVerticalBorder;
|
191
|
+
setScrollAnimationDistance(scrollAnimationDistance);
|
213
192
|
|
214
193
|
// used to calculate the header moves
|
215
|
-
panelRefValue
|
216
|
-
|
194
|
+
panelRefValue?.style.setProperty(`--${blockClass}--scroll-animation-distance`, scrollAnimationDistance.toString());
|
195
|
+
const scrollEl = innerContentRef.current;
|
217
196
|
if (scrollEl) {
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
canDoAnimateTitle = (!!labelText || !!actionToolbarButtons || !!subtitle) && scrollEl.scrollHeight - scrollEl.clientHeight >= _scrollAnimationDistance + innerPaddingHeight;
|
197
|
+
const innerComputed = window?.getComputedStyle(innerContentRef.current);
|
198
|
+
const innerPaddingHeight = innerComputed ? parseFloat(innerComputed?.paddingTop) + parseFloat(innerComputed?.paddingBottom) : 0;
|
199
|
+
canDoAnimateTitle = (!!labelText || !!actionToolbarButtons || !!subtitle) && scrollEl.scrollHeight - scrollEl.clientHeight >= scrollAnimationDistance + innerPaddingHeight;
|
222
200
|
}
|
223
201
|
}
|
224
202
|
if (doAnimateTitle !== canDoAnimateTitle) {
|
@@ -226,15 +204,15 @@ exports.SidePanel = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
226
204
|
setDoAnimateTitle(canDoAnimateTitle);
|
227
205
|
}
|
228
206
|
};
|
229
|
-
React.useEffect(
|
207
|
+
React.useEffect(() => {
|
230
208
|
if (!doAnimateTitle && sidePanelRef.current) {
|
231
|
-
panelRefValue
|
209
|
+
panelRefValue?.style.setProperty(`--${blockClass}--scroll-animation-progress`, '0');
|
232
210
|
}
|
233
|
-
}, [doAnimateTitle, handleScroll, sidePanelRef, innerContentRef, open, panelRefValue
|
211
|
+
}, [doAnimateTitle, handleScroll, sidePanelRef, innerContentRef, open, panelRefValue?.style]);
|
234
212
|
|
235
213
|
// Calculate scroll distances
|
236
|
-
React.useEffect(
|
237
|
-
if (panelRefValue && open && animateTitle && animationComplete && titleRef
|
214
|
+
React.useEffect(() => {
|
215
|
+
if (panelRefValue && open && animateTitle && animationComplete && titleRef?.current && title && title.length && !shouldReduceMotion) {
|
238
216
|
checkSetDoAnimateTitle();
|
239
217
|
}
|
240
218
|
|
@@ -242,13 +220,13 @@ exports.SidePanel = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
242
220
|
}, [open, doAnimateTitle /* use do instead of animateTitle directly */, animationComplete, handleScroll, title, size, shouldReduceMotion, id]);
|
243
221
|
|
244
222
|
// click outside functionality if `includeOverlay` prop is set
|
245
|
-
React.useEffect(
|
246
|
-
|
223
|
+
React.useEffect(() => {
|
224
|
+
const handleOutsideClick = event => {
|
247
225
|
if (panelRefValue && overlayRef.current && overlayRef.current.contains(event.target) && onRequestClose) {
|
248
226
|
onRequestClose();
|
249
227
|
}
|
250
228
|
};
|
251
|
-
|
229
|
+
const bodyElement = document.body;
|
252
230
|
if (includeOverlay && open) {
|
253
231
|
bodyElement.style.overflow = 'hidden';
|
254
232
|
} else if (includeOverlay && !open) {
|
@@ -257,38 +235,38 @@ exports.SidePanel = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
257
235
|
if (includeOverlay && !preventCloseOnClickOutside) {
|
258
236
|
document.addEventListener('click', handleOutsideClick);
|
259
237
|
}
|
260
|
-
return
|
261
|
-
|
238
|
+
return () => {
|
239
|
+
const bodyElement = document.body;
|
262
240
|
bodyElement.style.overflow = '';
|
263
241
|
document.removeEventListener('click', handleOutsideClick);
|
264
242
|
};
|
265
243
|
}, [includeOverlay, onRequestClose, open, preventCloseOnClickOutside, onUnmount, sidePanelRef, panelRefValue]);
|
266
244
|
|
267
245
|
// initializes the side panel to close
|
268
|
-
|
246
|
+
const onAnimationEnd = () => {
|
269
247
|
if (!open) {
|
270
|
-
onUnmount
|
248
|
+
onUnmount?.();
|
271
249
|
}
|
272
250
|
setAnimationComplete(!animationComplete);
|
273
251
|
};
|
274
252
|
|
275
253
|
// Set the internal state `animationComplete` to true if
|
276
254
|
// prefers reduced motion is true
|
277
|
-
React.useEffect(
|
255
|
+
React.useEffect(() => {
|
278
256
|
if (shouldReduceMotion) {
|
279
257
|
setAnimationComplete(true);
|
280
258
|
}
|
281
259
|
}, [shouldReduceMotion]);
|
282
260
|
|
283
261
|
// initializes the side panel to open
|
284
|
-
|
262
|
+
const onAnimationStart = () => {
|
285
263
|
setAnimationComplete(false);
|
286
264
|
};
|
287
265
|
|
288
266
|
// used to reset margins of the slide in panel when closed/closing
|
289
|
-
React.useEffect(
|
267
|
+
React.useEffect(() => {
|
290
268
|
if (!open && slideIn) {
|
291
|
-
|
269
|
+
const pageContentElement = selectorPageContent ? document.querySelector(selectorPageContent) : null;
|
292
270
|
if (placement && placement === 'right' && pageContentElement) {
|
293
271
|
pageContentElement.style.marginInlineEnd = '0';
|
294
272
|
} else if (pageContentElement) {
|
@@ -296,16 +274,16 @@ exports.SidePanel = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
296
274
|
}
|
297
275
|
}
|
298
276
|
}, [open, placement, selectorPageContent, slideIn]);
|
299
|
-
React.useEffect(
|
277
|
+
React.useEffect(() => {
|
300
278
|
if (!open && previousState && previousState['open'] && shouldReduceMotion) {
|
301
|
-
onUnmount
|
279
|
+
onUnmount?.();
|
302
280
|
}
|
303
281
|
}, [open, onUnmount, shouldReduceMotion, previousState]);
|
304
282
|
|
305
283
|
// used to set margins of content for slide in panel version
|
306
|
-
React.useEffect(
|
284
|
+
React.useEffect(() => {
|
307
285
|
if (open && slideIn) {
|
308
|
-
|
286
|
+
const pageContentElement = selectorPageContent ? document.querySelector(selectorPageContent) : null;
|
309
287
|
if (pageContentElement) {
|
310
288
|
pageContentElement.style.inlineSize = 'auto';
|
311
289
|
} else {
|
@@ -313,128 +291,136 @@ exports.SidePanel = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
313
291
|
}
|
314
292
|
if (placement && placement === 'right' && pageContentElement) {
|
315
293
|
pageContentElement.style.marginInlineEnd = '0';
|
316
|
-
pageContentElement.style.transition = !shouldReduceMotion ?
|
294
|
+
pageContentElement.style.transition = !shouldReduceMotion ? `margin-inline-end ${carbonMotion.moderate02}` : '';
|
317
295
|
pageContentElement.style.marginInlineEnd = constants.SIDE_PANEL_SIZES[size];
|
318
296
|
} else if (pageContentElement) {
|
319
297
|
pageContentElement.style.marginInlineStart = '0';
|
320
|
-
pageContentElement.style.transition = !shouldReduceMotion ?
|
298
|
+
pageContentElement.style.transition = !shouldReduceMotion ? `margin-inline-start ${carbonMotion.moderate02}` : '';
|
321
299
|
pageContentElement.style.marginInlineStart = constants.SIDE_PANEL_SIZES[size];
|
322
300
|
}
|
323
301
|
}
|
324
302
|
}, [slideIn, selectorPageContent, placement, size, shouldReduceMotion, open]);
|
325
|
-
React.useEffect(
|
303
|
+
React.useEffect(() => {
|
326
304
|
if (open && animationComplete) {
|
327
|
-
if (selectorPrimaryFocus && useFocus.getSpecificElement(sidePanelRef
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
setTimeout(function () {
|
332
|
-
return primeFocusEl === null || primeFocusEl === void 0 ? void 0 : primeFocusEl.focus();
|
333
|
-
}, 0);
|
305
|
+
if (selectorPrimaryFocus && useFocus.getSpecificElement(sidePanelRef?.current, selectorPrimaryFocus)) {
|
306
|
+
const primeFocusEl = useFocus.getSpecificElement(sidePanelRef?.current, selectorPrimaryFocus);
|
307
|
+
if (primeFocusEl && window?.getComputedStyle(primeFocusEl)?.display !== 'none') {
|
308
|
+
setTimeout(() => primeFocusEl?.focus(), 0);
|
334
309
|
}
|
335
310
|
} else if (!slideIn) {
|
336
|
-
setTimeout(
|
337
|
-
return firstElement === null || firstElement === void 0 ? void 0 : firstElement.focus();
|
338
|
-
}, 0);
|
311
|
+
setTimeout(() => firstElement?.focus(), 0);
|
339
312
|
}
|
340
313
|
}
|
341
314
|
}, [animationComplete, firstElement, open, selectorPrimaryFocus, sidePanelRef, slideIn]);
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
}
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
}
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
}
|
357
|
-
};
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
315
|
+
const primaryActionContainerClassNames = cx([`${blockClass}__actions-container`, {
|
316
|
+
[`${blockClass}__actions-container--condensed`]: condensedActions
|
317
|
+
}]);
|
318
|
+
const mainPanelClassNames = cx([blockClass, className, `${blockClass}`, `${blockClass}--${size}`, {
|
319
|
+
[`${blockClass}--right-placement`]: placement === 'right',
|
320
|
+
[`${blockClass}--left-placement`]: placement === 'left',
|
321
|
+
[`${blockClass}--slide-in`]: slideIn,
|
322
|
+
[`${blockClass}--has-decorator`]: decorator,
|
323
|
+
[`${blockClass}--has-slug`]: slug,
|
324
|
+
[`${blockClass}--has-ai-label`]: aiLabel,
|
325
|
+
[`${blockClass}--condensed-actions`]: condensedActions,
|
326
|
+
[`${blockClass}--has-overlay`]: includeOverlay,
|
327
|
+
[`${blockClass}--open`]: open,
|
328
|
+
[`${blockClass}--closing`]: !open,
|
329
|
+
[`${blockClass}--reduced-motion`]: shouldReduceMotion
|
330
|
+
}]);
|
331
|
+
const renderTitle = () => /*#__PURE__*/React.createElement("div", {
|
332
|
+
className: cx(`${blockClass}__title`, {
|
333
|
+
[`${blockClass}__title--no-label`]: !labelTextRef.current
|
334
|
+
}),
|
335
|
+
ref: titleRef
|
336
|
+
}, /*#__PURE__*/React.createElement(react.Heading, {
|
337
|
+
className: `${blockClass}__title-text`,
|
338
|
+
title: title,
|
339
|
+
"aria-hidden": false
|
340
|
+
}, title), doAnimateTitle && !shouldReduceMotion && /*#__PURE__*/React.createElement(react.Heading, {
|
341
|
+
className: `${blockClass}__collapsed-title-text`,
|
342
|
+
title: title,
|
343
|
+
"aria-hidden": true
|
344
|
+
}, title));
|
345
|
+
const renderHeader = () => {
|
346
|
+
const closeSize = actions && actions.length && /l/.test(size) ? 'md' : 'sm';
|
347
|
+
let normalizedDecorator;
|
362
348
|
/**
|
363
349
|
* slug is deprecated
|
364
350
|
* can remove this condition in future release
|
365
351
|
*/
|
366
|
-
if (slug &&
|
352
|
+
if (slug && slug['type']?.displayName === 'AILabel') {
|
367
353
|
normalizedDecorator = /*#__PURE__*/React.cloneElement(slug, {
|
368
354
|
// slug size is sm unless actions and size > md
|
369
355
|
size: closeSize
|
370
356
|
});
|
371
357
|
}
|
372
|
-
if (aiLabel &&
|
358
|
+
if (aiLabel && aiLabel['type']?.displayName === 'AILabel') {
|
373
359
|
normalizedDecorator = /*#__PURE__*/React.cloneElement(aiLabel, {
|
374
360
|
// aiLabel size is sm unless actions and size > md
|
375
361
|
size: closeSize
|
376
362
|
});
|
377
363
|
}
|
378
|
-
if (
|
364
|
+
if (decorator?.['type']?.displayName === 'AILabel') {
|
379
365
|
normalizedDecorator = /*#__PURE__*/React.cloneElement(decorator, {
|
380
366
|
// decorator size is sm unless actions and size > md
|
381
367
|
size: closeSize
|
382
368
|
});
|
383
369
|
}
|
384
370
|
return /*#__PURE__*/React.createElement("div", {
|
385
|
-
className: cx(
|
371
|
+
className: cx(`${blockClass}__header`, {
|
372
|
+
[`${blockClass}__header--on-detail-step`]: currentStep > 0,
|
373
|
+
[`${blockClass}__header--no-title-animation`]: !animateTitle,
|
374
|
+
[`${blockClass}__header--reduced-motion`]: shouldReduceMotion,
|
375
|
+
[`${blockClass}__header--has-title`]: title
|
376
|
+
}),
|
386
377
|
ref: headerRef
|
387
|
-
}, currentStep > 0 && /*#__PURE__*/React.createElement(react.
|
378
|
+
}, currentStep > 0 && /*#__PURE__*/React.createElement(react.IconButton, {
|
388
379
|
kind: "ghost",
|
389
380
|
size: closeSize,
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
}
|
396
|
-
iconDescription: navigationBackIconDescription,
|
397
|
-
className: "".concat(blockClass, "__navigation-back-button"),
|
398
|
-
onClick: onNavigationBack,
|
399
|
-
"aria-label": navigationBackIconDescription
|
400
|
-
}), title && title.length && labelText && labelText.length && /*#__PURE__*/React.createElement("p", {
|
401
|
-
className: "".concat(blockClass, "__label-text"),
|
381
|
+
align: "bottom",
|
382
|
+
label: navigationBackIconDescription,
|
383
|
+
className: `${blockClass}__navigation-back-button`,
|
384
|
+
onClick: onNavigationBack
|
385
|
+
}, _ArrowLeft || (_ArrowLeft = /*#__PURE__*/React.createElement(icons.ArrowLeft, null))), title && title.length && labelText && labelText.length && /*#__PURE__*/React.createElement("p", {
|
386
|
+
className: `${blockClass}__label-text`,
|
402
387
|
ref: labelTextRef
|
403
388
|
}, labelText), title && title.length && renderTitle(), /*#__PURE__*/React.createElement("div", {
|
404
|
-
className:
|
389
|
+
className: `${blockClass}__decorator-and-close`
|
405
390
|
}, normalizedDecorator, /*#__PURE__*/React.createElement(react.IconButton, {
|
406
|
-
className:
|
391
|
+
className: `${blockClass}__close-button`,
|
407
392
|
label: closeIconDescription,
|
408
393
|
onClick: onRequestClose,
|
409
394
|
onKeyDown: slideIn ? undefined : handleEscapeKey,
|
410
|
-
title: closeIconDescription,
|
411
|
-
"aria-label": closeIconDescription,
|
412
395
|
ref: closeRef,
|
413
396
|
align: "left"
|
414
397
|
}, /*#__PURE__*/React.createElement(icons.Close, {
|
415
398
|
size: 20,
|
416
399
|
"aria-hidden": "true",
|
417
400
|
tabIndex: "-1",
|
418
|
-
className:
|
401
|
+
className: `${blockClass}--btn__icon`
|
419
402
|
}))), subtitle && /*#__PURE__*/React.createElement("p", {
|
420
|
-
className: cx(
|
403
|
+
className: cx(`${blockClass}__subtitle-text`, {
|
404
|
+
[`${blockClass}__subtitle-text-no-animation-no-action-toolbar`]: !doAnimateTitle && (!actionToolbarButtons || !actionToolbarButtons.length)
|
405
|
+
}),
|
421
406
|
ref: subtitleRef
|
422
407
|
}, subtitle), actionToolbarButtons && actionToolbarButtons.length && /*#__PURE__*/React.createElement("div", {
|
423
|
-
className:
|
424
|
-
}, actionToolbarButtons.map(
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
hasIconOnly =
|
429
|
-
icon
|
430
|
-
renderIcon
|
431
|
-
tooltipPosition
|
432
|
-
tooltipAlignment
|
433
|
-
leading
|
434
|
-
disabled
|
435
|
-
className
|
436
|
-
onClick
|
437
|
-
rest
|
408
|
+
className: `${blockClass}__action-toolbar`
|
409
|
+
}, actionToolbarButtons.map(_ref2 => {
|
410
|
+
let {
|
411
|
+
label,
|
412
|
+
kind,
|
413
|
+
hasIconOnly = false,
|
414
|
+
icon,
|
415
|
+
renderIcon,
|
416
|
+
tooltipPosition,
|
417
|
+
tooltipAlignment,
|
418
|
+
leading,
|
419
|
+
disabled,
|
420
|
+
className,
|
421
|
+
onClick,
|
422
|
+
...rest
|
423
|
+
} = _ref2;
|
438
424
|
return /*#__PURE__*/React.createElement(react.Button, _rollupPluginBabelHelpers.extends({}, rest, {
|
439
425
|
key: label,
|
440
426
|
kind: kind || 'ghost',
|
@@ -447,46 +433,50 @@ exports.SidePanel = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
447
433
|
}, {
|
448
434
|
hasIconOnly: hasIconOnly,
|
449
435
|
disabled: disabled,
|
450
|
-
className: cx([
|
436
|
+
className: cx([`${blockClass}__action-toolbar-button`, className, {
|
437
|
+
[`${blockClass}__action-toolbar-leading-button`]: leading
|
438
|
+
}]),
|
451
439
|
onClick: onClick
|
452
440
|
}), leading && label);
|
453
441
|
})));
|
454
442
|
};
|
455
|
-
|
443
|
+
const renderMain = () => {
|
456
444
|
return /*#__PURE__*/React.createElement("div", {
|
457
445
|
ref: innerContentRef,
|
458
446
|
onScroll: handleScroll,
|
459
|
-
className: cx(
|
447
|
+
className: cx(`${blockClass}__inner-content`, `${blockClass}--scrolls`, `${!doAnimateTitle && !animateTitle ? `${blockClass}__inner-content--no-animated-title` : ''}`)
|
460
448
|
}, children);
|
461
449
|
};
|
462
|
-
|
450
|
+
const handleKeyDown = event => {
|
463
451
|
if (!slideIn) {
|
464
452
|
handleEscapeKey(event);
|
465
453
|
keyDownListener(event);
|
466
454
|
}
|
467
455
|
};
|
468
|
-
return shouldRender ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(
|
456
|
+
return shouldRender ? /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(react.Section, _rollupPluginBabelHelpers.extends({}, devtools.getDevtoolsProps(componentName), rest, {
|
469
457
|
id: id,
|
470
458
|
className: mainPanelClassNames,
|
471
459
|
ref: sidePanelRef,
|
472
|
-
|
460
|
+
as: "aside",
|
473
461
|
"aria-label": title || rest['aria-label'],
|
474
462
|
onAnimationEnd: onAnimationEnd,
|
475
463
|
onAnimationStart: onAnimationStart,
|
476
464
|
onKeyDown: handleKeyDown
|
477
465
|
}), renderHeader(), renderMain(), /*#__PURE__*/React.createElement(ActionSet.ActionSet, {
|
478
|
-
actions: actions
|
466
|
+
actions: actions ?? [],
|
479
467
|
className: primaryActionContainerClassNames,
|
480
468
|
size: size === 'xs' ? 'sm' : size
|
481
469
|
})), includeOverlay && /*#__PURE__*/React.createElement("div", {
|
482
470
|
ref: overlayRef,
|
483
|
-
className: cx(
|
471
|
+
className: cx(`${blockClass}__overlay`, {
|
472
|
+
[`${blockClass}__overlay--closing`]: !open
|
473
|
+
})
|
484
474
|
})) : null;
|
485
475
|
});
|
486
476
|
|
487
477
|
// Return a placeholder if not released and not enabled by feature flag
|
488
|
-
|
489
|
-
|
478
|
+
const SidePanel = settings.pkg.checkComponentEnabled(SidePanelBase, componentName);
|
479
|
+
const deprecatedProps = {
|
490
480
|
/**
|
491
481
|
* **deprecated**
|
492
482
|
* **Experimental:** Provide a `Slug` component to be rendered inside the `SidePanel` component
|
@@ -499,7 +489,7 @@ var deprecatedProps = {
|
|
499
489
|
*/
|
500
490
|
aiLabel: index.default.node
|
501
491
|
};
|
502
|
-
|
492
|
+
SidePanel.propTypes = {
|
503
493
|
/**
|
504
494
|
* Sets the action toolbar buttons
|
505
495
|
*/
|
@@ -530,7 +520,9 @@ exports.SidePanel.propTypes = _rollupPluginBabelHelpers.objectSpread2({
|
|
530
520
|
* See https://react.carbondesignsystem.com/?path=/docs/components-button--default#component-api
|
531
521
|
*/
|
532
522
|
actions: propsHelper.allPropTypes([/**@ts-ignore*/
|
533
|
-
ActionSet.ActionSet.validateActions(), index.default.arrayOf(index.default.shape(
|
523
|
+
ActionSet.ActionSet.validateActions(), index.default.arrayOf(index.default.shape({
|
524
|
+
/**@ts-ignore */
|
525
|
+
...react.Button.propTypes,
|
534
526
|
kind: index.default.oneOf(['ghost', 'danger--ghost', 'secondary', 'danger', 'primary']),
|
535
527
|
tooltipPosition: index.default.oneOf(['top', 'right', 'bottom', 'left']),
|
536
528
|
tooltipAlignment: index.default.oneOf(['start', 'center', 'end']),
|
@@ -539,7 +531,7 @@ exports.SidePanel.propTypes = _rollupPluginBabelHelpers.objectSpread2({
|
|
539
531
|
// we duplicate this Button prop to improve the DocGen here
|
540
532
|
/**@ts-ignore */
|
541
533
|
onClick: react.Button.propTypes.onClick
|
542
|
-
}))
|
534
|
+
}))]),
|
543
535
|
/**
|
544
536
|
* Determines if the title will animate on scroll
|
545
537
|
*/
|
@@ -616,8 +608,10 @@ exports.SidePanel.propTypes = _rollupPluginBabelHelpers.objectSpread2({
|
|
616
608
|
* This prop is required when using the `slideIn` variant of the side panel.
|
617
609
|
*/
|
618
610
|
/**@ts-ignore*/
|
619
|
-
selectorPageContent: index.default.string.isRequired.if(
|
620
|
-
|
611
|
+
selectorPageContent: index.default.string.isRequired.if(_ref3 => {
|
612
|
+
let {
|
613
|
+
slideIn
|
614
|
+
} = _ref3;
|
621
615
|
return slideIn;
|
622
616
|
}),
|
623
617
|
/**
|
@@ -644,9 +638,14 @@ exports.SidePanel.propTypes = _rollupPluginBabelHelpers.objectSpread2({
|
|
644
638
|
* Sets the title text
|
645
639
|
*/
|
646
640
|
/**@ts-ignore*/
|
647
|
-
title: index.default.string.isRequired.if(
|
648
|
-
|
641
|
+
title: index.default.string.isRequired.if(_ref4 => {
|
642
|
+
let {
|
643
|
+
labelText
|
644
|
+
} = _ref4;
|
649
645
|
return labelText;
|
650
|
-
})
|
651
|
-
|
652
|
-
|
646
|
+
}),
|
647
|
+
...deprecatedProps
|
648
|
+
};
|
649
|
+
SidePanel.displayName = componentName;
|
650
|
+
|
651
|
+
exports.SidePanel = SidePanel;
|