@sapui5/sap.ushell 1.121.1 → 1.122.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 (351) hide show
  1. package/package.json +2 -2
  2. package/src/main/js/sap/ushell/.library +1 -1
  3. package/src/main/js/sap/ushell/CanvasShapesManager.js +5 -3
  4. package/src/main/js/sap/ushell/Container.js +14 -0
  5. package/src/main/js/sap/ushell/Fiori20Adapter.js +1 -1
  6. package/src/main/js/sap/ushell/Fiori20AdapterTest.js +1 -1
  7. package/src/main/js/sap/ushell/Layout.js +1 -1
  8. package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
  9. package/src/main/js/sap/ushell/SessionHandler.js +14 -9
  10. package/src/main/js/sap/ushell/TechnicalParameters.js +1 -1
  11. package/src/main/js/sap/ushell/URLTemplateProcessor.js +1 -1
  12. package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +1 -1
  13. package/src/main/js/sap/ushell/Ui5ServiceFactory.js +1 -1
  14. package/src/main/js/sap/ushell/_URLTemplateProcessor/DefinitionParameterSetBuilder.js +1 -1
  15. package/src/main/js/sap/ushell/_URLTemplateProcessor/DependencyGraph.js +1 -1
  16. package/src/main/js/sap/ushell/_URLTemplateProcessor/Functions.js +1 -1
  17. package/src/main/js/sap/ushell/_URLTemplateProcessor/Resolvers.js +1 -1
  18. package/src/main/js/sap/ushell/_URLTemplateProcessor/TemplateParameterParser.js +1 -1
  19. package/src/main/js/sap/ushell/_URLTemplateProcessor/utils.js +1 -1
  20. package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +1 -1
  21. package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +1 -1
  22. package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
  23. package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +1 -1
  24. package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +1 -1
  25. package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +1 -1
  26. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
  27. package/src/main/js/sap/ushell/adapters/cdm/PersonalizationV2Adapter.js +1 -1
  28. package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
  29. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +1 -1
  30. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
  31. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
  32. package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
  33. package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +1 -1
  34. package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +1 -1
  35. package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +1 -1
  36. package/src/main/js/sap/ushell/adapters/cdm/v3/FlpLaunchPageAdapter.js +1 -1
  37. package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +1 -1
  38. package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +1 -1
  39. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +1 -1
  40. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
  41. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +1 -1
  42. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
  43. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +1 -1
  44. package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
  45. package/src/main/js/sap/ushell/adapters/cep/MenuAdapter.js +1 -1
  46. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +8 -185
  47. package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionInternalAdapter.js +198 -0
  48. package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +1 -1
  49. package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +1 -1
  50. package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +1 -1
  51. package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +6 -5
  52. package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +5 -4
  53. package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +1 -1
  54. package/src/main/js/sap/ushell/adapters/local/FlpLaunchPageAdapter.js +27 -22
  55. package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +1 -1
  56. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +7 -193
  57. package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionInternalAdapter.js +205 -0
  58. package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
  59. package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +1 -1
  60. package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +1 -1
  61. package/src/main/js/sap/ushell/adapters/local/PersonalizationV2Adapter.js +1 -1
  62. package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +1 -1
  63. package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +1 -1
  64. package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +1 -1
  65. package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
  66. package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +1 -1
  67. package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +1 -1
  68. package/src/main/js/sap/ushell/api/workpage/Designtime.js +24 -4
  69. package/src/main/js/sap/ushell/api/workpage/Runtime.js +45 -7
  70. package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +6 -0
  71. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/AppLifeCycleUtils.js +4 -4
  72. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Renderer.js +17 -49
  73. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/Component.js +13 -18
  74. package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/Component.js +24 -36
  75. package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycleAgent.js +2 -3
  76. package/src/main/js/sap/ushell/appRuntime/ui5/services/CrossApplicationNavigation.js +4 -4
  77. package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolution.js +4 -5
  78. package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolutionInternal.js +113 -0
  79. package/src/main/js/sap/ushell/appRuntime/ui5/services/Navigation.js +2 -2
  80. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigation.js +1 -1
  81. package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigationInternal.js +1 -1
  82. package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
  83. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/logger.js +1 -1
  84. package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/state.js +1 -1
  85. package/src/main/js/sap/ushell/bootstrap/cdm/cdm.constants.js +1 -1
  86. package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +1 -1
  87. package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +3 -1
  88. package/src/main/js/sap/ushell/bootstrap/common/common.read.ushell.config.from.url.js +2 -1
  89. package/src/main/js/sap/ushell/bootstrap/common/common.util.js +17 -2
  90. package/src/main/js/sap/ushell/bootstrap/sandbox2/sandboxConfig.json +12 -3
  91. package/src/main/js/sap/ushell/bootstrap/sandbox2.js +54 -22
  92. package/src/main/js/sap/ushell/components/CatalogsManager.js +31 -11
  93. package/src/main/js/sap/ushell/components/ComponentKeysHandler.js +1 -1
  94. package/src/main/js/sap/ushell/components/HomepageManager.js +5 -3
  95. package/src/main/js/sap/ushell/components/appfinder/AppFinder.controller.js +2 -2
  96. package/src/main/js/sap/ushell/components/appfinder/Catalog.controller.js +1 -1
  97. package/src/main/js/sap/ushell/components/appfinder/CatalogView.js +3 -4
  98. package/src/main/js/sap/ushell/components/appfinder/Component.js +5 -2
  99. package/src/main/js/sap/ushell/components/appfinder/HierarchyAppsView.js +3 -3
  100. package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
  101. package/src/main/js/sap/ushell/components/applicationIntegration/AppLifeCycle.js +2 -13
  102. package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +1 -1
  103. package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +1 -1
  104. package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +64 -8
  105. package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +67 -83
  106. package/src/main/js/sap/ushell/components/applicationIntegration/elements/model.js +1 -1
  107. package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +1 -1
  108. package/src/main/js/sap/ushell/components/applicationIntegration/relatedShellElements/RelatedShellElements.js +1 -1
  109. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/AdvancedFormatters.js +3 -3
  110. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/appendStyleVars.js +3 -3
  111. package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Event.js +3 -3
  112. package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +4 -4
  113. package/src/main/js/sap/ushell/components/contentFinder/Component.js +1 -1
  114. package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +12 -5
  115. package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +1 -1
  116. package/src/main/js/sap/ushell/components/contentFinder/controller/WidgetGallery.controller.js +1 -1
  117. package/src/main/js/sap/ushell/components/contentFinder/manifest.json +1 -1
  118. package/src/main/js/sap/ushell/components/contentFinder/resources/resources.properties +1 -1
  119. package/src/main/js/sap/ushell/components/contentFinder/view/AppSearchBox.fragment.xml +3 -1
  120. package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
  121. package/src/main/js/sap/ushell/components/factsheet/factory/ThingInspector.js +37 -37
  122. package/src/main/js/sap/ushell/components/homepage/ActionMode.js +1 -1
  123. package/src/main/js/sap/ushell/components/homepage/DashboardContent.controller.js +2 -2
  124. package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +1 -1
  125. package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +2 -2
  126. package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +2 -2
  127. package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
  128. package/src/main/js/sap/ushell/components/pages/ActionMode.js +1 -1
  129. package/src/main/js/sap/ushell/components/pages/Component.js +1 -1
  130. package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +1 -1
  131. package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +1 -1
  132. package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
  133. package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +1 -1
  134. package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
  135. package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
  136. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +1 -1
  137. package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
  138. package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +1 -1
  139. package/src/main/js/sap/ushell/components/shell/Notifications/Notifications.controller.js +525 -613
  140. package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +1 -1
  141. package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
  142. package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +1 -1
  143. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +1 -1
  144. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +1 -1
  145. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +1 -1
  146. package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchServiceProvider.js +1 -1
  147. package/src/main/js/sap/ushell/components/shell/Settings/Component.js +1 -1
  148. package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +4 -4
  149. package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/UserDefaultsEntry.js +3 -5
  150. package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +1 -1
  151. package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +1 -1
  152. package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/indicatorTileHelper.js +18 -18
  153. package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/smartBusinessUtil.js +1 -1
  154. package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +1 -1
  155. package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +1 -1
  156. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +1 -1
  157. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +2 -2
  158. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +1 -1
  159. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +1 -1
  160. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +1 -1
  161. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +1 -1
  162. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +1 -1
  163. package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +1 -1
  164. package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +3 -3
  165. package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +1 -1
  166. package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +1 -1
  167. package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
  168. package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
  169. package/src/main/js/sap/ushell/library.js +9 -1
  170. package/src/main/js/sap/ushell/navigationMode.js +3 -3
  171. package/src/main/js/sap/ushell/performance/FesrEnhancer.js +33 -4
  172. package/src/main/js/sap/ushell/performance/ShellAnalytics.js +1 -1
  173. package/src/main/js/sap/ushell/performance/StatisticalRecord.js +1 -1
  174. package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
  175. package/src/main/js/sap/ushell/plugins/rta-personalize/Component.js +6 -254
  176. package/src/main/js/sap/ushell/plugins/rta-personalize/manifest.json +0 -102
  177. package/src/main/js/sap/ushell/renderer/AccessKeysHandler.js +0 -8
  178. package/src/main/js/sap/ushell/renderer/Renderer.js +2 -2
  179. package/src/main/js/sap/ushell/renderer/Shell.controller.js +7 -7
  180. package/src/main/js/sap/ushell/renderer/Shell.view.js +2 -10
  181. package/src/main/js/sap/ushell/renderer/allMyApps/AllMyApps.controller.js +10 -11
  182. package/src/main/js/sap/ushell/renderer/allMyApps/AllMyApps.view.xml +49 -70
  183. package/src/main/js/sap/ushell/renderer/resources/resources.properties +0 -2
  184. package/src/main/js/sap/ushell/renderer/search/searchComponent/manifest.json +1 -1
  185. package/src/main/js/sap/ushell/renderers/fiori2/Shell.view.js +1 -1
  186. package/src/main/js/sap/ushell/services/AppLifeCycle.js +1 -1
  187. package/src/main/js/sap/ushell/services/AppState.js +1 -1
  188. package/src/main/js/sap/ushell/services/Bookmark.js +2 -2
  189. package/src/main/js/sap/ushell/services/BookmarkV2.js +2 -2
  190. package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +3 -3
  191. package/src/main/js/sap/ushell/services/CommonDataModel.js +3 -5
  192. package/src/main/js/sap/ushell/services/Configuration.js +1 -1
  193. package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +1 -1
  194. package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +1 -1
  195. package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +20 -20
  196. package/src/main/js/sap/ushell/services/DarkModeSupport.js +3 -3
  197. package/src/main/js/sap/ushell/services/Extension/FloatingContainer.js +1 -1
  198. package/src/main/js/sap/ushell/services/Extension/Footer.js +1 -1
  199. package/src/main/js/sap/ushell/services/Extension/Header.js +1 -1
  200. package/src/main/js/sap/ushell/services/Extension/Item.js +1 -1
  201. package/src/main/js/sap/ushell/services/Extension/SidePane.js +1 -1
  202. package/src/main/js/sap/ushell/services/Extension/ToolArea.js +1 -1
  203. package/src/main/js/sap/ushell/services/Extension.js +1 -1
  204. package/src/main/js/sap/ushell/services/FlpLaunchPage.js +1 -1
  205. package/src/main/js/sap/ushell/services/LaunchPage.js +1 -1
  206. package/src/main/js/sap/ushell/services/Menu.js +1 -1
  207. package/src/main/js/sap/ushell/services/Message.js +1 -1
  208. package/src/main/js/sap/ushell/services/MessageBroker.js +1 -1
  209. package/src/main/js/sap/ushell/services/NavTargetResolution.js +24 -995
  210. package/src/main/js/sap/ushell/services/NavTargetResolutionInternal.js +1272 -0
  211. package/src/main/js/sap/ushell/services/Navigation/utils.js +1 -1
  212. package/src/main/js/sap/ushell/services/Navigation.js +11 -11
  213. package/src/main/js/sap/ushell/services/NavigationDataProvider.js +1 -1
  214. package/src/main/js/sap/ushell/services/Notifications.js +0 -14
  215. package/src/main/js/sap/ushell/services/NotificationsV2.js +10 -34
  216. package/src/main/js/sap/ushell/services/PageBuilding.js +1 -1
  217. package/src/main/js/sap/ushell/services/PagePersistence.js +1 -1
  218. package/src/main/js/sap/ushell/services/PageReferencing.js +1 -1
  219. package/src/main/js/sap/ushell/services/Pages.js +1 -1
  220. package/src/main/js/sap/ushell/services/Personalization.js +1 -1
  221. package/src/main/js/sap/ushell/services/PersonalizationV2.js +1 -1
  222. package/src/main/js/sap/ushell/services/PluginManager.js +2 -2
  223. package/src/main/js/sap/ushell/services/ReferenceResolver.js +1 -1
  224. package/src/main/js/sap/ushell/services/Search.js +1 -1
  225. package/src/main/js/sap/ushell/services/SearchCEP.js +1 -1
  226. package/src/main/js/sap/ushell/services/SearchableContent.js +2 -2
  227. package/src/main/js/sap/ushell/services/ShellNavigation.js +1 -1
  228. package/src/main/js/sap/ushell/services/ShellNavigationHashChanger.js +1 -1
  229. package/src/main/js/sap/ushell/services/ShellNavigationInternal.js +3 -2
  230. package/src/main/js/sap/ushell/services/SmartNavigation.js +1 -1
  231. package/src/main/js/sap/ushell/services/SpaceContent.js +1 -1
  232. package/src/main/js/sap/ushell/services/UITracer.js +5 -5
  233. package/src/main/js/sap/ushell/services/URLParsing.js +2 -2
  234. package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
  235. package/src/main/js/sap/ushell/services/URLTemplate.js +1 -1
  236. package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +1 -1
  237. package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +1 -1
  238. package/src/main/js/sap/ushell/services/UserDefaultParameters.js +1 -1
  239. package/src/main/js/sap/ushell/services/UserInfo.js +1 -1
  240. package/src/main/js/sap/ushell/services/UserRecents.js +1 -1
  241. package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +1 -1
  242. package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +1 -1
  243. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Formatter.js +1 -1
  244. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundIndex.js +1 -1
  245. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundProvider.js +1 -1
  246. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/PrelaunchOperations.js +1 -1
  247. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Search.js +1 -1
  248. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/StagedLogger.js +1 -1
  249. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/SystemContext.js +1 -1
  250. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Utils.js +1 -1
  251. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/VirtualInbounds.js +1 -1
  252. package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/XAppStateProcessing.js +1 -1
  253. package/src/main/js/sap/ushell/services/_CommonDataModel/SiteConverter.js +1 -1
  254. package/src/main/js/sap/ushell/services/_CommonDataModel/vizTypeDefaults/VizTypeDefaults.js +1 -1
  255. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
  256. package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +1 -1
  257. package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +1 -1
  258. package/src/main/js/sap/ushell/services/_MessageBroker/MessageBrokerEngine.js +1 -1
  259. package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +4 -4
  260. package/src/main/js/sap/ushell/services/_PluginManager/Extensions.js +1 -1
  261. package/src/main/js/sap/ushell/services/_PluginManager/HeaderExtensions.js +1 -1
  262. package/src/main/js/sap/ushell/services/_PluginManager/MenuExtensions.js +1 -1
  263. package/src/main/js/sap/ushell/services/_Ui5ComponentLoader/utils.js +1 -1
  264. package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +1 -1
  265. package/src/main/js/sap/ushell/themes/base/Catalog.less +12 -2
  266. package/src/main/js/sap/ushell/themes/base/SearchCEP.less +1 -1
  267. package/src/main/js/sap/ushell/themes/base/ShellAppTitle.less +15 -57
  268. package/src/main/js/sap/ushell/themes/base/WorkPageCell.less +0 -1
  269. package/src/main/js/sap/ushell/themes/base/img/launchicons/phone-icon_120x120.png +0 -0
  270. package/src/main/js/sap/ushell/themes/base/img/launchicons/phone-retina_180x180.png +0 -0
  271. package/src/main/js/sap/ushell/themes/base/img/launchicons/tablet-icon_152x152.png +0 -0
  272. package/src/main/js/sap/ushell/themes/base/img/launchicons/tablet-retina_167x167.png +0 -0
  273. package/src/main/js/sap/ushell/themes/sap_belize/ShellHeader.less +11 -36
  274. package/src/main/js/sap/ushell/themes/sap_fiori_3/ShellHeader.less +9 -31
  275. package/src/main/js/sap/ushell/themes/sap_fiori_3_dark/ShellHeader.less +9 -32
  276. package/src/main/js/sap/ushell/themes/sap_horizon/ShellAppTitle.less +11 -39
  277. package/src/main/js/sap/ushell/themes/sap_horizon_dark/ShellAppTitle.less +11 -39
  278. package/src/main/js/sap/ushell/ui/appfinder/AppBox.js +3 -136
  279. package/src/main/js/sap/ushell/ui/appfinder/AppBoxInternal.js +161 -0
  280. package/src/main/js/sap/ushell/ui/appfinder/AppBoxRenderer.js +6 -0
  281. package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +1 -1
  282. package/src/main/js/sap/ushell/ui/footerbar/SaveAsTile.controller.js +1 -1
  283. package/src/main/js/sap/ushell/ui/launchpad/CatalogEntryContainer.js +1 -1
  284. package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +1 -1
  285. package/src/main/js/sap/ushell/ui/launchpad/Section.js +1 -1
  286. package/src/main/js/sap/ushell/ui/launchpad/TileContainer.js +1 -1
  287. package/src/main/js/sap/ushell/ui/launchpad/VizInstanceLaunchPage.js +1 -1
  288. package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +1 -1
  289. package/src/main/js/sap/ushell/ui/shell/ShellAppTitle.js +7 -9
  290. package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -1
  291. package/src/main/js/sap/ushell/ui/utils.js +1 -1
  292. package/src/main/js/sap/ushell/ui5service/ShellUIService.js +1 -1
  293. package/src/main/js/sap/ushell/ui5service/UserStatus.js +1 -1
  294. package/src/main/js/sap/ushell/utils/UrlShortening.js +2 -2
  295. package/src/main/js/sap/ushell/utils/workpage/WorkPageHost.js +366 -0
  296. package/src/main/js/sap/ushell/utils/workpage/WorkPageService.js +1 -1
  297. package/src/main/js/sap/ushell/utils/workpage/WorkPageVizInstantiation.js +5 -2
  298. package/src/main/js/sap/ushell/utils/workpage/resources/resources.properties +157 -0
  299. package/src/main/js/sap/ushell/utils/workpage/resources/resources_ar.properties +78 -0
  300. package/src/main/js/sap/ushell/utils/workpage/resources/resources_bg.properties +78 -0
  301. package/src/main/js/sap/ushell/utils/workpage/resources/resources_ca.properties +78 -0
  302. package/src/main/js/sap/ushell/utils/workpage/resources/resources_cs.properties +78 -0
  303. package/src/main/js/sap/ushell/utils/workpage/resources/resources_cy.properties +78 -0
  304. package/src/main/js/sap/ushell/utils/workpage/resources/resources_da.properties +78 -0
  305. package/src/main/js/sap/ushell/utils/workpage/resources/resources_de.properties +78 -0
  306. package/src/main/js/sap/ushell/utils/workpage/resources/resources_el.properties +78 -0
  307. package/src/main/js/sap/ushell/utils/workpage/resources/resources_en.properties +78 -0
  308. package/src/main/js/sap/ushell/utils/workpage/resources/resources_en_GB.properties +78 -0
  309. package/src/main/js/sap/ushell/utils/workpage/resources/resources_en_US_sappsd.properties +78 -0
  310. package/src/main/js/sap/ushell/utils/workpage/resources/resources_en_US_saprigi.properties +78 -0
  311. package/src/main/js/sap/ushell/utils/workpage/resources/resources_en_US_saptrc.properties +78 -0
  312. package/src/main/js/sap/ushell/utils/workpage/resources/resources_es.properties +78 -0
  313. package/src/main/js/sap/ushell/utils/workpage/resources/resources_es_MX.properties +78 -0
  314. package/src/main/js/sap/ushell/utils/workpage/resources/resources_et.properties +78 -0
  315. package/src/main/js/sap/ushell/utils/workpage/resources/resources_fi.properties +78 -0
  316. package/src/main/js/sap/ushell/utils/workpage/resources/resources_fr.properties +78 -0
  317. package/src/main/js/sap/ushell/utils/workpage/resources/resources_fr_CA.properties +78 -0
  318. package/src/main/js/sap/ushell/utils/workpage/resources/resources_hi.properties +78 -0
  319. package/src/main/js/sap/ushell/utils/workpage/resources/resources_hr.properties +78 -0
  320. package/src/main/js/sap/ushell/utils/workpage/resources/resources_hu.properties +78 -0
  321. package/src/main/js/sap/ushell/utils/workpage/resources/resources_id.properties +78 -0
  322. package/src/main/js/sap/ushell/utils/workpage/resources/resources_it.properties +78 -0
  323. package/src/main/js/sap/ushell/utils/workpage/resources/resources_iw.properties +78 -0
  324. package/src/main/js/sap/ushell/utils/workpage/resources/resources_ja.properties +78 -0
  325. package/src/main/js/sap/ushell/utils/workpage/resources/resources_kk.properties +78 -0
  326. package/src/main/js/sap/ushell/utils/workpage/resources/resources_ko.properties +78 -0
  327. package/src/main/js/sap/ushell/utils/workpage/resources/resources_lt.properties +78 -0
  328. package/src/main/js/sap/ushell/utils/workpage/resources/resources_lv.properties +78 -0
  329. package/src/main/js/sap/ushell/utils/workpage/resources/resources_ms.properties +78 -0
  330. package/src/main/js/sap/ushell/utils/workpage/resources/resources_nl.properties +78 -0
  331. package/src/main/js/sap/ushell/utils/workpage/resources/resources_no.properties +78 -0
  332. package/src/main/js/sap/ushell/utils/workpage/resources/resources_pl.properties +78 -0
  333. package/src/main/js/sap/ushell/utils/workpage/resources/resources_pt.properties +78 -0
  334. package/src/main/js/sap/ushell/utils/workpage/resources/resources_pt_PT.properties +78 -0
  335. package/src/main/js/sap/ushell/utils/workpage/resources/resources_ro.properties +78 -0
  336. package/src/main/js/sap/ushell/utils/workpage/resources/resources_ru.properties +78 -0
  337. package/src/main/js/sap/ushell/utils/workpage/resources/resources_sh.properties +78 -0
  338. package/src/main/js/sap/ushell/utils/workpage/resources/resources_sk.properties +78 -0
  339. package/src/main/js/sap/ushell/utils/workpage/resources/resources_sl.properties +78 -0
  340. package/src/main/js/sap/ushell/utils/workpage/resources/resources_sv.properties +78 -0
  341. package/src/main/js/sap/ushell/utils/workpage/resources/resources_th.properties +78 -0
  342. package/src/main/js/sap/ushell/utils/workpage/resources/resources_tr.properties +78 -0
  343. package/src/main/js/sap/ushell/utils/workpage/resources/resources_uk.properties +78 -0
  344. package/src/main/js/sap/ushell/utils/workpage/resources/resources_vi.properties +78 -0
  345. package/src/main/js/sap/ushell/utils/workpage/resources/resources_zh_CN.properties +78 -0
  346. package/src/main/js/sap/ushell/utils/workpage/resources/resources_zh_TW.properties +78 -0
  347. package/src/main/js/sap/ushell/utils.js +2 -2
  348. package/src/test/js/sap/ushell/bootstrap/sandbox.js +70 -60
  349. package/ui5.yaml +30 -2
  350. package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageHost.js +0 -350
  351. package/src/main/js/sap/ushell/plugins/rta-personalize/i18n/i18n.properties +0 -38
