@sapui5/sap.ushell 1.120.8 → 1.121.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.
Files changed (720) hide show
  1. package/package.json +2 -2
  2. package/src/main/js/sap/ushell/.library +1 -1
  3. package/src/main/js/sap/ushell/AppInfoParameters.js +46 -49
  4. package/src/main/js/sap/ushell/CanvasShapesManager.js +8 -7
  5. package/src/main/js/sap/ushell/Container.js +333 -108
  6. package/src/main/js/sap/ushell/EventHub.js +6 -9
  7. package/src/main/js/sap/ushell/Fiori20Adapter.js +6 -7
  8. package/src/main/js/sap/ushell/Fiori20AdapterTest.js +5 -7
  9. package/src/main/js/sap/ushell/Layout.js +20 -16
  10. package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
  11. package/src/main/js/sap/ushell/SessionHandler.js +20 -12
  12. package/src/main/js/sap/ushell/System.js +4 -2
  13. package/src/main/js/sap/ushell/TechnicalParameters.js +34 -57
  14. package/src/main/js/sap/ushell/UIActions.js +28 -39
  15. package/src/main/js/sap/ushell/URLTemplateProcessor.js +1 -1
  16. package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +8 -7
  17. package/src/main/js/sap/ushell/Ui5ServiceFactory.js +10 -10
  18. package/src/main/js/sap/ushell/User.js +6 -4
  19. package/src/main/js/sap/ushell/UserActivityLog.js +13 -11
  20. package/src/main/js/sap/ushell/_ApplicationType/guiResolution.js +15 -19
  21. package/src/main/js/sap/ushell/_ApplicationType/systemAlias.js +5 -3
  22. package/src/main/js/sap/ushell/_ApplicationType/ui5Resolution.js +11 -10
  23. package/src/main/js/sap/ushell/_ApplicationType/urlTemplateResolution.js +17 -15
  24. package/src/main/js/sap/ushell/_ApplicationType/utils.js +7 -7
  25. package/src/main/js/sap/ushell/_ApplicationType/wdaResolution.js +8 -6
  26. package/src/main/js/sap/ushell/_Config/utils.js +1 -1
  27. package/src/main/js/sap/ushell/_URLTemplateProcessor/DefinitionParameterSetBuilder.js +1 -1
  28. package/src/main/js/sap/ushell/_URLTemplateProcessor/DependencyGraph.js +1 -1
  29. package/src/main/js/sap/ushell/_URLTemplateProcessor/Functions.js +1 -1
  30. package/src/main/js/sap/ushell/_URLTemplateProcessor/Resolvers.js +2 -2
  31. package/src/main/js/sap/ushell/_URLTemplateProcessor/TemplateParameterParser.js +1 -1
  32. package/src/main/js/sap/ushell/_URLTemplateProcessor/utils.js +1 -1
  33. package/src/main/js/sap/ushell/adapters/AppVariantPersonalizationAdapter.js +5 -3
  34. package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +6 -11
  35. package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +6 -16
  36. package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
  37. package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +18 -14
  38. package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +16 -21
  39. package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +7 -18
  40. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
  41. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationV2Adapter.js +1 -1
  42. package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
  43. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +1 -1
  44. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
  45. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
  46. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
  47. package/src/main/js/sap/ushell/adapters/cdm/_Personalization/internals.js +9 -9
  48. package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +1 -1
  49. package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +1 -1
  50. package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +36 -13
  51. package/src/main/js/sap/ushell/adapters/cdm/v3/FlpLaunchPageAdapter.js +2629 -0
  52. package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +4 -2525
  53. package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +1 -1
  54. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +1 -1
  55. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
  56. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +13 -1
  57. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
  58. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +91 -25
  59. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
  60. package/src/main/js/sap/ushell/adapters/cep/MenuAdapter.js +6 -6
  61. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +31 -6
  62. package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +7 -6
  63. package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +10 -20
  64. package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +1 -1
  65. package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +14 -19
  66. package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +18 -20
  67. package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +25 -18
  68. package/src/main/js/sap/ushell/adapters/local/FlpLaunchPageAdapter.js +1558 -0
  69. package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +4 -1551
  70. package/src/main/js/sap/ushell/adapters/local/MenuAdapter.js +3 -3
  71. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +2 -4
  72. package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
  73. package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +1 -1
  74. package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +11 -8
  75. package/src/main/js/sap/ushell/adapters/local/PersonalizationV2Adapter.js +1 -1
  76. package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +1 -1
  77. package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +1 -1
  78. package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +1 -1
  79. package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
  80. package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +11 -23
  81. package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +1 -1
  82. package/src/main/js/sap/ushell/api/RTA.js +27 -0
  83. package/src/main/js/sap/ushell/api/workpage/Designtime.js +69 -0
  84. package/src/main/js/sap/ushell/api/workpage/Runtime.js +97 -0
  85. package/src/main/js/sap/ushell/appRuntime/neo/AppInfoService.js +12 -3
  86. package/src/main/js/sap/ushell/appRuntime/neo/AppRuntimeNeo.js +4 -0
  87. package/src/main/js/sap/ushell/appRuntime/neo/ProxyAppUtils.js +4 -0
  88. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +82 -78
  89. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntimeContext.js +4 -3
  90. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntimeService.js +8 -0
  91. package/src/main/js/sap/ushell/appRuntime/ui5/SessionHandlerAgent.js +35 -37
  92. package/src/main/js/sap/ushell/appRuntime/ui5/performance/FesrEnhancer.js +4 -5
  93. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/AppLifeCycleUtils.js +2 -8
  94. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Trigger.js +9 -5
  95. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/Component.js +6 -4
  96. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_en_US_saprigi.properties +5 -5
  97. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_sh.properties +3 -3
  98. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/Component.js +4 -3
  99. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/i18n/i18n_en_US_saprigi.properties +2 -2
  100. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/i18n/i18n_sh.properties +1 -1
  101. package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/AccessKeysAgent.js +1 -1
  102. package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/Renderer.js +14 -14
  103. package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/RendererExtensions.js +2 -2
  104. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppConfiguration.js +1 -1
  105. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycleAgent.js +39 -39
  106. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppState.js +15 -16
  107. package/src/main/js/sap/ushell/appRuntime/ui5/services/Bookmark.js +12 -54
  108. package/src/main/js/sap/ushell/appRuntime/ui5/services/BookmarkV2.js +154 -0
  109. package/src/main/js/sap/ushell/appRuntime/ui5/services/CommonDataModel.js +1 -3
  110. package/src/main/js/sap/ushell/appRuntime/ui5/services/Container.js +221 -206
  111. package/src/main/js/sap/ushell/appRuntime/ui5/services/CrossApplicationNavigation.js +15 -14
  112. package/src/main/js/sap/ushell/appRuntime/ui5/services/MessageBroker.js +5 -5
  113. package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolution.js +10 -14
  114. package/src/main/js/sap/ushell/appRuntime/ui5/services/Navigation.js +212 -0
  115. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigation.js +6 -5
  116. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigationInternal.js +67 -0
  117. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellUIService.js +4 -4
  118. package/src/main/js/sap/ushell/appRuntime/ui5/services/UserInfo.js +9 -3
  119. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/ContainerAdapter.js +9 -10
  120. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/EmptyAdapter.js +3 -0
  121. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
  122. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/FLPScheduler.js +12 -6
  123. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/StepConfiguration.json +1 -3
  124. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/logger.js +2 -2
  125. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/state.js +6 -7
  126. package/src/main/js/sap/ushell/bootstrap/cdm/cdm-def-dev.js +2 -1
  127. package/src/main/js/sap/ushell/bootstrap/cdm/cdm-def-loader.js +15 -5
  128. package/src/main/js/sap/ushell/bootstrap/cdm/cdm-def.js +2 -2
  129. package/src/main/js/sap/ushell/bootstrap/cdm/cdm.boot.task.js +2 -2
  130. package/src/main/js/sap/ushell/bootstrap/cdm/cdm.constants.js +14 -0
  131. package/src/main/js/sap/ushell/bootstrap/cdm.js +2 -2
  132. package/src/main/js/sap/ushell/bootstrap/common/common.boot.path.js +2 -2
  133. package/src/main/js/sap/ushell/bootstrap/common/common.boot.script.js +2 -2
  134. package/src/main/js/sap/ushell/bootstrap/common/common.boot.task.js +2 -2
  135. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5.extractLibs.js +2 -2
  136. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +6 -6
  137. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5language.js +4 -4
  138. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ushell.js +37 -41
  139. package/src/main/js/sap/ushell/bootstrap/common/common.constants.js +2 -2
  140. package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +31 -20
  141. package/src/main/js/sap/ushell/bootstrap/common/common.debug.mode.js +2 -2
  142. package/src/main/js/sap/ushell/bootstrap/common/common.load.bootstrapExtension.js +2 -2
  143. package/src/main/js/sap/ushell/bootstrap/common/common.load.core-min.js +1 -1
  144. package/src/main/js/sap/ushell/bootstrap/common/common.load.launchpad.js +2 -2
  145. package/src/main/js/sap/ushell/bootstrap/common/common.load.model.js +3 -3
  146. package/src/main/js/sap/ushell/bootstrap/common/common.load.ui5theme.js +3 -3
  147. package/src/main/js/sap/ushell/bootstrap/common/common.read.metatags.js +2 -2
  148. package/src/main/js/sap/ushell/bootstrap/common/common.read.ushell.config.from.url.js +5 -4
  149. package/src/main/js/sap/ushell/bootstrap/common/common.util.js +48 -14
  150. package/src/main/js/sap/ushell/bootstrap/sandbox2.js +8 -9
  151. package/src/main/js/sap/ushell/bootstrap/ui5loader-config.js +2 -2
  152. package/src/main/js/sap/ushell/components/CatalogsManager.js +49 -47
  153. package/src/main/js/sap/ushell/components/ComponentKeysHandler.js +57 -45
  154. package/src/main/js/sap/ushell/components/DestroyHelper.js +2 -2
  155. package/src/main/js/sap/ushell/components/HeaderManager.js +3 -3
  156. package/src/main/js/sap/ushell/components/HomepageManager.js +27 -29
  157. package/src/main/js/sap/ushell/components/MessagingHelper.js +2 -2
  158. package/src/main/js/sap/ushell/components/SharedComponentUtils.js +13 -10
  159. package/src/main/js/sap/ushell/components/StateHelper.js +1 -1
  160. package/src/main/js/sap/ushell/components/_HeaderManager/AddHeadEndItemsStrategy.js +15 -15
  161. package/src/main/js/sap/ushell/components/_HeaderManager/AddHeadItemsStrategy.js +3 -3
  162. package/src/main/js/sap/ushell/components/_HeaderManager/ControlManager.js +4 -4
  163. package/src/main/js/sap/ushell/components/_HeaderManager/RemoveItemsStrategy.js +2 -2
  164. package/src/main/js/sap/ushell/components/_HeaderManager/ShellHeader.controller.js +13 -13
  165. package/src/main/js/sap/ushell/components/_HomepageManager/DashboardLoadingManager.js +3 -3
  166. package/src/main/js/sap/ushell/components/_HomepageManager/PagingManager.js +1 -1
  167. package/src/main/js/sap/ushell/components/_HomepageManager/PersistentPageOperationAdapter.js +4 -4
  168. package/src/main/js/sap/ushell/components/appfinder/AppFinder.controller.js +9 -8
  169. package/src/main/js/sap/ushell/components/appfinder/AppFinderView.js +6 -6
  170. package/src/main/js/sap/ushell/components/appfinder/Catalog.controller.js +29 -16
  171. package/src/main/js/sap/ushell/components/appfinder/CatalogView.js +17 -17
  172. package/src/main/js/sap/ushell/components/appfinder/Component.js +4 -4
  173. package/src/main/js/sap/ushell/components/appfinder/EasyAccess.controller.js +7 -7
  174. package/src/main/js/sap/ushell/components/appfinder/EasyAccessView.js +3 -9
  175. package/src/main/js/sap/ushell/components/appfinder/GroupListPopover.controller.js +3 -3
  176. package/src/main/js/sap/ushell/components/appfinder/HierarchyAppsView.js +6 -7
  177. package/src/main/js/sap/ushell/components/appfinder/HierarchyFolders.controller.js +2 -4
  178. package/src/main/js/sap/ushell/components/appfinder/HierarchyFoldersView.js +3 -3
  179. package/src/main/js/sap/ushell/components/appfinder/VisualizationOrganizerHelper.js +9 -5
  180. package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
  181. package/src/main/js/sap/ushell/components/applicationIntegration/AppLifeCycle.js +38 -55
  182. package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +20 -22
  183. package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +22 -33
  184. package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +563 -372
  185. package/src/main/js/sap/ushell/components/applicationIntegration/application/WebGUIStatefulHandler.js +8 -7
  186. package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +8 -6
  187. package/src/main/js/sap/ushell/components/applicationIntegration/elements/model.js +9 -7
  188. package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +6 -5
  189. package/src/main/js/sap/ushell/components/applicationIntegration/relatedShellElements/RelatedShellElements.js +2 -2
  190. package/src/main/js/sap/ushell/components/cards/Configuration.controller.js +6 -5
  191. package/src/main/js/sap/ushell/components/cepsearchresult/app/Component.js +1 -1
  192. package/src/main/js/sap/ushell/components/cepsearchresult/app/Main.controller.js +2 -2
  193. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/Component.js +2 -2
  194. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_da.properties +1 -1
  195. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en_US_saprigi.properties +37 -37
  196. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_et.properties +1 -1
  197. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_fr_CA.properties +1 -1
  198. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_hr.properties +2 -2
  199. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_it.properties +1 -1
  200. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_iw.properties +1 -1
  201. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ko.properties +1 -1
  202. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_lv.properties +1 -1
  203. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ms.properties +1 -1
  204. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_pl.properties +1 -1
  205. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ro.properties +2 -2
  206. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sh.properties +7 -7
  207. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sk.properties +1 -1
  208. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sl.properties +2 -2
  209. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_tr.properties +1 -1
  210. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_uk.properties +2 -2
  211. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_vi.properties +1 -1
  212. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_zh_CN.properties +1 -1
  213. package/src/main/js/sap/ushell/components/cepsearchresult/app/i18n/i18n_en_US_saprigi.properties +9 -9
  214. package/src/main/js/sap/ushell/components/cepsearchresult/app/i18n/i18n_hi.properties +1 -1
  215. package/src/main/js/sap/ushell/components/cepsearchresult/app/i18n/i18n_sh.properties +1 -1
  216. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Category.css +4 -0
  217. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Highlighter.js +1 -3
  218. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Paginator.js +1 -3
  219. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Application.js +27 -1
  220. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ar.properties +2 -2
  221. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_bg.properties +8 -8
  222. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ca.properties +3 -3
  223. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_cs.properties +4 -4
  224. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_cy.properties +5 -5
  225. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_el.properties +7 -7
  226. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en_US_saprigi.properties +109 -109
  227. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_es.properties +3 -3
  228. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_es_MX.properties +2 -2
  229. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fi.properties +2 -2
  230. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fr.properties +4 -4
  231. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fr_CA.properties +2 -2
  232. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hi.properties +7 -7
  233. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hr.properties +8 -8
  234. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hu.properties +1 -1
  235. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_it.properties +2 -2
  236. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_iw.properties +3 -3
  237. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ja.properties +1 -1
  238. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ko.properties +4 -4
  239. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_lv.properties +16 -16
  240. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ms.properties +1 -1
  241. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_nl.properties +16 -16
  242. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_no.properties +1 -1
  243. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pt.properties +2 -2
  244. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pt_PT.properties +1 -1
  245. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ro.properties +4 -4
  246. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ru.properties +1 -1
  247. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sh.properties +25 -25
  248. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sk.properties +8 -8
  249. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sl.properties +4 -4
  250. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sv.properties +1 -1
  251. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_th.properties +1 -1
  252. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_tr.properties +2 -2
  253. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_uk.properties +5 -5
  254. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_vi.properties +2 -2
  255. package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +105 -96
  256. package/src/main/js/sap/ushell/components/container/IframePOSTUtils.js +13 -13
  257. package/src/main/js/sap/ushell/components/container/resources/resources_en_US_saprigi.properties +6 -6
  258. package/src/main/js/sap/ushell/components/container/resources/resources_ms.properties +1 -1
  259. package/src/main/js/sap/ushell/components/container/resources/resources_sh.properties +1 -1
  260. package/src/main/js/sap/ushell/components/contentFinder/Component.js +54 -105
  261. package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +108 -142
  262. package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +16 -11
  263. package/src/main/js/sap/ushell/components/contentFinder/controller/WidgetGallery.controller.js +9 -7
  264. package/src/main/js/sap/ushell/components/contentFinder/manifest.json +1 -1
  265. package/src/main/js/sap/ushell/components/contentFinder/model/formatter.js +6 -6
  266. package/src/main/js/sap/ushell/components/contentFinder/resources/resources.properties +4 -2
  267. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_US_saprigi.properties +24 -24
  268. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sh.properties +6 -6
  269. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearch.view.xml +37 -17
  270. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearchBox.fragment.xml +5 -3
  271. package/src/main/js/sap/ushell/components/contentFinder/view/ContentFinderDialog.view.xml +9 -4
  272. package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
  273. package/src/main/js/sap/ushell/components/factsheet/controls/PictureTileRenderer.js +2 -1
  274. package/src/main/js/sap/ushell/components/factsheet/controls/PictureViewerRenderer.js +2 -1
  275. package/src/main/js/sap/ushell/components/homepage/ActionMode.js +23 -19
  276. package/src/main/js/sap/ushell/components/homepage/Component.js +3 -3
  277. package/src/main/js/sap/ushell/components/homepage/DashboardContent.controller.js +3 -2
  278. package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +3 -4
  279. package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +17 -9
  280. package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +10 -3
  281. package/src/main/js/sap/ushell/components/homepage/FLPAnalytics.js +6 -4
  282. package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
  283. package/src/main/js/sap/ushell/components/pages/ActionMode.js +5 -5
  284. package/src/main/js/sap/ushell/components/pages/Component.js +2 -2
  285. package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +7 -7
  286. package/src/main/js/sap/ushell/components/pages/StateManager.js +3 -3
  287. package/src/main/js/sap/ushell/components/pages/controller/ImportDialog.controller.js +9 -12
  288. package/src/main/js/sap/ushell/components/pages/controller/MyHome.controller.js +2 -2
  289. package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +70 -15
  290. package/src/main/js/sap/ushell/components/pages/controller/PagesAndSpaceId.js +2 -2
  291. package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
  292. package/src/main/js/sap/ushell/components/pages/view/PageRuntime.view.xml +7 -5
  293. package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +50 -8
  294. package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -8
  295. package/src/main/js/sap/ushell/components/runtimeSwitcher/view/RuntimeSwitcher.view.xml +13 -8
  296. package/src/main/js/sap/ushell/components/shell/MenuBar/Component.js +6 -4
  297. package/src/main/js/sap/ushell/components/shell/MenuBar/controller/MenuBar.controller.js +6 -7
  298. package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
  299. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +13 -11
  300. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
  301. package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +16 -12
  302. package/src/main/js/sap/ushell/components/shell/Notifications/Notifications.controller.js +5 -5
  303. package/src/main/js/sap/ushell/components/shell/PostLoadingHeaderEnhancement/Component.js +14 -14
  304. package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +7 -7
  305. package/src/main/js/sap/ushell/components/shell/Search/Component.js +5 -4
  306. package/src/main/js/sap/ushell/components/shell/Search/ESearch.js +8 -6
  307. package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
  308. package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +25 -18
  309. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchCEP.controller.js +89 -67
  310. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +5 -4
  311. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +5 -4
  312. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +1 -1
  313. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchServiceProvider.js +8 -6
  314. package/src/main/js/sap/ushell/components/shell/Settings/Component.js +7 -7
  315. package/src/main/js/sap/ushell/components/shell/Settings/ErrorMessageHelper.js +1 -1
  316. package/src/main/js/sap/ushell/components/shell/Settings/UserSettings.controller.js +6 -6
  317. package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +4 -2
  318. package/src/main/js/sap/ushell/components/shell/Settings/homepage/HomepageEntry.js +1 -1
  319. package/src/main/js/sap/ushell/components/shell/Settings/homepage/HomepageSetting.view.xml +3 -1
  320. package/src/main/js/sap/ushell/components/shell/Settings/search/SearchEntry.js +95 -96
  321. package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountEntry.js +1 -1
  322. package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountSelector.controller.js +1 -1
  323. package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountSetting.fragment.xml +7 -1
  324. package/src/main/js/sap/ushell/components/shell/Settings/userActivities/UserActivitiesSetting.controller.js +1 -1
  325. package/src/main/js/sap/ushell/components/shell/Settings/userActivities/UserActivitiesSetting.view.xml +7 -1
  326. package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/UserDefaultsForm.js +1 -1
  327. package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/controller/UserDefaultsSetting.controller.js +3 -3
  328. package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/LanguageRegionSelector.controller.js +27 -31
  329. package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/LanguageRegionSelector.view.xml +9 -2
  330. package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +6 -6
  331. package/src/main/js/sap/ushell/components/shell/UserActionsMenu/UserActionsMenu.controller.js +22 -20
  332. package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +8 -11
  333. package/src/main/js/sap/ushell/components/tiles/action/Configuration.controller.js +5 -4
  334. package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTile.controller.js +1 -1
  335. package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/DynamicTile.controller.js +5 -3
  336. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.controller.js +16 -31
  337. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.view.xml +1 -1
  338. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.controller.js +16 -33
  339. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.view.xml +1 -1
  340. package/src/main/js/sap/ushell/components/tiles/generic.js +2 -1
  341. package/src/main/js/sap/ushell/components/tiles/indicatorDualComparison/DualComparison.controller.js +1 -1
  342. package/src/main/js/sap/ushell/components/tiles/indicatorDualContribution/DualContribution.controller.js +1 -1
  343. package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/cache.js +12 -10
  344. package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/oData4Analytics.js +49 -42
  345. package/src/main/js/sap/ushell/components/tiles/indicatorcontribution/ContributionTile.controller.js +1 -1
  346. package/src/main/js/sap/ushell/components/tiles/indicatorcontribution/ContributionTile.view.js +16 -18
  347. package/src/main/js/sap/ushell/components/tiles/utils.js +19 -15
  348. package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +31 -29
  349. package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +18 -219
  350. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +1 -1
  351. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +62 -137
  352. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.layout.js +4 -2
  353. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageHost.js +185 -68
  354. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +1 -1
  355. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +3 -6
  356. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +3 -6
  357. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +3 -6
  358. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnRenderer.js +2 -1
  359. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +4 -7
  360. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRenderer.js +1 -1
  361. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +7 -5
  362. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRowRenderer.js +5 -5
  363. package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
  364. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources.properties +4 -1
  365. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_saprigi.properties +66 -66
  366. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hr.properties +1 -1
  367. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sh.properties +29 -29
  368. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_th.properties +1 -1
  369. package/src/main/js/sap/ushell/components/workPageBuilder/view/WorkPageBuilder.view.xml +8 -0
  370. package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +2 -2
  371. package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +4 -7
  372. package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
  373. package/src/main/js/sap/ushell/components/workPageRuntime/view/WorkPageRuntime.view.xml +15 -8
  374. package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
  375. package/src/main/js/sap/ushell/iconfonts.js +1 -1
  376. package/src/main/js/sap/ushell/library.js +28 -26
  377. package/src/main/js/sap/ushell/navigationMode.js +4 -6
  378. package/src/main/js/sap/ushell/performance/FesrEnhancer.js +97 -18
  379. package/src/main/js/sap/ushell/performance/ShellAnalytics.js +7 -7
  380. package/src/main/js/sap/ushell/performance/StatisticalRecord.js +78 -23
  381. package/src/main/js/sap/ushell/plugins/BaseRTAPlugin.js +4 -3
  382. package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
  383. package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_en_US_saprigi.properties +8 -8
  384. package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_sh.properties +2 -2
  385. package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_th.properties +2 -2
  386. package/src/main/js/sap/ushell/plugins/rta-personalize/Component.js +10 -6
  387. package/src/main/js/sap/ushell/plugins/rta-personalize/i18n/i18n_en_US_saprigi.properties +12 -12
  388. package/src/main/js/sap/ushell/plugins/rta-personalize/i18n/i18n_sh.properties +4 -4
  389. package/src/main/js/sap/ushell/renderer/AccessKeysHandler.js +15 -13
  390. package/src/main/js/sap/ushell/renderer/LogonFrameProvider.js +7 -7
  391. package/src/main/js/sap/ushell/renderer/Renderer.js +163 -221
  392. package/src/main/js/sap/ushell/renderer/Shell.controller.js +133 -163
  393. package/src/main/js/sap/ushell/renderer/Shell.view.js +13 -14
  394. package/src/main/js/sap/ushell/renderer/allMyApps/AllMyApps.controller.js +65 -14
  395. package/src/main/js/sap/ushell/renderer/allMyApps/AllMyAppsManager.js +40 -17
  396. package/src/main/js/sap/ushell/renderer/resources/resources.properties +9 -3
  397. package/src/main/js/sap/ushell/renderer/resources/resources_ar.properties +14 -17
  398. package/src/main/js/sap/ushell/renderer/resources/resources_bg.properties +48 -51
  399. package/src/main/js/sap/ushell/renderer/resources/resources_ca.properties +13 -16
  400. package/src/main/js/sap/ushell/renderer/resources/resources_cs.properties +19 -22
  401. package/src/main/js/sap/ushell/renderer/resources/resources_cy.properties +13 -16
  402. package/src/main/js/sap/ushell/renderer/resources/resources_da.properties +21 -24
  403. package/src/main/js/sap/ushell/renderer/resources/resources_de.properties +19 -22
  404. package/src/main/js/sap/ushell/renderer/resources/resources_el.properties +23 -26
  405. package/src/main/js/sap/ushell/renderer/resources/resources_en.properties +18 -21
  406. package/src/main/js/sap/ushell/renderer/resources/resources_en_GB.properties +19 -22
  407. package/src/main/js/sap/ushell/renderer/resources/resources_en_US_saprigi.properties +991 -994
  408. package/src/main/js/sap/ushell/renderer/resources/resources_es.properties +16 -19
  409. package/src/main/js/sap/ushell/renderer/resources/resources_es_MX.properties +10 -13
  410. package/src/main/js/sap/ushell/renderer/resources/resources_et.properties +18 -21
  411. package/src/main/js/sap/ushell/renderer/resources/resources_fi.properties +21 -24
  412. package/src/main/js/sap/ushell/renderer/resources/resources_fr.properties +24 -27
  413. package/src/main/js/sap/ushell/renderer/resources/resources_fr_CA.properties +25 -28
  414. package/src/main/js/sap/ushell/renderer/resources/resources_hi.properties +32 -35
  415. package/src/main/js/sap/ushell/renderer/resources/resources_hr.properties +36 -39
  416. package/src/main/js/sap/ushell/renderer/resources/resources_hu.properties +15 -18
  417. package/src/main/js/sap/ushell/renderer/resources/resources_id.properties +15 -18
  418. package/src/main/js/sap/ushell/renderer/resources/resources_it.properties +14 -17
  419. package/src/main/js/sap/ushell/renderer/resources/resources_iw.properties +15 -18
  420. package/src/main/js/sap/ushell/renderer/resources/resources_ja.properties +23 -26
  421. package/src/main/js/sap/ushell/renderer/resources/resources_kk.properties +28 -31
  422. package/src/main/js/sap/ushell/renderer/resources/resources_ko.properties +21 -24
  423. package/src/main/js/sap/ushell/renderer/resources/resources_lt.properties +13 -16
  424. package/src/main/js/sap/ushell/renderer/resources/resources_lv.properties +17 -20
  425. package/src/main/js/sap/ushell/renderer/resources/resources_ms.properties +14 -17
  426. package/src/main/js/sap/ushell/renderer/resources/resources_nl.properties +14 -17
  427. package/src/main/js/sap/ushell/renderer/resources/resources_no.properties +32 -35
  428. package/src/main/js/sap/ushell/renderer/resources/resources_pl.properties +21 -24
  429. package/src/main/js/sap/ushell/renderer/resources/resources_pt.properties +13 -16
  430. package/src/main/js/sap/ushell/renderer/resources/resources_pt_PT.properties +7 -10
  431. package/src/main/js/sap/ushell/renderer/resources/resources_ro.properties +10 -13
  432. package/src/main/js/sap/ushell/renderer/resources/resources_ru.properties +22 -25
  433. package/src/main/js/sap/ushell/renderer/resources/resources_sh.properties +276 -279
  434. package/src/main/js/sap/ushell/renderer/resources/resources_sk.properties +25 -28
  435. package/src/main/js/sap/ushell/renderer/resources/resources_sl.properties +31 -34
  436. package/src/main/js/sap/ushell/renderer/resources/resources_sv.properties +15 -18
  437. package/src/main/js/sap/ushell/renderer/resources/resources_th.properties +22 -25
  438. package/src/main/js/sap/ushell/renderer/resources/resources_tr.properties +33 -36
  439. package/src/main/js/sap/ushell/renderer/resources/resources_uk.properties +46 -49
  440. package/src/main/js/sap/ushell/renderer/resources/resources_vi.properties +14 -17
  441. package/src/main/js/sap/ushell/renderer/resources/resources_zh_CN.properties +10 -13
  442. package/src/main/js/sap/ushell/renderer/resources/resources_zh_TW.properties +21 -24
  443. package/src/main/js/sap/ushell/renderer/search/searchComponent/Component.js +8 -2
  444. package/src/main/js/sap/ushell/renderer/search/searchComponent/controller/CEPSearchApp.controller.js +20 -13
  445. package/src/main/js/sap/ushell/renderer/search/searchComponent/controller/SearchApp.controller.js +13 -9
  446. package/src/main/js/sap/ushell/renderer/search/searchComponent/manifest.json +1 -1
  447. package/src/main/js/sap/ushell/renderer/search/searchComponent/view/CEPSearchApp.view.js +1 -1
  448. package/src/main/js/sap/ushell/renderer/search/searchComponent/view/SearchApp.view.js +1 -1
  449. package/src/main/js/sap/ushell/renderer/search/util.js +5 -7
  450. package/src/main/js/sap/ushell/renderer/utils.js +6 -6
  451. package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +14 -11
  452. package/src/main/js/sap/ushell/renderers/fiori2/RendererExtensions.js +50 -42
  453. package/src/main/js/sap/ushell/resources.js +3 -3
  454. package/src/main/js/sap/ushell/services/AllMyApps.js +2 -3
  455. package/src/main/js/sap/ushell/services/AppConfiguration.js +56 -15
  456. package/src/main/js/sap/ushell/services/AppLifeCycle.js +14 -29
  457. package/src/main/js/sap/ushell/services/AppState.js +39 -28
  458. package/src/main/js/sap/ushell/services/Bookmark.js +18 -45
  459. package/src/main/js/sap/ushell/services/BookmarkV2.js +118 -120
  460. package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +20 -22
  461. package/src/main/js/sap/ushell/services/CommonDataModel.js +31 -94
  462. package/src/main/js/sap/ushell/services/Configuration.js +5 -5
  463. package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +2 -3
  464. package/src/main/js/sap/ushell/services/Container.js +6 -5
  465. package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +7 -5
  466. package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +80 -98
  467. package/src/main/js/sap/ushell/services/DarkModeSupport.js +6 -6
  468. package/src/main/js/sap/ushell/services/EndUserFeedback.js +17 -15
  469. package/src/main/js/sap/ushell/services/Extension/FloatingContainer.js +139 -67
  470. package/src/main/js/sap/ushell/services/Extension/Footer.js +2 -1
  471. package/src/main/js/sap/ushell/services/Extension/Header.js +9 -16
  472. package/src/main/js/sap/ushell/services/Extension/Item.js +12 -8
  473. package/src/main/js/sap/ushell/services/Extension/SidePane.js +5 -5
  474. package/src/main/js/sap/ushell/services/Extension/ToolArea.js +5 -5
  475. package/src/main/js/sap/ushell/services/Extension.js +12 -13
  476. package/src/main/js/sap/ushell/services/FlpLaunchPage.js +1791 -0
  477. package/src/main/js/sap/ushell/services/LaunchPage.js +653 -1715
  478. package/src/main/js/sap/ushell/services/Menu.js +3 -3
  479. package/src/main/js/sap/ushell/services/Message.js +16 -9
  480. package/src/main/js/sap/ushell/services/MessageBroker.js +6 -6
  481. package/src/main/js/sap/ushell/services/NavTargetResolution.js +25 -28
  482. package/src/main/js/sap/ushell/services/Navigation/utils.js +1 -1
  483. package/src/main/js/sap/ushell/services/Navigation.js +17 -16
  484. package/src/main/js/sap/ushell/services/NavigationDataProvider.js +2 -2
  485. package/src/main/js/sap/ushell/services/Notifications.js +55 -38
  486. package/src/main/js/sap/ushell/services/NotificationsV2.js +122 -49
  487. package/src/main/js/sap/ushell/services/PageBuilding.js +3 -4
  488. package/src/main/js/sap/ushell/services/PagePersistence.js +3 -3
  489. package/src/main/js/sap/ushell/services/PageReferencing.js +2 -2
  490. package/src/main/js/sap/ushell/services/Pages.js +295 -320
  491. package/src/main/js/sap/ushell/services/Personalization.js +40 -37
  492. package/src/main/js/sap/ushell/services/PersonalizationV2/ContextContainer.js +27 -24
  493. package/src/main/js/sap/ushell/services/PersonalizationV2/Personalizer.js +7 -4
  494. package/src/main/js/sap/ushell/services/PersonalizationV2/TransientPersonalizer.js +2 -0
  495. package/src/main/js/sap/ushell/services/PersonalizationV2/Variant.js +7 -4
  496. package/src/main/js/sap/ushell/services/PersonalizationV2/VariantSet.js +10 -11
  497. package/src/main/js/sap/ushell/services/PersonalizationV2/VariantSetAdapter.js +10 -10
  498. package/src/main/js/sap/ushell/services/PersonalizationV2/WindowAdapter.js +2 -2
  499. package/src/main/js/sap/ushell/services/PersonalizationV2/WindowAdapterContainer.js +5 -5
  500. package/src/main/js/sap/ushell/services/PersonalizationV2/constants.js +1 -1
  501. package/src/main/js/sap/ushell/services/PersonalizationV2.js +10 -9
  502. package/src/main/js/sap/ushell/services/PluginManager.js +77 -75
  503. package/src/main/js/sap/ushell/services/ReferenceResolver.js +36 -38
  504. package/src/main/js/sap/ushell/services/Search.js +4 -4
  505. package/src/main/js/sap/ushell/services/SearchCEP.js +2 -3
  506. package/src/main/js/sap/ushell/services/SearchableContent.js +93 -80
  507. package/src/main/js/sap/ushell/services/ShellNavigation.js +160 -450
  508. package/src/main/js/sap/ushell/services/ShellNavigationHashChanger.js +27 -26
  509. package/src/main/js/sap/ushell/services/ShellNavigationInternal.js +532 -0
  510. package/src/main/js/sap/ushell/services/SmartNavigation.js +23 -23
  511. package/src/main/js/sap/ushell/services/SpaceContent.js +4 -4
  512. package/src/main/js/sap/ushell/services/SupportTicket.js +4 -5
  513. package/src/main/js/sap/ushell/services/UITracer.js +2 -2
  514. package/src/main/js/sap/ushell/services/URLParsing.js +15 -14
  515. package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
  516. package/src/main/js/sap/ushell/services/URLTemplate.js +2 -2
  517. package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +47 -10
  518. package/src/main/js/sap/ushell/services/UsageAnalytics.js +25 -9
  519. package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +11 -11
  520. package/src/main/js/sap/ushell/services/UserDefaultParameters.js +34 -41
  521. package/src/main/js/sap/ushell/services/UserInfo.js +29 -53
  522. package/src/main/js/sap/ushell/services/UserRecents/RecentActivity.js +480 -0
  523. package/src/main/js/sap/ushell/services/UserRecents/RecentAppsUsage.js +207 -0
  524. package/src/main/js/sap/ushell/services/UserRecents/RecentsList.js +119 -0
  525. package/src/main/js/sap/ushell/services/{_UserRecents → UserRecents}/UserRecentsBase.js +41 -9
  526. package/src/main/js/sap/ushell/services/UserRecents.js +185 -188
  527. package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +42 -41
  528. package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +27 -26
  529. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Formatter.js +1 -1
  530. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundIndex.js +6 -6
  531. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundProvider.js +1 -1
  532. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/ParameterMapping.js +1 -1
  533. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/PrelaunchOperations.js +1 -1
  534. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Search.js +7 -9
  535. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/StagedLogger.js +1 -1
  536. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/SystemContext.js +1 -1
  537. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Utils.js +1 -1
  538. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/VirtualInbounds.js +1 -1
  539. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/XAppStateProcessing.js +2 -2
  540. package/src/main/js/sap/ushell/services/_CommonDataModel/PersonalizationProcessor.js +5 -7
  541. package/src/main/js/sap/ushell/services/_CommonDataModel/SiteConverter.js +2 -2
  542. package/src/main/js/sap/ushell/services/_CommonDataModel/vizTypeDefaults/VizTypeDefaults.js +105 -0
  543. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
  544. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +1 -1
  545. package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +1 -1
  546. package/src/main/js/sap/ushell/services/_MessageBroker/MessageBrokerEngine.js +8 -8
  547. package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +1 -1
  548. package/src/main/js/sap/ushell/services/_Personalization/ContextContainer.js +28 -29
  549. package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainer.js +10 -10
  550. package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainerVariant.js +7 -5
  551. package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainerVariantSet.js +9 -6
  552. package/src/main/js/sap/ushell/services/_Personalization/Personalizer.js +9 -18
  553. package/src/main/js/sap/ushell/services/_Personalization/TransientPersonalizer.js +4 -11
  554. package/src/main/js/sap/ushell/services/_Personalization/Variant.js +11 -9
  555. package/src/main/js/sap/ushell/services/_Personalization/VariantSet.js +6 -5
  556. package/src/main/js/sap/ushell/services/_Personalization/utils.js +1 -2
  557. package/src/main/js/sap/ushell/services/_PluginManager/Extensions.js +1 -1
  558. package/src/main/js/sap/ushell/services/_PluginManager/HeaderExtensions.js +1 -1
  559. package/src/main/js/sap/ushell/services/_PluginManager/MenuExtensions.js +1 -1
  560. package/src/main/js/sap/ushell/services/_Ui5ComponentLoader/utils.js +8 -22
  561. package/src/main/js/sap/ushell/services/appstate/Sequentializer.js +1 -1
  562. package/src/main/js/sap/ushell/services/appstate/SequentializingAdapter.js +3 -5
  563. package/src/main/js/sap/ushell/services/appstate/WindowAdapter.js +13 -12
  564. package/src/main/js/sap/ushell/services/personalization/VariantSetAdapter.js +2 -2
  565. package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +26 -22
  566. package/src/main/js/sap/ushell/themes/base/Catalog.less +12 -1
  567. package/src/main/js/sap/ushell/themes/base/ContentFinder.less +1 -0
  568. package/src/main/js/sap/ushell/themes/base/SearchCEP.less +9 -0
  569. package/src/main/js/sap/ushell/themes/base/img/SAPLogo.svg +1 -1
  570. package/src/main/js/sap/ushell/themes/base/img/launchicons/114_iPhone-Retina_Web_Clip.png +0 -0
  571. package/src/main/js/sap/ushell/themes/base/img/launchicons/144_iPad_Retina_Web_Clip.png +0 -0
  572. package/src/main/js/sap/ushell/themes/base/img/launchicons/57_iPhone_Desktop_Launch.png +0 -0
  573. package/src/main/js/sap/ushell/themes/base/img/launchicons/72_iPad_Desktop_Launch.png +0 -0
  574. package/src/main/js/sap/ushell/themes/base/img/launchpad_favicon.ico +0 -0
  575. package/src/main/js/sap/ushell/themes/sap_horizon/ShellHeader.less +0 -1
  576. package/src/main/js/sap/ushell/themes/sap_horizon_dark/ShellHeader.less +0 -1
  577. package/src/main/js/sap/ushell/themes/sap_horizon_hcb/ShellHeader.less +0 -1
  578. package/src/main/js/sap/ushell/themes/sap_horizon_hcw/ShellHeader.less +0 -1
  579. package/src/main/js/sap/ushell/ui/AppContainer.js +17 -22
  580. package/src/main/js/sap/ushell/ui/AppContainerRenderer.js +4 -6
  581. package/src/main/js/sap/ushell/ui/ContentNodeSelector.js +8 -9
  582. package/src/main/js/sap/ushell/ui/ContentNodeTreeItem.js +2 -3
  583. package/src/main/js/sap/ushell/ui/QuickAccess.js +90 -81
  584. package/src/main/js/sap/ushell/ui/ShellHeader.js +26 -25
  585. package/src/main/js/sap/ushell/ui/ShellHeaderRenderer.js +2 -1
  586. package/src/main/js/sap/ushell/ui/appfinder/AppBox.js +20 -7
  587. package/src/main/js/sap/ushell/ui/appfinder/AppBoxRenderer.js +9 -0
  588. package/src/main/js/sap/ushell/ui/appfinder/PinButton.js +7 -6
  589. package/src/main/js/sap/ushell/ui/appfinder/PinButtonRenderer.js +2 -1
  590. package/src/main/js/sap/ushell/ui/cards/FrequentActivitiesExtension.js +4 -4
  591. package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +5 -5
  592. package/src/main/js/sap/ushell/ui/footerbar/AboutButton.js +8 -13
  593. package/src/main/js/sap/ushell/ui/footerbar/AddBookmarkButton.js +10 -12
  594. package/src/main/js/sap/ushell/ui/footerbar/ContactSupportButton.js +22 -229
  595. package/src/main/js/sap/ushell/ui/footerbar/ContactSupportDialog.controller.js +116 -0
  596. package/src/main/js/sap/ushell/ui/footerbar/ContactSupportDialog.fragment.xml +85 -0
  597. package/src/main/js/sap/ushell/ui/footerbar/JamDiscussButton.js +8 -12
  598. package/src/main/js/sap/ushell/ui/footerbar/JamShareButton.js +9 -18
  599. package/src/main/js/sap/ushell/ui/footerbar/LogoutButton.js +8 -12
  600. package/src/main/js/sap/ushell/ui/footerbar/SaveAsTile.controller.js +4 -1
  601. package/src/main/js/sap/ushell/ui/footerbar/SaveAsTile.view.js +4 -1
  602. package/src/main/js/sap/ushell/ui/footerbar/SendAsEmailButton.js +6 -13
  603. package/src/main/js/sap/ushell/ui/launchpad/AccessibilityCustomData.js +4 -5
  604. package/src/main/js/sap/ushell/ui/launchpad/ActionItem.js +5 -4
  605. package/src/main/js/sap/ushell/ui/launchpad/AnchorItem.js +8 -11
  606. package/src/main/js/sap/ushell/ui/launchpad/AnchorItemRenderer.js +6 -2
  607. package/src/main/js/sap/ushell/ui/launchpad/AnchorNavigationBar.js +22 -19
  608. package/src/main/js/sap/ushell/ui/launchpad/AnchorNavigationBarRenderer.js +6 -1
  609. package/src/main/js/sap/ushell/ui/launchpad/CatalogEntryContainer.js +10 -6
  610. package/src/main/js/sap/ushell/ui/launchpad/CatalogsContainer.js +9 -5
  611. package/src/main/js/sap/ushell/ui/launchpad/DashboardGroupsContainer.js +9 -5
  612. package/src/main/js/sap/ushell/ui/launchpad/DashboardGroupsContainerRenderer.js +6 -1
  613. package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +1 -1
  614. package/src/main/js/sap/ushell/ui/launchpad/GroupHeaderActions.js +7 -9
  615. package/src/main/js/sap/ushell/ui/launchpad/GroupListItem.js +59 -67
  616. package/src/main/js/sap/ushell/ui/launchpad/GroupListItemRenderer.js +15 -15
  617. package/src/main/js/sap/ushell/ui/launchpad/LinkTileWrapper.js +4 -4
  618. package/src/main/js/sap/ushell/ui/launchpad/LinkTileWrapperRenderer.js +2 -1
  619. package/src/main/js/sap/ushell/ui/launchpad/LoadingDialog.js +7 -11
  620. package/src/main/js/sap/ushell/ui/launchpad/LoadingDialogRenderer.js +2 -2
  621. package/src/main/js/sap/ushell/ui/launchpad/Page.js +8 -12
  622. package/src/main/js/sap/ushell/ui/launchpad/PageRenderer.js +2 -1
  623. package/src/main/js/sap/ushell/ui/launchpad/PlusTile.js +5 -11
  624. package/src/main/js/sap/ushell/ui/launchpad/PlusTileRenderer.js +1 -1
  625. package/src/main/js/sap/ushell/ui/launchpad/Section.js +14 -26
  626. package/src/main/js/sap/ushell/ui/launchpad/SectionRenderer.js +3 -2
  627. package/src/main/js/sap/ushell/ui/launchpad/Tile.js +10 -13
  628. package/src/main/js/sap/ushell/ui/launchpad/TileContainer.js +10 -11
  629. package/src/main/js/sap/ushell/ui/launchpad/TileContainerRenderer.js +3 -2
  630. package/src/main/js/sap/ushell/ui/launchpad/TileRenderer.js +2 -1
  631. package/src/main/js/sap/ushell/ui/launchpad/TileState.js +8 -81
  632. package/src/main/js/sap/ushell/ui/launchpad/TileStateInternal.js +119 -0
  633. package/src/main/js/sap/ushell/ui/launchpad/TileStateInternalRenderer.js +72 -0
  634. package/src/main/js/sap/ushell/ui/launchpad/TileStateRenderer.js +4 -65
  635. package/src/main/js/sap/ushell/ui/launchpad/ViewPortState.js +6 -7
  636. package/src/main/js/sap/ushell/{services/_VisualizationInstantiation → ui/launchpad}/VizInstance.js +86 -78
  637. package/src/main/js/sap/ushell/{services/_VisualizationInstantiation → ui/launchpad}/VizInstanceAbap.js +6 -5
  638. package/src/main/js/sap/ushell/ui/launchpad/VizInstanceBase.js +40 -0
  639. package/src/main/js/sap/ushell/{services/_VisualizationInstantiation → ui/launchpad}/VizInstanceCdm.js +13 -11
  640. package/src/main/js/sap/ushell/{services/_VisualizationInstantiation → ui/launchpad}/VizInstanceLaunchPage.js +10 -7
  641. package/src/main/js/sap/ushell/{services/_VisualizationInstantiation → ui/launchpad}/VizInstanceLink.js +9 -61
  642. package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +8 -6
  643. package/src/main/js/sap/ushell/ui/launchpad/section/CompactAreaRenderer.js +2 -1
  644. package/src/main/js/sap/ushell/ui/shell/ContentRenderer.js +3 -3
  645. package/src/main/js/sap/ushell/ui/shell/FloatingContainer.js +10 -8
  646. package/src/main/js/sap/ushell/ui/shell/RightFloatingContainer.js +3 -3
  647. package/src/main/js/sap/ushell/ui/shell/ShellAppTitle.js +32 -34
  648. package/src/main/js/sap/ushell/ui/shell/ShellFloatingAction.js +9 -6
  649. package/src/main/js/sap/ushell/ui/shell/ShellFloatingActionRenderer.js +1 -3
  650. package/src/main/js/sap/ushell/ui/shell/ShellHeadItem.js +4 -7
  651. package/src/main/js/sap/ushell/ui/shell/ShellNavigationMenu.js +8 -8
  652. package/src/main/js/sap/ushell/ui/shell/SysInfoBar.js +3 -8
  653. package/src/main/js/sap/ushell/ui/shell/ToolArea.js +2 -2
  654. package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -1
  655. package/src/main/js/sap/ushell/ui/tile/DynamicTile.js +6 -8
  656. package/src/main/js/sap/ushell/ui/tile/DynamicTileRenderer.js +1 -1
  657. package/src/main/js/sap/ushell/ui/tile/ImageTile.js +4 -5
  658. package/src/main/js/sap/ushell/ui/tile/ImageTileRenderer.js +5 -6
  659. package/src/main/js/sap/ushell/ui/tile/StaticTile.js +4 -5
  660. package/src/main/js/sap/ushell/ui/tile/StaticTileRenderer.js +5 -6
  661. package/src/main/js/sap/ushell/ui/tile/TileBase.js +5 -8
  662. package/src/main/js/sap/ushell/ui/tile/TileBaseRenderer.js +3 -3
  663. package/src/main/js/sap/ushell/ui/utils.js +2 -4
  664. package/src/main/js/sap/ushell/ui5service/ShellUIService.js +8 -9
  665. package/src/main/js/sap/ushell/ui5service/UserStatus.js +11 -12
  666. package/src/main/js/sap/ushell/ui5service/_ShellUIService/shelluiservice.class.factory.js +6 -8
  667. package/src/main/js/sap/ushell/utils/DynamicTileRequest.js +5 -3
  668. package/src/main/js/sap/ushell/utils/HttpClient.js +6 -7
  669. package/src/main/js/sap/ushell/utils/RestrictedJSONModel.js +1 -1
  670. package/src/main/js/sap/ushell/utils/UrlParsing.js +5 -14
  671. package/src/main/js/sap/ushell/utils/UrlShortening.js +4 -4
  672. package/src/main/js/sap/ushell/utils/chipsUtils.js +10 -10
  673. package/src/main/js/sap/ushell/utils/workpage/WorkPageService.js +234 -0
  674. package/src/main/js/sap/ushell/utils/workpage/WorkPageVizInstantiation.js +141 -0
  675. package/src/main/js/sap/ushell/utils.js +17 -13
  676. package/src/test/js/sap/ushell/bootstrap/sandbox.js +1 -1
  677. package/ui5.yaml +6 -2
  678. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_cnr.properties +0 -10
  679. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_mk.properties +0 -10
  680. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_sr.properties +0 -10
  681. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/i18n/i18n_cnr.properties +0 -4
  682. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/i18n/i18n_mk.properties +0 -4
  683. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/i18n/i18n_sr.properties +0 -4
  684. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_cnr.properties +0 -41
  685. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_mk.properties +0 -41
  686. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sr.properties +0 -41
  687. package/src/main/js/sap/ushell/components/cepsearchresult/app/i18n/i18n_cnr.properties +0 -19
  688. package/src/main/js/sap/ushell/components/cepsearchresult/app/i18n/i18n_mk.properties +0 -19
  689. package/src/main/js/sap/ushell/components/cepsearchresult/app/i18n/i18n_sr.properties +0 -19
  690. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_cnr.properties +0 -117
  691. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_mk.properties +0 -117
  692. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sr.properties +0 -117
  693. package/src/main/js/sap/ushell/components/container/resources/resources_cnr.properties +0 -10
  694. package/src/main/js/sap/ushell/components/container/resources/resources_mk.properties +0 -10
  695. package/src/main/js/sap/ushell/components/container/resources/resources_sr.properties +0 -10
  696. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cnr.properties +0 -29
  697. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_mk.properties +0 -29
  698. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sr.properties +0 -29
  699. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearchPaginated.view.xml +0 -137
  700. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cnr.properties +0 -78
  701. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_mk.properties +0 -78
  702. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sr.properties +0 -78
  703. package/src/main/js/sap/ushell/components/workPageRuntime/services/NavigationResolver.js +0 -115
  704. package/src/main/js/sap/ushell/components/workPageRuntime/services/WorkPage.js +0 -130
  705. package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_cnr.properties +0 -13
  706. package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_mk.properties +0 -13
  707. package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_sr.properties +0 -13
  708. package/src/main/js/sap/ushell/plugins/rta-personalize/i18n/i18n_cnr.properties +0 -24
  709. package/src/main/js/sap/ushell/plugins/rta-personalize/i18n/i18n_mk.properties +0 -24
  710. package/src/main/js/sap/ushell/plugins/rta-personalize/i18n/i18n_sr.properties +0 -24
  711. package/src/main/js/sap/ushell/renderer/allMyApps/AllMyAppsKeyboardHandler.js +0 -108
  712. package/src/main/js/sap/ushell/renderer/resources/resources_cnr.properties +0 -996
  713. package/src/main/js/sap/ushell/renderer/resources/resources_mk.properties +0 -996
  714. package/src/main/js/sap/ushell/renderer/resources/resources_sr.properties +0 -996
  715. package/src/main/js/sap/ushell/renderers/fiori2/allMyApps/AllMyAppsKeyboardHandler.js +0 -13
  716. package/src/main/js/sap/ushell/services/_UserRecents/RecentActivity.js +0 -481
  717. package/src/main/js/sap/ushell/services/_UserRecents/RecentAppsUsage.js +0 -207
  718. package/src/main/js/sap/ushell/services/_UserRecents/RecentsList.js +0 -92
  719. package/src/main/js/sap/ushell/themes/base/img/launchpadDefaultIcon.jpg +0 -0
  720. /package/src/main/js/sap/ushell/{services/_VisualizationInstantiation → ui/launchpad}/VizInstanceRenderer.js +0 -0
