@sapui5/sap.ushell 1.114.0 → 1.115.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (534) hide show
  1. package/package.json +1 -1
  2. package/src/main/js/sap/ushell/.library +1 -1
  3. package/src/main/js/sap/ushell/ApplicationType.js +33 -48
  4. package/src/main/js/sap/ushell/CanvasShapesManager.js +2 -2
  5. package/src/main/js/sap/ushell/Config.js +5 -0
  6. package/src/main/js/sap/ushell/Container.js +20 -5
  7. package/src/main/js/sap/ushell/Fiori20Adapter.js +1 -1
  8. package/src/main/js/sap/ushell/Fiori20AdapterTest.js +1 -1
  9. package/src/main/js/sap/ushell/Layout.js +7 -10
  10. package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
  11. package/src/main/js/sap/ushell/SessionHandler.js +2 -4
  12. package/src/main/js/sap/ushell/TechnicalParameters.js +1 -1
  13. package/src/main/js/sap/ushell/URLTemplateProcessor.js +1 -1
  14. package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +1 -1
  15. package/src/main/js/sap/ushell/Ui5ServiceFactory.js +1 -1
  16. package/src/main/js/sap/ushell/_ApplicationType/guiResolution.js +120 -128
  17. package/src/main/js/sap/ushell/_ApplicationType/systemAlias.js +297 -304
  18. package/src/main/js/sap/ushell/_ApplicationType/utils.js +8 -4
  19. package/src/main/js/sap/ushell/_ApplicationType/wdaResolution.js +50 -64
  20. package/src/main/js/sap/ushell/_URLTemplateProcessor/DefinitionParameterSetBuilder.js +1 -1
  21. package/src/main/js/sap/ushell/_URLTemplateProcessor/DependencyGraph.js +1 -1
  22. package/src/main/js/sap/ushell/_URLTemplateProcessor/Functions.js +1 -1
  23. package/src/main/js/sap/ushell/_URLTemplateProcessor/Resolvers.js +1 -1
  24. package/src/main/js/sap/ushell/_URLTemplateProcessor/TemplateParameterParser.js +1 -1
  25. package/src/main/js/sap/ushell/_URLTemplateProcessor/utils.js +1 -1
  26. package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +1 -1
  27. package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +1 -1
  28. package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
  29. package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +1 -1
  30. package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +1 -1
  31. package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +1 -1
  32. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
  33. package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
  34. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +1 -1
  35. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
  36. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
  37. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
  38. package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +1 -1
  39. package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +1 -1
  40. package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +39 -38
  41. package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +8 -8
  42. package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +3 -4
  43. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +13 -1
  44. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
  45. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +1 -1
  46. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
  47. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +1 -1
  48. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
  49. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +1 -1
  50. package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +2 -2
  51. package/src/main/js/sap/ushell/adapters/cep/SearchCEPApplicationAdapter.js +264 -0
  52. package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +1 -1
  53. package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +1 -1
  54. package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +1 -1
  55. package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +1 -1
  56. package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +1 -1
  57. package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +1 -1
  58. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +1 -1
  59. package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
  60. package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +1 -1
  61. package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +1 -1
  62. package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +3 -5
  63. package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +1 -1
  64. package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +4 -7
  65. package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
  66. package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +1 -1
  67. package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +1 -1
  68. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +40 -23
  69. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Trigger.js +1 -1
  70. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycleAgent.js +80 -23
  71. package/src/main/js/sap/ushell/appRuntime/ui5/services/CrossApplicationNavigation.js +14 -7
  72. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellUIService.js +66 -8
  73. package/src/main/js/sap/ushell/appRuntime/ui5/services/UserInfo.js +5 -0
  74. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
  75. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/logger.js +1 -1
  76. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/state.js +1 -1
  77. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +1 -1
  78. package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +4 -1
  79. package/src/main/js/sap/ushell/bootstrap/common/common.read.ushell.config.from.url.js +35 -40
  80. package/src/main/js/sap/ushell/components/CatalogsManager.js +47 -21
  81. package/src/main/js/sap/ushell/components/ComponentKeysHandler.js +22 -0
  82. package/src/main/js/sap/ushell/components/HomepageManager.js +23 -1
  83. package/src/main/js/sap/ushell/components/SharedComponentUtils.js +9 -15
  84. package/src/main/js/sap/ushell/components/appfinder/AppFinder.controller.js +15 -17
  85. package/src/main/js/sap/ushell/components/appfinder/Catalog.controller.js +53 -12
  86. package/src/main/js/sap/ushell/components/appfinder/Component.js +5 -3
  87. package/src/main/js/sap/ushell/components/appfinder/EasyAccess.controller.js +21 -16
  88. package/src/main/js/sap/ushell/components/appfinder/EasyAccessView.js +2 -1
  89. package/src/main/js/sap/ushell/components/appfinder/HierarchyApps.controller.js +39 -8
  90. package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
  91. package/src/main/js/sap/ushell/components/applicationIntegration/AppLifeCycle.js +30 -11
  92. package/src/main/js/sap/ushell/components/applicationIntegration/Storage.js +1 -1
  93. package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +1 -1
  94. package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +3 -3
  95. package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +11 -2
  96. package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +1 -1
  97. package/src/main/js/sap/ushell/components/applicationIntegration/elements/model.js +1 -1
  98. package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +1 -1
  99. package/src/main/js/sap/ushell/components/applicationIntegration/relatedShellElements/RelatedShellElements.js +1 -1
  100. package/src/main/js/sap/ushell/components/cepsearchresult/app/Main.controller.js +16 -20
  101. package/src/main/js/sap/ushell/components/cepsearchresult/app/Main.view.xml +0 -2
  102. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/Component.js +74 -42
  103. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/Config.js +237 -0
  104. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/Extension.js +40 -0
  105. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n.properties +58 -1
  106. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ar.properties +37 -88
  107. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_bg.properties +34 -0
  108. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ca.properties +34 -0
  109. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_cs.properties +34 -0
  110. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_cy.properties +34 -0
  111. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_da.properties +34 -0
  112. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_de.properties +34 -0
  113. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_el.properties +34 -0
  114. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en.properties +34 -0
  115. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en_GB.properties +34 -0
  116. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en_US_sappsd.properties +34 -0
  117. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en_US_saprigi.properties +30 -0
  118. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en_US_saptrc.properties +34 -0
  119. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_es.properties +34 -0
  120. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_es_MX.properties +34 -0
  121. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_et.properties +34 -0
  122. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_fi.properties +34 -0
  123. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_fr.properties +34 -0
  124. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_fr_CA.properties +34 -0
  125. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_hi.properties +34 -0
  126. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_hr.properties +34 -0
  127. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_hu.properties +34 -0
  128. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_id.properties +34 -0
  129. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_it.properties +34 -0
  130. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_iw.properties +34 -0
  131. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ja.properties +34 -0
  132. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_kk.properties +34 -0
  133. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ko.properties +34 -0
  134. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_lt.properties +34 -0
  135. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_lv.properties +34 -0
  136. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ms.properties +34 -0
  137. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_nl.properties +34 -0
  138. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_no.properties +34 -0
  139. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_pl.properties +34 -0
  140. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_pt.properties +34 -0
  141. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_pt_PT.properties +34 -0
  142. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ro.properties +34 -0
  143. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ru.properties +34 -0
  144. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sh.properties +34 -0
  145. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sk.properties +34 -0
  146. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sl.properties +34 -0
  147. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sv.properties +34 -0
  148. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_th.properties +34 -0
  149. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_tr.properties +34 -0
  150. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_uk.properties +34 -0
  151. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_vi.properties +34 -0
  152. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_zh_CN.properties +34 -0
  153. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_zh_TW.properties +34 -0
  154. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/manifest.json +49 -25
  155. package/src/main/js/sap/ushell/components/cepsearchresult/app/css/style.css +4 -0
  156. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/Edition.js +45 -0
  157. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Category.css +103 -3
  158. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Category.js +248 -168
  159. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Paginator.js +1 -1
  160. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Application.js +43 -24
  161. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Event.js +10 -9
  162. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/People.js +20 -5
  163. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Workpage.js +1 -7
  164. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n.properties +30 -1
  165. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ar.properties +23 -0
  166. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_bg.properties +23 -0
  167. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ca.properties +23 -0
  168. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_cs.properties +23 -0
  169. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_cy.properties +23 -0
  170. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_da.properties +23 -0
  171. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_de.properties +23 -0
  172. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_el.properties +23 -0
  173. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en.properties +23 -0
  174. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en_GB.properties +23 -0
  175. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en_US_sappsd.properties +23 -0
  176. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en_US_saprigi.properties +23 -0
  177. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en_US_saptrc.properties +23 -0
  178. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_es.properties +23 -0
  179. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_es_MX.properties +23 -0
  180. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_et.properties +23 -0
  181. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fi.properties +23 -0
  182. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fr.properties +23 -0
  183. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fr_CA.properties +23 -0
  184. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hi.properties +23 -0
  185. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hr.properties +23 -0
  186. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hu.properties +23 -0
  187. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_id.properties +23 -0
  188. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_it.properties +23 -0
  189. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_iw.properties +23 -0
  190. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ja.properties +23 -0
  191. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_kk.properties +23 -0
  192. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ko.properties +23 -0
  193. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_lt.properties +23 -0
  194. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_lv.properties +23 -0
  195. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ms.properties +23 -0
  196. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_nl.properties +23 -0
  197. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_no.properties +23 -0
  198. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pl.properties +23 -0
  199. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pt.properties +23 -0
  200. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pt_PT.properties +23 -0
  201. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ro.properties +23 -0
  202. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ru.properties +23 -0
  203. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sh.properties +23 -0
  204. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sk.properties +23 -0
  205. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sl.properties +23 -0
  206. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sv.properties +23 -0
  207. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_th.properties +23 -0
  208. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_tr.properties +23 -0
  209. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_uk.properties +23 -0
  210. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_vi.properties +23 -0
  211. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_zh_CN.properties +23 -0
  212. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_zh_TW.properties +23 -0
  213. package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +1 -1
  214. package/src/main/js/sap/ushell/components/contentFinder/Component.js +172 -42
  215. package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +59 -96
  216. package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +1 -1
  217. package/src/main/js/sap/ushell/components/contentFinder/controller/WidgetGallery.controller.js +1 -1
  218. package/src/main/js/sap/ushell/components/contentFinder/manifest.json +1 -1
  219. package/src/main/js/sap/ushell/components/contentFinder/model/GraphQLListBinding.js +37 -0
  220. package/src/main/js/sap/ushell/components/contentFinder/model/GraphQLModel.js +35 -0
  221. package/src/main/js/sap/ushell/components/contentFinder/model/formatter.js +5 -8
  222. package/src/main/js/sap/ushell/components/contentFinder/resources/resources.properties +14 -0
  223. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ar.properties +9 -0
  224. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_bg.properties +9 -0
  225. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ca.properties +9 -0
  226. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cs.properties +9 -0
  227. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cy.properties +9 -0
  228. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_da.properties +9 -0
  229. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_de.properties +9 -0
  230. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_el.properties +9 -0
  231. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en.properties +9 -0
  232. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_GB.properties +9 -0
  233. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_US_sappsd.properties +9 -0
  234. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_US_saprigi.properties +9 -0
  235. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_US_saptrc.properties +9 -0
  236. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_es.properties +9 -0
  237. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_es_MX.properties +9 -0
  238. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_et.properties +9 -0
  239. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fi.properties +9 -0
  240. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fr.properties +9 -0
  241. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fr_CA.properties +9 -0
  242. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hi.properties +9 -0
  243. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hr.properties +9 -0
  244. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hu.properties +9 -0
  245. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_id.properties +9 -0
  246. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_it.properties +9 -0
  247. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_iw.properties +9 -0
  248. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ja.properties +9 -0
  249. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_kk.properties +9 -0
  250. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ko.properties +9 -0
  251. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_lt.properties +9 -0
  252. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_lv.properties +9 -0
  253. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ms.properties +9 -0
  254. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_nl.properties +9 -0
  255. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_no.properties +9 -0
  256. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pl.properties +9 -0
  257. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pt.properties +9 -0
  258. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pt_PT.properties +9 -0
  259. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ro.properties +9 -0
  260. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ru.properties +9 -0
  261. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sh.properties +9 -0
  262. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sk.properties +9 -0
  263. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sl.properties +9 -0
  264. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sv.properties +9 -0
  265. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_th.properties +9 -0
  266. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_tr.properties +9 -0
  267. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_uk.properties +9 -0
  268. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_vi.properties +9 -0
  269. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_zh_CN.properties +9 -0
  270. package/src/main/js/sap/ushell/components/contentFinder/resources/resources_zh_TW.properties +9 -0
  271. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearch.view.xml +45 -32
  272. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearchBox.fragment.xml +65 -0
  273. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearchPaginated.view.xml +119 -0
  274. package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
  275. package/src/main/js/sap/ushell/components/homepage/ActionMode.js +5 -1
  276. package/src/main/js/sap/ushell/components/homepage/Component.js +5 -0
  277. package/src/main/js/sap/ushell/components/homepage/DashboardContent.controller.js +6 -1
  278. package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +3 -1
  279. package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +5 -2
  280. package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +5 -2
  281. package/src/main/js/sap/ushell/components/homepage/FLPAnalytics.js +5 -0
  282. package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
  283. package/src/main/js/sap/ushell/components/pages/ActionMode.js +1 -1
  284. package/src/main/js/sap/ushell/components/pages/Component.js +5 -1
  285. package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +1 -1
  286. package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +1 -1
  287. package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
  288. package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +1 -1
  289. package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
  290. package/src/main/js/sap/ushell/components/shell/MenuBar/controller/MenuBar.controller.js +2 -2
  291. package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
  292. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +10 -13
  293. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
  294. package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +1 -1
  295. package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +1 -1
  296. package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
  297. package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +1 -1
  298. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +1 -1
  299. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/NavigationSvcSearchProvider.js +1 -1
  300. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +1 -1
  301. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +1 -1
  302. package/src/main/js/sap/ushell/components/shell/Settings/Component.js +1 -1
  303. package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +65 -28
  304. package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.view.xml +23 -3
  305. package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +1 -1
  306. package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +1 -14
  307. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.controller.js +29 -16
  308. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.view.xml +1 -1
  309. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.controller.js +30 -16
  310. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.view.xml +1 -1
  311. package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +1 -1
  312. package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +27 -3
  313. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +161 -57
  314. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +215 -150
  315. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageHost.js +177 -0
  316. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +1 -1
  317. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +1 -1
  318. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +171 -154
  319. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +114 -102
  320. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnRenderer.js +1 -0
  321. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +1 -1
  322. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +16 -8
  323. package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
  324. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources.properties +67 -0
  325. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ar.properties +36 -4
  326. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_bg.properties +36 -4
  327. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ca.properties +36 -4
  328. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cs.properties +36 -4
  329. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cy.properties +36 -4
  330. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_da.properties +36 -4
  331. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_de.properties +36 -4
  332. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_el.properties +36 -4
  333. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en.properties +32 -0
  334. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_GB.properties +32 -0
  335. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_sappsd.properties +7 -0
  336. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_saprigi.properties +32 -0
  337. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_saptrc.properties +7 -0
  338. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_es.properties +36 -4
  339. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_es_MX.properties +36 -4
  340. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_et.properties +36 -4
  341. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fi.properties +36 -4
  342. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fr.properties +36 -4
  343. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fr_CA.properties +36 -4
  344. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hi.properties +36 -4
  345. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hr.properties +36 -4
  346. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hu.properties +36 -4
  347. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_id.properties +36 -4
  348. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_it.properties +36 -4
  349. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_iw.properties +36 -4
  350. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ja.properties +36 -4
  351. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_kk.properties +36 -4
  352. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ko.properties +36 -4
  353. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_lt.properties +36 -4
  354. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_lv.properties +36 -4
  355. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ms.properties +36 -4
  356. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_nl.properties +36 -4
  357. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_no.properties +36 -4
  358. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pl.properties +36 -4
  359. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pt.properties +36 -4
  360. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pt_PT.properties +36 -4
  361. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ro.properties +36 -4
  362. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ru.properties +36 -4
  363. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sh.properties +36 -4
  364. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sk.properties +36 -4
  365. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sl.properties +36 -4
  366. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sv.properties +36 -4
  367. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_th.properties +36 -4
  368. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_tr.properties +36 -4
  369. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_uk.properties +36 -4
  370. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_vi.properties +36 -4
  371. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_zh_CN.properties +36 -4
  372. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_zh_TW.properties +36 -4
  373. package/src/main/js/sap/ushell/components/workPageBuilder/view/WorkPageBuilder.view.xml +39 -14
  374. package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +1 -1
  375. package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +1 -1
  376. package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
  377. package/src/main/js/sap/ushell/components/workPageRuntime/services/NavigationResolver.js +1 -1
  378. package/src/main/js/sap/ushell/components/workPageRuntime/services/WorkPage.js +1 -1
  379. package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
  380. package/src/main/js/sap/ushell/library.js +1 -26
  381. package/src/main/js/sap/ushell/navigationMode.js +1 -1
  382. package/src/main/js/sap/ushell/performance/ShellAnalytics.js +1 -1
  383. package/src/main/js/sap/ushell/performance/StatisticalRecord.js +1 -1
  384. package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
  385. package/src/main/js/sap/ushell/renderers/fiori2/AccessKeysHandler.js +4 -3
  386. package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +71 -98
  387. package/src/main/js/sap/ushell/renderers/fiori2/Shell.controller.js +111 -39
  388. package/src/main/js/sap/ushell/renderers/fiori2/Shell.view.js +142 -204
  389. package/src/main/js/sap/ushell/renderers/fiori2/ShellAsync.view.js +165 -220
  390. package/src/main/js/sap/ushell/renderers/fiori2/ShellLayout.js +20 -26
  391. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources.properties +7 -35
  392. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ar.properties +17 -21
  393. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_bg.properties +17 -21
  394. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ca.properties +17 -21
  395. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_cs.properties +17 -21
  396. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_cy.properties +17 -21
  397. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_da.properties +17 -21
  398. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_de.properties +17 -21
  399. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_el.properties +17 -21
  400. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en.properties +15 -19
  401. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_GB.properties +15 -19
  402. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_sappsd.properties +15 -26
  403. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_saprigi.properties +15 -26
  404. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_saptrc.properties +15 -19
  405. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_es.properties +17 -21
  406. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_es_MX.properties +17 -21
  407. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_et.properties +17 -21
  408. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fi.properties +17 -21
  409. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fr.properties +17 -21
  410. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fr_CA.properties +17 -21
  411. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hi.properties +17 -21
  412. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hr.properties +17 -21
  413. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hu.properties +17 -21
  414. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_id.properties +17 -21
  415. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_it.properties +17 -21
  416. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_iw.properties +17 -21
  417. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ja.properties +17 -21
  418. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_kk.properties +17 -21
  419. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ko.properties +17 -21
  420. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_lt.properties +17 -21
  421. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_lv.properties +17 -21
  422. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ms.properties +17 -21
  423. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_nl.properties +17 -21
  424. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_no.properties +17 -21
  425. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pl.properties +17 -21
  426. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pt.properties +17 -21
  427. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pt_PT.properties +17 -21
  428. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ro.properties +18 -22
  429. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ru.properties +17 -21
  430. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sh.properties +17 -21
  431. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sk.properties +17 -21
  432. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sl.properties +17 -21
  433. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sv.properties +17 -21
  434. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_th.properties +17 -21
  435. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_tr.properties +17 -21
  436. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_uk.properties +17 -21
  437. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_vi.properties +17 -21
  438. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_zh_CN.properties +17 -21
  439. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_zh_TW.properties +17 -21
  440. package/src/main/js/sap/ushell/renderers/fiori2/search/searchComponent/manifest.json +1 -1
  441. package/src/main/js/sap/ushell/services/AppConfiguration.js +2 -0
  442. package/src/main/js/sap/ushell/services/AppLifeCycle.js +13 -17
  443. package/src/main/js/sap/ushell/services/AppState.js +1 -1
  444. package/src/main/js/sap/ushell/services/Bookmark.js +45 -12
  445. package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +1 -1
  446. package/src/main/js/sap/ushell/services/CommonDataModel.js +1 -1
  447. package/src/main/js/sap/ushell/services/Configuration.js +1 -1
  448. package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +1 -1
  449. package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +4 -6
  450. package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +22 -16
  451. package/src/main/js/sap/ushell/services/DarkModeSupport.js +1 -1
  452. package/src/main/js/sap/ushell/services/LaunchPage.js +1 -1
  453. package/src/main/js/sap/ushell/services/Menu.js +1 -1
  454. package/src/main/js/sap/ushell/services/Message.js +1 -1
  455. package/src/main/js/sap/ushell/services/MessageBroker.js +1 -1
  456. package/src/main/js/sap/ushell/services/NavTargetResolution.js +12 -7
  457. package/src/main/js/sap/ushell/services/NavigationDataProvider.js +1 -1
  458. package/src/main/js/sap/ushell/services/PageBuilding.js +1 -1
  459. package/src/main/js/sap/ushell/services/PagePersistence.js +1 -1
  460. package/src/main/js/sap/ushell/services/PageReferencing.js +1 -1
  461. package/src/main/js/sap/ushell/services/Pages.js +1 -1
  462. package/src/main/js/sap/ushell/services/Personalization.js +1 -1
  463. package/src/main/js/sap/ushell/services/PluginManager.js +1 -1
  464. package/src/main/js/sap/ushell/services/ReferenceResolver.js +1 -1
  465. package/src/main/js/sap/ushell/services/Search.js +1 -1
  466. package/src/main/js/sap/ushell/services/SearchCEP.js +54 -6
  467. package/src/main/js/sap/ushell/services/SearchableContent.js +6 -3
  468. package/src/main/js/sap/ushell/services/SmartNavigation.js +1 -1
  469. package/src/main/js/sap/ushell/services/SpaceContent.js +1 -1
  470. package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
  471. package/src/main/js/sap/ushell/services/URLTemplate.js +1 -1
  472. package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +1 -1
  473. package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +1 -1
  474. package/src/main/js/sap/ushell/services/UserDefaultParameters.js +1 -1
  475. package/src/main/js/sap/ushell/services/UserInfo.js +20 -1
  476. package/src/main/js/sap/ushell/services/UserRecents.js +1 -1
  477. package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +1 -1
  478. package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +1 -1
  479. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Formatter.js +1 -1
  480. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundIndex.js +1 -1
  481. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundProvider.js +1 -1
  482. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/PrelaunchOperations.js +1 -1
  483. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Search.js +1 -1
  484. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/StagedLogger.js +1 -1
  485. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/SystemContext.js +1 -1
  486. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Utils.js +1 -1
  487. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/VirtualInbounds.js +1 -1
  488. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/XAppStateProcessing.js +1 -1
  489. package/src/main/js/sap/ushell/services/_CommonDataModel/SiteConverter.js +1 -1
  490. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
  491. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +1 -1
  492. package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +1 -1
  493. package/src/main/js/sap/ushell/services/_MessageBroker/MessageBrokerEngine.js +1 -1
  494. package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +1 -1
  495. package/src/main/js/sap/ushell/services/_PluginManager/Extensions.js +1 -1
  496. package/src/main/js/sap/ushell/services/_PluginManager/HeaderExtensions.js +1 -1
  497. package/src/main/js/sap/ushell/services/_PluginManager/MenuExtensions.js +1 -1
  498. package/src/main/js/sap/ushell/services/_Ui5ComponentLoader/utils.js +1 -1
  499. package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstanceLink.js +1 -1
  500. package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +1 -1
  501. package/src/main/js/sap/ushell/themes/base/ContentFinder.less +21 -0
  502. package/src/main/js/sap/ushell/themes/base/ShellAppTitle.less +4 -1
  503. package/src/main/js/sap/ushell/themes/base/ShellHeader.less +1 -6
  504. package/src/main/js/sap/ushell/themes/base/WorkPageCell.less +44 -10
  505. package/src/main/js/sap/ushell/themes/base/WorkPageColumnResizer.less +1 -0
  506. package/src/main/js/sap/ushell/themes/base/WorkPageRow.less +1 -1
  507. package/src/main/js/sap/ushell/themes/base/library.source.less +0 -1
  508. package/src/main/js/sap/ushell/themes/sap_horizon/TileContainer.less +2 -11
  509. package/src/main/js/sap/ushell/themes/sap_horizon_dark/TileContainer.less +2 -11
  510. package/src/main/js/sap/ushell/themes/sap_horizon_hcb/TileContainer.less +2 -1
  511. package/src/main/js/sap/ushell/themes/sap_horizon_hcw/TileContainer.less +2 -1
  512. package/src/main/js/sap/ushell/ui/ShellHeaderRenderer.js +0 -2
  513. package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +1 -1
  514. package/src/main/js/sap/ushell/ui/footerbar/AddBookmarkButton.js +3 -0
  515. package/src/main/js/sap/ushell/ui/footerbar/ContactSupportButton.js +2 -2
  516. package/src/main/js/sap/ushell/ui/launchpad/AnchorNavigationBar.js +18 -1
  517. package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +1 -1
  518. package/src/main/js/sap/ushell/ui/launchpad/Page.js +1 -1
  519. package/src/main/js/sap/ushell/ui/launchpad/Section.js +11 -3
  520. package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +1 -1
  521. package/src/main/js/sap/ushell/ui/shell/FloatingContainer.js +17 -4
  522. package/src/main/js/sap/ushell/ui/shell/ShellHeadItem.js +1 -1
  523. package/src/main/js/sap/ushell/ui/shell/ShellNavigationMenu.js +14 -0
  524. package/src/main/js/sap/ushell/ui/shell/SidePane.js +6 -4
  525. package/src/main/js/sap/ushell/ui/shell/SysInfoBar.js +1 -1
  526. package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -1
  527. package/src/main/js/sap/ushell/ui/utils.js +1 -1
  528. package/src/main/js/sap/ushell/ui5service/ShellUIService.js +1 -1
  529. package/src/main/js/sap/ushell/ui5service/UserStatus.js +1 -1
  530. package/src/main/js/sap/ushell/utils/UrlShortening.js +1 -1
  531. package/src/test/js/sap/ushell/bootstrap/sandbox.js +1 -1
  532. package/src/main/js/sap/ushell/themes/base/ContentFinderAppBox.less +0 -182
  533. package/src/main/js/sap/ushell/ui/contentFinder/AppBox.js +0 -404
  534. package/src/main/js/sap/ushell/ui/contentFinder/AppBoxRenderer.js +0 -299
