@sapui5/sap.ushell 1.118.0 → 1.119.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (372) hide show
  1. package/package.json +6 -5
  2. package/src/main/js/sap/ushell/.library +1 -1
  3. package/src/main/js/sap/ushell/ApplicationType.js +1 -1
  4. package/src/main/js/sap/ushell/CanvasShapesManager.js +13 -7
  5. package/src/main/js/sap/ushell/Config.js +1 -1
  6. package/src/main/js/sap/ushell/Container.js +255 -185
  7. package/src/main/js/sap/ushell/EventHub.js +1 -1
  8. package/src/main/js/sap/ushell/Fiori20Adapter.js +1 -1
  9. package/src/main/js/sap/ushell/Fiori20AdapterTest.js +2 -2
  10. package/src/main/js/sap/ushell/Layout.js +3 -3
  11. package/src/main/js/sap/ushell/NWBCInterface.js +3 -3
  12. package/src/main/js/sap/ushell/TechnicalParameters.js +3 -3
  13. package/src/main/js/sap/ushell/UIActions.js +44 -44
  14. package/src/main/js/sap/ushell/URLTemplateProcessor.js +1 -1
  15. package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +1 -1
  16. package/src/main/js/sap/ushell/Ui5ServiceFactory.js +4 -4
  17. package/src/main/js/sap/ushell/User.js +1 -1
  18. package/src/main/js/sap/ushell/UserActivityLog.js +8 -8
  19. package/src/main/js/sap/ushell/_ApplicationType/guiResolution.js +5 -5
  20. package/src/main/js/sap/ushell/_ApplicationType/systemAlias.js +1 -1
  21. package/src/main/js/sap/ushell/_ApplicationType/urlTemplateResolution.js +12 -7
  22. package/src/main/js/sap/ushell/_Config/utils.js +5 -5
  23. package/src/main/js/sap/ushell/_URLTemplateProcessor/DefinitionParameterSetBuilder.js +1 -1
  24. package/src/main/js/sap/ushell/_URLTemplateProcessor/DependencyGraph.js +1 -1
  25. package/src/main/js/sap/ushell/_URLTemplateProcessor/Functions.js +1 -1
  26. package/src/main/js/sap/ushell/_URLTemplateProcessor/Resolvers.js +1 -1
  27. package/src/main/js/sap/ushell/_URLTemplateProcessor/TemplateParameterParser.js +1 -1
  28. package/src/main/js/sap/ushell/_URLTemplateProcessor/utils.js +1 -1
  29. package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +14 -8
  30. package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +4 -5
  31. package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
  32. package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +1 -2
  33. package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +12 -13
  34. package/src/main/js/sap/ushell/adapters/cdm/MenuAdapter.js +1 -1
  35. package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +4 -3
  36. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
  37. package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
  38. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +2 -2
  39. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
  40. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
  41. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
  42. package/src/main/js/sap/ushell/adapters/cdm/_Personalization/internals.js +1 -1
  43. package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +5 -2
  44. package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +4 -1
  45. package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +3 -4
  46. package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +10 -11
  47. package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +1 -1
  48. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +1 -1
  49. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
  50. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +1 -1
  51. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
  52. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +1 -1
  53. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
  54. package/src/main/js/sap/ushell/adapters/cdm/v3/utilsCdm.js +2 -2
  55. package/src/main/js/sap/ushell/adapters/cep/MenuAdapter.js +0 -1
  56. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +3 -4
  57. package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +3 -2
  58. package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +3 -3
  59. package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +1 -1
  60. package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +2 -3
  61. package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +3 -3
  62. package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +1 -3
  63. package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +2 -3
  64. package/src/main/js/sap/ushell/adapters/local/MenuAdapter.js +1 -1
  65. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +1 -1
  66. package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
  67. package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +2 -2
  68. package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +1 -2
  69. package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +1 -1
  70. package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +1 -1
  71. package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +1 -1
  72. package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
  73. package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +1 -2
  74. package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +1 -1
  75. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +5 -9
  76. package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/Renderer.js +5 -3
  77. package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/RendererExtensions.js +31 -3
  78. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycleAgent.js +2 -0
  79. package/src/main/js/sap/ushell/appRuntime/ui5/services/Bookmark.js +7 -3
  80. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
  81. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/FLPLoader.js +1 -1
  82. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/logger.js +1 -1
  83. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/state.js +3 -3
  84. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5.js +2 -2
  85. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +1 -1
  86. package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +1 -0
  87. package/src/main/js/sap/ushell/bootstrap/common/common.load.core-min.js +2 -2
  88. package/src/main/js/sap/ushell/bootstrap/common/common.load.launchpad.js +7 -3
  89. package/src/main/js/sap/ushell/bootstrap/common/common.load.script.js +4 -4
  90. package/src/main/js/sap/ushell/bootstrap/common/common.util.js +7 -7
  91. package/src/main/js/sap/ushell/bootstrap/sandbox2/sandboxConfig.json +214 -0
  92. package/src/main/js/sap/ushell/bootstrap/sandbox2/sandboxSite.json +511 -0
  93. package/src/main/js/sap/ushell/bootstrap/sandbox2.js +398 -0
  94. package/src/main/js/sap/ushell/components/CatalogsManager.js +26 -25
  95. package/src/main/js/sap/ushell/components/ComponentKeysHandler.js +20 -15
  96. package/src/main/js/sap/ushell/components/DestroyHelper.js +2 -2
  97. package/src/main/js/sap/ushell/components/HomepageManager.js +6 -6
  98. package/src/main/js/sap/ushell/components/_HeaderManager/ControlManager.js +1 -1
  99. package/src/main/js/sap/ushell/components/_HomepageManager/PagingManager.js +5 -5
  100. package/src/main/js/sap/ushell/components/appfinder/AppFinder.controller.js +19 -15
  101. package/src/main/js/sap/ushell/components/appfinder/AppFinderView.js +12 -12
  102. package/src/main/js/sap/ushell/components/appfinder/Catalog.controller.js +18 -18
  103. package/src/main/js/sap/ushell/components/appfinder/CatalogView.js +1 -1
  104. package/src/main/js/sap/ushell/components/appfinder/EasyAccess.controller.js +2 -2
  105. package/src/main/js/sap/ushell/components/appfinder/HierarchyApps.controller.js +6 -6
  106. package/src/main/js/sap/ushell/components/appfinder/VisualizationOrganizerHelper.js +4 -4
  107. package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
  108. package/src/main/js/sap/ushell/components/applicationIntegration/AppLifeCycle.js +8 -6
  109. package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +2 -2
  110. package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +1 -1
  111. package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +1 -1
  112. package/src/main/js/sap/ushell/components/applicationIntegration/application/WebGUIStatefulHandler.js +5 -5
  113. package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +21 -26
  114. package/src/main/js/sap/ushell/components/applicationIntegration/elements/model.js +1 -1
  115. package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +1 -1
  116. package/src/main/js/sap/ushell/components/applicationIntegration/relatedShellElements/RelatedShellElements.js +1 -1
  117. package/src/main/js/sap/ushell/components/cards/Configuration.controller.js +2 -2
  118. package/src/main/js/sap/ushell/components/cepsearchresult/app/Main.controller.js +6 -2
  119. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Category.js +44 -6
  120. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Application.js +22 -9
  121. package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +23 -16
  122. package/src/main/js/sap/ushell/components/contentFinder/Component.js +1 -1
  123. package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +1 -1
  124. package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +1 -1
  125. package/src/main/js/sap/ushell/components/contentFinder/controller/WidgetGallery.controller.js +1 -1
  126. package/src/main/js/sap/ushell/components/contentFinder/manifest.json +1 -1
  127. package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
  128. package/src/main/js/sap/ushell/components/factsheet/controls/PictureTile.js +1 -2
  129. package/src/main/js/sap/ushell/components/factsheet/controls/PictureViewer.js +5 -6
  130. package/src/main/js/sap/ushell/components/factsheet/controls/PictureViewerItem.js +1 -2
  131. package/src/main/js/sap/ushell/components/factsheet/factory/ThingInspector.js +3 -3
  132. package/src/main/js/sap/ushell/components/homeApp/error/HomeAppError.controller.js +0 -1
  133. package/src/main/js/sap/ushell/components/homeApp/error/HomeAppError.view.xml +7 -6
  134. package/src/main/js/sap/ushell/components/homepage/ActionMode.js +1 -1
  135. package/src/main/js/sap/ushell/components/homepage/DashboardContent.controller.js +2 -7
  136. package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +13 -13
  137. package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +1 -1
  138. package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +1 -1
  139. package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
  140. package/src/main/js/sap/ushell/components/pages/ActionMode.js +10 -10
  141. package/src/main/js/sap/ushell/components/pages/Component.js +1 -1
  142. package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +1 -1
  143. package/src/main/js/sap/ushell/components/pages/StateManager.js +2 -2
  144. package/src/main/js/sap/ushell/components/pages/controller/ImportDialog.controller.js +12 -12
  145. package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +93 -95
  146. package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
  147. package/src/main/js/sap/ushell/components/pages/view/PageRuntime.view.xml +31 -23
  148. package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +1 -1
  149. package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
  150. package/src/main/js/sap/ushell/components/shell/MenuBar/controller/MenuBar.controller.js +7 -6
  151. package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
  152. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +1 -3
  153. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +2 -2
  154. package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +1 -1
  155. package/src/main/js/sap/ushell/components/shell/Notifications/Notifications.controller.js +2 -2
  156. package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +1 -1
  157. package/src/main/js/sap/ushell/components/shell/Search/ESearch.js +1 -1
  158. package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
  159. package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +2 -2
  160. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchCEP.controller.js +74 -16
  161. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchFieldFragment.fragment.xml +2 -1
  162. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +1 -2
  163. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +1 -2
  164. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +1 -1
  165. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchServiceProvider.js +1 -2
  166. package/src/main/js/sap/ushell/components/shell/Settings/Component.js +1 -1
  167. package/src/main/js/sap/ushell/components/shell/Settings/ErrorMessageHelper.js +8 -9
  168. package/src/main/js/sap/ushell/components/shell/Settings/UserSettings.controller.js +53 -13
  169. package/src/main/js/sap/ushell/components/shell/Settings/UserSettings.view.xml +5 -0
  170. package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +41 -38
  171. package/src/main/js/sap/ushell/components/shell/Settings/notifications/NotificationsSetting.controller.js +1 -1
  172. package/src/main/js/sap/ushell/components/shell/Settings/userActivities/UserActivitiesSetting.controller.js +2 -2
  173. package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/UserDefaultsForm.js +1 -1
  174. package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/controller/UserDefaultsSetting.controller.js +7 -3
  175. package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +1 -1
  176. package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +1 -1
  177. package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTile.view.js +0 -2
  178. package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTileTmp.view.js +0 -2
  179. package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/DynamicTileTmp.view.js +0 -2
  180. package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.view.js +0 -2
  181. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.controller.js +1 -1
  182. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.view.js +0 -2
  183. package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/oData4Analytics.js +41 -48
  184. package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/smartBusinessUtil.js +3 -3
  185. package/src/main/js/sap/ushell/components/tiles/utils.js +1 -1
  186. package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +5 -18
  187. package/src/main/js/sap/ushell/components/visualizationOrganizer/VisualizationOrganizerPopover.fragment.xml +3 -3
  188. package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +1 -1
  189. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +1 -1
  190. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +65 -95
  191. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.layout.js +182 -90
  192. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageHost.js +1 -1
  193. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +1 -1
  194. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +1 -1
  195. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +1 -1
  196. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +1 -1
  197. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnRenderer.js +0 -2
  198. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +1 -1
  199. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +53 -3
  200. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRowRenderer.js +3 -0
  201. package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
  202. package/src/main/js/sap/ushell/components/workPageBuilder/view/WorkPageBuilder.view.xml +1 -0
  203. package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +1 -1
  204. package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +6 -2
  205. package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
  206. package/src/main/js/sap/ushell/components/workPageRuntime/services/NavigationResolver.js +1 -2
  207. package/src/main/js/sap/ushell/components/workPageRuntime/services/WorkPage.js +1 -2
  208. package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
  209. package/src/main/js/sap/ushell/library.js +4 -2
  210. package/src/main/js/sap/ushell/navigationMode.js +10 -5
  211. package/src/main/js/sap/ushell/override.js +1 -1
  212. package/src/main/js/sap/ushell/performance/FesrEnhancer.js +248 -187
  213. package/src/main/js/sap/ushell/performance/ShellAnalytics.js +206 -207
  214. package/src/main/js/sap/ushell/performance/StatisticalRecord.js +366 -230
  215. package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
  216. package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +39 -23
  217. package/src/main/js/sap/ushell/renderers/fiori2/RendererExtensions.js +105 -25
  218. package/src/main/js/sap/ushell/renderers/fiori2/Shell.controller.js +63 -52
  219. package/src/main/js/sap/ushell/renderers/fiori2/ShellLayout.js +1 -1
  220. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources.properties +1 -1
  221. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ko.properties +1 -1
  222. package/src/main/js/sap/ushell/renderers/fiori2/search/searchComponent/manifest.json +1 -1
  223. package/src/main/js/sap/ushell/services/AppConfiguration.js +3 -3
  224. package/src/main/js/sap/ushell/services/AppLifeCycle.js +1 -1
  225. package/src/main/js/sap/ushell/services/AppState.js +2 -3
  226. package/src/main/js/sap/ushell/services/Bookmark.js +1 -1
  227. package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +1 -1
  228. package/src/main/js/sap/ushell/services/CommonDataModel.js +4 -5
  229. package/src/main/js/sap/ushell/services/Configuration.js +1 -2
  230. package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +2 -2
  231. package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +1 -1
  232. package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +36 -33
  233. package/src/main/js/sap/ushell/services/DarkModeSupport.js +2 -2
  234. package/src/main/js/sap/ushell/services/EndUserFeedback.js +2 -2
  235. package/src/main/js/sap/ushell/services/LaunchPage.js +11 -8
  236. package/src/main/js/sap/ushell/services/Menu.js +31 -37
  237. package/src/main/js/sap/ushell/services/Message.js +1 -2
  238. package/src/main/js/sap/ushell/services/MessageBroker.js +1 -2
  239. package/src/main/js/sap/ushell/services/NavTargetResolution.js +58 -9
  240. package/src/main/js/sap/ushell/services/Navigation.js +1356 -0
  241. package/src/main/js/sap/ushell/services/NavigationDataProvider.js +7 -5
  242. package/src/main/js/sap/ushell/services/Notifications.js +16 -16
  243. package/src/main/js/sap/ushell/services/PageBuilding.js +1 -2
  244. package/src/main/js/sap/ushell/services/PagePersistence.js +6 -6
  245. package/src/main/js/sap/ushell/services/PageReferencing.js +2 -2
  246. package/src/main/js/sap/ushell/services/Pages.js +24 -25
  247. package/src/main/js/sap/ushell/services/Personalization.js +5 -5
  248. package/src/main/js/sap/ushell/services/PluginManager.js +1 -2
  249. package/src/main/js/sap/ushell/services/ReferenceResolver.js +2 -2
  250. package/src/main/js/sap/ushell/services/Search.js +1 -1
  251. package/src/main/js/sap/ushell/services/SearchCEP.js +2 -1
  252. package/src/main/js/sap/ushell/services/SearchableContent.js +85 -59
  253. package/src/main/js/sap/ushell/services/ShellNavigation.js +59 -17
  254. package/src/main/js/sap/ushell/services/ShellNavigationHashChanger.js +115 -39
  255. package/src/main/js/sap/ushell/services/SmartNavigation.js +4 -4
  256. package/src/main/js/sap/ushell/services/SpaceContent.js +5 -6
  257. package/src/main/js/sap/ushell/services/SupportTicket.js +1 -1
  258. package/src/main/js/sap/ushell/services/UITracer.js +5 -3
  259. package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
  260. package/src/main/js/sap/ushell/services/URLTemplate.js +2 -2
  261. package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +7 -7
  262. package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +1 -2
  263. package/src/main/js/sap/ushell/services/UserDefaultParameters.js +1 -1
  264. package/src/main/js/sap/ushell/services/UserInfo.js +1 -1
  265. package/src/main/js/sap/ushell/services/UserRecents.js +91 -69
  266. package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +10 -6
  267. package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +1 -3
  268. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Formatter.js +1 -1
  269. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundIndex.js +1 -1
  270. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundProvider.js +2 -5
  271. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/PrelaunchOperations.js +2 -2
  272. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Search.js +11 -11
  273. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/StagedLogger.js +1 -1
  274. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/SystemContext.js +1 -1
  275. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Utils.js +6 -6
  276. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/VirtualInbounds.js +1 -1
  277. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/XAppStateProcessing.js +2 -2
  278. package/src/main/js/sap/ushell/services/_CommonDataModel/PersonalizationProcessor.js +1 -2
  279. package/src/main/js/sap/ushell/services/_CommonDataModel/SiteConverter.js +1 -1
  280. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
  281. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +1 -1
  282. package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +9 -14
  283. package/src/main/js/sap/ushell/services/_MessageBroker/MessageBrokerEngine.js +1 -1
  284. package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +1 -1
  285. package/src/main/js/sap/ushell/services/_Personalization/ContextContainer.js +34 -21
  286. package/src/main/js/sap/ushell/services/_Personalization/Variant.js +5 -2
  287. package/src/main/js/sap/ushell/services/_Personalization/VariantSet.js +18 -12
  288. package/src/main/js/sap/ushell/services/_Personalization/utils.js +2 -2
  289. package/src/main/js/sap/ushell/services/_PluginManager/Extensions.js +1 -1
  290. package/src/main/js/sap/ushell/services/_PluginManager/HeaderExtensions.js +3 -3
  291. package/src/main/js/sap/ushell/services/_PluginManager/MenuExtensions.js +1 -1
  292. package/src/main/js/sap/ushell/services/_Ui5ComponentLoader/utils.js +1 -1
  293. package/src/main/js/sap/ushell/services/_UserRecents/RecentActivity.js +206 -214
  294. package/src/main/js/sap/ushell/services/_UserRecents/RecentAppsUsage.js +46 -54
  295. package/src/main/js/sap/ushell/services/_UserRecents/RecentsList.js +39 -40
  296. package/src/main/js/sap/ushell/services/_UserRecents/UserRecentsBase.js +29 -36
  297. package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstance.js +1 -1
  298. package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstanceAbap.js +1 -1
  299. package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstanceCdm.js +1 -1
  300. package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstanceLaunchPage.js +10 -8
  301. package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstanceLink.js +2 -2
  302. package/src/main/js/sap/ushell/services/appstate/LimitedBuffer.js +1 -2
  303. package/src/main/js/sap/ushell/services/appstate/Sequentializer.js +1 -1
  304. package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +1 -1
  305. package/src/main/js/sap/ushell/themes/base/SearchCEP.less +8 -0
  306. package/src/main/js/sap/ushell/themes/base/ShellHeader.less +12 -6
  307. package/src/main/js/sap/ushell/themes/base/WorkPage.less +34 -4
  308. package/src/main/js/sap/ushell/themes/base/WorkPageCell.less +3 -1
  309. package/src/main/js/sap/ushell/themes/base/WorkPageColumn.less +3 -76
  310. package/src/main/js/sap/ushell/themes/base/WorkPageColumnResizer.less +2 -1
  311. package/src/main/js/sap/ushell/themes/base/WorkPageRow.less +822 -6
  312. package/src/main/js/sap/ushell/themes/sap_horizon/SearchCEP.less +4 -0
  313. package/src/main/js/sap/ushell/themes/sap_horizon/ToolAreaItem.less +1 -1
  314. package/src/main/js/sap/ushell/themes/sap_horizon_dark/SearchCEP.less +4 -0
  315. package/src/main/js/sap/ushell/themes/sap_horizon_dark/ToolAreaItem.less +1 -1
  316. package/src/main/js/sap/ushell/themes/sap_horizon_hcb/SearchCEP.less +5 -0
  317. package/src/main/js/sap/ushell/themes/sap_horizon_hcw/SearchCEP.less +5 -0
  318. package/src/main/js/sap/ushell/ui/AppContainer.js +0 -1
  319. package/src/main/js/sap/ushell/ui/ContentNodeSelector.js +1 -1
  320. package/src/main/js/sap/ushell/ui/QuickAccess.js +2 -2
  321. package/src/main/js/sap/ushell/ui/ShellHeader.js +21 -5
  322. package/src/main/js/sap/ushell/ui/ShellHeaderRenderer.js +1 -0
  323. package/src/main/js/sap/ushell/ui/appfinder/AppBox.js +0 -1
  324. package/src/main/js/sap/ushell/ui/bookmark/SaveOnPage.view.xml +6 -6
  325. package/src/main/js/sap/ushell/ui/cards/FrequentActivitiesExtension.js +1 -1
  326. package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +1 -1
  327. package/src/main/js/sap/ushell/ui/footerbar/AboutButton.js +0 -1
  328. package/src/main/js/sap/ushell/ui/footerbar/AddBookmarkButton.js +32 -17
  329. package/src/main/js/sap/ushell/ui/footerbar/ContactSupportButton.js +0 -1
  330. package/src/main/js/sap/ushell/ui/footerbar/JamDiscussButton.js +0 -1
  331. package/src/main/js/sap/ushell/ui/footerbar/JamShareButton.js +0 -1
  332. package/src/main/js/sap/ushell/ui/footerbar/LogoutButton.js +0 -1
  333. package/src/main/js/sap/ushell/ui/footerbar/SaveAsTile.view.js +1 -12
  334. package/src/main/js/sap/ushell/ui/footerbar/SendAsEmailButton.js +0 -1
  335. package/src/main/js/sap/ushell/ui/launchpad/ActionItem.js +0 -1
  336. package/src/main/js/sap/ushell/ui/launchpad/AnchorItem.js +0 -1
  337. package/src/main/js/sap/ushell/ui/launchpad/AnchorNavigationBar.js +0 -1
  338. package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +1 -1
  339. package/src/main/js/sap/ushell/ui/launchpad/FailedTileDialog.js +4 -4
  340. package/src/main/js/sap/ushell/ui/launchpad/GroupHeaderActions.js +0 -1
  341. package/src/main/js/sap/ushell/ui/launchpad/GroupListItem.js +0 -1
  342. package/src/main/js/sap/ushell/ui/launchpad/LinkTileWrapper.js +1 -1
  343. package/src/main/js/sap/ushell/ui/launchpad/LoadingDialog.js +0 -1
  344. package/src/main/js/sap/ushell/ui/launchpad/Page.js +1 -1
  345. package/src/main/js/sap/ushell/ui/launchpad/PlusTile.js +0 -1
  346. package/src/main/js/sap/ushell/ui/launchpad/Section.js +3 -3
  347. package/src/main/js/sap/ushell/ui/launchpad/Tile.js +0 -1
  348. package/src/main/js/sap/ushell/ui/launchpad/TileContainer.js +0 -1
  349. package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +4 -5
  350. package/src/main/js/sap/ushell/ui/shell/RightFloatingContainer.js +1 -1
  351. package/src/main/js/sap/ushell/ui/shell/ShellHeadItem.js +7 -8
  352. package/src/main/js/sap/ushell/ui/shell/SysInfoBar.js +1 -1
  353. package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -2
  354. package/src/main/js/sap/ushell/ui/tile/DynamicTile.js +0 -1
  355. package/src/main/js/sap/ushell/ui/tile/ImageTile.js +0 -1
  356. package/src/main/js/sap/ushell/ui/tile/StaticTile.js +0 -1
  357. package/src/main/js/sap/ushell/ui/tile/TileBase.js +0 -1
  358. package/src/main/js/sap/ushell/ui/utils.js +1 -1
  359. package/src/main/js/sap/ushell/ui5service/ShellUIService.js +1 -1
  360. package/src/main/js/sap/ushell/ui5service/UserStatus.js +1 -1
  361. package/src/main/js/sap/ushell/ui5service/_ShellUIService/shelluiservice.class.factory.js +1 -1
  362. package/src/main/js/sap/ushell/utils/HttpClient.js +0 -1
  363. package/src/main/js/sap/ushell/utils/RestrictedJSONModel.js +1 -1
  364. package/src/main/js/sap/ushell/utils/UrlParsing.js +18 -14
  365. package/src/main/js/sap/ushell/utils/UrlShortening.js +2 -2
  366. package/src/main/js/sap/ushell/utils/objectOperations.js +1 -1
  367. package/src/main/js/sap/ushell/utils/type.js +1 -1
  368. package/src/main/js/sap/ushell/utils/utilsCdm.js +3 -3
  369. package/src/main/js/sap/ushell/utils.js +128 -21
  370. package/src/test/js/sap/ushell/bootstrap/sandbox.js +2 -2
  371. package/ui5.yaml +1 -0
  372. package/src/main/js/sap/ushell/appRuntime/ui5/services/Menu.js +0 -22
