@sapui5/sap.ushell_abap 1.100.1 → 1.101.0
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/main/js/sap/ushell_abap/.library +5 -1
- package/src/main/js/sap/ushell_abap/adapters/abap/AppStateAdapter.js +1 -1
- package/src/main/js/sap/ushell_abap/adapters/abap/ClientSideTargetResolutionAdapter.js +1 -1
- package/src/main/js/sap/ushell_abap/adapters/abap/ConfigurationDefaultsAdapter.js +1 -1
- package/src/main/js/sap/ushell_abap/adapters/abap/ContainerAdapter.js +1 -1
- package/src/main/js/sap/ushell_abap/adapters/abap/LaunchPageAdapter.js +4 -1
- package/src/main/js/sap/ushell_abap/adapters/abap/NavTargetResolutionAdapter.js +1 -1
- package/src/main/js/sap/ushell_abap/adapters/abap/PageBuildingAdapter.js +6 -2
- package/src/main/js/sap/ushell_abap/adapters/abap/PagePersistenceAdapter.js +6 -3
- package/src/main/js/sap/ushell_abap/adapters/abap/PersonalizationAdapter.js +1 -1
- package/src/main/js/sap/ushell_abap/adapters/abap/SearchAdapter.js +1 -1
- package/src/main/js/sap/ushell_abap/adapters/abap/SupportTicketAdapter.js +9 -6
- package/src/main/js/sap/ushell_abap/adapters/abap/Ui5ComponentLoaderAdapter.js +1 -1
- package/src/main/js/sap/ushell_abap/adapters/hana/ContainerAdapter.js +1 -1
- package/src/main/js/sap/ushell_abap/bootstrap/evo/abap.configure.ushell.js +1 -1
- package/src/main/js/sap/ushell_abap/bootstrap/evo/boottask.js +12 -3
- package/src/main/js/sap/ushell_abap/library.js +10 -7
- package/src/main/js/sap/ushell_abap/pbServices/ui2/Factory.js +4 -2
- package/src/main/js/sap/ushell_abap/pbServices/ui2/PageBuildingService.js +13 -6
- package/src/main/js/sap/ushell_abap/pbServices/ui2/Utils.js +3 -1
- package/ui5.yaml +6 -4
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<library xmlns="http://www.sap.com/sap.ui.library.xsd">
|
|
3
3
|
<name>sap.ushell_abap</name>
|
|
4
4
|
<vendor>SAP SE</vendor>
|
|
5
|
-
<version>1.
|
|
5
|
+
<version>1.101.0</version>
|
|
6
6
|
<copyright>Copyright (c) 2009-2022 SAP SE, All Rights Reserved</copyright>
|
|
7
7
|
<documentation>SAP library: sap.ushell_abap</documentation>
|
|
8
8
|
|
|
@@ -24,6 +24,10 @@
|
|
|
24
24
|
<libraryName>sap.ui.fl</libraryName>
|
|
25
25
|
<lazy>true</lazy>
|
|
26
26
|
</dependency>
|
|
27
|
+
<dependency>
|
|
28
|
+
<libraryName>sap.f</libraryName>
|
|
29
|
+
<lazy>true</lazy>
|
|
30
|
+
</dependency>
|
|
27
31
|
</dependencies>
|
|
28
32
|
|
|
29
33
|
<appData>
|
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @fileOverview The Unified Shell's page building adapter for the ABAP platform.
|
|
5
|
-
*
|
|
5
|
+
*
|
|
6
|
+
* @deprecated since 1.100
|
|
7
|
+
* @version 1.101.0
|
|
6
8
|
*/
|
|
7
9
|
sap.ui.define([
|
|
8
10
|
"sap/ui/thirdparty/URI",
|
|
@@ -76,6 +78,7 @@ sap.ui.define([
|
|
|
76
78
|
* @constructor
|
|
77
79
|
* @see sap.ushell.services.LaunchPage
|
|
78
80
|
* @since 1.11.0
|
|
81
|
+
* @deprecated since 1.100
|
|
79
82
|
* @private
|
|
80
83
|
*/
|
|
81
84
|
var LaunchPageAdapter = function (oUnused, sParameter, oAdapterConfiguration) {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @fileOverview The Unified Shell's page building adapter for the ABAP platform.
|
|
5
|
-
* @version 1.
|
|
5
|
+
* @version 1.101.0
|
|
6
6
|
*/
|
|
7
7
|
sap.ui.define([
|
|
8
8
|
"sap/base/util/ObjectPath",
|
|
@@ -103,10 +103,14 @@ sap.ui.define([
|
|
|
103
103
|
sPageBuilderServiceUrl = sConfigBaseUrl;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
+
// Get CacheId for PAGE_BUILDER_PERS when available
|
|
107
|
+
var sCacheId = ObjectPath.get("sap-ushell-config.services.Container.adapter.config.services.pbFioriHome.cacheId");
|
|
108
|
+
|
|
106
109
|
oFactory = Factory.createFactory(
|
|
107
110
|
sPageBuilderServiceUrl,
|
|
108
111
|
undefined,
|
|
109
|
-
sScope === "PERS"
|
|
112
|
+
sScope === "PERS",
|
|
113
|
+
sCacheId
|
|
110
114
|
);
|
|
111
115
|
[ // predefined remote catalog services
|
|
112
116
|
"/sap/hba/apps/kpi/s/odata/hana_chip_catalog.xsodata/",
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @fileOverview PagePersistenceAdapter for the ABAP platform.
|
|
5
|
-
* @version 1.
|
|
5
|
+
* @version 1.101.0
|
|
6
6
|
*/
|
|
7
7
|
sap.ui.define([
|
|
8
8
|
"sap/base/util/ObjectPath",
|
|
@@ -3958,8 +3958,7 @@ sap.ui.define([
|
|
|
3958
3958
|
"sap-client": sap.ushell.Container.getLogonSystem().getClient()
|
|
3959
3959
|
},
|
|
3960
3960
|
defaultCountMode: "None",
|
|
3961
|
-
skipMetadataAnnotationParsing: true
|
|
3962
|
-
useBatch: true
|
|
3961
|
+
skipMetadataAnnotationParsing: true
|
|
3963
3962
|
});
|
|
3964
3963
|
|
|
3965
3964
|
// If we have the metdata cache backe in action, we will need to revert to the previous implementation
|
|
@@ -4056,6 +4055,8 @@ sap.ui.define([
|
|
|
4056
4055
|
PagePersistenceAdapter.prototype._readPage = function (pageId) {
|
|
4057
4056
|
return this.getMetadataPromise().then(function () {
|
|
4058
4057
|
return new Promise(function (resolve, reject) {
|
|
4058
|
+
// disable batch mode for reading single pages to avoid additional round trip for CSRF token fetch
|
|
4059
|
+
this.getODataModel().setUseBatch(false);
|
|
4059
4060
|
this.getODataModel().read("/pageSet('" + encodeURIComponent(pageId) + "')", {
|
|
4060
4061
|
urlParameters: {
|
|
4061
4062
|
$expand: "sections/viz,vizReferences/chipBags/properties,tileTypes/vizOptions/displayFormats/supported"
|
|
@@ -4091,6 +4092,8 @@ sap.ui.define([
|
|
|
4091
4092
|
});
|
|
4092
4093
|
aPageFilters.push(oPageFilter);
|
|
4093
4094
|
}
|
|
4095
|
+
// use batch mode for reading multiple pages to avoid URL length limit exceeding
|
|
4096
|
+
this.getODataModel().setUseBatch(true);
|
|
4094
4097
|
this.getODataModel().read("/pageSet", {
|
|
4095
4098
|
urlParameters: {
|
|
4096
4099
|
$expand: "sections/viz,vizReferences/chipBags/properties,tileTypes/vizOptions/displayFormats/supported"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @fileOverview The SupportTicket adapter for the ABAP platform.
|
|
5
|
-
* @version 1.
|
|
5
|
+
* @version 1.101.0
|
|
6
6
|
*/
|
|
7
7
|
sap.ui.define([
|
|
8
8
|
"sap/base/util/isEmptyObject",
|
|
@@ -76,13 +76,16 @@ sap.ui.define([
|
|
|
76
76
|
sHash = typeof sHash === "string" ? sHash : "";
|
|
77
77
|
sCatalogId = typeof sCatalogId === "string" && sCatalogId.length > 0 ? JSON.parse(sCatalogId).catalogId || "" : "";
|
|
78
78
|
|
|
79
|
+
//Remove whitespaces from both sides of the string
|
|
80
|
+
oSupportTicketData.text = oSupportTicketData.text.trim();
|
|
81
|
+
oSupportTicketData.subject = oSupportTicketData.subject.trim();
|
|
82
|
+
|
|
83
|
+
if (oSupportTicketData.subject.length > 40) {
|
|
84
|
+
oSupportTicketData.text = oSupportTicketData.subject + "\n" + oSupportTicketData.text;
|
|
85
|
+
oSupportTicketData.subject = oSupportTicketData.subject.substring(0, 40).slice(0, -3) + "...";
|
|
86
|
+
}
|
|
79
87
|
oSupportTicketData.url = sUrl;
|
|
80
88
|
oSupportTicketData.catalogId = sCatalogId;
|
|
81
|
-
|
|
82
|
-
oSupportTicketData.subject = resources.i18n.getText("contactSupport.Subject", [
|
|
83
|
-
oContainer.getLogonSystem().getName() + "-" + oContainer.getLogonSystem().getClient(),
|
|
84
|
-
oContainer.getUser().getId()
|
|
85
|
-
]).substring(0, 40);
|
|
86
89
|
oSupportTicketData.hash = sHash;
|
|
87
90
|
oSupportTicketData.clientContext = convertToReadable(oSupportTicketData.clientContext);
|
|
88
91
|
|
|
@@ -359,7 +359,7 @@ function (
|
|
|
359
359
|
*
|
|
360
360
|
* @private
|
|
361
361
|
*/
|
|
362
|
-
function setSapui5Settings (oSettings, oCurrencyFormats) {
|
|
362
|
+
function setSapui5Settings (oSettings, oCurrencyFormats, sTimeZoneIana) {
|
|
363
363
|
var oCore = sap.ui.getCore(),
|
|
364
364
|
oConfiguration = oCore.getConfiguration(),
|
|
365
365
|
oFormatSettings = oConfiguration.getFormatSettings();
|
|
@@ -384,6 +384,9 @@ function (
|
|
|
384
384
|
if (typeof oCurrencyFormats === "object") {
|
|
385
385
|
oFormatSettings.addCustomCurrencies(oCurrencyFormats);
|
|
386
386
|
}
|
|
387
|
+
if (sTimeZoneIana !== "" && typeof sTimeZoneIana === "string") {
|
|
388
|
+
oConfiguration.setTimezone(sTimeZoneIana);
|
|
389
|
+
}
|
|
387
390
|
}
|
|
388
391
|
|
|
389
392
|
/**
|
|
@@ -648,7 +651,8 @@ function (
|
|
|
648
651
|
var mParameterMap = Utils.getParameterMap(),
|
|
649
652
|
sRequestLocale = oAbapUtils.getUrlParameterValue("sap-locale", mParameterMap),
|
|
650
653
|
oUi5UserInfo = {},
|
|
651
|
-
oConfig
|
|
654
|
+
oConfig,
|
|
655
|
+
sTimeZoneIana;
|
|
652
656
|
|
|
653
657
|
// write the support ticket service enablement to the bootstrap config;
|
|
654
658
|
// do not enable if already disabled, but disable if not available in backend
|
|
@@ -699,8 +703,13 @@ function (
|
|
|
699
703
|
legacyTimeFormat: oStartupResult.timeFormat
|
|
700
704
|
};
|
|
701
705
|
}
|
|
706
|
+
|
|
707
|
+
sTimeZoneIana = ObjectPath.get("sap-ushell-config.startupConfig.timeZoneIana");
|
|
708
|
+
if (sTimeZoneIana === undefined) {
|
|
709
|
+
sTimeZoneIana = ObjectPath.create("sap-ushell-config.startupConfig.timeZoneIana");
|
|
710
|
+
}
|
|
702
711
|
processTheme(oStartupTheme, sSystemThemeRoot);
|
|
703
|
-
setSapui5Settings(oUi5UserInfo, oStartupResult.currencyFormats);
|
|
712
|
+
setSapui5Settings(oUi5UserInfo, oStartupResult.currencyFormats, sTimeZoneIana);
|
|
704
713
|
}
|
|
705
714
|
|
|
706
715
|
/**
|
|
@@ -3,23 +3,26 @@
|
|
|
3
3
|
sap.ui.define([
|
|
4
4
|
"sap/ui/core/library",
|
|
5
5
|
"sap/m/library"
|
|
6
|
-
], function (
|
|
6
|
+
], function (
|
|
7
|
+
coreLib,
|
|
8
|
+
mLib
|
|
9
|
+
) {
|
|
7
10
|
"use strict";
|
|
8
11
|
|
|
9
12
|
/**
|
|
10
13
|
* SAP library: sap.ushell_abap
|
|
11
|
-
* provides base functions for
|
|
14
|
+
* provides base functions for Fiori launchpad running on SAP NetWeaver ABAP
|
|
12
15
|
*
|
|
13
16
|
* @namespace
|
|
14
17
|
* @name sap.ushell_abap
|
|
15
18
|
* @author SAP SE
|
|
16
|
-
* @version 1.
|
|
19
|
+
* @version 1.101.0
|
|
17
20
|
* @private
|
|
18
21
|
* @ui5-restricted
|
|
19
22
|
*/
|
|
20
|
-
sap.ui.getCore().initLibrary({
|
|
23
|
+
var ushellAbapLib = sap.ui.getCore().initLibrary({
|
|
21
24
|
name: "sap.ushell_abap",
|
|
22
|
-
version: "1.
|
|
25
|
+
version: "1.101.0",
|
|
23
26
|
dependencies: ["sap.ui.core", "sap.m"],
|
|
24
27
|
noLibraryCSS: true,
|
|
25
28
|
extensions: {
|
|
@@ -31,5 +34,5 @@ sap.ui.define([
|
|
|
31
34
|
}
|
|
32
35
|
});
|
|
33
36
|
|
|
34
|
-
return
|
|
35
|
-
}
|
|
37
|
+
return ushellAbapLib;
|
|
38
|
+
});
|
|
@@ -629,6 +629,8 @@ sap.ui.define([
|
|
|
629
629
|
* @param {boolean} [bIsPersonalization=false]
|
|
630
630
|
* defines the return value of {@link sap.ushell_abap.pbServices.ui2.PageBuildingService#isPersonalization} of
|
|
631
631
|
* the returned factory's page building service facade (since 1.16.1)
|
|
632
|
+
* @param {string} [sCacheId]
|
|
633
|
+
* Cache ID to read from PAGE_BUILDER_PERS with cache busting.
|
|
632
634
|
* @returns {sap.ushell_abap.pbServices.ui2.Factory}
|
|
633
635
|
* returns the new factory for the given <code>sBaseUri</code>
|
|
634
636
|
* @since 1.2.0
|
|
@@ -637,9 +639,9 @@ sap.ui.define([
|
|
|
637
639
|
* @see sap.ushell_abap.pbServices.ui2.PageBuildingService
|
|
638
640
|
* @see PageBuildingService.createPageBuildingService()
|
|
639
641
|
*/
|
|
640
|
-
Factory.createFactory = function (sBaseUri, fnDefaultFailure, bIsPersonalization) {
|
|
642
|
+
Factory.createFactory = function (sBaseUri, fnDefaultFailure, bIsPersonalization, sCacheId) {
|
|
641
643
|
return new Factory(
|
|
642
|
-
PageBuildingService.createPageBuildingService(sBaseUri, fnDefaultFailure, bIsPersonalization)
|
|
644
|
+
PageBuildingService.createPageBuildingService(sBaseUri, fnDefaultFailure, bIsPersonalization, sCacheId)
|
|
643
645
|
);
|
|
644
646
|
};
|
|
645
647
|
|
|
@@ -52,12 +52,13 @@ sap.ui.define([
|
|
|
52
52
|
* for more details.
|
|
53
53
|
* @param {boolean} [bIsPersonalization=false]
|
|
54
54
|
* defines the return value of {@link #isPersonalization}; nothing else (since 1.16.1)
|
|
55
|
-
*
|
|
55
|
+
* @param {string} [sCacheId]
|
|
56
|
+
* Cache ID to read from PAGE_BUILDER_PERS with cache busting.
|
|
56
57
|
* @class
|
|
57
58
|
* @augments ODataService
|
|
58
59
|
* @since 1.2.0
|
|
59
60
|
*/
|
|
60
|
-
var PageBuildingService = function (vODataBase, fnDefaultFailure, bIsPersonalization) {
|
|
61
|
+
var PageBuildingService = function (vODataBase, fnDefaultFailure, bIsPersonalization, sCacheId) {
|
|
61
62
|
var oWrapper,
|
|
62
63
|
that = this;
|
|
63
64
|
|
|
@@ -1431,9 +1432,13 @@ sap.ui.define([
|
|
|
1431
1432
|
if (!sChipId) {
|
|
1432
1433
|
throw new SrvcError("Missing CHIP ID", "PageBuildingService");
|
|
1433
1434
|
}
|
|
1435
|
+
var sUrl = "Chips('" + encodeURIComponent(sChipId) + "')?$expand=ChipBags/ChipProperties";
|
|
1436
|
+
|
|
1437
|
+
if (sCacheId !== undefined) {
|
|
1438
|
+
sUrl = sUrl + "&sap-cache-id=" + sCacheId;
|
|
1439
|
+
}
|
|
1434
1440
|
|
|
1435
|
-
oWrapper.read(
|
|
1436
|
-
"?$expand=ChipBags/ChipProperties", fnSuccess, fnFailure);
|
|
1441
|
+
oWrapper.read(sUrl, fnSuccess, fnFailure);
|
|
1437
1442
|
};
|
|
1438
1443
|
|
|
1439
1444
|
// constructor code -------------------------------------------------------
|
|
@@ -1484,14 +1489,16 @@ sap.ui.define([
|
|
|
1484
1489
|
* @param {boolean} [bIsPersonalization=false]
|
|
1485
1490
|
* defines the return value of {@link PageBuildingService#isPersonalization} of
|
|
1486
1491
|
* the returned instance (since 1.16.1)
|
|
1492
|
+
* @param {string} [sCacheId]
|
|
1493
|
+
* Cache ID to read from PAGE_BUILDER_PERS with cache busting.
|
|
1487
1494
|
* @returns {PageBuildingService}
|
|
1488
1495
|
* a facade to the page building service
|
|
1489
1496
|
* @since 1.2.0
|
|
1490
1497
|
*
|
|
1491
1498
|
* @see PageBuildingService
|
|
1492
1499
|
*/
|
|
1493
|
-
PageBuildingService.createPageBuildingService = function (sBaseUri, fnDefaultFailure, bIsPersonalization) {
|
|
1494
|
-
return new PageBuildingService(sBaseUri, fnDefaultFailure, bIsPersonalization);
|
|
1500
|
+
PageBuildingService.createPageBuildingService = function (sBaseUri, fnDefaultFailure, bIsPersonalization, sCacheId) {
|
|
1501
|
+
return new PageBuildingService(sBaseUri, fnDefaultFailure, bIsPersonalization, sCacheId);
|
|
1495
1502
|
};
|
|
1496
1503
|
|
|
1497
1504
|
return PageBuildingService;
|
|
@@ -522,6 +522,7 @@ sap.ui.define([
|
|
|
522
522
|
sValue,
|
|
523
523
|
iIndexOfEquals,
|
|
524
524
|
aKeyValuePairs,
|
|
525
|
+
aKeyValuePairsLength,
|
|
525
526
|
// Note: location.search starts with "?" if not empty
|
|
526
527
|
sSearch = arguments.length > 0 ? sSearchString : location.search;
|
|
527
528
|
|
|
@@ -536,8 +537,9 @@ sap.ui.define([
|
|
|
536
537
|
// (http://www.w3.org/TR/1999/REC-html401-19991224/appendix/notes.html#h-B.2.2)
|
|
537
538
|
// http://unixpapa.com/js/querystring.html advocates this on the client-side also!
|
|
538
539
|
aKeyValuePairs = sSearch.substring(1).replace(/\+/g, " ").split(/[&;]/);
|
|
540
|
+
aKeyValuePairsLength = aKeyValuePairs.length < 500 ? aKeyValuePairs.length : 500;
|
|
539
541
|
|
|
540
|
-
for (i = 0, n =
|
|
542
|
+
for (i = 0, n = aKeyValuePairsLength; i < n; i += 1) {
|
|
541
543
|
// decode key/value pair at first "=" character
|
|
542
544
|
sKey = aKeyValuePairs[i];
|
|
543
545
|
sValue = ""; // Note: empty value may be omitted altogether
|
package/ui5.yaml
CHANGED
|
@@ -16,6 +16,7 @@ framework:
|
|
|
16
16
|
- name: sap.ui.layout
|
|
17
17
|
- name: sap.ui.fl
|
|
18
18
|
- name: sap.ushell
|
|
19
|
+
- name: sap.f
|
|
19
20
|
builder:
|
|
20
21
|
bundles:
|
|
21
22
|
- bundleDefinition:
|
|
@@ -273,9 +274,6 @@ builder:
|
|
|
273
274
|
- sap/ushell_abap/bootstrap/evo/abap-def-loader.js
|
|
274
275
|
# end bundle sap/ushell_abap/bootstrap/evo/abap.js
|
|
275
276
|
# bundle sap/ushell_abap/bootstrap/evo/core-min.js
|
|
276
|
-
- ui5loader-autoconfig.js
|
|
277
|
-
- sap/ushell_abap/bootstrap/evo/abap-def.js
|
|
278
|
-
- sap/ushell/bootstrap/ui5loader-config.js
|
|
279
277
|
- sap/ui/core/ComponentContainer.js
|
|
280
278
|
- sap/ui/core/CustomData.js
|
|
281
279
|
- sap/ui/core/EventBus.js
|
|
@@ -306,6 +304,7 @@ builder:
|
|
|
306
304
|
- sap/m/BusyIndicator.js
|
|
307
305
|
- sap/m/GenericTile.js
|
|
308
306
|
- sap/m/GenericTileRenderer.js
|
|
307
|
+
- sap/m/IllustratedMessage.js
|
|
309
308
|
- sap/m/Image.js
|
|
310
309
|
- sap/m/ImageContent.js
|
|
311
310
|
- sap/m/ImageContentRenderer.js
|
|
@@ -324,6 +323,8 @@ builder:
|
|
|
324
323
|
- sap/m/Table.js
|
|
325
324
|
- sap/m/TileContent.js
|
|
326
325
|
- sap/m/TileContentRenderer.js
|
|
326
|
+
- sap/f/GridContainer.js
|
|
327
|
+
- sap/f/GridContainerItemLayoutData.js
|
|
327
328
|
- sap/ushell/library.js
|
|
328
329
|
- sap/ushell/CanvasShapesManager.js
|
|
329
330
|
- sap/ushell/Fiori20AdapterTest.js
|
|
@@ -429,7 +430,6 @@ builder:
|
|
|
429
430
|
resolve: true
|
|
430
431
|
renderer: true
|
|
431
432
|
- mode: preload
|
|
432
|
-
name: sap/fiori/core-ext-light
|
|
433
433
|
filters:
|
|
434
434
|
- jquery.sap.*
|
|
435
435
|
- sap/base/
|
|
@@ -437,12 +437,14 @@ builder:
|
|
|
437
437
|
- sap/ui/core/
|
|
438
438
|
- sap/ui/dom/
|
|
439
439
|
- sap/ui/events/
|
|
440
|
+
- sap/ui/layout/ # layout's library.js is used in sap.f in core-min
|
|
440
441
|
- sap/ui/model/
|
|
441
442
|
- sap/ui/performance/
|
|
442
443
|
- sap/ui/security/
|
|
443
444
|
- sap/ui/util/
|
|
444
445
|
- sap/ui/thirdparty/
|
|
445
446
|
- sap/m/
|
|
447
|
+
- sap/f/
|
|
446
448
|
- sap/ushell/
|
|
447
449
|
- '!**/*-preload.js'
|
|
448
450
|
- '!sap/ui/core/messagebundle*.properties'
|