@sapui5/sap.ushell 1.127.2 → 1.128.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 (369) hide show
  1. package/package.json +1 -1
  2. package/src/main/js/sap/ushell/.library +3 -3
  3. package/src/main/js/sap/ushell/{_ApplicationType → ApplicationType}/guiResolution.js +4 -4
  4. package/src/main/js/sap/ushell/{_ApplicationType → ApplicationType}/ui5Resolution.js +1 -1
  5. package/src/main/js/sap/ushell/{_ApplicationType → ApplicationType}/urlResolution.js +2 -2
  6. package/src/main/js/sap/ushell/{_ApplicationType → ApplicationType}/urlTemplateResolution.js +9 -5
  7. package/src/main/js/sap/ushell/{_ApplicationType → ApplicationType}/utils.js +1 -1
  8. package/src/main/js/sap/ushell/{_ApplicationType → ApplicationType}/wcfResolution.js +2 -2
  9. package/src/main/js/sap/ushell/{_ApplicationType → ApplicationType}/wdaResolution.js +2 -2
  10. package/src/main/js/sap/ushell/ApplicationType.js +8 -8
  11. package/src/main/js/sap/ushell/Config.js +1 -1
  12. package/src/main/js/sap/ushell/Container.js +14 -6
  13. package/src/main/js/sap/ushell/Fiori20Adapter.js +1 -1
  14. package/src/main/js/sap/ushell/Fiori20AdapterTest.js +1 -1
  15. package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
  16. package/src/main/js/sap/ushell/TechnicalParameters.js +1 -1
  17. package/src/main/js/sap/ushell/{_URLTemplateProcessor → URLTemplateProcessor}/DefinitionParameterSetBuilder.js +4 -4
  18. package/src/main/js/sap/ushell/{_URLTemplateProcessor → URLTemplateProcessor}/DependencyGraph.js +1 -1
  19. package/src/main/js/sap/ushell/{_URLTemplateProcessor → URLTemplateProcessor}/Functions.js +2 -2
  20. package/src/main/js/sap/ushell/{_URLTemplateProcessor → URLTemplateProcessor}/Resolvers.js +3 -3
  21. package/src/main/js/sap/ushell/{_URLTemplateProcessor → URLTemplateProcessor}/TemplateParameterParser.js +2 -2
  22. package/src/main/js/sap/ushell/{_URLTemplateProcessor → URLTemplateProcessor}/utils.js +1 -1
  23. package/src/main/js/sap/ushell/URLTemplateProcessor.js +6 -6
  24. package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +1 -1
  25. package/src/main/js/sap/ushell/Ui5ServiceFactory.js +1 -1
  26. package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +1 -1
  27. package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +1 -1
  28. package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
  29. package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +60 -61
  30. package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +1 -1
  31. package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +1 -1
  32. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
  33. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationV2Adapter.js +1 -1
  34. package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
  35. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +1 -1
  36. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
  37. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
  38. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
  39. package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +1 -1
  40. package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +1 -1
  41. package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +1 -1
  42. package/src/main/js/sap/ushell/adapters/cdm/v3/FlpLaunchPageAdapter.js +1 -1
  43. package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +1 -1
  44. package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +1 -1
  45. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +1 -1
  46. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
  47. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +1 -1
  48. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
  49. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +1 -1
  50. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
  51. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +1 -1
  52. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionInternalAdapter.js +2 -2
  53. package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +1 -1
  54. package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +1 -1
  55. package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +1 -1
  56. package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +1 -1
  57. package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +1 -1
  58. package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +4 -8
  59. package/src/main/js/sap/ushell/adapters/local/FlpLaunchPageAdapter.js +1 -1
  60. package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +1 -1
  61. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +1 -1
  62. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionInternalAdapter.js +2 -2
  63. package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
  64. package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +1 -1
  65. package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +1 -1
  66. package/src/main/js/sap/ushell/adapters/local/PersonalizationV2Adapter.js +1 -1
  67. package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +1 -1
  68. package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +1 -1
  69. package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +1 -1
  70. package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
  71. package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +1 -1
  72. package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +1 -1
  73. package/src/main/js/sap/ushell/api/Inbox.js +222 -0
  74. package/src/main/js/sap/ushell/api/workpage/Runtime.js +1 -1
  75. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +32 -27
  76. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/CheckConditions.js +15 -0
  77. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Renderer.js +7 -3
  78. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/Component.js +1 -1
  79. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/Component.js +19 -12
  80. package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/RendererExtensions.js +1 -1
  81. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppConfiguration.js +1 -1
  82. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycle.js +1 -1
  83. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppState.js +1 -1
  84. package/src/main/js/sap/ushell/appRuntime/ui5/services/Bookmark.js +1 -1
  85. package/src/main/js/sap/ushell/appRuntime/ui5/services/BookmarkV2.js +1 -1
  86. package/src/main/js/sap/ushell/appRuntime/ui5/services/CommonDataModel.js +1 -1
  87. package/src/main/js/sap/ushell/appRuntime/ui5/services/Container.js +1 -1
  88. package/src/main/js/sap/ushell/appRuntime/ui5/services/CrossApplicationNavigation.js +1 -1
  89. package/src/main/js/sap/ushell/appRuntime/ui5/services/Extension/Item.js +1 -1
  90. package/src/main/js/sap/ushell/appRuntime/ui5/services/Extension.js +1 -1
  91. package/src/main/js/sap/ushell/appRuntime/ui5/services/FrameBoundExtension.js +1 -1
  92. package/src/main/js/sap/ushell/appRuntime/ui5/services/LaunchPage.js +1 -1
  93. package/src/main/js/sap/ushell/appRuntime/ui5/services/MessageBroker.js +1 -1
  94. package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolution.js +1 -1
  95. package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolutionInternal.js +1 -1
  96. package/src/main/js/sap/ushell/appRuntime/ui5/services/Navigation.js +1 -1
  97. package/src/main/js/sap/ushell/appRuntime/ui5/services/ReferenceResolver.js +1 -1
  98. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigation.js +1 -1
  99. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigationInternal.js +1 -1
  100. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellUIService.js +1 -1
  101. package/src/main/js/sap/ushell/appRuntime/ui5/services/UserInfo.js +1 -1
  102. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
  103. package/src/main/js/sap/ushell/bootstrap/{_SchedulingAgent → SchedulingAgent}/EventProcessor.js +1 -1
  104. package/src/main/js/sap/ushell/bootstrap/{_SchedulingAgent → SchedulingAgent}/FLPScheduler.js +3 -3
  105. package/src/main/js/sap/ushell/bootstrap/{_SchedulingAgent → SchedulingAgent}/logger.js +2 -2
  106. package/src/main/js/sap/ushell/bootstrap/{_SchedulingAgent → SchedulingAgent}/state.js +3 -3
  107. package/src/main/js/sap/ushell/bootstrap/SchedulingAgent.js +5 -5
  108. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +1 -1
  109. package/src/main/js/sap/ushell/bootstrap/sandbox2/sandbox.js +433 -0
  110. package/src/main/js/sap/ushell/bootstrap/sandbox2/sandboxBoot.json +4 -0
  111. package/src/main/js/sap/ushell/bootstrap/sandbox2/sandboxBootTask.js +16 -0
  112. package/src/main/js/sap/ushell/bootstrap/sandbox2.js +35 -430
  113. package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
  114. package/src/main/js/sap/ushell/components/applicationIntegration/AppLifeCycle.js +2 -2
  115. package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +1 -1
  116. package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +1 -1
  117. package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +2 -2
  118. package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +1 -1
  119. package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +1 -1
  120. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Category.css +2 -2
  121. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Category.js +4 -4
  122. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Application.js +32 -3
  123. package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +1 -1
  124. package/src/main/js/sap/ushell/components/contentFinder/CatalogService.js +193 -0
  125. package/src/main/js/sap/ushell/components/contentFinder/Component.js +71 -18
  126. package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +62 -18
  127. package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +1 -1
  128. package/src/main/js/sap/ushell/components/contentFinder/controller/WidgetGallery.controller.js +1 -1
  129. package/src/main/js/sap/ushell/components/contentFinder/manifest.json +1 -1
  130. package/src/main/js/sap/ushell/components/contentFinder/model/formatter.js +9 -1
  131. package/src/main/js/sap/ushell/components/contentFinder/resources/resources.properties +3 -1
  132. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearch.view.xml +9 -9
  133. package/src/main/js/sap/ushell/components/contentFinder/view/{AppSearchCategoryTree.view.xml → AppSearchCategoryTree.fragment.xml} +12 -12
  134. package/src/main/js/sap/ushell/components/contentFinderStandalone/Component.js +1 -1
  135. package/src/main/js/sap/ushell/components/contentFinderStandalone/controller/ContentFinderStandalone.controller.js +66 -4
  136. package/src/main/js/sap/ushell/components/contentFinderStandalone/manifest.json +8 -1
  137. package/src/main/js/sap/ushell/components/contentFinderStandalone/manifestAppSearch.json +1 -1
  138. package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources.properties +9 -0
  139. package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
  140. package/src/main/js/sap/ushell/components/factsheet/controls/PictureTile.js +4 -1
  141. package/src/main/js/sap/ushell/components/factsheet/controls/PictureViewer.js +4 -1
  142. package/src/main/js/sap/ushell/components/factsheet/controls/PictureViewerItem.js +4 -1
  143. package/src/main/js/sap/ushell/components/homepage/ActionMode.js +1 -1
  144. package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +1 -1
  145. package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +1 -1
  146. package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +1 -1
  147. package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
  148. package/src/main/js/sap/ushell/components/pages/ActionMode.js +1 -1
  149. package/src/main/js/sap/ushell/components/pages/Component.js +1 -1
  150. package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +1 -1
  151. package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +2 -3
  152. package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
  153. package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +2 -3
  154. package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
  155. package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
  156. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +1 -1
  157. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
  158. package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +1 -1
  159. package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +1 -1
  160. package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
  161. package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +1 -1
  162. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +1 -1
  163. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +1 -1
  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 -1
  166. package/src/main/js/sap/ushell/components/shell/Settings/Component.js +1 -1
  167. package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +1 -1
  168. package/src/main/js/sap/ushell/components/shell/Settings/appearance/AppearanceEntry.js +1 -1
  169. package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/controller/UserDefaultsSetting.controller.js +26 -38
  170. package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +1 -1
  171. package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +1 -1
  172. package/src/main/js/sap/ushell/components/tiles/applauncher/Component.js +5 -6
  173. package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTile.view.js +7 -7
  174. package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/Component.js +1 -1
  175. package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/DynamicTile.view.js +4 -7
  176. package/src/main/js/sap/ushell/components/tiles/utils.js +1 -1
  177. package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +1 -1
  178. package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +1 -1
  179. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +1 -1
  180. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +1 -1
  181. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +1 -1
  182. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +1 -1
  183. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +1 -1
  184. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +1 -1
  185. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +1 -1
  186. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +1 -1
  187. package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
  188. package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +1 -1
  189. package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +3 -4
  190. package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
  191. package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
  192. package/src/main/js/sap/ushell/iconfonts.js +776 -363
  193. package/src/main/js/sap/ushell/library.js +1 -1
  194. package/src/main/js/sap/ushell/navigationMode.js +1 -1
  195. package/src/main/js/sap/ushell/performance/ShellAnalytics.js +1 -1
  196. package/src/main/js/sap/ushell/performance/StatisticalRecord.js +1 -1
  197. package/src/main/js/sap/ushell/plugins/BaseRTAPlugin.js +28 -39
  198. package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
  199. package/src/main/js/sap/ushell/plugins/rta/Component.js +45 -60
  200. package/src/main/js/sap/ushell/renderer/History.js +1 -11
  201. package/src/main/js/sap/ushell/renderer/LogonFrameProvider.js +0 -8
  202. package/src/main/js/sap/ushell/renderer/Renderer.js +9 -6
  203. package/src/main/js/sap/ushell/renderer/Shell.controller.js +6 -2
  204. package/src/main/js/sap/ushell/renderer/allMyApps/AllMyApps.controller.js +4 -2
  205. package/src/main/js/sap/ushell/renderer/allMyApps/AllMyAppsManager.js +0 -8
  206. package/src/main/js/sap/ushell/renderer/search/searchComponent/manifest.json +1 -1
  207. package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +1 -1
  208. package/src/main/js/sap/ushell/renderers/fiori2/RendererExtensions.js +4 -0
  209. package/src/main/js/sap/ushell/services/AppLifeCycle.js +1 -1
  210. package/src/main/js/sap/ushell/services/AppState.js +1 -1
  211. package/src/main/js/sap/ushell/services/AppType.js +5 -0
  212. package/src/main/js/sap/ushell/services/Bookmark.js +1 -1
  213. package/src/main/js/sap/ushell/services/BookmarkV2.js +1 -1
  214. package/src/main/js/sap/ushell/services/{_ClientSideTargetResolution → ClientSideTargetResolution}/Formatter.js +1 -1
  215. package/src/main/js/sap/ushell/services/{_ClientSideTargetResolution → ClientSideTargetResolution}/InboundIndex.js +1 -1
  216. package/src/main/js/sap/ushell/services/{_ClientSideTargetResolution → ClientSideTargetResolution}/InboundProvider.js +3 -3
  217. package/src/main/js/sap/ushell/services/{_ClientSideTargetResolution → ClientSideTargetResolution}/PrelaunchOperations.js +1 -1
  218. package/src/main/js/sap/ushell/services/{_ClientSideTargetResolution → ClientSideTargetResolution}/Search.js +4 -4
  219. package/src/main/js/sap/ushell/services/{_ClientSideTargetResolution → ClientSideTargetResolution}/StagedLogger.js +1 -1
  220. package/src/main/js/sap/ushell/services/{_ClientSideTargetResolution → ClientSideTargetResolution}/SystemContext.js +1 -1
  221. package/src/main/js/sap/ushell/services/{_ClientSideTargetResolution → ClientSideTargetResolution}/Utils.js +1 -1
  222. package/src/main/js/sap/ushell/services/{_ClientSideTargetResolution → ClientSideTargetResolution}/VirtualInbounds.js +1 -1
  223. package/src/main/js/sap/ushell/services/{_ClientSideTargetResolution → ClientSideTargetResolution}/XAppStateProcessing.js +2 -2
  224. package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +12 -12
  225. package/src/main/js/sap/ushell/services/{_CommonDataModel → CommonDataModel}/SiteConverter.js +1 -1
  226. package/src/main/js/sap/ushell/services/{_CommonDataModel → CommonDataModel}/vizTypeDefaults/VizTypeDefaults.js +2 -2
  227. package/src/main/js/sap/ushell/services/CommonDataModel.js +4 -4
  228. package/src/main/js/sap/ushell/services/Configuration.js +1 -1
  229. package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +1 -1
  230. package/src/main/js/sap/ushell/services/Container.js +4 -0
  231. package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +2 -1
  232. package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +4 -4
  233. package/src/main/js/sap/ushell/services/DarkModeSupport.js +1 -3
  234. package/src/main/js/sap/ushell/services/EndUserFeedback.js +1 -0
  235. package/src/main/js/sap/ushell/services/Extension/Item.js +22 -3
  236. package/src/main/js/sap/ushell/services/Extension.js +9 -4
  237. package/src/main/js/sap/ushell/services/FlpLaunchPage.js +1 -1
  238. package/src/main/js/sap/ushell/services/FrameBoundExtension/FloatingContainer.js +1 -1
  239. package/src/main/js/sap/ushell/services/FrameBoundExtension/Footer.js +1 -1
  240. package/src/main/js/sap/ushell/services/FrameBoundExtension/Item.js +23 -4
  241. package/src/main/js/sap/ushell/services/FrameBoundExtension/SidePane.js +5 -2
  242. package/src/main/js/sap/ushell/services/FrameBoundExtension/ToolArea.js +5 -2
  243. package/src/main/js/sap/ushell/services/FrameBoundExtension.js +11 -5
  244. package/src/main/js/sap/ushell/services/LaunchPage.js +1 -1
  245. package/src/main/js/sap/ushell/services/Menu.js +1 -1
  246. package/src/main/js/sap/ushell/services/Message.js +1 -1
  247. package/src/main/js/sap/ushell/services/{_MessageBroker → MessageBroker}/MessageBrokerEngine.js +1 -1
  248. package/src/main/js/sap/ushell/services/MessageBroker.js +2 -2
  249. package/src/main/js/sap/ushell/services/MessageInternal.js +2 -6
  250. package/src/main/js/sap/ushell/services/Navigation/compatibility.js +1 -1
  251. package/src/main/js/sap/ushell/services/Navigation/utils.js +1 -1
  252. package/src/main/js/sap/ushell/services/Navigation.js +4 -143
  253. package/src/main/js/sap/ushell/services/NavigationDataProvider.js +1 -1
  254. package/src/main/js/sap/ushell/services/NotificationsV2.js +3 -1
  255. package/src/main/js/sap/ushell/services/PageBuilding.js +1 -1
  256. package/src/main/js/sap/ushell/services/PagePersistence.js +1 -1
  257. package/src/main/js/sap/ushell/services/PageReferencing.js +1 -1
  258. package/src/main/js/sap/ushell/services/Pages.js +1 -1
  259. package/src/main/js/sap/ushell/services/Personalization.js +1 -1
  260. package/src/main/js/sap/ushell/services/PersonalizationV2.js +1 -1
  261. package/src/main/js/sap/ushell/services/{_PluginManager → PluginManager}/Extensions.js +5 -5
  262. package/src/main/js/sap/ushell/services/{_PluginManager → PluginManager}/HeaderExtensions.js +1 -1
  263. package/src/main/js/sap/ushell/services/{_PluginManager → PluginManager}/MenuExtensions.js +1 -1
  264. package/src/main/js/sap/ushell/services/PluginManager.js +2 -2
  265. package/src/main/js/sap/ushell/services/ReferenceResolver.js +2 -3
  266. package/src/main/js/sap/ushell/services/Search.js +1 -1
  267. package/src/main/js/sap/ushell/services/SearchCEP.js +1 -1
  268. package/src/main/js/sap/ushell/services/SearchableContent.js +1 -1
  269. package/src/main/js/sap/ushell/services/ShellNavigation.js +1 -1
  270. package/src/main/js/sap/ushell/services/ShellNavigationHashChanger.js +7 -101
  271. package/src/main/js/sap/ushell/services/SmartNavigation.js +3 -1
  272. package/src/main/js/sap/ushell/services/SpaceContent.js +2 -6
  273. package/src/main/js/sap/ushell/services/UITracer.js +1 -1
  274. package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
  275. package/src/main/js/sap/ushell/services/URLTemplate.js +1 -1
  276. package/src/main/js/sap/ushell/services/{_Ui5ComponentLoader → Ui5ComponentLoader}/utils.js +1 -1
  277. package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +2 -2
  278. package/src/main/js/sap/ushell/services/UsageAnalytics.js +1 -0
  279. package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +55 -99
  280. package/src/main/js/sap/ushell/services/UserDefaultParameters.js +82 -119
  281. package/src/main/js/sap/ushell/services/UserInfo.js +1 -1
  282. package/src/main/js/sap/ushell/services/UserRecents.js +1 -1
  283. package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +1 -1
  284. package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +1 -1
  285. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
  286. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +1 -1
  287. package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +1 -1
  288. package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +1 -1
  289. package/src/main/js/sap/ushell/services/_Personalization/ContextContainer.js +1 -0
  290. package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainer.js +1 -0
  291. package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainerVariant.js +1 -0
  292. package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainerVariantSet.js +1 -0
  293. package/src/main/js/sap/ushell/services/_Personalization/Personalizer.js +1 -0
  294. package/src/main/js/sap/ushell/services/_Personalization/TransientPersonalizer.js +1 -0
  295. package/src/main/js/sap/ushell/services/_Personalization/Variant.js +1 -0
  296. package/src/main/js/sap/ushell/services/_Personalization/VariantSet.js +1 -0
  297. package/src/main/js/sap/ushell/services/personalization/VariantSetAdapter.js +5 -0
  298. package/src/main/js/sap/ushell/state/ControlManager.js +38 -3
  299. package/src/main/js/sap/ushell/state/StateManager.js +43 -1
  300. package/src/main/js/sap/ushell/state/StateRules.js +0 -20
  301. package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +1 -1
  302. package/src/main/js/sap/ushell/themes/base/IconFonts.less +23 -15
  303. package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.json +333 -331
  304. package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.woff +0 -0
  305. package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.woff2 +0 -0
  306. package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.ttf +0 -0
  307. package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.woff +0 -0
  308. package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.woff2 +0 -0
  309. package/src/main/js/sap/ushell/themes/base/fonts/sap-fiori-inapp-icons.woff +0 -0
  310. package/src/main/js/sap/ushell/themes/base/fonts/sap-fiori-inapp-icons.woff2 +0 -0
  311. package/src/main/js/sap/ushell/themes/sap_belize/library.source.less +0 -13
  312. package/src/main/js/sap/ushell/themes/sap_belize_base/IconFonts.less +23 -15
  313. package/src/main/js/sap/ushell/themes/sap_belize_hcb/library.source.less +0 -13
  314. package/src/main/js/sap/ushell/themes/sap_belize_hcw/library.source.less +0 -13
  315. package/src/main/js/sap/ushell/themes/sap_bluecrystal/library.source.less +0 -14
  316. package/src/main/js/sap/ushell/themes/sap_bluecrystal_base/IconFonts.less +23 -15
  317. package/src/main/js/sap/ushell/themes/sap_fiori_3/library.source.less +0 -12
  318. package/src/main/js/sap/ushell/themes/sap_fiori_3_dark/library.source.less +0 -12
  319. package/src/main/js/sap/ushell/themes/sap_fiori_3_hcb/library.source.less +1 -13
  320. package/src/main/js/sap/ushell/themes/sap_fiori_3_hcw/library.source.less +1 -13
  321. package/src/main/js/sap/ushell/themes/sap_hcb/base_IconFonts.less +23 -15
  322. package/src/main/js/sap/ushell/themes/sap_hcb/library.source.less +0 -12
  323. package/src/main/js/sap/ushell/themes/sap_horizon/library.source.less +0 -12
  324. package/src/main/js/sap/ushell/themes/sap_horizon_dark/library.source.less +0 -12
  325. package/src/main/js/sap/ushell/themes/sap_horizon_hcb/library.source.less +1 -13
  326. package/src/main/js/sap/ushell/themes/sap_horizon_hcw/library.source.less +1 -13
  327. package/src/main/js/sap/ushell/ui/appfinder/AppBox.js +4 -1
  328. package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +1 -1
  329. package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +1 -1
  330. package/src/main/js/sap/ushell/ui/launchpad/LinkTileWrapper.js +2 -1
  331. package/src/main/js/sap/ushell/ui/launchpad/Section.js +1 -1
  332. package/src/main/js/sap/ushell/ui/launchpad/TileState.js +2 -1
  333. package/src/main/js/sap/ushell/ui/launchpad/ViewPortState.js +4 -0
  334. package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +1 -1
  335. package/src/main/js/sap/ushell/ui/shell/ShellFloatingActions.js +7 -1
  336. package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -1
  337. package/src/main/js/sap/ushell/ui/tile/StaticTile.js +1 -1
  338. package/src/main/js/sap/ushell/ui/utils.js +1 -1
  339. package/src/main/js/sap/ushell/ui5service/ShellUIService.js +1 -1
  340. package/src/main/js/sap/ushell/ui5service/UserStatus.js +2 -1
  341. package/src/main/js/sap/ushell/utils/UrlParsing.js +122 -2
  342. package/src/main/js/sap/ushell/utils/UrlShortening.js +1 -1
  343. package/src/main/js/sap/ushell/utils/WindowUtils.js +3 -3
  344. package/src/main/js/sap/ushell/utils/workpage/WorkPageHost.js +1 -1
  345. package/src/main/js/sap/ushell/utils/workpage/WorkPageService.js +47 -8
  346. package/src/main/js/sap/ushell/utils/workpage/WorkPageVizInstantiation.js +2 -2
  347. package/src/main/js/sap/ushell/utils.js +4 -2
  348. package/src/test/js/sap/ushell/bootstrap/sandbox.js +1 -1
  349. package/ui5.yaml +13 -6
  350. package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTileTmp.view.js +0 -58
  351. package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/DynamicTileTmp.view.js +0 -104
  352. package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.eot +0 -0
  353. package/src/main/js/sap/ushell/themes/base/fonts/BusinessSuiteInAppSymbols.ttf +0 -0
  354. package/src/main/js/sap/ushell/themes/base/fonts/SAP-icons.eot +0 -0
  355. package/src/main/js/sap/ushell/themes/base/fonts/SAP-icons.ttf +0 -0
  356. package/src/main/js/sap/ushell/themes/base/fonts/SAP-icons.woff +0 -0
  357. package/src/main/js/sap/ushell/themes/base/fonts/SAP-icons.woff2 +0 -0
  358. package/src/main/js/sap/ushell/themes/base/fonts/SmileIconFont.ttf +0 -0
  359. package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.eot +0 -0
  360. package/src/main/js/sap/ushell/themes/base/fonts/sap-fiori-inapp-icons.eot +0 -0
  361. package/src/main/js/sap/ushell/themes/base/fonts/sap-fiori-inapp-icons.ttf +0 -0
  362. /package/src/main/js/sap/ushell/{_ApplicationType → ApplicationType}/systemAlias.js +0 -0
  363. /package/src/main/js/sap/ushell/{_Config → Config}/utils.js +0 -0
  364. /package/src/main/js/sap/ushell/bootstrap/{_SchedulingAgent → SchedulingAgent}/FLPLoader.js +0 -0
  365. /package/src/main/js/sap/ushell/bootstrap/{_SchedulingAgent → SchedulingAgent}/LoadingConfiguration.json +0 -0
  366. /package/src/main/js/sap/ushell/bootstrap/{_SchedulingAgent → SchedulingAgent}/StepConfiguration.json +0 -0
  367. /package/src/main/js/sap/ushell/services/{_ClientSideTargetResolution → ClientSideTargetResolution}/ParameterMapping.js +0 -0
  368. /package/src/main/js/sap/ushell/services/{_CommonDataModel → CommonDataModel}/PersonalizationProcessor.js +0 -0
  369. /package/src/main/js/sap/ushell/services/{_CommonDataModel → CommonDataModel}/vizTypeDefaults/cardManifest.json +0 -0