@@ -180,3 +180,7 @@ html.sap-phone #CEPSearchField.sapMFocus>.sapMSFF::before {
180
180
  font-family: inherit
181
181
  }
182
182
 
183
+ .searchCEPlistItemIcon {
184
+ color: #758ca4 !important;
185
+ }
186
+
@@ -3,7 +3,7 @@
3
3
  /* Horizon theme */
4
4
  /* ======================================== */
5
5
 
6
- .sapUshellToolAreaWrapper {
6
+ #toolArea-shellArea {
7
7
  background-color: @sapUiShellColor;
8
8
  }
9
9
 
@@ -175,3 +175,7 @@ html.sap-phone #CEPSearchField.sapMFocus>.sapMSFF::before {
175
175
  .sapUshellCEPSearchFieldMargin {
176
176
  margin-top: 0.1rem !important;
177
177
  }
178
+
179
+ .searchCEPlistItemIcon {
180
+ color: #a9b4be !important;
181
+ }
@@ -2,7 +2,7 @@
2
2
  /* CSS for control sap.ushell/ToolAreaItem */
3
3
  /* ======================================== */
4
4
 
5
- .sapUshellToolAreaWrapper {
5
+ #toolArea-shellArea {
6
6
  background-color: @sapUiShellColor;
7
7
  }