@@ -1,13 +1,26 @@
1
1
  // Copyright (c) 2009-2023 SAP SE, All Rights Reserved
2
2
 
3
3
  /**
4
- * @namespace Default namespace for Unified Shell services.
5
- * @name sap.ushell.services
6
- * @see sap.ushell.Container.getServiceAsync()
4
+ * @namespace sap.ushell.services
5
+ * @description Default namespace for Unified Shell services.
6
+ * @see sap.ushell.Container.getServiceAsync
7
7
  * @since 1.15.0
8
8
  * @public
9
9
  */
10
10
 
11
+ /**
12
+ * @name sap.ushell.services.Service
13
+ * @class
14
+ * @classdesc Abstract base class for ushell services. For details, see {@link sap.ushell.Container#getServiceAsync}.
15
+ *
16
+ * @hideconstructor
17
+ * @abstract
18
+ *
19
+ * @see sap.ushell.Container.getServiceAsync
20
+ * @since 1.121.0
21
+ * @public
22
+ */
23
+
11
24
  /**
12
25
  * An enumeration for the application work protect mode state.
13
26
  * @typedef {object} sap.ushell.Container.DirtyState
@@ -28,7 +41,7 @@ sap.ui.define([
28
41
  "sap/base/util/uid",
29
42
  "sap/ui/base/EventProvider",
30
43
  "sap/ui/core/Control",
31
- "sap/ui/core/Core",
44
+ "sap/ui/core/EventBus",
32
45
  "sap/ui/core/service/ServiceFactoryRegistry",
33
46
  "sap/ui/performance/Measurement",
34
47
  "sap/ui/thirdparty/jquery",
@@ -40,7 +53,8 @@ sap.ui.define([
40
53
  "sap/ushell/utils",
41
54
  "sap/ushell/utils/UrlParsing",
42
55
  "sap/ushell/renderer/ShellLayout",
43
- "sap/base/util/Deferred"
56
+ "sap/base/util/Deferred",
57
+ "sap/base/util/ObjectPath"
44
58
  ], function (
45
59
  assert,
46
60
  Log,
@@ -49,7 +63,7 @@ sap.ui.define([
49
63
  uid,
50
64
  EventProvider,
51
65
  Control,
52
- Core,
66
+ EventBus,
53
67
  ServiceFactoryRegistry,
54
68
  Measurement,
55
69
  jQuery,
@@ -61,13 +75,14 @@ sap.ui.define([
61
75
  ushellUtils,
62
76
  UrlParsing,
63
77
  ShellLayout,
64
- Deferred
78
+ Deferred,
79
+ ObjectPath
65
80
  ) {
66
81
  "use strict";
67
82
 
68
83
  /* global OData */
