@sapui5/sap.ushell 1.111.1 → 1.112.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 (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 +50 -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
@@ -1,7 +0,0 @@
1
- /* ============================================================================ */
2
- /* CSS for control sap.ushell/UserPreferencesButton.control sap_bluecrystal theme */
3
- /* ============================================================================ */
4
- .sapUshellUserPrefUserIdentifier {
5
- border-bottom: 1px solid @sapUiListBorderColor;
6
- background-color: @sapUiListBackground;
7
- }
@@ -1,7 +0,0 @@
1
- /* ============================================= */
2
- /* CSS for control sap.ushell/UserPreferencesButton.control sap_hcb theme*/
3
- /* ============================================= */
4
- .sapUshellUserPrefUserIdentifier {
5
- border-bottom: 1px solid @sapHC_ReducedAltForeground;
6
- background-color: @sapUiHcStandardBackground;
7
- }
@@ -1,34 +0,0 @@
1
-
2
- //[Tags "Color"]
3
- // [Description "Background color for the loading animation"]
4
- @_sap_ushell_LoadingFlower_LeafBackgroundColor: @sapUiHcStandardBackground;
5
- @_sap_ushell_LoadingFlower_ColorOfLeavesForSandbox: @sapUiHcStandardBackground;
6
-
7
- #fiori2-startup-flower.demo .fiori2-leaf {
8
- /* base color of leaves, for demo adapter: red */
9
-
10
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
11
- }
12
- #fiori2-startup-flower.abap .fiori2-leaf {
13
- /* base color of leaves, for real launchpad : blue*/
14
-
15
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
16
- }
17
- #fiori2-startup-flower.sandbox .fiori2-leaf {
18
- /* base color of leaves, for sandbox: pink */
19
-
20
- background-color: @_sap_ushell_LoadingFlower_ColorOfLeavesForSandbox;
21
- }
22
- .fiori2-leaf {
23
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
24
- }
25
-
26
- #fiori2-loader {
27
-
28
- -moz-opacity: 0.9;
29
- -khtml-opacity: 0.9;
30
- -webkit-opacity: 0.9;
31
- opacity: 0.9;
32
- -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
33
- filter: alpha(opacity=90);
34
- }
@@ -1,7 +0,0 @@
1
- /* ============================================= */
2
- /* CSS for control sap.ushell/UserPreferencesButton.control sap_hcb theme*/
3
- /* ============================================= */
4
- .sapUshellUserPrefUserIdentifier {
5
- border-bottom: 1px solid @sapHC_ReducedAltForeground;
6
- background-color: @sapUiHcStandardBackground;
7
- }
@@ -1,34 +0,0 @@
1
-
2
- //[Tags "Color"]
3
- // [Description "Background color for the loading animation"]
4
- @_sap_ushell_LoadingFlower_LeafBackgroundColor: @sapUiHcStandardBackground;
5
- @_sap_ushell_LoadingFlower_ColorOfLeavesForSandbox: @sapUiHcStandardBackground;
6
-
7
- #fiori2-startup-flower.demo .fiori2-leaf {
8
- /* base color of leaves, for demo adapter: red */
9
-
10
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
11
- }
12
- #fiori2-startup-flower.abap .fiori2-leaf {
13
- /* base color of leaves, for real launchpad : blue*/
14
-
15
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
16
- }
17
- #fiori2-startup-flower.sandbox .fiori2-leaf {
18
- /* base color of leaves, for sandbox: pink */
19
-
20
- background-color: @_sap_ushell_LoadingFlower_ColorOfLeavesForSandbox;
21
- }
22
- .fiori2-leaf {
23
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
24
- }
25
-
26
- #fiori2-loader {
27
-
28
- -moz-opacity: 0.9;
29
- -khtml-opacity: 0.9;
30
- -webkit-opacity: 0.9;
31
- opacity: 0.9;
32
- -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
33
- filter: alpha(opacity=90);
34
- }
@@ -1,7 +0,0 @@
1
- /* ============================================================================ */
2
- /* CSS for control sap.ushell/UserPreferencesButton.control sap_bluecrystal theme */
3
- /* ============================================================================ */
4
- .sapUshellUserPrefUserIdentifier {
5
- border-bottom: 1px solid @sapUiLIBorder;
6
- background-color: @sapUiListBG;
7
- }
@@ -1,23 +0,0 @@
1
- /* ============================================= */
2
- /* CSS for loading flower animation theme sap_bluecrystal*/
3
- /* ============================================= */
4
-
5
- #fiori2-startup-flower.demo .fiori2-leaf {
6
- /* base color of leaves, for demo adapter: red */
7
-
8
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
9
- }
10
- #fiori2-startup-flower.abap .fiori2-leaf {
11
- /* base color of leaves, for real launchpad : blue*/
12
-
13
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
14
- }
15
- #fiori2-startup-flower.sandbox .fiori2-leaf {
16
- /* base color of leaves, for sandbox: pink */
17
-
18
- background-color: @_sap_ushell_LoadingFlower_ColorOfLeavesForSandbox;
19
- }
20
-
21
- .fiori2-leaf {
22
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
23
- }
@@ -1,34 +0,0 @@
1
-
2
- //[Tags "Color"]
3
- // [Description "Background color for the loading animation"]
4
- @_sap_ushell_LoadingFlower_LeafBackgroundColor: @sapUiHcStandardBackground;
5
- @_sap_ushell_LoadingFlower_ColorOfLeavesForSandbox: @sapUiHcStandardBackground;
6
-
7
- #fiori2-startup-flower.demo .fiori2-leaf {
8
- /* base color of leaves, for demo adapter: red */
9
-
10
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
11
- }
12
- #fiori2-startup-flower.abap .fiori2-leaf {
13
- /* base color of leaves, for real launchpad : blue*/
14
-
15
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
16
- }
17
- #fiori2-startup-flower.sandbox .fiori2-leaf {
18
- /* base color of leaves, for sandbox: pink */
19
-
20
- background-color: @_sap_ushell_LoadingFlower_ColorOfLeavesForSandbox;
21
- }
22
- .fiori2-leaf {
23
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
24
- }
25
-
26
- #fiori2-loader {
27
-
28
- -moz-opacity: 0.9;
29
- -khtml-opacity: 0.9;
30
- -webkit-opacity: 0.9;
31
- opacity: 0.9;
32
- -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
33
- filter: alpha(opacity=90);
34
- }
@@ -1,33 +0,0 @@
1
- //[Tags "Color"]
2
- // [Description "Background color for the loading animation"]
3
- @_sap_ushell_LoadingFlower_LeafBackgroundColor: @sapUiHcStandardBackground;
4
- @_sap_ushell_LoadingFlower_ColorOfLeavesForSandbox: @sapUiHcStandardBackground;
5
-
6
- #fiori2-startup-flower.demo .fiori2-leaf {
7
- /* base color of leaves, for demo adapter: red */
8
-
9
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
10
- }
11
- #fiori2-startup-flower.abap .fiori2-leaf {
12
- /* base color of leaves, for real launchpad : blue*/
13
-
14
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
15
- }
16
- #fiori2-startup-flower.sandbox .fiori2-leaf {
17
- /* base color of leaves, for sandbox: pink */
18
-
19
- background-color: @_sap_ushell_LoadingFlower_ColorOfLeavesForSandbox;
20
- }
21
- .fiori2-leaf {
22
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
23
- }
24
-
25
- #fiori2-loader {
26
-
27
- -moz-opacity: 0.9;
28
- -khtml-opacity: 0.9;
29
- -webkit-opacity: 0.9;
30
- opacity: 0.9;
31
- -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
32
- filter: alpha(opacity=90);
33
- }
@@ -1,7 +0,0 @@
1
- /* ============================================= */
2
- /* CSS for control sap.ushell/UserPreferencesButton.control sap_hcb theme*/
3
- /* ============================================= */
4
- .sapUshellUserPrefUserIdentifier {
5
- border-bottom: 1px solid @sapHCReducedAltFG;
6
- background-color: @sapHCStandardBG;
7
- }
@@ -1,34 +0,0 @@
1
-
2
- //[Tags "Color"]
3
- // [Description "Background color for the loading animation"]
4
- @_sap_ushell_LoadingFlower_LeafBackgroundColor: @sapUiLightestBG;
5
- @_sap_ushell_LoadingFlower_ColorOfLeavesForSandbox: @sapUiLightestBG;
6
-
7
- #fiori2-startup-flower.demo .fiori2-leaf {
8
- /* base color of leaves, for demo adapter: red */
9
-
10
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
11
- }
12
- #fiori2-startup-flower.abap .fiori2-leaf {
13
- /* base color of leaves, for real launchpad : blue*/
14
-
15
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
16
- }
17
- #fiori2-startup-flower.sandbox .fiori2-leaf {
18
- /* base color of leaves, for sandbox: pink */
19
-
20
- background-color: @_sap_ushell_LoadingFlower_ColorOfLeavesForSandbox;
21
- }
22
- .fiori2-leaf {
23
- background-color: @_sap_ushell_LoadingFlower_LeafBackgroundColor;
24
- }
25
-
26
- #fiori2-loader {
27
-
28
- -moz-opacity: 0.9;
29
- -khtml-opacity: 0.9;
30
- -webkit-opacity: 0.9;
31
- opacity: 0.9;
32
- -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
33
- filter: alpha(opacity=90);
34
- }
@@ -1,9 +0,0 @@
1
- /* ================================================= */
2
- /* CSS for control sap.ushell/UserPreferencesButton */
3
- /* Horizon theme */
4
- /* ================================================= */
5
-
6
- .sapUshellUserPrefUserIdentifier {
7
- border-bottom: 1px solid @sapUiListBorderColor;
8
- background-color: @sapUiListBackground;
9
- }
@@ -1,8 +0,0 @@
1
- /* ================================================= */
2
- /* CSS for control sap.ushell/UserPreferencesButton */
3
- /* ================================================= */
4
-
5
- .sapUshellUserPrefUserIdentifier {
6
- border-bottom: 1px solid @sapUiListBorderColor;
7
- background-color: @sapUiListBackground;
8
- }
@@ -1,90 +0,0 @@
1
- // Copyright (c) 2009-2022 SAP SE, All Rights Reserved
2
-
3
- // Provides control sap.ushell.ui.footerbar.SettingsButton.
4
- sap.ui.define([
5
- "sap/m/Button",
6
- "sap/m/ButtonRenderer", // will load the renderer async
7
- "sap/m/library",
8
- "sap/ushell/resources",
9
- "sap/ushell/ui/footerbar/AboutButton",
10
- "sap/ushell/ui/footerbar/LogoutButton",
11
- "sap/ushell/ui/footerbar/UserPreferencesButton"
12
- ], function (
13
- Button,
14
- ButtonRenderer,
15
- mobileLibrary,
16
- resources,
17
- AboutButton,
18
- LogoutButton,
19
- UserPreferencesButton
20
- ) {
21
- "use strict";
22
-
23
- // shortcut for sap.m.PlacementType
24
- var PlacementType = mobileLibrary.PlacementType;
25
-
26
- /**
27
- * Constructor for a new ui/footerbar/SettingsButton.
28
- *
29
- * @param {string} [sId] id for the new control, generated automatically if no id is given
30
- * @param {object} [mSettings] initial settings for the new control
31
- * @class Add your documentation for the new ui/footerbar/SettingsButton
32
- * @extends sap.m.Button
33
- * @constructor
34
- * @public
35
- * @name sap.ushell.ui.footerbar.SettingsButton
36
- * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
37
- */
38
- var SettingsButton = Button.extend("sap.ushell.ui.footerbar.SettingsButton", /** @lends sap.ushell.ui.footerbar.SettingsButton.prototype */ {
39
- metadata: { library: "sap.ushell" },
40
- renderer: ButtonRenderer
41
- });
42
-
43
- /**
44
- * SettingsButton
45
- *
46
- * @name sap.ushell.ui.footerbar.SettingsButton
47
- * @private
48
- * @since 1.16.0
49
- */
50
- SettingsButton.prototype.init = function () {
51
- // call the parent sap.m.Button init method
52
- if (Button.prototype.init) {
53
- Button.prototype.init.apply(this, arguments);
54
- }
55
-
56
- this.setIcon("sap-icon://action-settings");
57
- this.setTooltip(resources.i18n.getText("helpBtn_tooltip"));
58
-
59
- this.attachPress(this.showSettingsMenu);
60
-
61
- this.defaultMenuItems = [
62
- new AboutButton(),
63
- new UserPreferencesButton(),
64
- new LogoutButton()
65
- ];
66
- };
67
-
68
- SettingsButton.prototype.setMenuItems = function (buttons) {
69
- this.menuItems = buttons;
70
- };
71
-
72
- SettingsButton.prototype.showSettingsMenu = function () {
73
- sap.ui.require(["sap/m/ActionSheet"], function (ActionSheet) {
74
- var oActionSheet = new ActionSheet({
75
- id: "settingsMenu",
76
- showHeader: false,
77
- buttons: (this.menuItems || []).concat(this.defaultMenuItems)
78
- });
79
-
80
- oActionSheet.setPlacement(PlacementType.Vertical);
81
- oActionSheet.openBy(this);
82
-
83
- oActionSheet.attachAfterClose(function () {
84
- oActionSheet.removeAllButtons();
85
- oActionSheet.destroy();
86
- });
87
- }.bind(this));
88
- };
89
- return SettingsButton;
90
- });