@@ -78,9 +78,9 @@ sap.ui.define([
78
78
  */
79
79
  var Renderer = UIComponent.extend("sap.ushell.renderers.fiori2.Renderer", {
80
80
  metadata: {
81
- version: "1.114.0",
81
+ version: "1.115.1",
82
82
  dependencies: {
83
- version: "1.114.0",
83
+ version: "1.115.1",
84
84
  libs: ["sap.ui.core", "sap.m"],
85
85
  components: []
86
86
  },
@@ -104,21 +104,23 @@ sap.ui.define([
104
104
  return "homeapp";
105
105
  }
106
106
 
107
- //CEP MyHome
108
- if (Config.last("/core/workPages/enabled") && Config.last("/core/workPages/myHome/pageId") !== null) {
109
- return "workpages";
110
- }
107
+ // CEP MyHome
108
+ if (Config.last("/core/workPages/enabled") && Config.last("/core/workPages/myHome/pageId") !== null) {
109
+ return "workpages";
110
+ }
111
111
 
112
- //CEP Standard
113
- if (Config.last("/core/workPages/enabled") && Config.last("/core/workPages/myHome/pageId") === null) {
114
- return "runtimeSwitcher";
115
- }
112
+ // CEP Standard
113
+ if (Config.last("/core/workPages/enabled") && Config.last("/core/workPages/myHome/pageId") === null) {
114
+ return "runtimeSwitcher";
115
+ }
116
116
 
117
- if (Config.last("/core/spaces/enabled")) {
118
- return "pages";
119
- }
117
+ // Pages Spaces Mode
118
+ if (Config.last("/core/spaces/enabled")) {
119
+ return "pages";
120
+ }
120
121
 
121
- return "home";
122
+ // Classic Homepage
123
+ return "home";
122
124
  })()
123
125
  }, {
124
126
  name: "appfinder",
@@ -136,12 +138,12 @@ sap.ui.define([
136
138
  "Launchpad-openFLPPage"
137
139
  ],
138
140
  target: (function () {
139
- //CEP MyHome
141
+ // CEP MyHome
140
142
  if (Config.last("/core/workPages/enabled") && Config.last("/core/workPages/myHome/pageId") !== null) {
141
143
  return "workpages";
142
144
  }
143
145
 
144
- //CEP Standard
146
+ // CEP Standard
145
147
  if (Config.last("/core/workPages/enabled") && Config.last("/core/workPages/myHome/pageId") === null) {
146
148
  return "runtimeSwitcher";
147
149
  }
@@ -518,8 +520,8 @@ sap.ui.define([
518
520
  oSyncView.loaded().then(function (oCreatedView) {
519
521
  // initialize the RendererExtensions after the view is created.
520
522
  // This also publishes an external event that indicates that sap.ushell.renderers.fiori2.RendererExtensions can be used.
521
- sap.ushell.renderers.fiori2.utils.init(oCreatedView.getController());
522
523
  this.shellCtrl = oCreatedView.oController;
524
+ sap.ushell.renderers.fiori2.utils.init(oCreatedView.getController());
523
525
  }.bind(this));
524
526
 
525
527
  return oSyncView;
@@ -537,8 +539,8 @@ sap.ui.define([
537
539
 
538
540
  // initialize the RendererExtensions after the view is created.
539
541
  // This also publishes an external event that indicates that sap.ushell.renderers.fiori2.RendererExtensions can be used.
540
- sap.ushell.renderers.fiori2.utils.init(oView.getController());
541
542
  this.shellCtrl = oView.getController();
543
+ sap.ushell.renderers.fiori2.utils.init(oView.getController());
542
544
  return oView;
543
545
  }.bind(this));
544
546
  };
@@ -977,7 +979,7 @@ sap.ui.define([
977
979
  * renderer.setFooter(bar);
978
980
  * </pre>
979
981
  *
980
- * @param {sap.m.Bar} oFooter The control to be added as the footer of the Fiori Launchpad
982
+ * @param {sap.m.Bar} oFooter - sap.m.Bar, the control to be added as the footer of the Fiori Launchpad
981
983
  * @since 1.30
982
984
  * @public
983
985
  */
@@ -1028,13 +1030,11 @@ sap.ui.define([
1028
1030
  * oRenderer.setShellFooter(oFooterControlProperties);
1029
1031
  * </pre>
1030
1032
  *
1031
- * @param {object} oParameters Contains the required parameters for creating and showing the new control object:<br>
1032
- * Properties:<br>
1033
- * - {string} controlType<br>
1034
- * The (class) name of the control type to create, for example: <code>"sap.m.Bar"</code><br>
1035
- * - {object} oControlProperties<br>
1036
- * The properties that will be passed to the created control, for example: <code>{id: "testBar"}</code><br>
1037
- * @returns {jQuery.Deferred.promise} object that when resolved, returns the newly created control
1033
+ * @param {object} oParameters Contains the required parameters for creating and showing the new control object.
1034
+ * @param {string} oParameters.controlType The (class) name of the control type to create, for example: <code>sap.m.Bar</code>
1035
+ * @param {object} oParameters.oControlProperties The properties that will be passed to the created control, for example: <code>{id: "testBar"}</code>
1036
+ *
1037
+ * @returns {jQuery.Deferred.promise} jQuery.deferred.promise object that when resolved, returns the newly created control
1038
1038
  * @since 1.48
1039
1039
  * @public
1040
1040
  */
@@ -1356,7 +1356,7 @@ sap.ui.define([
1356
1356
  /**
1357
1357
  * This method returns the current state of the Viewport Container control.
1358
1358
  *
1359
- * @returns {object} The current Viewport State.
1359
+ * @returns {string} The current Viewport State.
1360
1360
  * @since 1.37
1361
1361
  * @public
1362
1362
  */
@@ -1391,20 +1391,15 @@ sap.ui.define([
1391
1391
  * oRenderer.addShellSubHeader(oAddSubHeaderProperties);
1392
1392
  * </pre>
1393
1393
  *
1394
- * @param {object} oParameters Contains the required parameters for creating and showing the new control object:<br>
1395
- * Properties:<br>
1396
- * - {string} controlType<br>
1397
- * The (class) name of the control type to create.<br>
1398
- * - {object} oControlProperties<br>
1399
- * The properties that will be passed to the created control.<br>
1400
- * - {boolean} bIsVisible<br>
1401
- * Specify whether to display the control.<br>
1402
- * - {boolean} bCurrentState<br>
1403
- * If true, add the current control only to the current rendered shell state.<br>
1404
- * Once the user navigates to another app or back to the Home page, this control will be removed.<br>
1405
- * - {string[]} aStates<br>
1406
- * (only valid if bCurrentState is set to false) - list of the sap.ushell.renderers.fiori2.Renderer.LaunchpadState in which to add the control.<br>
1407
- * @returns {object} jQuery.deferred.promise object that when resolved, returns the newly created control
1394
+ * @param {object} oParameters Contains the required parameters for creating and showing the new control object.
1395
+ * @param {string} oParameters.controlType The (class) name of the control type to create.
1396
+ * @param {object} oParameters.oControlProperties The properties that will be passed to the created control.
1397
+ * @param {boolean} oParameters.bIsVisible Specify whether to display the control.
1398
+ * @param {boolean} oParameters.bCurrentState If true, add the current control only to the current rendered shell state. Once the user
1399
+ * navigates to another app or back to the Home page, this control will be removed.
1400
+ * @param {string[]} oParameters.aStates (only valid if bCurrentState is set to false) - list of the sap.ushell.renderers.fiori2.Renderer.LaunchpadState in which to add the control.
1401
+ *
1402
+ * @returns {jQuery.Deferred.promise} jQuery.Deferred.promise object that when resolved, returns the newly created control
1408
1403
  * @since 1.48
1409
1404
  * @public
1410
1405
  */
@@ -1540,23 +1535,16 @@ sap.ui.define([
1540
1535
  * oRenderer.addUserAction(oAddActionButtonProperties);
1541
1536
  * </pre>
1542
1537
  *
1543
- * @param {object} oParameters Contains the required parameters for creating and showing the new control object:<br>
1544
- * Properties:<br>
1545
- * - {string} controlType<br>
1546
- * The (class) name of the control type to create.<br>
1547
- * - {object} oControlProperties<br>
1548
- * The properties that will be passed to the created control.<br>
1549
- * - {boolean} bIsVisible<br>
1550
- * Specify whether to display the control.<br>
1551
- * - {boolean} bCurrentState<br>
1552
- * If true, add the current control only to the current rendered shell state.<br>
1553
- * Once the user navigates to another app or back to the Home page, this control will be removed.<br>
1554
- * - {string[]} aStates<br>
1555
- * (only valid if bCurrentState is set to false) - list of the sap.ushell.renderers.fiori2.Renderer.LaunchpadState in which to add the control.<br>
1538
+ * @param {object} oParameters Contains the required parameters for creating and showing the new control object.
1539
+ * @param {string} oParameters.controlType The (class) name of the control type to create.<br>
1540
+ * @param {object} oParameters.oControlProperties The properties that will be passed to the created control.<br>
1541
+ * @param {boolean} oParameters.bIsVisible Specify whether to display the control.
1542
+ * @param {boolean} oParameters.bCurrentState If true, add the current control only to the current rendered shell state.
1543
+ * Once the user navigates to another app or back to the Home page, this control will be removed.
1544
+ * @param {string[]} oParameters.aStates (only valid if bCurrentState is set to false) - list of the sap.ushell.renderers.fiori2.Renderer.LaunchpadState in which to add the control.
1545
+ * If no launchpad state is provided the content is added in all states. @see LaunchpadState
1556
1546
  *
1557
- * @see LaunchpadState
1558
- * If no launchpad state is provided the content is added in all states.
1559
- * @returns {object} jQuery.deferred.promise object that when resolved, returns the newly created control
1547
+ * @returns {jQuery.Deferred.promise} jQuery.Deferred.promise object that when resolved, returns the newly created control
1560
1548
  * @since 1.48
1561
1549
  * @public
1562
1550
  */
@@ -1647,7 +1635,7 @@ sap.ui.define([
1647
1635
  * Valid only if bCurrentState is set to false.
1648
1636
  * @see sap.ushell.renderers.fiori2.renderer.LaunchpadState
1649
1637
  * If no launchpad state is provided, the content is added in all states.
1650
- * @returns {object} oItem - the created control
1638
+ * @returns {sap.ui.core.Control} oItem - the created control
1651
1639
  * @since 1.30
1652
1640
  * @deprecated since 1.48. Please use {@link #addUserAction} instead.
1653
1641
  * @public
@@ -1865,7 +1853,7 @@ sap.ui.define([
1865
1853
  * @see LaunchpadState
1866
1854
  * If no launchpad state is provided the content is added in all states.
1867
1855
  *
1868
- * @returns {object} jQuery.deferred.promise object that when resolved, returns the newly created control.
1856
+ * @returns {jQuery.Deferred.promise} jQuery.Deferred.promise object that when resolved, returns the newly created control.
1869
1857
  *
1870
1858
  * @since 1.48
1871
1859
  * @public
@@ -2001,7 +1989,7 @@ sap.ui.define([
2001
1989
  * A list of shell states (i.e. sap.ushell.renderers.fiori2.Renderer.LaunchpadState) in which the control is added.<br>
2002
1990
  * If no launchpad state is provided the control is added in all states.
2003
1991
  * @see LaunchpadState
2004
- * @returns {object} The created control
1992
+ * @returns {sap.ui.core.Control} The created control
2005
1993
  * @since 1.30
2006
1994
  * @public
2007
1995
  */
@@ -2101,7 +2089,7 @@ sap.ui.define([
2101
2089
  * An array of shell states (i.e. sap.ushell.renderers.fiori2.Renderer.LaunchpadState) in which the controls are added.
2102
2090
  * If no launchpad state is provided the items are added in all states.
2103
2091
  * @see sap.ushell.renderers.fiori2.renderer.LaunchpadState.
2104
- * @returns {object} the added control
2092
+ * @returns {sap.ui.core.Control} the added control
2105
2093
  * @since 1.30
2106
2094
  * @public
2107
2095
  */
@@ -2170,7 +2158,7 @@ sap.ui.define([
2170
2158
  * list of the sap.ushell.renderers.fiori2.Renderer.LaunchpadState in which to add the control.
2171
2159
  * @see LaunchpadState
2172
2160
  * If no launchpad state is provided the content is added in all states.
2173
- * @returns {object} oItem - the created control
2161
+ * @returns {sap.ui.core.Control} oItem - the created control
2174
2162
  * @since 1.30
2175
2163
  * @public
2176
2164
  */
@@ -2238,31 +2226,22 @@ sap.ui.define([
2238
2226
  * oRenderer.addUserPreferencesEntry(oEntry);
2239
2227
  * </pre>
2240
2228
  *
2241
- * @param {object} entryObject The data of the new added User Preference entry
2242
- * Including:
2243
- * <ul>
2244
- * <li>{string} entryHelpID (Optional) - The ID of the object.<br>
2245
- * <li>{string} title - The title of the entry to be presented in the list in the User Preferences dialog box.<br>
2246
- * We recommend using a string from the translation bundle.<br>
2247
- * <li>{string}/{Function} value - A string to be presented as the value of the entry<br>
2248
- * OR a function to be called which returns a {jQuery.Deferred.promise} object.<br>
2249
- * <li>{Function} content - A function to be called that returns a {jQuery.Deferred.promise} object<br>
2250
- * which consists of a {sap.ui.core.Control} to be displayed in a follow-on dialog box. A SAPUI5 view instance can also be returned.
2251
- * The functions is called on each time the user opens the User Preferences dialog box.
2252
- * <li>{Function} onSave - A function to be called which returns a {jQuery.Deferred.promise}
2253
- * object when the user clicks Save in the User Preferences dialog box.<br>
2254
- * If an error occurs, pass the error message via the {jQuery.Deferred.promise} object. Errors are displayed in the log.<br>
2255
- * <li>{Function} onCancel - A function to be called that closes the User Preferences dialog box without saving any changes. <br>
2256
- * <li>{Boolean} provideEmptyWrapper - Experimental. Set this value to true if you want that your content is displayed without the standard header<br>
2257
- * </ul>
2258
- *
2259
- * @returns {object} User Preference Entry.
2229
+ * @param {object} entryObject The data of the new added User Preference entry.
2230
+ * @param {string} entryObject.entryHelpID (Optional) - The ID of the object.
2231
+ * @param {string} entryObject.title - The title of the entry to be presented in the list in the User Preferences dialog box. We recommend using a string from the translation bundle.
2232
+ * @param {string|function} value - A string to be presented as the value of the entry OR a function to be called which returns a {jQuery.Deferred.promise} object.
2233
+ * @param {function} entryObject.content - A function to be called that returns a {jQuery.Deferred.promise} object which consists of a
2234
+ * {sap.ui.core.Control} to be displayed in a follow-on dialog box. A SAPUI5 view instance can also be returned. The function is called on each time the user opens the User Preferences dialog box.
2235
+ * @param {function} entryObject.onSave - A function to be called which returns a {jQuery.Deferred.promise} object when the user clicks "save" in the User Preferences dialog box.
2236
+ * If an error occurs, pass the error message via the {jQuery.Deferred.promise} object. Errors are displayed in the log.
2237
+ * @param {function} entryObject.onCancel - A function to be called that closes the User Preferences dialog box without saving any changes.
2238
+ * @param {boolean} entryObject.provideEmptyWrapper - Experimental. Set this value to true if you want that your content is displayed without the standard header.
2260
2239
  *
2261
2240
  * @since 1.30
2262
2241
  * @public
2263
2242
  */
2264
2243
  Renderer.prototype.addUserPreferencesEntry = function (entryObject) {
2265
- return this.shellCtrl.addUserPreferencesEntry(entryObject);
2244
+ this.shellCtrl.addUserPreferencesEntry(entryObject);
2266
2245
  };
2267
2246
 
2268
2247
  /**
@@ -2638,7 +2617,7 @@ sap.ui.define([
2638
2617
  * }
2639
2618
  * </pre>
2640
2619
  * @param {function} fnProvider A function returning an array
2641
- * @returns {Promise<void>} Resolves once the provider was registered
2620
+ * @returns {Promise<undefined>} Resolves once the provider was registered
2642
2621
  *
2643
2622
  * @private
2644
2623
  */
@@ -2772,24 +2751,18 @@ sap.ui.define([
2772
2751
  return this.shellCtrl.getView().waitForShellLayout();
2773
2752
  };
2774
2753
 
2775
- /**
2776
- * @returns {Promise} Resolves all initializations have settled
2777
- *
2778
- * @private
2779
- * @since 1.114.0
2780
- */
2781
- Renderer.prototype.awaitPendingInitializations = function () {
2782
- if (this.shellCtrl.getView().awaitPendingInitializations) {
2783
- return this.shellCtrl.getView().awaitPendingInitializations();
2784
- }
2785
- return Promise.resolve();
2786
- };
2787
-
2788
2754
  /**
2789
2755
  * @private
2790
2756
  */
2791
- Renderer.prototype.exit = function () {
2792
- ShellLayout.destroyLayout();
2757
+ Renderer.prototype.destroy = function () {
2758
+ var oPromise = this.shellCtrl ? this.shellCtrl.awaitPendingInitializations() : Promise.resolve();
2759
+ return oPromise
2760
+ .then(function () {
2761
+ return UIComponent.prototype.destroy.apply(this, arguments);
2762
+ }.bind(this))
2763
+ .then(function () {
2764
+ ShellLayout.destroyLayout();
2765
+ });
2793
2766
  };
2794
2767
 
2795
2768
  return Renderer;
@@ -116,11 +116,89 @@ sap.ui.define([
116
116
  * @public
117
117
  */
118
118
  return Controller.extend("sap.ushell.renderers.fiori2.Shell", {
119
+ _aDoables: [],
120
+
121
+ addDoable: function (oDoable) {
122
+ this._aDoables.push(oDoable);
123
+ },
124
+
125
+ _aDanglingControls: [],
126
+
119
127
  /**
120
- * SAPUI5 lifecycle hook.
121
- * @public
128
+ * @param {sap.ui.core.Control} oControl The Control
129
+ * @see sap.ushell.renderers.fiori2.Shell.controller#onExit
130
+ *
131
+ * @private
132
+ * @since 1.115.0
122
133
  */
123
- _aDoables: [],
134
+ addDanglingControl: function (oControl) {
135
+ this._aDanglingControls.push(oControl);
136
+ },
137
+
138
+ _aDanglingBindings: [],
139
+
140
+ /**
141
+ * Adds a binding which is destroyed on Renderer destroy
142
+ * @param {sap.ui.model.Binding} oBinding The Binding
143
+ * @see sap.ushell.renderers.fiori2.Shell.controller#onExit
144
+ *
145
+ * @private
146
+ * @since 1.115.0
147
+ */
148
+ addDanglingBinding: function (oBinding) {
149
+ this._aDanglingBindings.push(oBinding);
150
+ },
151
+
152
+ /**
153
+ * @param {sap.ui.model.Binding} oTargetBinding The Binding
154
+ * @see sap.ushell.renderers.fiori2.Shell.controller#onExit
155
+ *
156
+ * @private
157
+ * @since 1.115.0
158
+ */
159
+ removeDanglingBinding: function (oTargetBinding) {
160
+ var iBindingIndex = this._aDanglingBindings.findIndex(function (oBinding) {
161
+ return oBinding === oTargetBinding;
162
+ });
163
+
164
+ if (iBindingIndex > -1) {
165
+ this._aDanglingBindings.splice(iBindingIndex, 1);
166
+ }
167
+ },
168
+
169
+ _aPendingInitializations: [],
170
+
171
+ /**
172
+ * Adds a promise to the list of initializations
173
+ * Only used in test environments!
174
+ * @param {Promise} oPromise A Promise
175
+ * @returns {Promise} Returns the provided promise to allow chaining
176
+ *
177
+ * @private
178
+ * @since 1.115.0
179
+ */
180
+ addPendingInitialization: function (oPromise) {
181
+ this._aPendingInitializations.push(oPromise);
182
+ return oPromise;
183
+ },
184
+
185
+ /**
186
+ * Only used in test environments!
187
+ * @returns {Promise} Resolves once all initializations have settled
188
+ *
189
+ * @private
190
+ * @since 1.115.0
191
+ */
192
+ awaitPendingInitializations: function () {
193
+ var iOldLength = this._aPendingInitializations.length;
194
+ return Promise.allSettled(this._aPendingInitializations)
195
+ .then(function () {
196
+ var iNewLength = this._aPendingInitializations.length;
197
+ if (iOldLength < iNewLength) {
198
+ return this.awaitPendingInitializations();
199
+ }
200
+ }.bind(this));
201
+ },
124
202
 
125
203
  onComponentTargetDisplay: function (oEvent) {
126
204
  var oParameters = oEvent.getParameters();
@@ -201,7 +279,7 @@ sap.ui.define([
201
279
  this._setConfigurationToModel();
202
280
 
203
281
  // Doable objects are kept in a global array to enable their off-ing later on.
204
- this._aDoables = this._registerAndCreateEventHubDoables();
282
+ this._registerAndCreateEventHubDoables();
205
283
 
206
284
  oShellModel.addHeaderEndItem(["userActionsMenuHeaderButton"], false, ["home", "app", "minimal", "standalone", "embedded", "embedded-home", "lean"], true);
207
285
 
@@ -346,12 +424,10 @@ sap.ui.define([
346
424
  },
347
425
 
348
426
  /**
349
- * Creates the EventHub event bindings and returns them in a Array of doables.
350
- *
351
- * @returns {object[]} A list of "Doable" objects
427
+ * Creates the EventHub event bindings and saves them.
352
428
  */
353
429
  _registerAndCreateEventHubDoables: function () {
354
- var aDoables = [
430
+ [
355
431
  EventHub.once("CenterViewPointContentRendered").do(this._loadCoreExt.bind(this)),
356
432
  EventHub.once("PagesRuntimeRendered").do(this._loadCoreExt.bind(this)),
357
433
  EventHub.once("AppRendered").do(this._loadCoreExtNonUI5.bind(this)),
@@ -366,8 +442,9 @@ sap.ui.define([
366
442
  EventHub.once("loadWarmupPlugins").do(this._loadWarmupPlugins.bind(this)),
367
443
  EventHub.once("loadTrackingActivitiesSetting").do(this._loadTrackingActivitiesSetting.bind(this)),
368
444
  EventHub.on("centerViewPort").do(this._centerViewPort.bind(this))
369
- ];
370
- return aDoables;
445
+ ].forEach(function (oDoable) {
446
+ this.addDoable(oDoable);
447
+ }.bind(this));
371
448
  },
372
449
 
373
450
  initShellModel: function (oConfigForModel, oApplicationModel) {
@@ -476,6 +553,7 @@ sap.ui.define([
476
553
  oModel.setProperty("/searchAvailable", (oConfig.enableSearch !== false));
477
554
  }
478
555
  },
556
+
479
557
  _loadTrackingActivitiesSetting: function (eventData) {
480
558
  // Tracking activities
481
559
  this._getPersData({
@@ -520,7 +598,7 @@ sap.ui.define([
520
598
  * The iframe will be used for rare scenarios in which additional authentication is required.
521
599
  * This is mainly related to SAML 2.0 flows. The api sequence will be managed by UI2 services.
522
600
  *
523
- * @returns {{create: Function, show: Function, destroy: Function}} Logon Frame Provider interface
601
+ * @returns {{create: function, show: function, destroy: function}} Logon Frame Provider interface
524
602
  * @private
525
603
  */
526
604
  _getLogonFrameProvider: function () {
@@ -533,6 +611,16 @@ sap.ui.define([
533
611
  });
534
612
  this._aDoables = [];
535
613
 
614
+ this._aDanglingControls.forEach(function (oControl) {
615
+ oControl.destroy();
616
+ });
617
+ this._aDanglingControls = [];
618
+
619
+ this._aDanglingBindings.forEach(function (oBinding) {
620
+ oBinding.destroy();
621
+ });
622
+ this._aDanglingBindings = [];
623
+
536
624
  Core.getEventBus().unsubscribe("externalSearch", this.externalSearchTriggered, this);
537
625
  Core.getEventBus().unsubscribe("ESHSearchFinished", this._logSearchActivity, this);
538
626
  Core.getEventBus().unsubscribe("sap.ushell", "appOpened", this.onAppOpened, this);
@@ -542,21 +630,6 @@ sap.ui.define([
542
630
  this.oShellNavigation.hashChanger.destroy();
543
631
  }
544
632
 
545
- var oView = this.getView();
546
- if (oView) {
547
- if (oView.destroyDanglingControls) {
548
- this.getView().destroyDanglingControls();
549
- }
550
-
551
- if (oView.destroyDanglingBindings) {
552
- this.getView().destroyDanglingBindings();
553
- }
554
-
555
- if (oView.destroyDoables) {
556
- this.getView().destroyDoables();
557
- }
558
- }
559
-
560
633
  HeaderManager.destroy();
561
634
  HeaderControlManager.destroy();
562
635
 
@@ -758,7 +831,7 @@ sap.ui.define([
758
831
  * Wait for the given hash to be loaded by the browser.
759
832
  *
760
833
  * @param {string} hash The hash to wait for.
761
- * @returns {Promise<void>} A promise that is resolved once the given hash was found. It is not rejected.
834
+ * @returns {Promise<undefined>} A promise that is resolved once the given hash was found. It is not rejected.
762
835
  * @since 1.86.0
763
836
  * @private
764
837
  */
@@ -940,7 +1013,7 @@ sap.ui.define([
940
1013
  * - URL is pasted in a new window
941
1014
  * - user opens the page and pastes a URL
942
1015
  *
943
- * @return {boolean} whether the application is in a cold start state
1016
+ * @returns {boolean} whether the application is in a cold start state
944
1017
  */
945
1018
  _isColdStart: function () {
946
1019
  var oRenderer = sap.ushell.Container.getRenderer("fiori2");
@@ -1175,7 +1248,7 @@ sap.ui.define([
1175
1248
  // This is because oResolvedHashFragment contains the component handle already.
1176
1249
  // See the preceding note in AppLifeCycle.createComponent.
1177
1250
  Measurement.end("FLP:ShellController.UI5createComponent");
1178
- oShellController._initiateApplication(oResolvedHashFragment, sFixedShellHash, oParsedShellHash, iOriginalHistoryLength, sAppPart);
1251
+ oShellController._initiateApplication(oResolvedHashFragment, sFixedShellHash, oParsedShellHash, iOriginalHistoryLength, sAppPart, sOldFixedShellHash, sOldAppPart);
1179
1252
  }).fail(function (vError) {
1180
1253
  var sErrorReason = ushellResources.i18n.getText("cannot_load_ui5_component_details", [sFixedShellHash]);
1181
1254
  var sErrorReasonEnglish = "Failed to load UI5 component for navigation intent " + sFixedShellHash;
@@ -1303,6 +1376,7 @@ sap.ui.define([
1303
1376
  });
1304
1377
  });
1305
1378
  },
1379
+
1306
1380
  _initiateApplication: function (oResolvedHashFragment, sFixedShellHash, oParsedShellHash, iOriginalHistoryLength, sAppPart, sOldFixedShellHash, sOldAppPart) {
1307
1381
  Measurement.start("FLP:ShellController._initiateApplication", "_initiateApplication", "FLP");
1308
1382
 
@@ -1579,7 +1653,7 @@ sap.ui.define([
1579
1653
  *
1580
1654
  * @param {object} oResolvedHashFragment
1581
1655
  * The resolved hash fragment
1582
- * @return {Promise}
1656
+ * @returns {Promise}
1583
1657
  * Whether NWBC managed to open the application (resolved with either true or false)
1584
1658
  *
1585
1659
  * @private
@@ -1722,7 +1796,7 @@ sap.ui.define([
1722
1796
  * to navigate one step back in the browser history to restore the current hash.
1723
1797
  *
1724
1798
  * @param {object} oResolvedHashFragment The resolved hash fragment.
1725
- * @return {Promise} A Promise resolving when the hash is restored.
1799
+ * @returns {Promise} A Promise resolving when the hash is restored.
1726
1800
  * @private
1727
1801
  */
1728
1802
  _restoreAfterNwbcNavigation: function (oResolvedHashFragment) {
@@ -1964,7 +2038,7 @@ sap.ui.define([
1964
2038
  /**
1965
2039
  * Shows an error message and navigates to the previous page.
1966
2040
  *
1967
- * @param {number} iHistoryLength the length of the history <b>before</b> the navigation occurred.
2041
+ * @param {int} iHistoryLength the length of the history <b>before</b> the navigation occurred.
1968
2042
  * @param {string|object} vMessage the error message
1969
2043
  * @param {string|object} vDetails the detailed error message
1970
2044
  * @param {string} sComponent the component that generated the error message
@@ -2489,6 +2563,8 @@ sap.ui.define([
2489
2563
  /**
2490
2564
  * This function handle the adding animations when dock/undock
2491
2565
  * @param {boolean} bIsDock set docked
2566
+ * @returns {Promise} Resolves once the animation is done
2567
+ *
2492
2568
  * @private
2493
2569
  */
2494
2570
  _startFloatingContainerAnimation: function (bIsDock) {
@@ -2767,18 +2843,14 @@ sap.ui.define([
2767
2843
  },
2768
2844
 
2769
2845
  setNavigationBar: function (oNavigationBar) {
2770
- var oView = this.getView();
2771
-
2772
2846
  oNavigationBar.placeAt(ShellLayoutMapping.NavigationBar, "only");
2773
- oView.addDanglingControl(oNavigationBar);
2847
+ this.addDanglingControl(oNavigationBar);
2774
2848
  },
2775
2849
 
2776
2850
  setShellShapes: function (oShellShapes) {
2777
2851
  if (oShellShapes.placeAt) {
2778
- var oView = this.getView();
2779
-
2780
2852
  oShellShapes.placeAt(ShellLayoutMapping.ShellShapes, "only");
2781
- oView.addDanglingControl(oShellShapes);
2853
+ this.addDanglingControl(oShellShapes);
2782
2854
  } else if (oShellShapes instanceof Node) {
2783
2855
  document.getElementById(ShellLayoutMapping.ShellShapes).appendChild(oShellShapes);
2784
2856
  }
@@ -2798,7 +2870,7 @@ sap.ui.define([
2798
2870
 
2799
2871
  oHelperModel.setProperty("/shell/footerContent", oFooter.getId());
2800
2872
  oFooter.placeAt(ShellLayoutMapping.Footer, "only");
2801
- oView.addDanglingControl(oFooter);
2873
+ this.addDanglingControl(oFooter);
2802
2874
 
2803
2875
  if (oFooter._applyContextClassFor) {
2804
2876
  oFooter._applyContextClassFor("footer");