@sapui5/sap.ushell_abap 1.119.3 → 1.120.1

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.
Files changed (22) hide show
  1. package/package.json +1 -1
  2. package/src/main/js/sap/ushell_abap/.library +1 -1
  3. package/src/main/js/sap/ushell_abap/adapters/abap/AppStateAdapter.js +1 -1
  4. package/src/main/js/sap/ushell_abap/adapters/abap/ClientSideTargetResolutionAdapter.js +1 -1
  5. package/src/main/js/sap/ushell_abap/adapters/abap/CommonDataModelAdapter.js +1 -1
  6. package/src/main/js/sap/ushell_abap/adapters/abap/ConfigurationDefaultsAdapter.js +1 -1
  7. package/src/main/js/sap/ushell_abap/adapters/abap/ContainerAdapter.js +1 -1
  8. package/src/main/js/sap/ushell_abap/adapters/abap/LaunchPageAdapter.js +1 -1
  9. package/src/main/js/sap/ushell_abap/adapters/abap/NavTargetResolutionAdapter.js +1 -1
  10. package/src/main/js/sap/ushell_abap/adapters/abap/PageBuildingAdapter.js +1 -1
  11. package/src/main/js/sap/ushell_abap/adapters/abap/PagePersistenceAdapter.js +1 -1
  12. package/src/main/js/sap/ushell_abap/adapters/abap/PersonalizationAdapter.js +1 -1
  13. package/src/main/js/sap/ushell_abap/adapters/abap/PersonalizationV2Adapter.js +20 -0
  14. package/src/main/js/sap/ushell_abap/adapters/abap/SearchAdapter.js +1 -1
  15. package/src/main/js/sap/ushell_abap/adapters/abap/SupportTicketAdapter.js +1 -1
  16. package/src/main/js/sap/ushell_abap/adapters/abap/Ui5ComponentLoaderAdapter.js +1 -1
  17. package/src/main/js/sap/ushell_abap/adapters/hana/ContainerAdapter.js +1 -1
  18. package/src/main/js/sap/ushell_abap/bootstrap/evo/abap.configure.ushell.js +1 -1
  19. package/src/main/js/sap/ushell_abap/bootstrap/evo/abap.load.launchpad.js +2 -2
  20. package/src/main/js/sap/ushell_abap/bootstrap/evo/boottask.js +3 -3
  21. package/src/main/js/sap/ushell_abap/library.js +2 -2
  22. package/ui5.yaml +14 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sapui5/sap.ushell_abap",
3
- "version": "1.119.3",
3
+ "version": "1.120.1",
4
4
  "description": "SAPUI5 Library sap.ushell_abap",
5
5
  "homepage": "https://sap.github.io/ui5-tooling/pages/SAPUI5/",
