@sapui5/sap.ushell 1.111.1 → 1.112.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (303) hide show
  1. package/package.json +1 -1
  2. package/src/main/js/sap/ushell/.library +1 -1
  3. package/src/main/js/sap/ushell/AppInfoParameters.js +104 -4
  4. package/src/main/js/sap/ushell/ApplicationType.js +11 -4
  5. package/src/main/js/sap/ushell/Container.js +0 -32
  6. package/src/main/js/sap/ushell/Fiori20Adapter.js +1 -1
  7. package/src/main/js/sap/ushell/Fiori20AdapterTest.js +1 -1
  8. package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
  9. package/src/main/js/sap/ushell/TechnicalParameters.js +51 -21
  10. package/src/main/js/sap/ushell/URLTemplateProcessor.js +1 -1
  11. package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +1 -1
  12. package/src/main/js/sap/ushell/Ui5ServiceFactory.js +1 -1
  13. package/src/main/js/sap/ushell/_URLTemplateProcessor/DefinitionParameterSetBuilder.js +1 -1
  14. package/src/main/js/sap/ushell/_URLTemplateProcessor/DependencyGraph.js +1 -1
  15. package/src/main/js/sap/ushell/_URLTemplateProcessor/Functions.js +1 -1
  16. package/src/main/js/sap/ushell/_URLTemplateProcessor/Resolvers.js +1 -1
  17. package/src/main/js/sap/ushell/_URLTemplateProcessor/TemplateParameterParser.js +1 -1
  18. package/src/main/js/sap/ushell/_URLTemplateProcessor/utils.js +1 -1
  19. package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +1 -1
  20. package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +1 -1
  21. package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
  22. package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +1 -1
  23. package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +24 -158
  24. package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +1 -1
  25. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
  26. package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
  27. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +1 -1
  28. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
  29. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
  30. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
  31. package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +1 -1
  32. package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +1 -1
  33. package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +1 -2
  34. package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +22 -140
  35. package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +1 -1
  36. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +1 -1
  37. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
  38. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +1 -1
  39. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
  40. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +2 -1
  41. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
  42. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +1 -1
  43. package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +1 -1
  44. package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +1 -1
  45. package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +1 -1
  46. package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +1 -1
  47. package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +1 -1
  48. package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +1 -1
  49. package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +1 -1
  50. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +1 -1
  51. package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
  52. package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +1 -1
  53. package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +1 -1
  54. package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +1 -1
  55. package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +1 -1
  56. package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +1 -1
  57. package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
  58. package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +1 -1
  59. package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +1 -1
  60. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +12 -0
  61. package/src/main/js/sap/ushell/appRuntime/ui5/services/CrossApplicationNavigation.js +28 -4
  62. package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolution.js +7 -5
  63. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
  64. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/logger.js +1 -1
  65. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/state.js +1 -1
  66. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +1 -1
  67. package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +1 -0
  68. package/src/main/js/sap/ushell/bootstrap/common/common.read.ushell.config.from.url.js +26 -23
  69. package/src/main/js/sap/ushell/components/appfinder/AppFinderView.js +69 -33
  70. package/src/main/js/sap/ushell/components/appfinder/VisualizationOrganizerHelper.js +3 -0
  71. package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
  72. package/src/main/js/sap/ushell/components/applicationIntegration/AppLifeCycle.js +15 -3
  73. package/src/main/js/sap/ushell/components/applicationIntegration/Storage.js +1 -1
  74. package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +29 -18
  75. package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +1 -1
  76. package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +15 -2
  77. package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +9 -4
  78. package/src/main/js/sap/ushell/components/applicationIntegration/elements/model.js +1 -1
  79. package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +1 -1
  80. package/src/main/js/sap/ushell/components/applicationIntegration/relatedShellElements/RelatedShellElements.js +1 -1
  81. package/src/main/js/sap/ushell/components/cepsearchresult/app/Main.controller.js +1 -7
  82. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/controls/Paginator.css +14 -3
  83. package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/controls/Paginator.js +57 -11
  84. package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +14 -2
  85. package/src/main/js/sap/ushell/components/contentFinder/Component.js +470 -23
  86. package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +308 -6
  87. package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +83 -12
  88. package/src/main/js/sap/ushell/components/contentFinder/controller/WidgetGallery.controller.js +33 -6
  89. package/src/main/js/sap/ushell/components/contentFinder/manifest.json +7 -7
  90. package/src/main/js/sap/ushell/components/contentFinder/model/formatter.js +96 -0
  91. package/src/main/js/sap/ushell/components/contentFinder/resources/resources.properties +44 -14
  92. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearch.view.xml +82 -25
  93. package/src/main/js/sap/ushell/components/contentFinder/view/ContentFinderDialog.view.xml +18 -10
  94. package/src/main/js/sap/ushell/components/contentFinder/view/WidgetGallery.view.xml +52 -1
  95. package/src/main/js/sap/ushell/components/contentFinderAppSearch/Component.js +1 -1
  96. package/src/main/js/sap/ushell/components/contentFinderAppSearch/controller/ContentFinderAppSearch.controller.js +1 -1
  97. package/src/main/js/sap/ushell/components/contentFinderAppSearch/manifest.json +1 -1
  98. package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
  99. package/src/main/js/sap/ushell/components/homepage/ActionMode.js +1 -1
  100. package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +1 -1
  101. package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +116 -40
  102. package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +1 -1
  103. package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
  104. package/src/main/js/sap/ushell/components/pages/ActionMode.js +1 -1
  105. package/src/main/js/sap/ushell/components/pages/Component.js +1 -1
  106. package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +1 -1
  107. package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +1 -1
  108. package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
  109. package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +1 -1
  110. package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
  111. package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
  112. package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +1 -1
  113. package/src/main/js/sap/ushell/components/shell/PostLoadingHeaderEnhancement/Component.js +17 -6
  114. package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +1 -1
  115. package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
  116. package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +1 -1
  117. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +1 -1
  118. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/NavigationSvcSearchProvider.js +1 -1
  119. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +1 -1
  120. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +1 -1
  121. package/src/main/js/sap/ushell/components/shell/Settings/Component.js +1 -1
  122. package/src/main/js/sap/ushell/components/shell/Settings/ContentWrapper.fragment.xml +7 -1
  123. package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/UserDefaultsForm.js +9 -10
  124. package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/controller/UserDefaultsSetting.controller.js +49 -57
  125. package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +1 -1
  126. package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +1 -1
  127. package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.controller.js +4 -1
  128. package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +26 -27
  129. package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +23 -4
  130. package/src/main/js/sap/ushell/components/workPageBuilder/controller/ContentFinderDialog.controller.js +12 -9
  131. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +67 -16
  132. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +1 -1
  133. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +1 -1
  134. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +1 -1
  135. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +1 -1
  136. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +1 -1
  137. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +1 -1
  138. package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
  139. package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources.properties +5 -3
  140. package/src/main/js/sap/ushell/components/workPageBuilder/view/WorkPageBuilder.view.xml +1 -1
  141. package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +1 -1
  142. package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +4 -262
  143. package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
  144. package/src/main/js/sap/ushell/components/workPageRuntime/services/NavigationResolver.js +1 -1
  145. package/src/main/js/sap/ushell/components/workPageRuntime/services/WorkPage.js +1 -170
  146. package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
  147. package/src/main/js/sap/ushell/library.js +1 -3
  148. package/src/main/js/sap/ushell/navigationMode.js +1 -1
  149. package/src/main/js/sap/ushell/performance/ShellAnalytics.js +1 -1
  150. package/src/main/js/sap/ushell/performance/StatisticalRecord.js +1 -1
  151. package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
  152. package/src/main/js/sap/ushell/renderers/fiori2/AccessKeysHandler.js +3 -1
  153. package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +2 -2
  154. package/src/main/js/sap/ushell/renderers/fiori2/allMyApps/AllMyApps.controller.js +2 -1
  155. package/src/main/js/sap/ushell/renderers/fiori2/allMyApps/AllMyApps.view.xml +10 -1
  156. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources.properties +15 -5
  157. package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_de.properties +1 -1
  158. package/src/main/js/sap/ushell/renderers/fiori2/search/searchComponent/manifest.json +1 -1
  159. package/src/main/js/sap/ushell/services/AppConfiguration.js +0 -37
  160. package/src/main/js/sap/ushell/services/AppLifeCycle.js +52 -3
  161. package/src/main/js/sap/ushell/services/AppState.js +1 -1
  162. package/src/main/js/sap/ushell/services/Bookmark.js +93 -30
  163. package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +1 -1
  164. package/src/main/js/sap/ushell/services/CommonDataModel.js +5 -243
  165. package/src/main/js/sap/ushell/services/Configuration.js +1 -1
  166. package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +1 -1
  167. package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +1 -1
  168. package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +1 -1
  169. package/src/main/js/sap/ushell/services/DarkModeSupport.js +1 -1
  170. package/src/main/js/sap/ushell/services/LaunchPage.js +1 -1
  171. package/src/main/js/sap/ushell/services/Menu.js +1 -1
  172. package/src/main/js/sap/ushell/services/Message.js +1 -1
  173. package/src/main/js/sap/ushell/services/MessageBroker.js +31 -12
  174. package/src/main/js/sap/ushell/services/NavTargetResolution.js +4 -2
  175. package/src/main/js/sap/ushell/services/NavigationDataProvider.js +1 -1
  176. package/src/main/js/sap/ushell/services/PageBuilding.js +1 -1
  177. package/src/main/js/sap/ushell/services/PagePersistence.js +1 -1
  178. package/src/main/js/sap/ushell/services/PageReferencing.js +1 -1
  179. package/src/main/js/sap/ushell/services/Pages.js +21 -3
  180. package/src/main/js/sap/ushell/services/Personalization.js +1 -1
  181. package/src/main/js/sap/ushell/services/PluginManager.js +1 -3
  182. package/src/main/js/sap/ushell/services/ReferenceResolver.js +178 -125
  183. package/src/main/js/sap/ushell/services/Search.js +1 -1
  184. package/src/main/js/sap/ushell/services/SearchCEP.js +1 -1
  185. package/src/main/js/sap/ushell/services/SearchableContent.js +1 -1
  186. package/src/main/js/sap/ushell/services/ShellNavigationHashChanger.js +15 -18
  187. package/src/main/js/sap/ushell/services/SmartNavigation.js +32 -6
  188. package/src/main/js/sap/ushell/services/SpaceContent.js +1 -1
  189. package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
  190. package/src/main/js/sap/ushell/services/URLTemplate.js +1 -1
  191. package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +1 -1
  192. package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +1 -1
  193. package/src/main/js/sap/ushell/services/UserDefaultParameters.js +1 -1
  194. package/src/main/js/sap/ushell/services/UserInfo.js +1 -1
  195. package/src/main/js/sap/ushell/services/UserRecents.js +1 -1
  196. package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +1 -1
  197. package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +1 -1
  198. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Formatter.js +1 -1
  199. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundIndex.js +1 -1
  200. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundProvider.js +1 -1
  201. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/PrelaunchOperations.js +5 -1
  202. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Search.js +1 -1
  203. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/StagedLogger.js +1 -1
  204. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/SystemContext.js +2 -2
  205. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Utils.js +1 -1
  206. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/VirtualInbounds.js +1 -1
  207. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/XAppStateProcessing.js +1 -1
  208. package/src/main/js/sap/ushell/services/_CommonDataModel/SiteConverter.js +1 -1
  209. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
  210. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +131 -135
  211. package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +1 -1
  212. package/src/main/js/sap/ushell/services/_MessageBroker/MessageBrokerEngine.js +341 -308
  213. package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +1 -1
  214. package/src/main/js/sap/ushell/services/_PluginManager/Extensions.js +1 -1
  215. package/src/main/js/sap/ushell/services/_PluginManager/HeaderExtensions.js +1 -1
  216. package/src/main/js/sap/ushell/services/_PluginManager/MenuExtensions.js +1 -1
  217. package/src/main/js/sap/ushell/services/_Ui5ComponentLoader/utils.js +1 -1
  218. package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstanceLink.js +1 -1
  219. package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +1 -1
  220. package/src/main/js/sap/ushell/themes/base/Catalog.less +4 -0
  221. package/src/main/js/sap/ushell/themes/base/ContentFinder.less +5 -1
  222. package/src/main/js/sap/ushell/themes/base/SearchFLP.less +0 -5
  223. package/src/main/js/sap/ushell/themes/base/ShellAppTitle.less +6 -9
  224. package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.eot +0 -0
  225. package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.json +16 -1
  226. package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.ttf +0 -0
  227. package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.woff +0 -0
  228. package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.woff2 +0 -0
  229. package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.eot +0 -0
  230. package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.ttf +0 -0
  231. package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.woff +0 -0
  232. package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.woff2 +0 -0
  233. package/src/main/js/sap/ushell/themes/base/library.source.less +0 -2
  234. package/src/main/js/sap/ushell/themes/sap_belize/ShellHeader.less +0 -9
  235. package/src/main/js/sap/ushell/themes/sap_belize/library.source.less +0 -1
  236. package/src/main/js/sap/ushell/themes/sap_belize_hcb/ShellHeader.less +0 -27
  237. package/src/main/js/sap/ushell/themes/sap_belize_hcb/library.source.less +0 -2
  238. package/src/main/js/sap/ushell/themes/sap_belize_hcw/ShellHeader.less +0 -25
  239. package/src/main/js/sap/ushell/themes/sap_belize_hcw/library.source.less +0 -2
  240. package/src/main/js/sap/ushell/themes/sap_bluecrystal/library.source.less +0 -2
  241. package/src/main/js/sap/ushell/themes/sap_fiori_3/ShellHeader.less +2 -11
  242. package/src/main/js/sap/ushell/themes/sap_fiori_3/library.source.less +0 -1
  243. package/src/main/js/sap/ushell/themes/sap_fiori_3_dark/ShellHeader.less +2 -11
  244. package/src/main/js/sap/ushell/themes/sap_fiori_3_dark/library.source.less +0 -1
  245. package/src/main/js/sap/ushell/themes/sap_fiori_3_hcb/ShellHeader.less +0 -25
  246. package/src/main/js/sap/ushell/themes/sap_fiori_3_hcb/library.source.less +0 -2
  247. package/src/main/js/sap/ushell/themes/sap_fiori_3_hcw/ShellHeader.less +0 -25
  248. package/src/main/js/sap/ushell/themes/sap_fiori_3_hcw/library.source.less +0 -2
  249. package/src/main/js/sap/ushell/themes/sap_hcb/ShellHeader.less +0 -24
  250. package/src/main/js/sap/ushell/themes/sap_hcb/library.source.less +0 -2
  251. package/src/main/js/sap/ushell/themes/sap_horizon/ShellAppTitle.less +2 -12
  252. package/src/main/js/sap/ushell/themes/sap_horizon/library.source.less +0 -1
  253. package/src/main/js/sap/ushell/themes/sap_horizon_dark/ShellAppTitle.less +2 -12
  254. package/src/main/js/sap/ushell/themes/sap_horizon_dark/library.source.less +0 -1
  255. package/src/main/js/sap/ushell/themes/sap_horizon_hcb/ShellAppTitle.less +0 -25
  256. package/src/main/js/sap/ushell/themes/sap_horizon_hcb/library.source.less +0 -1
  257. package/src/main/js/sap/ushell/themes/sap_horizon_hcw/ShellAppTitle.less +0 -25
  258. package/src/main/js/sap/ushell/themes/sap_horizon_hcw/library.source.less +0 -1
  259. package/src/main/js/sap/ushell/ui/appfinder/AppBoxRenderer.js +0 -15
  260. package/src/main/js/sap/ushell/ui/cards/FrequentActivitiesExtension.js +199 -0
  261. package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +202 -0
  262. package/src/main/js/sap/ushell/ui/contentFinder/AppBox.js +17 -2
  263. package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +1 -1
  264. package/src/main/js/sap/ushell/ui/launchpad/LoadingDialogRenderer.js +2 -45
  265. package/src/main/js/sap/ushell/ui/launchpad/Page.js +1 -1
  266. package/src/main/js/sap/ushell/ui/launchpad/Section.js +2 -2
  267. package/src/main/js/sap/ushell/ui/launchpad/TileRenderer.js +4 -21
  268. package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +1 -1
  269. package/src/main/js/sap/ushell/ui/shell/ShellAppTitle.js +6 -8
  270. package/src/main/js/sap/ushell/ui/shell/ShellHeadItem.js +1 -1
  271. package/src/main/js/sap/ushell/ui/shell/ShellLayout.js +1 -1
  272. package/src/main/js/sap/ushell/ui/shell/ShellNavigationMenu.js +21 -62
  273. package/src/main/js/sap/ushell/ui/shell/SplitContainer.js +1 -1
  274. package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -1
  275. package/src/main/js/sap/ushell/ui/utils.js +1 -1
  276. package/src/main/js/sap/ushell/ui5service/ShellUIService.js +1 -1
  277. package/src/main/js/sap/ushell/ui5service/UserStatus.js +1 -1
  278. package/src/main/js/sap/ushell/utils/DynamicTileRequest.js +25 -5
  279. package/src/main/js/sap/ushell/utils/UrlShortening.js +1 -1
  280. package/src/test/js/sap/ushell/bootstrap/sandbox.js +1 -1
  281. package/ui5.yaml +53 -51
  282. package/src/main/js/sap/ushell/services/ContentExtension.js +0 -114
  283. package/src/main/js/sap/ushell/themes/base/UserPreferencesButton.less +0 -35
  284. package/src/main/js/sap/ushell/themes/base/flower-standalone.less +0 -774
  285. package/src/main/js/sap/ushell/themes/sap_belize/UserPreferencesButton.less +0 -7
  286. package/src/main/js/sap/ushell/themes/sap_belize_hcb/UserPreferencesButton.less +0 -7
  287. package/src/main/js/sap/ushell/themes/sap_belize_hcb/flower-standalone.less +0 -34
  288. package/src/main/js/sap/ushell/themes/sap_belize_hcw/UserPreferencesButton.less +0 -7
  289. package/src/main/js/sap/ushell/themes/sap_belize_hcw/flower-standalone.less +0 -34
  290. package/src/main/js/sap/ushell/themes/sap_bluecrystal/UserPreferencesButton.less +0 -7
  291. package/src/main/js/sap/ushell/themes/sap_bluecrystal/flower-standalone.less +0 -23
  292. package/src/main/js/sap/ushell/themes/sap_fiori_3_hcb/flower-standalone.less +0 -34
  293. package/src/main/js/sap/ushell/themes/sap_fiori_3_hcw/flower-standalone.less +0 -33
  294. package/src/main/js/sap/ushell/themes/sap_hcb/UserPreferencesButton.less +0 -7
  295. package/src/main/js/sap/ushell/themes/sap_hcb/flower-standalone.less +0 -34
  296. package/src/main/js/sap/ushell/themes/sap_horizon/UserPreferencesButton.less +0 -9
  297. package/src/main/js/sap/ushell/themes/sap_horizon_dark/UserPreferencesButton.less +0 -8
  298. package/src/main/js/sap/ushell/ui/footerbar/SettingsButton.js +0 -90
  299. package/src/main/js/sap/ushell/ui/footerbar/UserPreferencesButton.js +0 -505
  300. package/src/main/js/sap/ushell/ui5service/CardNavigation.js +0 -131
  301. package/src/main/js/sap/ushell/ui5service/CardUserFrequents.js +0 -138
  302. package/src/main/js/sap/ushell/ui5service/CardUserRecents.js +0 -101
  303. package/src/main/js/sap/ushell/ui5service/_CardUserRecents/CardUserRecentsBase.js +0 -108