@@ -9,7 +9,6 @@
9
9
  /* This decoupling of the base theme is introduced with SAPUI5 version 1.125.
10
10
  ***********************************************************************************/
11
11
 
12
-
13
12
  @import "../sap_belize_base/library.source.less";
14
13
  @import "../../../../sap/ui/core/themes/sap_belize/base.less";
15
14
  @import "../../../../sap/ui/core/themes/sap_belize/global.less";
@@ -38,15 +37,3 @@
38
37
  @import "TileContainer.less";
39
38
  @import "TileState.less";
40
39
  @import "ToolAreaItem.less";
41
-
42
- @font-face {
43
- font-family: 'BusinessSuiteInAppSymbols';
44
- src: url("../base/fonts/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
45
- url("../base/fonts/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
46
- url("../base/fonts/BusinessSuiteInAppSymbols.ttf") format('truetype'),
47
- url("../base/fonts/BusinessSuiteInAppSymbols.woff") format('woff'),
48
- url("../base/fonts/BusinessSuiteInAppSymbols.woff2") format('woff2'),
49
- local('BusinessSuiteInAppSymbols');
50
- font-weight: normal;
51
- font-style: normal;
52
- }
@@ -1,21 +1,29 @@
1
1
  @font-face {
2
- font-family: 'Fiori2';
3
- src: local('sap-launch-icons'),/* use locally installed font when untrusted font is disabled */
4
- url("../base/fonts/sap-launch-icons.eot"),
5
- url("../base/fonts/sap-launch-icons.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
6
- url("../base/fonts/sap-launch-icons.ttf") format('truetype');
7
- font-weight: normal;
8
- font-style: normal;
2
+ font-family: "Fiori2";
3
+ src:
4
+ url("../base/fonts/sap-launch-icons.ttf") format("truetype"),
5
+ url("../base/fonts/sap-launch-icons.eot") format("embedded-opentype"),
6
+ local("sap-launch-icons");
7
+ font-weight: normal;
8
+ font-style: normal;
9
9
  }
10
10
 
11
11
  @font-face {
12
- font-family: 'FioriInAppIcons';
13
- src: local('sap-fiori-inapp-icons'),
14
- url("../base/fonts/sap-fiori-inapp-icons.eot"),/* use locally installed font when untrusted font is disabled */
15
- url("../base/fonts/sap-fiori-inapp-icons.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
16
- url("../base/fonts/sap-fiori-inapp-icons.ttf") format('truetype');
17
- font-weight: normal;
18
- font-style: normal;
12
+ font-family: "FioriInAppIcons";
13
+ src:
14
+ url("../base/fonts/sap-fiori-inapp-icons.woff2") format("woff2"),
15
+ url("../base/fonts/sap-fiori-inapp-icons.woff") format("woff"),
16
+ local("sap-fiori-inapp-icons");
17
+ font-weight: normal;
18
+ font-style: normal;
19
19
  }
20
20
 
21
-
21
+ @font-face {
22
+ font-family: "BusinessSuiteInAppSymbols";
23
+ src:
24
+ url("../base/fonts/BusinessSuiteInAppSymbols.woff2") format("woff2"),
25
+ url("../base/fonts/BusinessSuiteInAppSymbols.woff") format("woff"),
26
+ local("BusinessSuiteInAppSymbols");
27
+ font-weight: normal;
28
+ font-style: normal;
29
+ }
@@ -9,7 +9,6 @@
9
9
  /* This decoupling of the base theme is introduced with SAPUI5 version 1.125.
10
10
  ***********************************************************************************/
11
11
 
12
-
13
12
  @import "../sap_belize_base/library.source.less";
14
13
  @import "../../../../sap/ui/core/themes/sap_belize_hcb/base.less";
15
14
  @import "../../../../sap/ui/core/themes/sap_belize_hcb/global.less";
@@ -37,15 +36,3 @@
37
36
  @import "TileContainer.less";
38
37
  @import "TileState.less";
39
38
  @import "ActionMode.less";
40
-
41
- @font-face {
42
- font-family: 'BusinessSuiteInAppSymbols';
43
- src: url("../base/fonts/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
44
- url("../base/fonts/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
45
- url("../base/fonts/BusinessSuiteInAppSymbols.ttf") format('truetype'),
46
- url("../base/fonts/BusinessSuiteInAppSymbols.woff") format('woff'),
47
- url("../base/fonts/BusinessSuiteInAppSymbols.woff2") format('woff2'),
48
- local('BusinessSuiteInAppSymbols');
49
- font-weight: normal;
50
- font-style: normal;
51
- }
@@ -9,7 +9,6 @@
9
9
  /* This decoupling of the base theme is introduced with SAPUI5 version 1.125.
10
10
  ***********************************************************************************/
11
11
 
12
-
13
12
  @import "../sap_belize_base/library.source.less";
14
13
  @import "../../../../sap/ui/core/themes/sap_belize_hcw/base.less";
15
14
  @import "../../../../sap/ui/core/themes/sap_belize_hcw/global.less";
@@ -37,15 +36,3 @@
37
36
  @import "TileContainer.less";
38
37
  @import "TileState.less";
39
38
  @import "ActionMode.less";
40
-
41
- @font-face {
42
- font-family: 'BusinessSuiteInAppSymbols';
43
- src: url("../base/fonts/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
44
- url("../base/fonts/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
45
- url("../base/fonts/BusinessSuiteInAppSymbols.ttf") format('truetype'),
46
- url("../base/fonts/BusinessSuiteInAppSymbols.woff") format('woff'),
47
- url("../base/fonts/BusinessSuiteInAppSymbols.woff2") format('woff2'),
48
- local('BusinessSuiteInAppSymbols');
49
- font-weight: normal;
50
- font-style: normal;
51
- }
@@ -9,7 +9,6 @@
9
9
  /* This decoupling of the base theme is introduced with SAPUI5 version 1.124.
10
10
  ***********************************************************************************/
11
11
 
12
-
13
12
  @import "../sap_bluecrystal_base/library.source.less";
14
13
  @import "../../../../sap/ui/core/themes/sap_bluecrystal/base.less";
15
14
  @import "../../../../sap/ui/core/themes/sap_bluecrystal/global.less";
@@ -37,16 +36,3 @@
37
36
  @import "TileContainer.less";
38
37
  @import "TileState.less";
39
38
  @import "ToolAreaItem.less";
40
-
41
- @font-face {
42
- font-family: 'BusinessSuiteInAppSymbols';
43
- src: url("../base/fonts/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
44
- url("../base/fonts/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
45
- url("../base/fonts/BusinessSuiteInAppSymbols.ttf") format('truetype'),
46
- url("../base/fonts/BusinessSuiteInAppSymbols.woff") format('woff'),
47
- url("../base/fonts/BusinessSuiteInAppSymbols.woff2") format('woff2'),
48
- local('BusinessSuiteInAppSymbols');
49
- font-weight: normal;
50
- font-style: normal;
51
- }
52
-
@@ -1,21 +1,29 @@
1
1
  @font-face {
2
- font-family: 'Fiori2';
3
- src: local('sap-launch-icons'),/* use locally installed font when untrusted font is disabled */
4
- url("../base/fonts/sap-launch-icons.eot"),
5
- url("../base/fonts/sap-launch-icons.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
6
- url("../base/fonts/sap-launch-icons.ttf") format('truetype');
7
- font-weight: normal;
8
- font-style: normal;
2
+ font-family: "Fiori2";
3
+ src:
4
+ url("../base/fonts/sap-launch-icons.ttf") format("truetype"),
5
+ url("../base/fonts/sap-launch-icons.eot") format("embedded-opentype"),
6
+ local("sap-launch-icons");
7
+ font-weight: normal;
8
+ font-style: normal;
9
9
  }
10
10
 
11
11
  @font-face {
12
- font-family: 'FioriInAppIcons';
13
- src: local('sap-fiori-inapp-icons'),
14
- url("../base/fonts/sap-fiori-inapp-icons.eot"),/* use locally installed font when untrusted font is disabled */
15
- url("../base/fonts/sap-fiori-inapp-icons.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
16
- url("../base/fonts/sap-fiori-inapp-icons.ttf") format('truetype');
17
- font-weight: normal;
18
- font-style: normal;
12
+ font-family: "FioriInAppIcons";
13
+ src:
14
+ url("../base/fonts/sap-fiori-inapp-icons.woff2") format("woff2"),
15
+ url("../base/fonts/sap-fiori-inapp-icons.woff") format("woff"),
16
+ local("sap-fiori-inapp-icons");
17
+ font-weight: normal;
18
+ font-style: normal;
19
19
  }
20
20
 
21
-
21
+ @font-face {
22
+ font-family: "BusinessSuiteInAppSymbols";
23
+ src:
24
+ url("../base/fonts/BusinessSuiteInAppSymbols.woff2") format("woff2"),
25
+ url("../base/fonts/BusinessSuiteInAppSymbols.woff") format("woff"),
26
+ local("BusinessSuiteInAppSymbols");
27
+ font-weight: normal;
28
+ font-style: normal;
29
+ }
@@ -32,15 +32,3 @@
32
32
  @import "TileContainer.less";
33
33
  @import "TileState.less";
34
34
  @import "ToolAreaItem.less";
35
-
36
- @font-face {
37
- font-family: 'BusinessSuiteInAppSymbols';
38
- src: url("../base/fonts/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
39
- url("../base/fonts/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
40
- url("../base/fonts/BusinessSuiteInAppSymbols.ttf") format('truetype'),
41
- url("../base/fonts/BusinessSuiteInAppSymbols.woff") format('woff'),
42
- url("../base/fonts/BusinessSuiteInAppSymbols.woff2") format('woff2'),
43
- local('BusinessSuiteInAppSymbols');
44
- font-weight: normal;
45
- font-style: normal;
46
- }
@@ -32,15 +32,3 @@
32
32
  @import "TileContainer.less";
33
33
  @import "TileState.less";
34
34
  @import "ToolAreaItem.less";
35
-
36
- @font-face {
37
- font-family: 'BusinessSuiteInAppSymbols';
38
- src: url("../base/fonts/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
39
- url("../base/fonts/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
40
- url("../base/fonts/BusinessSuiteInAppSymbols.ttf") format('truetype'),
41
- url("../base/fonts/BusinessSuiteInAppSymbols.woff") format('woff'),
42
- url("../base/fonts/BusinessSuiteInAppSymbols.woff2") format('woff2'),
43
- local('BusinessSuiteInAppSymbols');
44
- font-weight: normal;
45
- font-style: normal;
46
- }
@@ -1,8 +1,8 @@
1
1
  /*!
2
2
  * Copyright (c) 2009-2023 SAP SE, All Rights Reserved
3
3
  */
4
- @import "../base/library.source.less";
5
4
 
5
+ @import "../base/library.source.less";
6
6
  @import "../../../../sap/ui/core/themes/sap_fiori_3_hcb/base.less";
7
7
  @import "../../../../sap/ui/core/themes/sap_fiori_3_hcb/global.less";
8
8
 
@@ -28,15 +28,3 @@
28
28
  @import "TileContainer.less";
29
29
  @import "TileState.less";
30
30
  @import "ActionMode.less";
31
-
32
- @font-face {
33
- font-family: 'BusinessSuiteInAppSymbols';
34
- src: url("../base/fonts/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
35
- url("../base/fonts/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
36
- url("../base/fonts/BusinessSuiteInAppSymbols.ttf") format('truetype'),
37
- url("../base/fonts/BusinessSuiteInAppSymbols.woff") format('woff'),
38
- url("../base/fonts/BusinessSuiteInAppSymbols.woff2") format('woff2'),
39
- local('BusinessSuiteInAppSymbols');
40
- font-weight: normal;
41
- font-style: normal;
42
- }
@@ -1,8 +1,8 @@
1
1
  /*!
2
2
  * Copyright (c) 2009-2023 SAP SE, All Rights Reserved
3
3
  */
4
- @import "../base/library.source.less";
5
4
 
5
+ @import "../base/library.source.less";
6
6
  @import "../../../../sap/ui/core/themes/sap_fiori_3_hcw/base.less";
7
7
  @import "../../../../sap/ui/core/themes/sap_fiori_3_hcw/global.less";
8
8
 
@@ -28,15 +28,3 @@
28
28
  @import "TileContainer.less";
29
29
  @import "TileState.less";
30
30
  @import "ActionMode.less";
31
-
32
- @font-face {
33
- font-family: 'BusinessSuiteInAppSymbols';
34
- src: url("../base/fonts/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
35
- url("../base/fonts/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
36
- url("../base/fonts/BusinessSuiteInAppSymbols.ttf") format('truetype'),
37
- url("../base/fonts/BusinessSuiteInAppSymbols.woff") format('woff'),
38
- url("../base/fonts/BusinessSuiteInAppSymbols.woff2") format('woff2'),
39
- local('BusinessSuiteInAppSymbols');
40
- font-weight: normal;
41
- font-style: normal;
42
- }
@@ -1,21 +1,29 @@
1
1
  @font-face {
2
- font-family: 'Fiori2';
3
- src: local('sap-launch-icons'),/* use locally installed font when untrusted font is disabled */
4
- url("../base/fonts/sap-launch-icons.eot"),
5
- url("../base/fonts/sap-launch-icons.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
6
- url("../base/fonts/sap-launch-icons.ttf") format('truetype');
7
- font-weight: normal;
8
- font-style: normal;
2
+ font-family: "Fiori2";
3
+ src:
4
+ url("../base/fonts/sap-launch-icons.ttf") format("truetype"),
5
+ url("../base/fonts/sap-launch-icons.eot") format("embedded-opentype"),
6
+ local("sap-launch-icons");
7
+ font-weight: normal;
8
+ font-style: normal;
9
9
  }
10
10
 
11
11
  @font-face {
12
- font-family: 'FioriInAppIcons';
13
- src: local('sap-fiori-inapp-icons'),
14
- url("../base/fonts/sap-fiori-inapp-icons.eot"),/* use locally installed font when untrusted font is disabled */
15
- url("../base/fonts/sap-fiori-inapp-icons.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
16
- url("../base/fonts/sap-fiori-inapp-icons.ttf") format('truetype');
17
- font-weight: normal;
18
- font-style: normal;
12
+ font-family: "FioriInAppIcons";
13
+ src:
14
+ url("../base/fonts/sap-fiori-inapp-icons.woff2") format("woff2"),
15
+ url("../base/fonts/sap-fiori-inapp-icons.woff") format("woff"),
16
+ local("sap-fiori-inapp-icons");
17
+ font-weight: normal;
18
+ font-style: normal;
19
19
  }
20
20
 
21
-
21
+ @font-face {
22
+ font-family: "BusinessSuiteInAppSymbols";
23
+ src:
24
+ url("../base/fonts/BusinessSuiteInAppSymbols.woff2") format("woff2"),
25
+ url("../base/fonts/BusinessSuiteInAppSymbols.woff") format("woff"),
26
+ local("BusinessSuiteInAppSymbols");
27
+ font-weight: normal;
28
+ font-style: normal;
29
+ }
@@ -95,15 +95,3 @@
95
95
  @import "TileContainer.less";
96
96
  @import "TileState.less";
97
97
  @import "ActionMode.less";
98
-
99
- @font-face {
100
- font-family: 'BusinessSuiteInAppSymbols';
101
- src: url("../base/fonts/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
102
- url("../base/fonts/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
103
- url("../base/fonts/BusinessSuiteInAppSymbols.ttf") format('truetype'),
104
- url("../base/fonts/BusinessSuiteInAppSymbols.woff") format('woff'),
105
- url("../base/fonts/BusinessSuiteInAppSymbols.woff2") format('woff2'),
106
- local('BusinessSuiteInAppSymbols');
107
- font-weight: normal;
108
- font-style: normal;
109
- }
@@ -36,15 +36,3 @@
36
36
  @import "TileState.less";
37
37
  @import "ToolAreaItem.less";
38
38
  @import "WorkPageCell.less";
39
-
40
- @font-face {
41
- font-family: 'BusinessSuiteInAppSymbols';
42
- src: url("../base/fonts/horizon/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
43
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
44
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.ttf") format('truetype'),
45
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.woff") format('woff'),
46
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.woff2") format('woff2'),
47
- local('BusinessSuiteInAppSymbols');
48
- font-weight: normal;
49
- font-style: normal;
50
- }
@@ -36,15 +36,3 @@
36
36
  @import "TileState.less";
37
37
  @import "ToolAreaItem.less";
38
38
  @import "WorkPageCell.less";
39
-
40
- @font-face {
41
- font-family: 'BusinessSuiteInAppSymbols';
42
- src: url("../base/fonts/horizon/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
43
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
44
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.ttf") format('truetype'),
45
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.woff") format('woff'),
46
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.woff2") format('woff2'),
47
- local('BusinessSuiteInAppSymbols');
48
- font-weight: normal;
49
- font-style: normal;
50
- }
@@ -1,8 +1,8 @@
1
1
  /*!
2
2
  * Copyright (c) 2009-2023 SAP SE, All Rights Reserved
3
3
  */
4
- @import "../base/library.source.less";
5
4
 
5
+ @import "../base/library.source.less";
6
6
  @import "../../../../sap/ui/core/themes/sap_horizon_hcb/base.less";
7
7
  @import "../../../../sap/ui/core/themes/sap_horizon_hcb/global.less";
8
8
 
@@ -32,15 +32,3 @@
32
32
  @import "TileState.less";
33
33
  @import "ActionMode.less";
34
34
  @import "WorkPageCell.less";
35
-
36
- @font-face {
37
- font-family: 'BusinessSuiteInAppSymbols';
38
- src: url("../base/fonts/horizon/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
39
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
40
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.ttf") format('truetype'),
41
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.woff") format('woff'),
42
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.woff2") format('woff2'),
43
- local('BusinessSuiteInAppSymbols');
44
- font-weight: normal;
45
- font-style: normal;
46
- }
@@ -1,8 +1,8 @@
1
1
  /*!
2
2
  * Copyright (c) 2009-2023 SAP SE, All Rights Reserved
3
3
  */
4
- @import "../base/library.source.less";
5
4
 
5
+ @import "../base/library.source.less";
6
6
  @import "../../../../sap/ui/core/themes/sap_horizon_hcw/base.less";
7
7
  @import "../../../../sap/ui/core/themes/sap_horizon_hcw/global.less";
8
8
 
@@ -32,15 +32,3 @@
32
32
  @import "TileState.less";
33
33
  @import "ActionMode.less";
34
34
  @import "WorkPageCell.less";
35
-
36
- @font-face {
37
- font-family: 'BusinessSuiteInAppSymbols';
38
- src: url("../base/fonts/horizon/BusinessSuiteInAppSymbols.eot"),/* use locally installed font when untrusted font is disabled */
39
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.eot?#iefix") format('embedded-opentype'),/*?#iefix is required to be added to the end of the path of eot file here:*/
40
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.ttf") format('truetype'),
41
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.woff") format('woff'),
42
- url("../base/fonts/horizon/BusinessSuiteInAppSymbols.woff2") format('woff2'),
43
- local('BusinessSuiteInAppSymbols');
44
- font-weight: normal;
45
- font-style: normal;
46
- }
@@ -1,6 +1,9 @@
1
1
  // Copyright (c) 2009-2023 SAP SE, All Rights Reserved
2
2
 
3
- // Provides control sap.ushell.ui.appfinder.AppBox.
3
+ /**
4
+ * @fileoverview Provides control sap.ushell.ui.appfinder.AppBox.
5
+ * @deprecated since 1.120
6
+ */
4
7
  sap.ui.define([
5
8
  "sap/ushell/ui/appfinder/AppBoxInternal"
6
9
  ], function (AppBoxInternal) {
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @fileOverview Extension for recent activities card
5
5
  *
6
- * @version 1.127.2
6
+ * @version 1.128.0
7
7
  */
8
8
  sap.ui.define([
9
9
  "sap/ui/integration/Extension",
@@ -7,7 +7,7 @@
7
7
  * of recreating them. Items which get removed from the aggregation get destroyed and items which get added to the
8
8
  * aggregation get created.
9
9
  *
10
- * @version 1.127.2
10
+ * @version 1.128.0
11
11
  */
12
12
  sap.ui.define([
13
13
  "sap/ui/base/ManagedObject",
@@ -1,9 +1,10 @@
1
1
  // Copyright (c) 2009-2023 SAP SE, All Rights Reserved
2
2
 
3
3
  /**
4
- * @file Provides control "sap.ushell.ui.launchpad.LinkTileWrapper"
4
+ * @fileoverview Provides control "sap.ushell.ui.launchpad.LinkTileWrapper"
5
5
  * Note: Tile counterpart "sap.ushell.ui.launchpad.TileState"
6
6
  * @see sap.ushell.ui.launchpad.TileState
7
+ * @deprecated since 1.120
7
8
  */
8
9
  sap.ui.define([
9
10
  "sap/base/Log",
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @fileOverview Provides control sap.ushell.ui.launchpad.Section
5
5
  *
6
- * @version 1.127.2
6
+ * @version 1.128.0
7
7
  */
8
8
  sap.ui.define([
9
9
  "sap/base/Log",
@@ -1,9 +1,10 @@
1
1
  // Copyright (c) 2009-2023 SAP SE, All Rights Reserved
2
2
 
3
3
  /**
4
- * @file Provides control "sap.ushell.ui.launchpad.TileState"
4
+ * @fileoverview Provides control "sap.ushell.ui.launchpad.TileState"
5
5
  * Note: Link counterpart "sap.ushell.ui.launchpad.LinkTileWrapper"
6
6
  * @see sap.ushell.ui.launchpad.LinkTileWrapper
7
+ * @deprecated since 1.120
7
8
  */
8
9
  sap.ui.define([
9
10
  "sap/ushell/ui/launchpad/TileStateInternal",
@@ -1,4 +1,8 @@
1
1
  // Copyright (c) 2009-2023 SAP SE, All Rights Reserved
2
+ /**
3
+ * @fileoverview ViewPortState
4
+ * @deprecated since 1.120.0. The ViewPortState is related to Fiori2 and not used anymore.
5
+ */
2
6
  sap.ui.define(function () {
3
7
  "use strict";
4
8
 
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @fileOverview Provides control sap.ushell.ui.launchpad.section.CompactArea
5
5
  *
6
- * @version 1.127.2
6
+ * @version 1.128.0
7
7
  */
8
8
 
9
9
  sap.ui.define([
@@ -59,9 +59,13 @@ sap.ui.define([
59
59
  });
60
60
 
61
61
  ShellFloatingActions.prototype._createMultipleFloatingActionsButton = function (aFloatingActions) {
62
+ if (this._oButton) {
63
+ this._oButton.destroy();
64
+ this._oButton = null;
65
+ }
62
66
  var iFloatingActionHeight;
63
67
  var that = this;
64
- return new ShellFloatingAction({
68
+ this._oButton = new ShellFloatingAction({
65
69
  id: this.getId() + "-multipleFloatingActions",
66
70
  icon: "sap-icon://add",
67
71
  visible: true,
@@ -100,6 +104,8 @@ sap.ui.define([
100
104
  },
101
105
  tooltip: resources.i18n.getText("XXX")
102
106
  });
107
+
108
+ return this._oButton;
103
109
  };
104
110
 
105
111
  ShellFloatingActions.prototype.removeFloatingAction = function (oActionButton) {
@@ -18,7 +18,7 @@ sap.ui.define([
18
18
  * A control to be placed in the tool area
19
19
  * @extends sap.ui.core.Control
20
20
  *
21
- * @version 1.127.2
21
+ * @version 1.128.0
22
22
  *
23
23
  * @public
24
24
  * @since 1.30.5
@@ -2,8 +2,8 @@
2
2
 
3
3
  /**
4
4
  * @fileOverview Provides control sap.ushell.ui.tile.StaticTile.
5
+ * @deprecated since 1.120
5
6
  */
6
-
7
7
  sap.ui.define([
8
8
  "sap/ushell/library",
9
9
  "sap/ushell/ui/tile/TileBase",
@@ -6,7 +6,7 @@
6
6
  * This is a utility module that collects common activities implemented
7
7
  * by controllers of different ui components.
8
8
  *
9
- * @version 1.127.2
9
+ * @version 1.128.0
10
10
  * @private
11
11
  */
12
12
 
@@ -3,7 +3,7 @@
3
3
  /**
4
4
  * @fileOverview The ShellUIService UI5 service
5
5
  *
6
- * @version 1.127.2
6
+ * @version 1.128.0
7
7
  */
8
8
  sap.ui.define([
9
9
  "sap/ui/core/service/ServiceFactoryRegistry",
@@ -3,7 +3,8 @@
3
3
  /**
4
4
  * @fileOverview The UserStatus UI5 service
5
5
  *
6
- * @version 1.127.2
6
+ * @version 1.128.0
7
+ * @deprecated since 1.70. Support for this service has been discontinued.
7
8
  */
8
9
  sap.ui.define([
9
10
  "sap/ui/core/service/ServiceFactoryRegistry",