@sapui5/sap.suite.ui.generic.template 1.111.3 → 1.111.5
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/suite/ui/generic/template/.library +1 -1
- package/src/sap/suite/ui/generic/template/lib/AppComponent.js +1 -1
- package/src/sap/suite/ui/generic/template/lib/navigation/NavigationController.js +1 -1
- package/src/sap/suite/ui/generic/template/lib/navigation/startupParameterHelper.js +2 -2
- package/src/sap/suite/ui/generic/template/library.js +1 -1
package/package.json
CHANGED
|
@@ -839,7 +839,7 @@ sap.ui.define([
|
|
|
839
839
|
* @extends sap.ui.core.UIComponent
|
|
840
840
|
* @abstract
|
|
841
841
|
* @author SAP SE
|
|
842
|
-
* @version 1.111.
|
|
842
|
+
* @version 1.111.5
|
|
843
843
|
* @name sap.suite.ui.generic.template.lib.AppComponent
|
|
844
844
|
*/
|
|
845
845
|
return UIComponent.extend("sap.suite.ui.generic.template.lib.AppComponent", {
|
|
@@ -2980,7 +2980,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
2980
2980
|
* @param {sap.suite.ui.generic.template.lib.AppComponent} oAppComponent The AppComponent instance
|
|
2981
2981
|
* @public
|
|
2982
2982
|
* @extends sap.ui.base.Object
|
|
2983
|
-
* @version 1.111.
|
|
2983
|
+
* @version 1.111.5
|
|
2984
2984
|
* @since 1.30.0
|
|
2985
2985
|
* @alias sap.suite.ui.generic.template.lib.NavigationController
|
|
2986
2986
|
*/
|
|
@@ -735,7 +735,7 @@ sap.ui.define(["sap/base/util/extend",
|
|
|
735
735
|
oLogger.error("mode is callUnboundAction, but no suitable action could be identified -> navigate to root");
|
|
736
736
|
var oIdentity = {
|
|
737
737
|
treeNode: oTemplateContract.mRoutingTree.root,
|
|
738
|
-
keys: []
|
|
738
|
+
keys: [""],//The root key should be an empty string
|
|
739
739
|
appStates: Object.create(null)
|
|
740
740
|
};
|
|
741
741
|
return oTemplateContract.oNavigationControllerProxy.navigateToIdentity(oIdentity, true, 1).then(Function.prototype); // in case of success: return a Promise that resolves to nothing
|
|
@@ -753,7 +753,7 @@ sap.ui.define(["sap/base/util/extend",
|
|
|
753
753
|
oLogger.error(oActionDef.action.name + " was not successfully called -> navigate to root");
|
|
754
754
|
var oIdentity = {
|
|
755
755
|
treeNode: oTemplateContract.mRoutingTree.root,
|
|
756
|
-
keys: [],
|
|
756
|
+
keys: [""], //The root key should be an empty string
|
|
757
757
|
appStates: Object.create(null)
|
|
758
758
|
};
|
|
759
759
|
return oTemplateContract.oNavigationControllerProxy.navigateToIdentity(oIdentity, true, 1).then(fnMyResolve);
|
|
@@ -38,7 +38,7 @@ sap.ui.define(['sap/ui/core/Core', 'sap/ui/core/library','sap/fe/placeholder/lib
|
|
|
38
38
|
interfaces: [],
|
|
39
39
|
controls: [],
|
|
40
40
|
elements: [],
|
|
41
|
-
version: "1.111.
|
|
41
|
+
version: "1.111.5",
|
|
42
42
|
extensions: {
|
|
43
43
|
//Configuration used for rule loading of Support Assistant
|
|
44
44
|
"sap.ui.support": {
|