@sapui5/sap.fe.core 1.124.2 → 1.126.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/package.json +1 -1
- package/src/sap/fe/core/.library +5 -1
- package/src/sap/fe/core/ActionRuntime.js +2 -2
- package/src/sap/fe/core/ActionRuntime.ts +4 -4
- package/src/sap/fe/core/AppComponent.js +2 -2
- package/src/sap/fe/core/AppComponent.ts +1 -1
- package/src/sap/fe/core/AppStateHandler.js +2 -2
- package/src/sap/fe/core/AppStateHandler.ts +1 -1
- package/src/sap/fe/core/BaseController.js +2 -2
- package/src/sap/fe/core/BaseController.ts +1 -1
- package/src/sap/fe/core/CommonUtils.js +3 -3
- package/src/sap/fe/core/CommonUtils.ts +12 -15
- package/src/sap/fe/core/ExtensionAPI.js +2 -2
- package/src/sap/fe/core/ExtensionAPI.ts +4 -3
- package/src/sap/fe/core/PageController.js +2 -2
- package/src/sap/fe/core/PageController.ts +1 -1
- package/src/sap/fe/core/ResourceModel.js +2 -2
- package/src/sap/fe/core/ResourceModel.ts +1 -1
- package/src/sap/fe/core/ReuseComponent.js +172 -0
- package/src/sap/fe/core/ReuseComponent.ts +165 -0
- package/src/sap/fe/core/TemplateComponent.js +2 -2
- package/src/sap/fe/core/TemplateComponent.ts +5 -1
- package/src/sap/fe/core/TemplateModel.js +2 -2
- package/src/sap/fe/core/TemplateModel.ts +1 -1
- package/src/sap/fe/core/buildingBlocks/BuildingBlockBase.js +92 -6
- package/src/sap/fe/core/buildingBlocks/BuildingBlockBase.ts +90 -10
- package/src/sap/fe/core/buildingBlocks/templating/BuildingBlockSupport.js +1 -1
- package/src/sap/fe/core/buildingBlocks/templating/BuildingBlockSupport.ts +1 -1
- package/src/sap/fe/core/buildingBlocks/templating/BuildingBlockTemplateProcessor.js +30 -3
- package/src/sap/fe/core/buildingBlocks/templating/BuildingBlockTemplateProcessor.ts +28 -4
- package/src/sap/fe/core/buildingBlocks/templating/BuildingBlockTemplatingBase.js +10 -16
- package/src/sap/fe/core/buildingBlocks/templating/BuildingBlockTemplatingBase.ts +19 -16
- package/src/sap/fe/core/buildingBlocks/templating/RuntimeBuildingBlockFragment.js +3 -3
- package/src/sap/fe/core/buildingBlocks/templating/RuntimeBuildingBlockFragment.ts +5 -5
- package/src/sap/fe/core/controllerextensions/BaseControllerExtension.js +2 -2
- package/src/sap/fe/core/controllerextensions/BaseControllerExtension.ts +1 -1
- package/src/sap/fe/core/controllerextensions/CollaborativeDraft.js +17 -5
- package/src/sap/fe/core/controllerextensions/CollaborativeDraft.ts +14 -6
- package/src/sap/fe/core/controllerextensions/ContextSharing.js +2 -2
- package/src/sap/fe/core/controllerextensions/ContextSharing.ts +1 -1
- package/src/sap/fe/core/controllerextensions/EditFlow.js +57 -43
- package/src/sap/fe/core/controllerextensions/EditFlow.ts +61 -46
- package/src/sap/fe/core/controllerextensions/IntentBasedNavigation.js +2 -2
- package/src/sap/fe/core/controllerextensions/IntentBasedNavigation.ts +1 -1
- package/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation.js +8 -11
- package/src/sap/fe/core/controllerextensions/InternalIntentBasedNavigation.ts +8 -16
- package/src/sap/fe/core/controllerextensions/InternalRouting.js +10 -7
- package/src/sap/fe/core/controllerextensions/InternalRouting.ts +5 -5
- package/src/sap/fe/core/controllerextensions/KPIManagement.js +22 -18
- package/src/sap/fe/core/controllerextensions/KPIManagement.ts +28 -23
- package/src/sap/fe/core/controllerextensions/MessageHandler.js +4 -4
- package/src/sap/fe/core/controllerextensions/MessageHandler.ts +4 -1
- package/src/sap/fe/core/controllerextensions/PageReady.js +21 -15
- package/src/sap/fe/core/controllerextensions/PageReady.ts +29 -20
- package/src/sap/fe/core/controllerextensions/Paginator.js +2 -2
- package/src/sap/fe/core/controllerextensions/Paginator.ts +1 -1
- package/src/sap/fe/core/controllerextensions/Placeholder.js +12 -6
- package/src/sap/fe/core/controllerextensions/Placeholder.ts +15 -1
- package/src/sap/fe/core/controllerextensions/Recommendations.js +26 -8
- package/src/sap/fe/core/controllerextensions/Recommendations.ts +29 -3
- package/src/sap/fe/core/controllerextensions/Routing.js +5 -7
- package/src/sap/fe/core/controllerextensions/Routing.ts +4 -4
- package/src/sap/fe/core/controllerextensions/Share.js +4 -4
- package/src/sap/fe/core/controllerextensions/Share.ts +10 -6
- package/src/sap/fe/core/controllerextensions/SideEffects.js +20 -5
- package/src/sap/fe/core/controllerextensions/SideEffects.ts +22 -2
- package/src/sap/fe/core/controllerextensions/Telemetry.js +2 -2
- package/src/sap/fe/core/controllerextensions/Telemetry.ts +1 -1
- package/src/sap/fe/core/controllerextensions/ViewState.js +79 -81
- package/src/sap/fe/core/controllerextensions/ViewState.ts +117 -105
- package/src/sap/fe/core/controllerextensions/cards/CollaborationManager.js +3 -3
- package/src/sap/fe/core/controllerextensions/cards/CollaborationManager.ts +1 -1
- package/src/sap/fe/core/controllerextensions/collaboration/CollaborationCommon.js +2 -2
- package/src/sap/fe/core/controllerextensions/collaboration/CollaborationCommon.ts +2 -2
- package/src/sap/fe/core/controllerextensions/dialog/OperationsDialog.block.js +17 -8
- package/src/sap/fe/core/controllerextensions/dialog/OperationsDialog.block.tsx +8 -2
- package/src/sap/fe/core/controllerextensions/editFlow/NotApplicableContextDialog.js +1 -1
- package/src/sap/fe/core/controllerextensions/editFlow/TransactionHelper.js +10 -9
- package/src/sap/fe/core/controllerextensions/editFlow/TransactionHelper.ts +15 -10
- package/src/sap/fe/core/controllerextensions/editFlow/draftDataLossPopup.js +2 -2
- package/src/sap/fe/core/controllerextensions/editFlow/draftDataLossPopup.ts +1 -1
- package/src/sap/fe/core/controllerextensions/editFlow/operations/facade.js +130 -158
- package/src/sap/fe/core/controllerextensions/editFlow/operations/facade.ts +240 -275
- package/src/sap/fe/core/controllerextensions/editFlow/sticky.js +2 -2
- package/src/sap/fe/core/controllerextensions/editFlow/sticky.ts +1 -1
- package/src/sap/fe/core/controllerextensions/messageHandler/messageHandling.js +46 -28
- package/src/sap/fe/core/controllerextensions/messageHandler/messageHandling.ts +60 -32
- package/src/sap/fe/core/controllerextensions/routing/RouterProxy.js +2 -2
- package/src/sap/fe/core/controllerextensions/routing/RouterProxy.ts +1 -1
- package/src/sap/fe/core/controllerextensions/viewState/IViewStateContributor.js +2 -2
- package/src/sap/fe/core/controllerextensions/viewState/IViewStateContributor.ts +27 -3
- package/src/sap/fe/core/controls/CommandExecution.js +2 -2
- package/src/sap/fe/core/controls/CommandExecution.ts +2 -2
- package/src/sap/fe/core/controls/ComponentLoader.js +3 -3
- package/src/sap/fe/core/controls/ComponentLoader.ts +2 -2
- package/src/sap/fe/core/controls/DataLossOrDraftDiscard/DraftDataLossDialog.block.js +3 -3
- package/src/sap/fe/core/controls/DataLossOrDraftDiscard/DraftDataLossDialog.block.tsx +2 -2
- package/src/sap/fe/core/controls/EventDelegateHook.js +2 -2
- package/src/sap/fe/core/controls/EventDelegateHook.ts +2 -2
- package/src/sap/fe/core/controls/FormElementWrapper.js +51 -6
- package/src/sap/fe/core/controls/FormElementWrapper.ts +43 -2
- package/src/sap/fe/core/controls/Recommendations/ConfirmRecommendationDialog.block.js +3 -3
- package/src/sap/fe/core/controls/Recommendations/ConfirmRecommendationDialog.block.tsx +3 -3
- package/src/sap/fe/core/converters/ConverterContext.js +4 -2
- package/src/sap/fe/core/converters/ConverterContext.ts +5 -2
- package/src/sap/fe/core/converters/ManifestSettings.js +8 -2
- package/src/sap/fe/core/converters/ManifestSettings.ts +25 -3
- package/src/sap/fe/core/converters/ManifestWrapper.js +12 -3
- package/src/sap/fe/core/converters/ManifestWrapper.ts +11 -1
- package/src/sap/fe/core/converters/MetaModelConverter.js +7 -6
- package/src/sap/fe/core/converters/MetaModelConverter.ts +6 -2
- package/src/sap/fe/core/converters/annotations/DataField.js +56 -16
- package/src/sap/fe/core/converters/annotations/DataField.ts +74 -25
- package/src/sap/fe/core/converters/common/AnnotationConverter.js +19 -18
- package/src/sap/fe/core/converters/controls/Common/Action.js +5 -5
- package/src/sap/fe/core/converters/controls/Common/Action.ts +14 -14
- package/src/sap/fe/core/converters/controls/Common/Chart.js +40 -7
- package/src/sap/fe/core/converters/controls/Common/Chart.ts +56 -20
- package/src/sap/fe/core/converters/controls/Common/DataVisualization.js +8 -11
- package/src/sap/fe/core/converters/controls/Common/DataVisualization.ts +23 -27
- package/src/sap/fe/core/converters/controls/Common/Form.js +10 -3
- package/src/sap/fe/core/converters/controls/Common/Form.ts +13 -4
- package/src/sap/fe/core/converters/controls/Common/KPI.js +3 -2
- package/src/sap/fe/core/converters/controls/Common/KPI.ts +6 -2
- package/src/sap/fe/core/converters/controls/Common/Table.js +137 -48
- package/src/sap/fe/core/converters/controls/Common/Table.ts +174 -52
- package/src/sap/fe/core/converters/controls/Common/table/StandardActions.js +73 -21
- package/src/sap/fe/core/converters/controls/Common/table/StandardActions.ts +91 -20
- package/src/sap/fe/core/converters/controls/ListReport/VisualFilters.js +4 -4
- package/src/sap/fe/core/converters/controls/ListReport/VisualFilters.ts +2 -2
- package/src/sap/fe/core/converters/controls/ObjectPage/Avatar.js +2 -2
- package/src/sap/fe/core/converters/controls/ObjectPage/Avatar.ts +2 -2
- package/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet.js +3 -3
- package/src/sap/fe/core/converters/controls/ObjectPage/HeaderFacet.ts +1 -1
- package/src/sap/fe/core/converters/controls/ObjectPage/SubSection.js +17 -16
- package/src/sap/fe/core/converters/controls/ObjectPage/SubSection.ts +18 -17
- package/src/sap/fe/core/converters/helpers/InsightsHelpers.js +2 -2
- package/src/sap/fe/core/converters/helpers/InsightsHelpers.ts +1 -1
- package/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.js +9 -9
- package/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.ts +12 -12
- package/src/sap/fe/core/converters/templates/ListReportConverter.js +13 -7
- package/src/sap/fe/core/converters/templates/ListReportConverter.ts +12 -5
- package/src/sap/fe/core/converters/templates/ObjectPageConverter.js +9 -73
- package/src/sap/fe/core/converters/templates/ObjectPageConverter.ts +4 -74
- package/src/sap/fe/core/designtime/AppComponent.designtime.js +5 -10
- package/src/sap/fe/core/designtime/AppComponent.designtime.ts +3 -12
- package/src/sap/fe/core/formatters/CriticalityFormatter.js +4 -7
- package/src/sap/fe/core/formatters/CriticalityFormatter.ts +3 -3
- package/src/sap/fe/core/formatters/FiscalFormat.js +5 -3
- package/src/sap/fe/core/formatters/FiscalFormat.ts +4 -2
- package/src/sap/fe/core/formatters/StandardFormatter.js +2 -2
- package/src/sap/fe/core/formatters/StandardFormatter.ts +3 -3
- package/src/sap/fe/core/fpm/Component.js +3 -3
- package/src/sap/fe/core/fpm/Component.ts +3 -3
- package/src/sap/fe/core/fpm/manifest.json +1 -1
- package/src/sap/fe/core/helpers/AdaptiveCardExpressionCompiler.js +2 -2
- package/src/sap/fe/core/helpers/AdaptiveCardExpressionCompiler.ts +1 -1
- package/src/sap/fe/core/helpers/BindingHelper.js +2 -2
- package/src/sap/fe/core/helpers/BindingHelper.ts +2 -2
- package/src/sap/fe/core/helpers/BindingToolkitEvaluator.js +2 -2
- package/src/sap/fe/core/helpers/BindingToolkitEvaluator.ts +2 -2
- package/src/sap/fe/core/helpers/DeleteHelper.js +7 -4
- package/src/sap/fe/core/helpers/DeleteHelper.ts +9 -3
- package/src/sap/fe/core/helpers/MetaModelFunction.js +5 -5
- package/src/sap/fe/core/helpers/MetaModelFunction.ts +2 -2
- package/src/sap/fe/core/helpers/MetaPath.js +9 -3
- package/src/sap/fe/core/helpers/MetaPath.ts +8 -2
- package/src/sap/fe/core/helpers/ModelHelper.js +149 -3
- package/src/sap/fe/core/helpers/ModelHelper.ts +202 -6
- package/src/sap/fe/core/helpers/StandardRecommendationHelper.js +3 -3
- package/src/sap/fe/core/helpers/StandardRecommendationHelper.ts +2 -2
- package/src/sap/fe/core/helpers/TitleHelper.js +4 -4
- package/src/sap/fe/core/helpers/TitleHelper.ts +4 -4
- package/src/sap/fe/core/library.js +4 -4
- package/src/sap/fe/core/library.ts +2 -1
- package/src/sap/fe/core/manifestMerger/ChangePageConfiguration.js +11 -3
- package/src/sap/fe/core/manifestMerger/ChangePageConfiguration.ts +10 -2
- package/src/sap/fe/core/messagebundle.properties +8 -57
- package/src/sap/fe/core/messagebundle_ar.properties +2 -0
- package/src/sap/fe/core/messagebundle_bg.properties +2 -0
- package/src/sap/fe/core/messagebundle_ca.properties +2 -0
- package/src/sap/fe/core/messagebundle_cnr.properties +2 -0
- package/src/sap/fe/core/messagebundle_cs.properties +2 -0
- package/src/sap/fe/core/messagebundle_cy.properties +4 -2
- package/src/sap/fe/core/messagebundle_da.properties +2 -0
- package/src/sap/fe/core/messagebundle_de.properties +2 -0
- package/src/sap/fe/core/messagebundle_el.properties +2 -0
- package/src/sap/fe/core/messagebundle_en.properties +6 -57
- package/src/sap/fe/core/messagebundle_en_GB.properties +2 -0
- package/src/sap/fe/core/messagebundle_en_US_saprigi.properties +3 -36
- package/src/sap/fe/core/messagebundle_es.properties +2 -0
- package/src/sap/fe/core/messagebundle_es_MX.properties +2 -0
- package/src/sap/fe/core/messagebundle_et.properties +2 -0
- package/src/sap/fe/core/messagebundle_fi.properties +2 -0
- package/src/sap/fe/core/messagebundle_fr.properties +2 -0
- package/src/sap/fe/core/messagebundle_fr_CA.properties +3 -1
- package/src/sap/fe/core/messagebundle_hi.properties +2 -0
- package/src/sap/fe/core/messagebundle_hr.properties +2 -0
- package/src/sap/fe/core/messagebundle_hu.properties +3 -1
- package/src/sap/fe/core/messagebundle_id.properties +2 -0
- package/src/sap/fe/core/messagebundle_it.properties +2 -0
- package/src/sap/fe/core/messagebundle_iw.properties +3 -1
- package/src/sap/fe/core/messagebundle_ja.properties +2 -0
- package/src/sap/fe/core/messagebundle_kk.properties +2 -0
- package/src/sap/fe/core/messagebundle_ko.properties +2 -0
- package/src/sap/fe/core/messagebundle_lt.properties +2 -0
- package/src/sap/fe/core/messagebundle_lv.properties +2 -0
- package/src/sap/fe/core/messagebundle_mk.properties +2 -0
- package/src/sap/fe/core/messagebundle_ms.properties +2 -0
- package/src/sap/fe/core/messagebundle_nl.properties +2 -0
- package/src/sap/fe/core/messagebundle_no.properties +2 -0
- package/src/sap/fe/core/messagebundle_pl.properties +2 -0
- package/src/sap/fe/core/messagebundle_pt.properties +2 -0
- package/src/sap/fe/core/messagebundle_pt_PT.properties +2 -0
- package/src/sap/fe/core/messagebundle_ro.properties +2 -0
- package/src/sap/fe/core/messagebundle_ru.properties +2 -0
- package/src/sap/fe/core/messagebundle_sh.properties +64 -62
- package/src/sap/fe/core/messagebundle_sk.properties +2 -0
- package/src/sap/fe/core/messagebundle_sl.properties +2 -0
- package/src/sap/fe/core/messagebundle_sr.properties +2 -0
- package/src/sap/fe/core/messagebundle_sv.properties +2 -0
- package/src/sap/fe/core/messagebundle_th.properties +2 -0
- package/src/sap/fe/core/messagebundle_tr.properties +2 -0
- package/src/sap/fe/core/messagebundle_uk.properties +3 -1
- package/src/sap/fe/core/messagebundle_vi.properties +2 -0
- package/src/sap/fe/core/messagebundle_zh_CN.properties +2 -0
- package/src/sap/fe/core/messagebundle_zh_TW.properties +2 -0
- package/src/sap/fe/core/operationsHelper.js +3 -3
- package/src/sap/fe/core/operationsHelper.ts +2 -2
- package/src/sap/fe/core/rootView/Fcl.controller.js +3 -3
- package/src/sap/fe/core/rootView/Fcl.controller.ts +2 -2
- package/src/sap/fe/core/rootView/NavContainer.controller.js +2 -2
- package/src/sap/fe/core/rootView/NavContainer.controller.ts +1 -1
- package/src/sap/fe/core/rootView/RootViewBaseController.js +114 -92
- package/src/sap/fe/core/rootView/RootViewBaseController.ts +120 -106
- package/src/sap/fe/core/services/CollaborativeToolsServiceFactory.js +2 -2
- package/src/sap/fe/core/services/CollaborativeToolsServiceFactory.ts +1 -1
- package/src/sap/fe/core/services/NavigationServiceFactory.js +6 -4
- package/src/sap/fe/core/services/NavigationServiceFactory.ts +4 -3
- package/src/sap/fe/core/services/RoutingServiceFactory.js +2 -2
- package/src/sap/fe/core/services/RoutingServiceFactory.ts +1 -1
- package/src/sap/fe/core/services/ShellServicesFactory.js +1 -1
- package/src/sap/fe/core/services/ShellServicesFactory.ts +12 -2
- package/src/sap/fe/core/services/TelemetryServiceFactory.js +8 -2
- package/src/sap/fe/core/services/TelemetryServiceFactory.ts +7 -1
- package/src/sap/fe/core/services/TemplatedViewServiceFactory.js +16 -9
- package/src/sap/fe/core/services/TemplatedViewServiceFactory.ts +22 -11
- package/src/sap/fe/core/services/ValueHelpHistoryServiceFactory.js +2 -2
- package/src/sap/fe/core/services/ValueHelpHistoryServiceFactory.ts +1 -1
- package/src/sap/fe/core/services/view/TemplatingErrorPage.controller.js +2 -2
- package/src/sap/fe/core/services/view/TemplatingErrorPage.controller.ts +1 -1
- package/src/sap/fe/core/templating/ActionHelper.js +2 -2
- package/src/sap/fe/core/templating/ActionHelper.ts +2 -2
- package/src/sap/fe/core/templating/CommonFormatters.js +2 -2
- package/src/sap/fe/core/templating/CommonFormatters.ts +3 -3
- package/src/sap/fe/core/templating/CriticalityFormatters.js +2 -2
- package/src/sap/fe/core/templating/CriticalityFormatters.ts +2 -2
- package/src/sap/fe/core/templating/DataFieldFormatters.js +4 -4
- package/src/sap/fe/core/templating/DataFieldFormatters.ts +2 -2
- package/src/sap/fe/core/templating/DataModelPathHelper.js +2 -2
- package/src/sap/fe/core/templating/DataModelPathHelper.ts +2 -2
- package/src/sap/fe/core/templating/EntityTypeHelper.js +2 -2
- package/src/sap/fe/core/templating/EntityTypeHelper.ts +2 -2
- package/src/sap/fe/core/templating/FieldControlHelper.js +2 -2
- package/src/sap/fe/core/templating/FieldControlHelper.ts +2 -2
- package/src/sap/fe/core/templating/SemanticObjectHelper.js +2 -2
- package/src/sap/fe/core/templating/SemanticObjectHelper.ts +2 -2
- package/src/sap/fe/core/templating/UIFormatters.js +7 -7
- package/src/sap/fe/core/templating/UIFormatters.ts +6 -6
- package/src/sap/fe/core/type/DateTimeWithTimezone.js +2 -2
- package/src/sap/fe/core/type/DateTimeWithTimezone.ts +1 -1
- package/src/sap/fe/core/type/Email.js +2 -2
- package/src/sap/fe/core/type/Email.ts +1 -1
- package/src/sap/fe/core/type/FiscalDate.js +2 -2
- package/src/sap/fe/core/type/FiscalDate.ts +1 -1
- package/src/sap/fe/core/type/InputMask.js +124 -0
- package/src/sap/fe/core/type/InputMask.ts +131 -0
- package/ui5.yaml +19 -0
- package/src/sap/fe/core/controllerextensions/editFlow/operations/_internal.js +0 -81
- package/src/sap/fe/core/controllerextensions/editFlow/operations/_internal.ts +0 -117
- package/src/sap/fe/core/helpers/AnnotationEnum.js +0 -33
- package/src/sap/fe/core/helpers/AnnotationEnum.ts +0 -21
- package/src/sap/fe/core/helpers/BindingToolkit.js +0 -1813
- package/src/sap/fe/core/helpers/BindingToolkit.ts +0 -2450
- package/src/sap/fe/core/helpers/ClassSupport.js +0 -584
- package/src/sap/fe/core/helpers/ClassSupport.ts +0 -697
- package/src/sap/fe/core/jsx-runtime/Fragment.js +0 -14
- package/src/sap/fe/core/jsx-runtime/Fragment.ts +0 -3
- package/src/sap/fe/core/jsx-runtime/ViewLoader.js +0 -93
- package/src/sap/fe/core/jsx-runtime/ViewLoader.tsx +0 -86
- package/src/sap/fe/core/jsx-runtime/jsx-control.js +0 -177
- package/src/sap/fe/core/jsx-runtime/jsx-control.ts +0 -197
- package/src/sap/fe/core/jsx-runtime/jsx-xml.js +0 -237
- package/src/sap/fe/core/jsx-runtime/jsx-xml.ts +0 -246
- package/src/sap/fe/core/jsx-runtime/jsx.js +0 -47
- package/src/sap/fe/core/jsx-runtime/jsx.ts +0 -71
- package/src/sap/fe/core/jsx-runtime/jsxs.js +0 -10
- package/src/sap/fe/core/jsx-runtime/jsxs.ts +0 -3
- package/src/sap/fe/core/jsx-runtime/useMDXComponents.js +0 -172
- package/src/sap/fe/core/jsx-runtime/useMDXComponents.tsx +0 -194
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { EntitySet } from "@sap-ux/vocabularies-types";
|
|
2
2
|
import Log from "sap/base/Log";
|
|
3
|
+
import { defineUI5Class, extensible, finalExtension, publicExtension } from "sap/fe/base/ClassSupport";
|
|
3
4
|
import type AppComponent from "sap/fe/core/AppComponent";
|
|
4
5
|
import type { FEView } from "sap/fe/core/BaseController";
|
|
5
6
|
import CommonUtils from "sap/fe/core/CommonUtils";
|
|
@@ -21,7 +22,6 @@ import UiModelConstants from "sap/fe/core/controllerextensions/editFlow/editFlow
|
|
|
21
22
|
import sticky from "sap/fe/core/controllerextensions/editFlow/sticky";
|
|
22
23
|
import type { MetaModelAction } from "sap/fe/core/converters/MetaModelConverter";
|
|
23
24
|
import { convertTypes, getInvolvedDataModelObjects } from "sap/fe/core/converters/MetaModelConverter";
|
|
24
|
-
import { defineUI5Class, extensible, finalExtension, publicExtension } from "sap/fe/core/helpers/ClassSupport";
|
|
25
25
|
import type { DraftSiblingPair } from "sap/fe/core/helpers/DeleteHelper";
|
|
26
26
|
import EditState from "sap/fe/core/helpers/EditState";
|
|
27
27
|
import type { InternalModelContext } from "sap/fe/core/helpers/ModelHelper";
|
|
@@ -46,6 +46,7 @@ import Messaging from "sap/ui/core/Messaging";
|
|
|
46
46
|
import coreLibrary from "sap/ui/core/library";
|
|
47
47
|
import Message from "sap/ui/core/message/Message";
|
|
48
48
|
import OverrideExecution from "sap/ui/core/mvc/OverrideExecution";
|
|
49
|
+
import type MultiValueField from "sap/ui/mdc/MultiValueField";
|
|
49
50
|
import type Table from "sap/ui/mdc/Table";
|
|
50
51
|
import type CreationRow from "sap/ui/mdc/table/CreationRow";
|
|
51
52
|
import type Binding from "sap/ui/model/Binding";
|
|
@@ -231,7 +232,7 @@ class EditFlow extends BaseControllerExtension {
|
|
|
231
232
|
this.handleStickyOn(stickyContext);
|
|
232
233
|
} else if (ModelHelper.isCollaborationDraftSupported(model.getMetaModel())) {
|
|
233
234
|
// according to UX in case of enabled collaboration draft we share the object immediately
|
|
234
|
-
|
|
235
|
+
shareObject(oNewDocumentContext);
|
|
235
236
|
}
|
|
236
237
|
return contextToNavigate;
|
|
237
238
|
}
|
|
@@ -658,7 +659,7 @@ class EditFlow extends BaseControllerExtension {
|
|
|
658
659
|
!this.base.collaborativeDraft.isConnected()
|
|
659
660
|
) {
|
|
660
661
|
// according to UX in case of enabled collaboration draft we share the object immediately
|
|
661
|
-
|
|
662
|
+
shareObject(newDocumentContext);
|
|
662
663
|
}
|
|
663
664
|
}
|
|
664
665
|
}
|
|
@@ -677,6 +678,7 @@ class EditFlow extends BaseControllerExtension {
|
|
|
677
678
|
creationRow: CreationRow;
|
|
678
679
|
skipSideEffects?: boolean;
|
|
679
680
|
}): Promise<void> {
|
|
681
|
+
let creation: Promise<Context>;
|
|
680
682
|
const appComponent = this.getAppComponent();
|
|
681
683
|
const creationRow = parameters.creationRow;
|
|
682
684
|
const table = parameters.creationRow.getParent() as Table | undefined;
|
|
@@ -719,39 +721,39 @@ class EditFlow extends BaseControllerExtension {
|
|
|
719
721
|
// take care on message handling, draft indicator (in case of draft)
|
|
720
722
|
// Attach the create sent and create completed event to the object page binding so that we can react
|
|
721
723
|
this.handleCreateEvents(listBinding);
|
|
722
|
-
|
|
723
|
-
const creation = this.getTransactionHelper().createDocument(
|
|
724
|
-
listBinding,
|
|
725
|
-
{
|
|
726
|
-
data: Object.assign(
|
|
727
|
-
{},
|
|
728
|
-
...Object.keys(creationRowPayload)
|
|
729
|
-
.filter(
|
|
730
|
-
(propertyPath: string) =>
|
|
731
|
-
entityType.navigationProperties.findIndex((property) => property.name === propertyPath) === -1
|
|
732
|
-
) // ensure navigation properties are not part of the payload, deep create not supported
|
|
733
|
-
.map((path) => ({ [path]: creationRowPayload[path] }))
|
|
734
|
-
),
|
|
735
|
-
keepTransientContextOnFailed: false, // currently not fully supported
|
|
736
|
-
busyMode: "Local", // busy handling shall be done locally only
|
|
737
|
-
busyId: (table?.getParent() as TableAPI | undefined)?.getTableDefinition()?.annotation.id,
|
|
738
|
-
parentControl: this.getView(),
|
|
739
|
-
beforeCreateCallBack: this.base.editFlow.onBeforeCreate,
|
|
740
|
-
skipParameterDialog: appComponent.getStartupMode() === StartupMode.AutoCreate, // In case the application was called with preferredMode=autoCreateWith, we want to skip the action parameter dialog
|
|
741
|
-
createAtEnd: parameters.createAtEnd,
|
|
742
|
-
creationMode: CreationMode.CreationRow
|
|
743
|
-
},
|
|
744
|
-
appComponent,
|
|
745
|
-
this.getMessageHandler(),
|
|
746
|
-
false
|
|
747
|
-
);
|
|
748
|
-
// SideEffects on Create
|
|
749
|
-
// if Save is pressed directly after filling the CreationRow, no SideEffects request
|
|
750
|
-
if (!parameters.skipSideEffects) {
|
|
751
|
-
this.handleSideEffects(listBinding, creation);
|
|
752
|
-
}
|
|
753
|
-
|
|
754
724
|
try {
|
|
725
|
+
creation = this.getTransactionHelper().createDocument(
|
|
726
|
+
listBinding,
|
|
727
|
+
{
|
|
728
|
+
data: Object.assign(
|
|
729
|
+
{},
|
|
730
|
+
...Object.keys(creationRowPayload)
|
|
731
|
+
.filter(
|
|
732
|
+
(propertyPath: string) =>
|
|
733
|
+
entityType.navigationProperties.findIndex((property) => property.name === propertyPath) === -1
|
|
734
|
+
) // ensure navigation properties are not part of the payload, deep create not supported
|
|
735
|
+
.map((path) => ({ [path]: creationRowPayload[path] }))
|
|
736
|
+
),
|
|
737
|
+
keepTransientContextOnFailed: false, // currently not fully supported
|
|
738
|
+
busyMode: "Local", // busy handling shall be done locally only
|
|
739
|
+
busyId: (table?.getParent() as TableAPI | undefined)?.getTableDefinition()?.annotation.id,
|
|
740
|
+
parentControl: this.getView(),
|
|
741
|
+
beforeCreateCallBack: this.base.editFlow.onBeforeCreate,
|
|
742
|
+
skipParameterDialog: appComponent.getStartupMode() === StartupMode.AutoCreate, // In case the application was called with preferredMode=autoCreateWith, we want to skip the action parameter dialog
|
|
743
|
+
createAtEnd: parameters.createAtEnd,
|
|
744
|
+
creationMode: CreationMode.CreationRow
|
|
745
|
+
},
|
|
746
|
+
appComponent,
|
|
747
|
+
this.getMessageHandler(),
|
|
748
|
+
false
|
|
749
|
+
);
|
|
750
|
+
// SideEffects on Create
|
|
751
|
+
// if Save is pressed directly after filling the CreationRow, no SideEffects request
|
|
752
|
+
if (!parameters.skipSideEffects) {
|
|
753
|
+
this.handleSideEffects(listBinding, creation);
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
await creation;
|
|
755
757
|
const creationRowListBinding = creationRowContext.getBinding() as ODataListBinding;
|
|
756
758
|
const newTransientContext = creationRowListBinding.create();
|
|
757
759
|
creationRow.setBindingContext(newTransientContext);
|
|
@@ -761,6 +763,7 @@ class EditFlow extends BaseControllerExtension {
|
|
|
761
763
|
Log.trace("transient fast creation context deleted");
|
|
762
764
|
});
|
|
763
765
|
navigation = creationRowContext.delete("$direct");
|
|
766
|
+
return await this.postDocumentCreation(Promise.all([creation, navigation]), listBinding);
|
|
764
767
|
} catch (error: unknown) {
|
|
765
768
|
// Reset busy indicator after a validation error
|
|
766
769
|
if (BusyLocker.isLocked(this.base.getView().getModel("ui"))) {
|
|
@@ -768,7 +771,6 @@ class EditFlow extends BaseControllerExtension {
|
|
|
768
771
|
}
|
|
769
772
|
Log.error("CreationRow navigation error: ", error as string);
|
|
770
773
|
}
|
|
771
|
-
return this.postDocumentCreation(Promise.all([creation, navigation]), listBinding);
|
|
772
774
|
}
|
|
773
775
|
|
|
774
776
|
/**
|
|
@@ -798,15 +800,23 @@ class EditFlow extends BaseControllerExtension {
|
|
|
798
800
|
table = this.getView().byId(parameters.tableId) as Table;
|
|
799
801
|
}
|
|
800
802
|
if (table?.isA<Table>("sap.ui.mdc.Table")) {
|
|
801
|
-
table.getRowBinding().attachEventOnce("
|
|
803
|
+
table.getRowBinding().attachEventOnce("createCompleted", async () => {
|
|
802
804
|
const newContext = await creation;
|
|
803
|
-
const
|
|
804
|
-
const
|
|
805
|
-
|
|
806
|
-
|
|
805
|
+
const contextIndex = newContext.getIndex();
|
|
806
|
+
const aggregationData = listBinding.getAggregation() as { createInPlace?: boolean } | undefined;
|
|
807
|
+
const isCreateInPlace = aggregationData?.createInPlace ?? false;
|
|
808
|
+
|
|
809
|
+
if (contextIndex !== undefined && contextIndex >= 0) {
|
|
810
|
+
table?.focusRow(contextIndex, true);
|
|
811
|
+
} else if (isCreateInPlace) {
|
|
812
|
+
// For create in-place mode (server position), display a warning message in case the newly created node isn't visible
|
|
813
|
+
MessageToast.show(this._getResourceModel().getText("C_NEW_ELEMENT_NOT_DISPLAYED"));
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
if (this.getTransactionHelper().isListBindingHierarchical(listBinding) && !isCreateInPlace) {
|
|
807
817
|
// In case of a tree table, we also scroll to keep the parent visible
|
|
808
818
|
const parentContext = newContext.getParent();
|
|
809
|
-
const parentIndex = parentContext
|
|
819
|
+
const parentIndex = parentContext?.getIndex();
|
|
810
820
|
if (parentIndex !== undefined && parentIndex >= 0) {
|
|
811
821
|
table?.scrollToIndex(parentIndex);
|
|
812
822
|
}
|
|
@@ -2545,9 +2555,14 @@ class EditFlow extends BaseControllerExtension {
|
|
|
2545
2555
|
|
|
2546
2556
|
// TODO: this setting and removing of contexts shouldn't be in the transaction helper at all
|
|
2547
2557
|
// for the time being I kept it and provide the internal model context to not break something
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2558
|
+
if (parameters.controlId) {
|
|
2559
|
+
const sourceControl = Element.getElementById(parameters.controlId);
|
|
2560
|
+
if (sourceControl && !sourceControl.isA<MultiValueField>("sap.ui.mdc.MultiValueField")) {
|
|
2561
|
+
// In case the delete is triggered from a MultiValueField, we don't use the internal model context as the MVF doesn't have
|
|
2562
|
+
// such a context of its own, and we don't want to use its parent context (e.g. from the embedding Table)
|
|
2563
|
+
parameters.internalModelContext = sourceControl.getBindingContext("internal");
|
|
2564
|
+
}
|
|
2565
|
+
}
|
|
2551
2566
|
|
|
2552
2567
|
await this.syncTask();
|
|
2553
2568
|
await transactionHelper.deleteDocument(contexts, parameters, this.getAppComponent(), resourceModel, this.getMessageHandler());
|
|
@@ -3050,7 +3065,7 @@ class EditFlow extends BaseControllerExtension {
|
|
|
3050
3065
|
return undefined;
|
|
3051
3066
|
}
|
|
3052
3067
|
}
|
|
3053
|
-
if (!response) {
|
|
3068
|
+
if (!response || typeof response === "string") {
|
|
3054
3069
|
return undefined;
|
|
3055
3070
|
}
|
|
3056
3071
|
const currentView = this.base.getView();
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* SAP UI development toolkit for HTML5 (SAPUI5)
|
|
3
3
|
* (c) Copyright 2009-2024 SAP SE. All rights reserved
|
|
4
4
|
*/
|
|
5
|
-
sap.ui.define(["sap/fe/
|
|
5
|
+
sap.ui.define(["sap/fe/base/ClassSupport", "sap/ui/core/mvc/ControllerExtension", "sap/ui/core/mvc/OverrideExecution"], function (ClassSupport, ControllerExtension, OverrideExecution) {
|
|
6
6
|
"use strict";
|
|
7
7
|
|
|
8
8
|
var _dec, _dec2, _dec3, _dec4, _dec5, _class, _class2;
|
|
@@ -64,4 +64,4 @@ sap.ui.define(["sap/fe/core/helpers/ClassSupport", "sap/ui/core/mvc/ControllerEx
|
|
|
64
64
|
}(ControllerExtension), (_applyDecoratedDescriptor(_class2.prototype, "adaptNavigationContext", [_dec2, _dec3], Object.getOwnPropertyDescriptor(_class2.prototype, "adaptNavigationContext"), _class2.prototype), _applyDecoratedDescriptor(_class2.prototype, "navigateOutbound", [_dec4, _dec5], Object.getOwnPropertyDescriptor(_class2.prototype, "navigateOutbound"), _class2.prototype)), _class2)) || _class);
|
|
65
65
|
return IntentBasedNavigation;
|
|
66
66
|
}, false);
|
|
67
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,
|
|
67
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJJbnRlbnRCYXNlZE5hdmlnYXRpb24iLCJkZWZpbmVVSTVDbGFzcyIsInB1YmxpY0V4dGVuc2lvbiIsImV4dGVuc2libGUiLCJPdmVycmlkZUV4ZWN1dGlvbiIsIkFmdGVyIiwiZmluYWxFeHRlbnNpb24iLCJhZGFwdE5hdmlnYXRpb25Db250ZXh0IiwiX29TZWxlY3Rpb25WYXJpYW50IiwiX29OYXZpZ2F0aW9uSW5mbyIsIm5hdmlnYXRlT3V0Ym91bmQiLCJzT3V0Ym91bmQiLCJtTmF2aWdhdGlvblBhcmFtZXRlcnMiLCJvSW50ZXJuYWxNb2RlbENvbnRleHQiLCJiYXNlIiwiZ2V0VmlldyIsImdldEJpbmRpbmdDb250ZXh0Iiwic2V0UHJvcGVydHkiLCJwYWdlIiwiX2ludGVudEJhc2VkTmF2aWdhdGlvbiIsIkNvbnRyb2xsZXJFeHRlbnNpb24iXSwic291cmNlUm9vdCI6Ii4iLCJzb3VyY2VzIjpbIkludGVudEJhc2VkTmF2aWdhdGlvbi50cyJdLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBkZWZpbmVVSTVDbGFzcywgZXh0ZW5zaWJsZSwgZmluYWxFeHRlbnNpb24sIHB1YmxpY0V4dGVuc2lvbiB9IGZyb20gXCJzYXAvZmUvYmFzZS9DbGFzc1N1cHBvcnRcIjtcbmltcG9ydCB0eXBlIHsgSW50ZXJuYWxNb2RlbENvbnRleHQgfSBmcm9tIFwic2FwL2ZlL2NvcmUvaGVscGVycy9Nb2RlbEhlbHBlclwiO1xuaW1wb3J0IHR5cGUgUGFnZUNvbnRyb2xsZXIgZnJvbSBcInNhcC9mZS9jb3JlL1BhZ2VDb250cm9sbGVyXCI7XG5pbXBvcnQgdHlwZSBTZWxlY3Rpb25WYXJpYW50IGZyb20gXCJzYXAvZmUvbmF2aWdhdGlvbi9TZWxlY3Rpb25WYXJpYW50XCI7XG5pbXBvcnQgQ29udHJvbGxlckV4dGVuc2lvbiBmcm9tIFwic2FwL3VpL2NvcmUvbXZjL0NvbnRyb2xsZXJFeHRlbnNpb25cIjtcbmltcG9ydCBPdmVycmlkZUV4ZWN1dGlvbiBmcm9tIFwic2FwL3VpL2NvcmUvbXZjL092ZXJyaWRlRXhlY3V0aW9uXCI7XG5cbi8qKlxuICogQ29udHJvbGxlciBleHRlbnNpb24gcHJvdmlkaW5nIGhvb2tzIGZvciBpbnRlbnQtYmFzZWQgbmF2aWdhdGlvblxuICpcbiAqIEBoaWRlY29uc3RydWN0b3JcbiAqIEBwdWJsaWNcbiAqIEBzaW5jZSAxLjg2LjBcbiAqL1xuQGRlZmluZVVJNUNsYXNzKFwic2FwLmZlLmNvcmUuY29udHJvbGxlcmV4dGVuc2lvbnMuSW50ZW50QmFzZWROYXZpZ2F0aW9uXCIpXG5jbGFzcyBJbnRlbnRCYXNlZE5hdmlnYXRpb24gZXh0ZW5kcyBDb250cm9sbGVyRXh0ZW5zaW9uIHtcblx0YmFzZSE6IFBhZ2VDb250cm9sbGVyO1xuXG5cdC8qKlxuXHQgKiBQcm92aWRlcyBhIGhvb2sgdG8gY3VzdG9taXplIHRoZSB7QGxpbmsgc2FwLmZlLm5hdmlnYXRpb24uU2VsZWN0aW9uVmFyaWFudH0gcmVsYXRlZCB0byB0aGUgaW50ZW50LWJhc2VkIG5hdmlnYXRpb24uXG5cdCAqXG5cdCAqIEBwYXJhbSBfb1NlbGVjdGlvblZhcmlhbnQgU2VsZWN0aW9uVmFyaWFudCBwcm92aWRlZCBieSBTQVAgRmlvcmkgZWxlbWVudHMuXG5cdCAqIEBwYXJhbSBfb05hdmlnYXRpb25JbmZvIE9iamVjdCBjb250YWluaW5nIGludGVudC1iYXNlZCBuYXZpZ2F0aW9uLXJlbGF0ZWQgaW5mb1xuXHQgKiBAcGFyYW0gX29OYXZpZ2F0aW9uSW5mby5zZW1hbnRpY09iamVjdCBTZW1hbnRpYyBvYmplY3QgcmVsYXRlZCB0byB0aGUgaW50ZW50XG5cdCAqIEBwYXJhbSBfb05hdmlnYXRpb25JbmZvLmFjdGlvbiBBY3Rpb24gcmVsYXRlZCB0byB0aGUgaW50ZW50XG5cdCAqIEBwdWJsaWNcblx0ICogQHNpbmNlIDEuODYuMFxuXHQgKi9cblx0QHB1YmxpY0V4dGVuc2lvbigpXG5cdEBleHRlbnNpYmxlKE92ZXJyaWRlRXhlY3V0aW9uLkFmdGVyKVxuXHRhZGFwdE5hdmlnYXRpb25Db250ZXh0KF9vU2VsZWN0aW9uVmFyaWFudDogU2VsZWN0aW9uVmFyaWFudCwgX29OYXZpZ2F0aW9uSW5mbzogeyBzZW1hbnRpY09iamVjdDogc3RyaW5nOyBhY3Rpb246IHN0cmluZyB9KTogdm9pZCB7XG5cdFx0Ly8gdG8gYmUgb3ZlcnJpZGVuIGJ5IHRoZSBhcHBsaWNhdGlvblxuXHR9XG5cblx0LyoqXG5cdCAqIE5hdmlnYXRlcyB0byBhbiBpbnRlbnQgZGVmaW5lZCBieSBhbiBvdXRib3VuZCBkZWZpbml0aW9uIGluIHRoZSBtYW5pZmVzdC5cblx0ICpcblx0ICogQHBhcmFtIHNPdXRib3VuZCBJZGVudGlmaWVyIHRvIGxvY2F0ZSB0aGUgb3V0Ym91bmQgZGVmaW5pdGlvbiBpbiB0aGUgbWFuaWZlc3QuXG5cdCAqIFRoaXMgcHJvdmlkZXMgdGhlIHNlbWFudGljIG9iamVjdCBhbmQgYWN0aW9uIGZvciB0aGUgaW50ZW50LWJhc2VkIG5hdmlnYXRpb24uXG5cdCAqIEFkZGl0aW9uYWxseSwgdGhlIG91dGJvdW5kIGRlZmluaXRpb24gY2FuIGJlIHVzZWQgdG8gcHJvdmlkZSBwYXJhbWV0ZXJzIGZvciBpbnRlbnQtYmFzZWQgbmF2aWdhdGlvbi5cblx0ICogU2VlIHtAbGluayB0b3BpYzpiZTBjZjQwZjYxMTg0YjM1OGI1ZmFlZGFlYzk4YjJkYSBEZXNjcmlwdG9yIGZvciBBcHBsaWNhdGlvbnMsIENvbXBvbmVudHMsIGFuZCBMaWJyYXJpZXN9IGZvciBtb3JlIGluZm9ybWF0aW9uLlxuXHQgKiBAcGFyYW0gbU5hdmlnYXRpb25QYXJhbWV0ZXJzIE9wdGlvbmFsIG1hcCBjb250YWluaW5nIGtleS92YWx1ZSBwYWlycyB0byBiZSBwYXNzZWQgdG8gdGhlIGludGVudC5cblx0ICogSWYgbU5hdmlnYXRpb25QYXJhbWV0ZXJzIGFyZSBwcm92aWRlZCwgdGhlIHBhcmFtZXRlcnMgcHJvdmlkZWQgaW4gdGhlIG91dGJvdW5kIGRlZmluaXRpb24gb2YgdGhlIG1hbmlmZXN0IGFyZSBpZ25vcmVkLlxuXHQgKiBAcHVibGljXG5cdCAqIEBzaW5jZSAxLjg2LjBcblx0ICovXG5cdEBmaW5hbEV4dGVuc2lvbigpXG5cdEBwdWJsaWNFeHRlbnNpb24oKVxuXHRuYXZpZ2F0ZU91dGJvdW5kKHNPdXRib3VuZDogc3RyaW5nLCBtTmF2aWdhdGlvblBhcmFtZXRlcnM/OiBSZWNvcmQ8c3RyaW5nLCB1bmtub3duPik6IHZvaWQge1xuXHRcdGNvbnN0IG9JbnRlcm5hbE1vZGVsQ29udGV4dCA9IHRoaXMuYmFzZT8uZ2V0VmlldygpLmdldEJpbmRpbmdDb250ZXh0KFwiaW50ZXJuYWxcIikgYXMgSW50ZXJuYWxNb2RlbENvbnRleHQ7XG5cdFx0b0ludGVybmFsTW9kZWxDb250ZXh0LnNldFByb3BlcnR5KFwiZXh0ZXJuYWxOYXZpZ2F0aW9uQ29udGV4dFwiLCB7IHBhZ2U6IGZhbHNlIH0pO1xuXHRcdHRoaXMuYmFzZT8uX2ludGVudEJhc2VkTmF2aWdhdGlvbi5uYXZpZ2F0ZU91dGJvdW5kKHNPdXRib3VuZCwgbU5hdmlnYXRpb25QYXJhbWV0ZXJzKTtcblx0fVxufVxuXG5leHBvcnQgZGVmYXVsdCBJbnRlbnRCYXNlZE5hdmlnYXRpb247XG4iXSwibWFwcGluZ3MiOiI7QUFBQTtBQUFBO0FBQUE7Ozs7Ozs7Ozs7OztFQU9BO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0VBTkEsSUFRTUEscUJBQXFCLFdBRDFCQyxjQUFjLENBQUMsd0RBQXdELENBQUMsVUFjdkVDLGVBQWUsRUFBRSxVQUNqQkMsVUFBVSxDQUFDQyxpQkFBaUIsQ0FBQ0MsS0FBSyxDQUFDLFVBaUJuQ0MsY0FBYyxFQUFFLFVBQ2hCSixlQUFlLEVBQUU7SUFBQTtJQUFBO01BQUE7SUFBQTtJQUFBO0lBN0JsQjtBQUNEO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtJQVRDLE9BWUFLLHNCQUFzQixHQUZ0QixnQ0FFdUJDLGtCQUFvQyxFQUFFQyxnQkFBNEQsRUFBUTtNQUNoSTtJQUFBOztJQUdEO0FBQ0Q7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQTtBQUNBO0FBQ0E7QUFDQSxPQVhDO0lBQUEsT0FjQUMsZ0JBQWdCLEdBRmhCLDBCQUVpQkMsU0FBaUIsRUFBRUMscUJBQStDLEVBQVE7TUFBQTtNQUMxRixNQUFNQyxxQkFBcUIsaUJBQUcsSUFBSSxDQUFDQyxJQUFJLCtDQUFULFdBQVdDLE9BQU8sRUFBRSxDQUFDQyxpQkFBaUIsQ0FBQyxVQUFVLENBQXlCO01BQ3hHSCxxQkFBcUIsQ0FBQ0ksV0FBVyxDQUFDLDJCQUEyQixFQUFFO1FBQUVDLElBQUksRUFBRTtNQUFNLENBQUMsQ0FBQztNQUMvRSxtQkFBSSxDQUFDSixJQUFJLGdEQUFULFlBQVdLLHNCQUFzQixDQUFDVCxnQkFBZ0IsQ0FBQ0MsU0FBUyxFQUFFQyxxQkFBcUIsQ0FBQztJQUNyRixDQUFDO0lBQUE7RUFBQSxFQXJDa0NRLG1CQUFtQjtFQUFBLE9Bd0N4Q3BCLHFCQUFxQjtBQUFBIn0=
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineUI5Class, extensible, finalExtension, publicExtension } from "sap/fe/
|
|
1
|
+
import { defineUI5Class, extensible, finalExtension, publicExtension } from "sap/fe/base/ClassSupport";
|
|
2
2
|
import type { InternalModelContext } from "sap/fe/core/helpers/ModelHelper";
|
|
3
3
|
import type PageController from "sap/fe/core/PageController";
|
|
4
4
|
import type SelectionVariant from "sap/fe/navigation/SelectionVariant";
|