@sapui5/sap.suite.ui.generic.template 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.suite.ui.generic.template",
3
- "version": "1.136.10",
3
+ "version": "1.136.11",
4
4
  "description": "SAPUI5 Library sap.suite.ui.generic.template",
5
5
  "keywords": [
6
6
  "sapui5",
@@ -7,7 +7,7 @@
7
7
 
8
8
  (c) Copyright 2009-2015 SAP SE. All rights reserved
9
9
  </copyright>
10
- <version>1.136.10</version>
10
+ <version>1.136.11</version>
11
11
 
12
12
  <documentation>Library with generic Suite UI templates.</documentation>
13
13
 
@@ -8,7 +8,7 @@
8
8
  "i18n": "i18n/i18n.properties",
9
9
  "applicationVersion": {
10
10
  "__comment": "applicationVersion oder componentversion??",
11
- "version": "1.136.10"
11
+ "version": "1.136.11"
12
12
  },
13
13
  "title": "{{TITLE}}",
14
14
  "description": "{{DESCRIPTION}}",
@@ -8,7 +8,7 @@
8
8
  "i18n": "i18n/i18n.properties",
9
9
  "applicationVersion": {
10
10
  "__comment": "applicationVersion oder componentversion??",
11
- "version": "1.136.10"
11
+ "version": "1.136.11"
12
12
  },
13
13
  "title": "Canvas",
14
14
  "description": "Canvas Page",
@@ -5,7 +5,7 @@ DESCRIPTION=Rapport de liste
5
5
 
6
6
  ALL_OBJECTS=Tous
7
7
 
8
- ALL_OBJECTS_HIDING_DRAFT=Tous (masquer versions pr\u00E9l.)
8
+ ALL_OBJECTS_HIDING_DRAFT=Toutes (les versions pr\u00E9liminaires masqu\u00E9es)
9
9
 
10
10
  UNCHANGED=Non modifi\u00E9
11
11
 
@@ -8,7 +8,7 @@
8
8
  "i18n": "i18n/i18n.properties",
9
9
  "applicationVersion": {
10
10
  "__comment": "applicationVersion oder componentversion??",
11
- "version": "1.136.10"
11
+ "version": "1.136.11"
12
12
  },
13
13
  "title": "{{TITLE}}",
14
14
  "description": "{{DESCRIPTION}}",
@@ -6,7 +6,7 @@
6
6
  "type": "component",
7
7
  "i18n": "i18n/i18n.properties",
8
8
  "applicationVersion": {
9
- "version": "1.136.10"
9
+ "version": "1.136.11"
10
10
  },
11
11
  "title": "{{TITLE}}",
12
12
  "description": "{{DESCRIPTION}}",
@@ -6,7 +6,7 @@
6
6
  "type": "component",
7
7
  "i18n": "i18n/i18n.properties",
8
8
  "applicationVersion": {
9
- "version": "1.136.10"
9
+ "version": "1.136.11"
10
10
  },
11
11
  "title": "{{TITLE}}",
12
12
  "description": "{{DESCRIPTION}}",
@@ -6,7 +6,7 @@
6
6
  "type": "component",
7
7
  "i18n": "i18n/i18n.properties",
8
8
  "applicationVersion": {
9
- "version": "1.136.10"
9
+ "version": "1.136.11"
10
10
  },
11
11
  "title": "{{TITLE}}",
12
12
  "description": "{{DESCRIPTION}}",
@@ -964,7 +964,7 @@ sap.ui.define([
964
964
  * @public
965
965
  * @extends sap.ui.core.UIComponent
966
966
  * @author SAP SE
967
- * @version 1.136.10
967
+ * @version 1.136.11
968
968
  * @name sap.suite.ui.generic.template.lib.AppComponent
969
969
  */
970
970
  var oAppComponent = UIComponent.extend("sap.suite.ui.generic.template.lib.AppComponent", {
@@ -815,7 +815,8 @@ sap.ui.define(["sap/ui/base/Object",
815
815
  ignorePersistence: true
816
816
  });
817
817
  });
818
- oServices.oApplication.navigateToDetailContextIfPossible(oResponseContext, false, oContextInfo.bIsDraft ? 2 * (1 + oContextInfo.bIsCreate) : 1, oContextInfo);
818
+ var bIsDeterminingAction = mParameters.actionType === "determining";
819
+ oServices.oApplication.navigateToDetailContextIfPossible(oResponseContext, bIsDeterminingAction, oContextInfo.bIsDraft ? 2 * (1 + oContextInfo.bIsCreate) : 1, oContextInfo);
819
820
  } else {
820
821
  // Restore focus, because we don't navigate out
821
822
  oServices.oApplication.setNextFocus(function(oBeforeData, fnFallback){
@@ -2000,7 +2000,8 @@ sap.ui.define(["sap/ui/base/Object",
2000
2000
  contexts: aContexts,
2001
2001
  sourceControlHandler: oPresentationControlHandler,
2002
2002
  label: oCustomData.Label,
2003
- operationGrouping: ""
2003
+ operationGrouping: "",
2004
+ actionType: oCustomData.ActionType
2004
2005
  }).then(function(aResponses) {
2005
2006
  if (aResponses && aResponses.length > 0) {
2006
2007
  var oResponse = aResponses[0];
@@ -3221,7 +3221,7 @@ sap.ui.define(["sap/ui/base/Object",
3221
3221
  * @param {sap.suite.ui.generic.template.lib.AppComponent} oAppComponent The AppComponent instance
3222
3222
  * @public
3223
3223
  * @extends sap.ui.base.Object
3224
- * @version 1.136.10
3224
+ * @version 1.136.11
3225
3225
  * @since 1.30.0
3226
3226
  * @alias sap.suite.ui.generic.template.lib.NavigationController
3227
3227
  */
@@ -66,7 +66,7 @@ sap.ui.define([
66
66
  interfaces: [],
67
67
  controls: [],
68
68
  elements: [],
69
- version: "1.136.10",
69
+ version: "1.136.11",
70
70
  extensions: {
71
71
  //Configuration used for rule loading of Support Assistant
72
72
  "sap.ui.support": {