@sapui5/sap.ushell_abap 1.108.13 → 1.108.15
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 +1 -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 +15 -3
- package/src/main/js/sap/ushell_abap/adapters/abap/NavTargetResolutionAdapter.js +1 -1
- package/src/main/js/sap/ushell_abap/adapters/abap/PageBuildingAdapter.js +1 -1
- package/src/main/js/sap/ushell_abap/adapters/abap/PagePersistenceAdapter.js +1 -1
- 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 +1 -1
- 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/library.js +2 -2
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.108.
|
|
5
|
+
<version>1.108.15</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
|
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @fileOverview The Unified Shell's page building adapter for the ABAP platform.
|
|
5
5
|
*
|
|
6
6
|
* @deprecated since 1.100
|
|
7
|
-
* @version 1.108.
|
|
7
|
+
* @version 1.108.15
|
|
8
8
|
*/
|
|
9
9
|
sap.ui.define([
|
|
10
10
|
"sap/ui/thirdparty/URI",
|
|
@@ -1441,7 +1441,7 @@ sap.ui.define([
|
|
|
1441
1441
|
};
|
|
1442
1442
|
|
|
1443
1443
|
/**
|
|
1444
|
-
* Fetches the group tiles and clones them
|
|
1444
|
+
* Fetches the group tiles and clones them. The failing group tiles are filtered out
|
|
1445
1445
|
* @param {sap.ushell_abap.pbServices.ui2.Page} oGroup The group
|
|
1446
1446
|
* @returns {Promise<sap.ushell_abap.pbServices.ui2.ChipInstance[]>} The array of group tiles
|
|
1447
1447
|
*
|
|
@@ -1453,7 +1453,19 @@ sap.ui.define([
|
|
|
1453
1453
|
var aGroupTilePromises = aGroupTiles.map(function (oChipInstance) {
|
|
1454
1454
|
return oChipInstance.clone();
|
|
1455
1455
|
});
|
|
1456
|
-
|
|
1456
|
+
|
|
1457
|
+
return Promise.allSettled(aGroupTilePromises).then(function (aTiles) {
|
|
1458
|
+
return aTiles.map(function (oTile) {
|
|
1459
|
+
if (!oTile.value) {
|
|
1460
|
+
Log.warning("Group tile was filtered out: ", oTile.reason);
|
|
1461
|
+
}
|
|
1462
|
+
return oTile.value;
|
|
1463
|
+
})
|
|
1464
|
+
.filter(function (oChipInstance) {
|
|
1465
|
+
return oChipInstance;
|
|
1466
|
+
});
|
|
1467
|
+
|
|
1468
|
+
});
|
|
1457
1469
|
};
|
|
1458
1470
|
|
|
1459
1471
|
/**
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
* Container header properties transported via pseudo-items are mapped to the
|
|
8
8
|
* respective header properties in setItem/getItem/delItem
|
|
9
9
|
*
|
|
10
|
-
* @version 1.108.
|
|
10
|
+
* @version 1.108.15
|
|
11
11
|
*/
|
|
12
12
|
sap.ui.define([
|
|
13
13
|
"sap/ushell_abap/adapters/abap/AdapterContainer",
|
|
@@ -16,13 +16,13 @@ sap.ui.define([
|
|
|
16
16
|
* @namespace
|
|
17
17
|
* @name sap.ushell_abap
|
|
18
18
|
* @author SAP SE
|
|
19
|
-
* @version 1.108.
|
|
19
|
+
* @version 1.108.15
|
|
20
20
|
* @private
|
|
21
21
|
* @ui5-restricted
|
|
22
22
|
*/
|
|
23
23
|
var ushellAbapLib = sap.ui.getCore().initLibrary({
|
|
24
24
|
name: "sap.ushell_abap",
|
|
25
|
-
version: "1.108.
|
|
25
|
+
version: "1.108.15",
|
|
26
26
|
dependencies: ["sap.ui.core", "sap.m"],
|
|
27
27
|
noLibraryCSS: true,
|
|
28
28
|
extensions: {
|