@sapui5/sap.fe.core 1.136.10 → 1.136.11
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 +1 -1
- package/src/sap/fe/core/PageController.controller.js +10 -0
- package/src/sap/fe/core/PageController.controller.ts +3 -0
- package/src/sap/fe/core/controllerextensions/InternalRouting.js +23 -13
- package/src/sap/fe/core/controllerextensions/InternalRouting.ts +34 -13
- package/src/sap/fe/core/controllerextensions/routing/RouterProxy.js +7 -6
- package/src/sap/fe/core/controllerextensions/routing/RouterProxy.ts +8 -5
- package/src/sap/fe/core/controls/DataLossOrDraftDiscard/DraftDataLossDialog.js +2 -1
- package/src/sap/fe/core/controls/DataLossOrDraftDiscard/DraftDataLossDialog.tsx +1 -0
- package/src/sap/fe/core/converters/controls/Common/Action.js +15 -1
- package/src/sap/fe/core/converters/controls/Common/Action.ts +21 -1
- package/src/sap/fe/core/converters/controls/Common/Table.js +54 -46
- package/src/sap/fe/core/converters/controls/Common/Table.ts +65 -45
- package/src/sap/fe/core/converters/controls/Common/table/Columns.js +26 -6
- package/src/sap/fe/core/converters/controls/Common/table/Columns.ts +32 -10
- package/src/sap/fe/core/converters/controls/Common/table/StandardActions.js +12 -18
- package/src/sap/fe/core/converters/controls/Common/table/StandardActions.ts +13 -27
- package/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.js +5 -2
- package/src/sap/fe/core/converters/objectPage/HeaderAndFooterAction.ts +7 -1
- package/src/sap/fe/core/designtime/AnnotationBasedChanges.js +8 -3
- package/src/sap/fe/core/designtime/AnnotationBasedChanges.ts +7 -2
- package/src/sap/fe/core/fpm/manifest.json +1 -1
- package/src/sap/fe/core/helpers/AppStartupHelper.js +75 -18
- package/src/sap/fe/core/helpers/AppStartupHelper.ts +79 -25
- package/src/sap/fe/core/helpers/MetaModelFunction.js +10 -3
- package/src/sap/fe/core/helpers/MetaModelFunction.ts +9 -3
- package/src/sap/fe/core/library.js +1 -1
- package/src/sap/fe/core/messagebundle_es.properties +1 -1
- package/src/sap/fe/core/messagebundle_fr.properties +1 -1
- package/src/sap/fe/core/messagebundle_ko.properties +1 -1
- package/src/sap/fe/core/messagebundle_no.properties +2 -2
- package/src/sap/fe/core/services/RoutingServiceFactory.js +4 -2
- package/src/sap/fe/core/services/RoutingServiceFactory.ts +5 -2
- package/ui5.yaml +1 -0
|
@@ -650,6 +650,7 @@ export class RoutingService extends Service<RoutingServiceSettings> {
|
|
|
650
650
|
* @param [viewData.navigation]
|
|
651
651
|
* @param [currentTargetInfo] The target information from which the navigation is triggered
|
|
652
652
|
* @param [currentTargetInfo.name]
|
|
653
|
+
* @param skipHashGuardCheck
|
|
653
654
|
* @returns Promise which is resolved once the navigation is triggered
|
|
654
655
|
* @final
|
|
655
656
|
*/
|
|
@@ -657,7 +658,8 @@ export class RoutingService extends Service<RoutingServiceSettings> {
|
|
|
657
658
|
context: Context | ODataListBinding,
|
|
658
659
|
parameters: RoutingNavigationParameters = {},
|
|
659
660
|
viewData?: { navigation?: object },
|
|
660
|
-
currentTargetInfo?: { name: string }
|
|
661
|
+
currentTargetInfo?: { name: string },
|
|
662
|
+
skipHashGuardCheck?: boolean
|
|
661
663
|
): Promise<boolean> {
|
|
662
664
|
if (!this.enabled) {
|
|
663
665
|
return Promise.resolve(false);
|
|
@@ -806,7 +808,8 @@ export class RoutingService extends Service<RoutingServiceSettings> {
|
|
|
806
808
|
!!parameters.preserveHistory,
|
|
807
809
|
parameters?.noPreservationCache,
|
|
808
810
|
parameters?.forceFocus,
|
|
809
|
-
!isStickyMode
|
|
811
|
+
!isStickyMode,
|
|
812
|
+
skipHashGuardCheck
|
|
810
813
|
)
|
|
811
814
|
.then((bNavigated) => {
|
|
812
815
|
if (!bNavigated) {
|