@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
@@ -138,7 +138,7 @@ sap.ui.define([
138
138
 
139
139
  /**
140
140
  * Wrapper for smartForm.removeGroup. Removes the group at the given index.
141
- * @param {number} index The index to remove.
141
+ * @param {int} index The index to remove.
142
142
  */
143
143
  UserDefaultsForm.prototype.removeGroup = function (index) {
144
144
  this.getAggregation("_smartForm").removeGroup(index);
@@ -16,6 +16,7 @@ sap.ui.define([
16
16
  "sap/ui/comp/smartform/Group",
17
17
  "sap/ui/comp/smartform/GroupElement",
18
18
  "sap/ui/comp/smartvariants/PersonalizableInfo",
19
+ "sap/ui/core/Title",
19
20
  "sap/ui/Device",
20
21
  "sap/ui/layout/GridData",
21
22
  "sap/ui/model/json/JSONModel",
@@ -39,6 +40,7 @@ sap.ui.define([
39
40
  Group,
40
41
  GroupElement,
41
42
  PersonalizableInfo,
43
+ Title,
42
44
  Device,
43
45
  GridData,
44
46
  JSONModel,
@@ -440,7 +442,7 @@ sap.ui.define([
440
442
  /**
441
443
  * @typedef {object} ModelRecord A model record.
442
444
  * @property {object} model The model used for the OData request.
443
- * @property {Promise<void>} metadata A promise which resolves if the model is loaded or rejects if the loading failed.
445
+ * @property {Promise<undefined>} metadata A promise which resolves if the model is loaded or rejects if the loading failed.
444
446
  */
445
447
 
446
448
  /**
@@ -517,8 +519,10 @@ sap.ui.define([
517
519
  if (sLastGroupId !== oProperty.editorMetadata.groupId) {
518
520
  // generate a group on group change
519
521
  oGroup = new Group({
520
- label: oProperty.editorMetadata.groupTitle || undefined,
521
- layoutData: new GridData({ linebreak: false }) // for a proper form-field alignment across groups
522
+ layoutData: new GridData({ linebreak: false }), // for a proper form-field alignment across groups
523
+ title: new Title({
524
+ text: oProperty.editorMetadata.groupTitle || undefined
525
+ })
522
526
  });
523
527
  sLastGroupId = oProperty.editorMetadata.groupId;
524
528
  aGroups.push(oGroup);
@@ -27,7 +27,7 @@ sap.ui.define([
27
27
  return UIComponent.extend("sap.ushell.components.shell.UserActionsMenu.Component", {
28
28
 
29
29
  metadata: {
30
- version: "1.118.0",
30
+ version: "1.119.0",
31
31
  library: "sap.ushell",
32
32
  dependencies: {
33
33
  libs: ["sap.m"]
@@ -37,7 +37,7 @@ sap.ui.define([
37
37
  return UIComponent.extend("sap.ushell.components.shell.UserImage.Component", {
38
38
 
39
39
  metadata: {
40
- version: "1.118.0",
40
+ version: "1.119.0",
41
41
  library: "sap.ushell.components.shell.UserImage",
42
42
  dependencies: {
43
43
  libs: {
@@ -42,9 +42,7 @@ sap.ui.define([
42
42
  parts: ["/targetURL", "/nav/navigation_target_url"],
43
43
  formatter: oController.formatters.leanURL
44
44
  },
45
- size: "Auto",
46
45
  tileContent: new TileContent({
47
- size: "Auto",
48
46
  footer: "{/config/display_info_text}",
49
47
  content: new ImageContent({
50
48
  src: "{/config/display_icon_url}"
@@ -41,9 +41,7 @@ sap.ui.define([
41
41
  parts: ["/targetURL", "/nav/navigation_target_url"],
42
42
  formatter: oController.formatters.leanURL
43
43
  },
44
- size: "Auto",
45
44
  tileContent: new TileContent({
46
- size: "Auto",
47
45
  footer: "{/config/display_info_text}",
48
46
  content: new ImageContent({
49
47
  src: "{/config/display_icon_url}"
@@ -47,7 +47,6 @@ sap.ui.define([
47
47
  mode: "{/mode}",
48
48
  header: "{/data/display_title_text}",
49
49
  subheader: "{/data/display_subtitle_text}",
50
- size: "Auto",
51
50
  sizeBehavior: "{/sizeBehavior}",
52
51
  wrappingType: "{/wrappingType}",
53
52
  url: {
@@ -55,7 +54,6 @@ sap.ui.define([
55
54
  formatter: oController.formatters.leanURL
56
55
  },
57
56
  tileContent: [new TileContent({
58
- size: "Auto",
59
57
  footer: "{/data/display_info_text}",
60
58
  footerColor: {
61
59
  path: "/data/display_info_state",
@@ -26,7 +26,6 @@ sap.ui.define([
26
26
  header: "{/properties/title}",
27
27
  scope: "{/properties/scope}",
28
28
  subheader: "{/properties/subtitle}",
29
- size: "Auto",
30
29
  sizeBehavior: "{= ${/properties/customSizeBehavior} || ${/properties/configSizeBehavior}}",
31
30
  frameType: "{/properties/frameType}",
32
31
  wrappingType: "{/properties/wrappingType}",
@@ -35,7 +34,6 @@ sap.ui.define([
35
34
  formatter: oController._getLeanUrl.bind(oController)
36
35
  },
37
36
  tileContent: new TileContent({
38
- size: "Auto",
39
37
  footer: "{/properties/info}",
40
38
  content: new ImageContent({ src: "{/properties/icon}" })
41
39
  }),
@@ -400,7 +400,7 @@ sap.ui.define([
400
400
 
401
401
  /**
402
402
  * Creates the request object and triggers the loading of the data
403
- * @param {number} iServiceRefreshInterval The interval between the requests in seconds
403
+ * @param {int} iServiceRefreshInterval The interval between the requests in seconds
404
404
  * @param {boolean} bForce Whether the data should be loaded regardless of the interval
405
405
  *
406
406
  * @private
@@ -32,7 +32,6 @@ sap.ui.define([
32
32
  }
33
33
 
34
34
  return new GenericTile({
35
- size: "Auto",
36
35
  header: "{/properties/title}",
37
36
  scope: "{/properties/scope}",
38
37
  subheader: "{/properties/subtitle}",
@@ -44,7 +43,6 @@ sap.ui.define([
44
43
  formatter: oController.formatters && oController.formatters.leanURL
45
44
  },
46
45
  tileContent: new TileContent({
47
- size: "Auto",
48
46
  footer: "{/properties/info}",
49
47
  footerColor: {
50
48
  path: "/properties/infoState",
@@ -106,7 +106,6 @@ sap.ui.define([
106
106
  * @param {object} oModelReference An instance of ReferenceByURI, ReferenceByModel
107
107
  * or ReferenceWithWorkaround for locating the OData service.
108
108
  * @param {string} sAnnotationJSONDoc A JSON document providing extra annotations to the elements of the structure of the given service
109
- * @constructor
110
109
  * @class Representation of an OData model with analytical annotations defined by OData4SAP.
111
110
  */
112
111
  sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.Model = function (oModelReference, sAnnotationJSONDoc) {
@@ -117,7 +116,6 @@ sap.ui.define([
117
116
  * Create a reference to an OData model by the URI of the related OData service.
118
117
  *
119
118
  * @param {string} sURI holding the URI.
120
- * @constructor
121
119
  * @class Handle to an OData model by the URI pointing to it.
122
120
  */
123
121
  sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.Model.ReferenceByURI = function (sURI) {
@@ -128,7 +126,6 @@ sap.ui.define([
128
126
  * Create a reference to an OData model already loaded elsewhere with the help of SAP UI5.
129
127
  *
130
128
  * @param {object} oModel holding the OData model.
131
- * @constructor
132
129
  * @class Handle to an already instantiated SAP UI5 OData model.
133
130
  */
134
131
  sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.Model.ReferenceByModel = function (oModel) {
@@ -150,7 +147,6 @@ sap.ui.define([
150
147
  * @param {object} oModelReference holding a reference to the OData model, obtained by
151
148
  * sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.Model.ReferenceByModel or by sap.odata4analytics.Model.ReferenceByURI.
152
149
  * @param {string[]} aWorkaroundID listing all workarounds to be applied.
153
- * @constructor
154
150
  * @class Handle to an already instantiated SAP UI5 OData model.
155
151
  */
156
152
  sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.Model.ReferenceWithWorkaround = function (oModel, aWorkaroundID) {
@@ -655,7 +651,6 @@ sap.ui.define([
655
651
  * The OData entity set for this query offered by the OData service
656
652
  * @param {sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.Parameterization} oParameterization
657
653
  * The parameterization of this query, if any
658
- * @constructor
659
654
  * @this (QueryResult)
660
655
  * @class Representation of an entity type annotated with sap:semantics="aggregate".
661
656
  */
@@ -1044,7 +1039,6 @@ sap.ui.define([
1044
1039
  * @param {sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.Parameterization} oParameterization
1045
1040
  * The parameterization containing this parameter
1046
1041
  * @param {object} oProperty The DataJS object object representing the text property
1047
- * @constructor
1048
1042
  * @class Representation of a property annotated with sap:parameter.
1049
1043
  */
1050
1044
  sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.Parameter = function (oParameterization, oProperty) {
@@ -1211,7 +1205,7 @@ sap.ui.define([
1211
1205
  /**
1212
1206
  * Get parameterization containing this parameter
1213
1207
  *
1214
- * @return {sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.Parameterization} The parameterization object
1208
+ * @returns {sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.Parameterization} The parameterization object
1215
1209
  */
1216
1210
  getContainingParameterization: function () {
1217
1211
  return this._oParameterization;
@@ -1220,8 +1214,8 @@ sap.ui.define([
1220
1214
  /**
1221
1215
  * Get the URI to locate the entity set holding the value set, if it is available.
1222
1216
  *
1223
- * @param {String} sServiceRootURI (optional) Identifies the root of the OData service
1224
- * @returns {String} The resource path of the URI pointing to the entity set.
1217
+ * @param {string} sServiceRootURI (optional) Identifies the root of the OData service
1218
+ * @returns {string} The resource path of the URI pointing to the entity set.
1225
1219
  * It is a relative URI unless a service root is given, which would then prefixed in order to return a complete URL.
1226
1220
  */
1227
1221
  getURIToValueEntitySet: function (sServiceRootURI) {
@@ -1324,7 +1318,7 @@ sap.ui.define([
1324
1318
  * Set text property Relevant for workaround w/ID IdentifyTextPropertiesByName
1325
1319
  *
1326
1320
  * @private
1327
- * @param {Object} oTextProperty text property
1321
+ * @param {object} oTextProperty text property
1328
1322
  */
1329
1323
  setTextProperty: function (oTextProperty) {
1330
1324
  this._oTextProperty = oTextProperty;
@@ -1417,7 +1411,7 @@ sap.ui.define([
1417
1411
  /**
1418
1412
  * Get query result containing this parameter
1419
1413
  *
1420
- * @return {sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.QueryResult} The query result object
1414
+ * @returns {sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.QueryResult} The query result object
1421
1415
  */
1422
1416
  getContainingQueryResult: function () {
1423
1417
  return this._oQueryResult;
@@ -1547,7 +1541,6 @@ sap.ui.define([
1547
1541
  * @param {sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.QueryResult} oQueryResult
1548
1542
  * The query result containing this measure
1549
1543
  * @param {object} oProperty The DataJS object object representing the measure
1550
- * @constructor
1551
1544
  * @class Representation of a property annotated with sap:aggregation-role="measure".
1552
1545
  */
1553
1546
  sap.ushell.components.tiles.indicatorTileUtils.odata4analytics.Measure = function (oQueryResult, oProperty) {
@@ -2501,9 +2494,9 @@ sap.ui.define([
2501
2494
  /**
2502
2495
  * Assign a value to a parameter
2503
2496
  *
2504
- * @param {String} sParameterName Name of the parameter. In case of a range value, provide the name of the lower boundary parameter.
2505
- * @param {String} sValue Assigned value. Pass null to remove a value assignment.
2506
- * @param {String} sToValue Omit it or set it to null for single values. If set, it will be assigned to the upper boundary parameter
2497
+ * @param {string} sParameterName Name of the parameter. In case of a range value, provide the name of the lower boundary parameter.
2498
+ * @param {string} sValue Assigned value. Pass null to remove a value assignment.
2499
+ * @param {string} sToValue Omit it or set it to null for single values. If set, it will be assigned to the upper boundary parameter
2507
2500
  */
2508
2501
  setParameterValue: function (sParameterName, sValue, sToValue) {
2509
2502
  var oParameter = this._oParameterization.findParameterByName(sParameterName);
@@ -2555,8 +2548,8 @@ sap.ui.define([
2555
2548
  /**
2556
2549
  * Get the URI to locate the entity set for the query parameterization.
2557
2550
  *
2558
- * @param {String} sServiceRootURI (optional) Identifies the root of the OData service
2559
- * @returns {String} The resource path of the URI pointing to the entity set.
2551
+ * @param {string} sServiceRootURI (optional) Identifies the root of the OData service
2552
+ * @returns {string} The resource path of the URI pointing to the entity set.
2560
2553
  * It is a relative URI unless a service root is given, which would then prefixed in order to return a complete URL.
2561
2554
  */
2562
2555
  getURIToParameterizationEntitySet: function (sServiceRootURI) {
@@ -2570,8 +2563,8 @@ sap.ui.define([
2570
2563
  * For optional parameters, assign the special value that the service provider uses as an "omitted" value.
2571
2564
  * For example, for services based on BW Easy Queries, this would be an empty string.
2572
2565
  *
2573
- * @param {String} sServiceRootURI (optional) Identifies the root of the OData service
2574
- * @returns {String} The resource path of the URI pointing to the entity set.
2566
+ * @param {string} sServiceRootURI (optional) Identifies the root of the OData service
2567
+ * @returns {string} The resource path of the URI pointing to the entity set.
2575
2568
  * It is a relative URI unless a service root is given, which would then prefixed in order to return a complete URL.
2576
2569
  */
2577
2570
  getURIToParameterizationEntry: function (sServiceRootURI) {
@@ -2640,7 +2633,7 @@ sap.ui.define([
2640
2633
  /**
2641
2634
  * Set the parameterization request required for interactions with the query result of parameterized queries
2642
2635
  *
2643
- * @param {Object} oParameterizationRequest Request object for interactions with the parameterization of this query
2636
+ * @param {object} oParameterizationRequest Request object for interactions with the parameterization of this query
2644
2637
  */
2645
2638
  setParameterizationRequest: function (oParameterizationRequest) {
2646
2639
  this._oParameterizationRequest = oParameterizationRequest;
@@ -2730,7 +2723,7 @@ sap.ui.define([
2730
2723
  /**
2731
2724
  * Get details about a dimensions included in the aggregation level
2732
2725
  *
2733
- * @param {String} sDimensionName Name of a dimension included in the aggregation level of this request,
2726
+ * @param {string} sDimensionName Name of a dimension included in the aggregation level of this request,
2734
2727
  * for which details shall be returned
2735
2728
  * @returns {object} An object with three properties named key and text, both with Boolean values indicating whether the key
2736
2729
  * and text of this dimension are included in this request. The third property named attributes is an array of attribute
@@ -2785,11 +2778,11 @@ sap.ui.define([
2785
2778
  * Specify which dimension components shall be included in the query result.
2786
2779
  * The settings get applied to the currently defined aggregation level.
2787
2780
  *
2788
- * @param {String} sDimensionName Name of the dimension for which the settings get applied.
2781
+ * @param {string} sDimensionName Name of the dimension for which the settings get applied.
2789
2782
  * Specify null to apply the settings to all dimensions in the aggregation level.
2790
- * @param {Boolean} bIncludeKey Indicator whether or not to include the dimension key in the query result.
2783
+ * @param {boolean} bIncludeKey Indicator whether or not to include the dimension key in the query result.
2791
2784
  * Pass null to keep current setting.
2792
- * @param {Boolean} bIncludeText Indicator whether or not to include the dimension text (if available)
2785
+ * @param {boolean} bIncludeText Indicator whether or not to include the dimension text (if available)
2793
2786
  * in the query result. Pass null to keep current setting.
2794
2787
  * @param {Array} aAttributeName Array of dimension attribute names to be included in the result.
2795
2788
  * Pass null to keep current setting. This argument is ignored if sDimensionName is null.
@@ -2825,13 +2818,13 @@ sap.ui.define([
2825
2818
  * Specify which measure components shall be included in the query result.
2826
2819
  * The settings get applied to the currently set measures.
2827
2820
  *
2828
- * @param {String} sMeasureName Name of the measure for which the settings get applied.
2821
+ * @param {string} sMeasureName Name of the measure for which the settings get applied.
2829
2822
  * Specify null to apply the settings to all currently set measures.
2830
- * @param {Boolean} bIncludeRawValue Indicator whether or not to include the raw value in the query result.
2823
+ * @param {boolean} bIncludeRawValue Indicator whether or not to include the raw value in the query result.
2831
2824
  * Pass null to keep current setting.
2832
- * @param {Boolean} bIncludeFormattedValue Indicator whether or not to include the formatted value (if available) in the query result.
2825
+ * @param {boolean} bIncludeFormattedValue Indicator whether or not to include the formatted value (if available) in the query result.
2833
2826
  * Pass null to keep current setting.
2834
- * @param {Boolean} bIncludeUnit Indicator whether or not to include the unit (if available) in the query result.
2827
+ * @param {boolean} bIncludeUnit Indicator whether or not to include the unit (if available) in the query result.
2835
2828
  * Pass null to keep current setting.
2836
2829
  */
2837
2830
  includeMeasureRawFormattedValueUnit: function (sMeasureName, bIncludeRawValue,
@@ -2921,9 +2914,9 @@ sap.ui.define([
2921
2914
  /**
2922
2915
  * Set further options to be applied for the OData request to fetch the query result
2923
2916
  *
2924
- * @param {Boolean} bIncludeEntityKey Indicates whether or not the entity key should be returned for every entry in the query result.
2917
+ * @param {boolean} bIncludeEntityKey Indicates whether or not the entity key should be returned for every entry in the query result.
2925
2918
  * Default is not to include it. Pass null to keep current setting.
2926
- * @param {Boolean} bIncludeCount Indicates whether or not the result shall include a count for the returned entities.
2919
+ * @param {boolean} bIncludeCount Indicates whether or not the result shall include a count for the returned entities.
2927
2920
  * Default is not to include it. Pass null to keep current setting.
2928
2921
  */
2929
2922
  setRequestOptions: function (bIncludeEntityKey, bIncludeCount) {
@@ -2939,9 +2932,9 @@ sap.ui.define([
2939
2932
  * Specify that only a page of the query result shall be returned. A page is described by its boundaries,
2940
2933
  * that are row numbers for the first and last rows in the query result to be returned.
2941
2934
  *
2942
- * @param {Number} start The first row of the query result to be returned. Numbering starts at 1.
2935
+ * @param {int} start The first row of the query result to be returned. Numbering starts at 1.
2943
2936
  * Passing null is equivalent to start with the first row.
2944
- * @param {Number} end The last row of the query result to be returned.
2937
+ * @param {int} end The last row of the query result to be returned.
2945
2938
  * Passing null is equivalent to get all rows up to the end of the query result.
2946
2939
  */
2947
2940
  setResultPageBoundaries: function (start, end) {
@@ -2968,7 +2961,7 @@ sap.ui.define([
2968
2961
  * Returns the current page boundaries as object with properties <code>start</code> and <code>end</code>.
2969
2962
  * If the end of the page is unbounded, <code>end</code> is null.
2970
2963
  *
2971
- * @returns {Object} the current page boundaries as object
2964
+ * @returns {object} the current page boundaries as object
2972
2965
  */
2973
2966
  getResultPageBoundaries: function () {
2974
2967
  var start, end;
@@ -2988,8 +2981,8 @@ sap.ui.define([
2988
2981
  /**
2989
2982
  * Get the URI to locate the entity set for the query result.
2990
2983
  *
2991
- * @param {String} sServiceRootURI (optional) Identifies the root of the OData service
2992
- * @returns {String} The resource path of the URI pointing to the entity set.
2984
+ * @param {string} sServiceRootURI (optional) Identifies the root of the OData service
2985
+ * @returns {string} The resource path of the URI pointing to the entity set.
2993
2986
  * It is a relative URI unless a service root is given, which would then prefixed in order to return a complete URL.
2994
2987
  */
2995
2988
  getURIToQueryResultEntitySet: function (sServiceRootURI) {
@@ -3011,8 +3004,8 @@ sap.ui.define([
3011
3004
  /**
3012
3005
  * Get the value of an query option for the OData request URI corresponding to this request.
3013
3006
  *
3014
- * @param {String} sQueryOptionName Identifies the query option: $select, $filter,$orderby ... or any custom query option
3015
- * @returns {String} The value of the requested query option or null, if this option is not used for the OData request.
3007
+ * @param {string} sQueryOptionName Identifies the query option: $select, $filter,$orderby ... or any custom query option
3008
+ * @returns {string} The value of the requested query option or null, if this option is not used for the OData request.
3016
3009
  */
3017
3010
  getURIQueryOptionValue: function (sQueryOptionName) {
3018
3011
  var sQueryOptionValue = null;
@@ -3101,8 +3094,8 @@ sap.ui.define([
3101
3094
  /**
3102
3095
  * Get the unescaped URI to fetch the query result.
3103
3096
  *
3104
- * @param {String} sServiceRootURI (optional) Identifies the root of the OData service
3105
- * @returns {String} The unescaped URI that contains the OData resource path and OData system query options
3097
+ * @param {string} sServiceRootURI (optional) Identifies the root of the OData service
3098
+ * @returns {string} The unescaped URI that contains the OData resource path and OData system query options
3106
3099
  * to express the aggregation level, filter expression and further options.
3107
3100
  */
3108
3101
  getURIToQueryResultEntries: function (sServiceRootURI) {
@@ -3214,7 +3207,7 @@ sap.ui.define([
3214
3207
  /**
3215
3208
  * Specify which components of the parameter shall be included in the value set.
3216
3209
  *
3217
- * @param {Boolean} bIncludeText Indicator whether or not to include the parameter text (if available) in the value set.
3210
+ * @param {boolean} bIncludeText Indicator whether or not to include the parameter text (if available) in the value set.
3218
3211
  * Pass null to keep current setting.
3219
3212
  */
3220
3213
  includeParameterText: function (bIncludeText) {
@@ -3287,8 +3280,8 @@ sap.ui.define([
3287
3280
  /**
3288
3281
  * Get the value of an query option for the OData request URI corresponding to this request.
3289
3282
  *
3290
- * @param {String} sQueryOptionName Identifies the query option: $select, $filter,... or any custom query option
3291
- * @returns {String} The value of the requested query option or null, if this option is not used for the OData request.
3283
+ * @param {string} sQueryOptionName Identifies the query option: $select, $filter,... or any custom query option
3284
+ * @returns {string} The value of the requested query option or null, if this option is not used for the OData request.
3292
3285
  */
3293
3286
  getURIQueryOptionValue: function (sQueryOptionName) {
3294
3287
  var sQueryOptionValue = null;
@@ -3330,8 +3323,8 @@ sap.ui.define([
3330
3323
  /**
3331
3324
  * Get the unescaped URI to fetch the parameter value set.
3332
3325
  *
3333
- * @param {String} sServiceRootURI (optional) Identifies the root of the OData service
3334
- * @returns {String} The unescaped URI that contains the OData resource path and OData
3326
+ * @param {string} sServiceRootURI (optional) Identifies the root of the OData service
3327
+ * @returns {string} The unescaped URI that contains the OData resource path and OData
3335
3328
  * system query options to express the request for the parameter value set.
3336
3329
  */
3337
3330
  getURIToParameterValueSetEntries: function (sServiceRootURI) {
@@ -3510,8 +3503,8 @@ sap.ui.define([
3510
3503
  /**
3511
3504
  * Get the value of an query option for the OData request URI corresponding to this request.
3512
3505
  *
3513
- * @param {String} sQueryOptionName Identifies the query option: $select, $filter,... or any custom query option
3514
- * @returns {String} The value of the requested query option or null, if this option is not used for the OData request.
3506
+ * @param {string} sQueryOptionName Identifies the query option: $select, $filter,... or any custom query option
3507
+ * @returns {string} The value of the requested query option or null, if this option is not used for the OData request.
3515
3508
  */
3516
3509
  getURIQueryOptionValue: function (sQueryOptionName) {
3517
3510
  var sQueryOptionValue = null;
@@ -3560,8 +3553,8 @@ sap.ui.define([
3560
3553
  /**
3561
3554
  * Get the unescaped URI to fetch the dimension members, optionally augmented by text and attributes.
3562
3555
  *
3563
- * @param {String} sServiceRootURI (optional) Identifies the root of the OData service
3564
- * @returns {String} The unescaped URI that contains the OData resource path and OData system
3556
+ * @param {string} sServiceRootURI (optional) Identifies the root of the OData service
3557
+ * @returns {string} The unescaped URI that contains the OData resource path and OData system
3565
3558
  * query options to express the request for the parameter value set.
3566
3559
  */
3567
3560
  getURIToDimensionMemberEntries: function (sServiceRootURI) {
@@ -928,7 +928,7 @@ sap.ui.define([
928
928
  * Read and create external target Nav Hash
929
929
  *
930
930
  * @param {JSON} jConfig configuration object for CHIP
931
- * @return {string} Returns navigation hash
931
+ * @returns {string} Returns navigation hash
932
932
  */
933
933
  getNavigationTarget: function (jConfig, system) {
934
934
  var fgetService = sap.ushell && sap.ushell.Container && sap.ushell.Container.getServiceAsync;
@@ -995,7 +995,7 @@ sap.ui.define([
995
995
  * Read chipConfig object and return appropriate title
996
996
  *
997
997
  * @param {JSON} CHIP config configuration object for CHIP
998
- * @return {string} returns title for tile
998
+ * @returns {string} returns title for tile
999
999
  */
1000
1000
  getChipTitle: function (jConfig) {
1001
1001
  var title = "";
@@ -1019,7 +1019,7 @@ sap.ui.define([
1019
1019
  * Read chipConfig object and return appropriate subTitle
1020
1020
  *
1021
1021
  * @param {JSON} CHIP config configuration object for CHIP
1022
- * @return {string} returns subtitle for tile
1022
+ * @returns {string} returns subtitle for tile
1023
1023
  */
1024
1024
  getChipSubTitle: function (jConfig) {
1025
1025
  var sTitle = "";
@@ -251,7 +251,7 @@ sap.ui.define([
251
251
  /**
252
252
  * Saves the tile navigation actions in to the bag.
253
253
  *
254
- * @param {Object} tileNavigationActionsBag Bag into which the tile navigation actions has to be saved
254
+ * @param {object} tileNavigationActionsBag Bag into which the tile navigation actions has to be saved
255
255
  * @param {Array} aNavigationProperties Array of tile navigation actions
256
256
  */
257
257
  oUtils.populateTileNavigationActionsBag = function (tileNavigationActionsBag, aNavigationProperties) {
@@ -38,7 +38,7 @@ sap.ui.define([
38
38
  // visualizationOrganizer Component
39
39
  return UIComponent.extend("sap.ushell.components.visualizationOrganizer.Component", {
40
40
  metadata: {
41
- version: "1.118.0",
41
+ version: "1.119.0",
42
42
  library: "sap.ushell",
43
43
  dependencies: { libs: ["sap.m"] },
44
44
  properties: {
@@ -175,10 +175,10 @@ sap.ui.define([
175
175
 
176
176
  //SectionContext without sectionID
177
177
  if (!sectionContext.sectionID && bIsVizIdPresent) {
178
- return resources.i18n.getText("VisualizationOrganizer.Button.Tooltip.RemoveFromPage", sectionContext.pageTitle);
178
+ return resources.i18n.getText("VisualizationOrganizer.Button.Tooltip.RemoveFromPage", [sectionContext.pageTitle]);
179
179
  }
180
180
 
181
- return resources.i18n.getText("VisualizationOrganizer.Button.Tooltip.AddToPage", sectionContext.pageTitle);
181
+ return resources.i18n.getText("VisualizationOrganizer.Button.Tooltip.AddToPage", [sectionContext.pageTitle]);
182
182
  },
183
183
 
184
184
  /**
@@ -533,7 +533,7 @@ sap.ui.define([
533
533
  * When done, shows a {@link sap.m.MessageToast} informing the total number of organized visualizations.
534
534
  *
535
535
  * @param {VisualizationChanges} oVisualizationChanges The items representing where a visualization should be added and deleted.
536
- * @param {Boolean} bShowMessage If true the MessageToast is shown
536
+ * @param {boolean} bShowMessage If true the MessageToast is shown
537
537
  * @returns {Promise<undefined>} A promise that resolves after every organization change.
538
538
  * @see _organizeVisualizations
539
539
  */
@@ -624,19 +624,6 @@ sap.ui.define([
624
624
  delete this.sVisualizationTitle;
625
625
  },
626
626
 
627
- /**
628
- * Handles the page item press event.
629
- * On press the page item should toggle its selection.
630
- * The selection should also change for all items with the same pageId.
631
- *
632
- * @param {sap.ui.base.Event} event The press event.
633
- * @since 1.75.0
634
- * @private
635
- */
636
- pagePressed: function (event) {
637
- this._changeSelectionForAllPagesWithTheSamePageId(event.getSource());
638
- },
639
-
640
627
  /**
641
628
  * Handles the List selectionChange event.
642
629
  * The selection should also change for all items with the same pageId.
@@ -1003,7 +990,7 @@ sap.ui.define([
1003
990
  * When done, shows a {@link sap.m.MessageToast} informing the total number of organized visualizations.
1004
991
  *
1005
992
  * @param {VisualizationChanges} oVisualizationChanges The items representing where a visualization should be added and deleted.
1006
- * @param {Boolean} bShowMessage If true the MessageToast is shown
993
+ * @param {boolean} bShowMessage If true the MessageToast is shown
1007
994
  * @returns {Promise<undefined>} A promise that resolves after every organization change.
1008
995
  * @see _organizeVisualizations
1009
996
  */
@@ -34,13 +34,13 @@
34
34
  groupHeaderFactory: '.getGroupHeader'
35
35
  }"
36
36
  noDataText="{i18n>VisualizationOrganizer.PagesList.NoDataText}"
37
- selectionChange=".onSelectionChange">
37
+ selectionChange=".onSelectionChange"
38
+ includeItemInSelection="true">
38
39
  <items>
39
40
  <StandardListItem
40
41
  title="{title}"
41
42
  type="Active"
42
- selected="{selected}"
43
- press=".pagePressed"/>
43
+ selected="{selected}"/>
44
44
  </items>
45
45
  </List>
46
46
  </content>
@@ -3,7 +3,7 @@
3
3
  * @fileOverview WorkPageBuilder Component
4
4
  * This UIComponent gets initialized by the FLP renderer upon visiting a work page if work pages are enabled (/core/workPages/enabled).
5
5
  *
6
- * @version 1.118.0
6
+ * @version 1.119.0
7
7
  */
8
8
 
9
9
  sap.ui.define([
@@ -2,7 +2,7 @@
2
2
 
3
3
  /**
4
4
  * @file WorkPageBuilder accessibility features
5
- * @version 1.118.0
5
+ * @version 1.119.0
6
6
  */
7
7
 
8
8
  sap.ui.define([