@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 +1 -1
- package/src/sap/suite/ui/generic/template/.library +1 -1
- package/src/sap/suite/ui/generic/template/AnalyticalListPage/i18n/i18n_kk.properties +1 -1
- package/src/sap/suite/ui/generic/template/ObjectPage/i18n/i18n_pt_PT.properties +1 -1
- package/src/sap/suite/ui/generic/template/genericUtilities/controlStateWrapperFactory/SmartVariantManagementWrapper.js +2 -2
- package/src/sap/suite/ui/generic/template/lib/AppComponent.js +1 -1
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_da.properties +1 -1
- package/src/sap/suite/ui/generic/template/lib/i18n/i18n_id.properties +1 -1
- package/src/sap/suite/ui/generic/template/lib/navigation/NavigationController.js +8 -2
- package/src/sap/suite/ui/generic/template/library.js +1 -1
package/package.json
CHANGED
|
@@ -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 \
|
|
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=
|
|
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.
|
|
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", {
|
|
@@ -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
|
|
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
|
-
|
|
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.
|
|
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
|
+
version: "1.108.43",
|
|
42
42
|
extensions: {
|
|
43
43
|
//Configuration used for rule loading of Support Assistant
|
|
44
44
|
"sap.ui.support": {
|