@sapui5/sap.ushell 1.120.8 → 1.121.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.
- package/package.json +2 -2
- package/src/main/js/sap/ushell/.library +1 -1
- package/src/main/js/sap/ushell/AppInfoParameters.js +46 -49
- package/src/main/js/sap/ushell/CanvasShapesManager.js +8 -7
- package/src/main/js/sap/ushell/Container.js +333 -108
- package/src/main/js/sap/ushell/EventHub.js +6 -9
- package/src/main/js/sap/ushell/Fiori20Adapter.js +6 -7
- package/src/main/js/sap/ushell/Fiori20AdapterTest.js +5 -7
- package/src/main/js/sap/ushell/Layout.js +20 -16
- package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
- package/src/main/js/sap/ushell/SessionHandler.js +20 -12
- package/src/main/js/sap/ushell/System.js +4 -2
- package/src/main/js/sap/ushell/TechnicalParameters.js +34 -57
- package/src/main/js/sap/ushell/UIActions.js +28 -39
- package/src/main/js/sap/ushell/URLTemplateProcessor.js +1 -1
- package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +8 -7
- package/src/main/js/sap/ushell/Ui5ServiceFactory.js +10 -10
- package/src/main/js/sap/ushell/User.js +6 -4
- package/src/main/js/sap/ushell/UserActivityLog.js +13 -11
- package/src/main/js/sap/ushell/_ApplicationType/guiResolution.js +15 -19
- package/src/main/js/sap/ushell/_ApplicationType/systemAlias.js +5 -3
- package/src/main/js/sap/ushell/_ApplicationType/ui5Resolution.js +11 -10
- package/src/main/js/sap/ushell/_ApplicationType/urlTemplateResolution.js +17 -15
- package/src/main/js/sap/ushell/_ApplicationType/utils.js +7 -7
- package/src/main/js/sap/ushell/_ApplicationType/wdaResolution.js +8 -6
- package/src/main/js/sap/ushell/_Config/utils.js +1 -1
- package/src/main/js/sap/ushell/_URLTemplateProcessor/DefinitionParameterSetBuilder.js +1 -1
- package/src/main/js/sap/ushell/_URLTemplateProcessor/DependencyGraph.js +1 -1
- package/src/main/js/sap/ushell/_URLTemplateProcessor/Functions.js +1 -1
- package/src/main/js/sap/ushell/_URLTemplateProcessor/Resolvers.js +2 -2
- package/src/main/js/sap/ushell/_URLTemplateProcessor/TemplateParameterParser.js +1 -1
- package/src/main/js/sap/ushell/_URLTemplateProcessor/utils.js +1 -1
- package/src/main/js/sap/ushell/adapters/AppVariantPersonalizationAdapter.js +5 -3
- package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +6 -11
- package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +6 -16
- package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +18 -14
- package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +16 -21
- package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +7 -18
- package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/PersonalizationV2Adapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_Personalization/internals.js +9 -9
- package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +36 -13
- package/src/main/js/sap/ushell/adapters/cdm/v3/FlpLaunchPageAdapter.js +2629 -0
- package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +4 -2525
- package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +13 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +91 -25
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
- package/src/main/js/sap/ushell/adapters/cep/MenuAdapter.js +6 -6
- package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +31 -6
- package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +7 -6
- package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +10 -20
- package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +14 -19
- package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +18 -20
- package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +25 -18
- package/src/main/js/sap/ushell/adapters/local/FlpLaunchPageAdapter.js +1558 -0
- package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +4 -1551
- package/src/main/js/sap/ushell/adapters/local/MenuAdapter.js +3 -3
- package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +2 -4
- package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +11 -8
- package/src/main/js/sap/ushell/adapters/local/PersonalizationV2Adapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +11 -23
- package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +1 -1
- package/src/main/js/sap/ushell/api/RTA.js +27 -0
- package/src/main/js/sap/ushell/api/workpage/Designtime.js +69 -0
- package/src/main/js/sap/ushell/api/workpage/Runtime.js +97 -0
- package/src/main/js/sap/ushell/appRuntime/neo/AppInfoService.js +12 -3
- package/src/main/js/sap/ushell/appRuntime/neo/AppRuntimeNeo.js +4 -0
- package/src/main/js/sap/ushell/appRuntime/neo/ProxyAppUtils.js +4 -0
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +82 -78
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntimeContext.js +4 -3
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntimeService.js +8 -0
- package/src/main/js/sap/ushell/appRuntime/ui5/SessionHandlerAgent.js +35 -37
- package/src/main/js/sap/ushell/appRuntime/ui5/performance/FesrEnhancer.js +4 -5
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/AppLifeCycleUtils.js +2 -8
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Trigger.js +9 -5
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/Component.js +6 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_en_US_saprigi.properties +5 -5
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_sh.properties +3 -3
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/Component.js +4 -3
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/i18n/i18n_en_US_saprigi.properties +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/i18n/i18n_sh.properties +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/AccessKeysAgent.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/Renderer.js +14 -14
- package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/RendererExtensions.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/AppConfiguration.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycleAgent.js +39 -39
- package/src/main/js/sap/ushell/appRuntime/ui5/services/AppState.js +15 -16
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Bookmark.js +12 -54
- package/src/main/js/sap/ushell/appRuntime/ui5/services/BookmarkV2.js +154 -0
- package/src/main/js/sap/ushell/appRuntime/ui5/services/CommonDataModel.js +1 -3
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Container.js +221 -206
- package/src/main/js/sap/ushell/appRuntime/ui5/services/CrossApplicationNavigation.js +15 -14
- package/src/main/js/sap/ushell/appRuntime/ui5/services/MessageBroker.js +5 -5
- package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolution.js +10 -14
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Navigation.js +212 -0
- package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigation.js +6 -5
- package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigationInternal.js +67 -0
- package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellUIService.js +4 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/services/UserInfo.js +9 -3
- package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/ContainerAdapter.js +9 -10
- package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/EmptyAdapter.js +3 -0
- package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/FLPScheduler.js +12 -6
- package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/StepConfiguration.json +1 -3
- package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/logger.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/state.js +6 -7
- package/src/main/js/sap/ushell/bootstrap/cdm/cdm-def-dev.js +2 -1
- package/src/main/js/sap/ushell/bootstrap/cdm/cdm-def-loader.js +15 -5
- package/src/main/js/sap/ushell/bootstrap/cdm/cdm-def.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/cdm/cdm.boot.task.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/cdm/cdm.constants.js +14 -0
- package/src/main/js/sap/ushell/bootstrap/cdm.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.boot.path.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.boot.script.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.boot.task.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5.extractLibs.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +6 -6
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5language.js +4 -4
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ushell.js +37 -41
- package/src/main/js/sap/ushell/bootstrap/common/common.constants.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +31 -20
- package/src/main/js/sap/ushell/bootstrap/common/common.debug.mode.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.load.bootstrapExtension.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.load.core-min.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.load.launchpad.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.load.model.js +3 -3
- package/src/main/js/sap/ushell/bootstrap/common/common.load.ui5theme.js +3 -3
- package/src/main/js/sap/ushell/bootstrap/common/common.read.metatags.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.read.ushell.config.from.url.js +5 -4
- package/src/main/js/sap/ushell/bootstrap/common/common.util.js +48 -14
- package/src/main/js/sap/ushell/bootstrap/sandbox2.js +8 -9
- package/src/main/js/sap/ushell/bootstrap/ui5loader-config.js +2 -2
- package/src/main/js/sap/ushell/components/CatalogsManager.js +49 -47
- package/src/main/js/sap/ushell/components/ComponentKeysHandler.js +57 -45
- package/src/main/js/sap/ushell/components/DestroyHelper.js +2 -2
- package/src/main/js/sap/ushell/components/HeaderManager.js +3 -3
- package/src/main/js/sap/ushell/components/HomepageManager.js +27 -29
- package/src/main/js/sap/ushell/components/MessagingHelper.js +2 -2
- package/src/main/js/sap/ushell/components/SharedComponentUtils.js +13 -10
- package/src/main/js/sap/ushell/components/StateHelper.js +1 -1
- package/src/main/js/sap/ushell/components/_HeaderManager/AddHeadEndItemsStrategy.js +15 -15
- package/src/main/js/sap/ushell/components/_HeaderManager/AddHeadItemsStrategy.js +3 -3
- package/src/main/js/sap/ushell/components/_HeaderManager/ControlManager.js +4 -4
- package/src/main/js/sap/ushell/components/_HeaderManager/RemoveItemsStrategy.js +2 -2
- package/src/main/js/sap/ushell/components/_HeaderManager/ShellHeader.controller.js +13 -13
- package/src/main/js/sap/ushell/components/_HomepageManager/DashboardLoadingManager.js +3 -3
- package/src/main/js/sap/ushell/components/_HomepageManager/PagingManager.js +1 -1
- package/src/main/js/sap/ushell/components/_HomepageManager/PersistentPageOperationAdapter.js +4 -4
- package/src/main/js/sap/ushell/components/appfinder/AppFinder.controller.js +9 -8
- package/src/main/js/sap/ushell/components/appfinder/AppFinderView.js +6 -6
- package/src/main/js/sap/ushell/components/appfinder/Catalog.controller.js +29 -16
- package/src/main/js/sap/ushell/components/appfinder/CatalogView.js +17 -17
- package/src/main/js/sap/ushell/components/appfinder/Component.js +4 -4
- package/src/main/js/sap/ushell/components/appfinder/EasyAccess.controller.js +7 -7
- package/src/main/js/sap/ushell/components/appfinder/EasyAccessView.js +3 -9
- package/src/main/js/sap/ushell/components/appfinder/GroupListPopover.controller.js +3 -3
- package/src/main/js/sap/ushell/components/appfinder/HierarchyAppsView.js +6 -7
- package/src/main/js/sap/ushell/components/appfinder/HierarchyFolders.controller.js +2 -4
- package/src/main/js/sap/ushell/components/appfinder/HierarchyFoldersView.js +3 -3
- package/src/main/js/sap/ushell/components/appfinder/VisualizationOrganizerHelper.js +9 -5
- package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/applicationIntegration/AppLifeCycle.js +38 -55
- package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +20 -22
- package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +22 -33
- package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +563 -372
- package/src/main/js/sap/ushell/components/applicationIntegration/application/WebGUIStatefulHandler.js +8 -7
- package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +8 -6
- package/src/main/js/sap/ushell/components/applicationIntegration/elements/model.js +9 -7
- package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +6 -5
- package/src/main/js/sap/ushell/components/applicationIntegration/relatedShellElements/RelatedShellElements.js +2 -2
- package/src/main/js/sap/ushell/components/cards/Configuration.controller.js +6 -5
- package/src/main/js/sap/ushell/components/cepsearchresult/app/Component.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/Main.controller.js +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/Component.js +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_da.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_en_US_saprigi.properties +37 -37
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_et.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_fr_CA.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_hr.properties +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_it.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_iw.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ko.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_lv.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ms.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_pl.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_ro.properties +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sh.properties +7 -7
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sk.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sl.properties +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_tr.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_uk.properties +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_vi.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_zh_CN.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/i18n/i18n_en_US_saprigi.properties +9 -9
- package/src/main/js/sap/ushell/components/cepsearchresult/app/i18n/i18n_hi.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/i18n/i18n_sh.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Category.css +4 -0
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Highlighter.js +1 -3
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Paginator.js +1 -3
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Application.js +27 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ar.properties +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_bg.properties +8 -8
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ca.properties +3 -3
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_cs.properties +4 -4
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_cy.properties +5 -5
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_el.properties +7 -7
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_en_US_saprigi.properties +109 -109
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_es.properties +3 -3
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_es_MX.properties +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fi.properties +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fr.properties +4 -4
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_fr_CA.properties +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hi.properties +7 -7
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hr.properties +8 -8
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_hu.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_it.properties +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_iw.properties +3 -3
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ja.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ko.properties +4 -4
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_lv.properties +16 -16
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ms.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_nl.properties +16 -16
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_no.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pt.properties +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_pt_PT.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ro.properties +4 -4
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_ru.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sh.properties +25 -25
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sk.properties +8 -8
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sl.properties +4 -4
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sv.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_th.properties +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_tr.properties +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_uk.properties +5 -5
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_vi.properties +2 -2
- package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +105 -96
- package/src/main/js/sap/ushell/components/container/IframePOSTUtils.js +13 -13
- package/src/main/js/sap/ushell/components/container/resources/resources_en_US_saprigi.properties +6 -6
- package/src/main/js/sap/ushell/components/container/resources/resources_ms.properties +1 -1
- package/src/main/js/sap/ushell/components/container/resources/resources_sh.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/Component.js +54 -105
- package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +108 -142
- package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +16 -11
- package/src/main/js/sap/ushell/components/contentFinder/controller/WidgetGallery.controller.js +9 -7
- package/src/main/js/sap/ushell/components/contentFinder/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/model/formatter.js +6 -6
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources.properties +4 -2
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_US_saprigi.properties +24 -24
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sh.properties +6 -6
- package/src/main/js/sap/ushell/components/contentFinder/view/AppSearch.view.xml +37 -17
- package/src/main/js/sap/ushell/components/contentFinder/view/AppSearchBox.fragment.xml +5 -3
- package/src/main/js/sap/ushell/components/contentFinder/view/ContentFinderDialog.view.xml +9 -4
- package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
- package/src/main/js/sap/ushell/components/factsheet/controls/PictureTileRenderer.js +2 -1
- package/src/main/js/sap/ushell/components/factsheet/controls/PictureViewerRenderer.js +2 -1
- package/src/main/js/sap/ushell/components/homepage/ActionMode.js +23 -19
- package/src/main/js/sap/ushell/components/homepage/Component.js +3 -3
- package/src/main/js/sap/ushell/components/homepage/DashboardContent.controller.js +3 -2
- package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +3 -4
- package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +17 -9
- package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +10 -3
- package/src/main/js/sap/ushell/components/homepage/FLPAnalytics.js +6 -4
- package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/pages/ActionMode.js +5 -5
- package/src/main/js/sap/ushell/components/pages/Component.js +2 -2
- package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +7 -7
- package/src/main/js/sap/ushell/components/pages/StateManager.js +3 -3
- package/src/main/js/sap/ushell/components/pages/controller/ImportDialog.controller.js +9 -12
- package/src/main/js/sap/ushell/components/pages/controller/MyHome.controller.js +2 -2
- package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +70 -15
- package/src/main/js/sap/ushell/components/pages/controller/PagesAndSpaceId.js +2 -2
- package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/pages/view/PageRuntime.view.xml +7 -5
- package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +50 -8
- package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -8
- package/src/main/js/sap/ushell/components/runtimeSwitcher/view/RuntimeSwitcher.view.xml +13 -8
- package/src/main/js/sap/ushell/components/shell/MenuBar/Component.js +6 -4
- package/src/main/js/sap/ushell/components/shell/MenuBar/controller/MenuBar.controller.js +6 -7
- package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +13 -11
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +16 -12
- package/src/main/js/sap/ushell/components/shell/Notifications/Notifications.controller.js +5 -5
- package/src/main/js/sap/ushell/components/shell/PostLoadingHeaderEnhancement/Component.js +14 -14
- package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +7 -7
- package/src/main/js/sap/ushell/components/shell/Search/Component.js +5 -4
- package/src/main/js/sap/ushell/components/shell/Search/ESearch.js +8 -6
- package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +25 -18
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchCEP.controller.js +89 -67
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +5 -4
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +5 -4
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchServiceProvider.js +8 -6
- package/src/main/js/sap/ushell/components/shell/Settings/Component.js +7 -7
- package/src/main/js/sap/ushell/components/shell/Settings/ErrorMessageHelper.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/UserSettings.controller.js +6 -6
- package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +4 -2
- package/src/main/js/sap/ushell/components/shell/Settings/homepage/HomepageEntry.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/homepage/HomepageSetting.view.xml +3 -1
- package/src/main/js/sap/ushell/components/shell/Settings/search/SearchEntry.js +95 -96
- package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountEntry.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountSelector.controller.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountSetting.fragment.xml +7 -1
- package/src/main/js/sap/ushell/components/shell/Settings/userActivities/UserActivitiesSetting.controller.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/userActivities/UserActivitiesSetting.view.xml +7 -1
- package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/UserDefaultsForm.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/controller/UserDefaultsSetting.controller.js +3 -3
- package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/LanguageRegionSelector.controller.js +27 -31
- package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/LanguageRegionSelector.view.xml +9 -2
- package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +6 -6
- package/src/main/js/sap/ushell/components/shell/UserActionsMenu/UserActionsMenu.controller.js +22 -20
- package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +8 -11
- package/src/main/js/sap/ushell/components/tiles/action/Configuration.controller.js +5 -4
- package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTile.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/DynamicTile.controller.js +5 -3
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.controller.js +16 -31
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.view.xml +1 -1
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.controller.js +16 -33
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.view.xml +1 -1
- package/src/main/js/sap/ushell/components/tiles/generic.js +2 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorDualComparison/DualComparison.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorDualContribution/DualContribution.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/cache.js +12 -10
- package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/oData4Analytics.js +49 -42
- package/src/main/js/sap/ushell/components/tiles/indicatorcontribution/ContributionTile.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorcontribution/ContributionTile.view.js +16 -18
- package/src/main/js/sap/ushell/components/tiles/utils.js +19 -15
- package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +31 -29
- package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +18 -219
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +62 -137
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.layout.js +4 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageHost.js +185 -68
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +3 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +3 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +3 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnRenderer.js +2 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +4 -7
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRenderer.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +7 -5
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRowRenderer.js +5 -5
- package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources.properties +4 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_saprigi.properties +66 -66
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hr.properties +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sh.properties +29 -29
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_th.properties +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/view/WorkPageBuilder.view.xml +8 -0
- package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +2 -2
- package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +4 -7
- package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/workPageRuntime/view/WorkPageRuntime.view.xml +15 -8
- package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
- package/src/main/js/sap/ushell/iconfonts.js +1 -1
- package/src/main/js/sap/ushell/library.js +28 -26
- package/src/main/js/sap/ushell/navigationMode.js +4 -6
- package/src/main/js/sap/ushell/performance/FesrEnhancer.js +97 -18
- package/src/main/js/sap/ushell/performance/ShellAnalytics.js +7 -7
- package/src/main/js/sap/ushell/performance/StatisticalRecord.js +78 -23
- package/src/main/js/sap/ushell/plugins/BaseRTAPlugin.js +4 -3
- package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
- package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_en_US_saprigi.properties +8 -8
- package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_sh.properties +2 -2
- package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_th.properties +2 -2
- package/src/main/js/sap/ushell/plugins/rta-personalize/Component.js +10 -6
- package/src/main/js/sap/ushell/plugins/rta-personalize/i18n/i18n_en_US_saprigi.properties +12 -12
- package/src/main/js/sap/ushell/plugins/rta-personalize/i18n/i18n_sh.properties +4 -4
- package/src/main/js/sap/ushell/renderer/AccessKeysHandler.js +15 -13
- package/src/main/js/sap/ushell/renderer/LogonFrameProvider.js +7 -7
- package/src/main/js/sap/ushell/renderer/Renderer.js +163 -221
- package/src/main/js/sap/ushell/renderer/Shell.controller.js +133 -163
- package/src/main/js/sap/ushell/renderer/Shell.view.js +13 -14
- package/src/main/js/sap/ushell/renderer/allMyApps/AllMyApps.controller.js +65 -14
- package/src/main/js/sap/ushell/renderer/allMyApps/AllMyAppsManager.js +40 -17
- package/src/main/js/sap/ushell/renderer/resources/resources.properties +9 -3
- package/src/main/js/sap/ushell/renderer/resources/resources_ar.properties +14 -17
- package/src/main/js/sap/ushell/renderer/resources/resources_bg.properties +48 -51
- package/src/main/js/sap/ushell/renderer/resources/resources_ca.properties +13 -16
- package/src/main/js/sap/ushell/renderer/resources/resources_cs.properties +19 -22
- package/src/main/js/sap/ushell/renderer/resources/resources_cy.properties +13 -16
- package/src/main/js/sap/ushell/renderer/resources/resources_da.properties +21 -24
- package/src/main/js/sap/ushell/renderer/resources/resources_de.properties +19 -22
- package/src/main/js/sap/ushell/renderer/resources/resources_el.properties +23 -26
- package/src/main/js/sap/ushell/renderer/resources/resources_en.properties +18 -21
- package/src/main/js/sap/ushell/renderer/resources/resources_en_GB.properties +19 -22
- package/src/main/js/sap/ushell/renderer/resources/resources_en_US_saprigi.properties +991 -994
- package/src/main/js/sap/ushell/renderer/resources/resources_es.properties +16 -19
- package/src/main/js/sap/ushell/renderer/resources/resources_es_MX.properties +10 -13
- package/src/main/js/sap/ushell/renderer/resources/resources_et.properties +18 -21
- package/src/main/js/sap/ushell/renderer/resources/resources_fi.properties +21 -24
- package/src/main/js/sap/ushell/renderer/resources/resources_fr.properties +24 -27
- package/src/main/js/sap/ushell/renderer/resources/resources_fr_CA.properties +25 -28
- package/src/main/js/sap/ushell/renderer/resources/resources_hi.properties +32 -35
- package/src/main/js/sap/ushell/renderer/resources/resources_hr.properties +36 -39
- package/src/main/js/sap/ushell/renderer/resources/resources_hu.properties +15 -18
- package/src/main/js/sap/ushell/renderer/resources/resources_id.properties +15 -18
- package/src/main/js/sap/ushell/renderer/resources/resources_it.properties +14 -17
- package/src/main/js/sap/ushell/renderer/resources/resources_iw.properties +15 -18
- package/src/main/js/sap/ushell/renderer/resources/resources_ja.properties +23 -26
- package/src/main/js/sap/ushell/renderer/resources/resources_kk.properties +28 -31
- package/src/main/js/sap/ushell/renderer/resources/resources_ko.properties +21 -24
- package/src/main/js/sap/ushell/renderer/resources/resources_lt.properties +13 -16
- package/src/main/js/sap/ushell/renderer/resources/resources_lv.properties +17 -20
- package/src/main/js/sap/ushell/renderer/resources/resources_ms.properties +14 -17
- package/src/main/js/sap/ushell/renderer/resources/resources_nl.properties +14 -17
- package/src/main/js/sap/ushell/renderer/resources/resources_no.properties +32 -35
- package/src/main/js/sap/ushell/renderer/resources/resources_pl.properties +21 -24
- package/src/main/js/sap/ushell/renderer/resources/resources_pt.properties +13 -16
- package/src/main/js/sap/ushell/renderer/resources/resources_pt_PT.properties +7 -10
- package/src/main/js/sap/ushell/renderer/resources/resources_ro.properties +10 -13
- package/src/main/js/sap/ushell/renderer/resources/resources_ru.properties +22 -25
- package/src/main/js/sap/ushell/renderer/resources/resources_sh.properties +276 -279
- package/src/main/js/sap/ushell/renderer/resources/resources_sk.properties +25 -28
- package/src/main/js/sap/ushell/renderer/resources/resources_sl.properties +31 -34
- package/src/main/js/sap/ushell/renderer/resources/resources_sv.properties +15 -18
- package/src/main/js/sap/ushell/renderer/resources/resources_th.properties +22 -25
- package/src/main/js/sap/ushell/renderer/resources/resources_tr.properties +33 -36
- package/src/main/js/sap/ushell/renderer/resources/resources_uk.properties +46 -49
- package/src/main/js/sap/ushell/renderer/resources/resources_vi.properties +14 -17
- package/src/main/js/sap/ushell/renderer/resources/resources_zh_CN.properties +10 -13
- package/src/main/js/sap/ushell/renderer/resources/resources_zh_TW.properties +21 -24
- package/src/main/js/sap/ushell/renderer/search/searchComponent/Component.js +8 -2
- package/src/main/js/sap/ushell/renderer/search/searchComponent/controller/CEPSearchApp.controller.js +20 -13
- package/src/main/js/sap/ushell/renderer/search/searchComponent/controller/SearchApp.controller.js +13 -9
- package/src/main/js/sap/ushell/renderer/search/searchComponent/manifest.json +1 -1
- package/src/main/js/sap/ushell/renderer/search/searchComponent/view/CEPSearchApp.view.js +1 -1
- package/src/main/js/sap/ushell/renderer/search/searchComponent/view/SearchApp.view.js +1 -1
- package/src/main/js/sap/ushell/renderer/search/util.js +5 -7
- package/src/main/js/sap/ushell/renderer/utils.js +6 -6
- package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +14 -11
- package/src/main/js/sap/ushell/renderers/fiori2/RendererExtensions.js +50 -42
- package/src/main/js/sap/ushell/resources.js +3 -3
- package/src/main/js/sap/ushell/services/AllMyApps.js +2 -3
- package/src/main/js/sap/ushell/services/AppConfiguration.js +56 -15
- package/src/main/js/sap/ushell/services/AppLifeCycle.js +14 -29
- package/src/main/js/sap/ushell/services/AppState.js +39 -28
- package/src/main/js/sap/ushell/services/Bookmark.js +18 -45
- package/src/main/js/sap/ushell/services/BookmarkV2.js +118 -120
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +20 -22
- package/src/main/js/sap/ushell/services/CommonDataModel.js +31 -94
- package/src/main/js/sap/ushell/services/Configuration.js +5 -5
- package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +2 -3
- package/src/main/js/sap/ushell/services/Container.js +6 -5
- package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +7 -5
- package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +80 -98
- package/src/main/js/sap/ushell/services/DarkModeSupport.js +6 -6
- package/src/main/js/sap/ushell/services/EndUserFeedback.js +17 -15
- package/src/main/js/sap/ushell/services/Extension/FloatingContainer.js +139 -67
- package/src/main/js/sap/ushell/services/Extension/Footer.js +2 -1
- package/src/main/js/sap/ushell/services/Extension/Header.js +9 -16
- package/src/main/js/sap/ushell/services/Extension/Item.js +12 -8
- package/src/main/js/sap/ushell/services/Extension/SidePane.js +5 -5
- package/src/main/js/sap/ushell/services/Extension/ToolArea.js +5 -5
- package/src/main/js/sap/ushell/services/Extension.js +12 -13
- package/src/main/js/sap/ushell/services/FlpLaunchPage.js +1791 -0
- package/src/main/js/sap/ushell/services/LaunchPage.js +653 -1715
- package/src/main/js/sap/ushell/services/Menu.js +3 -3
- package/src/main/js/sap/ushell/services/Message.js +16 -9
- package/src/main/js/sap/ushell/services/MessageBroker.js +6 -6
- package/src/main/js/sap/ushell/services/NavTargetResolution.js +25 -28
- package/src/main/js/sap/ushell/services/Navigation/utils.js +1 -1
- package/src/main/js/sap/ushell/services/Navigation.js +17 -16
- package/src/main/js/sap/ushell/services/NavigationDataProvider.js +2 -2
- package/src/main/js/sap/ushell/services/Notifications.js +55 -38
- package/src/main/js/sap/ushell/services/NotificationsV2.js +122 -49
- package/src/main/js/sap/ushell/services/PageBuilding.js +3 -4
- package/src/main/js/sap/ushell/services/PagePersistence.js +3 -3
- package/src/main/js/sap/ushell/services/PageReferencing.js +2 -2
- package/src/main/js/sap/ushell/services/Pages.js +295 -320
- package/src/main/js/sap/ushell/services/Personalization.js +40 -37
- package/src/main/js/sap/ushell/services/PersonalizationV2/ContextContainer.js +27 -24
- package/src/main/js/sap/ushell/services/PersonalizationV2/Personalizer.js +7 -4
- package/src/main/js/sap/ushell/services/PersonalizationV2/TransientPersonalizer.js +2 -0
- package/src/main/js/sap/ushell/services/PersonalizationV2/Variant.js +7 -4
- package/src/main/js/sap/ushell/services/PersonalizationV2/VariantSet.js +10 -11
- package/src/main/js/sap/ushell/services/PersonalizationV2/VariantSetAdapter.js +10 -10
- package/src/main/js/sap/ushell/services/PersonalizationV2/WindowAdapter.js +2 -2
- package/src/main/js/sap/ushell/services/PersonalizationV2/WindowAdapterContainer.js +5 -5
- package/src/main/js/sap/ushell/services/PersonalizationV2/constants.js +1 -1
- package/src/main/js/sap/ushell/services/PersonalizationV2.js +10 -9
- package/src/main/js/sap/ushell/services/PluginManager.js +77 -75
- package/src/main/js/sap/ushell/services/ReferenceResolver.js +36 -38
- package/src/main/js/sap/ushell/services/Search.js +4 -4
- package/src/main/js/sap/ushell/services/SearchCEP.js +2 -3
- package/src/main/js/sap/ushell/services/SearchableContent.js +93 -80
- package/src/main/js/sap/ushell/services/ShellNavigation.js +160 -450
- package/src/main/js/sap/ushell/services/ShellNavigationHashChanger.js +27 -26
- package/src/main/js/sap/ushell/services/ShellNavigationInternal.js +532 -0
- package/src/main/js/sap/ushell/services/SmartNavigation.js +23 -23
- package/src/main/js/sap/ushell/services/SpaceContent.js +4 -4
- package/src/main/js/sap/ushell/services/SupportTicket.js +4 -5
- package/src/main/js/sap/ushell/services/UITracer.js +2 -2
- package/src/main/js/sap/ushell/services/URLParsing.js +15 -14
- package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
- package/src/main/js/sap/ushell/services/URLTemplate.js +2 -2
- package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +47 -10
- package/src/main/js/sap/ushell/services/UsageAnalytics.js +25 -9
- package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +11 -11
- package/src/main/js/sap/ushell/services/UserDefaultParameters.js +34 -41
- package/src/main/js/sap/ushell/services/UserInfo.js +29 -53
- package/src/main/js/sap/ushell/services/UserRecents/RecentActivity.js +480 -0
- package/src/main/js/sap/ushell/services/UserRecents/RecentAppsUsage.js +207 -0
- package/src/main/js/sap/ushell/services/UserRecents/RecentsList.js +119 -0
- package/src/main/js/sap/ushell/services/{_UserRecents → UserRecents}/UserRecentsBase.js +41 -9
- package/src/main/js/sap/ushell/services/UserRecents.js +185 -188
- package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +42 -41
- package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +27 -26
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Formatter.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundIndex.js +6 -6
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundProvider.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/ParameterMapping.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/PrelaunchOperations.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Search.js +7 -9
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/StagedLogger.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/SystemContext.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Utils.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/VirtualInbounds.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/XAppStateProcessing.js +2 -2
- package/src/main/js/sap/ushell/services/_CommonDataModel/PersonalizationProcessor.js +5 -7
- package/src/main/js/sap/ushell/services/_CommonDataModel/SiteConverter.js +2 -2
- package/src/main/js/sap/ushell/services/_CommonDataModel/vizTypeDefaults/VizTypeDefaults.js +105 -0
- package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
- package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +1 -1
- package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +1 -1
- package/src/main/js/sap/ushell/services/_MessageBroker/MessageBrokerEngine.js +8 -8
- package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/ContextContainer.js +28 -29
- package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainer.js +10 -10
- package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainerVariant.js +7 -5
- package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainerVariantSet.js +9 -6
- package/src/main/js/sap/ushell/services/_Personalization/Personalizer.js +9 -18
- package/src/main/js/sap/ushell/services/_Personalization/TransientPersonalizer.js +4 -11
- package/src/main/js/sap/ushell/services/_Personalization/Variant.js +11 -9
- package/src/main/js/sap/ushell/services/_Personalization/VariantSet.js +6 -5
- package/src/main/js/sap/ushell/services/_Personalization/utils.js +1 -2
- package/src/main/js/sap/ushell/services/_PluginManager/Extensions.js +1 -1
- package/src/main/js/sap/ushell/services/_PluginManager/HeaderExtensions.js +1 -1
- package/src/main/js/sap/ushell/services/_PluginManager/MenuExtensions.js +1 -1
- package/src/main/js/sap/ushell/services/_Ui5ComponentLoader/utils.js +8 -22
- package/src/main/js/sap/ushell/services/appstate/Sequentializer.js +1 -1
- package/src/main/js/sap/ushell/services/appstate/SequentializingAdapter.js +3 -5
- package/src/main/js/sap/ushell/services/appstate/WindowAdapter.js +13 -12
- package/src/main/js/sap/ushell/services/personalization/VariantSetAdapter.js +2 -2
- package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +26 -22
- package/src/main/js/sap/ushell/themes/base/Catalog.less +12 -1
- package/src/main/js/sap/ushell/themes/base/ContentFinder.less +1 -0
- package/src/main/js/sap/ushell/themes/base/SearchCEP.less +9 -0
- package/src/main/js/sap/ushell/themes/base/img/SAPLogo.svg +1 -1
- package/src/main/js/sap/ushell/themes/base/img/launchicons/114_iPhone-Retina_Web_Clip.png +0 -0
- package/src/main/js/sap/ushell/themes/base/img/launchicons/144_iPad_Retina_Web_Clip.png +0 -0
- package/src/main/js/sap/ushell/themes/base/img/launchicons/57_iPhone_Desktop_Launch.png +0 -0
- package/src/main/js/sap/ushell/themes/base/img/launchicons/72_iPad_Desktop_Launch.png +0 -0
- package/src/main/js/sap/ushell/themes/base/img/launchpad_favicon.ico +0 -0
- package/src/main/js/sap/ushell/themes/sap_horizon/ShellHeader.less +0 -1
- package/src/main/js/sap/ushell/themes/sap_horizon_dark/ShellHeader.less +0 -1
- package/src/main/js/sap/ushell/themes/sap_horizon_hcb/ShellHeader.less +0 -1
- package/src/main/js/sap/ushell/themes/sap_horizon_hcw/ShellHeader.less +0 -1
- package/src/main/js/sap/ushell/ui/AppContainer.js +17 -22
- package/src/main/js/sap/ushell/ui/AppContainerRenderer.js +4 -6
- package/src/main/js/sap/ushell/ui/ContentNodeSelector.js +8 -9
- package/src/main/js/sap/ushell/ui/ContentNodeTreeItem.js +2 -3
- package/src/main/js/sap/ushell/ui/QuickAccess.js +90 -81
- package/src/main/js/sap/ushell/ui/ShellHeader.js +26 -25
- package/src/main/js/sap/ushell/ui/ShellHeaderRenderer.js +2 -1
- package/src/main/js/sap/ushell/ui/appfinder/AppBox.js +20 -7
- package/src/main/js/sap/ushell/ui/appfinder/AppBoxRenderer.js +9 -0
- package/src/main/js/sap/ushell/ui/appfinder/PinButton.js +7 -6
- package/src/main/js/sap/ushell/ui/appfinder/PinButtonRenderer.js +2 -1
- package/src/main/js/sap/ushell/ui/cards/FrequentActivitiesExtension.js +4 -4
- package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +5 -5
- package/src/main/js/sap/ushell/ui/footerbar/AboutButton.js +8 -13
- package/src/main/js/sap/ushell/ui/footerbar/AddBookmarkButton.js +10 -12
- package/src/main/js/sap/ushell/ui/footerbar/ContactSupportButton.js +22 -229
- package/src/main/js/sap/ushell/ui/footerbar/ContactSupportDialog.controller.js +116 -0
- package/src/main/js/sap/ushell/ui/footerbar/ContactSupportDialog.fragment.xml +85 -0
- package/src/main/js/sap/ushell/ui/footerbar/JamDiscussButton.js +8 -12
- package/src/main/js/sap/ushell/ui/footerbar/JamShareButton.js +9 -18
- package/src/main/js/sap/ushell/ui/footerbar/LogoutButton.js +8 -12
- package/src/main/js/sap/ushell/ui/footerbar/SaveAsTile.controller.js +4 -1
- package/src/main/js/sap/ushell/ui/footerbar/SaveAsTile.view.js +4 -1
- package/src/main/js/sap/ushell/ui/footerbar/SendAsEmailButton.js +6 -13
- package/src/main/js/sap/ushell/ui/launchpad/AccessibilityCustomData.js +4 -5
- package/src/main/js/sap/ushell/ui/launchpad/ActionItem.js +5 -4
- package/src/main/js/sap/ushell/ui/launchpad/AnchorItem.js +8 -11
- package/src/main/js/sap/ushell/ui/launchpad/AnchorItemRenderer.js +6 -2
- package/src/main/js/sap/ushell/ui/launchpad/AnchorNavigationBar.js +22 -19
- package/src/main/js/sap/ushell/ui/launchpad/AnchorNavigationBarRenderer.js +6 -1
- package/src/main/js/sap/ushell/ui/launchpad/CatalogEntryContainer.js +10 -6
- package/src/main/js/sap/ushell/ui/launchpad/CatalogsContainer.js +9 -5
- package/src/main/js/sap/ushell/ui/launchpad/DashboardGroupsContainer.js +9 -5
- package/src/main/js/sap/ushell/ui/launchpad/DashboardGroupsContainerRenderer.js +6 -1
- package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/GroupHeaderActions.js +7 -9
- package/src/main/js/sap/ushell/ui/launchpad/GroupListItem.js +59 -67
- package/src/main/js/sap/ushell/ui/launchpad/GroupListItemRenderer.js +15 -15
- package/src/main/js/sap/ushell/ui/launchpad/LinkTileWrapper.js +4 -4
- package/src/main/js/sap/ushell/ui/launchpad/LinkTileWrapperRenderer.js +2 -1
- package/src/main/js/sap/ushell/ui/launchpad/LoadingDialog.js +7 -11
- package/src/main/js/sap/ushell/ui/launchpad/LoadingDialogRenderer.js +2 -2
- package/src/main/js/sap/ushell/ui/launchpad/Page.js +8 -12
- package/src/main/js/sap/ushell/ui/launchpad/PageRenderer.js +2 -1
- package/src/main/js/sap/ushell/ui/launchpad/PlusTile.js +5 -11
- package/src/main/js/sap/ushell/ui/launchpad/PlusTileRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/Section.js +14 -26
- package/src/main/js/sap/ushell/ui/launchpad/SectionRenderer.js +3 -2
- package/src/main/js/sap/ushell/ui/launchpad/Tile.js +10 -13
- package/src/main/js/sap/ushell/ui/launchpad/TileContainer.js +10 -11
- package/src/main/js/sap/ushell/ui/launchpad/TileContainerRenderer.js +3 -2
- package/src/main/js/sap/ushell/ui/launchpad/TileRenderer.js +2 -1
- package/src/main/js/sap/ushell/ui/launchpad/TileState.js +8 -81
- package/src/main/js/sap/ushell/ui/launchpad/TileStateInternal.js +119 -0
- package/src/main/js/sap/ushell/ui/launchpad/TileStateInternalRenderer.js +72 -0
- package/src/main/js/sap/ushell/ui/launchpad/TileStateRenderer.js +4 -65
- package/src/main/js/sap/ushell/ui/launchpad/ViewPortState.js +6 -7
- package/src/main/js/sap/ushell/{services/_VisualizationInstantiation → ui/launchpad}/VizInstance.js +86 -78
- package/src/main/js/sap/ushell/{services/_VisualizationInstantiation → ui/launchpad}/VizInstanceAbap.js +6 -5
- package/src/main/js/sap/ushell/ui/launchpad/VizInstanceBase.js +40 -0
- package/src/main/js/sap/ushell/{services/_VisualizationInstantiation → ui/launchpad}/VizInstanceCdm.js +13 -11
- package/src/main/js/sap/ushell/{services/_VisualizationInstantiation → ui/launchpad}/VizInstanceLaunchPage.js +10 -7
- package/src/main/js/sap/ushell/{services/_VisualizationInstantiation → ui/launchpad}/VizInstanceLink.js +9 -61
- package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +8 -6
- package/src/main/js/sap/ushell/ui/launchpad/section/CompactAreaRenderer.js +2 -1
- package/src/main/js/sap/ushell/ui/shell/ContentRenderer.js +3 -3
- package/src/main/js/sap/ushell/ui/shell/FloatingContainer.js +10 -8
- package/src/main/js/sap/ushell/ui/shell/RightFloatingContainer.js +3 -3
- package/src/main/js/sap/ushell/ui/shell/ShellAppTitle.js +32 -34
- package/src/main/js/sap/ushell/ui/shell/ShellFloatingAction.js +9 -6
- package/src/main/js/sap/ushell/ui/shell/ShellFloatingActionRenderer.js +1 -3
- package/src/main/js/sap/ushell/ui/shell/ShellHeadItem.js +4 -7
- package/src/main/js/sap/ushell/ui/shell/ShellNavigationMenu.js +8 -8
- package/src/main/js/sap/ushell/ui/shell/SysInfoBar.js +3 -8
- package/src/main/js/sap/ushell/ui/shell/ToolArea.js +2 -2
- package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -1
- package/src/main/js/sap/ushell/ui/tile/DynamicTile.js +6 -8
- package/src/main/js/sap/ushell/ui/tile/DynamicTileRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/tile/ImageTile.js +4 -5
- package/src/main/js/sap/ushell/ui/tile/ImageTileRenderer.js +5 -6
- package/src/main/js/sap/ushell/ui/tile/StaticTile.js +4 -5
- package/src/main/js/sap/ushell/ui/tile/StaticTileRenderer.js +5 -6
- package/src/main/js/sap/ushell/ui/tile/TileBase.js +5 -8
- package/src/main/js/sap/ushell/ui/tile/TileBaseRenderer.js +3 -3
- package/src/main/js/sap/ushell/ui/utils.js +2 -4
- package/src/main/js/sap/ushell/ui5service/ShellUIService.js +8 -9
- package/src/main/js/sap/ushell/ui5service/UserStatus.js +11 -12
- package/src/main/js/sap/ushell/ui5service/_ShellUIService/shelluiservice.class.factory.js +6 -8
- package/src/main/js/sap/ushell/utils/DynamicTileRequest.js +5 -3
- package/src/main/js/sap/ushell/utils/HttpClient.js +6 -7
- package/src/main/js/sap/ushell/utils/RestrictedJSONModel.js +1 -1
- package/src/main/js/sap/ushell/utils/UrlParsing.js +5 -14
- package/src/main/js/sap/ushell/utils/UrlShortening.js +4 -4
- package/src/main/js/sap/ushell/utils/chipsUtils.js +10 -10
- package/src/main/js/sap/ushell/utils/workpage/WorkPageService.js +234 -0
- package/src/main/js/sap/ushell/utils/workpage/WorkPageVizInstantiation.js +141 -0
- package/src/main/js/sap/ushell/utils.js +17 -13
- package/src/test/js/sap/ushell/bootstrap/sandbox.js +1 -1
- package/ui5.yaml +6 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_cnr.properties +0 -10
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_mk.properties +0 -10
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_sr.properties +0 -10
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/i18n/i18n_cnr.properties +0 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/i18n/i18n_mk.properties +0 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/i18n/i18n_sr.properties +0 -4
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_cnr.properties +0 -41
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_mk.properties +0 -41
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/i18n/i18n_sr.properties +0 -41
- package/src/main/js/sap/ushell/components/cepsearchresult/app/i18n/i18n_cnr.properties +0 -19
- package/src/main/js/sap/ushell/components/cepsearchresult/app/i18n/i18n_mk.properties +0 -19
- package/src/main/js/sap/ushell/components/cepsearchresult/app/i18n/i18n_sr.properties +0 -19
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_cnr.properties +0 -117
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_mk.properties +0 -117
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sr.properties +0 -117
- package/src/main/js/sap/ushell/components/container/resources/resources_cnr.properties +0 -10
- package/src/main/js/sap/ushell/components/container/resources/resources_mk.properties +0 -10
- package/src/main/js/sap/ushell/components/container/resources/resources_sr.properties +0 -10
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cnr.properties +0 -29
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_mk.properties +0 -29
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sr.properties +0 -29
- package/src/main/js/sap/ushell/components/contentFinder/view/AppSearchPaginated.view.xml +0 -137
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cnr.properties +0 -78
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_mk.properties +0 -78
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sr.properties +0 -78
- package/src/main/js/sap/ushell/components/workPageRuntime/services/NavigationResolver.js +0 -115
- package/src/main/js/sap/ushell/components/workPageRuntime/services/WorkPage.js +0 -130
- package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_cnr.properties +0 -13
- package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_mk.properties +0 -13
- package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_sr.properties +0 -13
- package/src/main/js/sap/ushell/plugins/rta-personalize/i18n/i18n_cnr.properties +0 -24
- package/src/main/js/sap/ushell/plugins/rta-personalize/i18n/i18n_mk.properties +0 -24
- package/src/main/js/sap/ushell/plugins/rta-personalize/i18n/i18n_sr.properties +0 -24
- package/src/main/js/sap/ushell/renderer/allMyApps/AllMyAppsKeyboardHandler.js +0 -108
- package/src/main/js/sap/ushell/renderer/resources/resources_cnr.properties +0 -996
- package/src/main/js/sap/ushell/renderer/resources/resources_mk.properties +0 -996
- package/src/main/js/sap/ushell/renderer/resources/resources_sr.properties +0 -996
- package/src/main/js/sap/ushell/renderers/fiori2/allMyApps/AllMyAppsKeyboardHandler.js +0 -13
- package/src/main/js/sap/ushell/services/_UserRecents/RecentActivity.js +0 -481
- package/src/main/js/sap/ushell/services/_UserRecents/RecentAppsUsage.js +0 -207
- package/src/main/js/sap/ushell/services/_UserRecents/RecentsList.js +0 -92
- package/src/main/js/sap/ushell/themes/base/img/launchpadDefaultIcon.jpg +0 -0
- /package/src/main/js/sap/ushell/{services/_VisualizationInstantiation → ui/launchpad}/VizInstanceRenderer.js +0 -0
|
@@ -3,12 +3,12 @@ CATEGORIES.All.ShortTitle=V\u0161etky
|
|
|
3
3
|
CATEGORIES.All.Card.Title=V\u00FDsledky h\u013Eadania
|
|
4
4
|
CATEGORIES.All.Card.SubTitle=
|
|
5
5
|
CATEGORIES.All.LoadingData=Prebieha h\u013Eadanie
|
|
6
|
-
CATEGORIES.All.NoData=
|
|
6
|
+
CATEGORIES.All.NoData=Nen\u00E1jden\u00E9 \u017Eiadne objekty
|
|
7
7
|
CATEGORIES.App.Title=Aplik\u00E1cie
|
|
8
8
|
CATEGORIES.App.ShortTitle=Aplik\u00E1cie
|
|
9
9
|
CATEGORIES.App.Card.Title=Aplik\u00E1cie
|
|
10
10
|
CATEGORIES.App.Card.SubTitle=
|
|
11
|
-
CATEGORIES.App.LoadingData=Vyh\u013Ead\
|
|
11
|
+
CATEGORIES.App.LoadingData=Vyh\u013Ead\u00E1vanie aplik\u00E1ci\u00ED...
|
|
12
12
|
CATEGORIES.App.NoData=N\u00E1jden\u00E9 \u017Eiadne zodpovedaj\u00FAce aplik\u00E1cie
|
|
13
13
|
CATEGORIES.Content.Title=Obsah
|
|
14
14
|
CATEGORIES.Content.ShortTitle=Obsah
|
|
@@ -67,26 +67,26 @@ CATEGORIES.WorkSpace.Title=Pracovn\u00E9 oblasti
|
|
|
67
67
|
CATEGORIES.WorkSpace.ShortTitle=Prac.oblasti
|
|
68
68
|
CATEGORIES.WorkSpace.Card.Title=Pracovn\u00E9 oblasti
|
|
69
69
|
CATEGORIES.WorkSpace.Card.SubTitle=
|
|
70
|
-
CATEGORIES.WorkSpace.LoadingData=Vyh\u013Ead\u00E1vanie
|
|
70
|
+
CATEGORIES.WorkSpace.LoadingData=Vyh\u013Ead\u00E1vanie prac.oblast\u00ED...
|
|
71
71
|
CATEGORIES.WorkSpace.NoData=Nena\u0161li sa \u017Eiadne zodpovedaj\u00FAce prac.oblasti
|
|
72
72
|
CATEGORIES.Comment.Title=Koment\u00E1re
|
|
73
73
|
CATEGORIES.Comment.ShortTitle=Koment\u00E1re
|
|
74
74
|
CATEGORIES.Comment.Card.Title=Koment\u00E1re
|
|
75
75
|
CATEGORIES.Comment.Card.SubTitle=
|
|
76
|
-
CATEGORIES.Comment.LoadingData=
|
|
76
|
+
CATEGORIES.Comment.LoadingData=H\u013Eadaj\u00FA sa koment\u00E1re...
|
|
77
77
|
CATEGORIES.Comment.NoData=Nena\u0161li sa \u017Eiadne vhodn\u00E9 koment\u00E1re
|
|
78
78
|
CATEGORIES.BusinessRecord.Title=Obchodn\u00E9 z\u00E1znamy
|
|
79
79
|
CATEGORIES.BusinessRecord.ShortTitle=Z\u00E1znamy
|
|
80
80
|
CATEGORIES.BusinessRecord.Card.Title=Obchodn\u00E9 z\u00E1znamy
|
|
81
81
|
CATEGORIES.BusinessRecord.Card.SubTitle=
|
|
82
|
-
CATEGORIES.BusinessRecord.LoadingData=
|
|
82
|
+
CATEGORIES.BusinessRecord.LoadingData=H\u013Eadaj\u00FA sa obchodn\u00E9 z\u00E1znamy...
|
|
83
83
|
CATEGORIES.BusinessRecord.NoData=Nena\u0161li sa \u017Eiadne vhodn\u00E9 obchodn\u00E9 z\u00E1znamy
|
|
84
84
|
|
|
85
85
|
CATEGORIES.Document.Title=Doklady
|
|
86
86
|
CATEGORIES.Document.ShortTitle=Doklady
|
|
87
87
|
CATEGORIES.Document.Card.Title=Doklady
|
|
88
88
|
CATEGORIES.Document.Card.SubTitle=
|
|
89
|
-
CATEGORIES.Document.LoadingData=
|
|
89
|
+
CATEGORIES.Document.LoadingData=H\u013Eadaj\u00FA sa doklady...
|
|
90
90
|
CATEGORIES.Document.NoData=N\u00E1jden\u00E9 \u017Eiadne zodpovedaj\u00FAce doklady
|
|
91
91
|
|
|
92
92
|
CATEGORIES.Video.Title=Vide\u00E1
|
|
@@ -98,8 +98,8 @@ CATEGORIES.Video.NoData=Nena\u0161li sa \u017Eiadne vhodn\u00E9 vide\u00E1
|
|
|
98
98
|
|
|
99
99
|
CATEGORIES.All.ViewAll=Zobrazi\u0165 v\u0161etko
|
|
100
100
|
|
|
101
|
-
FILTERS.Tags.Label=
|
|
102
|
-
FILTERS.Tags.Description=Filter pre
|
|
101
|
+
FILTERS.Tags.Label=Tagy/k\u013E\u00FA\u010Dov\u00E9 slov\u00E1
|
|
102
|
+
FILTERS.Tags.Description=Filter pre tagy a k\u013E\u00FA\u010D.slov\u00E1
|
|
103
103
|
|
|
104
104
|
FILTERS.System.Label=Syst\u00E9m/poskytovate\u013E
|
|
105
105
|
FILTERS.System.Description=Filtrujte v \u0161pec.pripoj.syst.
|
|
@@ -26,7 +26,7 @@ CATEGORIES.People.Title=Ljudje
|
|
|
26
26
|
CATEGORIES.People.ShortTitle=Ljudje
|
|
27
27
|
CATEGORIES.People.Card.Title=Ljudje
|
|
28
28
|
CATEGORIES.People.Card.SubTitle=
|
|
29
|
-
CATEGORIES.People.LoadingData=Iskanje
|
|
29
|
+
CATEGORIES.People.LoadingData=Iskanje ljudi ...
|
|
30
30
|
CATEGORIES.People.NoData=Ujemajo\u010Di se ljudje niso bili najdeni
|
|
31
31
|
CATEGORIES.People.LblEmail=Po\u0161ta
|
|
32
32
|
CATEGORIES.People.LblMobileNr=Mobilni telefon
|
|
@@ -67,7 +67,7 @@ CATEGORIES.WorkSpace.Title=Del.podro\u010Dja
|
|
|
67
67
|
CATEGORIES.WorkSpace.ShortTitle=Del.podro\u010Dja
|
|
68
68
|
CATEGORIES.WorkSpace.Card.Title=Del.podro\u010Dja
|
|
69
69
|
CATEGORIES.WorkSpace.Card.SubTitle=
|
|
70
|
-
CATEGORIES.WorkSpace.LoadingData=Iskanje delovnih
|
|
70
|
+
CATEGORIES.WorkSpace.LoadingData=Iskanje delovnih podro\u010Dij ...
|
|
71
71
|
CATEGORIES.WorkSpace.NoData=Ujemajo\u010Da se delovna podro\u010Dja niso bila najdena
|
|
72
72
|
CATEGORIES.Comment.Title=Komentarji
|
|
73
73
|
CATEGORIES.Comment.ShortTitle=Komentarji
|
|
@@ -86,14 +86,14 @@ CATEGORIES.Document.Title=Dokumenti
|
|
|
86
86
|
CATEGORIES.Document.ShortTitle=Dokumenti
|
|
87
87
|
CATEGORIES.Document.Card.Title=Dokumenti
|
|
88
88
|
CATEGORIES.Document.Card.SubTitle=
|
|
89
|
-
CATEGORIES.Document.LoadingData=Iskanje dokumentov ...
|
|
89
|
+
CATEGORIES.Document.LoadingData=Iskanje dokumentov poteka ...
|
|
90
90
|
CATEGORIES.Document.NoData=Ujemajo\u010Di se dokumenti niso najdeni
|
|
91
91
|
|
|
92
92
|
CATEGORIES.Video.Title=Videoposnetki
|
|
93
93
|
CATEGORIES.Video.ShortTitle=Videoposnetki
|
|
94
94
|
CATEGORIES.Video.Card.Title=Videoposnetki
|
|
95
95
|
CATEGORIES.Video.Card.SubTitle=
|
|
96
|
-
CATEGORIES.Video.LoadingData=Iskanje videoposnetkov ...
|
|
96
|
+
CATEGORIES.Video.LoadingData=Iskanje videoposnetkov poteka ...
|
|
97
97
|
CATEGORIES.Video.NoData=Ujemajo\u010Di se videoposnetki niso najdeni
|
|
98
98
|
|
|
99
99
|
CATEGORIES.All.ViewAll=Prika\u017Ei vse
|
|
@@ -26,7 +26,7 @@ CATEGORIES.People.Title=Personer
|
|
|
26
26
|
CATEGORIES.People.ShortTitle=Personer
|
|
27
27
|
CATEGORIES.People.Card.Title=Personer
|
|
28
28
|
CATEGORIES.People.Card.SubTitle=
|
|
29
|
-
CATEGORIES.People.LoadingData=S\u00F6ker
|
|
29
|
+
CATEGORIES.People.LoadingData=S\u00F6ker personer...
|
|
30
30
|
CATEGORIES.People.NoData=Inga matchande personer hittades
|
|
31
31
|
CATEGORIES.People.LblEmail=E-post
|
|
32
32
|
CATEGORIES.People.LblMobileNr=Mobil
|
|
@@ -101,7 +101,7 @@ CATEGORIES.All.ViewAll=\u0E14\u0E39\u0E17\u0E31\u0E49\u0E07\u0E2B\u0E21\u0E14
|
|
|
101
101
|
FILTERS.Tags.Label=\u0E41\u0E17\u0E47\u0E01/\u0E04\u0E33\u0E2A\u0E33\u0E04\u0E31\u0E0D
|
|
102
102
|
FILTERS.Tags.Description=\u0E1F\u0E34\u0E25\u0E40\u0E15\u0E2D\u0E23\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E41\u0E17\u0E47\u0E01\u0E41\u0E25\u0E30\u0E04\u0E33\u0E2A\u0E33\u0E04\u0E31\u0E0D
|
|
103
103
|
|
|
104
|
-
FILTERS.System.Label=\u0E23\u0E30\u0E1A\u0E1A/\
|
|
104
|
+
FILTERS.System.Label=\u0E23\u0E30\u0E1A\u0E1A/\u0E1C\u0E39\u0E49\u0E43\u0E2B\u0E49\u0E1A\u0E23\u0E34\u0E01\u0E32\u0E23
|
|
105
105
|
FILTERS.System.Description=\u0E1F\u0E34\u0E25\u0E40\u0E15\u0E2D\u0E23\u0E4C\u0E43\u0E19\u0E23\u0E30\u0E1A\u0E1A\u0E17\u0E35\u0E48\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E40\u0E09\u0E1E\u0E32\u0E30
|
|
106
106
|
|
|
107
107
|
FILTERS.Modified.Label=\u0E1B\u0E23\u0E31\u0E1A\u0E40\u0E1B\u0E25\u0E35\u0E48\u0E22\u0E19\u0E41\u0E25\u0E49\u0E27
|
|
@@ -3,7 +3,7 @@ CATEGORIES.All.ShortTitle=T\u00FCm\u00FC
|
|
|
3
3
|
CATEGORIES.All.Card.Title=Arama sonu\u00E7lar\u0131
|
|
4
4
|
CATEGORIES.All.Card.SubTitle=
|
|
5
5
|
CATEGORIES.All.LoadingData=Aram devam ediyor
|
|
6
|
-
CATEGORIES.All.NoData=
|
|
6
|
+
CATEGORIES.All.NoData=E\u015Fle\u015Fme bulunamad\u0131
|
|
7
7
|
CATEGORIES.App.Title=Uygulamalar
|
|
8
8
|
CATEGORIES.App.ShortTitle=Uygulamalar
|
|
9
9
|
CATEGORIES.App.Card.Title=Uygulamalar
|
|
@@ -79,7 +79,7 @@ CATEGORIES.BusinessRecord.Title=\u0130\u015F kay\u0131tlar\u0131
|
|
|
79
79
|
CATEGORIES.BusinessRecord.ShortTitle=Kay\u0131tlar
|
|
80
80
|
CATEGORIES.BusinessRecord.Card.Title=\u0130\u015F kay\u0131tlar\u0131
|
|
81
81
|
CATEGORIES.BusinessRecord.Card.SubTitle=
|
|
82
|
-
CATEGORIES.BusinessRecord.LoadingData=\u0130\u015F kay\
|
|
82
|
+
CATEGORIES.BusinessRecord.LoadingData=\u0130\u015F kay\u0131tllar\u0131 aran\u0131yor...
|
|
83
83
|
CATEGORIES.BusinessRecord.NoData=E\u015Fle\u015Fen i\u015F kayd\u0131 bulunamad\u0131
|
|
84
84
|
|
|
85
85
|
CATEGORIES.Document.Title=Belgeler
|
|
@@ -3,7 +3,7 @@ CATEGORIES.All.ShortTitle=\u0412\u0441\u0435
|
|
|
3
3
|
CATEGORIES.All.Card.Title=\u0420\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u0438 \u043F\u043E\u0448\u0443\u043A\u0443
|
|
4
4
|
CATEGORIES.All.Card.SubTitle=
|
|
5
5
|
CATEGORIES.All.LoadingData=\u041F\u043E\u0448\u0443\u043A
|
|
6
|
-
CATEGORIES.All.NoData=\u0417\u0431\u0456\u0433\
|
|
6
|
+
CATEGORIES.All.NoData=\u0417\u0431\u0456\u0433\u0438 \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E
|
|
7
7
|
CATEGORIES.App.Title=\u0417\u0430\u0441\u0442\u043E\u0441\u0443\u043D\u043A\u0438
|
|
8
8
|
CATEGORIES.App.ShortTitle=\u0417\u0430\u0441\u0442\u043E\u0441\u0443\u043D\u043A\u0438
|
|
9
9
|
CATEGORIES.App.Card.Title=\u0417\u0430\u0441\u0442\u043E\u0441\u0443\u043D\u043A\u0438
|
|
@@ -26,7 +26,7 @@ CATEGORIES.People.Title=\u041E\u0441\u043E\u0431\u0438
|
|
|
26
26
|
CATEGORIES.People.ShortTitle=\u041E\u0441\u043E\u0431\u0438
|
|
27
27
|
CATEGORIES.People.Card.Title=\u041E\u0441\u043E\u0431\u0438
|
|
28
28
|
CATEGORIES.People.Card.SubTitle=
|
|
29
|
-
CATEGORIES.People.LoadingData=\u041F\u043E\u0448\u0443\u043A \
|
|
29
|
+
CATEGORIES.People.LoadingData=\u041F\u043E\u0448\u0443\u043A \u043E\u0441\u0456\u0431...
|
|
30
30
|
CATEGORIES.People.NoData=\u0412\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u043D\u0456 \u043E\u0441\u043E\u0431\u0438 \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u0456
|
|
31
31
|
CATEGORIES.People.LblEmail=\u041F\u043E\u0448\u0442\u0430
|
|
32
32
|
CATEGORIES.People.LblMobileNr=\u041C\u043E\u0431\u0456\u043B\u044C\u043D\u0438\u0439 \u0442\u0435\u043B\u0435\u0444\u043E\u043D
|
|
@@ -64,7 +64,7 @@ CATEGORIES.WorkPage.Card.SubTitle=
|
|
|
64
64
|
CATEGORIES.WorkPage.LoadingData=\u041F\u043E\u0448\u0443\u043A \u0440\u043E\u0431\u043E\u0447\u0438\u0445 \u0441\u0442\u043E\u0440\u0456\u043D\u043E\u043A...
|
|
65
65
|
CATEGORIES.WorkPage.NoData=\u0412\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u043D\u0456 \u0440\u043E\u0431\u043E\u0447\u0456 \u0441\u0442\u043E\u0440\u0456\u043D\u043A\u0438 \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E
|
|
66
66
|
CATEGORIES.WorkSpace.Title=\u0420\u043E\u0431\u043E\u0447\u0456 \u043E\u0431\u043B\u0430\u0441\u0442\u0456
|
|
67
|
-
CATEGORIES.WorkSpace.ShortTitle=\u0420\u043E\u0431
|
|
67
|
+
CATEGORIES.WorkSpace.ShortTitle=\u0420\u043E\u0431.\u043E\u0431\u043B\u0430\u0441\u0442\u0456
|
|
68
68
|
CATEGORIES.WorkSpace.Card.Title=\u0420\u043E\u0431\u043E\u0447\u0456 \u043E\u0431\u043B\u0430\u0441\u0442\u0456
|
|
69
69
|
CATEGORIES.WorkSpace.Card.SubTitle=
|
|
70
70
|
CATEGORIES.WorkSpace.LoadingData=\u041F\u043E\u0448\u0443\u043A \u0440\u043E\u0431\u043E\u0447\u0438\u0445 \u043E\u0431\u043B\u0430\u0441\u0442\u0435\u0439...
|
|
@@ -99,10 +99,10 @@ CATEGORIES.Video.NoData=\u0412\u0456\u0434\u043F\u043E\u0432\u0456\u0434\u043D\u
|
|
|
99
99
|
CATEGORIES.All.ViewAll=\u041F\u0435\u0440\u0435\u0433\u043B\u044F\u043D\u0443\u0442\u0438 \u0432\u0441\u0435
|
|
100
100
|
|
|
101
101
|
FILTERS.Tags.Label=\u0422\u0435\u0433\u0438/\u043A\u043B\u044E\u0447\u043E\u0432\u0456 \u0441\u043B\u043E\u0432\u0430
|
|
102
|
-
FILTERS.Tags.Description=\u0424\u0456\u043B\u044C\u0442\u0440 \u0434\u043B\u044F \u0442\u0435\u0433\u0456\u0432 \
|
|
102
|
+
FILTERS.Tags.Description=\u0424\u0456\u043B\u044C\u0442\u0440 \u0434\u043B\u044F \u0442\u0435\u0433\u0456\u0432 \u0442\u0430 \u043A\u043B\u044E\u0447.\u0441\u043B\u0456\u0432
|
|
103
103
|
|
|
104
104
|
FILTERS.System.Label=\u0421\u0438\u0441\u0442\u0435\u043C\u0430/\u043F\u0440\u043E\u0432\u0430\u0439\u0434\u0435\u0440
|
|
105
|
-
FILTERS.System.Description=\u0424\u0456\u043B\u044C\u0442\u0440 \u0443 \u043F\u0435\
|
|
105
|
+
FILTERS.System.Description=\u0424\u0456\u043B\u044C\u0442\u0440 \u0443 \u0441\u043F\u0435\u0446.\u0437'\u0454\u0434\u043D.\u0441\u0438\u0441\u0442.
|
|
106
106
|
|
|
107
107
|
FILTERS.Modified.Label=\u041C\u043E\u0434\u0438\u0444\u0456\u043A\u043E\u0432\u0430\u043D\u043E
|
|
108
108
|
FILTERS.Modified.Description=\u0424\u0456\u043B\u044C\u0442\u0440 \u0434\u043B\u044F \u043C\u043E\u0434\u0438\u0444\u0456\u043A\u043E\u0432\u0430\u043D\u043E\u0433\u043E
|
|
@@ -3,7 +3,7 @@ CATEGORIES.All.ShortTitle=T\u00E2\u0301t ca\u0309
|
|
|
3
3
|
CATEGORIES.All.Card.Title=K\u00EA\u0301t qua\u0309 ti\u0300m ki\u00EA\u0301m
|
|
4
4
|
CATEGORIES.All.Card.SubTitle=
|
|
5
5
|
CATEGORIES.All.LoadingData=Ti\u0300m ki\u00EA\u0301m
|
|
6
|
-
CATEGORIES.All.NoData=Kh\u00F4ng
|
|
6
|
+
CATEGORIES.All.NoData=Kh\u00F4ng co\u0301 mu\u0323c so kh\u01A1\u0301p na\u0300o \u0111\u01B0\u01A1\u0323c ti\u0300m th\u00E2\u0301y
|
|
7
7
|
CATEGORIES.App.Title=\u01AF\u0301ng d\u1EE5ng
|
|
8
8
|
CATEGORIES.App.ShortTitle=\u01AF\u0301ng du\u0323ng
|
|
9
9
|
CATEGORIES.App.Card.Title=\u01AF\u0301ng d\u1EE5ng
|
|
@@ -86,7 +86,7 @@ CATEGORIES.Document.Title=Ta\u0300i li\u00EA\u0323u
|
|
|
86
86
|
CATEGORIES.Document.ShortTitle=Ta\u0300i li\u00EA\u0323u
|
|
87
87
|
CATEGORIES.Document.Card.Title=Ta\u0300i li\u00EA\u0323u
|
|
88
88
|
CATEGORIES.Document.Card.SubTitle=
|
|
89
|
-
CATEGORIES.Document.LoadingData=\u0110ang ti\u0300m ki\u00EA\u0301m
|
|
89
|
+
CATEGORIES.Document.LoadingData=\u0110ang ti\u0300m ki\u00EA\u0301m ta\u0300i li\u00EA\u0323u...
|
|
90
90
|
CATEGORIES.Document.NoData=Kh\u00F4ng ti\u0300m th\u00E2\u0301y ta\u0300i li\u00EA\u0323u phu\u0300 h\u01A1\u0323p
|
|
91
91
|
|
|
92
92
|
CATEGORIES.Video.Title=Video
|
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* @fileOverview The UI integration's SAPUI5 control which supports application embedding.
|
|
5
|
-
* @version 1.
|
|
5
|
+
* @version 1.121.0
|
|
6
6
|
*/
|
|
7
7
|
sap.ui.define([
|
|
8
8
|
"sap/base/Log",
|
|
9
|
-
"sap/base/security/encodeXML",
|
|
10
9
|
"sap/base/util/deepEqual",
|
|
11
10
|
"sap/base/util/uid",
|
|
12
11
|
"sap/base/util/UriParameters",
|
|
@@ -15,9 +14,11 @@ sap.ui.define([
|
|
|
15
14
|
"sap/ui/core/Component",
|
|
16
15
|
"sap/ui/core/ComponentContainer",
|
|
17
16
|
"sap/ui/core/Control",
|
|
17
|
+
"sap/ui/core/EventBus",
|
|
18
18
|
"sap/ui/core/Icon",
|
|
19
|
+
"sap/ui/core/RenderManager",
|
|
20
|
+
"sap/ui/core/Supportability",
|
|
19
21
|
"sap/ui/core/mvc/View",
|
|
20
|
-
"sap/ui/core/routing/History",
|
|
21
22
|
"sap/ui/Device",
|
|
22
23
|
"sap/ui/thirdparty/jquery",
|
|
23
24
|
"sap/ui/thirdparty/URI",
|
|
@@ -29,14 +30,11 @@ sap.ui.define([
|
|
|
29
30
|
"sap/ushell/System",
|
|
30
31
|
"sap/ushell/User",
|
|
31
32
|
"sap/ushell/utils",
|
|
32
|
-
"sap/ushell/utils/UrlParsing",
|
|
33
|
-
"sap/ui/core/Core",
|
|
34
33
|
"sap/ui/thirdparty/hasher",
|
|
35
|
-
"sap/
|
|
36
|
-
"sap/ushell/
|
|
34
|
+
"sap/ushell/components/container/IframePOSTUtils",
|
|
35
|
+
"sap/ushell/Container"
|
|
37
36
|
], function (
|
|
38
37
|
Log,
|
|
39
|
-
encodeXML,
|
|
40
38
|
deepEqual,
|
|
41
39
|
fnGetUid,
|
|
42
40
|
UriParameters,
|
|
@@ -45,9 +43,11 @@ sap.ui.define([
|
|
|
45
43
|
Component,
|
|
46
44
|
ComponentContainer,
|
|
47
45
|
Control,
|
|
46
|
+
EventBus,
|
|
48
47
|
Icon,
|
|
48
|
+
RenderManager,
|
|
49
|
+
Supportability,
|
|
49
50
|
View,
|
|
50
|
-
History,
|
|
51
51
|
Device,
|
|
52
52
|
jQuery,
|
|
53
53
|
URI,
|
|
@@ -59,11 +59,9 @@ sap.ui.define([
|
|
|
59
59
|
System,
|
|
60
60
|
User,
|
|
61
61
|
ushellUtils,
|
|
62
|
-
oUrlParsing,
|
|
63
|
-
Core,
|
|
64
62
|
hasher,
|
|
65
|
-
|
|
66
|
-
|
|
63
|
+
IframePOSTUtils,
|
|
64
|
+
Container
|
|
67
65
|
) {
|
|
68
66
|
"use strict";
|
|
69
67
|
|
|
@@ -99,7 +97,7 @@ sap.ui.define([
|
|
|
99
97
|
* @private
|
|
100
98
|
*/
|
|
101
99
|
function adaptIsUrlSupportedResultForMessagePopover (oToBeValidated) {
|
|
102
|
-
|
|
100
|
+
Container.getServiceAsync("CrossApplicationNavigation").then(function (oCAService) {
|
|
103
101
|
oCAService.isUrlSupported(oToBeValidated.url).done(function () {
|
|
104
102
|
oToBeValidated.promise.resolve({ allowed: true, id: oToBeValidated.id });
|
|
105
103
|
}).fail(function () {
|
|
@@ -119,10 +117,8 @@ sap.ui.define([
|
|
|
119
117
|
EventHub.emit("StepDone", eventData.stepName);
|
|
120
118
|
}
|
|
121
119
|
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
Therefore we need to wait until all resorces are loaded, before we initialize the MessagePopover.
|
|
125
|
-
*/
|
|
120
|
+
// MessagePopover and its dependent controls resources are ~200K. In order to minimize core-min file it is bundled in core-ext file.
|
|
121
|
+
// Therefore we need to wait until all resorces are loaded, before we initialize the MessagePopover.
|
|
126
122
|
EventHub.once("initMessagePopover").do(initializeMessagePopover);
|
|
127
123
|
|
|
128
124
|
mLogouts = new ushellUtils.Map();
|
|
@@ -361,7 +357,7 @@ sap.ui.define([
|
|
|
361
357
|
*/
|
|
362
358
|
function publishExternalEvent (sEventName, oData) {
|
|
363
359
|
setTimeout(function () {
|
|
364
|
-
|
|
360
|
+
EventBus.getInstance().publish("sap.ushell", sEventName, oData);
|
|
365
361
|
}, 0);
|
|
366
362
|
}
|
|
367
363
|
|
|
@@ -403,12 +399,12 @@ sap.ui.define([
|
|
|
403
399
|
oComponentContainer.setWidth(oContainer.getWidth());
|
|
404
400
|
oComponentContainer.addStyleClass("sapUShellApplicationContainer");
|
|
405
401
|
oContainer._disableRouterEventHandler = ApplicationContainer.prototype._disableRouter.bind(that, oComponent);
|
|
406
|
-
|
|
402
|
+
EventBus.getInstance().subscribe("sap.ushell.components.container.ApplicationContainer", "_prior.newUI5ComponentInstantion", oContainer._disableRouterEventHandler);
|
|
407
403
|
|
|
408
404
|
// Note: As a composite control, we need to aggregate our children (at least internally)!
|
|
409
405
|
oContainer.setAggregation("child", oComponentContainer, true);
|
|
410
406
|
|
|
411
|
-
|
|
407
|
+
Container.getServiceAsync("PluginManager").then(function (oPluginManager) {
|
|
412
408
|
oPluginLoadingPromise = oPluginManager.getPluginLoadingPromise("RendererExtensions");
|
|
413
409
|
sPluginLoadingPromiseState = oPluginLoadingPromise && oPluginLoadingPromise.state();
|
|
414
410
|
if (sPluginLoadingPromiseState === "pending") {
|
|
@@ -464,7 +460,7 @@ sap.ui.define([
|
|
|
464
460
|
|
|
465
461
|
Log.debug("Creating component instance for " + sComponentName, JSON.stringify(oComponentConfig), sCOMPONENT);
|
|
466
462
|
|
|
467
|
-
|
|
463
|
+
EventBus.getInstance().publish("sap.ushell.components.container.ApplicationContainer", "_prior.newUI5ComponentInstantion", {
|
|
468
464
|
name: sComponentName
|
|
469
465
|
});
|
|
470
466
|
|
|
@@ -692,7 +688,7 @@ sap.ui.define([
|
|
|
692
688
|
return;
|
|
693
689
|
}
|
|
694
690
|
|
|
695
|
-
|
|
691
|
+
Container.getServiceAsync("PluginManager").then(function (oPluginManager) {
|
|
696
692
|
if (bPluginsStatusChecked === false) {
|
|
697
693
|
bPluginsStatusChecked = true;
|
|
698
694
|
oPluginPromise = oPluginManager.getPluginLoadingPromise("RendererExtensions");
|
|
@@ -816,7 +812,7 @@ sap.ui.define([
|
|
|
816
812
|
// add this container to list of NWBC-containing containers
|
|
817
813
|
if (oContainer && bForFramelessWindow === false) {
|
|
818
814
|
ushellUtils.localStorageSetItem(oContainer.globalDirtyStorageKey,
|
|
819
|
-
|
|
815
|
+
Container.DirtyState.INITIAL);
|
|
820
816
|
}
|
|
821
817
|
}
|
|
822
818
|
|
|
@@ -847,14 +843,14 @@ sap.ui.define([
|
|
|
847
843
|
if (vUrl !== undefined) {
|
|
848
844
|
return vUrl;
|
|
849
845
|
}
|
|
850
|
-
return
|
|
846
|
+
return Container.getUser().getAccessibilityMode();
|
|
851
847
|
}
|
|
852
848
|
function getTheme () {
|
|
853
849
|
var oResolvedUrlParameters = UriParameters.fromURL(sUrl) || { mParams: {} };
|
|
854
850
|
|
|
855
851
|
// To take care of the precedence of the intent over UI5 configuration
|
|
856
852
|
if (oResolvedUrlParameters.mParams["sap-theme"] === undefined) {
|
|
857
|
-
return
|
|
853
|
+
return Container.getUser()
|
|
858
854
|
.getTheme(User.prototype.constants.themeFormat.NWBC);
|
|
859
855
|
}
|
|
860
856
|
return undefined;
|
|
@@ -864,7 +860,7 @@ sap.ui.define([
|
|
|
864
860
|
oResolvedUrlParameters = UriParameters.fromURL(sUrl) || { mParams: {} };
|
|
865
861
|
|
|
866
862
|
// To take care of the precedence of the intent over UI5 configuration
|
|
867
|
-
bAddStatistics =
|
|
863
|
+
bAddStatistics = Supportability.isStatisticsEnabled()
|
|
868
864
|
&& oResolvedUrlParameters.mParams["sap-statistics"] === undefined;
|
|
869
865
|
return bAddStatistics;
|
|
870
866
|
}
|
|
@@ -982,7 +978,7 @@ sap.ui.define([
|
|
|
982
978
|
ApplicationContainer.prototype._renderControlInDiv(oRenderManager, oContainer);
|
|
983
979
|
oResult.oPromise.then(function (oControl) {
|
|
984
980
|
oContainer._bRecreateChild = false;
|
|
985
|
-
oNewRenderManager =
|
|
981
|
+
oNewRenderManager = new RenderManager().getInterface();
|
|
986
982
|
oNewRenderManager.renderControl(oControl);
|
|
987
983
|
oNewRenderManager.flush(jQuery("#" + oContainer.getId())[0]);
|
|
988
984
|
oNewRenderManager.destroy();
|
|
@@ -1051,7 +1047,7 @@ sap.ui.define([
|
|
|
1051
1047
|
var oNewRenderManager,
|
|
1052
1048
|
oDivElement = jQuery("#" + oContainer.getId());
|
|
1053
1049
|
if (oDivElement && oDivElement.length > 0) {
|
|
1054
|
-
oNewRenderManager =
|
|
1050
|
+
oNewRenderManager = new RenderManager().getInterface();
|
|
1055
1051
|
oNewRenderManager.renderControl(oControl);
|
|
1056
1052
|
oNewRenderManager.flush(jQuery("#" + oContainer.getId())[0]);
|
|
1057
1053
|
oNewRenderManager.destroy();
|
|
@@ -1080,28 +1076,26 @@ sap.ui.define([
|
|
|
1080
1076
|
return;
|
|
1081
1077
|
}
|
|
1082
1078
|
|
|
1083
|
-
if (
|
|
1079
|
+
if (Container) {
|
|
1084
1080
|
fnLogout = ApplicationContainer.prototype._getLogoutHandler(oContainer);
|
|
1085
1081
|
if (!fnLogout) {
|
|
1086
1082
|
if (ushellUtils.isApplicationTypeEmbeddedInIframe(sApplicationType)) {
|
|
1087
1083
|
// create only for NWBC if not already existing
|
|
1088
1084
|
fnLogout = ApplicationContainer.prototype._logout.bind(null, oContainer);
|
|
1089
1085
|
mLogouts.put(oContainer.getId(), fnLogout);
|
|
1090
|
-
|
|
1091
|
-
|
|
1086
|
+
Container.attachLogoutEvent(fnLogout);
|
|
1087
|
+
Container.addRemoteSystem(ApplicationContainer.prototype._createSystemForUrl(sUrl));
|
|
1092
1088
|
}
|
|
1093
1089
|
} else if (!ushellUtils.isApplicationTypeEmbeddedInIframe(sApplicationType)) {
|
|
1094
1090
|
// detach if not used *anymore*
|
|
1095
|
-
|
|
1091
|
+
Container.detachLogoutEvent(fnLogout);
|
|
1096
1092
|
mLogouts.remove(oContainer.getId());
|
|
1097
1093
|
}
|
|
1098
1094
|
}
|
|
1099
1095
|
|
|
1100
1096
|
sUrl = oContainer._checkNwbcUrlAdjustment(oContainer, sApplicationType, sUrl);
|
|
1101
1097
|
|
|
1102
|
-
|
|
1103
|
-
generic mechanism for allowing to pass parameters to the iframe URL
|
|
1104
|
-
*/
|
|
1098
|
+
// generic mechanism for allowing to pass parameters to the iframe URL
|
|
1105
1099
|
var urlParams = UriParameters.fromURL(document.URL);
|
|
1106
1100
|
if (urlParams.has("sap-iframe-params")) {
|
|
1107
1101
|
var sIframeParams = urlParams.get("sap-iframe-params") || "",
|
|
@@ -1177,11 +1171,13 @@ sap.ui.define([
|
|
|
1177
1171
|
}
|
|
1178
1172
|
|
|
1179
1173
|
/**
|
|
1174
|
+
* @alias sap.ushell.components.container.ApplicationContainer
|
|
1180
1175
|
* Creates a new container control embedding the application with the given URL. The default
|
|
1181
1176
|
* application type is "URL" and allows to embed web applications into an <code>IFRAME</code>.
|
|
1182
1177
|
* By default, the container is visible and occupies the whole width and height of its parent.
|
|
1183
1178
|
*
|
|
1184
|
-
* @class
|
|
1179
|
+
* @class
|
|
1180
|
+
* @classdesc A container control capable of embedding a variety of application types.
|
|
1185
1181
|
* <p>
|
|
1186
1182
|
* <strong>Experimental API: This container is still under construction, so some
|
|
1187
1183
|
* implementation details can be changed in future.</strong>
|
|
@@ -1262,77 +1258,67 @@ sap.ui.define([
|
|
|
1262
1258
|
* will have to use <code>sap.ui.require()</code> to load needed modules.
|
|
1263
1259
|
*
|
|
1264
1260
|
* @extends sap.ui.core.Control
|
|
1265
|
-
* @name sap.ushell.components.container.ApplicationContainer
|
|
1266
1261
|
* @since 1.15.0
|
|
1267
|
-
*
|
|
1268
|
-
* @property {string} [additionalInformation=""]
|
|
1269
|
-
* Additional information about the application. Currently this is used to describe a SAPUI5
|
|
1270
|
-
* component or a view in a SAPUI5 application.
|
|
1271
|
-
* @property {object} [application]
|
|
1272
|
-
* The application descriptor as received from the start-up service. If an application is
|
|
1273
|
-
* given the properties <code>url</code>, <code>applicationType</code> and
|
|
1274
|
-
* <code>additionalInformation</code> are taken from the application and <i>not</i> from the
|
|
1275
|
-
* control properties.
|
|
1276
|
-
* @property {object} [applicationConfiguration]
|
|
1277
|
-
* The configuration data of this application as defined in the application descriptor
|
|
1278
|
-
* or in the flexible configuration object.
|
|
1279
|
-
* @property {object} [componentHandle]
|
|
1280
|
-
* The component handle - for SAPUI5 components, this contains a handle to the
|
|
1281
|
-
* component metadata and constructor which might already be loaded
|
|
1282
|
-
* @property {ApplicationType.enum} [applicationType="URL"]
|
|
1283
|
-
* The type of the embedded application.
|
|
1284
|
-
* @property {sap.ui.core.CSSSize} [height="100%"]
|
|
1285
|
-
* The container's height as a CSS size. This attribute is provided to the browser "as is"!
|
|
1286
|
-
* <b>Note:</b> The HTML 4.01 specification allows pixels and percentages,
|
|
1287
|
-
* but the HTML 5 specification allows pixels only!
|
|
1288
|
-
* @property {string} url
|
|
1289
|
-
* The URL to the embedded application.
|
|
1290
|
-
* @property {boolean} [visible="true"]
|
|
1291
|
-
* Whether the container control is visible at all. <b>Note:</b> An invisible container does
|
|
1292
|
-
* not render any DOM content. Changing the visibility leads to rerendering!
|
|
1293
|
-
* @property {sap.ui.core.CSSSize} [width="100%"]
|
|
1294
|
-
* The container's width as a CSS size. This attribute is provided to the browser "as is"!
|
|
1295
|
-
* <b>Note:</b> The HTML 4.01 specification allows pixels and percentages,
|
|
1296
|
-
* but the HTML 5 specification allows pixels only!
|
|
1297
1262
|
*/
|
|
1298
|
-
/**
|
|
1299
|
-
* Event which is fired when the <code>ApplicationContainer</code> control is rendered. The
|
|
1300
|
-
* event holds a technology specific configuration object for the embedded application.
|
|
1301
|
-
* As of now, only configuration for an embedded <em>SAPUI5 component</em> is supported.
|
|
1302
|
-
*
|
|
1303
|
-
* @event
|
|
1304
|
-
* @name sap.ushell.components.container.ApplicationContainer.applicationConfiguration
|
|
1305
|
-
* @param {object} configuration
|
|
1306
|
-
* The technology specific configuration object of the embedded application.
|
|
1307
|
-
* <code>undefined</code>, if the <code>ApplicationContainer</code> control does not
|
|
1308
|
-
* provide a configuration for the technology of the embedded application or if there is a
|
|
1309
|
-
* rendering issue with the application.<br/>
|
|
1310
|
-
* For SAPUI5 components, the <code>config</code> property of the component metadata is
|
|
1311
|
-
* provided.
|
|
1312
|
-
*
|
|
1313
|
-
* @public
|
|
1314
|
-
*/
|
|
1315
|
-
var ApplicationContainer = Control.extend(sCOMPONENT, {
|
|
1263
|
+
var ApplicationContainer = Control.extend(sCOMPONENT, /** @lends sap.ushell.components.container.ApplicationContainer.prototype */{
|
|
1316
1264
|
metadata: {
|
|
1317
1265
|
properties: {
|
|
1266
|
+
/**
|
|
1267
|
+
* Additional information about the application. Currently this is used to describe a SAPUI5
|
|
1268
|
+
* component or a view in a SAPUI5 application.
|
|
1269
|
+
*/
|
|
1318
1270
|
additionalInformation: { defaultValue: "", type: "string" },
|
|
1271
|
+
/**
|
|
1272
|
+
* The application descriptor as received from the start-up service. If an application is
|
|
1273
|
+
* given the properties <code>url</code>, <code>applicationType</code> and
|
|
1274
|
+
* <code>additionalInformation</code> are taken from the application and <i>not</i> from the
|
|
1275
|
+
* control properties.
|
|
1276
|
+
*/
|
|
1319
1277
|
application: { type: "object" },
|
|
1278
|
+
/**
|
|
1279
|
+
* The configuration data of this application as defined in the application descriptor
|
|
1280
|
+
* or in the flexible configuration object.
|
|
1281
|
+
*/
|
|
1320
1282
|
applicationConfiguration: { type: "object" },
|
|
1283
|
+
/**
|
|
1284
|
+
* The type of the embedded application.
|
|
1285
|
+
*/
|
|
1321
1286
|
applicationType: { defaultValue: "URL", type: sPREFIX + "ApplicationType" },
|
|
1287
|
+
/**
|
|
1288
|
+
* The container's height as a CSS size. This attribute is provided to the browser "as is"!
|
|
1289
|
+
* <b>Note:</b> The HTML 4.01 specification allows pixels and percentages,
|
|
1290
|
+
* but the HTML 5 specification allows pixels only!
|
|
1291
|
+
*/
|
|
1322
1292
|
height: { defaultValue: "100%", type: "sap.ui.core.CSSSize" },
|
|
1323
1293
|
navigationMode: { defaultValue: "", type: "string" },
|
|
1324
1294
|
targetNavigationMode: { defaultValue: "", type: "string" },
|
|
1325
1295
|
text: { defaultValue: "", type: "string" },
|
|
1296
|
+
/**
|
|
1297
|
+
* The URL to the embedded application.
|
|
1298
|
+
*/
|
|
1326
1299
|
url: { defaultValue: "", type: "string" },
|
|
1327
1300
|
currentAppUrl: { defaultValue: "", type: "string" },
|
|
1328
1301
|
currentAppId: { defaultValue: "", type: "string" },
|
|
1329
1302
|
currentAppTargetResolution: { type: "object" },
|
|
1303
|
+
/**
|
|
1304
|
+
* Whether the container control is visible at all. <b>Note:</b> An invisible container does
|
|
1305
|
+
* not render any DOM content. Changing the visibility leads to rerendering!
|
|
1306
|
+
*/
|
|
1330
1307
|
visible: { defaultValue: true, type: "boolean" },
|
|
1331
1308
|
active: { defaultValue: true, type: "boolean" },
|
|
1332
1309
|
"sap-system": { type: "string" },
|
|
1333
1310
|
applicationDependencies: { type: "object" },
|
|
1311
|
+
/**
|
|
1312
|
+
* The component handle - for SAPUI5 components, this contains a handle to the
|
|
1313
|
+
* component metadata and constructor which might already be loaded
|
|
1314
|
+
*/
|
|
1334
1315
|
componentHandle: { type: "object" },
|
|
1335
1316
|
ui5ComponentName: { type: "string" },
|
|
1317
|
+
/**
|
|
1318
|
+
* The container's width as a CSS size. This attribute is provided to the browser "as is"!
|
|
1319
|
+
* <b>Note:</b> The HTML 4.01 specification allows pixels and percentages,
|
|
1320
|
+
* but the HTML 5 specification allows pixels only!
|
|
1321
|
+
*/
|
|
1336
1322
|
width: { defaultValue: "100%", type: "sap.ui.core.CSSSize" },
|
|
1337
1323
|
shellUIService: { type: "object" },
|
|
1338
1324
|
reservedParameters: { type: "object" },
|
|
@@ -1354,7 +1340,24 @@ sap.ui.define([
|
|
|
1354
1340
|
blueBoxCapabilities: { defaultValue: {}, type: "object" }
|
|
1355
1341
|
},
|
|
1356
1342
|
events: {
|
|
1357
|
-
|
|
1343
|
+
/**
|
|
1344
|
+
* Event which is fired when the <code>ApplicationContainer</code> control is rendered. The
|
|
1345
|
+
* event holds a technology specific configuration object for the embedded application.
|
|
1346
|
+
* As of now, only configuration for an embedded <em>SAPUI5 component</em> is supported.
|
|
1347
|
+
*/
|
|
1348
|
+
applicationConfiguration: {
|
|
1349
|
+
parameters: {
|
|
1350
|
+
/**
|
|
1351
|
+
* The technology specific configuration object of the embedded application.
|
|
1352
|
+
* <code>undefined</code>, if the <code>ApplicationContainer</code> control does not
|
|
1353
|
+
* provide a configuration for the technology of the embedded application or if there is a
|
|
1354
|
+
* rendering issue with the application.<br/>
|
|
1355
|
+
* For SAPUI5 components, the <code>config</code> property of the component metadata is
|
|
1356
|
+
* provided.
|
|
1357
|
+
*/
|
|
1358
|
+
configuration: { type: "object" }
|
|
1359
|
+
}
|
|
1360
|
+
}
|
|
1358
1361
|
},
|
|
1359
1362
|
aggregations: {
|
|
1360
1363
|
child: { multiple: false, type: "sap.ui.core.Control", visibility: "hidden" }
|
|
@@ -1366,10 +1369,10 @@ sap.ui.define([
|
|
|
1366
1369
|
exit: function () {
|
|
1367
1370
|
var fnLogout;
|
|
1368
1371
|
var that = this;
|
|
1369
|
-
if (
|
|
1372
|
+
if (Container) {
|
|
1370
1373
|
fnLogout = ApplicationContainer.prototype._getLogoutHandler(that);
|
|
1371
1374
|
if (fnLogout) {
|
|
1372
|
-
|
|
1375
|
+
Container.detachLogoutEvent(fnLogout);
|
|
1373
1376
|
mLogouts.remove(that.getId());
|
|
1374
1377
|
}
|
|
1375
1378
|
}
|
|
@@ -1383,7 +1386,7 @@ sap.ui.define([
|
|
|
1383
1386
|
}
|
|
1384
1387
|
|
|
1385
1388
|
if (that._disableRouterEventHandler) {
|
|
1386
|
-
|
|
1389
|
+
EventBus.getInstance().unsubscribe(
|
|
1387
1390
|
"sap.ushell.components.container.ApplicationContainer",
|
|
1388
1391
|
"_prior.newUI5ComponentInstantion", that._disableRouterEventHandler);//{ sValue : sServiceUrl }
|
|
1389
1392
|
}
|
|
@@ -1424,7 +1427,7 @@ sap.ui.define([
|
|
|
1424
1427
|
that._storageEventListener = function (oStorageEvent) {
|
|
1425
1428
|
var sApplicationType = that.getApplicationType();
|
|
1426
1429
|
if (oStorageEvent.key === that.globalDirtyStorageKey
|
|
1427
|
-
&& oStorageEvent.newValue ===
|
|
1430
|
+
&& oStorageEvent.newValue === Container.DirtyState.PENDING
|
|
1428
1431
|
&& ushellUtils.isApplicationTypeEmbeddedInIframe(sApplicationType)) {
|
|
1429
1432
|
|
|
1430
1433
|
var oIframe = that._getIFrame();
|
|
@@ -1448,17 +1451,14 @@ sap.ui.define([
|
|
|
1448
1451
|
|
|
1449
1452
|
that._messageEventListener = ApplicationContainer.prototype._handleMessageEvent.bind(null, that);
|
|
1450
1453
|
addEventListener("message", that._messageEventListener);
|
|
1451
|
-
if (!oMessageBrokerServicePromise &&
|
|
1452
|
-
oMessageBrokerServicePromise =
|
|
1454
|
+
if (!oMessageBrokerServicePromise && Container.isInitialized()) {
|
|
1455
|
+
oMessageBrokerServicePromise = Container.getServiceAsync("MessageBroker");
|
|
1453
1456
|
}
|
|
1454
1457
|
},
|
|
1455
1458
|
|
|
1456
1459
|
onAfterRendering: function (/*oEvent*/) {
|
|
1457
1460
|
var that = this;
|
|
1458
1461
|
|
|
1459
|
-
//always prevent re-rendering of application container
|
|
1460
|
-
this.rerender = function () { /* avoid re-rendering of this control */ };
|
|
1461
|
-
|
|
1462
1462
|
// iOS Safari ignores CSS width and height of the iframe. The iframe is as big as its contents.
|
|
1463
1463
|
// Scrolling inside of a such an iframe is not possible. Scroll the parent container instead.
|
|
1464
1464
|
if (Device.os.ios && this.$().prop("tagName") === "IFRAME") {
|
|
@@ -1475,6 +1475,15 @@ sap.ui.define([
|
|
|
1475
1475
|
}
|
|
1476
1476
|
},
|
|
1477
1477
|
|
|
1478
|
+
invalidate: function() {
|
|
1479
|
+
if (this.getDomRef()) {
|
|
1480
|
+
//always prevent re-rendering of application container once it's rendered
|
|
1481
|
+
return this;
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
return Control.prototype.invalidate.apply(this, arguments);
|
|
1485
|
+
},
|
|
1486
|
+
|
|
1478
1487
|
/**
|
|
1479
1488
|
* Renders the given container control with the help of the given render manager.
|
|
1480
1489
|
*
|