@sapui5/sap.ushell 1.117.1 → 1.118.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 +4 -4
- package/src/main/js/sap/ushell/.library +1 -1
- package/src/main/js/sap/ushell/ApplicationType.js +4 -6
- package/src/main/js/sap/ushell/Container.js +0 -6
- package/src/main/js/sap/ushell/Fiori20Adapter.js +1 -1
- package/src/main/js/sap/ushell/Fiori20AdapterTest.js +1 -1
- package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
- package/src/main/js/sap/ushell/SessionHandler.js +4 -4
- package/src/main/js/sap/ushell/TechnicalParameters.js +1 -1
- package/src/main/js/sap/ushell/URLTemplateProcessor.js +1 -1
- package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +1 -1
- package/src/main/js/sap/ushell/Ui5ServiceFactory.js +1 -1
- package/src/main/js/sap/ushell/User.js +10 -0
- package/src/main/js/sap/ushell/_ApplicationType/urlTemplateResolution.js +64 -56
- package/src/main/js/sap/ushell/_ApplicationType/wdaResolution.js +5 -5
- 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 +1 -1
- 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/cdm/ClientSideTargetResolutionAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.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/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 +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +1 -1
- 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 +1 -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 +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +11 -9
- package/src/main/js/sap/ushell/adapters/cdm/v3/utilsCdm.js +1 -1
- package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +3 -2
- 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 +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 +1 -1
- package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +17 -19
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntimeContext.js +3 -3
- package/src/main/js/sap/ushell/appRuntime/ui5/SessionHandlerAgent.js +10 -0
- package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycleAgent.js +2 -11
- package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent.js +8 -4
- package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/EventProcessor.js +21 -2
- package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/FLPScheduler.js +23 -7
- package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/StepConfiguration.json +4 -3
- package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/logger.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/_SchedulingAgent/state.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5.js +1 -0
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +1 -1
- package/src/main/js/sap/ushell/components/HeaderManager.js +6 -6
- package/src/main/js/sap/ushell/components/appfinder/CatalogView.js +17 -18
- package/src/main/js/sap/ushell/components/appfinder/HierarchyAppsView.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/applicationIntegration/AppLifeCycle.js +9 -11
- package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +7 -1
- package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +9 -18
- package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +9 -5
- package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +1 -1
- package/src/main/js/sap/ushell/components/applicationIntegration/elements/model.js +1 -1
- package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +1 -1
- package/src/main/js/sap/ushell/components/applicationIntegration/relatedShellElements/RelatedShellElements.js +2 -4
- package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +3 -8
- package/src/main/js/sap/ushell/components/contentFinder/Component.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +3 -3
- package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/controller/WidgetGallery.controller.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/manifest.json +4 -2
- 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 +111 -35
- package/src/main/js/sap/ushell/components/contentFinder/view/AppSearchPaginated.view.xml +37 -18
- package/src/main/js/sap/ushell/components/contentFinder/view/ContentFinderDialog.view.xml +24 -15
- package/src/main/js/sap/ushell/components/contentFinder/view/WidgetGallery.view.xml +67 -39
- package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
- package/src/main/js/sap/ushell/components/factsheet/tools/ODataUrlTemplating.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/ActionMode.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/FLPAnalytics.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/pages/ActionMode.js +1 -1
- package/src/main/js/sap/ushell/components/pages/Component.js +1 -1
- package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +1 -1
- package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +2 -2
- package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +1 -1
- package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
- 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 +1 -1
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Notifications/Notifications.controller.js +1 -1
- package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Search/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEP/Component.js +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +1 -1
- 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 +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/Component.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +2 -2
- package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountEntry.js +2 -2
- package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountSelector.view.xml +27 -16
- package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountSetting.view.xml +12 -6
- package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/controller/UserDefaultsSetting.controller.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/LanguageRegionSelector.controller.js +65 -17
- package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/LanguageRegionSelector.view.xml +18 -1
- package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +1 -1
- package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/applauncher/Configuration.view.xml +2 -2
- package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/Configuration.view.xml +2 -2
- package/src/main/js/sap/ushell/components/tiles/utils.js +3 -2
- package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +1 -1
- 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 +274 -65
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageHost.js +2 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +9 -11
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +48 -48
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +12 -12
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +8 -8
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnRenderer.js +9 -9
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +44 -44
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRenderer.js +7 -4
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +8 -8
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRowRenderer.js +9 -8
- package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +8 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources.properties +10 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ar.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_bg.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ca.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cs.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cy.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_da.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_de.properties +11 -7
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_el.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en.properties +6 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_GB.properties +6 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_sappsd.properties +6 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_saprigi.properties +6 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_saptrc.properties +13 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_es.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_es_MX.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_et.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fi.properties +11 -7
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fr.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fr_CA.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hi.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hr.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hu.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_id.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_it.properties +11 -7
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_iw.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ja.properties +11 -7
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_kk.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ko.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_lt.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_lv.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ms.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_nl.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_no.properties +11 -7
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pl.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pt.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pt_PT.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ro.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ru.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sh.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sk.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sl.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sv.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_th.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_tr.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_uk.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_vi.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_zh_CN.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_zh_TW.properties +10 -6
- package/src/main/js/sap/ushell/components/workPageBuilder/view/WorkPageBuilder.view.xml +49 -34
- package/src/main/js/sap/ushell/components/workPageBuilder/view/WorkPageCellDeleteDialog.fragment.xml +25 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/view/WorkPageRowDeleteDialog.fragment.xml +13 -5
- package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +1 -1
- package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +2 -2
- package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +5 -1
- package/src/main/js/sap/ushell/components/workPageRuntime/services/NavigationResolver.js +1 -1
- package/src/main/js/sap/ushell/components/workPageRuntime/services/WorkPage.js +1 -1
- package/src/main/js/sap/ushell/components/workPageRuntime/view/WorkPageRuntime.view.xml +5 -4
- package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
- package/src/main/js/sap/ushell/library.js +1 -1
- package/src/main/js/sap/ushell/navigationMode.js +105 -121
- package/src/main/js/sap/ushell/performance/FesrEnhancer.js +16 -2
- package/src/main/js/sap/ushell/performance/ShellAnalytics.js +1 -1
- package/src/main/js/sap/ushell/performance/StatisticalRecord.js +1 -1
- package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/LogonFrameProvider.js +2 -2
- package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +2 -2
- package/src/main/js/sap/ushell/renderers/fiori2/Shell.controller.js +6 -0
- package/src/main/js/sap/ushell/renderers/fiori2/ShellLayout.js +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources.properties +20 -0
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ar.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_bg.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ca.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_cs.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_cy.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_da.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_de.properties +15 -4
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_el.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en.properties +11 -0
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_GB.properties +11 -0
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_sappsd.properties +11 -0
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_saprigi.properties +11 -0
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_en_US_saptrc.properties +12 -0
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_es.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_es_MX.properties +14 -3
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_et.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fi.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fr.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_fr_CA.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hi.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hr.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_hu.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_id.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_it.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_iw.properties +16 -5
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ja.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_kk.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ko.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_lt.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_lv.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ms.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_nl.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_no.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pl.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pt.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_pt_PT.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ro.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_ru.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sh.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sk.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sl.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_sv.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_th.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_tr.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_uk.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_vi.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_zh_CN.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/resources/resources_zh_TW.properties +12 -1
- package/src/main/js/sap/ushell/renderers/fiori2/search/searchComponent/controller/CEPSearchApp.controller.js +4 -4
- package/src/main/js/sap/ushell/renderers/fiori2/search/searchComponent/controller/SearchApp.controller.js +3 -3
- package/src/main/js/sap/ushell/renderers/fiori2/search/searchComponent/manifest.json +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/search/searchComponent/view/CEPSearchApp.view.js +4 -3
- package/src/main/js/sap/ushell/renderers/fiori2/search/searchComponent/view/SearchApp.view.js +4 -3
- package/src/main/js/sap/ushell/services/AppLifeCycle.js +1 -1
- package/src/main/js/sap/ushell/services/AppState.js +1 -1
- package/src/main/js/sap/ushell/services/Bookmark.js +1 -1
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +97 -101
- package/src/main/js/sap/ushell/services/CommonDataModel.js +1 -1
- package/src/main/js/sap/ushell/services/Configuration.js +1 -1
- package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +1 -1
- package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +1 -1
- package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +1 -1
- package/src/main/js/sap/ushell/services/DarkModeSupport.js +1 -1
- package/src/main/js/sap/ushell/services/LaunchPage.js +1 -1
- package/src/main/js/sap/ushell/services/Menu.js +1 -1
- package/src/main/js/sap/ushell/services/Message.js +1 -1
- package/src/main/js/sap/ushell/services/MessageBroker.js +1 -1
- package/src/main/js/sap/ushell/services/NavTargetResolution.js +12 -34
- package/src/main/js/sap/ushell/services/NavigationDataProvider.js +1 -1
- package/src/main/js/sap/ushell/services/PageBuilding.js +1 -1
- package/src/main/js/sap/ushell/services/PagePersistence.js +1 -1
- package/src/main/js/sap/ushell/services/PageReferencing.js +1 -1
- package/src/main/js/sap/ushell/services/Pages.js +1 -1
- package/src/main/js/sap/ushell/services/Personalization.js +1 -1
- package/src/main/js/sap/ushell/services/PluginManager.js +1 -1
- package/src/main/js/sap/ushell/services/ReferenceResolver.js +1 -1
- package/src/main/js/sap/ushell/services/Search.js +1 -1
- package/src/main/js/sap/ushell/services/SearchCEP.js +1 -1
- package/src/main/js/sap/ushell/services/SearchableContent.js +1 -1
- package/src/main/js/sap/ushell/services/SmartNavigation.js +1 -1
- package/src/main/js/sap/ushell/services/SpaceContent.js +1 -1
- package/src/main/js/sap/ushell/services/UITracer.js +1 -1
- package/src/main/js/sap/ushell/services/URLShortening.js +2 -2
- package/src/main/js/sap/ushell/services/URLTemplate.js +1 -1
- package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +1 -1
- package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +1 -1
- package/src/main/js/sap/ushell/services/UserDefaultParameters.js +9 -8
- package/src/main/js/sap/ushell/services/UserInfo.js +8 -1
- package/src/main/js/sap/ushell/services/UserRecents.js +1 -1
- package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +1 -1
- package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/Formatter.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundIndex.js +1 -1
- package/src/main/js/sap/ushell/services/_ClientSideTargetResolution/InboundProvider.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 +1 -1
- 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 +5 -25
- package/src/main/js/sap/ushell/services/_CommonDataModel/SiteConverter.js +1 -1
- package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
- package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +2 -2
- package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +1 -1
- package/src/main/js/sap/ushell/services/_MessageBroker/MessageBrokerEngine.js +1 -1
- package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +1 -1
- 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 +1 -1
- package/src/main/js/sap/ushell/services/_VisualizationInstantiation/VizInstanceLink.js +1 -1
- package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +1 -1
- package/src/main/js/sap/ushell/themes/base/ContentFinder.less +8 -12
- package/src/main/js/sap/ushell/themes/base/SearchCEP.less +3 -4
- package/src/main/js/sap/ushell/themes/base/ShellHeader.less +0 -4
- package/src/main/js/sap/ushell/themes/base/UserSettings.less +3 -46
- package/src/main/js/sap/ushell/themes/base/WorkPage.less +7 -8
- package/src/main/js/sap/ushell/themes/base/WorkPageButton.less +7 -7
- package/src/main/js/sap/ushell/themes/base/WorkPageCell.less +46 -45
- package/src/main/js/sap/ushell/themes/base/WorkPageColumn.less +49 -38
- package/src/main/js/sap/ushell/themes/base/WorkPageColumnResizer.less +42 -38
- package/src/main/js/sap/ushell/themes/base/WorkPageRow.less +59 -25
- package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.eot +0 -0
- package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.ttf +0 -0
- package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.woff +0 -0
- package/src/main/js/sap/ushell/themes/base/fonts/horizon/BusinessSuiteInAppSymbols.woff2 +0 -0
- package/src/main/js/sap/ushell/themes/sap_horizon/SearchCEP.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_horizon/ToolAreaItem.less +49 -20
- package/src/main/js/sap/ushell/themes/sap_horizon/WorkPageCell.less +2 -1
- package/src/main/js/sap/ushell/themes/sap_horizon_dark/SearchCEP.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_horizon_dark/ToolAreaItem.less +48 -20
- package/src/main/js/sap/ushell/themes/sap_horizon_dark/WorkPageCell.less +2 -1
- package/src/main/js/sap/ushell/themes/sap_horizon_hcb/SearchCEP.less +0 -1
- package/src/main/js/sap/ushell/themes/sap_horizon_hcb/WorkPageCell.less +2 -1
- package/src/main/js/sap/ushell/themes/sap_horizon_hcw/SearchCEP.less +0 -1
- package/src/main/js/sap/ushell/themes/sap_horizon_hcw/WorkPageCell.less +2 -1
- package/src/main/js/sap/ushell/ui/ShellHeader.js +0 -33
- package/src/main/js/sap/ushell/ui/ShellHeaderRenderer.js +15 -2
- package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/AddBookmarkButton.js +3 -3
- package/src/main/js/sap/ushell/ui/footerbar/ContactSupportButton.js +5 -4
- package/src/main/js/sap/ushell/ui/footerbar/JamDiscussButton.js +13 -11
- package/src/main/js/sap/ushell/ui/footerbar/JamShareButton.js +30 -22
- package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/Page.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/Section.js +2 -2
- package/src/main/js/sap/ushell/ui/launchpad/TileContainerRenderer.js +3 -3
- package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/ShellAppTitle.js +3 -2
- package/src/main/js/sap/ushell/ui/shell/ShellHeadItem.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/SysInfoBar.js +5 -4
- package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -1
- package/src/main/js/sap/ushell/ui/utils.js +1 -1
- package/src/main/js/sap/ushell/ui5service/ShellUIService.js +1 -1
- package/src/main/js/sap/ushell/ui5service/UserStatus.js +1 -1
- package/src/main/js/sap/ushell/utils/DynamicTileRequest.js +353 -323
- package/src/main/js/sap/ushell/utils/UrlShortening.js +1 -1
- package/src/main/js/sap/ushell/utils.js +43 -20
- package/src/test/js/sap/ushell/bootstrap/sandbox.js +1 -1
- package/ui5.yaml +1 -1
- package/src/main/js/sap/ushell/utils/clone.js +0 -167
|
@@ -6,17 +6,23 @@
|
|
|
6
6
|
xmlns:l="sap.ui.layout"
|
|
7
7
|
xmlns:grid="sap.ui.layout.cssgrid"
|
|
8
8
|
controllerName="sap.ushell.components.contentFinder.controller.AppSearch"
|
|
9
|
-
id="
|
|
9
|
+
id="contentFinderAppSearchView"
|
|
10
10
|
height="100%">
|
|
11
|
-
<!-- The container needs any fixed height (e.g. minFlexSize="1px") to calculate the content
|
|
12
|
-
|
|
11
|
+
<!-- The container needs any fixed height (e.g. minFlexSize="1px") to calculate the content
|
|
12
|
+
heights. -->
|
|
13
|
+
<l:FixFlex
|
|
14
|
+
id="contentFinderAppSearchLayout"
|
|
15
|
+
minFlexSize="1px">
|
|
13
16
|
<l:fixContent>
|
|
14
17
|
<OverflowToolbar
|
|
15
18
|
id="appSearchOverflowToolbar"
|
|
16
19
|
asyncMode="false"
|
|
17
20
|
style="Clear"
|
|
18
|
-
class="
|
|
19
|
-
<Title
|
|
21
|
+
class="contentFinderToolbar sapUiMediumMargin">
|
|
22
|
+
<Title
|
|
23
|
+
id="appBoxContainerTitle"
|
|
24
|
+
titleStyle="H5"
|
|
25
|
+
text="{
|
|
20
26
|
parts: [
|
|
21
27
|
'/activeNavigationTarget',
|
|
22
28
|
'/appSearch/searchTerm',
|
|
@@ -27,17 +33,24 @@
|
|
|
27
33
|
'/appSearch/filteredAppCount'
|
|
28
34
|
], formatter: '.formatter.formatAppSearchTitle' }">
|
|
29
35
|
<layoutData>
|
|
30
|
-
<OverflowToolbarLayoutData
|
|
36
|
+
<OverflowToolbarLayoutData
|
|
37
|
+
minWidth="6rem"
|
|
38
|
+
shrinkable="true"
|
|
39
|
+
priority="High" />
|
|
31
40
|
</layoutData>
|
|
32
41
|
</Title>
|
|
33
|
-
<ToolbarSpacer/>
|
|
42
|
+
<ToolbarSpacer />
|
|
34
43
|
<SearchField
|
|
35
44
|
id="appSearchField"
|
|
36
45
|
value="{/appSearch/searchTerm}"
|
|
37
46
|
placeholder="{i18n>ContentFinder.AppSearch.SearchPlaceholder}"
|
|
38
47
|
liveChange=".onAppSearch">
|
|
39
48
|
<layoutData>
|
|
40
|
-
<OverflowToolbarLayoutData
|
|
49
|
+
<OverflowToolbarLayoutData
|
|
50
|
+
minWidth="6rem"
|
|
51
|
+
maxWidth="13.75rem"
|
|
52
|
+
shrinkable="true"
|
|
53
|
+
priority="NeverOverflow" />
|
|
41
54
|
</layoutData>
|
|
42
55
|
</SearchField>
|
|
43
56
|
<ToggleButton
|
|
@@ -49,18 +62,21 @@
|
|
|
49
62
|
tooltip="{i18n>ContentFinder.AppSearch.Button.Tooltip.ShowSelected}"
|
|
50
63
|
press=".onShowSelectedPressed">
|
|
51
64
|
<layoutData>
|
|
52
|
-
<OverflowToolbarLayoutData
|
|
65
|
+
<OverflowToolbarLayoutData
|
|
66
|
+
shrinkable="false"
|
|
67
|
+
priority="Low" />
|
|
53
68
|
</layoutData>
|
|
54
69
|
</ToggleButton>
|
|
55
70
|
</OverflowToolbar>
|
|
56
71
|
</l:fixContent>
|
|
57
72
|
<l:flexContent>
|
|
58
73
|
<Page
|
|
74
|
+
id="contentPage"
|
|
59
75
|
showHeader="false"
|
|
60
76
|
class="sapUiResponsiveContentPadding"
|
|
61
77
|
busy="{= !${/appSearch/visualizationsLoaded}}">
|
|
62
78
|
<f:GridList
|
|
63
|
-
id="
|
|
79
|
+
id="tiles"
|
|
64
80
|
includeItemInSelection="true"
|
|
65
81
|
mode="MultiSelect"
|
|
66
82
|
growing="true"
|
|
@@ -75,15 +91,17 @@
|
|
|
75
91
|
<grid:GridSettings
|
|
76
92
|
gridTemplateColumns="repeat(auto-fill, 19.0625rem)"
|
|
77
93
|
gridAutoRows="12.75rem"
|
|
78
|
-
gridGap="1rem"
|
|
79
|
-
/>
|
|
94
|
+
gridGap="1rem" />
|
|
80
95
|
</grid:layout>
|
|
81
96
|
</grid:GridResponsiveLayout>
|
|
82
97
|
</f:customLayout>
|
|
83
|
-
<core:Fragment
|
|
98
|
+
<core:Fragment
|
|
99
|
+
id="tilesBox"
|
|
100
|
+
fragmentName="sap.ushell.components.contentFinder.view.AppSearchBox"
|
|
101
|
+
type="XML" />
|
|
84
102
|
</f:GridList>
|
|
85
103
|
<f:GridList
|
|
86
|
-
id="
|
|
104
|
+
id="cards"
|
|
87
105
|
includeItemInSelection="true"
|
|
88
106
|
mode="SingleSelectMaster"
|
|
89
107
|
items="{/appSearch/visualizations/cards}"
|
|
@@ -98,12 +116,14 @@
|
|
|
98
116
|
<grid:GridSettings
|
|
99
117
|
gridTemplateColumns="repeat(auto-fill, 19.0625rem)"
|
|
100
118
|
gridAutoRows="12.75rem"
|
|
101
|
-
gridGap="1rem"
|
|
102
|
-
/>
|
|
119
|
+
gridGap="1rem" />
|
|
103
120
|
</grid:layout>
|
|
104
121
|
</grid:GridResponsiveLayout>
|
|
105
122
|
</f:customLayout>
|
|
106
|
-
<core:Fragment
|
|
123
|
+
<core:Fragment
|
|
124
|
+
id="cardsBox"
|
|
125
|
+
fragmentName="sap.ushell.components.contentFinder.view.AppSearchBox"
|
|
126
|
+
type="XML" />
|
|
107
127
|
</f:GridList>
|
|
108
128
|
</Page>
|
|
109
129
|
</l:flexContent>
|
|
@@ -2,64 +2,140 @@
|
|
|
2
2
|
xmlns="sap.m"
|
|
3
3
|
xmlns:core="sap.ui.core"
|
|
4
4
|
xmlns:launchpad="sap.ushell.ui.launchpad">
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
<CustomListItem
|
|
6
|
+
id="searchResult"
|
|
7
|
+
class="contentFinderAppBox"
|
|
8
|
+
highlight="{= ${added} ? 'Information' : 'None'}"
|
|
9
|
+
selected="{selected}"
|
|
10
|
+
accDescription="{= ${parts: ['title', 'subtitle', 'added'], formatter: '.formatAppBoxAccDescription'}}">
|
|
7
11
|
<customData>
|
|
8
|
-
<launchpad:AccessibilityCustomData
|
|
12
|
+
<launchpad:AccessibilityCustomData
|
|
13
|
+
writeToDom="true"
|
|
14
|
+
key="help-id"
|
|
15
|
+
value="{:= ${dataHelpId}}" />
|
|
9
16
|
</customData>
|
|
10
|
-
<VBox
|
|
11
|
-
|
|
17
|
+
<VBox
|
|
18
|
+
id="content"
|
|
19
|
+
justifyContent="SpaceBetween"
|
|
20
|
+
fitContainer="true">
|
|
21
|
+
<HBox
|
|
22
|
+
alignItems="Stretch"
|
|
23
|
+
id="contentHeader">
|
|
12
24
|
<layoutData>
|
|
13
|
-
<FlexItemData
|
|
25
|
+
<FlexItemData
|
|
26
|
+
shrinkFactor="0"
|
|
27
|
+
growFactor="0" />
|
|
14
28
|
</layoutData>
|
|
15
|
-
<VBox
|
|
16
|
-
|
|
29
|
+
<VBox
|
|
30
|
+
id="avatar"
|
|
31
|
+
class="sapUiTinyMarginEnd">
|
|
32
|
+
<Avatar
|
|
33
|
+
id="appAvatar"
|
|
34
|
+
src="{:= icon}"
|
|
35
|
+
backgroundColor="Transparent"
|
|
36
|
+
showBorder="true"
|
|
37
|
+
displaySize="XS" />
|
|
17
38
|
</VBox>
|
|
18
|
-
<VBox
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
<Text
|
|
22
|
-
|
|
23
|
-
|
|
39
|
+
<VBox
|
|
40
|
+
id="title"
|
|
41
|
+
justifyContent="Center">
|
|
42
|
+
<Text
|
|
43
|
+
id="appTitle"
|
|
44
|
+
wrapping="true"
|
|
45
|
+
maxLines="2"
|
|
46
|
+
text="{:= ${title}}"
|
|
47
|
+
class="contentFinderAppBoxTitle"
|
|
48
|
+
visible="{:= !!${title}}"
|
|
49
|
+
tooltip="{:= ${title}}" />
|
|
50
|
+
<Text
|
|
51
|
+
id="appSubTitle"
|
|
52
|
+
wrapping="false"
|
|
53
|
+
text="{:= ${subtitle}}"
|
|
54
|
+
width="13rem"
|
|
55
|
+
class="contentFinderAppBoxSubtitle"
|
|
56
|
+
visible="{:= !!${subtitle}}"
|
|
57
|
+
tooltip="{:= ${subtitle}}" />
|
|
24
58
|
</VBox>
|
|
25
59
|
</HBox>
|
|
26
60
|
|
|
27
|
-
<VBox>
|
|
61
|
+
<VBox id="shrinkableVBox">
|
|
28
62
|
<layoutData>
|
|
29
|
-
<FlexItemData
|
|
63
|
+
<FlexItemData
|
|
64
|
+
shrinkFactor="1"
|
|
65
|
+
growFactor="1" />
|
|
30
66
|
</layoutData>
|
|
31
67
|
</VBox>
|
|
32
68
|
|
|
33
|
-
<HBox
|
|
69
|
+
<HBox
|
|
70
|
+
id="appInformation"
|
|
71
|
+
height="64px"
|
|
72
|
+
alignItems="Stretch"
|
|
73
|
+
class="sapUiTinyMarginBottom">
|
|
34
74
|
<layoutData>
|
|
35
|
-
<FlexItemData
|
|
75
|
+
<FlexItemData
|
|
76
|
+
shrinkFactor="0"
|
|
77
|
+
growFactor="0" />
|
|
36
78
|
</layoutData>
|
|
37
|
-
<VBox
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
79
|
+
<VBox
|
|
80
|
+
id="labels"
|
|
81
|
+
class="sapUiTinyMarginEnd contentFinderAppBoxLabel"
|
|
82
|
+
justifyContent="Start">
|
|
83
|
+
<Label
|
|
84
|
+
id="fioriIdLabel"
|
|
85
|
+
showColon="true"
|
|
86
|
+
text="{:= ${i18n>ContentFinder.AppSearch.Label.FioriId}}"
|
|
87
|
+
class="sapUiTinyMarginEnd" />
|
|
88
|
+
<Label
|
|
89
|
+
id="informationLabel"
|
|
90
|
+
showColon="true"
|
|
91
|
+
text="{:= ${i18n>ContentFinder.AppSearch.Label.Information}}"
|
|
92
|
+
class="sapUiTinyMarginEnd" />
|
|
41
93
|
</VBox>
|
|
42
|
-
<VBox
|
|
94
|
+
<VBox
|
|
95
|
+
id="texts"
|
|
96
|
+
width="0px"
|
|
97
|
+
justifyContent="Start"
|
|
98
|
+
class="contentFinderAppBoxValue">
|
|
43
99
|
<layoutData>
|
|
44
|
-
<FlexItemData growFactor="1"/>
|
|
100
|
+
<FlexItemData growFactor="1" />
|
|
45
101
|
</layoutData>
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
102
|
+
<Text
|
|
103
|
+
id="fioriId"
|
|
104
|
+
wrapping="false"
|
|
105
|
+
text="{:= ${appId} || ${i18n>ContentFinder.AppSearch.Text.FieldEmpty}}"
|
|
106
|
+
tooltip="{:= ${appId} || ${i18n>ContentFinder.AppSearch.Text.FieldEmpty}}" />
|
|
107
|
+
<Text
|
|
108
|
+
id="information"
|
|
109
|
+
wrapping="false"
|
|
110
|
+
text="{:= ${info} || ${i18n>ContentFinder.AppSearch.Text.FieldEmpty}}"
|
|
111
|
+
tooltip="{:= ${info} || ${i18n>ContentFinder.AppSearch.Text.FieldEmpty}}" />
|
|
50
112
|
</VBox>
|
|
51
113
|
</HBox>
|
|
52
114
|
|
|
53
|
-
|
|
54
|
-
|
|
115
|
+
<HBox
|
|
116
|
+
id="actions"
|
|
117
|
+
justifyContent="SpaceBetween"
|
|
118
|
+
alignItems="Center"
|
|
119
|
+
height="2rem">
|
|
55
120
|
<layoutData>
|
|
56
|
-
<FlexItemData
|
|
121
|
+
<FlexItemData
|
|
122
|
+
shrinkFactor="0"
|
|
123
|
+
growFactor="0" />
|
|
57
124
|
</layoutData>
|
|
58
|
-
<Button
|
|
59
|
-
|
|
125
|
+
<Button
|
|
126
|
+
id="launchApplication"
|
|
127
|
+
icon="sap-icon://action"
|
|
128
|
+
type="Transparent"
|
|
129
|
+
visible="false"
|
|
130
|
+
tooltip="{:= ${i18n>ContentFinder.AppSearch.Button.Tooltip.LaunchApplication}}" />
|
|
131
|
+
<Button
|
|
132
|
+
id="previewApplication"
|
|
133
|
+
text="{:= ${i18n>ContentFinder.AppSearch.Button.Preview}}"
|
|
134
|
+
iconFirst="false"
|
|
135
|
+
icon="sap-icon://navigation-down-arrow"
|
|
136
|
+
visible="false"
|
|
137
|
+
type="Transparent" />
|
|
60
138
|
</HBox>
|
|
61
139
|
</VBox>
|
|
62
140
|
</CustomListItem>
|
|
63
|
-
|
|
64
|
-
|
|
65
141
|
</core:FragmentDefinition>
|
|
@@ -6,17 +6,23 @@
|
|
|
6
6
|
xmlns:l="sap.ui.layout"
|
|
7
7
|
xmlns:grid="sap.ui.layout.cssgrid"
|
|
8
8
|
controllerName="sap.ushell.components.contentFinder.controller.AppSearch"
|
|
9
|
-
id="
|
|
9
|
+
id="contentFinderAppSearchView"
|
|
10
10
|
height="100%">
|
|
11
|
-
<!-- The container needs any fixed height (e.g. minFlexSize="1px") to calculate the content
|
|
12
|
-
|
|
11
|
+
<!-- The container needs any fixed height (e.g. minFlexSize="1px") to calculate the content
|
|
12
|
+
heights. -->
|
|
13
|
+
<l:FixFlex
|
|
14
|
+
id="contentFinderAppSearchLayout"
|
|
15
|
+
minFlexSize="1px">
|
|
13
16
|
<l:fixContent>
|
|
14
17
|
<OverflowToolbar
|
|
15
18
|
id="appSearchOverflowToolbar"
|
|
16
19
|
asyncMode="false"
|
|
17
20
|
style="Clear"
|
|
18
|
-
class="
|
|
19
|
-
<Title
|
|
21
|
+
class="contentFinderToolbar sapUiMediumMargin">
|
|
22
|
+
<Title
|
|
23
|
+
id="appBoxContainerTitle"
|
|
24
|
+
titleStyle="H5"
|
|
25
|
+
text="{
|
|
20
26
|
parts: [
|
|
21
27
|
'/activeNavigationTarget',
|
|
22
28
|
'/appSearch/searchTerm',
|
|
@@ -29,10 +35,13 @@
|
|
|
29
35
|
'/appSearch/totalCount'
|
|
30
36
|
], formatter: '.formatter.formatAppSearchTitle' }">
|
|
31
37
|
<layoutData>
|
|
32
|
-
<OverflowToolbarLayoutData
|
|
38
|
+
<OverflowToolbarLayoutData
|
|
39
|
+
minWidth="6rem"
|
|
40
|
+
shrinkable="true"
|
|
41
|
+
priority="High" />
|
|
33
42
|
</layoutData>
|
|
34
43
|
</Title>
|
|
35
|
-
<ToolbarSpacer/>
|
|
44
|
+
<ToolbarSpacer />
|
|
36
45
|
|
|
37
46
|
<!-- Add 'search=".onSearch"' for server side searching -->
|
|
38
47
|
<SearchField
|
|
@@ -41,7 +50,11 @@
|
|
|
41
50
|
placeholder="{i18n>ContentFinder.AppSearch.SearchPlaceholder}"
|
|
42
51
|
search=".onSearch">
|
|
43
52
|
<layoutData>
|
|
44
|
-
<OverflowToolbarLayoutData
|
|
53
|
+
<OverflowToolbarLayoutData
|
|
54
|
+
minWidth="6rem"
|
|
55
|
+
maxWidth="13.75rem"
|
|
56
|
+
shrinkable="true"
|
|
57
|
+
priority="NeverOverflow" />
|
|
45
58
|
</layoutData>
|
|
46
59
|
</SearchField>
|
|
47
60
|
<ToggleButton
|
|
@@ -53,18 +66,21 @@
|
|
|
53
66
|
tooltip="{i18n>ContentFinder.AppSearch.Button.Tooltip.ShowSelected}"
|
|
54
67
|
press=".onShowSelectedPressed">
|
|
55
68
|
<layoutData>
|
|
56
|
-
<OverflowToolbarLayoutData
|
|
69
|
+
<OverflowToolbarLayoutData
|
|
70
|
+
shrinkable="false"
|
|
71
|
+
priority="Low" />
|
|
57
72
|
</layoutData>
|
|
58
73
|
</ToggleButton>
|
|
59
74
|
</OverflowToolbar>
|
|
60
75
|
</l:fixContent>
|
|
61
76
|
<l:flexContent>
|
|
62
77
|
<Page
|
|
78
|
+
id="contentPage"
|
|
63
79
|
showHeader="false"
|
|
64
80
|
class="sapUiResponsiveContentPadding"
|
|
65
81
|
busy="{= !${/appSearch/visualizationsLoaded}}">
|
|
66
82
|
<f:GridList
|
|
67
|
-
id="
|
|
83
|
+
id="tiles"
|
|
68
84
|
includeItemInSelection="true"
|
|
69
85
|
mode="MultiSelect"
|
|
70
86
|
growing="true"
|
|
@@ -80,16 +96,17 @@
|
|
|
80
96
|
<grid:GridSettings
|
|
81
97
|
gridTemplateColumns="repeat(auto-fill, 19.0625rem)"
|
|
82
98
|
gridAutoRows="12.75rem"
|
|
83
|
-
gridGap="1rem"
|
|
84
|
-
/>
|
|
99
|
+
gridGap="1rem" />
|
|
85
100
|
</grid:layout>
|
|
86
101
|
</grid:GridResponsiveLayout>
|
|
87
102
|
</f:customLayout>
|
|
88
|
-
<core:Fragment
|
|
103
|
+
<core:Fragment
|
|
104
|
+
id="tilesBox"
|
|
105
|
+
fragmentName="sap.ushell.components.contentFinder.view.AppSearchBox"
|
|
106
|
+
type="XML" />
|
|
89
107
|
</f:GridList>
|
|
90
|
-
|
|
91
108
|
<f:GridList
|
|
92
|
-
id="
|
|
109
|
+
id="cards"
|
|
93
110
|
includeItemInSelection="true"
|
|
94
111
|
mode="SingleSelectMaster"
|
|
95
112
|
growing="true"
|
|
@@ -105,12 +122,14 @@
|
|
|
105
122
|
<grid:GridSettings
|
|
106
123
|
gridTemplateColumns="repeat(auto-fill, 19.0625rem)"
|
|
107
124
|
gridAutoRows="12.75rem"
|
|
108
|
-
gridGap="1rem"
|
|
109
|
-
/>
|
|
125
|
+
gridGap="1rem" />
|
|
110
126
|
</grid:layout>
|
|
111
127
|
</grid:GridResponsiveLayout>
|
|
112
128
|
</f:customLayout>
|
|
113
|
-
<core:Fragment
|
|
129
|
+
<core:Fragment
|
|
130
|
+
id="cardsBox"
|
|
131
|
+
fragmentName="sap.ushell.components.contentFinder.view.AppSearchBox"
|
|
132
|
+
type="XML" />
|
|
114
133
|
</f:GridList>
|
|
115
134
|
</Page>
|
|
116
135
|
</l:flexContent>
|
|
@@ -17,12 +17,15 @@
|
|
|
17
17
|
verticalScrolling="false"
|
|
18
18
|
afterClose=".onClose">
|
|
19
19
|
<customHeader>
|
|
20
|
-
<OverflowToolbar>
|
|
21
|
-
<Button
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
20
|
+
<OverflowToolbar id="contentFinderHeaderToolbar">
|
|
21
|
+
<Button
|
|
22
|
+
id="contentFinderBackButton"
|
|
23
|
+
icon="sap-icon://nav-back"
|
|
24
|
+
visible="{= ${/activeNavigationTarget} !== ${/navigationTargets/widgetGallery} && !${/restrictedMode}}"
|
|
25
|
+
press=".onBackButtonPressed" />
|
|
26
|
+
<Title
|
|
27
|
+
id="headerTitle"
|
|
28
|
+
text="{
|
|
26
29
|
parts: [
|
|
27
30
|
'/activeNavigationTarget'
|
|
28
31
|
], formatter: '.formatter.formatDialogTitle' }" />
|
|
@@ -37,6 +40,8 @@
|
|
|
37
40
|
enableScrolling="false"
|
|
38
41
|
showHeader="false">
|
|
39
42
|
<mvc:XMLView
|
|
43
|
+
id="contentFinderWidgetGalleryView"
|
|
44
|
+
async="true"
|
|
40
45
|
height="100%"
|
|
41
46
|
viewName="sap.ushell.components.contentFinder.view.WidgetGallery" />
|
|
42
47
|
</Page>
|
|
@@ -45,27 +50,31 @@
|
|
|
45
50
|
enableScrolling="false"
|
|
46
51
|
showHeader="false">
|
|
47
52
|
<mvc:XMLView
|
|
53
|
+
id="contentFinderAppSearchView"
|
|
54
|
+
async="true"
|
|
48
55
|
height="100%"
|
|
49
56
|
viewName="sap.ushell.components.contentFinder.view.AppSearch" />
|
|
50
57
|
</Page>
|
|
51
58
|
</NavContainer>
|
|
52
59
|
</content>
|
|
53
60
|
<beginButton>
|
|
54
|
-
<Button
|
|
55
|
-
|
|
56
|
-
|
|
61
|
+
<Button
|
|
62
|
+
id="contentFinderAddButton"
|
|
63
|
+
type="Emphasized"
|
|
64
|
+
visible="{
|
|
57
65
|
parts: [
|
|
58
66
|
'/activeNavigationTarget'
|
|
59
67
|
], formatter: '.formatter.addButtonIsVisibleInAppSearch' }"
|
|
60
|
-
|
|
68
|
+
text="{parts: [{path: 'i18n>ContentFinder.Button.Add'}, {path: '/appSearch/selectedAppCount'}],
|
|
61
69
|
formatter: 'formatMessage' }"
|
|
62
|
-
|
|
63
|
-
|
|
70
|
+
enabled="{= ${/appSearch/selectedAppCount} > 0}"
|
|
71
|
+
press=".onAddButtonPressed" />
|
|
64
72
|
</beginButton>
|
|
65
73
|
<endButton>
|
|
66
|
-
<Button
|
|
67
|
-
|
|
68
|
-
|
|
74
|
+
<Button
|
|
75
|
+
id="contentFinderCancelButton"
|
|
76
|
+
text="{i18n>ContentFinder.Button.Cancel}"
|
|
77
|
+
press=".onCancelButtonPressed" />
|
|
69
78
|
</endButton>
|
|
70
79
|
</Dialog>
|
|
71
80
|
</mvc:View>
|
|
@@ -6,51 +6,79 @@
|
|
|
6
6
|
xmlns:cssgrid="sap.ui.layout.cssgrid"
|
|
7
7
|
xmlns:f="sap.f"
|
|
8
8
|
controllerName="sap.ushell.components.contentFinder.controller.WidgetGallery"
|
|
9
|
-
id="
|
|
9
|
+
id="contentFinderWidgetGallery"
|
|
10
10
|
height="100%">
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
11
|
+
<VBox
|
|
12
|
+
id="widgetGroups"
|
|
13
|
+
items="{path: '/widgetGallery/widgetGroups'}"
|
|
14
|
+
class="sapUiMediumMargin">
|
|
15
|
+
<VBox
|
|
16
|
+
id="widgetGroup"
|
|
17
|
+
class="sapUiTinyMarginBottom">
|
|
18
|
+
<OverflowToolbar
|
|
19
|
+
id="widgetGroupToolbar"
|
|
20
|
+
asyncMode="true"
|
|
21
|
+
style="Clear"
|
|
22
|
+
class="contentFinderToolbar"
|
|
23
|
+
visible="{= !!${title}}">
|
|
24
|
+
<Title
|
|
25
|
+
id="title"
|
|
26
|
+
titleStyle="H6"
|
|
27
|
+
text="{title}" />
|
|
28
|
+
</OverflowToolbar>
|
|
29
|
+
<f:GridList
|
|
30
|
+
id="contentFinderWidgets"
|
|
31
|
+
mode="None"
|
|
32
|
+
items="{
|
|
22
33
|
path: 'widgets',
|
|
23
34
|
templateShareable: false,
|
|
24
35
|
key: 'id'
|
|
25
36
|
}">
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
</cssgrid:
|
|
34
|
-
</
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
37
|
+
<f:customLayout>
|
|
38
|
+
<cssgrid:GridResponsiveLayout containerQuery="true">
|
|
39
|
+
<cssgrid:layout>
|
|
40
|
+
<cssgrid:GridSettings
|
|
41
|
+
gridGap="1.5rem"
|
|
42
|
+
gridTemplateColumns="repeat(2, calc(50% - 0.75rem))"
|
|
43
|
+
gridAutoRows="5rem" />
|
|
44
|
+
</cssgrid:layout>
|
|
45
|
+
</cssgrid:GridResponsiveLayout>
|
|
46
|
+
</f:customLayout>
|
|
47
|
+
<f:GridListItem
|
|
48
|
+
id="widget"
|
|
49
|
+
type="Active"
|
|
50
|
+
press=".onSelectWidgetType">
|
|
51
|
+
<HBox
|
|
52
|
+
id="widgetContent"
|
|
53
|
+
alignItems="Center"
|
|
54
|
+
height="100%"
|
|
55
|
+
class="sapUiSmallMarginEnd">
|
|
38
56
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
57
|
+
<Avatar
|
|
58
|
+
id="avatar"
|
|
59
|
+
src="{icon}"
|
|
60
|
+
class="sapUiSmallMarginEnd sapUiSmallMarginBegin"
|
|
61
|
+
backgroundColor="Placeholder">
|
|
62
|
+
<layoutData>
|
|
63
|
+
<FlexItemData maxHeight="3rem" />
|
|
64
|
+
</layoutData>
|
|
65
|
+
</Avatar>
|
|
45
66
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
67
|
+
<VBox id="widgetTitleContent">
|
|
68
|
+
<Title
|
|
69
|
+
id="widgetTitle"
|
|
70
|
+
text="{title}"
|
|
71
|
+
titleStyle="H6"
|
|
72
|
+
wrapping="true" />
|
|
73
|
+
<Label
|
|
74
|
+
id="widgetDescription"
|
|
75
|
+
text="{description}"
|
|
76
|
+
visible="{= !!${description}}"
|
|
77
|
+
wrapping="true" />
|
|
78
|
+
</VBox>
|
|
79
|
+
</HBox>
|
|
80
|
+
</f:GridListItem>
|
|
81
|
+
</f:GridList>
|
|
82
|
+
</VBox>
|
|
55
83
|
</VBox>
|
|
56
84
|
</mvc:View>
|
|
@@ -17,7 +17,7 @@ sap.ui.define([
|
|
|
17
17
|
|
|
18
18
|
// use inline declaration instead of component.json to save 1 round trip
|
|
19
19
|
metadata: {
|
|
20
|
-
version: "1.
|
|
20
|
+
version: "1.118.0",
|
|
21
21
|
library: "sap.ushell",
|
|
22
22
|
dependencies: {
|
|
23
23
|
libs: ["sap.m", "sap.ui.vbm", "sap.suite.ui.commons", "sap.ui.layout", "sap.viz"],
|