6
6
  "keywords": [
@@ -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.119.3</version>
5
+ <version>1.120.1</version>
6
6
  <copyright>Copyright (c) 2009-2023 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 AppStateAdapter for the ABAP platform.
5
- * @version 1.119.3
5
+ * @version 1.120.1
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/base/util/ObjectPath",
@@ -9,7 +9,7 @@
9
9
  * <li>provide the resolveHashFragmentFallback function, a fallback method called by ClientSideTargetResolution service.</li>
10
10
  * </ul>
11
11
  *
12
- * @version 1.119.3
12
+ * @version 1.120.1
13
13
  */
14
14
  sap.ui.define([
15
15
  "sap/ui/thirdparty/jquery",
@@ -2,7 +2,7 @@
2
2
  /**
3
3
  * @fileOverview The Unified Shell's CommonDataModelAdapter for the ABAP platform, it is used to avoid 404 when no adapter is found
4
4
  *
5
- * @version 1.119.3
5
+ * @version 1.120.1
6
6
  */
7
7
  sap.ui.define([
8
8
  ], function () {
@@ -2,7 +2,7 @@
2
2
 
3
3
  /**
4
4
  * @fileOverview The ConfigurationDefaults adapter for the ABAP platform.
5
- * @version 1.119.3
5
+ * @version 1.120.1
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/ushell_abap/bootstrap/evo/abap.constants",
@@ -2,7 +2,7 @@
2
2
  /**
3
3
  * @fileOverview The Unified Shell's container adapter for the ABAP platform.
4
4
  *
5
- * @version 1.119.3
5
+ * @version 1.120.1
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/ui/thirdparty/jquery",
@@ -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.119.3
7
+ * @version 1.120.1
8
8
  */
9
9
  sap.ui.define([
10
10
  "sap/ui/thirdparty/URI",
@@ -8,7 +8,7 @@
8
8
  * service now calls the ClientSideTargetResolution service in the ABAP
9
9
  * platform.
10
10
  *
11
- * @version 1.119.3
11
+ * @version 1.120.1
12
12
  */
13
13
  sap.ui.define([], function () {
14
14
  "use strict";
@@ -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.119.3
5
+ * @version 1.120.1
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/base/util/ObjectPath",
@@ -2,7 +2,7 @@
2
2
 
3
3
  /**
4
4
  * @fileOverview PagePersistenceAdapter for the ABAP platform.
5
- * @version 1.119.3
5
+ * @version 1.120.1
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/base/util/ObjectPath",
@@ -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.119.3
10
+ * @version 1.120.1
11
11
  */
12
12
  sap.ui.define([
13
13
  "sap/ushell_abap/adapters/abap/AdapterContainer",
@@ -0,0 +1,20 @@
1
+ // Copyright (c) 2009-2023 SAP SE, All Rights Reserved
2
+ /**
3
+ * @fileOverview The Unified Shell's personalization adapter for the ABAP
4
+ * platform.
5
+ * The internal data structure of the AdapterContainer corresponds to the
6
+ * ABAP EDM.
7
+ * Container header properties transported via pseudo-items are mapped to the
8
+ * respective header properties in setItem/getItem/delItem
9
+ *
10
+ * @version 1.120.1
11
+ */
12
+ sap.ui.define([
13
+ "./PersonalizationAdapter"
14
+ ], function (
15
+ PersonalizationAdapter
16
+ ) {
17
+ "use strict";
18
+
19
+ return PersonalizationAdapter;
20
+ });
@@ -2,7 +2,7 @@
2
2
 
3
3
  /**
4
4
  * @fileOverview The Search adapter for the ABAP platform.
5
- * @version 1.119.3
5
+ * @version 1.120.1
6
6
  */
7
7
  sap.ui.define([], function () {
8
8
  "use strict";
@@ -2,7 +2,7 @@
2
2
 
3
3
  /**
4
4
  * @fileOverview The SupportTicket adapter for the ABAP platform.
5
- * @version 1.119.3
5
+ * @version 1.120.1
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/base/util/isEmptyObject",
@@ -2,7 +2,7 @@
2
2
  /**
3
3
  * @fileOverview The Unified Shell's Ui5ComponentLoaderAdapter for the ABAP platform
4
4
  *
5
- * @version 1.119.3
5
+ * @version 1.120.1
6
6
  */
7
7
  sap.ui.define([
8
8
  ], function () {
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @fileOverview The Unified Shell's container adapter for the HANA platform.
5
5
  *
6
- * @version 1.119.3
6
+ * @version 1.120.1
7
7
  */
8
8
  /**
9
9
  * @namespace Default namespace for Unified Shell adapters for the HANA platform. They can usually
@@ -14,7 +14,7 @@
14
14
  * It furthermore calculates if FLP pages get activated and if needed sets up
15
15
  * the configuration environment to run these.
16
16
  *
17
- * @version 1.119.3
17
+ * @version 1.120.1
18
18
  */
19
19
  sap.ui.define([
20
20
  "./abap.constants",
@@ -34,7 +34,7 @@ sap.ui.define([
34
34
  "sap/ushell/iconfonts",
35
35
  "sap/ushell/Config"
36
36
  ], function (IconFonts, Config) {
37
- window.sap.ushell.Container.createRenderer("fiori2", true).then(function (oContent) {
37
+ window.sap.ushell.Container.createRendererInternal("fiori2").then(function (oContent) {
38
38
  oContent.placeAt("canvas", "only");
39
39
  var oSystem = sap.ushell.Container.getLogonSystem();
40
40
  var sCurrentState = Config.last("/core/shell/model/currentState/stateName");
@@ -44,7 +44,7 @@ sap.ui.define([
44
44
  }
45
45
 
46
46
  sap.ui.require([
47
- "sap/ushell/renderers/fiori2/ShellLayout",
47
+ "sap/ushell/renderer/ShellLayout",
48
48
  "sap/ushell/ui/shell/SysInfoBar"
49
49
  ], function (ShellLayout, SysInfoBar) {
50
50
  var sSystemInfoHtml = "<div id='systemInfo-shellArea'></div>";
@@ -754,7 +754,7 @@ function (
754
754
  return;
755
755
  }
756
756
 
757
- sap.ushell.Container.getServiceAsync("Personalization").then(function (oPersonalizationService) {
757
+ sap.ushell.Container.getServiceAsync("PersonalizationV2").then(async function (oPersonalizationService) {
758
758
  var oPersId = {
759
759
  container: "sap.ushell.cdm3-1.personalization",
760
760
  item: "data"
@@ -766,8 +766,8 @@ function (
766
766
  writeFrequency: oPersonalizationService.constants.writeFrequency.HIGH,
767
767
  clientStorageAllowed: false
768
768
  };
769
-
770
- return oPersonalizationService.getPersonalizer(oPersId, oScope).getPersData();
769
+ const oPersonalizer = await oPersonalizationService.getPersonalizer(oPersId, oScope);
770
+ return oPersonalizer.getPersData();
771
771
  });
772
772
 
773
773
  sap.ui.require([ "sap/ushell/components/pages/controller/PagesAndSpaceId" ], function (oPagesAndSpaceId) {
@@ -16,13 +16,13 @@ sap.ui.define([
16
16
  * @namespace
17
17
  * @name sap.ushell_abap
18
18
  * @author SAP SE
19
- * @version 1.119.3
19
+ * @version 1.120.1
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.119.3",
25
+ version: "1.120.1",
26
26
  dependencies: ["sap.ui.core", "sap.m"],
27
27
  noLibraryCSS: true,
28
28
  extensions: {
package/ui5.yaml CHANGED
@@ -64,7 +64,7 @@ builder:
64
64
  - sap/ushell/Container.js
65
65
  - sap/ushell/EventHub.js
66
66
  - sap/ushell/resources.js
67
- - sap/ushell/renderers/fiori2/search/HashChangeHandler.js
67
+ - sap/ushell/renderer/search/HashChangeHandler.js
68
68
  - sap/ushell/System.js
69
69
  - sap/ushell/Ui5NativeServiceFactory.js
70
70
  - sap/ushell/User.js
@@ -76,8 +76,12 @@ builder:
76
76
  - sap/ushell/Container.js
77
77
  - sap/ushell/services/CrossApplicationNavigation.js
78
78
  - sap/ushell/services/_CrossApplicationNavigation/utils.js
79
+ - sap/ushell/services/Navigation.js
80
+ - sap/ushell/services/Navigation/utils.js
79
81
  - sap/ushell/services/Personalization.js
80
82
  - sap/ushell/services/_Personalization/
83
+ - sap/ushell/services/PersonalizationV2.js
84
+ - sap/ushell/services/PersonalizationV2/
81
85
  - sap/ushell/services/PluginManager.js
82
86
  - sap/ushell/services/ShellNavigation.js
83
87
  - sap/ushell/services/ShellNavigationHashChanger.js
@@ -108,6 +112,7 @@ builder:
108
112
  - sap/ushell_abap/ui5appruntime/AppInfoAdapter.js
109
113
  - sap/ushell_abap/adapters/abap/AdapterContainer.js
110
114
  - sap/ushell_abap/adapters/abap/PersonalizationAdapter.js
115
+ - sap/ushell_abap/adapters/abap/PersonalizationV2Adapter.js
111
116
  - sap/ui/thirdparty/datajs.js
112
117
  - sap/ui/thirdparty/bignumber.js
113
118
  - sap/ui/thirdparty/URITemplate.js
@@ -351,6 +356,7 @@ builder:
351
356
  - sap/ushell/adapters/local/NavTargetResolutionAdapter.js
352
357
  - sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js
353
358
  - sap/ushell/adapters/local/UserInfoAdapter.js
359
+ - sap/ushell/api/RTA.js
354
360
  - sap/ushell/bootstrap/_SchedulingAgent/*.json # json files must be explicitly defined
355
361
  - sap/ushell/components/ComponentKeysHandler.js
356
362
  - sap/ushell/components/container/ApplicationContainer.js
@@ -369,24 +375,29 @@ builder:
369
375
  - sap/ushell/iconfonts.js
370
376
  - sap/ushell/library.js
371
377
  - sap/ushell/override.js
378
+ - sap/ushell/renderer/Renderer.js
379
+ - sap/ushell/renderer/Shell.controller.js
380
+ - sap/ushell/renderer/Shell.view.js
372
381
  - sap/ushell/renderers/fiori2/Renderer.js
373
382
  - sap/ushell/renderers/fiori2/Shell.controller.js
374
383
  - sap/ushell/renderers/fiori2/Shell.view.js
375
- - sap/ushell/renderers/fiori2/ShellAsync.view.js
376
384
  - sap/ushell/services/AppLifeCycle.js
377
385
  - sap/ushell/services/AppState.js
378
386
  - sap/ushell/services/ClientSideTargetResolution.js
379
387
  - sap/ushell/services/CommonDataModel.js
380
388
  - sap/ushell/services/CrossApplicationNavigation.js
381
389
  - sap/ushell/services/DarkModeSupport.js
390
+ - sap/ushell/services/Extension.js
382
391
  - sap/ushell/services/LaunchPage.js
383
392
  - sap/ushell/services/Menu.js
393
+ - sap/ushell/services/Navigation.js
384
394
  - sap/ushell/services/NavTargetResolution.js
385
395
  - sap/ushell/services/NavigationDataProvider.js
386
396
  - sap/ushell/services/PageBuilding.js
387
397
  - sap/ushell/services/PagePersistence.js
388
398
  - sap/ushell/services/Pages.js
389
399
  - sap/ushell/services/Personalization.js
400
+ - sap/ushell/services/PersonalizationV2.js
390
401
  - sap/ushell/services/PluginManager.js
391
402
  - sap/ushell/services/ReferenceResolver.js
392
403
  - sap/ushell/services/ShellNavigation.js
@@ -418,6 +429,7 @@ builder:
418
429
  - sap/ushell_abap/adapters/abap/PageBuildingAdapter.js
419
430
  - sap/ushell_abap/adapters/abap/PagePersistenceAdapter.js
420
431
  - sap/ushell_abap/adapters/abap/PersonalizationAdapter.js
432
+ - sap/ushell_abap/adapters/abap/PersonalizationV2Adapter.js
421
433
  - sap/ushell_abap/adapters/abap/Ui5ComponentLoaderAdapter.js
422
434
  - sap/ushell_abap/adapters/abap/UserInfoAdapter.js
423
435
  - sap/ushell_abap/library.js