@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,56 +1,51 @@
1
1
  // Copyright (c) 2009-2023 SAP SE, All Rights Reserved
2
2
 
3
- /**
4
- * @name sap.ushell.renderers.fiori2.RendererExtensions
5
- * @since 1.26
6
- * @deprecated since 1.119.0
7
- * @private
8
- */
9
3
  sap.ui.define([
10
- "sap/ui/core/Core",
11
- "sap/base/Log"
12
- ], function (Core, Log) {
4
+ "sap/base/Log",
5
+ "sap/ui/core/Element",
6
+ "sap/ushell/Container"
7
+ ], function (Log, Element, Container) {
13
8
  "use strict";
14
9
 
15
10
  function _removeHeaderItem (oItem, sLaunchpadState1, sLaunchpadState2) {
16
- sap.ushell.Container.getRenderer("fiori2").hideHeaderItem(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
11
+ Container.getRendererInternal("fiori2").hideHeaderItem(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
17
12
  }
18
13
 
19
14
  function _addOptionsActionSheetButton (oButton, sLaunchpadState1, sLaunchpadState2) {
20
- sap.ushell.Container.getRenderer("fiori2").showActionButton(oButton.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
15
+ Container.getRendererInternal("fiori2").showActionButton(oButton.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
21
16
  }
22
17
 
23
18
  function _removeOptionsActionSheetButton (oButton, sLaunchpadState1, sLaunchpadState2) {
24
- sap.ushell.Container.getRenderer("fiori2").hideActionButton(oButton.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
19
+ Container.getRendererInternal("fiori2").hideActionButton(oButton.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
25
20
  }
26
21
 
27
22
  function _setLeftPaneContent (oContent, sLaunchpadState1, sLaunchpadState2) {
28
- sap.ushell.Container.getRenderer("fiori2").showLeftPaneContent(oContent.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
23
+ Container.getRendererInternal("fiori2").showLeftPaneContent(oContent.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
29
24
  }
30
25
 
31
26
  function _removeLeftPaneContent (sLaunchpadState1, sLaunchpadState2) {
32
- sap.ushell.Container.getRenderer("fiori2").hideLeftPaneContent(false, [sLaunchpadState1, sLaunchpadState2]);
27
+ Container.getRendererInternal("fiori2").hideLeftPaneContent(false, [sLaunchpadState1, sLaunchpadState2]);
33
28
  }
34
29
 
35
30
  function _addFloatingActionButton (oItem, sLaunchpadState1, sLaunchpadState2) {
36
- sap.ushell.Container.getRenderer("fiori2").showFloatingActionButton(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
31
+ Container.getRendererInternal("fiori2").showFloatingActionButton(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
37
32
  }
38
33
 
39
34
  function _removeFloatingActionButton (oItem, sLaunchpadState1, sLaunchpadState2) {
40
- sap.ushell.Container.getRenderer("fiori2").hideFloatingActionButton(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
35
+ Container.getRendererInternal("fiori2").hideFloatingActionButton(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
41
36
  }
42
37
 
43
38
  function _addHeaderEndItem (oItem, sLaunchpadState1, sLaunchpadState2) {
44
- sap.ushell.Container.getRenderer("fiori2").showHeaderEndItem(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
39
+ Container.getRendererInternal("fiori2").showHeaderEndItem(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
45
40
  }
46
41
 
47
42
  function _removeHeaderEndItem (oItem, sLaunchpadState1, sLaunchpadState2) {
48
- sap.ushell.Container.getRenderer("fiori2").hideHeaderEndItem(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
43
+ Container.getRendererInternal("fiori2").hideHeaderEndItem(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
49
44
  }
50
45
 
51
46
  /*-------------general functions Code ------------------------------------------------------*/
52
47
  function _getConfiguration () {
53
- return sap.ushell.Container.getRenderer("fiori2").getModelConfiguration();
48
+ return Container.getRendererInternal("fiori2").getModelConfiguration();
54
49
  }
55
50
 
56
51
  function _addEndUserFeedbackCustomUI () {
@@ -58,36 +53,43 @@ sap.ui.define([
58
53
  }
59
54
 
60
55
  function _addUserPreferencesEntry (entryObject) {
61
- sap.ushell.Container.getRenderer("fiori2").addUserPreferencesEntry(entryObject);
56
+ Container.getRendererInternal("fiori2").addUserPreferencesEntry(entryObject);
62
57
  }
63
58
 
64
59
  function _addUserPreferencesGroupedEntry (entryObject) {
65
- sap.ushell.Container.getRenderer("fiori2").addUserPreferencesGroupedEntry(entryObject);
60
+ Container.getRendererInternal("fiori2").addUserPreferencesGroupedEntry(entryObject);
66
61
  }
67
62
 
68
63
  function _setHeaderTitle (sTitle) {
69
- sap.ushell.Container.getRenderer("fiori2").setHeaderTitle(sTitle);
64
+ Container.getRendererInternal("fiori2").setHeaderTitle(sTitle);
70
65
  }
71
66
 
72
67
  function _setLeftPaneVisibility (sLaunchpadState, bVisible) {
73
- sap.ushell.Container.getRenderer("fiori2").setLeftPaneVisibility(sLaunchpadState, bVisible);
68
+ Container.getRendererInternal("fiori2").setLeftPaneVisibility(sLaunchpadState, bVisible);
74
69
  }
75
70
 
76
71
  function _setHeaderHiding (bHiding) {
77
- sap.ushell.Container.getRenderer("fiori2").setHeaderHiding(bHiding);
72
+ Container.getRendererInternal("fiori2").setHeaderHiding(bHiding);
78
73
  }
79
74
 
80
75
  function _setFooter (oFooter) {
81
- sap.ushell.Container.getRenderer("fiori2").setFooter(oFooter);
76
+ Container.getRendererInternal("fiori2").setFooter(oFooter);
82
77
  }
83
78
 
84
79
  function _removeFooter () {
85
- sap.ushell.Container.getRenderer("fiori2").removeFooter();
80
+ Container.getRendererInternal("fiori2").removeFooter();
86
81
  }
87
82
 
88
83
  //functions to be uses by a public API
89
84
 
90
85
  // a public API
86
+ /**
87
+ * @alias sap.ushell.renderers.fiori2.RendererExtensions
88
+ * @namespace
89
+ * @since 1.26
90
+ * @deprecated since 1.119.0
91
+ * @private
92
+ */
91
93
  function RendererExtensions () {
92
94
  /**
93
95
  * Adds a ShellHeadItem to the headItems aggregation of the see sap.ushell.ui.shell.shell, in the given launchpad states
@@ -111,28 +113,28 @@ sap.ui.define([
111
113
  this.addHeaderItem = function (oItem, sLaunchpadState1, sLaunchpadState2) {
112
114
  Log.error("'sap.ushell.renderers.fiori2.RendererExtensions' is deprecated. Please use 'sap.ushell.Container.getRenderer('fiori2')' instead.");
113
115
 
114
- sap.ushell.Container.getRenderer("fiori2").showHeaderItem(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
116
+ Container.getRendererInternal("fiori2").showHeaderItem(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
115
117
  };
116
118
 
117
119
  this.setHeaderItemVisibility = function (sItem, sLaunchpadState, bToLocal, bIsVisible) {
118
120
  Log.error("'sap.ushell.renderers.fiori2.RendererExtensions' is deprecated. Please use 'sap.ushell.Container.getRenderer('fiori2')' instead.");
119
121
 
120
- var oItem = Core.byId(sItem);
122
+ const oItem = Element.getElementById(sItem);
121
123
  if (bIsVisible) {
122
- sap.ushell.Container.getRenderer("fiori2").showHeaderItem(oItem.getId(), bToLocal, [sLaunchpadState]);
124
+ Container.getRendererInternal("fiori2").showHeaderItem(oItem.getId(), bToLocal, [sLaunchpadState]);
123
125
  }
124
126
  };
125
127
 
126
128
  this.addSubHeader = function (oItem, sLaunchpadState1, sLaunchpadState2) {
127
129
  Log.error("'sap.ushell.renderers.fiori2.RendererExtensions' is deprecated. Please use 'sap.ushell.Container.getRenderer('fiori2')' instead.");
128
130
 
129
- sap.ushell.Container.getRenderer("fiori2").showSubHeader(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
131
+ Container.getRendererInternal("fiori2").showSubHeader(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
130
132
  };
131
133
 
132
134
  this.removeSubHeader = function (oItem, sLaunchpadState1, sLaunchpadState2) {
133
135
  Log.error("'sap.ushell.renderers.fiori2.RendererExtensions' is deprecated. Please use 'sap.ushell.Container.getRenderer('fiori2')' instead.");
134
136
 
135
- sap.ushell.Container.getRenderer("fiori2").hideSubHeader(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
137
+ Container.getRendererInternal("fiori2").hideSubHeader(oItem.getId(), false, [sLaunchpadState1, sLaunchpadState2]);
136
138
  };
137
139
 
138
140
  /**
@@ -297,11 +299,11 @@ sap.ui.define([
297
299
  * @param {object} oConfig - defines the configuration settings for the added entry.
298
300
  * [entryHelpID] : {string} - the ID of the object.
299
301
  * title : {string} - the title of the entry to be presented in the list of User Preferences. We recommend to use the string from the translation bundle.
300
- * value : {string}/{function} - a string to be presented as the value of the entry OR a function to be called which returns a {jQuery.Deferred.promise} object.
301
- * [onSave] : {function} - a function to be called which returns a {jQuery.Deferred.promise} object when clicking Save in the User Preferences dialog box.
302
- * If an error occurs, pass the error message via the {jQuery.Deferred.promise} object. Errors are displayed in the log.
302
+ * value : {string}/{function} - a string to be presented as the value of the entry OR a function to be called which returns a {@link jQuery.Promise} object.
303
+ * [onSave] : {function} - a function to be called which returns a {@link jQuery.Promise} object when clicking Save in the User Preferences dialog box.
304
+ * If an error occurs, pass the error message via the {@link jQuery.Promise} object. Errors are displayed in the log.
303
305
  * [onCancel] : {function} - a function to be called that closes the User Preferences dialog box without saving any changes.
304
- * content : {function} - a function to be called which returns a {jQuery.Deferred.promise} object which consists of a {sap.ui.core.Control} to be displayed in a follow-on dialog box.
306
+ * content : {function} - a function to be called which returns a {@link jQuery.Promise} object which consists of a {sap.ui.core.Control} to be displayed in a follow-on dialog box.
305
307
  *
306
308
  * @since 1.27
307
309
  *
@@ -318,11 +320,11 @@ sap.ui.define([
318
320
  * @param {object} oConfig - defines the configuration settings for the added entry.
319
321
  * [entryHelpID] : {string} - the ID of the object.
320
322
  * title : {string} - the title of the entry to be presented in the list of User Preferences. We recommend to use the string from the translation bundle.
321
- * value : {string}/{function} - a string to be presented as the value of the entry OR a function to be called which returns a {jQuery.Deferred.promise} object.
322
- * [onSave] : {function} - a function to be called which returns a {jQuery.Deferred.promise} object when clicking Save in the User Preferences dialog box.
323
- * If an error occurs, pass the error message via the {jQuery.Deferred.promise} object. Errors are displayed in the log.
323
+ * value : {string}/{function} - a string to be presented as the value of the entry OR a function to be called which returns a {@link jQuery.Promise} object.
324
+ * [onSave] : {function} - a function to be called which returns a {@link jQuery.Promise} object when clicking Save in the User Preferences dialog box.
325
+ * If an error occurs, pass the error message via the {@link jQuery.Promise} object. Errors are displayed in the log.
324
326
  * [onCancel] : {function} - a function to be called that closes the User Preferences dialog box without saving any changes.
325
- * content : {function} - a function to be called which returns a {jQuery.Deferred.promise} object which consists of a {sap.ui.core.Control} to be displayed in a follow-on dialog box.
327
+ * content : {function} - a function to be called which returns a {@link jQuery.Promise} object which consists of a {sap.ui.core.Control} to be displayed in a follow-on dialog box.
326
328
  * groupingId : {string} - The ID of the group this entry should be included in <br>
327
329
  * groupingTabTitle : {string} - The tab title of the entry, when this entry is grouped. <br>
328
330
  * groupingTabHelpId : {string} - The help ID for the grouped tab, when this entry is grouped. <br>
@@ -503,9 +505,15 @@ sap.ui.define([
503
505
  * appClosed - is published when a Fiori app is closed.
504
506
  * All events are published in the following channel: sap.ushell.renderers.fiori2.Renderer
505
507
  * @example to subscribe to an event:
506
- * Core.getEventBus().subscribe("sap.ushell", "rendererLoaded", function() {
507
- * var headItem1 = new sap.ushell.ui.shell.ShellHeadItem({id : "button1", icon : sap.ui.core.IconPool.getIconURI("sys-help"), press: function() {alert("the button was pressed");}});
508
- * sap.ushell.renderers.fiori2.renderer.RendererExtensions.addHeaderItem(headItem1,sap.ushell.renderers.fiori2.renderer.RendererExtensions.LaunchpadState.Home)
508
+ * EventBus.getInstance().subscribe("sap.ushell", "rendererLoaded", function() {
509
+ * const headItem1 = new sap.ushell.ui.shell.ShellHeadItem({
510
+ * id: "button1",
511
+ * icon: sap.ui.core.IconPool.getIconURI("sys-help"),
512
+ * press: function() {
513
+ * alert("the button was pressed");
514
+ * }
515
+ * });
516
+ * sap.ushell.renderers.fiori2.renderer.RendererExtensions.addHeaderItem(headItem1,sap.ushell.renderers.fiori2.renderer.RendererExtensions.LaunchpadState.Home);
509
517
  * });
510
518
  * @since 1.26
511
519
  *
@@ -4,10 +4,10 @@
4
4
  */
5
5
 
6
6
  sap.ui.define([
7
- "sap/ui/core/Configuration",
7
+ "sap/base/i18n/Localization",
8
8
  "sap/ui/model/resource/ResourceModel"
9
9
  ], function (
10
- Configuration,
10
+ Localization,
11
11
  ResourceModel
12
12
  ) {
13
13
  "use strict";
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  return this._oResourceModel;
27
27
  };
28
28
 
29
- oResources.i18nModel = oResources.getTranslationModel(Configuration.getLanguage());
29
+ oResources.i18nModel = oResources.getTranslationModel(Localization.getLanguage());
30
30
  oResources.i18n = oResources.i18nModel.getResourceBundle();
31
31
 
32
32
  return oResources;
@@ -8,12 +8,11 @@ sap.ui.define([
8
8
  /**
9
9
  * @alias sap.ushell.services.AllMyApps
10
10
  * @class
11
- *
12
11
  * @classdesc A UShell service for registering an external provider of content (i.e., data source) to display All My Apps UI in the SAP Fiori launchpad.<br><br>
13
12
  *
14
13
  * <b>Note:</b> To retrieve a valid instance of this service, it is necessary to call
15
14
  * <code>sap.ushell.Container.getServiceAsync("AllMyApps")</code>. For details, see
16
- * {@link sap.ushell.services.Container#getServiceAsync}.
15
+ * {@link sap.ushell.Container#getServiceAsync}.
17
16
  *
18
17
  * All My Apps UI is a Unified Shell module that allows the user to view their available data sources and applications
19
18
  * and to launch/navigate to an application.<br>
@@ -115,7 +114,7 @@ sap.ui.define([
115
114
  * @param {object} oProvider An object that provides the data source title and applications.<br>
116
115
  * The object must implement the following two functions:<br>
117
116
  * - <code>getTitle</code> - A function that returns the data source title that will be presented in the data source list<br>
118
- * - <code>getData</code> - A function that returns a jQuery.deferred.promise() object that when resolved - returns the applications data in a group's/application's hierarchy.<br>
117
+ * - <code>getData</code> - A function that returns {@link jQuery.Promise} that when resolved - returns the applications data in a group's/application's hierarchy.<br>
119
118
  * A group is an object containing a title and an array of application objects in the following format:<br>
120
119
  * <pre>
121
120
  * {
@@ -1,11 +1,11 @@
1
1
  // Copyright (c) 2009-2023 SAP SE, All Rights Reserved
2
2
 
3
3
  sap.ui.define([
4
+ "sap/base/i18n/Localization",
4
5
  "sap/base/i18n/ResourceBundle",
5
6
  "sap/base/Log",
6
7
  "sap/base/util/ObjectPath",
7
8
  "sap/m/library",
8
- "sap/ui/core/Configuration",
9
9
  "sap/ui/core/IconPool",
10
10
  "sap/ui/thirdparty/hasher",
11
11
  "sap/ui/thirdparty/jquery",
@@ -16,11 +16,11 @@ sap.ui.define([
16
16
  "sap/ushell/utils",
17
17
  "sap/ushell/Config"
18
18
  ], function (
19
+ Localization,
19
20
  ResourceBundle,
20
21
  Log,
21
22
  ObjectPath,
22
23
  mobileLibrary,
23
- Configuration,
24
24
  IconPool,
25
25
  hasher,
26
26
  jQuery,
@@ -37,8 +37,11 @@ sap.ui.define([
37
37
  var ButtonType = mobileLibrary.ButtonType;
38
38
 
39
39
  /**
40
- * AppConfiguration service.
40
+ * @alias sap.ushell.services.AppConfiguration
41
+ * @namespace
42
+ * @description The unified shell's AppConfiguration service as a singleton object.
41
43
  *
44
+ * @since 1.15.0
42
45
  * @public
43
46
  */
44
47
  function AppConfiguration () {
@@ -97,8 +100,10 @@ sap.ui.define([
97
100
  * url: "#Action-todefaultapp?param1"
98
101
  * }
99
102
  * </pre>
100
- * @returns {jQuery.Promise} A jQuery Promise that is resolved to the updated list of user recents.
103
+ * @returns {jQuery.Promise} Resolves the updated list of user recents.
104
+ *
101
105
  * @private
106
+ * @alias sap.ushell.services.AppConfiguration#addActivity
102
107
  */
103
108
  this.addActivity = function (oRecentActivity) {
104
109
  var oDeferred = new jQuery.Deferred();
@@ -128,6 +133,7 @@ sap.ui.define([
128
133
  * @returns {object} A copy of the metadata object related to the application, or null if no application is currently opened
129
134
  * (e.g., when home or app finder are opened).
130
135
  * @private
136
+ * @alias sap.ushell.services.AppConfiguration#getCurrentApplication
131
137
  */
132
138
  this.getCurrentApplication = function () {
133
139
  return oCurrentApplication;
@@ -149,6 +155,7 @@ sap.ui.define([
149
155
  *
150
156
  * @private
151
157
  * @ui5-restricted sap.feedback.ui
158
+ * @alias sap.ushell.services.AppConfiguration#getMetadata
152
159
  */
153
160
  this.getMetadata = function (oApplication) {
154
161
  if (!oApplication) {
@@ -167,6 +174,7 @@ sap.ui.define([
167
174
 
168
175
  /**
169
176
  * @private
177
+ * @alias sap.ushell.services.AppConfiguration#_getMemoizationKey
170
178
  */
171
179
  this._getMemoizationKey = function (sCompleteHash) {
172
180
  var aHashParts = sCompleteHash.split("?");
@@ -184,6 +192,13 @@ sap.ui.define([
184
192
  return sIntent;
185
193
  };
186
194
 
195
+ /**
196
+ * @param {string} sParams The params
197
+ * @returns {string} The process params
198
+ *
199
+ * @private
200
+ * @alias sap.ushell.services.AppConfiguration#_getMemoizationKey
201
+ */
187
202
  this._processParams = function (sParams) {
188
203
  if (sParams) {
189
204
  var sPrefix = "";
@@ -209,6 +224,14 @@ sap.ui.define([
209
224
  return "";
210
225
  };
211
226
 
227
+ /**
228
+ * @param {object} oApplication The application
229
+ * @param {string} sKey The key
230
+ * @returns {object} The metadata
231
+ *
232
+ * @private
233
+ * @alias sap.ushell.services.AppConfiguration#_getMetadata
234
+ */
212
235
  this._getMetadata = function (oApplication, sKey) {
213
236
  if (!(oMetadata.hasOwnProperty(sKey)) || !oMetadata[sKey].complete) {
214
237
  this.addMetadata(oApplication, sKey);
@@ -229,7 +252,10 @@ sap.ui.define([
229
252
  };
230
253
 
231
254
  /**
255
+ * @param {object} oApplication The new application
256
+ *
232
257
  * @private
258
+ * @alias sap.ushell.services.AppConfiguration#setCurrentApplication
233
259
  */
234
260
  this.setCurrentApplication = function (oApplication) {
235
261
  oCurrentApplication = oApplication;
@@ -243,6 +269,7 @@ sap.ui.define([
243
269
  * Sets the hiding of the shell header.
244
270
  * @deprecated since 1.56
245
271
  * @private
272
+ * @alias sap.ushell.services.AppConfiguration#setHeaderHiding
246
273
  */
247
274
  this.setHeaderHiding = function () {
248
275
  Log.warning("Application configuration headerHiding property is deprecated and has no effect");
@@ -255,6 +282,7 @@ sap.ui.define([
255
282
  *
256
283
  * @param {sap.m.Button[]} aButtons List of sap.m.Button controls
257
284
  * @private
285
+ * @alias sap.ushell.services.AppConfiguration#addApplicationSettingsButtons
258
286
  */
259
287
  this.addApplicationSettingsButtons = function (aButtons) {
260
288
  // in case current application is not yet open we delay the call till it would be opened.
@@ -284,7 +312,7 @@ sap.ui.define([
284
312
  function addApplicationSettingsButtons (aButtons) {
285
313
  var i,
286
314
  aIds = [],
287
- oRenderer = sap.ushell.Container.getRenderer("fiori2");
315
+ oRenderer = sap.ushell.Container.getRendererInternal("fiori2");
288
316
 
289
317
  for (i = 0; i < aButtons.length; i++) {
290
318
  var oCurrentButton = aButtons[i];
@@ -310,7 +338,9 @@ sap.ui.define([
310
338
  * Sets the title of the browser tabSets the title of the browser tab.
311
339
  *
312
340
  * @param {string} sTitle title
341
+ *
313
342
  * @private
343
+ * @alias sap.ushell.services.AppConfiguration#setWindowTitle
314
344
  */
315
345
  this.setWindowTitle = function (sTitle) {
316
346
  window.document.title = sTitle;
@@ -320,7 +350,9 @@ sap.ui.define([
320
350
  * Sets the icons of the browser.
321
351
  *
322
352
  * @param {object} oIconsProperties Icon properties, an object holding icon URLs
353
+ *
323
354
  * @private
355
+ * @alias sap.ushell.services.AppConfiguration#setIcons
324
356
  */
325
357
  this.setIcons = function (oIconsProperties) {
326
358
  Mobile.setIcons(oIconsProperties);
@@ -330,9 +362,10 @@ sap.ui.define([
330
362
  * Sets the application screen size to full width
331
363
  *
332
364
  * @param {boolean} bValue A Boolean value indicating if the application fills the full width of the screen
365
+ *
333
366
  * @public
334
- * @alias sap.ushell.services.AppConfiguration#setApplicationFullWidth
335
367
  * @deprecated since 1.120.0. Use the "sap.ui/fullWidth" property in the application's manifest.json instead.
368
+ * @alias sap.ushell.services.AppConfiguration#setApplicationFullWidth
336
369
  */
337
370
  this.setApplicationFullWidth = function (bValue) {
338
371
  this.setApplicationFullWidthInternal(bValue);
@@ -342,6 +375,7 @@ sap.ui.define([
342
375
  * Sets the application screen size to full width
343
376
  *
344
377
  * @param {boolean} bValue A Boolean value indicating if the application fills the full width of the screen
378
+ *
345
379
  * @private
346
380
  * @alias sap.ushell.services.AppConfiguration#setApplicationFullWidthInternal
347
381
  */
@@ -353,7 +387,11 @@ sap.ui.define([
353
387
  };
354
388
 
355
389
  /**
390
+ * @param {object} oApplication The application
391
+ * @returns {string} the application name
392
+ *
356
393
  * @private
394
+ * @alias sap.ushell.services.AppConfiguration#getApplicationName
357
395
  */
358
396
  this.getApplicationName = function (oApplication) {
359
397
  var aMatches,
@@ -371,7 +409,11 @@ sap.ui.define([
371
409
  };
372
410
 
373
411
  /**
412
+ * @param {object} oApplication The application
413
+ * @returns {string} the application url
414
+ *
374
415
  * @private
416
+ * @alias sap.ushell.services.AppConfiguration#getApplicationUrl
375
417
  */
376
418
  this.getApplicationUrl = function (oApplication) {
377
419
  var sUrl = (oApplication && oApplication.url) || null,
@@ -405,6 +447,7 @@ sap.ui.define([
405
447
  * The value (e.g. "TITLE_KEY") is the translation key in the resource bundle
406
448
  *
407
449
  * @private
450
+ * @alias sap.ushell.services.AppConfiguration#getPropertyValueFromConfig
408
451
  */
409
452
  this.getPropertyValueFromConfig = function (oConfig, sPropertyKey, oResourceBundle) {
410
453
  var oValue;
@@ -422,6 +465,7 @@ sap.ui.define([
422
465
  * Reads a property value from the manifest
423
466
  *
424
467
  * @private
468
+ * @alias sap.ushell.services.AppConfiguration#getPropertyValueFromManifest
425
469
  */
426
470
  this.getPropertyValueFromManifest = function (oLocalMetadataComponent, oProperties, sPropertyKey) {
427
471
  var sManifestEntryKey = oProperties[sPropertyKey].manifestEntryKey,
@@ -439,7 +483,9 @@ sap.ui.define([
439
483
  * @param {object} oApplication Includes data for launching the application, such as applicationType, url, etc..
440
484
  * @param {string} sKey - the complete url hash of the application which consists of the app Intent
441
485
  * and the parameters in lexicographically sorted order.
486
+ *
442
487
  * @private
488
+ * @alias sap.ushell.services.AppConfiguration#addMetadata
443
489
  */
444
490
  this.addMetadata = function (oApplication, sKey) {
445
491
  try {
@@ -524,7 +570,7 @@ sap.ui.define([
524
570
  }
525
571
  oResourceBundle = ResourceBundle.create({
526
572
  url: sConfigResourceBundleUrl,
527
- locale: Configuration.getLanguage()
573
+ locale: Localization.getLanguage()
528
574
  });
529
575
  }
530
576
  }
@@ -642,6 +688,9 @@ sap.ui.define([
642
688
  * @param {object} oMetadataEntry - the metadata for a specific app
643
689
  * @param {object} oApplication - the application data retrieved from the
644
690
  * navigation target resolution
691
+ *
692
+ * @private
693
+ * @alias sap.ushell.services.AppConfiguration#_setTitleFromNavResult
645
694
  */
646
695
  this._setTitleFromNavResult = function (oMetadataEntry, oApplication) {
647
696
  var sNavTargetResolutionTitle = oApplication && oApplication.text;
@@ -653,13 +702,5 @@ sap.ui.define([
653
702
  };
654
703
  } // Metadata
655
704
 
656
- /**
657
- * The Unified Shell App configuration service as a singleton object.
658
- *
659
- * @class The unified shell's AppConfiguration service.
660
- * @name sap.ushell.services.AppConfiguration
661
- * @since 1.15.0
662
- * @public
663
- */
664
705
  return new AppConfiguration();
665
706
  }, true /* bExport */);
@@ -4,12 +4,12 @@
4
4
  * @fileOverview The Unified Shell's AppLifeCycle service enables plug-ins to enquire the which
5
5
  * application is currently displayed and listen to life cycle events.
6
6
  *
7
- * @version 1.120.8
7
+ * @version 1.121.0
8
8
  */
9
9
  sap.ui.define([
10
10
  "sap/base/Log",
11
11
  "sap/ui/base/EventProvider",
12
- "sap/ui/core/Core",
12
+ "sap/ui/core/Element",
13
13
  "sap/ui/thirdparty/hasher",
14
14
  "sap/ushell/AppInfoParameters",
15
15
  "sap/ushell/EventHub",
@@ -22,7 +22,7 @@ sap.ui.define([
22
22
  ], function (
23
23
  Log,
24
24
  EventProvider,
25
- Core,
25
+ Element,
26
26
  hasher,
27
27
  AppInfoParameters,
28
28
  EventHub,
@@ -44,15 +44,16 @@ sap.ui.define([
44
44
  *
45
45
  * <b>Note:</b> To retrieve a valid instance of this service, it is necessary to call
46
46
  * <code>sap.ushell.Container.getServiceAsync("AppLifeCycle")</code>. For details, see
47
- * {@link sap.ushell.services.Container#getServiceAsync}.
48
- *
49
- * @hideconstructor
47
+ * {@link sap.ushell.Container#getServiceAsync}.
50
48
  *
51
49
  * @param {object} oAdapter not used
52
50
  * @param {object} oContainerInterface not used
53
51
  * @param {string} sParameters not used
54
52
  * @param {object} oServiceConfiguration not used
55
53
  *
54
+ * @augments sap.ushell.services.Service
55
+ * @hideconstructor
56
+ *
56
57
  * @since 1.38
57
58
  * @public
58
59
  */
@@ -67,9 +68,6 @@ sap.ui.define([
67
68
  * The function returns an object with following parameters:
68
69
  * <ul>
69
70
  * <li> applicationType: “UI5|WDA|NWBC|URL|TR” </li>
70
- * <li> applicationFramework: when applicationType is "URL", this parameter indicates which application framework
71
- * is running inside the iframe - “UI5|WDA|GUI|CRM”.
72
- * This attribute is for SAP internal usage only. </li>
73
71
  * <li> componentInstance: reference to component (only for applicationType "UI5"). </li>
74
72
  * <li> homePage: <code>true</code> when root intent (normally #Shell-home) or Appfinder (#Shell-appfinder) is currently displayed. </li>
75
73
  * <li> getTechnicalParameter: <code>function</code> that returns the value of a technical parameter for the given application.
@@ -107,7 +105,6 @@ sap.ui.define([
107
105
  *
108
106
  * @since 1.38
109
107
  * @public
110
- * @alias sap.ushell.services.AppLifeCycle#getCurrentApplication
111
108
  */
112
109
  this.getCurrentApplication = function () {
113
110
  return oCurrentApplication;
@@ -127,7 +124,6 @@ sap.ui.define([
127
124
  * handler function).
128
125
  * @since 1.38
129
126
  * @public
130
- * @alias sap.ushell.services.AppLifeCycle#attachAppLoaded
131
127
  */
132
128
  this.attachAppLoaded = function (oData, fnFunction, oListener) {
133
129
  oEventProvider.attachEvent(S_APP_LOADED_EVENT, oData, fnFunction, oListener);
@@ -142,7 +138,6 @@ sap.ui.define([
142
138
  * The object that wanted to be notified when the event occurred
143
139
  * @since 1.38
144
140
  * @public
145
- * @alias sap.ushell.services.AppLifeCycle#detachAppLoaded
146
141
  */
147
142
  this.detachAppLoaded = function (fnFunction, oListener) {
148
143
  oEventProvider.detachEvent(S_APP_LOADED_EVENT, fnFunction, oListener);
@@ -216,21 +211,19 @@ sap.ui.define([
216
211
  }
217
212
  oEventProvider = new EventProvider();
218
213
  if (sap.ushell.Container && sap.ushell.Container.inAppRuntime() === false) {
219
- if (sap.ushell.Container.getRenderer()) {
214
+ if (sap.ushell.Container.getRendererInternal()) {
220
215
  registerToNavigationEvent();
221
216
  } else {
222
217
  // Renderer not created yet. This can happen if the AppLifeCycle service is preloaded.
223
- var fnOnRendererCreated = function () {
218
+ EventHub.once("RendererLoaded").do(function () {
224
219
  registerToNavigationEvent();
225
- sap.ushell.Container.detachRendererCreatedEvent(fnOnRendererCreated);
226
- };
227
- sap.ushell.Container.attachRendererCreatedEvent(fnOnRendererCreated);
220
+ });
228
221
  }
229
222
  }
230
223
 
231
224
  function registerToNavigationEvent () {
232
225
  // only continue executing the constructor if the view port container exists in expected format
233
- var oViewPortContainer = Core.byId("viewPortContainer");
226
+ var oViewPortContainer = Element.getElementById("viewPortContainer");
234
227
  if (!oViewPortContainer || typeof oViewPortContainer.attachAfterNavigate !== "function") {
235
228
  Log.error(
236
229
  "Error during instantiation of AppLifeCycle service",
@@ -266,7 +259,7 @@ sap.ui.define([
266
259
  oComponentInstance = oComponentContainer.getComponentInstance();
267
260
  }
268
261
  } else {
269
- oComponentInstance = Component.get(oEvent.mParameters.to.getComponent());
262
+ oComponentInstance = Component.getComponentById(oEvent.mParameters.to.getComponent());
270
263
  }
271
264
 
272
265
  // determine if we're dealing with home page by checking the component instance id
@@ -328,17 +321,10 @@ sap.ui.define([
328
321
  }
329
322
 
330
323
  function setCurrentApplicationObject (sApplicationType, oComponentInstance, bHomePage, oApplicationContainer, sFramework) {
331
- if (!sFramework) {
332
- sFramework = oApplicationContainer &&
333
- typeof oApplicationContainer.getFrameworkId === "function" &&
334
- oApplicationContainer.getFrameworkId() || "";
335
- }
336
-
337
324
  cleanAppInfo();
338
325
  oCurrentApplicationContainer = oApplicationContainer;
339
326
  oCurrentApplication = {
340
327
  applicationType: sApplicationType,
341
- applicationFramework: sFramework,
342
328
  componentInstance: oComponentInstance,
343
329
  homePage: bHomePage,
344
330
  getTechnicalParameter: function (sParameterName) {
@@ -357,10 +343,10 @@ sap.ui.define([
357
343
  * keeping the application info parameters with values
358
344
  */
359
345
  getInfo: function (aParameters) {
360
- return AppInfoParameters.getInfo(aParameters, oCurrentApplication);
346
+ return AppInfoParameters.getInfo(aParameters, oCurrentApplication, oApplicationContainer);
361
347
  },
362
348
  getAllAppInfo: function (bValues) {
363
- return AppInfoParameters.getAllAppInfo(bValues, oCurrentApplication, oComponentInstance, oApplicationContainer, sApplicationType)
349
+ return AppInfoParameters.getAllAppInfo(bValues, oCurrentApplication, oComponentInstance, oApplicationContainer)
364
350
  .then(function (oData) {
365
351
  if (bValues === true) {
366
352
  oData.applicationType = oCurrentApplication.applicationType;
@@ -390,7 +376,6 @@ sap.ui.define([
390
376
  * when a keep-alive application is restored
391
377
  * @since 1.98
392
378
  * @private
393
- * @alias sap.ushell.services.AppLifeCycle#disableKeepAliveAppRouterRetrigger
394
379
  */
395
380
  disableKeepAliveAppRouterRetrigger: function (bDisableRouterRetrigger) {
396
381
  getAppIntent().then(function (oIntent) {