69
84
 
70
- var S_COMPONENT_NAME = "sap.ushell.services.Container";
85
+ var S_COMPONENT_NAME = "sap.ushell.Container";
71
86
  var S_DIRTY_STATE_PREFIX = "sap.ushell.Container.dirtyState.";
72
87
  // The configuration as read from window["sap-ushell-config"]
73
88
  var oConfigSetting = {};
@@ -140,14 +155,14 @@ sap.ui.define([
140
155
  var oAdapterConfig = getServiceConfig(sName).adapter || {};
141
156
  var sAdapterName;
142
157
 
143
- async function getAdapterInstanceAsync (AdapterModule) {
158
+ async function getAdapterInstance (AdapterModule) {
144
159
  let AdapterClass;
145
160
  try {
146
161
  [AdapterClass] = await ushellUtils.requireAsync([AdapterModule]);
147
162
  } catch (oError) {
148
163
  if (AdapterModule.endsWith("PersonalizationV2Adapter")) {
149
164
  const sNewAdapterModule = AdapterModule.replace("PersonalizationV2Adapter", "PersonalizationAdapter");
150
- return getAdapterInstanceAsync(sNewAdapterModule);
165
+ return getAdapterInstance(sNewAdapterModule);
151
166
  }
152
167
  throw oError;
153
168
  }
@@ -165,48 +180,47 @@ sap.ui.define([
165
180
  }
166
181
 
167
182
  var sModule = sAdapterName.replace(/\./g, "/");
168
- if (bAsync) {
169
- return getAdapterInstanceAsync(sModule);
170
- }
171
183
 
172
184
  /**
173
185
  * @deprecated As of version 1.100
174
186
  * @private
175
187
  */
176
- return (function () {
177
- function getAdapterInstance (AdapterModule) {
178
- var AdapterClass;
179
- try {
180
- AdapterClass = sap.ui.requireSync(AdapterModule); // LEGACY API (deprecated)
181
- } catch (oError) {
182
- if (AdapterModule.endsWith("PersonalizationV2Adapter")) {
183
- const sNewAdapterModule = AdapterModule.replace("PersonalizationV2Adapter", "PersonalizationAdapter");
184
- AdapterClass = sap.ui.requireSync(sNewAdapterModule); // LEGACY API (deprecated)
185
- } else {
186
- throw oError;
187
- }
188
+ function getAdapterInstanceSync (AdapterModule) {
189
+ var AdapterClass;
190
+ try {
191
+ AdapterClass = sap.ui.requireSync(AdapterModule); // LEGACY API (deprecated)
192
+ } catch (oError) {
193
+ if (AdapterModule.endsWith("PersonalizationV2Adapter")) {
194
+ const sNewAdapterModule = AdapterModule.replace("PersonalizationV2Adapter", "PersonalizationAdapter");
195
+ AdapterClass = sap.ui.requireSync(sNewAdapterModule); // LEGACY API (deprecated)
196
+ } else {
197
+ throw oError;
188
198
  }
189
- return new AdapterClass(oSystem, sParameter,
190
- { config: oAdapterConfig.config || {} }
191
- );
192
199
  }
193
- return getAdapterInstance(sModule);
194
- })();
200
+ return new AdapterClass(oSystem, sParameter,
201
+ { config: oAdapterConfig.config || {} }
202
+ );
203
+ }
204
+
205
+ /**
206
+ * @deprecated As of version 1.100
207
+ * @private
208
+ */
209
+ if (!bAsync) {
210
+ return getAdapterInstanceSync(sModule);
211
+ }
212
+ return getAdapterInstance(sModule);
195
213
  }
196
214
 
197
215
  /**
198
- * @class
199
216
  * @alias sap.ushell.Container
200
- * @classdesc The Unified Shell's container.
201
- * Manages renderers, services, and adapters.
217
+ * @namespace
218
+ * @description The Unified Shell's container. Manages renderers, services, and adapters.
202
219
  * The container is designed to be a singleton, therefore instead of creating an instance, access the central one via <code>sap.ushell.Container</code>.
203
220
  *
204
221
  * @see sap.ushell.bootstrap
205
222
  * @since 1.15.0
206
223
  * @public
207
- *
208
- * @hideconstructor
209
- * @param {object} oAdapter the platform-specific adapter corresponding to this service
210
224
  */
211
225
  function Container () {
212
226
  var oEventProvider = new EventProvider();
@@ -228,8 +242,16 @@ sap.ui.define([
228
242
 
229
243
  var oContainerReadyDeferred = new Deferred();
230
244
 
245
+ /**
246
+ * @param {string} sPlatform The platform to initialize
247
+ * @param {object} mAdapterPackagesByPlatform The adapters
248
+ * @returns {Promise} Resolves once the container is initialized
249
+ *
250
+ * @private
251
+ * @alias sap.ushell.Container#init
252
+ */
231
253
  this.init = function (sPlatform, mAdapterPackagesByPlatform) {
232
- sap.ushell.Container = oContainerInstance;
254
+ ObjectPath.set("sap.ushell.Container", oContainerInstance);
233
255
  return this._init(sPlatform, mAdapterPackagesByPlatform)
234
256
  .then(function (oCreatedAdapter) {
235
257
  oAdapter = oCreatedAdapter;
@@ -244,6 +266,21 @@ sap.ui.define([
244
266
  });
245
267
  };
246
268
 
269
+ /**
270
+ * @returns {boolean} Whether the container is initialized
271
+ *
272
+ * *Note*: ONLY for ushell-internal use!
273
+ * This API must not be used by any consumer outside ushell lib.
274
+ *
275
+ * Other SAP-internal consumers can use ready() on request (after
276
+ * the consuming lib has been added to the restriced list) when
277
+ * they need a definite trigger to run code after FLP's bootstrap.
278
+ * Besides that, sap.ui.require("sap/ushell/Container") (Container proping)
279
+ * should be used to identify if a FLP environment has been launched, i.e. if
280
+ * an app is running stand-alone or hosted in a Fiori launchpad.
281
+ *
282
+ * @private
283
+ */
247
284
  this.isInitialized = function () {
248
285
  return bInitialized;
249
286
  };
@@ -256,8 +293,9 @@ sap.ui.define([
256
293
  *
257
294
  * @since 1.21.2
258
295
  * @public
259
- * @see sap.ushell.services.Container#setLogonFrameProvider
296
+ * @see sap.ushell.Container#setLogonFrameProvider
260
297
  * @deprecated since 1.120
298
+ * @alias sap.ushell.Container#cancelLogon
261
299
  */
262
300
  this.cancelLogon = function () {
263
301
  if (this.oFrameLogonManager) {
@@ -292,6 +330,7 @@ sap.ui.define([
292
330
  * @since 1.15.0
293
331
  * @public
294
332
  * @deprecated since 1.120.0
333
+ * @alias sap.ushell.Container#createRenderer
295
334
  */
296
335
  this.createRenderer = function (sRendererName, bAsync) {
297
336
  // shift params if necessary
@@ -310,7 +349,7 @@ sap.ui.define([
310
349
  if (!sRendererName) {
311
350
  throw new Error("Missing renderer name");
312
351
  }
313
- oRendererConfig = (oConfig.renderers && oConfig.renderers[sRendererName]) || {};
352
+ oRendererConfig = (oConfig && oConfig.renderers && oConfig.renderers[sRendererName]) || {};
314
353
  sComponentName = oRendererConfig.module || (sRendererName.indexOf(".") < 0
315
354
  ? "sap.ushell.renderers." + sRendererName + ".Renderer"
316
355
  : sRendererName);
@@ -465,9 +504,11 @@ sap.ui.define([
465
504
  * @param {string} [sRendererName] The renderer name, such as "standard" or "acme.foo.bar.MyRenderer";
466
505
  * it is taken from the configuration property <code>defaultRenderer</code> if not given here.
467
506
  *
468
- * @returns {sap.ui.core.Control|Promise<sap.ui.core.Control>|sap.ui.core.ComponentContainer|Promise<sap.ui.core.ComponentContainer>} the renderer or Promise (in asynchronous mode)
507
+ * @returns {Promise<sap.ui.core.Control>|Promise<sap.ui.core.ComponentContainer>} the renderer or Promise (in asynchronous mode)
508
+ *
469
509
  * @since 1.120.0
470
510
  * @private
511
+ * @alias sap.ushell.Container#createRendererInternal
471
512
  */
472
513
  this.createRendererInternal = async function (sRendererName) {
473
514
  var oComponentData = { async: true };
@@ -588,9 +629,11 @@ sap.ui.define([
588
629
  * (i.e. extend <code>sap.ui.core.Control</code>) or a UI component (i.e. extend <code>sap.ui.core.UIComponent</code>),
589
630
  * i.e. this method unwraps the renderer component from its <code>sap.ui.core.ComponentContainer</code>;
590
631
  * if no renderer name can be determined and a single renderer instance has been created, this single instance is returned.
632
+ *
591
633
  * @since 1.30.0
592
634
  * @public
593
635
  * @deprecated since 1.120.0
636
+ * @alias sap.ushell.Container#getRenderer
594
637
  */
595
638
  this.getRenderer = function (sRendererName) {
596
639
  var oRendererControl;
@@ -629,8 +672,10 @@ sap.ui.define([
629
672
  * (i.e. extend <code>sap.ui.core.Control</code>) or a UI component (i.e. extend <code>sap.ui.core.UIComponent</code>),
630
673
  * i.e. this method unwraps the renderer component from its <code>sap.ui.core.ComponentContainer</code>;
631
674
  * if no renderer name can be determined and a single renderer instance has been created, this single instance is returned.
675
+ *
632
676
  * @since 1.120.0
633
677
  * @private
678
+ * @alias sap.ushell.Container#getRendererInternal
634
679
  */
635
680
  this.getRendererInternal = function (sRendererName) {
636
681
  var oRendererControl;
@@ -663,9 +708,11 @@ sap.ui.define([
663
708
  /**
664
709
  * An enumeration for the application work protect mode state.
665
710
  * @type {sap.ushell.Container.DirtyState}
711
+ *
666
712
  * @since 1.21.1
667
713
  * @public
668
714
  * @member
715
+ * @alias sap.ushell.Container#DirtyState
669
716
  */
670
717
  this.DirtyState = {
671
718
  /**
@@ -729,12 +776,13 @@ sap.ui.define([
729
776
  *
730
777
  * All open UShell browser windows for the same origin are asked about their global dirty state.
731
778
  *
732
- * @returns {jQuery.Deferred} A <code>jQuery.Deferred</code> object's promise receiving the dirty state
733
- * (see {@link sap.ushell.Container.DirtyState}).
779
+ * @returns {jQuery.Promise} Resolves the dirty state (see {@link sap.ushell.Container.DirtyState}).
734
780
  * @throws {Error} Raises an exception, if called again before promise is resolved.
781
+ *
735
782
  * @since 1.21.1
736
783
  * @public
737
784
  * @deprecated since 1.120
785
+ * @alias sap.ushell.Container#getGlobalDirty
738
786
  */
739
787
  this.getGlobalDirty = function () {
740
788
  var oDeferred = new jQuery.Deferred();
@@ -844,6 +892,7 @@ sap.ui.define([
844
892
  * @since 1.15.0
845
893
  * @private
846
894
  * @ui5-restricted sap.fl
895
+ * @alias sap.ushell.Container#getLogonSystem
847
896
  */
848
897
  this.getLogonSystem = function () {
849
898
  if (!oAdapter) {
@@ -860,6 +909,7 @@ sap.ui.define([
860
909
  * @since 1.120.0
861
910
  * @private
862
911
  * @ui5-restricted sap.fl
912
+ * @alias sap.ushell.Container#ready
863
913
  */
864
914
  this.ready = function () {
865
915
  return oContainerReadyDeferred.promise;
@@ -869,8 +919,10 @@ sap.ui.define([
869
919
  * Returns the logged-in user.
870
920
  *
871
921
  * @returns {sap.ushell.User} object providing information about the logged-in user
922
+ *
872
923
  * @since 1.15.0
873
924
  * @private
925
+ * @alias sap.ushell.Container#getUser
874
926
  */
875
927
  this.getUser = function () {
876
928
  return oAdapter.getUser();
@@ -884,15 +936,16 @@ sap.ui.define([
884
936
  * However, if the dirty state was previously set to 'true' using 'setDirtyFlag' the registered dirty
885
937
  * state provider methods are ignored and the function simply returns 'true'.
886
938
  *
887
- * @returns {boolean}
888
- * The value of the dirty flag or the determined dirty state returned by the dirty state providers.
939
+ * @returns {boolean} The value of the dirty flag or the determined dirty state returned by the dirty state providers.
940
+ *
889
941
  * @since 1.27.0
890
942
  * @public
891
943
  * @deprecated since 1.120
944
+ * @alias sap.ushell.Container#getDirtyFlag
892
945
  */
893
946
  this.getDirtyFlag = function () {
894
947
  var bDirty = isDirty; // in case it was set
895
- var oNavigationContext = this._oShellNavigationService.getNavigationContext();
948
+ var oNavigationContext = this._oShellNavigationInternal.getNavigationContext();
896
949
  for (var i = 0; i < aRegisteredDirtyMethods.length; i++) {
897
950
  bDirty = bDirty || aRegisteredDirtyMethods[i](oNavigationContext);
898
951
  }
@@ -911,13 +964,14 @@ sap.ui.define([
911
964
  *
912
965
  * @since 1.98.0
913
966
  * @private
914
- */
967
+ * @alias sap.ushell.Container#getDirtyFlagsAsync
968
+ */
915
969
  this.getDirtyFlagsAsync = function () {
916
970
  if (!this.fnAsyncDirtyStateProvider) {
917
971
  return Promise.resolve(this.getDirtyFlag());
918
972
  }
919
973
 
920
- var oNavigationContext = this._oShellNavigationService.getNavigationContext();
974
+ var oNavigationContext = this._oShellNavigationInternal.getNavigationContext();
921
975
  return this.fnAsyncDirtyStateProvider(oNavigationContext)
922
976
  .then(function (bIsDirty) {
923
977
  return bIsDirty || this.getDirtyFlag();
@@ -931,6 +985,7 @@ sap.ui.define([
931
985
  *
932
986
  * @since 1.98.0
933
987
  * @private
988
+ * @alias sap.ushell.Container#isAsyncDirtyStateProviderSet
934
989
  */
935
990
  this.isAsyncDirtyStateProviderSet = function () {
936
991
  return typeof this.fnAsyncDirtyStateProvider === "function";
@@ -945,6 +1000,7 @@ sap.ui.define([
945
1000
  *
946
1001
  * @since 1.98.0
947
1002
  * @private
1003
+ * @alias sap.ushell.Container#setAsyncDirtyStateProvider
948
1004
  */
949
1005
  this.setAsyncDirtyStateProvider = function (fnAsyncDirtyStateProvider) {
950
1006
  this.fnAsyncDirtyStateProvider = fnAsyncDirtyStateProvider;
@@ -959,6 +1015,7 @@ sap.ui.define([
959
1015
  * @default false
960
1016
  * @since 1.27.0
961
1017
  * @public
1018
+ * @alias sap.ushell.Container#setDirtyFlag
962
1019
  */
963
1020
  this.setDirtyFlag = function (bIsDirty) {
964
1021
  isDirty = bIsDirty;
@@ -969,6 +1026,7 @@ sap.ui.define([
969
1026
  *
970
1027
  * @since 1.48.0
971
1028
  * @private
1029
+ * @alias sap.ushell.Container#sessionKeepAlive
972
1030
  */
973
1031
  this.sessionKeepAlive = function () {
974
1032
  if (oAdapter.sessionKeepAlive) {
@@ -981,6 +1039,7 @@ sap.ui.define([
981
1039
  *
982
1040
  * @since 1.96.0
983
1041
  * @private
1042
+ * @alias sap.ushell.Container#extendSession
984
1043
  */
985
1044
  this.extendSession = function () {
986
1045
  EventHub.emit("nwbcUserIsActive", Date.now());
@@ -1009,6 +1068,7 @@ sap.ui.define([
1009
1068
  *
1010
1069
  * @since 1.31.0
1011
1070
  * @public
1071
+ * @alias sap.ushell.Container#registerDirtyStateProvider
1012
1072
  */
1013
1073
  this.registerDirtyStateProvider = function (fnDirty) {
1014
1074
  if (typeof fnDirty !== "function") {
@@ -1023,8 +1083,10 @@ sap.ui.define([
1023
1083
  * Only the last registered function will be deregistered (in case it was registered multiple times).
1024
1084
  *
1025
1085
  * @param {function(): boolean} fnDirty function for determining the state of the application
1086
+ *
1026
1087
  * @since 1.67.0
1027
1088
  * @public
1089
+ * @alias sap.ushell.Container#deregisterDirtyStateProvider
1028
1090
  */
1029
1091
  this.deregisterDirtyStateProvider = function (fnDirty) {
1030
1092
  if (typeof fnDirty !== "function") {
@@ -1100,11 +1162,12 @@ sap.ui.define([
1100
1162
  * Note that the api will throw a runtime error (or reject for async mode)
1101
1163
  * if the service name does not reflect a service available.
1102
1164
  *
1165
+ * @template {sap.ushell.services.Service} ServiceType
1103
1166
  * @param {string} sServiceName The service name, such as "Menu"
1104
1167
  * @param {string} [sParameter] A parameter which is passed to the service constructor and every adapter constructor. (since 1.15.0)
1105
1168
  * @param {boolean} [bAsync] if true, the adapter is loaded asynchronously and a Promise is returned. (since 1.55.0)
1106
1169
  *
1107
- * @returns {object|Promise<object>} the service or, in asynchronous mode, a Promise that returns the service
1170
+ * @returns {ServiceType|Promise<ServiceType>} the service or, in asynchronous mode, a Promise that returns the service
1108
1171
  *
1109
1172
  * @throws {Error} If <code>sServiceName</code> is not the name of an available service.
1110
1173
  *
@@ -1113,9 +1176,10 @@ sap.ui.define([
1113
1176
  * @since 1.15.0
1114
1177
  * @deprecated since 1.77. Please use {@link #getServiceAsync} instead.
1115
1178
  * @public
1179
+ * @alias sap.ushell.Container#getService
1116
1180
  */
1117
1181
  this.getService = function (sServiceName, sParameter, bAsync) {
1118
- return that._getService.apply(that, arguments);
1182
+ return that._getServiceSync.apply(that, arguments);
1119
1183
  };
1120
1184
 
1121
1185
  /**
@@ -1171,17 +1235,20 @@ sap.ui.define([
1171
1235
  * Its adapter is an instance of <code>my.own.FooAdapter</code> constructed with the parameters logon system,
1172
1236
  * "runtimeConfig" and <code>{config: {foo: "bar"}}</code>.
1173
1237
  *
1238
+ * @template {sap.ushell.services.Service} ServiceType
1174
1239
  * @param {string} sServiceName The service name, such as "Menu"
1175
1240
  * @param {string} [sParameter] A parameter which is passed to the service constructor and every adapter constructor.
1176
- * @returns {Promise<object>} a Promise that returns the requested service
1241
+ * @returns {Promise<ServiceType>} a Promise that returns the requested service
1177
1242
  * @see sap.ushell.services.ContainerInterface
1243
+ *
1178
1244
  * @since 1.55.0
1179
1245
  * @public
1246
+ * @alias sap.ushell.Container#getServiceAsync
1180
1247
  */
1181
1248
  this.getServiceAsync = function (sServiceName, sParameter) {
1182
1249
  // Some applications override .getService and the async flag is ignored then.
1183
1250
  // Wrap into Promise.resolve to make sure that a Promise is always returned
1184
- return that._getService(sServiceName, sParameter, true);
1251
+ return that._getServiceAsync(sServiceName, sParameter);
1185
1252
  };
1186
1253
 
1187
1254
  /**
@@ -1190,15 +1257,16 @@ sap.ui.define([
1190
1257
  * @param {boolean} [bAsync] If true, the adapter is loaded asynchronously and a Promise is returned.
1191
1258
  *
1192
1259
  * @returns {object|Promise} The service or, in asynchronous mode, a Promise that returns the service
1193
- *
1194
1260
  * @throws {Error} If <code>sServiceName</code> is not the name of an available service.
1195
- *
1196
1261
  * @see sap.ushell.services.ContainerInterface
1197
1262
  *
1198
- * @since 1.86
1263
+ *
1264
+ * @deprecated As of version 1.120
1265
+ * @since 1.120
1199
1266
  * @private
1267
+ * @alias sap.ushell.Container#_getServiceSync
1200
1268
  */
1201
- this._getService = function (sServiceName, sParameter, bAsync) {
1269
+ this._getServiceSync = function (sServiceName, sParameter, bAsync) {
1202
1270
  var oContainerInterface = {};
1203
1271
 
1204
1272
  /**
@@ -1206,10 +1274,10 @@ sap.ui.define([
1206
1274
  * creates a new adapter that corresponds to the service to which this container interface was passed at construction time.
1207
1275
  *
1208
1276
  * @param {sap.ushell.System} oSystem information about the remote system to which the resulting adapter should connect
1209
- * @returns {jQuery.Deferred} A <code>jQuery.Deferred</code> object's promise receiving the remote adapter.
1210
- * @memberof sap.ushell.services.ContainerInterface#
1211
- * @name createAdapter
1277
+ * @returns {jQuery.Promise} Resolves the remote adapter.
1278
+ *
1212
1279
  * @since 1.15.0
1280
+ * @name sap.ushell.services.ContainerInterface#createAdapter
1213
1281
  */
1214
1282
  function createRemoteAdapter (oSystem) {
1215
1283
  var oDeferred = new jQuery.Deferred();
@@ -1268,32 +1336,31 @@ sap.ui.define([
1268
1336
  }
1269
1337
 
1270
1338
  if (!mServicesByName.containsKey(sKey)) {
1271
- // extract information about the requested service
1272
- if (bAsync) {
1273
- if (!mServicesByNamePromise.containsKey(sKey)) {
1274
- var oServicePromise = new Promise(function (resolve, reject) {
1275
- sap.ui.require([sModuleName.replace(/[.]/g, "/")], function (ServiceClass) {
1276
- resolve(getServiceInstance(ServiceClass, true));
1277
- }, reject);
1278
- });
1279
- mServicesByNamePromise.put(sKey, oServicePromise);
1280
- return oServicePromise;
1281
- }
1282
- return mServicesByNamePromise.get(sKey);
1283
- }
1284
1339
  /**
1285
1340
  * @deprecated As of version 1.100
1286
1341
  * @private
1287
1342
  */
1288
- (function () {
1343
+ if (!bAsync) {
1289
1344
  // else - synchronous call
1290
1345
  Log.error("Deprecated API call of 'sap.ushell.Container.getService'. Please use 'getServiceAsync' instead",
1291
1346
  null,
1292
- "sap.ushell.services.Container"
1347
+ "sap.ushell.Container"
1293
1348
  );
1294
1349
  var Service = sap.ui.requireSync(sModuleName.replace(/[.]/g, "/")); // LEGACY API (deprecated)
1295
1350
  return getServiceInstance(Service);
1296
- })();
1351
+ }
1352
+
1353
+ // extract information about the requested service
1354
+ if (!mServicesByNamePromise.containsKey(sKey)) {
1355
+ var oServicePromise = new Promise(function (resolve, reject) {
1356
+ sap.ui.require([sModuleName.replace(/[.]/g, "/")], function (ServiceClass) {
1357
+ resolve(getServiceInstance(ServiceClass, true));
1358
+ }, reject);
1359
+ });
1360
+ mServicesByNamePromise.put(sKey, oServicePromise);
1361
+ return oServicePromise;
1362
+ }
1363
+ return mServicesByNamePromise.get(sKey);
1297
1364
  }
1298
1365
  if (bAsync) {
1299
1366
  // If the service was first called sync and then async, there will be no
@@ -1304,10 +1371,109 @@ sap.ui.define([
1304
1371
  return mServicesByName.get(sKey);
1305
1372
  };
1306
1373
 
1374
+ /**
1375
+ * @param {string} sServiceName The service name, such as "Menu"
1376
+ * @param {string} [sParameter] A parameter which is passed to the service constructor and every adapter constructor. (since 1.15.0)
1377
+ *
1378
+ * @returns {Promise} A Promise that returns the service
1379
+ * @throws {Error} If <code>sServiceName</code> is not the name of an available service.
1380
+ * @see sap.ushell.services.ContainerInterface
1381
+ *
1382
+ * @since 1.120
1383
+ * @private
1384
+ * @alias sap.ushell.Container#_getServiceAsync
1385
+ */
1386
+ this._getServiceAsync = function (sServiceName, sParameter) {
1387
+ var oContainerInterface = {};
1388
+
1389
+ /**
1390
+ * For the given remote system,
1391
+ * creates a new adapter that corresponds to the service to which this container interface was passed at construction time.
1392
+ *
1393
+ * @param {sap.ushell.System} oSystem information about the remote system to which the resulting adapter should connect
1394
+ * @returns {jQuery.Promise} Resolves the remote adapter.
1395
+ *
1396
+ * @since 1.15.0
1397
+ * @name sap.ushell.services.ContainerInterface#createAdapter
1398
+ */
1399
+ function createRemoteAdapter (oSystem) {
1400
+ var oDeferred = new jQuery.Deferred();
1401
+ if (!oSystem) {
1402
+ throw new Error("Missing system");
1403
+ }
1404
+ // Note: this might become really asynchronous once the remote adapter is loaded
1405
+ // from the remote system itself
1406
+ oDeferred.resolve(createAdapter(sServiceName, oSystem, sParameter));
1407
+ sap.ushell.Container.addRemoteSystem(oSystem);
1408
+ return oDeferred.promise();
1409
+ }
1410
+
1411
+ if (!sServiceName) {
1412
+ throw new Error("Missing service name");
1413
+ }
1414
+ if (sServiceName.indexOf(".") >= 0) {
1415
+ // TODO support this once we have some configuration and can thus find adapters
1416
+ throw new Error("Unsupported service name");
1417
+ }
1418
+ var oServiceConfig = getServiceConfig(sServiceName);
1419
+ var sModuleName = oServiceConfig.module || "sap.ushell.services." + sServiceName;
1420
+ var sKey = sModuleName + "/" + (sParameter || "");
1421
+ var oServiceProperties = { config: oServiceConfig.config || {} };
1422
+
1423
+ function createService (ServiceClass, Adapter) {
1424
+ oContainerInterface.createAdapter = createRemoteAdapter;
1425
+ return new ServiceClass(Adapter, oContainerInterface, sParameter, oServiceProperties);
1426
+ }
1427
+
1428
+ function getServiceInstance (ServiceClass) {
1429
+ var oService;
1430
+
1431
+ // Check again if the service has already been created to prevent re-instantiation during race conditions
1432
+ if (mServicesByName.containsKey(sKey)) {
1433
+ oService = mServicesByName.get(sKey);
1434
+ } else if (ServiceClass.hasNoAdapter) {
1435
+ // has no adapter: don't create and don't pass one
1436
+ oService = new ServiceClass(oContainerInterface, sParameter, oServiceProperties);
1437
+ } else {
1438
+ // create and pass adapter for logon system as first parameter
1439
+ var oServiceAdapter = createAdapter(sServiceName, oAdapter.getSystem(),
1440
+ sParameter, true, ServiceClass.useConfiguredAdapterOnly);
1441
+ return oServiceAdapter.then(function (serviceAdapter) {
1442
+ var oServiceInstance = createService(ServiceClass, serviceAdapter);
1443
+ mServicesByName.put(sKey, oServiceInstance);
1444
+ return oServiceInstance;
1445
+ });
1446
+ }
1447
+
1448
+ mServicesByName.put(sKey, oService);
1449
+ return Promise.resolve(oService);
1450
+ }
1451
+
1452
+ if (!mServicesByName.containsKey(sKey)) {
1453
+ // extract information about the requested service
1454
+ if (!mServicesByNamePromise.containsKey(sKey)) {
1455
+ var oServicePromise = new Promise(function (resolve, reject) {
1456
+ sap.ui.require([sModuleName.replace(/[.]/g, "/")], function (ServiceClass) {
1457
+ resolve(getServiceInstance(ServiceClass));
1458
+ }, reject);
1459
+ });
1460
+ mServicesByNamePromise.put(sKey, oServicePromise);
1461
+ return oServicePromise;
1462
+ }
1463
+ return mServicesByNamePromise.get(sKey);
1464
+
1465
+ }
1466
+ // If the service was first called sync and then async, there will be no
1467
+ // promise in mServicesByNamePromise, so we return wrap mServicesByName
1468
+ // just in case, as that will always contain the service.
1469
+ return Promise.resolve(mServicesByName.get(sKey));
1470
+ };
1471
+
1307
1472
  /**
1308
1473
  * Get list of remote systems currently in use.
1309
1474
  *
1310
- * @returns {object} map of sap.ushell.System
1475
+ * @returns {Object<string, sap.ushell.System>} map of sap.ushell.System
1476
+ *
1311
1477
  * @since 1.17.1
1312
1478
  * @private
1313
1479
  */
@@ -1347,8 +1513,13 @@ sap.ui.define([
1347
1513
  setTimeout(fnFailure.bind(null, sErrorMessage), 5000);
1348
1514
  }
1349
1515
  // the original APIs provides abort handler which have to be stubbed also
1350
- return { abort: function () { return; } };
1516
+ return {
1517
+ abort: function () {
1518
+ return;
1519
+ }
1520
+ };
1351
1521
  }
1522
+
1352
1523
  OData.read = function (oRequest, fnSuccess, fnFailure) {
1353
1524
  return stub("OData.read('" +
1354
1525
  (oRequest && oRequest.Uri ? oRequest.requestUri : oRequest) +
@@ -1366,30 +1537,32 @@ sap.ui.define([
1366
1537
  * On logout this list is processed and performs a logout for each system via the ContainerAdapter specific for its platform.
1367
1538
  *
1368
1539
  * @param {sap.ushell.System} oRemoteSystem Remote system to be added.
1540
+ *
1369
1541
  * @since 1.15.0
1370
1542
  * @public
1543
+ * @alias sap.ushell.Container#addRemoteSystem
1371
1544
  */
1372
1545
  this.addRemoteSystem = function (oRemoteSystem) {
1373
1546
  /*
1374
- Internal details
1375
- oRemoteSystem.getAlias() is the unique key within the remote systems list.
1376
- oRemoteSystem.getPlatform determines which ContainerAdapter implementation is used.
1377
- oRemoteSystem.getBaseUrl determines the logout request routing; there are 3 routing modes:
1378
- 1. empty baseUrl:
1379
- The logout is done with its platform-specific, server-absolute service path e.g.
1380
- oRemoteSystem.platform is 'abap':
1381
- '/sap/public/bc/icf/logoff'
1382
- oRemoteSystem.platform is 'hana':
1383
- '<protocol://host:port>/sap/hana/xs/formLogin/token.xsjs'
1384
- 2. baseUrl beginning with '/' e.g. '/MY_PREFIX':
1385
- The logout request was fired with the baseUrl as prefix e.g. platform 'abap':
1386
- '<protocol://host:port>/MY_PREFIX/sap/public/bc/icf/logoff'
1387
- 3. baseUrl is ';o=':
1388
- The logout request is fired with <code>;o=oRemoteSystem.alias</code>
1389
- e.g. oRemoteSystem.platform 'abap' and oRemoteSystem.alias = 'MY_SYSTEM_ALIAS':
1390
- '<protocol://host:port>/sap/public/bc/icf/logoff;o=MY_SYSTEM_ALIAS'
1391
- Note: Cases 2. and 3. require a corresponding Web Dispatcher rule.
1392
- */
1547
+ * Internal details
1548
+ * oRemoteSystem.getAlias() is the unique key within the remote systems list.
1549
+ * oRemoteSystem.getPlatform determines which ContainerAdapter implementation is used.
1550
+ * oRemoteSystem.getBaseUrl determines the logout request routing; there are 3 routing modes:
1551
+ * 1. empty baseUrl:
1552
+ * The logout is done with its platform-specific, server-absolute service path e.g.
1553
+ * oRemoteSystem.platform is 'abap':
1554
+ * '/sap/public/bc/icf/logoff'
1555
+ * oRemoteSystem.platform is 'hana':
1556
+ * '<protocol://host:port>/sap/hana/xs/formLogin/token.xsjs'
1557
+ * 2. baseUrl beginning with '/' e.g. '/MY_PREFIX':
1558
+ * The logout request was fired with the baseUrl as prefix e.g. platform 'abap':
1559
+ * '<protocol://host:port>/MY_PREFIX/sap/public/bc/icf/logoff'
1560
+ * 3. baseUrl is ';o=':
1561
+ * The logout request is fired with <code>;o=oRemoteSystem.alias</code>
1562
+ * e.g. oRemoteSystem.platform 'abap' and oRemoteSystem.alias = 'MY_SYSTEM_ALIAS':
1563
+ * '<protocol://host:port>/sap/public/bc/icf/logoff;o=MY_SYSTEM_ALIAS'
1564
+ * Note: Cases 2. and 3. require a corresponding Web Dispatcher rule.
1565
+ */
1393
1566
  var sAlias = oRemoteSystem.getAlias();
1394
1567
  var oOldSystem = mRemoteSystems[sAlias];
1395
1568
 
@@ -1415,7 +1588,9 @@ sap.ui.define([
1415
1588
  *
1416
1589
  * @param {sap.ushell.System} oSystem system object
1417
1590
  * @returns {boolean} return true if system has "LOCAL" alias or if system has the same baseURL and client as FLP
1591
+ *
1418
1592
  * @private
1593
+ * @alias sap.ushell.Container#_isLocalSystem
1419
1594
  */
1420
1595
  this._isLocalSystem = function (oSystem) {
1421
1596
  var sAlias = oSystem.getAlias();
@@ -1437,8 +1612,10 @@ sap.ui.define([
1437
1612
  * If this succeeds, {@link #addRemoteSystem} is called accordingly with a base URL of ";o=".
1438
1613
  *
1439
1614
  * @param {string} sServiceUrl An OData service URL.
1615
+ *
1440
1616
  * @since 1.23.0
1441
1617
  * @private
1618
+ * @alias sap.ushell.Container#addRemoteSystemForServiceUrl
1442
1619
  */
1443
1620
  this.addRemoteSystemForServiceUrl = function (sServiceUrl) {
1444
1621
  var oSystemInfo = { baseUrl: ";o=" };
@@ -1474,8 +1651,10 @@ sap.ui.define([
1474
1651
  *
1475
1652
  * @param {function} fnFunction Event handler to be attached.
1476
1653
  * @param {boolean} bAsyncFunction Whether the function returns a Promise to wait for its resolvent (since 1.81.0).
1654
+ *
1477
1655
  * @since 1.19.1
1478
1656
  * @public
1657
+ * @alias sap.ushell.Container#attachLogoutEvent
1479
1658
  */
1480
1659
  this.attachLogoutEvent = function (fnFunction, bAsyncFunction) {
1481
1660
  var bFound = false;
@@ -1499,8 +1678,10 @@ sap.ui.define([
1499
1678
  * Detaches a listener from the logout event.
1500
1679
  *
1501
1680
  * @param {function} fnFunction Event handler to be detached.
1681
+ *
1502
1682
  * @since 1.19.1
1503
1683
  * @public
1684
+ * @alias sap.ushell.Container#detachLogoutEvent
1504
1685
  */
1505
1686
  this.detachLogoutEvent = function (fnFunction) {
1506
1687
  oEventProvider.detachEvent("Logout", fnFunction);
@@ -1520,9 +1701,11 @@ sap.ui.define([
1520
1701
  * The event object provides the instance of the created renderer as parameter &quot;renderer&quot;.
1521
1702
  * If the renderer is a SAPUI5 UI component (i.e. extend <code>sap.ui.core.UIComponent</code>),
1522
1703
  * the event parameter returns the component instance, i.e. it unwraps the renderer component from its component container.
1704
+ *
1523
1705
  * @since 1.34.1
1524
1706
  * @public
1525
1707
  * @deprecated since 1.120
1708
+ * @alias sap.ushell.Container#attachRendererCreatedEvent
1526
1709
  */
1527
1710
  this.attachRendererCreatedEvent = function (fnFunction) {
1528
1711
  oEventProvider.attachEvent("rendererCreated", fnFunction);
@@ -1532,9 +1715,11 @@ sap.ui.define([
1532
1715
  * Detaches a listener from the rendererCreated event.
1533
1716
  *
1534
1717
  * @param {function} fnFunction Event handler to be detached.
1718
+ *
1535
1719
  * @since 1.34.1
1536
1720
  * @public
1537
1721
  * @deprecated since 1.120
1722
+ * @alias sap.ushell.Container#detachRendererCreatedEvent
1538
1723
  */
1539
1724
  this.detachRendererCreatedEvent = function (fnFunction) {
1540
1725
  oEventProvider.detachEvent("rendererCreated", fnFunction);
@@ -1543,9 +1728,11 @@ sap.ui.define([
1543
1728
  /**
1544
1729
  * Logs out the current user from all relevant back-end systems, including the logon system itself.
1545
1730
  *
1546
- * @returns {jQuery.Deferred} A <code>jQuery.promise</code> to be resolved when logout is finished, even when it fails.
1731
+ * @returns {jQuery.Promise} Resolves when logout is finished, even when it fails.
1732
+ *
1547
1733
  * @since 1.15.0
1548
1734
  * @private
1735
+ * @alias sap.ushell.Container#defaultLogout
1549
1736
  */
1550
1737
  this.defaultLogout = function () {
1551
1738
  var oDeferred = new jQuery.Deferred();
@@ -1626,15 +1813,17 @@ sap.ui.define([
1626
1813
  };
1627
1814
 
1628
1815
  /**
1816
+ * @function
1629
1817
  * Logs out the current user from all relevant back-end systems, including the logon system itself.
1630
1818
  * This member represents the default native implementation of logout.
1631
1819
  * If SessionHandler was created, we register the alternate logout function using registerLogout function.
1632
1820
  *
1633
- * @function
1634
- * @returns {jQuery.Deferred} A <code>jQuery.promise</code> to be resolved when logout is finished, even when it fails.
1821
+ * @returns {jQuery.Promise} Resolves when logout is finished, even when it fails.
1822
+ *
1635
1823
  * @since 1.15.0
1636
1824
  * @public
1637
1825
  * @deprecated since 1.120
1826
+ * @alias sap.ushell.Container#logout
1638
1827
  */
1639
1828
  this.logout = this.defaultLogout;
1640
1829
 
@@ -1644,8 +1833,10 @@ sap.ui.define([
1644
1833
  * This is so that we can logout additional systems before we can logout from the Shell.
1645
1834
  * In this case we will register a substitute logout func from the SessionHandler.
1646
1835
  * @param {function} fnLogout function to be set
1836
+ *
1647
1837
  * @since 1.15.0
1648
1838
  * @private
1839
+ * @alias sap.ushell.Container#registerLogout
1649
1840
  */
1650
1841
  this.registerLogout = function (fnLogout) {
1651
1842
  this.logout = fnLogout;
@@ -1679,9 +1870,11 @@ sap.ui.define([
1679
1870
  * @param {function} oLogonFrameProvider.show A function taking no arguments which is called to indicate that the current frame
1680
1871
  * probably needs to be shown to the user because interaction is required. Note that there may be false positives here.
1681
1872
  * It is up to the provider how and when the frame is shown exactly; make sure to provide a good user interaction design here.
1873
+ * @see sap.ushell.Container#cancelLogon
1874
+ *
1682
1875
  * @since 1.21.2
1683
1876
  * @private
1684
- * @see sap.ushell.services.Container#cancelLogon
1877
+ * @alias sap.ushell.Container#setLogonFrameProvider
1685
1878
  */
1686
1879
  this.setLogonFrameProvider = function (oLogonFrameProvider) {
1687
1880
  if (this.oFrameLogonManager) {
@@ -1699,8 +1892,10 @@ sap.ui.define([
1699
1892
  *
1700
1893
  * @param {string} sPath the URL path for which the custom timeout will be applied
1701
1894
  * @param {int} iTimeout the timeout value in milliseconds
1895
+ *
1702
1896
  * @since 1.46.3
1703
1897
  * @private
1898
+ * @alias sap.ushell.Container#setXhrLogonTimeout
1704
1899
  */
1705
1900
  this.setXhrLogonTimeout = function (sPath, iTimeout) {
1706
1901
  if (this.oFrameLogonManager) {
@@ -1712,8 +1907,10 @@ sap.ui.define([
1712
1907
  * Returns the current Configuration, the configuration will contains URL of the FLP, scopeId in the case of CDM
1713
1908
  *
1714
1909
  * @returns {Promise} Returns a Promise that resolves the configuration data.
1910
+ *
1715
1911
  * @since 1.71
1716
1912
  * @private
1913
+ * @alias sap.ushell.Container#getFLPConfig
1717
1914
  */
1718
1915
  this.getFLPConfig = function () {
1719
1916
  var oPromise = new Promise(function (resolve, reject) {
@@ -1741,8 +1938,10 @@ sap.ui.define([
1741
1938
  *
1742
1939
  * @param {boolean} [bIncludeHash=false] defines if the hash is added to the result.
1743
1940
  * @returns {string} URL.
1941
+ *
1744
1942
  * @since 1.56
1745
1943
  * @private
1944
+ * @alias sap.ushell.Container#getFLPUrl
1746
1945
  */
1747
1946
  this.getFLPUrl = function (bIncludeHash) {
1748
1947
  var sUrl = ushellUtils.getLocationHref();
@@ -1761,9 +1960,11 @@ sap.ui.define([
1761
1960
  *
1762
1961
  * @param {boolean} [bIncludeHash=false] defines if the hash is added to the result.
1763
1962
  *
1764
- * @returns {jQuery.Promise} a promise that is resolved with FLP URL
1963
+ * @returns {jQuery.Promise} Resolves the FLP URL.
1964
+ *
1765
1965
  * @since 1.87
1766
1966
  * @private
1967
+ * @alias sap.ushell.Container#getFLPUrlAsync
1767
1968
  */
1768
1969
  this.getFLPUrlAsync = function (bIncludeHash) {
1769
1970
  return new jQuery.Deferred().resolve(that.getFLPUrl(bIncludeHash)).promise();
@@ -1775,14 +1976,28 @@ sap.ui.define([
1775
1976
  * @returns {boolean}.
1776
1977
  * @since 1.87
1777
1978
  * @private
1979
+ * @alias sap.ushell.Container#inAppRuntime
1778
1980
  */
1779
1981
  this.inAppRuntime = function () {
1780
1982
  return false;
1781
1983
  };
1782
- //for backward computability
1984
+
1985
+ /**
1986
+ * Returns indication is we are in AppRuntime (for special use cases handling)
1987
+ * for backward compatibility
1988
+ * @returns {boolean}.
1989
+ * @private
1990
+ * @alias sap.ushell.Container#runningInIframe
1991
+ */
1783
1992
  this.runningInIframe = this.inAppRuntime;
1784
1993
 
1785
- //Returns the adapter (for cflp appruntime internal usage only)
1994
+ /**
1995
+ * Returns the adapter (for cflp appruntime internal usage only)
1996
+ * @returns {object} The adapter
1997
+ *
1998
+ * @private
1999
+ * @alias sap.ushell.Container#_getAdapter
2000
+ */
1786
2001
  this._getAdapter = function () {
1787
2002
  return oAdapter;
1788
2003
  };
@@ -1791,8 +2006,10 @@ sap.ui.define([
1791
2006
  * Returns FLP's platform as specified in the configuration
1792
2007
  * @param {boolean} bSync return Platform string sync
1793
2008
  * @returns {object|Promise} if async - a Promise that returns the FLP Platform's value
2009
+ *
1794
2010
  * @since 1.96
1795
2011
  * @private
2012
+ * @alias sap.ushell.Container#getFLPPlatform
1796
2013
  */
1797
2014
  this.getFLPPlatform = function (bSync) {
1798
2015
  if (bSync === true) {
@@ -1810,7 +2027,7 @@ sap.ui.define([
1810
2027
 
1811
2028
  // constructor code -------------------------------------------------------
1812
2029
  // loose coupling to allow re-use from sap.ushell_abap.pbServices.ui2.Catalog#addSystemToServiceUrl
1813
- Core.getEventBus().subscribe("sap.ushell.Container",
2030
+ EventBus.getInstance().subscribe("sap.ushell.Container",
1814
2031
  "addRemoteSystemForServiceUrl", function (sChannelId, sEventId, oData) {
1815
2032
  that.addRemoteSystemForServiceUrl(oData);
1816
2033
  });
@@ -1822,8 +2039,10 @@ sap.ui.define([
1822
2039
  * @param {Object<string, string>} [mAdapterPackagesByPlatform={}] the map with platform specific package names for the service adapters.
1823
2040
  * You only need to specify these package names if they differ from the standard name <code>"sap.ushell.adapters." + sPlatform</code>.
1824
2041
  * @returns {Promise} a promise that is resolved once the container is available
2042
+ *
1825
2043
  * @since 1.119
1826
2044
  * @private
2045
+ * @alias sap.ushell.Container#_init
1827
2046
  */
1828
2047
  this._init = function (sPlatform, mAdapterPackagesByPlatform) {
1829
2048
  var oPromise = new Promise(function (fnResolve) {
@@ -1896,12 +2115,12 @@ sap.ui.define([
1896
2115
  Log.error("Ushell Config's preloadServices should not be used!");
1897
2116
  }
1898
2117
 
1899
- var oShellNavigationServicePromise = this.getServiceAsync("ShellNavigation")
1900
- .then(function (ShellNavigationService) {
1901
- this._oShellNavigationService = ShellNavigationService;
2118
+ var oShellNavigationInternalPromise = this.getServiceAsync("ShellNavigationInternal")
2119
+ .then(function (oShellNavigationInternal) {
2120
+ this._oShellNavigationInternal = oShellNavigationInternal;
1902
2121
  }.bind(this));
1903
2122
 
1904
- servicesForPreloading.push(oShellNavigationServicePromise);
2123
+ servicesForPreloading.push(oShellNavigationInternalPromise);
1905
2124
 
1906
2125
  Promise.all(servicesForPreloading)
1907
2126
  .then(function () {
@@ -1977,6 +2196,7 @@ sap.ui.define([
1977
2196
  that._closeWindow();
1978
2197
  that._redirectWindow();
1979
2198
  }
2199
+
1980
2200
  if (sap.ushell.Container !== that) {
1981
2201
  // In integration test suite, old listeners remain which do not belong to the current sap.ushell.Container instance.
1982
2202
  // IE sends events also to own window. Then these old listeners react as if a remote window logged out...
@@ -2010,12 +2230,14 @@ sap.ui.define([
2010
2230
  *
2011
2231
  * @returns {object} An object containing the exposed functions.
2012
2232
  * @private
2233
+ * @alias sap.ushell.Container#_getFunctionsForUnitTest
2013
2234
  */
2014
2235
  this._getFunctionsForUnitTest = function () {
2015
2236
  return {
2016
2237
  createAdapter: createAdapter
2017
2238
  };
2018
2239
  };
2240
+
2019
2241
  /**
2020
2242
  * Resets the internal service instance store.
2021
2243
  * NOTE:
@@ -2023,6 +2245,7 @@ sap.ui.define([
2023
2245
  *
2024
2246
  * @since 1.119
2025
2247
  * @private
2248
+ * @alias sap.ushell.Container#resetServices
2026
2249
  */
2027
2250
  this.resetServices = function () {
2028
2251
  mServicesByName = new ushellUtils.Map();
@@ -2036,6 +2259,7 @@ sap.ui.define([
2036
2259
  *
2037
2260
  * @since 1.119
2038
2261
  * @private
2262
+ * @alias sap.ushell.Container#reset
2039
2263
  */
2040
2264
  this.reset = function () {
2041
2265
  this.resetServices();
@@ -2112,7 +2336,8 @@ sap.ui.define([
2112
2336
  * @param {string} sPlatform the target platform, such as "abap" or "cdm".
2113
2337
  * @param {Object<string, string>} [mAdapterPackagesByPlatform={}] the map with platform specific package names for the service adapters.
2114
2338
  * You only need to specify these package names if they differ from the standard name <code>"sap.ushell.adapters." + sPlatform</code>.
2115
- * @returns {jQuery.Promise} a promise that is resolved once the container is available
2339
+ * @returns {jQuery.Promise} Resolves once the container is available.
2340
+ *
2116
2341
  * @since 1.15.0
2117
2342
  * @ui5-global-only
2118
2343
  * @public