@@ -0,0 +1,366 @@
1
+ //Copyright (c) 2009-2023 SAP SE, All Rights Reserved
2
+
3
+ /**
4
+ * @file WorkPageHost for WorkPageBuilder and DWSPageBuilder
5
+ * @version 1.122.0
6
+ */
7
+
8
+ sap.ui.define([
9
+ "sap/ui/integration/Host",
10
+ "sap/ui/model/json/JSONModel",
11
+ "sap/ushell/Container",
12
+ "sap/ushell/EventHub",
13
+ "sap/ui/model/resource/ResourceModel"
14
+ ], function (
15
+ Host,
16
+ JSONModel,
17
+ Container,
18
+ EventHub,
19
+ ResourceModel
20
+ ) {
21
+ "use strict";
22
+
23
+ /**
24
+ * @alias sap.ushell.utils.workpage.WorkPageHost
25
+ * @class
26
+ * @classdesc WorkPageHost for WorkPageBuilder and DWSPageBuilder
27
+ *
28
+ * @param {string} sId the ID of the host.
29
+ * @param {object} [mSettings] the settings of the host instance.
30
+ *
31
+ * @augments sap.ui.integration.Host
32
+ *
33
+ * @private
34
+ */
35
+ return function (sId, mSettings) {
36
+ var oHost = new Host(sId, mSettings);
37
+
38
+ // private variables to store context information , filled lazy after by getContext, getContextValue was called, via _applyHostContext.
39
+ oHost._oHostContext = null;
40
+ oHost._oHostContextModel = null;
41
+
42
+ /**
43
+ * Resolves the destination for a given name
44
+ * @param {string} The name of the destination to resolve.
45
+ * @returns {Promise<string>} Promise with the target destination
46
+ */
47
+ oHost.setResolveDestination(function (sDestinationName) {
48
+ if (!sDestinationName) {
49
+ return Promise.reject();
50
+ }
51
+ return Promise.resolve(location.origin + "/dynamic_dest/" + sDestinationName);
52
+ });
53
+
54
+ /**
55
+ * Handles cardStateChange events and emits an Init entry the usage of the card to the UITracer.trace event.
56
+ * The event is fired multiple times today.
57
+ * The referenceId property (providerId) needs to be maintained on the card instance in the WorkPage or InterestCardService
58
+ */
59
+ oHost.attachCardInitialized(function (oEvent) {
60
+ var oCard = oEvent.getParameter("card");
61
+ if (oCard && oCard.isA && oCard.isA("sap.ui.integration.widgets.Card")) {
62
+ EventHub.emit("UITracer.trace", {
63
+ source: "Card",
64
+ reason: "Init",
65
+ data: {
66
+ cardId: oCard.getManifestEntry("/sap.app/id"),
67
+ providerId: oCard.getReferenceId()
68
+ }
69
+ });
70
+ }
71
+ });
72
+
73
+ /**
74
+ * Sets the UShell Container to be used to create the Navigation service.
75
+ *
76
+ * @param {sap.ushell.Container} oContainer the UShell container to be used.
77
+ */
78
+ oHost._setContainer = function (oContainer) {
79
+ this.oContainer = oContainer;
80
+ };
81
+
82
+ /**
83
+ * Sets whether the navigation action is disabled
84
+ *
85
+ * @param {boolean} bValue value of navigation disabled.
86
+ */
87
+ oHost._setNavigationDisabled = function (bValue) {
88
+ this._bNavigationDisabled = !!bValue;
89
+ };
90
+
91
+ /**
92
+ * Executes the Navigation. If event's type is Navigation, a new window will be opened
93
+ *
94
+ * @param {sap.base.Event} oEvent Event triggered by the card
95
+ * @returns {Promise<undefined>} Promise that will resolve if Navigation is successful
96
+ */
97
+ oHost._executeNavigation = function (oEvent) {
98
+
99
+ var oParameters = oEvent.getParameter("parameters"),
100
+ oCard = oEvent.getParameter("card");
101
+
102
+ if (oEvent.getParameter("type") !== "Navigation" ||
103
+ this._bNavigationDisabled) {
104
+ return Promise.resolve();
105
+ }
106
+ if (oParameters && oParameters.hasOwnProperty("url")) {
107
+ EventHub.emit("UITracer.trace", {
108
+ reason: "LaunchApp",
109
+ source: "Card",
110
+ data: {
111
+ cardId: oCard.getManifestEntry("/sap.app/id"),
112
+ providerId: oCard.getReferenceId(),
113
+ targetUrl: oParameters.url
114
+ }
115
+ });
116
+ return Promise.resolve();
117
+ }
118
+ // Prevent event bubbling here, to avoid opening the same target twice
119
+ oEvent.preventDefault(true);
120
+
121
+
122
+ return this.oContainer.getServiceAsync("Navigation")
123
+ .then(function (oNavigationService) {
124
+ var oNavigationParameters = {};
125
+ if (oParameters.hasOwnProperty("ibnTarget")) {
126
+ oNavigationParameters.target = oParameters.ibnTarget;
127
+ }
128
+ if (oParameters.hasOwnProperty("ibnParams")) {
129
+ oNavigationParameters.params = oParameters.ibnParams;
130
+ }
131
+ if (oParameters.hasOwnProperty("ibnAppSpecificRoute")) {
132
+ oNavigationParameters.appSpecificRoute = oParameters.ibnAppSpecificRoute;
133
+ }
134
+ EventHub.emit("UITracer.trace", {
135
+ reason: "LaunchApp",
136
+ source: "Card",
137
+ data: {
138
+ cardId: oCard.getManifestEntry("/sap.app/id"),
139
+ providerId: oCard.getReferenceId(),
140
+ targetUrl: "#" + oNavigationParameters.target.semanticObject + "-" + oNavigationParameters.target.action
141
+ }
142
+ });
143
+ return oNavigationService.navigate(oNavigationParameters);
144
+ });
145
+
146
+ };
147
+ oHost.attachAction(oHost._executeNavigation.bind(oHost));
148
+
149
+ /**
150
+ * Handle fetch call of cards and and emits a FetchData entry to the UITracer.trace event
151
+ * The status, statusText, url (resource) of the response are logged.
152
+ * statusText is normalized as the native Response.statusText might be missing for http2
153
+ * @param {string} sResource This defines the resource that you wish to fetch.
154
+ * @param {object} mOptions An object containing any custom settings that you want to apply to the request.
155
+ * @param {object} mRequestSettings The map of request settings defined in the card manifest. Use this only for reading, they can not be modified.
156
+ * @param {sap.ui.integration.widgets.Card} oCard The card which initiated the request.
157
+ * @returns {Promise<Response>} A <code>Promise</code> that resolves to a <code>Response</code> object.
158
+ *
159
+ * @see sap.ui.integration.Host#fetch
160
+ *
161
+ * @since 1.117.0
162
+ * @private
163
+ * @alias sap.ushell.utils.workpage.WorkPageHost#fetch
164
+ */
165
+ oHost.fetch = function (sResource, mOptions, mRequestSettings, oCard) {
166
+ if (oCard && oCard.isA && oCard.isA("sap.ui.integration.widgets.Card")) {
167
+ return Host.prototype.fetch.apply(this, arguments)
168
+ .then(function (oRes) {
169
+ EventHub.emit("UITracer.trace", {
170
+ source: "Card",
171
+ reason: "FetchData",
172
+ data: {
173
+ cardId: oCard.getManifestEntry("/sap.app/id"),
174
+ providerId: oCard.getReferenceId(),
175
+ targetUrl: sResource,
176
+ status: oRes.status
177
+ }
178
+ });
179
+ return oRes;
180
+ });
181
+ }
182
+ return Host.prototype.fetch.apply(this, arguments);
183
+ };
184
+
185
+ /**
186
+ * Resolves host context value based on a given content path
187
+ *
188
+ * @param {string} sPath The context path used at runtime, e.g "sap.workzone/currentUser/value".
189
+ *
190
+ * @returns {Promise<any>} Promise that resolves to the context paths value.
191
+ *
192
+ * @since 1.115.0
193
+ * @private
194
+ * @alias sap.ushell.utils.workpage.WorkPageHost#getContextValue
195
+ */
196
+ oHost.getContextValue = function (sPath) {
197
+ try {
198
+ if (!sPath) {
199
+ return Promise.reject();
200
+ }
201
+ if (sPath.charAt(0) === "/") {
202
+ return oHost.getContextValue(sPath.substring(1));
203
+ }
204
+ return oHost.getContext().then(function () {
205
+ return oHost._oHostContextModel.getProperty("/" + sPath);
206
+ });
207
+ } catch (ex) {
208
+ return Promise.resolve();
209
+ }
210
+ };
211
+
212
+ /**
213
+ * Returns the promise with the host context information.
214
+ *
215
+ * The information is collected from the UserInfo service once and stored in
216
+ * this.oHostContext member.
217
+ * The context contains information for id, name, email and timezone of the user.
218
+ *
219
+ * Additionally this structure is used for the configuration editor of cards that can
220
+ * select a corresponding value from a drop down. Label, placeholder and descriptions for
221
+ * such configuration is also added.
222
+ *
223
+ * This structure is returned for the configuration editor of the card via the 'getContext' method of the host.
224
+ *
225
+ * For the Standard Edition the content object will contain:
226
+ * {
227
+ * "sap.workzone": {
228
+ * currentUser: {
229
+ * id: {
230
+ * label: string
231
+ * description: string,
232
+ * placeholder: string,
233
+ * type: "string",
234
+ * value: The user id as string
235
+ * },
236
+ * name: {
237
+ * label: string
238
+ * description: string,
239
+ * placeholder: string,
240
+ * type: "string",
241
+ * value: The users full name as string
242
+ * },
243
+ * firstName: {
244
+ * label: string
245
+ * description: string,
246
+ * placeholder: string,
247
+ * type: "string",
248
+ * value: The firstName name as string
249
+ * },
250
+ * lastName: {
251
+ * label: string
252
+ * description: string,
253
+ * placeholder: string,
254
+ * type: "string",
255
+ * value: The users lastName as string
256
+ * },
257
+ * email: {
258
+ * label: string
259
+ * description: string,
260
+ * placeholder: string,
261
+ * type: "string",
262
+ * value: The users email as string
263
+ * }
264
+ * }
265
+ * }
266
+ * }
267
+ *
268
+ * @returns {Promise<object>} The sap.workzone context object
269
+ *
270
+ * @since 1.115.0
271
+ * @private
272
+ * @alias sap.ushell.utils.workpage.WorkPageHost#getContext
273
+ */
274
+ oHost.getContext = function () {
275
+ if (!oHost._oHostContext) {
276
+ oHost._oHostContext = Container.getServiceAsync("UserInfo")
277
+ .then(function (UserInfo) {
278
+ return oHost._getBundle()
279
+ .then(function (oBundle) {
280
+ return oHost._applyHostContext(UserInfo, oBundle);
281
+ })
282
+ .catch(function () {
283
+ return oHost._applyHostContext(UserInfo);
284
+ });
285
+ })
286
+ .catch(function () {
287
+ return {};
288
+ });
289
+ }
290
+ return Promise.resolve(oHost._oHostContext);
291
+ };
292
+
293
+ // loads resource bundle
294
+ oHost._getBundle = function () {
295
+ return new ResourceModel({
296
+ bundleName: "sap.ushell.utils.workpage.resources.resources",
297
+ async: true
298
+ }).getResourceBundle();
299
+ };
300
+
301
+ /**
302
+ * Applies a oHost._HostContext object and oHost._HostContextModel as json model to access the context values via getContextValue.
303
+ *
304
+ * @param {sap.ushell.services.UserInfo} UserInfo UserInfo Service instance.
305
+ * @param {sap.base.i18n.ResourceBundle} [oBundle] Resource bundle for context labels, descriptions and placeholders.
306
+ * @returns {object} the created _oHostContext object.
307
+ */
308
+ oHost._applyHostContext = function (UserInfo, oBundle) {
309
+ if (!oBundle) {
310
+ oBundle = {
311
+ getText: function (s) {
312
+ return s;
313
+ }
314
+ };
315
+ }
316
+ oHost._oHostContext = {
317
+ "sap.workzone": {
318
+ label: oBundle.getText("WorkPage.Host.Context.WorkZone.Label"),
319
+ currentUser: {
320
+ label: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.Label"),
321
+ id: {
322
+ label: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.Id.Label"),
323
+ type: "string",
324
+ tags: ["technical"],
325
+ placeholder: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.Id.Placeholder"),
326
+ description: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.Id.Desc"),
327
+ value: UserInfo.getId()
328
+ },
329
+ name: {
330
+ label: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.Name.Label"),
331
+ type: "string",
332
+ placeholder: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.Name.Placeholder"),
333
+ description: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.Name.Desc"),
334
+ value: UserInfo.getFullName()
335
+ },
336
+ firstName: {
337
+ label: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.FirstName.Label"),
338
+ type: "string",
339
+ placeholder: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.FirstName.Placeholder"),
340
+ description: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.FirstName.Desc"),
341
+ value: UserInfo.getFirstName()
342
+ },
343
+ lastName: {
344
+ label: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.LastName.Label"),
345
+ type: "string",
346
+ placeholder: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.LastName.Placeholder"),
347
+ description: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.LastName.Desc"),
348
+ value: UserInfo.getLastName()
349
+ },
350
+ email: {
351
+ label: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.Email.Label"),
352
+ type: "string",
353
+ placeholder: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.Email.Placeholder"),
354
+ description: oBundle.getText("WorkPage.Host.Context.WorkZone.CurrentUser.Email.Desc"),
355
+ value: UserInfo.getEmail()
356
+ }
357
+ }
358
+ }
359
+ };
360
+ oHost._oHostContextModel = new JSONModel(oHost._oHostContext);
361
+ return oHost._oHostContext;
362
+ };
363
+
364
+ return oHost;
365
+ };
366
+ });
@@ -2,7 +2,7 @@
2
2
 
