@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
@@ -44,11 +44,10 @@ sap.ui.define(
44
44
  includeStylesheet,
45
45
  Highlighter,
46
46
  ResizeHandler,
47
- library
47
+ mLibrary
48
48
  // fetch
49
49
  ) {
50
50
  "use strict";
51
-
52
51
  appendStyleVars([
53
52
  "sapUiShadowLevel0",
54
53
  "sapUiElementBorderCornerRadius",
@@ -65,13 +64,14 @@ sap.ui.define(
65
64
  "sapUiButtonNegativeActiveBackground",
66
65
  "sapUiButtonSuccessActiveBackground",
67
66
  "sapUiButtonNeutralBackground",
68
- "sapUiTileBackground"
67
+ "sapUiTileBackground",
68
+ "sapUiExtraLightBG"
69
69
  ]);
70
70
 
71
71
  // Include the css for the control once
72
72
  includeStylesheet(sap.ui.require.toUrl("sap/ushell/components/cepsearchresult/app/util/controls/Category.css"));
73
73
 
74
- var IllustrationType = library.IllustratedMessageType;
74
+ var IllustrationType = mLibrary.IllustratedMessageType;
75
75
 
76
76
  // Fix object identifier handle press
77
77
  ObjectIdentifier.prototype._handlePress = function (oEvent) {
@@ -85,32 +85,6 @@ sap.ui.define(
85
85
  oEvent.setMarked();
86
86
  }
87
87
  };
88
- var SearchResultList = List.extend("sap.ushell.components.cepsearchresult.app.util.controls.SearchResultList", {
89
- renderer: List.getMetadata().getRenderer()
90
- });
91
-
92
- SearchResultList.prototype._getCurrentColCount = function () {
93
- if (this.getDomRef()) {
94
- var aItems = this.getDomRef().querySelectorAll(".sapMListItems > LI"),
95
- iCols = 1,
96
- iTop = aItems[0].offsetTop;
97
- for (var i = 1; i < aItems.length && aItems[i].offsetTop <= iTop; i++) {
98
- iCols++;
99
- }
100
- return iCols;
101
- }
102
- };
103
-
104
- SearchResultList.prototype._startItemNavigation = function () {
105
- List.prototype._startItemNavigation.apply(this, [false]);
106
- if (this._oItemNavigation) {
107
- var aTiles = Array.from(this.getDomRef().querySelectorAll(".sapMGT"));
108
- if (aTiles.length > 0) {
109
- this._oItemNavigation.setItemDomRefs(aTiles);
110
- }
111
- }
112
- this._oItemNavigation.setTableMode(false, true).setColumns(this._getCurrentColCount());
113
- };
114
88
 
115
89
  var Category = Control.extend(
116
90
  "sap.ushell.components.cepsearchresult.app.util.controls.Category", /** @lends sap.ushell.components.cepsearchresult.app.categories.util.Category.prototype */ {
@@ -148,6 +122,10 @@ sap.ui.define(
148
122
  useIllustrations: {
149
123
  type: "boolean",
150
124
  defaultValue: false
125
+ },
126
+ initialPlaceholder: {
127
+ type: "boolean",
128
+ defaultValue: false
151
129
  }
152
130
  },
153
131
  aggregations: {
@@ -177,17 +155,22 @@ sap.ui.define(
177
155
  }
178
156
  },
179
157
  renderer: function (rm, oControl) {
158
+
180
159
  rm.openStart("div", oControl);
181
160
  rm.class("sapUiCEPSearchCat");
182
161
  rm.openEnd();
183
- var oHeader = oControl.getAggregation("_header");
184
- var oList = oControl.getAggregation("_list");
185
- var oFooter = oControl.getAggregation("_footer");
186
- var oNoDataIllustration = oControl.getAggregation("_nodata");
162
+
163
+ var oHeader = oControl.getAggregation("_header"),
164
+ oList = oControl.getAggregation("_list"),
165
+ oFooter = oControl.getAggregation("_footer"),
166
+ oNoDataIllustration = oControl.getAggregation("_nodata");
167
+
187
168
  if (oHeader) {
188
169
  rm.renderControl(oHeader);
189
170
  }
190
- if (oControl.getUseIllustrations() && oNoDataIllustration && oNoDataIllustration.getVisible()) {
171
+ if (oControl.getUseIllustrations() &&
172
+ oNoDataIllustration &&
173
+ oNoDataIllustration.getVisible()) {
191
174
  rm.renderControl(oNoDataIllustration);
192
175
  } else if (oList) {
193
176
  rm.renderControl(oList);
@@ -202,21 +185,71 @@ sap.ui.define(
202
185
  Category._iDataRefreshMs = 1000000000;
203
186
  Category._iCountRefreshMs = 1000000000;
204
187
 
188
+ Category.CustomListItem = CustomListItem.extend("sap.ushell.components.cepsearchresult.app.util.controls.Category.CustomListItem", {
189
+ renderer: CustomListItem.getMetadata().getRenderer()
190
+ });
191
+
192
+ Category.CustomListItem.prototype.onAfterRendering = function () {
193
+ if (CustomListItem.prototype.onAfterRendering) {
194
+ CustomListItem.prototype.onAfterRendering.apply(this, arguments);
195
+ }
196
+ this._activeHandling(this.$());
197
+ };
198
+
199
+ Category.CustomListItem.prototype._activeHandling = function ($This) {
200
+ $This.removeClass("sapMLIBActive");
201
+ $This.removeClass("sapMLIBActionable");
202
+ $This.removeClass("sapMLIBHoverable");
203
+ $This.toggleClass("sapUiCEPSearchCatLIActive", this._active);
204
+
205
+ if (this.isActionable(true)) {
206
+ $This.toggleClass("sapUiCEPSearchCatLIHoverable", !this._active);
207
+ }
208
+ };
209
+
210
+ Category.SearchResultList = List.extend("sap.ushell.components.cepsearchresult.app.util.controls.Category.SearchResultList", {
211
+ renderer: List.getMetadata().getRenderer()
212
+ });
213
+
214
+ Category.SearchResultList.prototype._getCurrentColCount = function () {
215
+ if (this.getDomRef()) {
216
+ var aItems = this.getDomRef().querySelectorAll(".sapMListItems > LI"),
217
+ iCols = 1,
218
+ iTop = aItems[0].offsetTop;
219
+ for (var i = 1; i < aItems.length && aItems[i].offsetTop <= iTop; i++) {
220
+ iCols++;
221
+ }
222
+ return iCols;
223
+ }
224
+ };
225
+
226
+ Category.SearchResultList.prototype._startItemNavigation = function () {
227
+ List.prototype._startItemNavigation.apply(this, [false]);
228
+ if (this._oItemNavigation) {
229
+ var aTiles = Array.from(this.getDomRef().querySelectorAll(".sapMGT"));
230
+ if (aTiles.length > 0) {
231
+ this._oItemNavigation.setItemDomRefs(aTiles);
232
+ }
233
+ }
234
+ this._oItemNavigation.setTableMode(false, true).setColumns(this._getCurrentColCount());
235
+ };
236
+
205
237
  Category.prototype.init = function () {
206
238
  var oResourceModel = this.getResourceModel();
207
239
  this.setModel(oResourceModel, "i18n");
240
+ this.setModel(new JSONModel({}), "data");
208
241
  this._oResourceBundle = oResourceModel.getResourceBundle();
209
242
  this._iCurrentCount = 0;
210
243
  this._oDirty = {
211
244
  iDataFetchRequired: 0,
212
245
  iCountFetchRequired: 0
213
246
  };
214
- this.addContent();
215
247
  this._oNoDataIllustration = null;
216
248
  this._oErrorIllustration = null;
217
249
  this._iCurrentHeight = 0;
218
250
  this._iAfterRendering = 0;
219
251
  this._iAfterRenderingEventDelay = 60;
252
+ this.addContent();
220
253
  };
221
254
 
222
255
  Category.prototype.addContent = function () {
@@ -235,23 +268,27 @@ sap.ui.define(
235
268
  };
236
269
 
237
270
  Category.prototype.updateDataModel = function (oData) {
238
- var oModel = this.getModel("data");
239
- if (!oModel) {
240
- oModel = new JSONModel();
241
- this.setModel(oModel, "data");
242
- }
243
- oModel.setData(oData);
271
+ this.setModel(new JSONModel(oData), "data");
244
272
  };
245
273
 
246
- Category.prototype.clearData = function () {
274
+ Category.prototype.initialData = function (iCount) {
247
275
  var oModel = this.getModel("data");
248
- if (oModel) {
249
- oModel.setProperty("/data", []);
276
+ if (!oModel && this.getInitialPlaceholder() && this.getPlaceholderData()) {
277
+ var aData = [];
278
+ for (var i = 0; i < iCount; i++) {
279
+ aData.push(this.getPlaceholderData());
280
+ }
281
+ this.updateDataModel({
282
+ data: aData
283
+ });
250
284
  }
251
285
  };
252
286
 
253
287
  Category.prototype.resetDataRequired = function (sSearchTerm, iSkip, iTop) {
254
288
  if (this._bResetData) {
289
+ this._sSearchTerm = sSearchTerm;
290
+ this._iSkip = iSkip;
291
+ this._iTop = iTop;
255
292
  return true;
256
293
  }
257
294
  var bVisible = this.getVisible();
@@ -276,110 +313,96 @@ sap.ui.define(
276
313
  };
277
314
 
278
315
  Category.prototype.search = function (sSearchTerm, iSkip, iTop) {
279
- if (isNaN(iTop)) {
280
- iTop = iTop || this._iTop || this.getPageSize();
281
- }
282
- if (isNaN(iSkip)) {
283
- iSkip = iSkip || this._iSkip || 0;
284
- }
316
+ iTop = isNaN(iTop) || iTop < 0 ? this._iTop || this.getPageSize() : iTop;
317
+ iSkip = isNaN(iSkip) || iSkip < 0 ? this._iSkip || 0 : iSkip;
285
318
  if (typeof sSearchTerm !== "string") {
286
319
  sSearchTerm = this.getSearchTerm();
287
320
  }
288
321
  var bVisible = this.getVisible(),
289
- sKey = this.getKey(),
290
- iStartTime = performance.now(),
291
- pFetch;
322
+ bSearchTermChanged = this._sSearchTerm !== sSearchTerm,
323
+ pFetch,
324
+ oCurrentData = this.getModel("data").getData() || {};
325
+
292
326
  if (!this.resetDataRequired(sSearchTerm, iSkip, iTop)) {
293
- this.fireBeforeSearch({
294
- category: sKey,
295
- top: iTop,
296
- skip: iSkip,
297
- searchTerm: sSearchTerm,
298
- visible: bVisible,
299
- time: iStartTime,
300
- fetchType: "skipped"
301
- });
302
- this.fireAfterSearch({
303
- category: sKey,
304
- count: this._iCurrentCount,
305
- top: iTop,
306
- skip: iSkip,
307
- page: (iSkip / iTop) + 1,
308
- searchTerm: sSearchTerm,
309
- visible: bVisible,
310
- time: performance.now() - iStartTime,
311
- fetchType: "skipped"
312
- });
327
+ this.fireFetchEvent("before", "skipped", oCurrentData);
328
+ this.fireFetchEvent("after", "skipped", oCurrentData);
313
329
  return;
314
330
  }
315
331
 
316
332
  this._iCurrentCount = 0;
317
333
  this._bResetData = false;
318
- this._sSearchTerm = sSearchTerm;
319
- this._iSkip = iSkip;
320
- this._iTop = iTop;
334
+ this._bIsLoading = true;
335
+
336
+ this.fireFetchEvent("before", bVisible ? "data" : "count", performance.now(), oCurrentData);
321
337
 
322
- this.fireBeforeSearch({
323
- category: sKey,
324
- top: iTop,
325
- skip: iSkip,
326
- searchTerm: sSearchTerm,
327
- visible: bVisible,
328
- time: iStartTime,
329
- fetchType: bVisible ? "data" : "count"
330
- });
331
338
  if (bVisible) {
332
- this.setNoDataText(this.translate("LoadingData"), false, "Loading");
333
- this.clearData();
339
+ this.setNoDataText(this.translate("LoadingData"), "Loading");
340
+ this.initialData(iTop);
341
+ this.showLoadingPlaceholder(true);
334
342
  this._oDirty.iDataFetchRequired = (Date.now() + Category._iDataRefreshMs);
335
343
  pFetch = this.fetchData(sSearchTerm, iSkip, iTop);
336
- pFetch = pFetch.then(function (oResultData) {
337
- var oData = {
338
- count: oResultData.count,
339
- top: iTop,
340
- skip: iSkip,
341
- page: Math.floor(iSkip / iTop) + 1,
342
- data: oResultData.data
343
- };
344
- this.updateDataModel(oData);
345
- this.setNoDataText(this.translate("NoData"), true, "NoData");
346
- this.invalidate();
347
- return oData;
348
- }.bind(this));
344
+ pFetch = pFetch.then(this.applyDataChange.bind(this, bSearchTermChanged));
349
345
  } else {
350
346
  pFetch = this.fetchCount(sSearchTerm, iSkip, iTop);
351
- pFetch = pFetch.then(function (oResultData) {
352
- var oData = {
353
- count: oResultData.count,
354
- top: iTop,
355
- skip: iSkip,
356
- page: Math.floor(iSkip / iTop) + 1,
357
- data: []
358
- };
359
- this.updateDataModel(oData);
360
- return oData;
361
- }.bind(this));
347
+ pFetch = pFetch.then(this.applyCount.bind(this));
362
348
  }
363
349
  this._oDirty.iCountFetchRequired = (Date.now() + Category._iCountRefreshMs);
364
350
 
365
351
  if (pFetch) {
366
352
  pFetch.then(function (oData) {
367
353
  this._iCurrentCount = oData.count || 0;
368
- this.fireAfterSearch({
369
- category: sKey,
370
- count: this._iCurrentCount,
371
- top: iTop,
372
- skip: iSkip,
373
- page: (iSkip / iTop) + 1,
374
- searchTerm: sSearchTerm,
375
- visible: bVisible,
376
- time: performance.now() - iStartTime,
377
- fetchType: bVisible ? "data" : "count"
378
- });
354
+ this.setNoDataText(this.translate("NoData"), "NoData");
355
+ this.fireFetchEvent("after", bVisible ? "data" : "count", oData);
379
356
  }.bind(this));
380
357
  }
381
358
  };
382
359
 
360
+ Category.prototype.applyDataChange = function (bSearchTermChanged, oResultData) {
361
+ var oData = {
362
+ count: oResultData.count,
363
+ top: this._iTop,
364
+ skip: this._iSkip,
365
+ page: Math.floor(this._iSkip / this._iTop) + 1,
366
+ data: oResultData.data
367
+ };
368
+ this.showLoadingPlaceholder(false, function () {
369
+ this.updateDataModel(oData);
370
+ this.fixHeight(bSearchTermChanged);
371
+ }.bind(this));
372
+ return oData;
373
+ };
374
+
375
+ Category.prototype.applyCount = function (oResultData) {
376
+ var oData = {
377
+ count: oResultData.count,
378
+ top: this._iTop,
379
+ skip: this._iSkip,
380
+ page: Math.floor(this._iSkip / this._iTop) + 1,
381
+ data: []
382
+ };
383
+ this.updateDataModel(oData);
384
+ return oData;
385
+ };
386
+
387
+ Category.prototype.fireFetchEvent = function (sBeforeAfter, sFetchType, oResultData) {
388
+ var oEventData = {
389
+ count: oResultData ? oResultData.count || 0 : 0,
390
+ category: this.getKey(),
391
+ top: this._iTop,
392
+ skip: this._iSkip,
393
+ page: (this._iSkip / this._iTop) + 1,
394
+ searchTerm: this._sSearchTerm,
395
+ visible: this.getVisible(),
396
+ time: performance.now(),
397
+ fetchType: sFetchType
398
+ };
399
+ if (sBeforeAfter === "before") {
400
+ this.fireBeforeSearch(oEventData);
401
+ } else if (sBeforeAfter === "after") {
402
+ this.fireAfterSearch(oEventData);
403
+ }
404
+ };
405
+
383
406
  Category.prototype.fetchData = function (sSearchTerm, iSkip, iTop) {
384
407
  return Promise.resolve({
385
408
  data: [],
@@ -394,41 +417,73 @@ sap.ui.define(
394
417
  });
395
418
  };
396
419
 
420
+ Category.prototype.showLoadingPlaceholder = function (bShow, fAfterPlaceholderHidden) {
421
+ if (bShow) {
422
+ if (this._iShowLoader) {
423
+ clearTimeout(this._iShowLoader);
424
+ }
425
+ this._iShowLoader = setTimeout(
426
+ function () {
427
+ this._oList.addStyleClass("loading");
428
+ }.bind(this), 200
429
+ );
430
+ } else if (this._iShowLoader) {
431
+ clearTimeout(this._iShowLoader);
432
+ this._iShowLoader = setTimeout(
433
+ function () {
434
+ this._oList.removeStyleClass("loading");
435
+ if (fAfterPlaceholderHidden) {
436
+ fAfterPlaceholderHidden();
437
+ }
438
+ this.invalidate();
439
+ this._bIsLoading = false;
440
+ }.bind(this), this._oList.hasStyleClass("loading") ? 100 : 0
441
+ );
442
+ }
443
+ };
444
+
445
+ Category.prototype.isLoading = function () {
446
+ return this._bIsLoading;
447
+ };
448
+
449
+ Category.prototype.getPlaceholderData = function () {
450
+ return {
451
+ text: " ",
452
+ description: " "
453
+ };
454
+ };
455
+
397
456
  Category.prototype.refreshData = function () {
398
457
  this._oDirty.iDataFetchRequired = 0;
399
458
  this.search(this.getSearchTerm(), 0, this.getPageSize());
400
459
  };
401
460
 
402
461
  Category.prototype.bindListViewItems = function (sView) {
462
+ var oTemplate = this.getItemTemplate(sView);
403
463
  this._oList.addStyleClass(sView);
404
464
  this._oList.bindItems({
405
465
  path: "data>/data",
406
- template: this.getItemTemplate(sView)
466
+ template: oTemplate
407
467
  });
408
468
  };
409
469
 
410
- Category.prototype.setNoDataText = function (sText, bDelayed, sType) {
411
- if (this._oList) {
470
+ Category.prototype.setNoDataText = function (sText, sType) {
471
+ this.updateIllustration(sText, "Hide");
472
+ if (this._oList && !this.bPaging) {
412
473
  this._oList.setNoDataText(" ");
413
- if (bDelayed) {
414
- setTimeout(function () {
415
- this.setNoDataText(sText, false, sType);
416
- }.bind(this), 200);
417
- return;
418
- }
419
- if (this.getUseIllustrations()) {
420
- this.updateIllustration(sText, sType);
421
- }
474
+ this.updateIllustration(sText, sType);
422
475
  this._oList.setNoDataText(sText);
423
476
  }
424
477
  };
425
478
 
426
479
  Category.prototype.getItemTemplate = function (sView) {
480
+ var oTemplate = null;
427
481
  switch (sView) {
428
- case "card": return this.createCardItemTemplate();
429
- case "tile": return this.createTileItemTemplate();
430
- default: return this.createListItemTemplate();
482
+ case "card": oTemplate = this.createCardItemTemplate(); break;
483
+ case "tile": oTemplate = this.createTileItemTemplate(); break;
484
+ default: oTemplate = this.createListItemTemplate();
431
485
  }
486
+ return oTemplate.addStyleClass("sapUiCEPSearchCatLI " + sView + " " + this.getKey());
432
487
  };
433
488
 
434
489
  Category.prototype.setFooter = function (sType) {
@@ -459,11 +514,13 @@ sap.ui.define(
459
514
  currentPage: "{= ${data>/page}}",
460
515
  selectPage: function (oEvent) {
461
516
  this.fixHeight();
517
+ this.bPaging = true;
462
518
  this.search(
463
519
  this.getSearchTerm(),
464
520
  oEvent.getParameter("startIndex"),
465
521
  oEvent.getParameter("pageSize")
466
522
  );
523
+ this.bPaging = false;
467
524
  }.bind(this)
468
525
  };
469
526
  };
@@ -503,6 +560,7 @@ sap.ui.define(
503
560
  Category.prototype.getCurrentView = function () {
504
561
  var sCurrentView = this.getProperty("currentView");
505
562
  if (sCurrentView === "categoryDefault") {
563
+ this.setProperty("currentView", this.getViewSettings().default);
506
564
  return this.getViewSettings().default;
507
565
  }
508
566
  return sCurrentView;
@@ -530,6 +588,7 @@ sap.ui.define(
530
588
  Category.prototype.setCurrentView = function (sView) {
531
589
  var sPreviousView = this.getCurrentView();
532
590
  if (sPreviousView !== sView) {
591
+ this._oList.unbindItems();
533
592
  this.setProperty("currentView", sView);
534
593
  sView = this.getCurrentView();
535
594
  this._oViewSwitch.setSelectedKey(sView);
@@ -565,7 +624,7 @@ sap.ui.define(
565
624
  };
566
625
 
567
626
  Category.prototype.createList = function () {
568
- this._oList = new SearchResultList({
627
+ this._oList = new Category.SearchResultList({
569
628
  inset: false,
570
629
  noDataText: " ",
571
630
  growingThreshold: this.getPageSize()
@@ -595,7 +654,7 @@ sap.ui.define(
595
654
  };
596
655
 
597
656
  Category.prototype.createDefaultItemTemplate = function () {
598
- var oListItem = new CustomListItem({
657
+ var oListItem = new Category.CustomListItem({
599
658
  press: this.itemNavigate.bind(this),
600
659
  type: "Active",
601
660
  content: [
@@ -607,21 +666,26 @@ sap.ui.define(
607
666
  items: [
608
667
  new Avatar(this.getItemAvatarSettings())
609
668
  .addStyleClass("sapUiSmallMarginBegin"),
610
- new ObjectIdentifier({
611
- text: "{data>description}",
612
- title: "{data>title}",
613
- titleActive: "{= !!${data>_navigation} || !!${data>url}}",
614
- titlePress: this.itemNavigate.bind(this)
615
- }).addStyleClass("sapUiSmallMarginBeginEnd")
669
+ new ObjectIdentifier(this.getItemObjectIdentifierSettings())
670
+ .addStyleClass("sapUiSmallMarginBeginEnd")
616
671
  ]
617
672
  })
618
673
  ]
619
674
  })
620
675
  ]
621
- }).addStyleClass("sapUiCEPSearchCatLI");
676
+ });
622
677
  return oListItem;
623
678
  };
624
679
 
680
+ Category.prototype.getItemObjectIdentifierSettings = function () {
681
+ return {
682
+ text: "{data>description}",
683
+ title: "{data>title}",
684
+ titleActive: "{= !!${data>_navigation} || !!${data>url}}",
685
+ titlePress: this.itemNavigate.bind(this)
686
+ };
687
+ };
688
+
625
689
  Category.prototype.getItemAvatarSettings = function (sIconBinding) {
626
690
  return {
627
691
  fallbackIcon: this._oCategoryConfig.icon.src,
@@ -654,7 +718,8 @@ sap.ui.define(
654
718
  text: "{i18n>CATEGORIES.All.ViewAll}",
655
719
  press: function () {
656
720
  this.fireViewAll({
657
- key: this.getKey()
721
+ key: this.getKey(),
722
+ currentView: this.getCurrentView()
658
723
  });
659
724
  }.bind(this)
660
725
  }),
@@ -677,42 +742,57 @@ sap.ui.define(
677
742
  };
678
743
 
679
744
  Category.prototype.updateIllustration = function (sText, sType) {
745
+ if (!this.getUseIllustrations()) {
746
+ return;
747
+ }
680
748
  if (!this._oNoDataIllustration) {
681
749
  this._oNoDataIllustration = new IllustratedMessage({
682
750
  illustrationType: IllustrationType.SimpleNotFoundMagnifier,
683
751
  enableDefaultTitleAndDescription: false,
684
752
  illustrationSize: "Spot",
685
- additionalContent: new Button({
686
- text: "Refresh",
753
+ additionalContent: [new Button({
754
+ text: this._oResourceBundle.getText("CATEGORY.Views.RefreshButton"),
755
+ visible: false,
687
756
  press: function () {
688
- this.refreshData();
757
+ this.fixHeight();
758
+ setTimeout(function () {
759
+ this.refreshData();
760
+ }.bind(this), 600);
761
+ this.updateIllustration(this.translate("LoadingData"), "Loading");
689
762
  }.bind(this)
690
- })
691
- });
692
- }
693
- if (!this._oLoadingIllustration) {
694
- this._oLoadingIllustration = new IllustratedMessage({
695
- illustrationType: IllustrationType.SimpleMagnifier,
696
- illustrationSize: "Spot",
697
- enableDefaultTitleAndDescription: false
763
+ })]
698
764
  });
699
765
  }
700
- this.setAggregation("_nodata", null);
701
- if (sType === "NoData") {
702
- if (this._iCurrentCount === 0) {
703
- this._oNoDataIllustration.setTitle(sText);
704
- this.setAggregation("_nodata", this._oNoDataIllustration);
766
+ if (this._iCurrentCount === 0) {
767
+ if (sType === "NoData") {
768
+ if (this._iCurrentCount === 0) {
769
+ this._oNoDataIllustration.setTitle(sText);
770
+ this._oNoDataIllustration.setIllustrationType(IllustrationType.SimpleNotFoundMagnifier);
771
+ this.setAggregation("_nodata", this._oNoDataIllustration);
772
+ this._oNoDataIllustration.getAdditionalContent()[0].setVisible(true);
773
+ }
774
+ } else if (sType === "Loading") {
775
+ if (this._iCurrentCount === 0) {
776
+ this._oNoDataIllustration.setTitle(sText);
777
+ this._oNoDataIllustration.setIllustrationType(IllustrationType.SimpleNotFoundMagnifier);
778
+ this.setAggregation("_nodata", this._oNoDataIllustration);
779
+ this._oNoDataIllustration.getAdditionalContent()[0].setVisible(false);
780
+ }
705
781
  }
706
- } else if (sType === "Loading") {
707
- this._oLoadingIllustration.setTitle(sText);
708
- this.setAggregation("_nodata", this._oLoadingIllustration);
782
+ } else {
783
+ this.setAggregation("_nodata", null);
709
784
  }
710
785
  };
711
786
 
712
- Category.prototype.fixHeight = function () {
787
+ Category.prototype.fixHeight = function (bReset) {
713
788
  if (!this.getDomRef()) {
714
789
  return;
715
790
  }
791
+ if (bReset) {
792
+ this.getDomRef().style.setProperty("--tmpPageSize", "unset");
793
+ this._iCurrentHeight = 0;
794
+ return;
795
+ }
716
796
  if (this._oList && this._oList.getVisible() && this._oList.getDomRef()) {
717
797
  this._iCurrentHeight = Math.max(this._oList.getDomRef().offsetHeight, this._iCurrentHeight);
718
798
  }
@@ -8,7 +8,7 @@ sap.ui.define([
8
8
  "sap/ui/core/delegate/ItemNavigation",
9
9
  "../appendStyleVars",
10
10
  "sap/ui/dom/includeStylesheet"
11
- ], function (
11
+ ], function (
12
12
  Control,
13
13
  Button,
14
14
  ItemNavigation,