8
8
 
@@ -143,3 +143,8 @@
143
143
  text-decoration: none !important;
144
144
  }
145
145
  }
146
+
147
+ .searchCEPlistItemIcon {
148
+ color: #fff !important;
149
+ border: none !important;
150
+ }
@@ -147,3 +147,8 @@
147
147
  .sapUshellCEPListDivider:after {
148
148
  content : none !important;
149
149
  }
150
+
151
+ .searchCEPlistItemIcon {
152
+ color: #000 !important;
153
+ border: none !important;
154
+ }
@@ -25,7 +25,6 @@ sap.ui.define([
25
25
  * @param {object} [mSettings] initial settings for the new control
26
26
  * @class Application container
27
27
  * @extends sap.ui.core.Control
28
- * @constructor
29
28
  * @private
30
29
  * @name sap.ushell.ui.launchpad.AppContainer
31
30
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -191,7 +191,7 @@ sap.ui.define([
191
191
  /**
192
192
  * Retrieves the list of content nodes from the sap.ushell Bookmark service and saves them in the _internal model.
193
193
  *
194
- * @returns {Promise<void>} A promise that is resolved once the Bookmark service is loaded.
194
+ * @returns {Promise<undefined>} A promise that is resolved once the Bookmark service is loaded.
195
195
  * @private
196
196
  */
197
197
  ContentNodeSelector.prototype._loadContentNodes = function () {
@@ -77,7 +77,7 @@ sap.ui.define([
77
77
  * Updates the Quick Access dialog.
78
78
  *
79
79
  * @param {object} oDialog the Quick Access dialog.
80
- * @returns {Promise<void>} an empty Promise
80
+ * @returns {Promise<undefined>} an empty Promise
81
81
  * @private
82
82
  */
83
83
  _updateQuickAccessDialog: function (oDialog) {
@@ -218,7 +218,7 @@ sap.ui.define([
218
218
  *
219
219
  * @param {string} sFilterId the id of the IconTabFilter that should be active
220
220
  * @param {string} [sFocusIdAfterClose] the DOM id of the element to focus after close
221
- * @returns {Promise<void>} after the fragment was loaded.
221
+ * @returns {Promise<undefined>} after the fragment was loaded.
222
222
  * @since 1.65.0
223
223
  * @private
224
224
  */
@@ -100,8 +100,24 @@ sap.ui.define([
100
100
  EXP_S: "EXP_S"
101
101
  };
102
102
 
103
+ /**
104
+ * The range set for FLP including extra large desktops
105
+ * extending the range set SAP_STANDARD_EXTENDED by the range ExtraLargeDesktop
106
+ */
107
+ ShellHeader.prototype.FLPRangeSet = {
108
+ name: "Ushell",
109
+ rangeBorders: [600, 1024, 1440, 1920],
110
+ rangeNames: ["Phone", "Tablet", "Desktop", "LargeDesktop", "ExtraLargeDesktop"]
111
+ };
112
+
103
113
  ShellHeader.prototype.init = function () {
104
- Device.media.attachHandler(this.invalidate, this, Device.media.RANGESETS.SAP_STANDARD_EXTENDED);
114
+ Device.media.initRangeSet(
115
+ this.FLPRangeSet.name,
116
+ this.FLPRangeSet.rangeBorders,
117
+ "px",
118
+ this.FLPRangeSet.rangeNames
119
+ );
120
+ Device.media.attachHandler(this.invalidate, this, this.FLPRangeSet.name);
105
121
  Device.resize.attachHandler(this.refreshLayout, this);
106
122
 
107
123
  this.getCustomLogoAltText(); // Get the custom alt text for the logo
@@ -133,7 +149,7 @@ sap.ui.define([
133
149
  * @private
134
150
  */
135
151
  ShellHeader.prototype.exit = function () {
136
- Device.media.detachHandler(this.invalidate, this, Device.media.RANGESETS.SAP_STANDARD_EXTENDED);
152
+ Device.media.detachHandler(this.invalidate, this, this.FLPRangeSet.name);
137
153
  Device.resize.detachHandler(this.refreshLayout, this);
138
154
 
139
155
  if (this._rerenderLogoNavigationFilterfnRerenderLogoNavigationFilter) {
@@ -348,7 +364,7 @@ sap.ui.define([
348
364
  };
349
365
 
350
366
  /**
351
- * Set the correct tooltip for the ShellAppTitle.
367
+ * Sets the correct tooltip for the ShellAppTitle.
352
368
  * If the ShellAppTitle has a navigation menu it should be: "Navigation menu".
353
369
  * Otherwise there should only be a tooltip if the Title is truncated.
354
370
  */
@@ -389,11 +405,11 @@ sap.ui.define([
389
405
  };
390
406
 
391
407
  ShellHeader.prototype.isExtraLargeState = function () {
392
- return Device.media.getCurrentRange(Device.media.RANGESETS.SAP_STANDARD_EXTENDED).from === 1440;
408
+ return Device.media.getCurrentRange(this.FLPRangeSet.name).from === this.FLPRangeSet.rangeBorders[3];
393
409
  };
394
410
 
395
411
  ShellHeader.prototype.isMediumOrBiggerState = function () {
396
- return Device.media.getCurrentRange(Device.media.RANGESETS.SAP_STANDARD_EXTENDED).from >= 600;
412
+ return Device.media.getCurrentRange(this.FLPRangeSet.name).from >= this.FLPRangeSet.rangeBorders[0];
397
413
  };
398
414
 
399
415
  ShellHeader.prototype.isPhoneState = function () {
@@ -90,6 +90,7 @@ sap.ui.define([
90
90
  var oSearch = shellHeader.getSearch();
91
91
  rm.openStart("div");
92
92
  rm.attr("id", shellHeader.getId() + "-hdr-search");
93
+ rm.attr("data-help-id", "shellHeader-search");
93
94
  rm.class("sapUshellShellSearch");
94
95
  rm.style("max-width", shellHeader.getSearchWidth() + "rem");
95
96
  if (shellHeader.getSearchState() === "COL") {
@@ -21,7 +21,6 @@ sap.ui.define([
21
21
  * Add your documentation for the new ui/appfinder/AppBox
22
22
  * @extends sap.ui.core.Control
23
23
  *
24
- * @constructor
25
24
  * @public
26
25
  * @name sap.ushell.ui.appfinder.AppBox
27
26
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -5,7 +5,7 @@
5
5
  xmlns:launchpad="sap.ushell.ui.launchpad"
6
6
  xmlns:ushell="sap.ushell.ui"
7
7
  controllerName="sap.ushell.ui.bookmark.SaveOnPage">
8
- <Label id="previewLbl" text="{i18n>previewFld}" visible="{/showPreview}" labelFor="saveAsTileHBox" />
8
+ <Label id="previewLbl" text="{i18n>previewFld}" visible="{/showPreview}" labelFor="previewTile" />
9
9
  <FlexBox
10
10
  id="saveAsTileHBox"
11
11
  class="sapUshellShellBG sapUshellBookmarkFormPreviewBoxBottomMargin sapUshellSaveAsTileHBox"
@@ -17,8 +17,8 @@
17
17
  <core:HTML
18
18
  id="previewBackgroundElement"
19
19
  content="&lt;div class=&quot;sapUshellShellBG sapContrastPlus sapUiStrongBackgroundColor&quot;&gt;&lt;/div&gt;" />
20
- <GenericTile header="{/title}" subheader="{/subtitle}" size="Auto" visible="{= !!${/serviceUrl}}">
21
- <TileContent size="Auto" footer="{/info}" unit="{/numberUnit}">
20
+ <GenericTile header="{/title}" subheader="{/subtitle}" visible="{= !!${/serviceUrl}}" id="previewTile">
21
+ <TileContent footer="{/info}" unit="{/numberUnit}">
22
22
  <NumericContent
23
23
  icon="{/icon}"
24
24
  value="{/numberValue}"
@@ -27,8 +27,8 @@
27
27
  withMargin="false" />
28
28
  </TileContent>
29
29
  </GenericTile>
30
- <GenericTile header="{/title}" subheader="{/subtitle}" size="Auto" visible="{= !${/serviceUrl}}">
31
- <TileContent size="Auto" footer="{/info}">
30
+ <GenericTile header="{/title}" subheader="{/subtitle}" visible="{= !${/serviceUrl}}">
31
+ <TileContent footer="{/info}">
32
32
  <ImageContent src="{/icon}" />
33
33
  </TileContent>
34
34
  </GenericTile>
@@ -62,4 +62,4 @@
62
62
  id="SelectedNodesComboBox"
63
63
  labelId="ContentNodeLabel"
64
64
  valueHelpEndButtonPressed=".onValueHelpEndButtonPressed" />
65
- </mvc:View>
65
+ </mvc:View>
@@ -162,7 +162,7 @@ sap.ui.define([
162
162
  /**
163
163
  * Checks if the navigation for a given context is supported. This is the case if eigther the activity
164
164
  * Url property is a Url or a parseable ShellHash.
165
- * @param {Object} oActivity activity for which the navigation support is checked
165
+ * @param {object} oActivity activity for which the navigation support is checked
166
166
  * @returns {Promise} Resolves to true if the navigation is supported or an Url is given, false else.
167
167
  *
168
168
  * @private
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @fileOverview Extension for recent activities card
5
5
  *
6
- * @version 1.118.0
6
+ * @version 1.119.0
7
7
  */
8
8
  sap.ui.define([
9
9
  "sap/ui/integration/Extension",
@@ -19,7 +19,6 @@ sap.ui.define([
19
19
  * @param {object} [mSettings] initial settings for the new control
20
20
  * @class Add your documentation for the new ui/footerbar/AboutButton
21
21
  * @extends sap.ushell.ui.launchpad.ActionItem
22
- * @constructor
23
22
  * @public
24
23
  * @name sap.ushell.ui.footerbar.AboutButton
25
24
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -285,17 +285,27 @@ sap.ui.define([
285
285
  AddBookmarkButton.prototype._handleOKButtonPress = function () {
286
286
  if (this.bSpaceEnabled) {
287
287
  this._handleOKButtonPressSpacesMode();
288
- } else {
289
- this._handleOKButtonPressClassicMode();
288
+ return;
290
289
  }
290
+ /**
291
+ * @deprecated since 1.119.
292
+ */
293
+ (function () {
294
+ this._handleOKButtonPressClassicMode();
295
+ }).bind(this)();
291
296
  };
292
297
 
293
298
  AddBookmarkButton.prototype._handleCancelButtonPress = function () {
294
299
  if (this.bSpaceEnabled) {
295
300
  this._handleCancelButtonPressSpacesMode();
296
- } else {
297
- this._handleCancelButtonPressClassicMode();
301
+ return;
298
302
  }
303
+ /**
304
+ * @deprecated since 1.119.
305
+ */
306
+ (function () {
307
+ this._handleCancelButtonPressClassicMode();
308
+ }).bind(this)();
299
309
  };
300
310
 
301
311
  AddBookmarkButton.prototype.setTitle = function (sTitle) {
@@ -555,10 +565,16 @@ sap.ui.define([
555
565
  });
556
566
  };
557
567
 
568
+ /**
569
+ * @deprecated since 1.118.
570
+ */
558
571
  AddBookmarkButton.prototype._handleCancelButtonPressClassicMode = function () {
559
572
  this.oDialog.close();
560
573
  };
561
574
 
575
+ /**
576
+ * @deprecated since 1.118.
577
+ */
562
578
  AddBookmarkButton.prototype._handleOKButtonPressClassicMode = function () {
563
579
  var oBookmarkTileView = this.getBookmarkTileView();
564
580
  var oBookmarkTileController = oBookmarkTileView.getController();
@@ -603,22 +619,21 @@ sap.ui.define([
603
619
  };
604
620
 
605
621
  AddBookmarkButton.prototype.setEnabled = function (bEnabled) {
606
- var sState = "",
607
- bPersonalization = true,
608
- oShellConfiguration;
609
- if (sap.ushell.renderers && sap.ushell.renderers.fiori2 && sap.ushell.renderers.fiori2.RendererExtensions) {
610
- oShellConfiguration = sap.ushell.renderers.fiori2.RendererExtensions.getConfiguration();
611
- if (oShellConfiguration.appState) {
612
- sState = oShellConfiguration.appState;
613
- }
614
- if (oShellConfiguration.enablePersonalization !== undefined) {
615
- bPersonalization = oShellConfiguration.enablePersonalization;
622
+ var sState = "";
623
+ var bPersonalizationEnabled = true;
624
+
625
+ if (sap.ushell.Container) {
626
+ sState = Config.last("/core/shell/model/currentState/stateName");
627
+ var bConfigPersonalization = Config.last("/core/shell/enablePersonalization");
628
+ if (bConfigPersonalization !== undefined) {
629
+ bPersonalizationEnabled = bConfigPersonalization;
616
630
  }
617
- if (!bPersonalization && this.bSpaceEnabled && this.bMyHomeEnabled) {
618
- bPersonalization = true;
631
+
632
+ if (!bPersonalizationEnabled && this.bSpaceEnabled && this.bMyHomeEnabled) {
633
+ bPersonalizationEnabled = true;
619
634
  }
620
635
  }
621
- if (sState === "headerless" || sState === "standalone" || sState === "embedded" || sState === "merged" || !bPersonalization) {
636
+ if (sState === "headerless" || sState === "standalone" || sState === "embedded" || sState === "merged" || !bPersonalizationEnabled) {
622
637
  bEnabled = false;
623
638
  }
624
639
  if (!sap.ushell.Container) {
@@ -34,7 +34,6 @@ sap.ui.define([
34
34
  * @param {object} [mSettings] initial settings for the new control
35
35
  * @class Add your documentation for the new ui/footerbar/CreateTicketButton
36
36
  * @extends sap.ushell.ui.launchpad.ActionItem
37
- * @constructor
38
37
  * @public
39
38
  * @name sap.ushell.ui.footerbar.ContactSupportButton
40
39
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -23,7 +23,6 @@ sap.ui.define([
23
23
  * @param {object} [mSettings] initial settings for the new control
24
24
  * @class Add your documentation for the new ui/footerbar/JamDiscussButton
25
25
  * @extends sap.m.Button
26
- * @constructor
27
26
  * @public
28
27
  * @name sap.ushell.ui.footerbar.JamDiscussButton
29
28
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -30,7 +30,6 @@ sap.ui.define([
30
30
  * Add your documentation for the new ui/footerbar/JamShareButton
31
31
  * @extends sap.m.Button
32
32
  *
33
- * @constructor
34
33
  * @public
35
34
  * @name sap.ushell.ui.footerbar.JamShareButton
36
35
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -33,7 +33,6 @@ sap.ui.define([
33
33
  * @param {object} [mSettings] initial settings for the new control
34
34
  * @class A logout button for the UShell footerbar.
35
35
  * @extends sap.ushell.ui.launchpad.ActionItem
36
- * @constructor
37
36
  * @public
38
37
  * @name sap.ushell.ui.footerbar.LogoutButton
39
38
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -86,9 +86,7 @@ sap.ui.define([
86
86
  oTile = new GenericTile({
87
87
  header: "{/title}",
88
88
  subheader: "{/subtitle}",
89
- size: "Auto",
90
89
  tileContent: [new TileContent({
91
- size: "Auto",
92
90
  footer: "{/info}",
93
91
  unit: "{/numberUnit}",
94
92
  // We'll utilize NumericContent for the "Dynamic" content.
@@ -106,9 +104,7 @@ sap.ui.define([
106
104
  oTile = new GenericTile({
107
105
  header: "{/title}",
108
106
  subheader: "{/subtitle}",
109
- size: "Auto",
110
107
  tileContent: [new TileContent({
111
- size: "Auto",
112
108
  footer: "{/info}",
113
109
  content: new ImageContent({
114
110
  src: "{/icon}"
@@ -121,14 +117,7 @@ sap.ui.define([
121
117
  var tileWrapper = new Tile({
122
118
  long: false,
123
119
  tileViews: [oTile],
124
- noContainerMode: true,
125
- afterRendering: function (/*oEvent*/) {
126
- var jqTile = jQuery(this.getDomRef()),
127
- jqGenericTile = jqTile.find(".sapMGT");
128
-
129
- // remove focus from tile
130
- jqGenericTile.removeAttr("tabindex");
131
- }
120
+ noContainerMode: true
132
121
  });
133
122
 
134
123
  var oPreviewBackgroundElement = new HTML("previewBackgroundElement", {
@@ -31,7 +31,6 @@ sap.ui.define([
31
31
  * Add your documentation for the new ui/footerbar/SendAsEmailButton
32
32
  * @extends sap.m.Button
33
33
  *
34
- * @constructor
35
34
  * @public
36
35
  * @name sap.ushell.ui.footerbar.SendAsEmailButton
37
36
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -22,7 +22,6 @@ sap.ui.define([
22
22
  * @param {object} [mSettings] initial settings for the new control
23
23
  * @class
24
24
  * @extends sap.m.Button
25
- * @constructor
26
25
  * @public
27
26
  * @name sap.ushell.ui.launchpad.ActionItem
28
27
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -21,7 +21,6 @@ sap.ui.define([
21
21
  * Add your documentation for the new ui/launchpad/AnchorItem
22
22
  * @extends sap.ui.core.Control
23
23
  *
24
- * @constructor
25
24
  * @private
26
25
  * @name sap.ushell.ui.launchpad.AnchorItem
27
26
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -36,7 +36,6 @@ sap.ui.define([
36
36
  * @class Add your documentation for the newui/launchpad/AnchorNavigationBar
37
37
  * @extends sap.m.Bar
38
38
  * @lends sap.ushell.ui.launchpad.AnchorNavigationBar.prototype
39
- * @constructor
40
39
  * @public
41
40
  * @name sap.ushell.ui.launchpad.AnchorNavigationBar
42
41
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -7,7 +7,7 @@
7
7
  * of recreating them. Items which get removed from the aggregation get destroyed and items which get added to the
8
8
  * aggregation get created.
9
9
  *
10
- * @version 1.118.0
10
+ * @version 1.119.0
11
11
  */
12
12
  sap.ui.define([
13
13
  "sap/ui/base/ManagedObject",
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  * Helper function to get the Tile from any child of it. If the Tile itself is given, then it is returned.
22
22
  *
23
23
  * @param {sap.ui.core.Control} oSourceControl The source control. Must be the Tile itself or any child of it.
24
- * @return {sap.ui.core.Control} The Tile.
24
+ * @returns {sap.ui.core.Control} The Tile.
25
25
  * @private
26
26
  */
27
27
  function _getTile (oSourceControl) {
@@ -34,7 +34,7 @@ sap.ui.define([
34
34
  * Helper function to get the Group from any child of it. If the Group itself is given, then it is returned.
35
35
  *
36
36
  * @param {sap.ui.core.Control} oSourceControl The source control. Must be the Group itself or any child of it.
37
- * @return {sap.ushell.ui.launchpad.TileContainer} The Group.
37
+ * @returns {sap.ushell.ui.launchpad.TileContainer} The Group.
38
38
  * @private
39
39
  */
40
40
  function _getGroup (oSourceControl) {
@@ -47,7 +47,7 @@ sap.ui.define([
47
47
  * Helper function to gather debug information from a Tile or any child of it.
48
48
  *
49
49
  * @param {sap.ui.core.Control} oSourceControl The source control. Must be the Tile itself or any child of it.
50
- * @return {object} The "debugInfo" object containing the Tile debug information.
50
+ * @returns {object} The "debugInfo" object containing the Tile debug information.
51
51
  * @private
52
52
  */
53
53
  function _getDebugInfo (oSourceControl) {
@@ -83,7 +83,7 @@ sap.ui.define([
83
83
  * The same instance is reused whenever the Tile is within the same View of any previous invocation.
84
84
  *
85
85
  * @param {sap.ui.core.Control} oSourceControl The control that initiated the action. Must be the Tile itself or any child of it.
86
- * @return {Promise<undefined>} A promise that resolves when the FailedTileDialog is created.
86
+ * @returns {Promise<undefined>} A promise that resolves when the FailedTileDialog is created.
87
87
  * @protected
88
88
  */
89
89
  this.openFor = function (oSourceControl) {
@@ -27,7 +27,6 @@ sap.ui.define([
27
27
  * @param {object} [mSettings] initial settings for the new control
28
28
  * @class Add your documentation for the new ui/launchpad/GroupHeaderActions
29
29
  * @extends sap.ui.core.Control
30
- * @constructor
31
30
  * @public
32
31
  * @name sap.ushell.ui.launchpad.GroupHeaderActions
33
32
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -26,7 +26,6 @@ sap.ui.define([
26
26
  * Add your documentation for the new ui/launchpad/GroupListItem
27
27
  * @extends sap.m.ListItemBase
28
28
  *
29
- * @constructor
30
29
  * @public
31
30
  * @name sap.ushell.ui.launchpad.GroupListItem
32
31
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -186,7 +186,7 @@ sap.ui.define([
186
186
  /**
187
187
  * Helper function to get the "state" property of the wrapped Tile.
188
188
  *
189
- * @return {string} The "state" property of the wrapped Tile.
189
+ * @returns {string} The "state" property of the wrapped Tile.
190
190
  * @private
191
191
  */
192
192
  LinkTileWrapper.prototype._getTileState = function () {
@@ -29,7 +29,6 @@ sap.ui.define([
29
29
  * @param {object} [mSettings] initial settings for the new control
30
30
  * @class Displays a loading dialog with an indicator that an app is loading
31
31
  * @extends sap.ui.core.Control
32
- * @constructor
33
32
  * @public
34
33
  * @name sap.ushell.ui.launchpad.LoadingDialog
35
34
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -49,7 +49,7 @@ sap.ui.define([
49
49
  * @extends sap.ui.core.Control
50
50
  *
51
51
  * @author SAP SE
52
- * @version 1.118.0
52
+ * @version 1.119.0
53
53
  *
54
54
  * @private
55
55
  * @alias sap.ushell.ui.launchpad.Page
@@ -26,7 +26,6 @@ sap.ui.define([
26
26
  * A specialized tile showing a plus icon.
27
27
  * @extends sap.ushell.ui.launchpad.Tile
28
28
  *
29
- * @constructor
30
29
  * @public
31
30
  * @name sap.ushell.ui.launchpad.PlusTile
32
31
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @fileOverview Provides control sap.ushell.ui.launchpad.Section
5
5
  *
6
- * @version 1.118.0
6
+ * @version 1.119.0
7
7
  */
8
8
  sap.ui.define([
9
9
  "sap/base/Log",
@@ -160,7 +160,7 @@ sap.ui.define([
160
160
  * @extends sap.ui.core.XMLComposite
161
161
  *
162
162
  * @author SAP SE
163
- * @version 1.118.0
163
+ * @version 1.119.0
164
164
  *
165
165
  * @private
166
166
  * @alias sap.ushell.ui.launchpad.Section
@@ -1295,7 +1295,7 @@ sap.ui.define([
1295
1295
  Section.prototype.getAriaLabel = function () {
1296
1296
  var sTitle = this.getTitle() && this.getTitle().trim();
1297
1297
  if (sTitle) {
1298
- return resources.i18n.getText("Section.Description", sTitle);
1298
+ return resources.i18n.getText("Section.Description", [sTitle]);
1299
1299
  }
1300
1300
  return resources.i18n.getText("Section.Description.EmptySectionTitle");
1301
1301
  };
@@ -33,7 +33,6 @@ sap.ui.define([
33
33
  * @param {object} [mSettings] initial settings for the new control
34
34
  * @class A tile to be displayed in the tile container. This tile acts as container for specialized tile implementations.
35
35
  * @extends sap.ui.core.Control
36
- * @constructor
37
36
  * @public
38
37
  * @name sap.ushell.ui.launchpad.Tile
39
38
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -43,7 +43,6 @@ sap.ui.define([
43
43
  * @param {object} [mSettings] The initial settings for the new control
44
44
  * @class A container that arranges Tile controls.
45
45
  * @extends sap.ui.core.Control
46
- * @constructor
47
46
  * @name sap.ushell.ui.launchpad.TileContainer
48
47
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
49
48
  */
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @fileOverview Provides control sap.ushell.ui.launchpad.section.CompactArea
5
5
  *
6
- * @version 1.118.0
6
+ * @version 1.119.0
7
7
  */
8
8
 
9
9
  sap.ui.define([
@@ -26,7 +26,6 @@ sap.ui.define([
26
26
  * @param {object} [mSettings] The initial settings for the new control
27
27
  * @class A container that arranges visualizations controls in the compact area of a section (links).
28
28
  * @extends sap.ui.core.Control
29
- * @constructor
30
29
  * @private
31
30
  * @name sap.ushell.ui.launchpad.section.CompactArea
32
31
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
@@ -198,7 +197,7 @@ sap.ui.define([
198
197
  /**
199
198
  * Focuses a visualization with a given index.
200
199
  *
201
- * @param {integer} itemIndex the item index. -1 for the last item.
200
+ * @param {int} itemIndex the item index. -1 for the last item.
202
201
  * @private
203
202
  */
204
203
  CompactArea.prototype.focusItem = function (itemIndex) {
@@ -239,7 +238,7 @@ sap.ui.define([
239
238
  * Returns the index of the item containing the given DOM element.
240
239
  *
241
240
  * @param {object} oElement active DOM element
242
- * @returns {integer} index of item or -1.
241
+ * @returns {int} index of item or -1.
243
242
  * @private
244
243
  */
245
244
  CompactArea.prototype.getDOMItemIndex = function (oElement) {
@@ -281,7 +280,7 @@ sap.ui.define([
281
280
  /**
282
281
  * Returns the index of the currently focused item.
283
282
  *
284
- * @returns {integer} index of the currently focused item or -1.
283
+ * @returns {int} index of the currently focused item or -1.
285
284
  * @private
286
285
  */
287
286
  CompactArea.prototype.getFocusedItemIndex = function () {
@@ -92,7 +92,7 @@ sap.ui.define([
92
92
 
93
93
  RightFloatingContainer.prototype.init = function () {
94
94
  var timer;
95
- jQuery(window).bind("resize", function () {
95
+ addEventListener("resize", function () {
96
96
  clearTimeout(timer);
97
97
  timer = setTimeout(this._handleResize.bind(this), 100);
98
98
  }.bind(this));