@sapui5/sap.ushell_abap 1.97.1 → 1.98.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 +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 +36 -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 +34 -14
- 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-def-loader.js +6 -0
- 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 +3 -7
- package/src/main/js/sap/ushell_abap/library.js +2 -2
- package/src/main/js/sap/ushell_abap/pbServices/ui2/Chip.js +12 -0
- package/ui5.yaml +377 -17
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.98.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
|
|
|
@@ -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.98.0
|
|
6
6
|
*/
|
|
7
7
|
sap.ui.define([
|
|
8
8
|
"sap/ui/thirdparty/URI",
|
|
@@ -2594,6 +2594,31 @@ sap.ui.define([
|
|
|
2594
2594
|
return sId;
|
|
2595
2595
|
};
|
|
2596
2596
|
|
|
2597
|
+
/**
|
|
2598
|
+
* Returns the stable id of the catalog tile.
|
|
2599
|
+
* Note: If no stable id can be retrieved (For example for technical catalog tiles) or the reference is broken
|
|
2600
|
+
* a fallback to the normal id is in place.
|
|
2601
|
+
*
|
|
2602
|
+
* @param {sap.ui2.ChipInstance} oTile the tile or the catalog tile
|
|
2603
|
+
* @returns {string} the stable id
|
|
2604
|
+
* @private
|
|
2605
|
+
* @since 1.98.0
|
|
2606
|
+
*/
|
|
2607
|
+
this.getStableCatalogTileId = function (oTile) {
|
|
2608
|
+
var oChip = oTile.getChip();
|
|
2609
|
+
var sStableId = oChip.getReferenceChipId();
|
|
2610
|
+
|
|
2611
|
+
if (sStableId === "O") {
|
|
2612
|
+
// The reference is broken. We do not want to return the value indicating that
|
|
2613
|
+
sStableId = null;
|
|
2614
|
+
}
|
|
2615
|
+
if (!sStableId) {
|
|
2616
|
+
sStableId = this.getCatalogTileId(oTile);
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
return sStableId;
|
|
2620
|
+
};
|
|
2621
|
+
|
|
2597
2622
|
/**
|
|
2598
2623
|
* Returns the catalog tile's title. May be called for a catalog tile or (since 1.32.0) for a group tile.
|
|
2599
2624
|
*
|
|
@@ -3665,8 +3690,16 @@ sap.ui.define([
|
|
|
3665
3690
|
|
|
3666
3691
|
oResponse.results.forEach(function (oCatalog) {
|
|
3667
3692
|
oCatalog.Chips.results.forEach(function (oChip) {
|
|
3668
|
-
|
|
3669
|
-
|
|
3693
|
+
var sChipId;
|
|
3694
|
+
|
|
3695
|
+
if (Config.last("/core/stableIDs/enabled") && oChip.referenceChipId) {
|
|
3696
|
+
sChipId = oChip.referenceChipId;
|
|
3697
|
+
} else {
|
|
3698
|
+
sChipId = oChip.id;
|
|
3699
|
+
}
|
|
3700
|
+
|
|
3701
|
+
if (!oCatalogTileIndex[sChipId]) {
|
|
3702
|
+
oCatalogTileIndex[sChipId] = oChip;
|
|
3670
3703
|
}
|
|
3671
3704
|
});
|
|
3672
3705
|
});
|
|
@@ -2,15 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @fileOverview PagePersistenceAdapter for the ABAP platform.
|
|
5
|
-
* @version 1.
|
|
5
|
+
* @version 1.98.0
|
|
6
6
|
*/
|
|
7
7
|
sap.ui.define([
|
|
8
8
|
"sap/base/util/ObjectPath",
|
|
9
9
|
"sap/ui/model/odata/v2/ODataModel",
|
|
10
10
|
"sap/ui/model/odata/ODataMetadata",
|
|
11
11
|
"sap/ushell/resources",
|
|
12
|
-
"sap/ushell/utils/chipsUtils"
|
|
13
|
-
|
|
12
|
+
"sap/ushell/utils/chipsUtils",
|
|
13
|
+
"sap/ushell/Config"
|
|
14
|
+
], function (ObjectPath, ODataModel, ODataMetadata, resources, chipsUtils, Config) {
|
|
14
15
|
|
|
15
16
|
"use strict";
|
|
16
17
|
|
|
@@ -2437,7 +2438,7 @@ sap.ui.define([
|
|
|
2437
2438
|
},
|
|
2438
2439
|
defaultCountMode: "None",
|
|
2439
2440
|
skipMetadataAnnotationParsing: true,
|
|
2440
|
-
useBatch:
|
|
2441
|
+
useBatch: true
|
|
2441
2442
|
});
|
|
2442
2443
|
|
|
2443
2444
|
// If we have the metdata cache backe in action, we will need to revert to the previous implementation
|
|
@@ -2594,6 +2595,8 @@ sap.ui.define([
|
|
|
2594
2595
|
* @private
|
|
2595
2596
|
*/
|
|
2596
2597
|
PagePersistenceAdapter.prototype._convertODataToReferenceData = function (page, URLParsing) {
|
|
2598
|
+
var oUnstableVisualizations = {};
|
|
2599
|
+
var bStableIDsEnabled = Config.last("/core/stableIDs/enabled");
|
|
2597
2600
|
var oData = {
|
|
2598
2601
|
page: {
|
|
2599
2602
|
id: page.id,
|
|
@@ -2614,9 +2617,8 @@ sap.ui.define([
|
|
|
2614
2617
|
id: oViz.id,
|
|
2615
2618
|
itemIndex: oViz.itemIndex,
|
|
2616
2619
|
targetMappingId: oViz.targetMappingId,
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
inboundPermanentKey: oViz.targetMappingId, // our "inboundPermanentKey" should be renamed to "targetMappingId"
|
|
2620
|
+
vizId: bStableIDsEnabled ? oViz.catalogTileIdStable : oViz.catalogTileId,
|
|
2621
|
+
inboundPermanentKey: bStableIDsEnabled ? oViz.targetMappingIdStable : oViz.targetMappingId,
|
|
2620
2622
|
displayFormatHint: oViz.displayFormatHint
|
|
2621
2623
|
};
|
|
2622
2624
|
}).sort(function (firstViz, secondViz) {
|
|
@@ -2628,13 +2630,13 @@ sap.ui.define([
|
|
|
2628
2630
|
})
|
|
2629
2631
|
},
|
|
2630
2632
|
// mapping from vizReference to visualization
|
|
2631
|
-
visualizations: page.vizReferences.results.reduce(function (oVisualizations,
|
|
2632
|
-
var oSimplifiedChip = this._getSimplifiedChip(
|
|
2633
|
-
|
|
2634
|
-
vizType:
|
|
2635
|
-
title:
|
|
2636
|
-
subTitle:
|
|
2637
|
-
icon:
|
|
2633
|
+
visualizations: page.vizReferences.results.reduce(function (oVisualizations, oVisualizationData) {
|
|
2634
|
+
var oSimplifiedChip = this._getSimplifiedChip(oVisualizationData);
|
|
2635
|
+
var oVisualization = {
|
|
2636
|
+
vizType: oVisualizationData.tileType,
|
|
2637
|
+
title: oVisualizationData.title,
|
|
2638
|
+
subTitle: oVisualizationData.subTitle,
|
|
2639
|
+
icon: oVisualizationData.iconUrl,
|
|
2638
2640
|
info: chipsUtils.getInfoFromSimplifiedChip(oSimplifiedChip),
|
|
2639
2641
|
keywords: chipsUtils.getKeywordsFromSimplifiedChip(oSimplifiedChip),
|
|
2640
2642
|
size: chipsUtils.getTileSizeFromSimplifiedChip(oSimplifiedChip),
|
|
@@ -2648,6 +2650,20 @@ sap.ui.define([
|
|
|
2648
2650
|
chip: oSimplifiedChip
|
|
2649
2651
|
}
|
|
2650
2652
|
};
|
|
2653
|
+
|
|
2654
|
+
if (bStableIDsEnabled) {
|
|
2655
|
+
// TO DO: Move this line to the object declaration after the FeatureSwitch is removed!
|
|
2656
|
+
oVisualization.vizId = oVisualizationData.catalogTileIdStable;
|
|
2657
|
+
|
|
2658
|
+
oVisualizations[oVisualizationData.catalogTileIdStable] = oVisualization;
|
|
2659
|
+
|
|
2660
|
+
if (oVisualizationData.fromPersonalization && oVisualizationData.id !== oVisualizationData.catalogTileIdStable) {
|
|
2661
|
+
oUnstableVisualizations[oVisualizationData.id] = oVisualization;
|
|
2662
|
+
}
|
|
2663
|
+
} else {
|
|
2664
|
+
oVisualizations[oVisualizationData.id] = oVisualization;
|
|
2665
|
+
}
|
|
2666
|
+
|
|
2651
2667
|
return oVisualizations;
|
|
2652
2668
|
}.bind(this), {}),
|
|
2653
2669
|
// mapping from tileTypes to vizTypes
|
|
@@ -2671,6 +2687,10 @@ sap.ui.define([
|
|
|
2671
2687
|
}, {})
|
|
2672
2688
|
};
|
|
2673
2689
|
|
|
2690
|
+
if (bStableIDsEnabled) {
|
|
2691
|
+
oData.unstableVisualizations = Object.keys(oUnstableVisualizations).length > 0 ? oUnstableVisualizations : null;
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2674
2694
|
return oData;
|
|
2675
2695
|
};
|
|
2676
2696
|
|
|
@@ -855,12 +855,6 @@ function (
|
|
|
855
855
|
function bootstrap (oStartupCallResult, aServerConfig, fnCallback) {
|
|
856
856
|
var sShellHash = getShellHash();
|
|
857
857
|
|
|
858
|
-
// UI5 has to be informed that our bootstrap has started.
|
|
859
|
-
// otherwise:
|
|
860
|
-
// It assumes - in case of a slow startup request, that the page has been rendered already.
|
|
861
|
-
// So it calls the FESR enhancement hook and we have no statistical record to report.
|
|
862
|
-
initTraces();
|
|
863
|
-
|
|
864
858
|
// Note: processStartup creates window["sap-ushell-config"]
|
|
865
859
|
processStartup(oStartupCallResult);
|
|
866
860
|
|
|
@@ -991,10 +985,12 @@ function (
|
|
|
991
985
|
|
|
992
986
|
oXhrHandler.initXhrLogon(window["sap-ushell-config"]);
|
|
993
987
|
|
|
988
|
+
// initialize UI5 performance tracing (FESR) before first request is sent, so that this is also instrumented
|
|
989
|
+
initTraces();
|
|
990
|
+
|
|
994
991
|
//TODO: this may move before TargetMappings & pageset firing (in case of contention of network connections)
|
|
995
992
|
//fire start-up request if direct start also indicates suppression of pageset request
|
|
996
993
|
//must be kept before success handler of requestStartUp
|
|
997
|
-
|
|
998
994
|
oStartupPromise = oStartupHandler.requestStartupConfig().then(function (oStartupResult) {
|
|
999
995
|
var sHash = getShellHash();
|
|
1000
996
|
(ObjectPath.get("sap-ushell-config.services.Container.adapter") || ObjectPath.create("sap-ushell-config.services.Container.adapter")).config = oStartupResult;
|
|
@@ -13,13 +13,13 @@ sap.ui.define([
|
|
|
13
13
|
* @namespace
|
|
14
14
|
* @name sap.ushell_abap
|
|
15
15
|
* @author SAP SE
|
|
16
|
-
* @version 1.
|
|
16
|
+
* @version 1.98.0
|
|
17
17
|
* @private
|
|
18
18
|
* @ui5-restricted
|
|
19
19
|
*/
|
|
20
20
|
sap.ui.getCore().initLibrary({
|
|
21
21
|
name: "sap.ushell_abap",
|
|
22
|
-
version: "1.
|
|
22
|
+
version: "1.98.0",
|
|
23
23
|
dependencies: ["sap.ui.core", "sap.m"],
|
|
24
24
|
noLibraryCSS: true,
|
|
25
25
|
extensions: {
|
|
@@ -502,6 +502,18 @@ sap.ui.define([
|
|
|
502
502
|
return oAlterEgo.id;
|
|
503
503
|
};
|
|
504
504
|
|
|
505
|
+
/**
|
|
506
|
+
* Returns this CHIP's reference ID also known as the stable ID
|
|
507
|
+
*
|
|
508
|
+
* @returns {string}
|
|
509
|
+
* this CHIP's reference ID
|
|
510
|
+
* @since 1.98.0
|
|
511
|
+
* @private
|
|
512
|
+
*/
|
|
513
|
+
this.getReferenceChipId = function () {
|
|
514
|
+
return oAlterEgo.referenceChipId;
|
|
515
|
+
};
|
|
516
|
+
|
|
505
517
|
/**
|
|
506
518
|
* Returns this CHIP instance's implementation of type SAPUI5 as a control. This control
|
|
507
519
|
* represents the root of this CHIP instance's UI from a page builder point of view. Can only
|
package/ui5.yaml
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
specVersion: '
|
|
1
|
+
specVersion: '2.4'
|
|
2
2
|
type: library
|
|
3
3
|
metadata:
|
|
4
4
|
name: sap.ushell_abap
|
|
@@ -18,6 +18,197 @@ framework:
|
|
|
18
18
|
- name: sap.ushell
|
|
19
19
|
builder:
|
|
20
20
|
bundles:
|
|
21
|
+
- bundleDefinition:
|
|
22
|
+
name: sap/ushell_abap/bootstrap/appruntime-min.js
|
|
23
|
+
sections:
|
|
24
|
+
- mode: raw
|
|
25
|
+
filters:
|
|
26
|
+
- sap/ushell/appRuntime/ui5/BusyIndicator.js
|
|
27
|
+
declareRawModules: false
|
|
28
|
+
resolve: true
|
|
29
|
+
- mode: raw
|
|
30
|
+
filters:
|
|
31
|
+
- sap/ushell/appRuntime/ui5/libsPreload.js
|
|
32
|
+
declareRawModules: false
|
|
33
|
+
resolve: true
|
|
34
|
+
- mode: raw
|
|
35
|
+
filters:
|
|
36
|
+
- ui5loader-autoconfig.js
|
|
37
|
+
declareRawModules: false
|
|
38
|
+
resolve: true
|
|
39
|
+
sort: true
|
|
40
|
+
- mode: preload
|
|
41
|
+
filters:
|
|
42
|
+
- sap/ui/core/Core.js
|
|
43
|
+
renderer: true
|
|
44
|
+
resolve: true
|
|
45
|
+
resolveConditional: false
|
|
46
|
+
- mode: preload
|
|
47
|
+
name: sap/ushell/appruntime-min-preload
|
|
48
|
+
filters:
|
|
49
|
+
- sap/ushell/appRuntime/ui5/
|
|
50
|
+
- sap/ushell/components/applicationIntegration/application/PostMessageAPIInterface.js
|
|
51
|
+
- sap/ushell/components/pages/controller/PagesAndSpaceId.js
|
|
52
|
+
- sap/ushell/ui5service/_ShellUIService/shelluiservice.class.factory.js
|
|
53
|
+
- sap/ushell/ui5service/UserStatus.js
|
|
54
|
+
- sap/ushell/Ui5ServiceFactory.js
|
|
55
|
+
- sap/ushell/utils.js
|
|
56
|
+
- sap/ushell/utils/clone.js
|
|
57
|
+
- sap/ushell/utils/type.js
|
|
58
|
+
- sap/ushell/utils/objectOperations.js
|
|
59
|
+
- sap/ushell/utils/UrlParsing.js
|
|
60
|
+
- sap/ushell/utils/WindowUtils.js
|
|
61
|
+
- sap/ushell/utils/UrlShortening.js
|
|
62
|
+
- sap/ushell/EventHub.js
|
|
63
|
+
- sap/ushell/resources.js
|
|
64
|
+
- sap/ushell/renderers/fiori2/search/HashChangeHandler.js
|
|
65
|
+
- sap/ushell/System.js
|
|
66
|
+
- sap/ushell/Ui5NativeServiceFactory.js
|
|
67
|
+
- sap/ushell/User.js
|
|
68
|
+
- sap/ushell/services/AppConfiguration.js
|
|
69
|
+
- sap/ushell/services/AppState.js
|
|
70
|
+
- sap/ushell/services/_AppState/AppState.js
|
|
71
|
+
- sap/ushell/services/_AppState/AppStatePersistencyMethod.js
|
|
72
|
+
- sap/ushell/services/AppLifeCycle.js
|
|
73
|
+
- sap/ushell/services/Container.js
|
|
74
|
+
- sap/ushell/services/CrossApplicationNavigation.js
|
|
75
|
+
- sap/ushell/services/_CrossApplicationNavigation/utils.js
|
|
76
|
+
- sap/ushell/services/Personalization.js
|
|
77
|
+
- sap/ushell/services/_Personalization/
|
|
78
|
+
- sap/ushell/services/PluginManager.js
|
|
79
|
+
- sap/ushell/services/ShellNavigation.js
|
|
80
|
+
- sap/ushell/services/ShellNavigationHashChanger.js
|
|
81
|
+
- sap/ushell/services/URLShortening.js
|
|
82
|
+
- sap/ushell/services/URLParsing.js
|
|
83
|
+
- sap/ushell/services/UserInfo.js
|
|
84
|
+
- sap/ushell/services/Ui5ComponentLoader.js
|
|
85
|
+
- sap/ushell/services/Ui5ComponentHandle.js
|
|
86
|
+
- sap/ushell/services/_Ui5ComponentLoader/utils.js
|
|
87
|
+
- sap/ushell/Config.js
|
|
88
|
+
- sap/ushell/bootstrap/common/common.create.configcontract.core.js
|
|
89
|
+
- sap/ushell/_Config/utils.js
|
|
90
|
+
- sap/ushell/Fiori20AdapterTest.js
|
|
91
|
+
- sap/ushell/Fiori20Adapter.js
|
|
92
|
+
- sap/ushell/library.js
|
|
93
|
+
- sap/ushell/ui/footerbar/AddBookmarkButton*
|
|
94
|
+
- sap/ushell/ui/footerbar/SendAsEmailButton*
|
|
95
|
+
- sap/collaboration/components/fiori/sharing/dialog/Component.js
|
|
96
|
+
- sap/collaboration/components/utils/CommonUtil.js
|
|
97
|
+
- sap/collaboration/components/utils/MessageQueueUtil.js
|
|
98
|
+
- sap/ushell/ui/launchpad/ActionItem*
|
|
99
|
+
- sap/ushell/ui/utils.js
|
|
100
|
+
- sap/ushell/iconfonts.js
|
|
101
|
+
- sap/ushell_abap/ui5appruntime/AppInfoAdapter.js
|
|
102
|
+
- sap/ushell_abap/adapters/abap/AdapterContainer.js
|
|
103
|
+
- sap/ushell_abap/adapters/abap/PersonalizationAdapter.js
|
|
104
|
+
- sap/ui2/srvc/ODataWrapper.js
|
|
105
|
+
- sap/ui2/srvc/ODataService.js
|
|
106
|
+
- sap/ui2/srvc/utils.js
|
|
107
|
+
- sap/ui/thirdparty/datajs.js
|
|
108
|
+
- sap/ui/thirdparty/bignumber.js
|
|
109
|
+
- sap/ui/thirdparty/URITemplate.js
|
|
110
|
+
- sap/ui/integration/services/Navigation.js
|
|
111
|
+
- sap/ui/integration/services/Service.js
|
|
112
|
+
- sap/ui/integration/services/Data.js
|
|
113
|
+
- sap/ui/layout/AlignedFlowLayout.js
|
|
114
|
+
- sap/ui/layout/AlignedFlowLayoutRenderer.js
|
|
115
|
+
- sap/ui/layout/AssociativeSplitter.js
|
|
116
|
+
- sap/ui/layout/BlockLayout.js
|
|
117
|
+
- sap/ui/layout/BlockLayoutCell.js
|
|
118
|
+
- sap/ui/layout/BlockLayoutCellData.js
|
|
119
|
+
- sap/ui/layout/BlockLayoutCellRenderer.js
|
|
120
|
+
- sap/ui/layout/BlockLayoutRenderer.js
|
|
121
|
+
- sap/ui/layout/BlockLayoutRow.js
|
|
122
|
+
- sap/ui/layout/BlockLayoutRowRenderer.js
|
|
123
|
+
- sap/ui/layout/DynamicSideContent.js
|
|
124
|
+
- sap/ui/layout/DynamicSideContentRenderer.js
|
|
125
|
+
- sap/ui/layout/FixFlex.js
|
|
126
|
+
- sap/ui/layout/FixFlexRenderer.js
|
|
127
|
+
- sap/ui/layout/Grid.js
|
|
128
|
+
- sap/ui/layout/GridData.js
|
|
129
|
+
- sap/ui/layout/GridRenderer.js
|
|
130
|
+
- sap/ui/layout/HorizontalLayout.js
|
|
131
|
+
- sap/ui/layout/HorizontalLayoutRenderer.js
|
|
132
|
+
- sap/ui/layout/PaneContainer.js
|
|
133
|
+
- sap/ui/layout/ResponsiveFlowLayout.js
|
|
134
|
+
- sap/ui/layout/ResponsiveFlowLayoutData.js
|
|
135
|
+
- sap/ui/layout/ResponsiveFlowLayoutRenderer.js
|
|
136
|
+
- sap/ui/layout/ResponsiveSplitter.js
|
|
137
|
+
- sap/ui/layout/ResponsiveSplitterPage.js
|
|
138
|
+
- sap/ui/layout/ResponsiveSplitterRenderer.js
|
|
139
|
+
- sap/ui/layout/ResponsiveSplitterUtilities.js
|
|
140
|
+
- sap/ui/layout/SplitPane.js
|
|
141
|
+
- sap/ui/layout/Splitter.js
|
|
142
|
+
- sap/ui/layout/SplitterLayoutData.js
|
|
143
|
+
- sap/ui/layout/SplitterRenderer.js
|
|
144
|
+
- sap/ui/layout/VerticalLayout.js
|
|
145
|
+
- sap/ui/layout/VerticalLayoutRenderer.js
|
|
146
|
+
- sap/ui/layout/changeHandler/AddFormContainer.js
|
|
147
|
+
- sap/ui/layout/changeHandler/AddFormField.js
|
|
148
|
+
- sap/ui/layout/changeHandler/AddSimpleFormField.js
|
|
149
|
+
- sap/ui/layout/changeHandler/AddSimpleFormGroup.js
|
|
150
|
+
- sap/ui/layout/changeHandler/HideSimpleForm.js
|
|
151
|
+
- sap/ui/layout/changeHandler/MoveSimpleForm.js
|
|
152
|
+
- sap/ui/layout/changeHandler/RenameFormContainer.js
|
|
153
|
+
- sap/ui/layout/changeHandler/RenameSimpleForm.js
|
|
154
|
+
- sap/ui/layout/changeHandler/UnhideSimpleForm.js
|
|
155
|
+
- sap/ui/layout/cssgrid/CSSGrid.js
|
|
156
|
+
- sap/ui/layout/cssgrid/CSSGridRenderer.js
|
|
157
|
+
- sap/ui/layout/cssgrid/GridBasicLayout.js
|
|
158
|
+
- sap/ui/layout/cssgrid/GridBoxLayout.js
|
|
159
|
+
- sap/ui/layout/cssgrid/GridBoxLayoutStyleHelper.js
|
|
160
|
+
- sap/ui/layout/cssgrid/GridItemLayoutData.js
|
|
161
|
+
- sap/ui/layout/cssgrid/GridLayoutBase.js
|
|
162
|
+
- sap/ui/layout/cssgrid/GridLayoutDelegate.js
|
|
163
|
+
- sap/ui/layout/cssgrid/GridResponsiveLayout.js
|
|
164
|
+
- sap/ui/layout/cssgrid/GridSettings.js
|
|
165
|
+
- sap/ui/layout/cssgrid/ResponsiveColumnItemLayoutData.js
|
|
166
|
+
- sap/ui/layout/cssgrid/ResponsiveColumnLayout.js
|
|
167
|
+
- sap/ui/layout/cssgrid/VirtualGrid.js
|
|
168
|
+
- sap/ui/layout/flexibility/BlockLayoutCell.flexibility.js
|
|
169
|
+
- sap/ui/layout/flexibility/Form.flexibility.js
|
|
170
|
+
- sap/ui/layout/flexibility/FormContainer.flexibility.js
|
|
171
|
+
- sap/ui/layout/flexibility/FormElement.flexibility.js
|
|
172
|
+
- sap/ui/layout/flexibility/SimpleForm.flexibility.js
|
|
173
|
+
- sap/ui/layout/form/ColumnContainerData.js
|
|
174
|
+
- sap/ui/layout/form/ColumnElementData.js
|
|
175
|
+
- sap/ui/layout/form/ColumnLayout.js
|
|
176
|
+
- sap/ui/layout/form/ColumnLayoutRenderer.js
|
|
177
|
+
- sap/ui/layout/form/Form.js
|
|
178
|
+
- sap/ui/layout/form/FormContainer.js
|
|
179
|
+
- sap/ui/layout/form/FormElement.js
|
|
180
|
+
- sap/ui/layout/form/FormLayout.js
|
|
181
|
+
- sap/ui/layout/form/FormLayoutRenderer.js
|
|
182
|
+
- sap/ui/layout/form/FormRenderer.js
|
|
183
|
+
- sap/ui/layout/form/GridContainerData.js
|
|
184
|
+
- sap/ui/layout/form/GridElementData.js
|
|
185
|
+
- sap/ui/layout/form/GridLayout.js
|
|
186
|
+
- sap/ui/layout/form/GridLayoutRenderer.js
|
|
187
|
+
- sap/ui/layout/form/ResponsiveGridLayout.js
|
|
188
|
+
- sap/ui/layout/form/ResponsiveGridLayoutRenderer.js
|
|
189
|
+
- sap/ui/layout/form/ResponsiveLayout.js
|
|
190
|
+
- sap/ui/layout/form/ResponsiveLayoutRenderer.js
|
|
191
|
+
- sap/ui/layout/form/SimpleForm.js
|
|
192
|
+
- sap/ui/layout/form/SimpleFormRenderer.js
|
|
193
|
+
- sap/ui/layout/library.js
|
|
194
|
+
- sap/fe/navigation/NavigationHandler.js
|
|
195
|
+
- sap/fe/navigation/library.js
|
|
196
|
+
- sap/fe/navigation/PresentationVariant.js
|
|
197
|
+
- sap/fe/navigation/SelectionVariant.js
|
|
198
|
+
- sap/fe/navigation/NavError.js
|
|
199
|
+
- '!**/*-preload.js'
|
|
200
|
+
- '!sap/ushell/appRuntime/ui5/BusyIndicator.js'
|
|
201
|
+
- '!sap/ushell/appRuntime/ui5/libsPreload.js'
|
|
202
|
+
resolve: false
|
|
203
|
+
renderer: false
|
|
204
|
+
- mode: require
|
|
205
|
+
filters:
|
|
206
|
+
- sap/ui/core/Core.js
|
|
207
|
+
bundleOptions:
|
|
208
|
+
optimize: true
|
|
209
|
+
usePredefineCalls: true
|
|
210
|
+
decorateBootstrapModule: true
|
|
211
|
+
numberOfParts: 4
|
|
21
212
|
- bundleDefinition:
|
|
22
213
|
name: sap/ushell_abap/bootstrap/evo/abap-dbg.js
|
|
23
214
|
sections:
|
|
@@ -26,14 +217,18 @@ builder:
|
|
|
26
217
|
- sap/ushell/bootstrap/ui5loader-config.js
|
|
27
218
|
declareRawModules: false
|
|
28
219
|
resolve: true
|
|
220
|
+
sort: true
|
|
29
221
|
- mode: raw
|
|
30
222
|
filters:
|
|
31
223
|
- ui5loader-autoconfig.js
|
|
32
224
|
declareRawModules: false
|
|
33
225
|
resolve: true
|
|
34
|
-
|
|
226
|
+
sort: true
|
|
227
|
+
- mode: raw
|
|
35
228
|
filters:
|
|
36
|
-
- sap/ushell_abap/bootstrap/evo/abap-def
|
|
229
|
+
- sap/ushell_abap/bootstrap/evo/abap-def-loader.js
|
|
230
|
+
declareRawModules: false
|
|
231
|
+
resolve: false
|
|
37
232
|
bundleOptions:
|
|
38
233
|
optimize: false
|
|
39
234
|
usePredefineCalls: true
|
|
@@ -45,30 +240,197 @@ builder:
|
|
|
45
240
|
- sap/ushell/bootstrap/ui5loader-config.js
|
|
46
241
|
declareRawModules: false
|
|
47
242
|
resolve: true
|
|
243
|
+
sort: true
|
|
48
244
|
- mode: raw
|
|
49
245
|
filters:
|
|
50
246
|
- ui5loader-autoconfig.js
|
|
51
247
|
declareRawModules: false
|
|
52
248
|
resolve: true
|
|
249
|
+
sort: true
|
|
53
250
|
- mode: preload
|
|
54
251
|
name: sap/ushell/bootstrap/common
|
|
55
252
|
filters:
|
|
56
253
|
- sap/ushell_abap/bootstrap/evo/abap-def.js
|
|
57
254
|
- sap/ui/thirdparty/datajs.js
|
|
58
255
|
resolve: true
|
|
59
|
-
- mode:
|
|
256
|
+
- mode: raw
|
|
60
257
|
filters:
|
|
61
|
-
- sap/ushell_abap/bootstrap/evo/abap-def
|
|
258
|
+
- sap/ushell_abap/bootstrap/evo/abap-def-loader.js
|
|
259
|
+
declareRawModules: false
|
|
260
|
+
resolve: false
|
|
62
261
|
bundleOptions:
|
|
63
262
|
optimize: true
|
|
64
263
|
usePredefineCalls: true
|
|
65
264
|
decorateBootstrapModule: true
|
|
66
|
-
addTryCatchRestartWrapper: true
|
|
67
265
|
- bundleDefinition:
|
|
68
266
|
name: sap/ushell_abap/bootstrap/evo/core-ext-light.js
|
|
69
267
|
sections:
|
|
70
268
|
- mode: provided
|
|
71
|
-
filters:
|
|
269
|
+
filters:
|
|
270
|
+
# bundle sap/ushell_abap/bootstrap/evo/abap.js
|
|
271
|
+
- sap/ushell/bootstrap/ui5loader-config.js
|
|
272
|
+
- ui5loader-autoconfig.js
|
|
273
|
+
- sap/ushell_abap/bootstrap/evo/abap-def.js
|
|
274
|
+
- sap/ui/thirdparty/datajs.js
|
|
275
|
+
- sap/ushell_abap/bootstrap/evo/abap-def-loader.js
|
|
276
|
+
# end bundle sap/ushell_abap/bootstrap/evo/abap.js
|
|
277
|
+
# bundle sap/ushell_abap/bootstrap/evo/core-min.js
|
|
278
|
+
- ui5loader-autoconfig.js
|
|
279
|
+
- sap/ushell_abap/bootstrap/evo/abap-def.js
|
|
280
|
+
- sap/ushell/bootstrap/ui5loader-config.js
|
|
281
|
+
- sap/ui/core/ComponentContainer.js
|
|
282
|
+
- sap/ui/core/CustomData.js
|
|
283
|
+
- sap/ui/core/EventBus.js
|
|
284
|
+
- sap/ui/core/IntervalTrigger.js
|
|
285
|
+
- sap/ui/core/InvisibleMessage.js
|
|
286
|
+
- sap/ui/core/LayoutData.js
|
|
287
|
+
- sap/ui/core/Renderer.js
|
|
288
|
+
- sap/ui/core/ValueStateSupport.js
|
|
289
|
+
- sap/ui/core/XMLComposite.js
|
|
290
|
+
- sap/ui/core/XMLTemplateProcessor.js
|
|
291
|
+
- sap/ui/core/date/Gregorian.js
|
|
292
|
+
- sap/ui/core/delegate/ItemNavigation.js
|
|
293
|
+
- sap/ui/core/delegate/ScrollEnablement.js
|
|
294
|
+
- sap/ui/core/dnd/DragDropInfo.js
|
|
295
|
+
- sap/ui/core/format/NumberFormat.js
|
|
296
|
+
- sap/ui/core/mvc/Controller.js
|
|
297
|
+
- sap/ui/core/mvc/JSView.js
|
|
298
|
+
- sap/ui/core/mvc/XMLView.js
|
|
299
|
+
- sap/ui/core/routing/Router.js
|
|
300
|
+
- sap/ui/core/service/Service.js
|
|
301
|
+
- sap/ui/core/service/ServiceFactory.js
|
|
302
|
+
- sap/ui/core/service/ServiceFactoryRegistry.js
|
|
303
|
+
- sap/ui/model/json/JSONModel.js
|
|
304
|
+
- sap/ui/model/odata/v2/ODataModel.js
|
|
305
|
+
- sap/ui/thirdparty/jquery-mobile-custom.js
|
|
306
|
+
- sap/m/routing/Router.js
|
|
307
|
+
- sap/m/App.js
|
|
308
|
+
- sap/m/BusyIndicator.js
|
|
309
|
+
- sap/m/GenericTile.js
|
|
310
|
+
- sap/m/GenericTileRenderer.js
|
|
311
|
+
- sap/m/Image.js
|
|
312
|
+
- sap/m/ImageContent.js
|
|
313
|
+
- sap/m/ImageContentRenderer.js
|
|
314
|
+
- sap/m/Input.js
|
|
315
|
+
- sap/m/InputBase.js
|
|
316
|
+
- sap/m/Label.js
|
|
317
|
+
- sap/m/Link.js
|
|
318
|
+
- sap/m/LinkRenderer.js
|
|
319
|
+
- sap/m/MessagePage.js
|
|
320
|
+
- sap/m/MessageStrip.js
|
|
321
|
+
- sap/m/NumericContent.js
|
|
322
|
+
- sap/m/NumericContentRenderer.js
|
|
323
|
+
- sap/m/Page.js
|
|
324
|
+
- sap/m/ScrollContainer.js
|
|
325
|
+
- sap/m/ScrollContainerRenderer.js
|
|
326
|
+
- sap/m/Table.js
|
|
327
|
+
- sap/m/TileContent.js
|
|
328
|
+
- sap/m/TileContentRenderer.js
|
|
329
|
+
- sap/ushell/library.js
|
|
330
|
+
- sap/ushell/CanvasShapesManager.js
|
|
331
|
+
- sap/ushell/Fiori20AdapterTest.js
|
|
332
|
+
- sap/ushell/SessionHandler.js
|
|
333
|
+
- sap/ushell/System.js
|
|
334
|
+
- sap/ushell/User.js
|
|
335
|
+
- sap/ushell/iconfonts.js
|
|
336
|
+
- sap/ushell/override.js
|
|
337
|
+
- sap/ushell/utils/HttpClient.js
|
|
338
|
+
- sap/ushell/utils/utilsCdm.js
|
|
339
|
+
- sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js
|
|
340
|
+
- sap/ushell/adapters/local/UserInfoAdapter.js
|
|
341
|
+
- sap/ushell/adapters/local/NavTargetResolutionAdapter.js
|
|
342
|
+
- sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js
|
|
343
|
+
- sap/ushell/components/container/ApplicationContainer.js
|
|
344
|
+
- sap/ushell/components/ComponentKeysHandler.js
|
|
345
|
+
- sap/ushell/components/pages/controller/PagesAndSpaceId.js
|
|
346
|
+
- sap/ushell/renderers/fiori2/Renderer.js
|
|
347
|
+
- sap/ushell/renderers/fiori2/Shell.controller.js
|
|
348
|
+
- sap/ushell/renderers/fiori2/Shell.view.js
|
|
349
|
+
- sap/ushell/renderers/fiori2/ShellAsync.view.js
|
|
350
|
+
- sap/ushell/components/CatalogsManager.js
|
|
351
|
+
- sap/ushell/components/HomepageManager.js
|
|
352
|
+
- sap/ushell/services/UserInfo.js
|
|
353
|
+
- sap/ushell/services/AppLifeCycle.js
|
|
354
|
+
- sap/ushell/services/AppState.js
|
|
355
|
+
- sap/ushell/services/ClientSideTargetResolution.js
|
|
356
|
+
- sap/ushell/services/CommonDataModel.js
|
|
357
|
+
- sap/ushell/services/Container.js
|
|
358
|
+
- sap/ushell/services/CrossApplicationNavigation.js
|
|
359
|
+
- sap/ushell/services/DarkModeSupport.js
|
|
360
|
+
- sap/ushell/services/LaunchPage.js
|
|
361
|
+
- sap/ushell/services/Menu.js
|
|
362
|
+
- sap/ushell/services/NavigationDataProvider.js
|
|
363
|
+
- sap/ushell/services/NavTargetResolution.js
|
|
364
|
+
- sap/ushell/services/PageBuilding.js
|
|
365
|
+
- sap/ushell/services/Pages.js
|
|
366
|
+
- sap/ushell/services/PagePersistence.js
|
|
367
|
+
- sap/ushell/services/Personalization.js
|
|
368
|
+
- sap/ushell/services/PluginManager.js
|
|
369
|
+
- sap/ushell/services/ReferenceResolver.js
|
|
370
|
+
- sap/ushell/services/SupportTicket.js
|
|
371
|
+
- sap/ushell/services/ShellNavigation.js
|
|
372
|
+
- sap/ushell/services/URLParsing.js
|
|
373
|
+
- sap/ushell/services/URLShortening.js
|
|
374
|
+
- sap/ushell/services/Ui5ComponentLoader.js
|
|
375
|
+
- sap/ushell/services/UserDefaultParameterPersistence.js
|
|
376
|
+
- sap/ushell/services/UserDefaultParameters.js
|
|
377
|
+
- sap/ushell/services/UserRecents.js
|
|
378
|
+
- sap/ushell/services/VisualizationDataProvider.js
|
|
379
|
+
- sap/ushell/services/VisualizationInstantiation.js
|
|
380
|
+
- sap/ushell/ui5service/_CardUserRecents/CardUserRecentsBase.js
|
|
381
|
+
- sap/ushell/ui5service/CardNavigation.js
|
|
382
|
+
- sap/ushell/ui5service/CardUserFrequents.js
|
|
383
|
+
- sap/ushell/ui5service/CardUserRecents.js
|
|
384
|
+
- sap/ushell/ui5service/ShellUIService.js
|
|
385
|
+
- sap/ushell_abap/library.js
|
|
386
|
+
- sap/ushell_abap/adapters/abap/AppStateAdapter.js
|
|
387
|
+
- sap/ushell_abap/adapters/abap/ContainerAdapter.js
|
|
388
|
+
- sap/ushell_abap/adapters/abap/ClientSideTargetResolutionAdapter.js
|
|
389
|
+
- sap/ushell_abap/adapters/abap/LaunchPageAdapter.js
|
|
390
|
+
- sap/ushell_abap/adapters/abap/MenuAdapter.js
|
|
391
|
+
- sap/ushell_abap/adapters/abap/NavTargetResolutionAdapter.js
|
|
392
|
+
- sap/ushell_abap/adapters/abap/PageBuildingAdapter.js
|
|
393
|
+
- sap/ushell_abap/adapters/abap/PagePersistenceAdapter.js
|
|
394
|
+
- sap/ushell_abap/adapters/abap/PersonalizationAdapter.js
|
|
395
|
+
- sap/ushell_abap/adapters/abap/Ui5ComponentLoaderAdapter.js
|
|
396
|
+
- sap/ushell_abap/adapters/abap/UserInfoAdapter.js
|
|
397
|
+
- sap/ushell_abap/pbServices/ui2/AllCatalogs.js
|
|
398
|
+
- sap/ushell_abap/pbServices/ui2/Bag.js
|
|
399
|
+
- sap/ushell_abap/pbServices/ui2/Catalog.js
|
|
400
|
+
- sap/ushell_abap/pbServices/ui2/Chip.js
|
|
401
|
+
- sap/ushell_abap/pbServices/ui2/ChipDefinition.js
|
|
402
|
+
- sap/ushell_abap/pbServices/ui2/chipdefinition.xsd
|
|
403
|
+
- sap/ushell_abap/pbServices/ui2/ChipInstance.js
|
|
404
|
+
- sap/ushell_abap/pbServices/ui2/Error.js
|
|
405
|
+
- sap/ushell_abap/pbServices/ui2/Factory.js
|
|
406
|
+
- sap/ushell_abap/pbServices/ui2/ODataService.js
|
|
407
|
+
- sap/ushell_abap/pbServices/ui2/ODataWrapper.js
|
|
408
|
+
- sap/ushell_abap/pbServices/ui2/Page.js
|
|
409
|
+
- sap/ushell_abap/pbServices/ui2/PageBuildingService.js
|
|
410
|
+
- sap/ushell_abap/pbServices/ui2/PageSet.js
|
|
411
|
+
- sap/ushell_abap/pbServices/ui2/RemoteCatalogService.js
|
|
412
|
+
- sap/ushell_abap/pbServices/ui2/Utils.js
|
|
413
|
+
- sap/ushell_abap/pbServices/ui2/contracts/actions.js
|
|
414
|
+
- sap/ushell_abap/pbServices/ui2/contracts/bag.js
|
|
415
|
+
- sap/ushell_abap/pbServices/ui2/contracts/configuration.js
|
|
416
|
+
- sap/ushell_abap/pbServices/ui2/contracts/configurationUi.js
|
|
417
|
+
- sap/ushell_abap/pbServices/ui2/contracts/fullscreen.js
|
|
418
|
+
- sap/ushell_abap/pbServices/ui2/contracts/navigation.js
|
|
419
|
+
- sap/ushell_abap/pbServices/ui2/contracts/preview.js
|
|
420
|
+
- sap/ushell_abap/pbServices/ui2/contracts/refresh.js
|
|
421
|
+
- sap/ushell_abap/pbServices/ui2/contracts/search.js
|
|
422
|
+
- sap/ushell_abap/pbServices/ui2/contracts/types.js
|
|
423
|
+
- sap/ushell_abap/pbServices/ui2/contracts/url.js
|
|
424
|
+
- sap/ushell_abap/pbServices/ui2/contracts/visible.js
|
|
425
|
+
- sap/ushell/ui/ShellHeader.fragment.xml
|
|
426
|
+
- sap/ushell/ui/ShellLayout.fragment.xml
|
|
427
|
+
- sap/ushell/services/_VisualizationInstantiation/*.control.xml
|
|
428
|
+
- sap/ushell/bootstrap/_SchedulingAgent/LoadingConfiguration.json
|
|
429
|
+
- sap/ushell/bootstrap/_SchedulingAgent/StepConfiguration.json
|
|
430
|
+
- '!sap/viz/libs/sap-viz.js'
|
|
431
|
+
# end bundle sap/ushell_abap/bootstrap/evo/core-min.js
|
|
432
|
+
resolve: true
|
|
433
|
+
renderer: true
|
|
72
434
|
- mode: preload
|
|
73
435
|
name: sap/fiori/core-ext-light
|
|
74
436
|
filters:
|
|
@@ -83,7 +445,6 @@ builder:
|
|
|
83
445
|
- sap/ui/security/
|
|
84
446
|
- sap/ui/util/
|
|
85
447
|
- sap/ui/thirdparty/
|
|
86
|
-
- sap/ui/layout/
|
|
87
448
|
- sap/m/
|
|
88
449
|
- sap/ushell/
|
|
89
450
|
- '!**/*-preload.js'
|
|
@@ -99,9 +460,6 @@ builder:
|
|
|
99
460
|
- '!sap/ui/core/**/*.support.js'
|
|
100
461
|
- '!sap/ui/core/rules/'
|
|
101
462
|
- '!sap/ui/core/support/'
|
|
102
|
-
- '!sap/ui/layout/designtime/'
|
|
103
|
-
- '!sap/ui/layout/**/*.support.js'
|
|
104
|
-
- '!sap/ui/layout/rules/'
|
|
105
463
|
- '!sap/m/designtime/'
|
|
106
464
|
- '!sap/m/**/*.support.js'
|
|
107
465
|
- '!sap/m/rules/'
|
|
@@ -157,12 +515,11 @@ builder:
|
|
|
157
515
|
- '!sap/ushell/plugins/'
|
|
158
516
|
- '!sap/ushell/utils/'
|
|
159
517
|
- '!sap/ushell/ui5service/UserStatus.js'
|
|
160
|
-
- '!**/.library'
|
|
161
|
-
- '!**/.vscode/'
|
|
162
518
|
resolve: false
|
|
163
519
|
bundleOptions:
|
|
164
520
|
optimize: true
|
|
165
521
|
usePredefineCalls: true
|
|
522
|
+
numberOfParts: 4
|
|
166
523
|
- bundleDefinition:
|
|
167
524
|
name: sap/ushell_abap/bootstrap/evo/core-min.js
|
|
168
525
|
sections:
|
|
@@ -223,9 +580,10 @@ builder:
|
|
|
223
580
|
- sap/m/Table.js
|
|
224
581
|
- sap/m/TileContent.js
|
|
225
582
|
- sap/m/TileContentRenderer.js
|
|
226
|
-
- sap/ui/layout/cssgrid/VirtualGrid.js
|
|
227
583
|
- sap/ushell/library.js
|
|
584
|
+
- sap/ushell/CanvasShapesManager.js
|
|
228
585
|
- sap/ushell/Fiori20AdapterTest.js
|
|
586
|
+
- sap/ushell/SessionHandler.js
|
|
229
587
|
- sap/ushell/System.js
|
|
230
588
|
- sap/ushell/User.js
|
|
231
589
|
- sap/ushell/iconfonts.js
|
|
@@ -238,6 +596,7 @@ builder:
|
|
|
238
596
|
- sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js
|
|
239
597
|
- sap/ushell/components/container/ApplicationContainer.js
|
|
240
598
|
- sap/ushell/components/ComponentKeysHandler.js
|
|
599
|
+
- sap/ushell/components/pages/controller/PagesAndSpaceId.js
|
|
241
600
|
- sap/ushell/renderers/fiori2/Renderer.js
|
|
242
601
|
- sap/ushell/renderers/fiori2/Shell.controller.js
|
|
243
602
|
- sap/ushell/renderers/fiori2/Shell.view.js
|
|
@@ -287,6 +646,7 @@ builder:
|
|
|
287
646
|
- sap/ushell_abap/adapters/abap/PageBuildingAdapter.js
|
|
288
647
|
- sap/ushell_abap/adapters/abap/PagePersistenceAdapter.js
|
|
289
648
|
- sap/ushell_abap/adapters/abap/PersonalizationAdapter.js
|
|
649
|
+
- sap/ushell_abap/adapters/abap/Ui5ComponentLoaderAdapter.js
|
|
290
650
|
- sap/ushell_abap/adapters/abap/UserInfoAdapter.js
|
|
291
651
|
- sap/ushell_abap/pbServices/ui2/AllCatalogs.js
|
|
292
652
|
- sap/ushell_abap/pbServices/ui2/Bag.js
|
|
@@ -318,8 +678,7 @@ builder:
|
|
|
318
678
|
- sap/ushell_abap/pbServices/ui2/contracts/visible.js
|
|
319
679
|
- sap/ushell/ui/ShellHeader.fragment.xml
|
|
320
680
|
- sap/ushell/ui/ShellLayout.fragment.xml
|
|
321
|
-
- sap/ushell/services/_VisualizationInstantiation
|
|
322
|
-
- sap/ushell/services/_VisualizationInstantiation/VizInstanceAbap.control.xml
|
|
681
|
+
- sap/ushell/services/_VisualizationInstantiation/*.control.xml
|
|
323
682
|
- sap/ushell/bootstrap/_SchedulingAgent/LoadingConfiguration.json
|
|
324
683
|
- sap/ushell/bootstrap/_SchedulingAgent/StepConfiguration.json
|
|
325
684
|
- '!sap/viz/libs/sap-viz.js'
|
|
@@ -327,10 +686,11 @@ builder:
|
|
|
327
686
|
renderer: true
|
|
328
687
|
- mode: require
|
|
329
688
|
filters:
|
|
330
|
-
- sap/ui/core/Core
|
|
689
|
+
- sap/ui/core/Core.js
|
|
331
690
|
bundleOptions:
|
|
332
691
|
optimize: true
|
|
333
692
|
usePredefineCalls: true
|
|
693
|
+
numberOfParts: 4
|
|
334
694
|
- bundleDefinition:
|
|
335
695
|
name: sap/ui2/srvc/ui2services.js
|
|
336
696
|
sections:
|