3
3
  /**
4
4
  * @fileOverview This module communicates with the content API graphql service to retrieve workpage and visualization data.
5
- * @version 1.121.1
5
+ * @version 1.122.0
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/base/i18n/Localization",
@@ -2,13 +2,14 @@
2
2
 
3
3
  /**
4
4
  * @fileOverview This module provides utilities for creating visualization instances for work pages.
5
- * @version 1.121.1
5
+ * @version 1.122.0
6
6
  */
7
7
  sap.ui.define([
8
8
  "sap/ushell/services/VisualizationInstantiation",
9
9
  "sap/base/util/ObjectPath",
10
10
  "sap/base/Log",
11
11
  "sap/base/util/deepExtend",
12
+ "sap/base/util/deepClone",
12
13
  "sap/ushell/adapters/cdm/v3/utilsCdm",
13
14
  "sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils",
14
15
  "sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations",
@@ -18,6 +19,7 @@ sap.ui.define([
18
19
  ObjectPath,
19
20
  Log,
20
21
  deepExtend,
22
+ deepClone,
21
23
  utilsCdm,
22
24
  readUtils,
23
25
  readVisualizations,
@@ -99,7 +101,8 @@ sap.ui.define([
99
101
  * @since 1.121.0
100
102
  */
101
103
  createVizInstance (oVizData) {
102
- var oIndicatorDataSource = ObjectPath.get(["descriptor", "value", "sap.flp", "indicatorDataSource"], oVizData);
104
+ // viz instantiation service modifies the indicatorDataSource which breaks if objects are frozen
105
+ var oIndicatorDataSource = deepClone(ObjectPath.get(["descriptor", "value", "sap.flp", "indicatorDataSource"], oVizData));
103
106
  var oVizType = this.#oStandardVizTypes[oVizData.type];
104
107
 
105
108
  var oInstantiationVizData = {
@@ -0,0 +1,157 @@
1
+ # Translatable texts for the Fiori Launchpad
2
+ # __ldi.translation.uuid=bc59a778-900a-11ec-b909-0242ac120002
3
+
4
+
5
+ #XTIT
6
+ WorkPage.EmptyPage.Title=Empty Page
7
+ #XMSG
8
+ WorkPage.EmptyPage.Message=This page does not contain any sections yet.
9
+ #XBUT
10
+ WorkPage.EmptyPage.Button.Add=Add Section
11
+
12
+ #XBUT
13
+ WorkPage.EditMode.Save=Save
14
+ #XBUT
15
+ WorkPage.EditMode.Cancel=Cancel
16
+ #XMSG
17
+ WorkPage.Message.WidgetMoved=Widget moved
18
+
19
+ #WorkPage Row Overflow toolbar
20
+ #XFLD
21
+ WorkPage.Row.OverflowToolbar.RowTitleLabel=Section Title
22
+ #XTXT
23
+ WorkPage.Row.OverflowToolbar.RowTitleOptional=Enter an optional section title
24
+ #XBUT
25
+ WorkPage.Row.OverflowToolbar.DeleteRowButtonText=Remove Section
26
+ #XTOL
27
+ WorkPage.Row.OverflowToolbar.DeleteRowButtonTooltip=Delete section
28
+ #XTIT
29
+ WorkPage.Row.DeleteDialog.Title=Delete
30
+ #XMSG
31
+ WorkPage.Row.DeleteDialog.ConfirmText=Do you want to delete this section and all its content?
32
+ #XBUT
33
+ WorkPage.Row.DeleteDialog.Button.Confirm=Delete
34
+ #XBUT
35
+ WorkPage.Row.DeleteDialog.Button.Cancel=Cancel
36
+ #XTOL
37
+ WorkPage.Row.AddRowButtonTooltip=Add section
38
+ #XMSG
39
+ WorkPage.Row.MessageStrip.DeprecatedColumnCount=In runtime, only the first four columns will be visible. Please reduce the number of columns to four.
40
+ #XACT
41
+ WorkPage.Row.AriaLabel=WorkPage Sections
42
+ #XMSG: If the Section Title is empty this text should be read instead of the section title. "{0}" is the position of the section on the page.
43
+ WorkPage.Row.Unnamed.AriaLabel=Unnamed section at position {0}
44
+ #XMSG: "{0}" is the Section Title, this is read when a user navigates to the section and should describe the UI type as well as the title.
45
+ WorkPage.Row.Named.AriaLabel={0} Section
46
+ #WorkPage Column
47
+ #XACT: Accessibility label for the column info
48
+ WorkPage.Column.AriaLabel=Column {0} of {1}
49
+ #XBUT
50
+ WorkPage.Column.AddWidgetButtonText=Add Widget
51
+ #XTOL
52
+ WorkPage.Column.DeleteColumnButtonTooltip=Remove column
53
+ #XTOL
54
+ WorkPage.Column.AddColumnButtonTooltip=Add column
55
+ #XTIT
56
+ WorkPage.Column.EmptyIllustrationTitle=Search for Apps
57
+ #XMSG
58
+ WorkPage.Column.EmptyIllustrationDescription=Add apps to the widget, or remove the widget if you don't need it.
59
+
60
+ #WorkPage Cell
61
+ #XTOL
62
+ WorkPage.Cell.HeaderBar.AddTilesTooltip=Add app
63
+ #XTOL
64
+ WorkPage.Cell.HeaderBar.DeleteWidgetTooltip=Delete widget
65
+ #XTIT
66
+ WorkPage.Cell.EmptyIllustrationTitle=Search for Apps
67
+ #XMSG
68
+ WorkPage.Cell.EmptyIllustrationDescription=Add apps to the widget, or remove the widget if you don't need it.
69
+ #XTIT
70
+ WorkPage.Cell.DeleteDialog.Title=Delete
71
+ #XMSG
72
+ WorkPage.Cell.DeleteDialog.ConfirmText=Are you sure you want to delete this widget? All apps inside will also be removed from the page.
73
+ #XBUT
74
+ WorkPage.Cell.DeleteDialog.Button.Confirm=Delete
75
+ #XBUT
76
+ WorkPage.Cell.DeleteDialog.Button.Cancel=Cancel
77
+
78
+ #WorkPage WidgetContainer
79
+ #XTOL
80
+ WorkPage.WidgetContainer.OpenWidgetSettingsButtonTooltip=Open widget settings
81
+ #XTOL
82
+ WorkPage.WidgetContainer.DeleteWidgetButtonTooltip=Delete widget
83
+
84
+ #WorkPage Section
85
+ #XBUT
86
+ WorkPage.Section.AddVizInstanceButtonText=Add Tiles
87
+
88
+ #ContentFinder Add Widgets Dialog
89
+
90
+ #XTIT
91
+ ContentFinder.Categories.Applications.Title=Applications
92
+ #XBUT
93
+ ContentFinder.Widgets.Tiles.Title=Tiles
94
+ #XTXT
95
+ ContentFinder.Widgets.Tiles.Description=Visual representations of apps.
96
+ #XBUT
97
+ ContentFinder.Widgets.Cards.Title=Cards
98
+ #XTXT
99
+ ContentFinder.Widgets.Cards.Description=Visual representations of apps, displayed in flexible layouts.
100
+
101
+ #CardEditor
102
+ #XBUT
103
+ WorkPage.CardEditor.Save=Save
104
+ #XBUT
105
+ WorkPage.CardEditor.Cancel=Cancel
106
+ #XTIT The placeholder is the card title
107
+ WorkPage.CardEditor.Title=Configure "{0}"
108
+ #XTIT If no card title is available, use this one here
109
+ WorkPage.CardEditor.Title.NoCardTitle=Configure
110
+ #XBUT
111
+ WorkPage.Card.ActionDefinition.Configure=Configure
112
+ #XBUT
113
+ WorkPage.Card.ActionDefinition.Reset=Delete Configuration
114
+
115
+ #CardEditor Context Configuration
116
+ #XFLD
117
+ WorkPage.Host.Context.WorkZone.Label=SAP Build Work Zone
118
+ #XFLD
119
+ WorkPage.Host.Context.WorkZone.CurrentUser.Label=Current User
120
+ #XFLD
121
+ WorkPage.Host.Context.WorkZone.CurrentUser.Id.Label=Id of the SAP Build Work Zone user
122
+ #XFLD
123
+ WorkPage.Host.Context.WorkZone.CurrentUser.Id.Placeholder=SAP Build Work Zone user id
124
+ #YTXT
125
+ WorkPage.Host.Context.WorkZone.CurrentUser.Id.Desc=Id of the current user. The value will change based on the logged on user. To show the users name, use Name of the SAP Build Work Zone user.
126
+ #XFLD
127
+ WorkPage.Host.Context.WorkZone.CurrentUser.Name.Label=Name of the SAP Build Work Zone user
128
+ #XFLD
129
+ WorkPage.Host.Context.WorkZone.CurrentUser.Name.Placeholder=SAP Build Work Zone user name
130
+ #YTXT
131
+ WorkPage.Host.Context.WorkZone.CurrentUser.Name.Desc=Name of the current user with first, middle and last name. The middle name will be abbreviated. The value will change based on the logged on user.
132
+ #XFLD
133
+ WorkPage.Host.Context.WorkZone.CurrentUser.FirstName.Label=Firstname of the SAP Build Work Zone user
134
+ #XFLD
135
+ WorkPage.Host.Context.WorkZone.CurrentUser.FirstName.Placeholder=SAP Build Work Zone user firstname
136
+ #YTXT
137
+ WorkPage.Host.Context.WorkZone.CurrentUser.FirstName.Desc=Firstname of the current user. The value will change based on the logged on user.
138
+ #XFLD
139
+ WorkPage.Host.Context.WorkZone.CurrentUser.LastName.Label=Lastname of the SAP Build Work Zone user
140
+ #XFLD
141
+ WorkPage.Host.Context.WorkZone.CurrentUser.LastName.Placeholder=SAP Build Work Zone user lastname
142
+ #YTXT
143
+ WorkPage.Host.Context.WorkZone.CurrentUser.LastName.Desc=Lastname of the current user. The value will change based on the logged on user.
144
+ #XFLD
145
+ WorkPage.Host.Context.WorkZone.CurrentUser.Email.Label=Email address of current SAP Build Work Zone user
146
+ #XFLD
147
+ WorkPage.Host.Context.WorkZone.CurrentUser.Email.Placeholder=SAP Build Work Zone user email
148
+ #YTXT
149
+ WorkPage.Host.Context.WorkZone.CurrentUser.Email.Desc=Email address of current SAP Build Work Zone user. The value will change based on the logged on user.
150
+ #XTIT The title of the delete configuration dialog
151
+ WorkPage.CardEditor.DeleteConfigurationDialog.Title=Delete Configuration
152
+ #YTXT The content text of the delete configuration dialog
153
+ WorkPage.CardEditor.DeleteConfigurationDialog.Content=This card has individual configurations. Do you want to delete them irrevocably and reset the card to its default settings?
154
+ #XBTN The accept button of the delete configuration dialog
155
+ WorkPage.CardEditor.DeleteConfigurationDialog.Accept=Delete
156
+ #XBTN The deny button of the delete configuration dialog
157
+ WorkPage.CardEditor.DeleteConfigurationDialog.Deny=Cancel
@@ -0,0 +1,78 @@
1
+
2
+
3
+ WorkPage.EmptyPage.Title=\u0627\u0644\u0635\u0641\u062D\u0629 \u0627\u0644\u0641\u0627\u0631\u063A\u0629
4
+ WorkPage.EmptyPage.Message=\u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062D\u0629 \u0644\u0627 \u062A\u062D\u062A\u0648\u064A \u0639\u0644\u0649 \u0623\u064A \u0623\u0642\u0633\u0627\u0645 \u062D\u062A\u0649 \u0627\u0644\u0622\u0646.
5
+ WorkPage.EmptyPage.Button.Add=\u0625\u0636\u0627\u0641\u0629 \u0642\u0633\u0645
6
+
7
+ WorkPage.EditMode.Save=\u062D\u0641\u0638
8
+ WorkPage.EditMode.Cancel=\u0625\u0644\u063A\u0627\u0621
9
+ WorkPage.Message.WidgetMoved=\u062A\u0645 \u0646\u0642\u0644 \u0623\u062F\u0627\u0629 \u0645\u0635\u0648\u0631\u0629
10
+
11
+ WorkPage.Row.OverflowToolbar.RowTitleLabel=\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0642\u0633\u0645
12
+ WorkPage.Row.OverflowToolbar.RowTitleOptional=\u0625\u062F\u062E\u0627\u0644 \u0639\u0646\u0648\u0627\u0646 \u0642\u0633\u0645 \u0627\u062E\u062A\u064A\u0627\u0631\u064A
13
+ WorkPage.Row.OverflowToolbar.DeleteRowButtonText=\u0625\u0632\u0627\u0644\u0629 \u0642\u0633\u0645
14
+ WorkPage.Row.OverflowToolbar.DeleteRowButtonTooltip=\u062D\u0630\u0641 \u0642\u0633\u0645
15
+ WorkPage.Row.DeleteDialog.Title=\u062D\u0630\u0641
16
+ WorkPage.Row.DeleteDialog.ConfirmText=\u0647\u0644 \u062A\u0631\u064A\u062F \u062D\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u0642\u0633\u0645 \u0648\u062C\u0645\u064A\u0639 \u0645\u062D\u062A\u0648\u064A\u0627\u062A\u0647\u061F
17
+ WorkPage.Row.DeleteDialog.Button.Confirm=\u062D\u0630\u0641
18
+ WorkPage.Row.DeleteDialog.Button.Cancel=\u0625\u0644\u063A\u0627\u0621
19
+ WorkPage.Row.AddRowButtonTooltip=\u0625\u0636\u0627\u0641\u0629 \u0642\u0633\u0645
20
+ WorkPage.Row.MessageStrip.DeprecatedColumnCount=\u0641\u064A \u0648\u0642\u062A \u0627\u0644\u062A\u0634\u063A\u064A\u0644\u060C \u0633\u062A\u0643\u0648\u0646 \u0627\u0644\u0623\u0639\u0645\u062F\u0629 \u0627\u0644\u0623\u0631\u0628\u0639\u0629 \u0627\u0644\u0623\u0648\u0644\u0649 \u0641\u0642\u0637 \u0645\u0631\u0626\u064A\u0629. \u064A\u064F\u0631\u062C\u0649 \u062A\u0642\u0644\u064A\u0644 \u0639\u062F\u062F \u0627\u0644\u0623\u0639\u0645\u062F\u0629 \u0625\u0644\u0649 \u0623\u0631\u0628\u0639\u0629.
21
+ WorkPage.Row.AriaLabel=\u0623\u0642\u0633\u0627\u0645 \u0635\u0641\u062D\u0627\u062A \u0627\u0644\u0639\u0645\u0644
22
+
23
+ WorkPage.Column.AriaLabel=\u0639\u0645\u0648\u062F {0} \u0645\u0646 {1}
24
+ WorkPage.Column.AddWidgetButtonText=\u0625\u0636\u0627\u0641\u0629 \u0623\u062F\u0627\u0629 \u0645\u0635\u0648\u0631\u0629
25
+ WorkPage.Column.DeleteColumnButtonTooltip=\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0639\u0645\u0648\u062F
26
+ WorkPage.Column.AddColumnButtonTooltip=\u0625\u0636\u0627\u0641\u0629 \u0639\u0645\u0648\u062F
27
+ WorkPage.Column.EmptyIllustrationTitle=\u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u062A\u0637\u0628\u064A\u0642\u0627\u062A
28
+ WorkPage.Column.EmptyIllustrationDescription=\u0623\u0636\u0641 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A \u0625\u0644\u0649 \u0627\u0644\u0623\u062F\u0627\u0629 \u0627\u0644\u0645\u0635\u0648\u0631\u0629\u060C \u0623\u0648 \u0642\u0645 \u0628\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0623\u062F\u0627\u0629 \u0627\u0644\u0645\u0635\u0648\u0631\u0629 \u0625\u0630\u0627 \u0644\u0645 \u062A\u0643\u0646 \u0628\u062D\u0627\u062C\u0629 \u0625\u0644\u064A\u0647\u0627.
29
+
30
+ WorkPage.Cell.HeaderBar.AddTilesTooltip=\u0625\u0636\u0627\u0641\u0629 \u062A\u0637\u0628\u064A\u0642
31
+ WorkPage.Cell.HeaderBar.DeleteWidgetTooltip=\u062D\u0630\u0641 \u0627\u0644\u0623\u062F\u0627\u0629 \u0627\u0644\u0645\u0635\u0648\u0631\u0629
32
+ WorkPage.Cell.EmptyIllustrationTitle=\u0627\u0644\u0628\u062D\u062B \u0639\u0646 \u062A\u0637\u0628\u064A\u0642\u0627\u062A
33
+ WorkPage.Cell.EmptyIllustrationDescription=\u0623\u0636\u0641 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A \u0625\u0644\u0649 \u0627\u0644\u0623\u062F\u0627\u0629 \u0627\u0644\u0645\u0635\u0648\u0631\u0629\u060C \u0623\u0648 \u0642\u0645 \u0628\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0623\u062F\u0627\u0629 \u0627\u0644\u0645\u0635\u0648\u0631\u0629 \u0625\u0630\u0627 \u0644\u0645 \u062A\u0643\u0646 \u0628\u062D\u0627\u062C\u0629 \u0625\u0644\u064A\u0647\u0627.
34
+ WorkPage.Cell.DeleteDialog.Title=\u062D\u0630\u0641
35
+ WorkPage.Cell.DeleteDialog.ConfirmText=\u0647\u0644 \u062A\u0631\u064A\u062F \u0628\u0627\u0644\u062A\u0623\u0643\u064A\u062F \u062D\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0623\u062F\u0627\u0629 \u0627\u0644\u0645\u0635\u0648\u0631\u0629\u061F \u0633\u062A\u062A\u0645 \u0623\u064A\u0636\u064B\u0627 \u0625\u0632\u0627\u0644\u0629 \u062C\u0645\u064A\u0639 \u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A \u0627\u0644\u0645\u0648\u062C\u0648\u062F\u0629 \u0641\u064A\u0647 \u0645\u0646 \u0627\u0644\u0635\u0641\u062D\u0629.
36
+ WorkPage.Cell.DeleteDialog.Button.Confirm=\u062D\u0630\u0641
37
+ WorkPage.Cell.DeleteDialog.Button.Cancel=\u0625\u0644\u063A\u0627\u0621
38
+
39
+ WorkPage.WidgetContainer.OpenWidgetSettingsButtonTooltip=\u0641\u062A\u062D \u0625\u0639\u062F\u0627\u062F\u0627\u062A \u0627\u0644\u0623\u062F\u0627\u0629 \u0627\u0644\u0645\u0635\u0648\u0631\u0629
40
+ WorkPage.WidgetContainer.DeleteWidgetButtonTooltip=\u062D\u0630\u0641 \u0627\u0644\u0623\u062F\u0627\u0629 \u0627\u0644\u0645\u0635\u0648\u0631\u0629
41
+
42
+ WorkPage.Section.AddVizInstanceButtonText=\u0625\u0636\u0627\u0641\u0629 \u0644\u0648\u062D\u0627\u062A
43
+
44
+
45
+ ContentFinder.Categories.Applications.Title=\u0627\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A
46
+ ContentFinder.Widgets.Tiles.Title=\u0627\u0644\u0625\u0637\u0627\u0631\u0627\u062A
47
+ ContentFinder.Widgets.Tiles.Description=\u0627\u0644\u062A\u0645\u062B\u064A\u0644\u0627\u062A \u0627\u0644\u0645\u0631\u0626\u064A\u0629 \u0644\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A.
48
+ ContentFinder.Widgets.Cards.Title=\u0627\u0644\u0628\u0637\u0627\u0642\u0627\u062A
49
+ ContentFinder.Widgets.Cards.Description=\u0627\u0644\u062A\u0645\u062B\u064A\u0644\u0627\u062A \u0627\u0644\u0645\u0631\u0626\u064A\u0629 \u0644\u0644\u062A\u0637\u0628\u064A\u0642\u0627\u062A\u060C \u0645\u0639\u0631\u0648\u0636\u0629 \u0641\u064A \u0645\u062E\u0637\u0637\u0627\u062A \u0645\u0631\u0646\u0629.
50
+
51
+ WorkPage.CardEditor.Save=\u062D\u0641\u0638
52
+ WorkPage.CardEditor.Cancel=\u0625\u0644\u063A\u0627\u0621
53
+ WorkPage.CardEditor.Title=\u062A\u0643\u0648\u064A\u0646 "{0}"
54
+ WorkPage.CardEditor.Title.NoCardTitle=\u062A\u0643\u0648\u064A\u0646
55
+ WorkPage.Card.ActionDefinition.Configure=\u062A\u0643\u0648\u064A\u0646
56
+ WorkPage.Card.ActionDefinition.Reset=\u062D\u0630\u0641 \u062A\u0643\u0648\u064A\u0646
57
+
58
+ WorkPage.Host.Context.WorkZone.Label=SAP Build Work Zone
59
+ WorkPage.Host.Context.WorkZone.CurrentUser.Label=\u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0627\u0644\u062D\u0627\u0644\u064A
60
+ WorkPage.Host.Context.WorkZone.CurrentUser.Id.Label=\u0645\u0639\u0631\u0641 \u0645\u0633\u062A\u062E\u062F\u0645 SAP Build Work Zone
61
+ WorkPage.Host.Context.WorkZone.CurrentUser.Id.Placeholder=\u0645\u0639\u0631\u0641 \u0645\u0633\u062A\u062E\u062F\u0645 SAP Build Work Zone
62
+ WorkPage.Host.Context.WorkZone.CurrentUser.Id.Desc=\u0645\u0639\u0631\u0641 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0627\u0644\u062D\u0627\u0644\u064A. \u0633\u062A\u062A\u063A\u064A\u0631 \u0627\u0644\u0642\u064A\u0645\u0629 \u0639\u0644\u0649 \u0623\u0633\u0627\u0633 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0627\u0644\u0630\u064A \u0642\u0627\u0645 \u0628\u062A\u0633\u062C\u064A\u0644 \u0627\u0644\u062F\u062E\u0648\u0644. \u0644\u0625\u0638\u0647\u0627\u0631 \u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645\u060C \u0627\u0633\u062A\u062E\u062F\u0645 \u0627\u0633\u0645 \u0645\u0633\u062A\u062E\u062F\u0645 SAP Build Work Zone.
63
+ WorkPage.Host.Context.WorkZone.CurrentUser.Name.Label=\u0627\u0633\u0645 \u0645\u0633\u062A\u062E\u062F\u0645 SAP Build Work Zone
64
+ WorkPage.Host.Context.WorkZone.CurrentUser.Name.Placeholder=\u0627\u0633\u0645 \u0645\u0633\u062A\u062E\u062F\u0645 SAP Build Work Zone
65
+ WorkPage.Host.Context.WorkZone.CurrentUser.Name.Desc=\u0627\u0633\u0645 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0627\u0644\u062D\u0627\u0644\u064A \u0628\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0644 \u0648\u0627\u0644\u0623\u0648\u0633\u0637 \u0648\u0627\u0644\u0623\u062E\u064A\u0631. \u0633\u064A\u062A\u0645 \u0627\u062E\u062A\u0635\u0627\u0631 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0633\u0637. \u0633\u062A\u062A\u063A\u064A\u0631 \u0627\u0644\u0642\u064A\u0645\u0629 \u0639\u0644\u0649 \u0623\u0633\u0627\u0633 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0627\u0644\u0630\u064A \u0642\u0627\u0645 \u0628\u062A\u0633\u062C\u064A\u0644 \u0627\u0644\u062F\u062E\u0648\u0644.
66
+ WorkPage.Host.Context.WorkZone.CurrentUser.FirstName.Label=\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0644 \u0644\u0645\u0633\u062A\u062E\u062F\u0645 SAP Build Work Zone
67
+ WorkPage.Host.Context.WorkZone.CurrentUser.FirstName.Placeholder=\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0644 \u0644\u0645\u0633\u062A\u062E\u062F\u0645 SAP Build Work Zone
68
+ WorkPage.Host.Context.WorkZone.CurrentUser.FirstName.Desc=\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u0648\u0644 \u0644\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0627\u0644\u062D\u0627\u0644\u064A. \u0633\u062A\u062A\u063A\u064A\u0631 \u0627\u0644\u0642\u064A\u0645\u0629 \u0639\u0644\u0649 \u0623\u0633\u0627\u0633 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0627\u0644\u0630\u064A \u0642\u0627\u0645 \u0628\u062A\u0633\u062C\u064A\u0644 \u0627\u0644\u062F\u062E\u0648\u0644.
69
+ WorkPage.Host.Context.WorkZone.CurrentUser.LastName.Label=\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u062E\u064A\u0631 \u0644\u0645\u0633\u062A\u062E\u062F\u0645 SAP Build Work Zone
70
+ WorkPage.Host.Context.WorkZone.CurrentUser.LastName.Placeholder=\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u062E\u064A\u0631 \u0644\u0645\u0633\u062A\u062E\u062F\u0645 SAP Build Work Zone
71
+ WorkPage.Host.Context.WorkZone.CurrentUser.LastName.Desc=\u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u0623\u062E\u064A\u0631 \u0644\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0627\u0644\u062D\u0627\u0644\u064A. \u0633\u062A\u062A\u063A\u064A\u0631 \u0627\u0644\u0642\u064A\u0645\u0629 \u0639\u0644\u0649 \u0623\u0633\u0627\u0633 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0627\u0644\u0630\u064A \u0642\u0627\u0645 \u0628\u062A\u0633\u062C\u064A\u0644 \u0627\u0644\u062F\u062E\u0648\u0644.
72
+ WorkPage.Host.Context.WorkZone.CurrentUser.Email.Label=\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0628\u0631\u064A\u062F \u0627\u0644\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A \u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0645\u0646\u0637\u0642\u0629 \u0639\u0645\u0644 SAP Build \u0627\u0644\u062D\u0627\u0644\u064A
73
+ WorkPage.Host.Context.WorkZone.CurrentUser.Email.Placeholder=\u0627\u0644\u0628\u0631\u064A\u062F \u0627\u0644\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A \u0644\u0645\u0633\u062A\u062E\u062F\u0645 SAP Build Work Zone
74
+ WorkPage.Host.Context.WorkZone.CurrentUser.Email.Desc=\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0628\u0631\u064A\u062F \u0627\u0644\u0625\u0644\u0643\u062A\u0631\u0648\u0646\u064A \u0644\u0645\u0633\u062A\u062E\u062F\u0645 SAP Build Work Zone \u0627\u0644\u062D\u0627\u0644\u064A. \u0633\u062A\u062A\u063A\u064A\u0631 \u0627\u0644\u0642\u064A\u0645\u0629 \u0639\u0644\u0649 \u0623\u0633\u0627\u0633 \u0627\u0644\u0645\u0633\u062A\u062E\u062F\u0645 \u0627\u0644\u0630\u064A \u0642\u0627\u0645 \u0628\u062A\u0633\u062C\u064A\u0644 \u0627\u0644\u062F\u062E\u0648\u0644.
75
+ WorkPage.CardEditor.DeleteConfigurationDialog.Title=\u062D\u0630\u0641 \u062A\u0643\u0648\u064A\u0646
76
+ WorkPage.CardEditor.DeleteConfigurationDialog.Content=\u062A\u062D\u062A\u0648\u064A \u0647\u0630\u0647 \u0627\u0644\u0628\u0637\u0627\u0642\u0629 \u0639\u0644\u0649 \u062A\u0643\u0648\u064A\u0646\u0627\u062A \u0641\u0631\u062F\u064A\u0629. \u0647\u0644 \u062A\u0631\u064A\u062F \u062D\u0630\u0641\u0647\u0627 \u0646\u0647\u0627\u0626\u064A\u064B\u0627 \u0648\u0625\u0639\u0627\u062F\u0629 \u062A\u0639\u064A\u064A\u0646 \u0627\u0644\u0628\u0637\u0627\u0642\u0629 \u0639\u0644\u0649 \u0625\u0639\u062F\u0627\u062F\u0627\u062A\u0647\u0627 \u0627\u0644\u0627\u0641\u062A\u0631\u0627\u0636\u064A\u0629\u061F
77
+ WorkPage.CardEditor.DeleteConfigurationDialog.Accept=\u062D\u0630\u0641
78
+ WorkPage.CardEditor.DeleteConfigurationDialog.Deny=\u0625\u0644\u063A\u0627\u0621