@@ -2,7 +2,7 @@
2
2
  /**
3
3
  * @fileOverview The Unified Shell's Search adapter for myHome.
4
4
  *
5
- * @version 1.111.1
5
+ * @version 1.112.1
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/base/Log",
@@ -4,7 +4,7 @@
4
4
  * @fileOverview The Unified Shell's UserDefaultParameterPersistence adapter for the CFLP
5
5
  * platform.
6
6
  *
7
- * @version 1.111.1
7
+ * @version 1.112.1
8
8
  */
9
9
  sap.ui.define([
10
10
  "sap/ushell/utils/HttpClient",
@@ -5,7 +5,7 @@
5
5
  *
6
6
  * The local personalization adapter can be configured to store data either in
7
7
  * the local storage (default) or in memory.
8
- * @version 1.111.1
8
+ * @version 1.112.1
9
9
  */
10
10
  sap.ui.define([
11
11
  "sap/ui/thirdparty/jquery",
@@ -5,7 +5,7 @@
5
5
  * TODO will be replaced by true persistence within this SP!
6
6
  * This adapter delegates to the Personalization Adapter
7
7
  *
8
- * @version 1.111.1
8
+ * @version 1.112.1
9
9
  */
10
10
  sap.ui.define([
11
11
  "sap/ushell/services/_AppState/AppStatePersistencyMethod",
@@ -4,7 +4,7 @@
4
4
  * @fileOverview The Unified Shell's ClientSideTargetResolutionAdapter for the local
5
5
  * platform.
6
6
  *
7
- * @version 1.111.1
7
+ * @version 1.112.1
8
8
  */
9
9
  sap.ui.define([
10
10
  "sap/ui/thirdparty/jquery",
@@ -2,7 +2,7 @@
2
2
  /**
3
3
  * @fileOverview The Unified Shell's container adapter for standalone demos.
4
4
  *
5
- * @version 1.111.1
5
+ * @version 1.112.1
6
6
  */
7
7
  /**
8
8
  * @namespace Default namespace for Unified Shell adapters for standalone demos. They can usually
@@ -4,7 +4,7 @@
4
4
  * @fileOverview The Unified Shell's page builder adapter for the 'demo' platform.
5
5
  *
6
6
  * @deprecated since 1.100
7
- * @version 1.111.1
7
+ * @version 1.112.1
8
8
  */
9
9
  sap.ui.define([
10
10
  "sap/base/Log",
@@ -2,7 +2,7 @@
2
2
 
3
3
  /**
4
4
  * @fileOverview The NavTargetResolution adapter for the demo platform.
5
- * @version 1.111.1
5
+ * @version 1.112.1
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/ushell/services/_ClientSideTargetResolution/VirtualInbounds",
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @fileOverview The Unified Shell's page builder adapter for the 'demo' platform.
5
5
  * It creates chip instances from chip raw data. Compared to the other platforms this adapter has restricted functionality.
6
- * @version 1.111.1
6
+ * @version 1.112.1
7
7
  */
8
8
  sap.ui.define([
9
9
  "sap/ui/core/ComponentContainer",
@@ -2,7 +2,7 @@
2
2
 
3
3
  /**
4
4
  * @fileOverview PagePersistenceAdapter for the local platform.
5
- * @version 1.111.1
5
+ * @version 1.112.1
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/ushell/utils",
@@ -6,7 +6,7 @@
6
6
  *
7
7
  * The local personalization adapter can be configured to store data either in
8
8
  * the local storage (default) or in memory.
9
- * @version 1.111.1
9
+ * @version 1.112.1
10
10
  */
11
11
  sap.ui.define([
12
12
  "sap/ushell/utils",
@@ -2,7 +2,7 @@
2
2
  /**
3
3
  * @fileOverview The Search adapter for the demo platform.
4
4
  *
5
- * @version 1.111.1
5
+ * @version 1.112.1
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/ui/thirdparty/jquery"
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @fileOverview The Unified Shell's Search adapter for myHome.
5
5
  *
6
- * @version 1.111.1
6
+ * @version 1.112.1
7
7
  */
8
8
  /*eslint-disable quote-props*/
9
9
  sap.ui.define([], function () {
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @fileOverview The SupportTicket adapter for the local platform.
5
5
  *
6
- * @version 1.111.1
6
+ * @version 1.112.1
7
7
  */
8
8
  sap.ui.define([
9
9
  "sap/ui/thirdparty/jquery"
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @fileOverview The Unified Shell's Ui5ComponentLoaderAdapter for the local platform
5
5
  *
6
- * @version 1.111.1
6
+ * @version 1.112.1
7
7
  */
8
8
  sap.ui.define([
9
9
  ], function () {
@@ -6,7 +6,7 @@
6
6
  * TODO will be replaced by true persistence within this SP!
7
7
  * This adapter delegates to the Personalization Adapter
8
8
  *
9
- * @version 1.111.1
9
+ * @version 1.112.1
10
10
  */
11
11
  sap.ui.define([
12
12
  "sap/ui/thirdparty/jquery",
@@ -2,7 +2,7 @@
2
2
 
3
3
  /**
4
4
  * @fileOverview The UserInfo adapter for the demo platform.
5
- * @version 1.111.1
5
+ * @version 1.112.1
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/ui/thirdparty/jquery",
@@ -579,6 +579,18 @@ sap.ui.define([
579
579
  [],
580
580
  UI5ComponentType.Application
581
581
  ).then(function (oResolutionResultWithComponentHandle) {
582
+ if (AppRuntimeContext.getIsScube() === true) {
583
+ try {
584
+ if (sHash && sHash.indexOf("Shell-startIntent") === 0) {
585
+ var sAppTitle = oResolutionResultWithComponentHandle.componentHandle.getMetadata().getManifestEntry("/sap.app/title");
586
+ if (typeof sAppTitle === "string") {
587
+ AppRuntimeService.sendMessageToOuterShell("sap.ushell.services.ShellUIService.setTitle", {sTitle: sAppTitle});
588
+ }
589
+ }
590
+ } catch (error) {
591
+ //do nothing
592
+ }
593
+ }
582
594
  oComponentContainer.setComponent(oResolutionResultWithComponentHandle.componentHandle.getInstance());
583
595
  AppLifeCycleAgent.setComponent(oComponentContainer);
584
596
  FesrEnhancer.setAppShortId(oResolutionResultWithComponentHandle.componentHandle);
@@ -5,8 +5,10 @@ sap.ui.define([
5
5
  "sap/ushell/services/_AppState/AppState",
6
6
  "sap/ui/thirdparty/jquery",
7
7
  "sap/base/Log",
8
- "sap/ushell/appRuntime/ui5/AppRuntimeContext"
9
- ], function (CrossApplicationNavigation, AppRuntimeService, AppStateAppState, jQuery, Log, AppRuntimeContext) {
8
+ "sap/ushell/appRuntime/ui5/AppRuntimeContext",
9
+ "sap/base/util/deepClone",
10
+ "sap/ushell/utils/UrlParsing"
11
+ ], function (CrossApplicationNavigation, AppRuntimeService, AppStateAppState, jQuery, Log, AppRuntimeContext, deepClone, UrlParsing) {
10
12
  "use strict";
11
13
 
12
14
  function CrossApplicationNavigationProxy (oContainerInterface, sParameters, oServiceConf) {
@@ -139,9 +141,22 @@ sap.ui.define([
139
141
  this.isNavigationSupported = function (aIntents, oComponent) {
140
142
  //ready also for scube
141
143
  if (AppRuntimeContext.getIsScube()) {
142
- var oDeferred = new jQuery.Deferred();
144
+ var oDeferred = new jQuery.Deferred(),
145
+ aFilteredIntents;
146
+
147
+ aFilteredIntents = aIntents.map(function (oArg) {
148
+ if (typeof oArg === "object") {
149
+ var oNewArg = oArg;
150
+ if (oArg.params && oArg.params.hasOwnProperty("sap-app-origin")) {
151
+ oNewArg = deepClone(oArg);
152
+ delete oNewArg.params["sap-app-origin"];
153
+ }
154
+ return oNewArg;
155
+ }
156
+ return oArg;
157
+ });
143
158
  sap.ushell.Container.getServiceAsync("NavTargetResolution").then(function (NavTargetResolution) {
144
- NavTargetResolution.isNavigationSupported(aIntents, oComponent).done(oDeferred.resolve, oDeferred.reject);
159
+ NavTargetResolution.isNavigationSupported(aFilteredIntents, oComponent).done(oDeferred.resolve, oDeferred.reject);
145
160
  });
146
161
  return oDeferred.promise();
147
162
  }
@@ -156,6 +171,15 @@ sap.ui.define([
156
171
  this.toExternal = function (oArgs, oComponent) {
157
172
  //ready also for scube
158
173
  if (AppRuntimeContext.getIsScube()) {
174
+ if (oArgs.target && oArgs.target.shellHash) {
175
+ var oTmpArgs = UrlParsing.parseShellHash(oArgs.target.shellHash);
176
+ if (oTmpArgs.params) {
177
+ delete oTmpArgs.params["sap-app-origin"];
178
+ oArgs.target.shellHash = UrlParsing.constructShellHash(oTmpArgs);
179
+ }
180
+ } else if (oArgs.params) {
181
+ delete oArgs.params["sap-app-origin"];
182
+ }
159
183
  sap.ushell.Container.getServiceAsync("ShellNavigation").then(function (oShellNavigationService) {
160
184
  oShellNavigationService.toExternal(oArgs, oComponent);
161
185
  });
@@ -34,11 +34,13 @@ sap.ui.define([
34
34
  };
35
35
 
36
36
  this.expandCompactHash = function (sHashFragment) {
37
- //for scube, no need to run locally
38
- return AppRuntimeService.sendMessageToOuterShell(
39
- "sap.ushell.services.NavTargetResolution.expandCompactHash", {
40
- sHashFragment: sHashFragment
41
- });
37
+ if (sHashFragment && sHashFragment.indexOf("sap-intent-param") > 0) {
38
+ return AppRuntimeService.sendMessageToOuterShell(
39
+ "sap.ushell.services.NavTargetResolution.expandCompactHash", {
40
+ sHashFragment: sHashFragment
41
+ });
42
+ }
43
+ return new jQuery.Deferred().resolve(sHashFragment).promise();
42
44
  };
43
45
 
44
46
  this.resolveHashFragmentLocal = this.resolveHashFragment;
@@ -2,7 +2,7 @@
2
2
  /**
3
3
  * @fileOverview The Unified Shell's Ui5ComponentLoaderAdapter for the application runtime platform
4
4
  *
5
- * @version 1.111.1
5
+ * @version 1.112.1
6
6
  */
7
7
  sap.ui.define([
8
8
  ], function () {
@@ -46,7 +46,7 @@
46
46
 
47
47
  * </code>
48
48
  *
49
- * @version 1.111.1
49
+ * @version 1.112.1
50
50
  */
51
51
 
52
52
  sap.ui.define([
@@ -72,7 +72,7 @@
72
72
 
73
73
  * </code>
74
74
  *
75
- * @version 1.111.1
75
+ * @version 1.112.1
76
76
  * @namespace
77
77
  */
78
78
  sap.ui.define([
@@ -4,7 +4,7 @@
4
4
  * @fileOverview Configure the UI5Settings for Date and Time Format for the 'CDM'
5
5
  * platform.
6
6
  *
7
- * @version 1.111.1
7
+ * @version 1.112.1
8
8
  */
9
9
  sap.ui.define([
10
10
  "sap/base/Log",
@@ -260,6 +260,7 @@ sap.ui.define([
260
260
  enableFiori3: true, // since 1.66, it is always true
261
261
  sessionTimeoutIntervalInMinutes: getConfigValue("renderers/fiori2/componentData/config/sessionTimeoutIntervalInMinutes", -1),
262
262
  enableFeaturePolicyInIframes: getConfigValue("renderers/fiori2/componentData/config/enableFeaturePolicyInIframes", true),
263
+ favIcon: getConfigValue("renderers/fiori2/componentData/config/favIcon", undefined),
263
264
  model: {
264
265
  enableSAPCopilotWindowDocking: undefined,
265
266
  enableBackGroundShapes: getEnableBackGroundShapes(),
@@ -11,11 +11,11 @@ sap.ui.define([
11
11
  ], function (ObjectPath) {
12
12
  "use strict";
13
13
 
14
- /* Possible blacklist entries:
14
+ /* Possible block list entries:
15
15
  - "a/b/c": [] --> a/b/c cannot be overwritten at all
16
16
  - "a/b/c": [ 1, 2 ] --> a/b/c cannot be overwritten with the values 1 or 2 but with any other value like 3
17
17
  */
18
- var oBlackList = {
18
+ var oBlockList = {
19
19
  "renderers/fiori2/componentData/config/enablePersonalization": [true], // switch off only
20
20
 
21
21
  // Session handling
@@ -34,39 +34,42 @@ sap.ui.define([
34
34
  "services/Container/adapter/config/userProfile/defaults/id": [], // user id
35
35
  "services/Container/adapter/config/userProfile/defaults/firstName": [],
36
36
  "services/Container/adapter/config/userProfile/defaults/lastName": [],
37
- "services/Container/adapter/config/userProfile/defaults/fullName": []
37
+ "services/Container/adapter/config/userProfile/defaults/fullName": [],
38
+
39
+ // The usageRecorder serviceUrl must not be overwritten for security reasons
40
+ "services/NavTargetResolution/config/usageRecorder/serviceUrl": []
38
41
  };
39
42
 
40
- function isBlacklisted (oConsideredBlackList, oEntry) {
41
- var sFullPropertyPath = "",
42
- aBlackListEntry,
43
+ function isBlockListed (oConsideredBlockList, oEntry) {
44
+ var aBlockListEntry,
43
45
  i;
46
+ var sFullPropertyPath = "";
44
47
 
45
48
  if (oEntry.namespace) {
46
49
  sFullPropertyPath = oEntry.namespace + "/";
47
50
  }
48
51
  sFullPropertyPath += oEntry.propertyName;
49
52
 
50
- aBlackListEntry = oConsideredBlackList[sFullPropertyPath];
51
- if (!aBlackListEntry) {
53
+ aBlockListEntry = oConsideredBlockList[sFullPropertyPath];
54
+ if (!aBlockListEntry) {
52
55
  return false;
53
56
  }
54
57
 
55
- if (Array.isArray(aBlackListEntry)) {
56
- if (aBlackListEntry.length === 0) {
58
+ if (Array.isArray(aBlockListEntry)) {
59
+ if (aBlockListEntry.length === 0) {
57
60
  return true;
58
61
  }
59
- // check if the value is on the value blacklist
60
- for (i = 0; i < aBlackListEntry.length; i += 1) {
61
- if (aBlackListEntry[i] === oEntry.value) {
62
+ // check if the value is on the value block list
63
+ for (i = 0; i < aBlockListEntry.length; i += 1) {
64
+ if (aBlockListEntry[i] === oEntry.value) {
62
65
  return true;
63
66
  }
64
67
  }
65
- // the specified value is not on the blacklist
68
+ // the specified value is not on the block list
66
69
  return false;
67
70
  }
68
71
 
69
- throw new Error("Black list entry '" + sFullPropertyPath + "'has an unknown type");
72
+ throw new Error("Block list entry '" + sFullPropertyPath + "'has an unknown type");
70
73
  }
71
74
 
72
75
  function parseValue (sValue) {
@@ -92,12 +95,12 @@ sap.ui.define([
92
95
 
93
96
  function getConfigFromWindowLocation (oWindowLocation) {
94
97
  var aParsedQueryParamValue,
95
- aOverwrittenEntryCandidates,
96
- aOverwrittenEntries = [],
97
- oFinalConfig = {},
98
- // To conform with the specification of the query string ("application/x-www-form-urlencoded")
99
- // see: https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1
100
- search = oWindowLocation.search.replace("+", " ");
98
+ aOverwrittenEntryCandidates;
99
+ var aOverwrittenEntries = [];
100
+ var oFinalConfig = {};
101
+ // To conform with the specification of the query string ("application/x-www-form-urlencoded")
102
+ // see: https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1
103
+ var search = oWindowLocation.search.replace("+", " ");
101
104
 
102
105
  // find the parameter value
103
106
  aParsedQueryParamValue = /[?&]sap-ushell-xx-overwrite-config=([^&$]*)(&|$)/
@@ -127,7 +130,7 @@ sap.ui.define([
127
130
  value: parseValue(decodeURIComponent(aParts[1]))
128
131
  };
129
132
 
130
- if (isBlacklisted(oBlackList, oEntry)) {
133
+ if (isBlockListed(oBlockList, oEntry)) {
131
134
  return;
132
135
  }
133
136
 
@@ -156,6 +159,6 @@ sap.ui.define([
156
159
  return {
157
160
  getConfig: getConfigFromWindowLocation.bind(null, window.location),
158
161
  _getConfigFromWindowLocation: getConfigFromWindowLocation,
159
- _isBlacklisted: isBlacklisted
162
+ _isBlockListed: isBlockListed
160
163
  };
161
164
  });
@@ -3,6 +3,7 @@
3
3
  sap.ui.define([
4
4
  "sap/ui/core/mvc/View",
5
5
  "sap/ui/thirdparty/jquery",
6
+ "sap/ui/core/InvisibleText",
6
7
  "sap/ui/core/ListItem",
7
8
  "sap/ui/model/Sorter",
8
9
  "sap/m/MultiComboBox",
@@ -20,6 +21,7 @@ sap.ui.define([
20
21
  ], function (
21
22
  View,
22
23
  jQuery,
24
+ InvisibleText,
23
25
  ListItem,
24
26
  Sorter,
25
27
  MultiComboBox,
@@ -150,60 +152,94 @@ sap.ui.define([
150
152
  },
151
153
 
152
154
  createSegmentedButtons: function (sMenu) {
153
- var oController,
154
- oResourceBundle,
155
- segmentedButtonsArray,
156
- aButtons,
157
- button,
158
- i;
159
-
160
155
  if (this.segmentedButton) {
161
156
  this.segmentedButton.setSelectedKey(sMenu);
162
157
  return this.segmentedButton;
163
158
  }
164
159
 
165
- oController = this.getController();
166
- oResourceBundle = resources.i18n;
167
- segmentedButtonsArray = [];
168
- segmentedButtonsArray.push(new SegmentedButtonItem("catalog", {
169
- text: oResourceBundle.getText("appFinderCatalogTitle"),
170
- key: "catalog",
171
- press: function (oEvent) {
172
- oController.onSegmentButtonClick(oEvent);
173
- }
174
- }));
160
+ var oController = this.getController();
161
+ var oResourceBundle = resources.i18n;
162
+
163
+ var oCatalogSBIInvisibleText = new InvisibleText({
164
+ text: resources.i18n.getText("AppFinder.SegmentedButton.Catalog.Describedby")
165
+ }).toStatic();
166
+ this.addDependent(oCatalogSBIInvisibleText);
167
+ this.segmentedButton = new SegmentedButton("appFinderSegmentedButtons", {
168
+ items: [
169
+ new SegmentedButtonItem("catalog", {
170
+ text: oResourceBundle.getText("appFinderCatalogTitle"),
171
+ key: "catalog",
172
+ press: function (oEvent) {
173
+ oController.onSegmentButtonClick(oEvent);
174
+ },
175
+ customData: [
176
+ new AccessibilityCustomData({
177
+ key: "aria-controls",
178
+ value: "catalogView",
179
+ writeToDom: true
180
+ }),
181
+ new AccessibilityCustomData({
182
+ key: "aria-describedby",
183
+ value: oCatalogSBIInvisibleText.getId(),
184
+ writeToDom: true
185
+ })
186
+ ]
187
+ })
188
+ ]
189
+ });
190
+
175
191
  if (oController.bEnableEasyAccessUserMenu) {
176
- segmentedButtonsArray.push(new SegmentedButtonItem("userMenu", {
192
+ var oUserMenuSBIInvisibleText = new InvisibleText({
193
+ text: resources.i18n.getText("AppFinder.SegmentedButton.UserMenu.Describedby")
194
+ }).toStatic();
195
+ this.addDependent(oUserMenuSBIInvisibleText);
196
+ this.segmentedButton.addItem(new SegmentedButtonItem("userMenu", {
177
197
  text: oResourceBundle.getText("appFinderUserMenuTitle"),
178
198
  key: "userMenu",
179
199
  press: function (oEvent) {
180
200
  oController.onSegmentButtonClick(oEvent);
181
- }
201
+ },
202
+ customData: [
203
+ new AccessibilityCustomData({
204
+ key: "aria-controls",
205
+ value: "userMenuView",
206
+ writeToDom: true
207
+ }),
208
+ new AccessibilityCustomData({
209
+ key: "aria-describedby",
210
+ value: oUserMenuSBIInvisibleText.getId(),
211
+ writeToDom: true
212
+ })
213
+ ]
182
214
  }));
183
215
  }
184
216
  if (oController.bEnableEasyAccessSAPMenu) {
185
- segmentedButtonsArray.push(new SegmentedButtonItem("sapMenu", {
217
+ var oSAPMenuSBIInvisibleText = new InvisibleText({
218
+ text: resources.i18n.getText("AppFinder.SegmentedButton.SAPMenu.Describedby")
219
+ }).toStatic();
220
+ this.addDependent(oSAPMenuSBIInvisibleText);
221
+ this.segmentedButton.addItem(new SegmentedButtonItem("sapMenu", {
186
222
  text: oResourceBundle.getText("appFinderSapMenuTitle"),
187
223
  key: "sapMenu",
188
224
  press: function (oEvent) {
189
225
  oController.onSegmentButtonClick(oEvent);
190
- }
226
+ },
227
+ customData: [
228
+ new AccessibilityCustomData({
229
+ key: "aria-controls",
230
+ value: "sapMenuView",
231
+ writeToDom: true
232
+ }),
233
+ new AccessibilityCustomData({
234
+ key: "aria-describedby",
235
+ value: oSAPMenuSBIInvisibleText.getId(),
236
+ writeToDom: true
237
+ })
238
+ ]
191
239
  }));
192
240
  }
193
- this.segmentedButton = new SegmentedButton("appFinderSegmentedButtons", {
194
- items: segmentedButtonsArray
195
- });
196
241
 
197
242
  this.segmentedButton.setSelectedKey(sMenu);
198
- aButtons = this.segmentedButton.getItems();
199
- for (i = 0; i < aButtons.length; i++) {
200
- button = aButtons[i];
201
- button.addCustomData(new AccessibilityCustomData({
202
- key: "aria-controls",
203
- value: button.getId() + "View",
204
- writeToDom: true
205
- }));
206
- }
207
243
 
208
244
  return this.segmentedButton;
209
245
  },
@@ -120,6 +120,9 @@ sap.ui.define([
120
120
  * @since 1.105.0
121
121
  */
122
122
  this.loadAndUpdate = function () {
123
+ if (!isSpacesEnabled()) {
124
+ return Promise.resolve();
125
+ }
123
126
  return loadVisualizationOrganizerAndUpdateBindings.call(this);
124
127
  };
125
128
 
@@ -3,7 +3,7 @@
3
3
  "sap.app": {
4
4
  "id": "sap.ushell.components.appfinder",
5
5
  "applicationVersion": {
6
- "version": "1.111.1"
6
+ "version": "1.112.1"
7
7
  },
8
8
  "i18n": {
9
9
  "bundleUrl": "../../renderers/fiori2/resources/resources.properties",
@@ -1,7 +1,7 @@
1
1
  // Copyright (c) 2009-2022 SAP SE, All Rights Reserved
2
2
  /**
3
3
  * @fileOverview handle all the resources for the different applications.
4
- * @version 1.111.1
4
+ * @version 1.112.1
5
5
  */
6
6
  sap.ui.define([
7
7
  "sap/ushell/components/applicationIntegration/elements/model",
@@ -24,7 +24,8 @@ sap.ui.define([
24
24
  "sap/ushell/EventHub",
25
25
  "sap/ushell/utils/UrlParsing",
26
26
  "sap/ui/core/Core",
27
- "sap/ui/thirdparty/hasher"
27
+ "sap/ui/thirdparty/hasher",
28
+ "sap/ushell/services/_MessageBroker/MessageBrokerEngine"
28
29
  ], function (
29
30
  ElementsModel,
30
31
  Storage,
@@ -46,7 +47,8 @@ sap.ui.define([
46
47
  EventHub,
47
48
  oUrlParsing,
48
49
  Core,
49
- hasher
50
+ hasher,
51
+ MessageBrokerEngine
50
52
  ) {
51
53
  "use strict";
52
54
 
@@ -88,6 +90,10 @@ sap.ui.define([
88
90
  RESTRICTED: "restricted"
89
91
  };
90
92
 
93
+ //connect FLP to the message broker
94
+ if (window.QUnit === undefined) {
95
+ MessageBrokerEngine.connect("FLP");
96
+ }
91
97
  this.shellElements = function () {
92
98
  return RelatedShellElements;
93
99
  };
@@ -1541,6 +1547,12 @@ sap.ui.define([
1541
1547
  // going to be reused, we prompt the container to load the new application context.
1542
1548
  var oPromiseAsyncAppCreate = new jQuery.Deferred().resolve().promise();
1543
1549
  if (bReuseStatefulContainer) {
1550
+ //for scube - make sure the container is active before we open the app
1551
+ //to allow post messages form the iframe to flp that are sent
1552
+ //as part of the target resolution process
1553
+ if (oTarget.appCapabilities && oTarget.appCapabilities.appFrameworkId === "UI5") {
1554
+ oInnerControl.setProperty("active", true, true);
1555
+ }
1544
1556
  oPromiseAsyncAppCreate = that.handleOpenStateful(bIsInitial, bIsInCache, "application" + sAppId, oInnerControl, oTarget, sFixedShellHash, oKeepAliveMode);
1545
1557
  } else if (that.isWebGuiV1StatefulContainer(oTarget.url)) {
1546
1558
  oPromiseAsyncAppCreate = that.reuseApplicationContainer(oInnerControl, "TR", oTarget.url);
@@ -1,7 +1,7 @@
1
1
  // Copyright (c) 2009-2022 SAP SE, All Rights Reserved
2
2
  /**
3
3
  * @fileOverview handle all the resources for the different applications.
4
- * @version 1.111.1
4
+ * @version 1.112.1
5
5
  */
6
6
  sap.ui.define([], function () {
7
7
  "use strict";