@sapui5/sap.suite.ui.generic.template 1.108.41 → 1.108.43

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.108.41",
3
+ "version": "1.108.43",
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.108.41</version>
10
+ <version>1.108.43</version>
11
11
 
12
12
  <documentation>Library with generic Suite UI templates.</documentation>
13
13
 
@@ -47,7 +47,7 @@ GO_FILTERS=\u04E8\u0442\u0443
47
47
 
48
48
  SHOW_ON_FILTER_BAR=\u0421\u04AF\u0437\u0433\u0456 \u0436\u043E\u043B\u0430\u0493\u044B\u043D\u0434\u0430 \u043A\u04E9\u0440\u0441\u0435\u0442\u0443
49
49
 
50
- VISUAL_FILTER_FILTERS=\u0421\u04AF\u0437\u0433\u0456\u043B\u0435\u0440\u0434\u0456 \u0441\u04D9\u0439\u043A\u0435\u0441\u0442\u0435\u043D\u0434\u0456\u0440\u0443
50
+ VISUAL_FILTER_FILTERS=\u0421\u04AF\u0437\u0433\u0456\u043B\u0435\u0440\u0434\u0456 \u0431\u0435\u0439\u0456\u043C\u0434\u0435\u0443
51
51
 
52
52
  VISUAL_FILTER_FILTERS_WITH_COUNT=\u0421\u04AF\u0437\u0433\u0456\u043B\u0435\u0440\u0434\u0456 \u0431\u0435\u0439\u0456\u043C\u0434\u0435\u0443 ({0})
53
53
 
@@ -41,7 +41,7 @@ DRAFT_SAVED=Rascunho guardado
41
41
 
42
42
  DRAFT_FOUND_TITLE=Rascunho dispon\u00EDvel
43
43
 
44
- DRAFT_FOUND_TEXT=RscDcVis.CntTrbRsc?
44
+ DRAFT_FOUND_TEXT=Est\u00E1 dispon\u00EDvel um rascunho do documento que est\u00E1 a visualizar. Continuar a atrabalhar nesse rascunho?
45
45
 
46
46
  CREATE_DRAFT_MESSAGE_TEXT=Criar o objeto.
47
47
 
@@ -105,7 +105,7 @@ sap.ui.define([
105
105
  oControl.attachAfterVariantInitialise(function() {
106
106
  //set currentVariantId only when sVariantId is not standard (as it might be overriding existing
107
107
  //different currentVariantId) or smartTable's (oControl) currentVariantId is not equal to sVariantId.
108
- if (sVariantId !== '*standard*') {
108
+ if (sVariantId !== '*standard*' && sVariantId !== '') {
109
109
  if (oControl.getCurrentVariantId && oControl.getCurrentVariantId() !== sVariantId) {
110
110
  oControl.setCurrentVariantId(sVariantId);
111
111
  }
@@ -215,4 +215,4 @@ sap.ui.define([
215
215
  }
216
216
 
217
217
  return SmartVariantManagementWrapper;
218
- });
218
+ });
@@ -856,7 +856,7 @@ sap.ui.define([
856
856
  * @extends sap.ui.core.UIComponent
857
857
  * @abstract
858
858
  * @author SAP SE
859
- * @version 1.108.41
859
+ * @version 1.108.43
860
860
  * @name sap.suite.ui.generic.template.lib.AppComponent
861
861
  */
862
862
  return UIComponent.extend("sap.suite.ui.generic.template.lib.AppComponent", {
@@ -39,7 +39,7 @@ DATA_LOSS_DISCARD_CHANGES=Kass\u00E9r \u00E6ndringer
39
39
 
40
40
  ST_KEEP_DRAFT_BTN=Behold udkast
41
41
 
42
- ST_DISCARD_DRAFT_BTN=Kass\u00E9r udkast
42
+ ST_DISCARD_DRAFT_BTN=Kasser udkast
43
43
 
44
44
  ST_UNSAVED_CHANGES_TITLE=Ikkegemte \u00E6ndringer
45
45
 
@@ -285,7 +285,7 @@ NOITEMS_SMARTCHART=Tidak ditemukan data.
285
285
 
286
286
  NOITEMS_LR_SMARTCHART=Tidak ada data untuk tampilan bagan dan kriteria filter yang dipilih.
287
287
 
288
- NOITEMS_SMARTCHART_WITH_FILTER=Data tak ada. Ubah parameter filter.
288
+ NOITEMS_SMARTCHART_WITH_FILTER=Data tidak ditemukan. Coba sesuaikan parameter filter.
289
289
 
290
290
  SMARTCHART_INITIAL_NODATA=Untuk memulai, tetapkan filter terkait.
291
291
 
@@ -334,7 +334,13 @@ sap.ui.define(["sap/ui/base/Object",
334
334
 
335
335
  fnInitializeHistory();
336
336
  var fnInitializeRouter = bIsFirst ? oNavigationControllerProxy.initialize : Function.prototype;
337
- var oData = !bIsRestoring && !oNavigationControllerProxy.oHashChanger.getHash() && oComponentData;
337
+ // Parameter is used to override Hash logic, only applicable to case then FEv2 app is launched as embedded application from MyInbox;
338
+ var bIsAppEmbeddedOne = !!oComponentData
339
+ && !!oComponentData.oStartupParameters
340
+ && !!oComponentData.oStartupParameters['openMode']
341
+ && oComponentData.oStartupParameters['openMode'].length > 0
342
+ && oComponentData.oStartupParameters['openMode'].some(function (sValue) {return sValue === 'embedIntoDetailsNestedRouter';});
343
+ var oData = !bIsRestoring && (!oNavigationControllerProxy.oHashChanger.getHash() || bIsAppEmbeddedOne) && oComponentData;
338
344
  var oStartupParameters = oData && oData.startupParameters;
339
345
  if (oStartupParameters){
340
346
  startupParameterHelper.parametersToNavigation(oTemplateContract, oStartupParameters).then(function(oMessageParameters){
@@ -2975,7 +2981,7 @@ sap.ui.define(["sap/ui/base/Object",
2975
2981
  * @param {sap.suite.ui.generic.template.lib.AppComponent} oAppComponent The AppComponent instance
2976
2982
  * @public
2977
2983
  * @extends sap.ui.base.Object
2978
- * @version 1.108.41
2984
+ * @version 1.108.43
2979
2985
  * @since 1.30.0
2980
2986
  * @alias sap.suite.ui.generic.template.lib.NavigationController
2981
2987
  */
@@ -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.108.41",
41
+ version: "1.108.43",
42
42
  extensions: {
43
43
  //Configuration used for rule loading of Support Assistant
44
44
  "sap.ui.support": {