@sapui5/sap.ushell 1.132.1 → 1.134.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 +1 -1
- package/src/main/js/sap/ushell/.library +3 -2
- package/src/main/js/sap/ushell/AppInfoParameters.js +18 -4
- package/src/main/js/sap/ushell/ApplicationType/UrlPostProcessing.js +217 -0
- package/src/main/js/sap/ushell/ApplicationType/guiResolution.js +1 -1
- package/src/main/js/sap/ushell/ApplicationType/systemAlias.js +4 -7
- package/src/main/js/sap/ushell/ApplicationType/ui5Resolution.js +1 -1
- package/src/main/js/sap/ushell/ApplicationType/urlResolution.js +1 -1
- package/src/main/js/sap/ushell/ApplicationType/urlTemplateResolution.js +14 -7
- package/src/main/js/sap/ushell/ApplicationType/utils.js +1 -1
- package/src/main/js/sap/ushell/ApplicationType/wcfResolution.js +1 -1
- package/src/main/js/sap/ushell/ApplicationType/wdaResolution.js +1 -1
- package/src/main/js/sap/ushell/ApplicationType.js +1 -1
- package/src/main/js/sap/ushell/CanvasShapesManager.js +1 -1
- package/src/main/js/sap/ushell/Config/utils.js +1 -1
- package/src/main/js/sap/ushell/Config.js +1 -1
- package/src/main/js/sap/ushell/Container.js +1 -1
- package/src/main/js/sap/ushell/EventHub.js +1 -1
- package/src/main/js/sap/ushell/Fiori20Adapter.js +2 -2
- package/src/main/js/sap/ushell/Fiori20AdapterTest.js +2 -2
- package/src/main/js/sap/ushell/Layout.js +1 -1
- package/src/main/js/sap/ushell/NWBCInterface.js +11 -5
- package/src/main/js/sap/ushell/SessionHandler.js +139 -97
- package/src/main/js/sap/ushell/System.js +1 -1
- package/src/main/js/sap/ushell/TechnicalParameters.js +2 -2
- package/src/main/js/sap/ushell/UI5ComponentType.js +1 -1
- package/src/main/js/sap/ushell/UIActions.js +1 -1
- package/src/main/js/sap/ushell/URLTemplateProcessor/DefinitionParameterSetBuilder.js +2 -2
- package/src/main/js/sap/ushell/URLTemplateProcessor/DependencyGraph.js +2 -2
- package/src/main/js/sap/ushell/URLTemplateProcessor/Functions.js +2 -2
- package/src/main/js/sap/ushell/URLTemplateProcessor/Resolvers.js +2 -2
- package/src/main/js/sap/ushell/URLTemplateProcessor/TemplateParameterParser.js +2 -2
- package/src/main/js/sap/ushell/URLTemplateProcessor/utils.js +2 -2
- package/src/main/js/sap/ushell/URLTemplateProcessor.js +2 -2
- package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +2 -2
- package/src/main/js/sap/ushell/Ui5ServiceFactory.js +2 -2
- package/src/main/js/sap/ushell/User.js +82 -12
- package/src/main/js/sap/ushell/UserActivityLog.js +1 -1
- package/src/main/js/sap/ushell/adapters/AppVariantPersonalizationAdapter.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 +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +22 -6
- package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/MenuAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/PersonalizationV2Adapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/Settings/UserLanguageAndRegion/UserLanguageAndRegion.controller.js +251 -0
- package/src/main/js/sap/ushell/adapters/cdm/Settings/UserLanguageAndRegion/UserLanguageAndRegion.view.xml +69 -0
- package/src/main/js/sap/ushell/adapters/cdm/Settings/UserLanguageAndRegion/UserLanguageAndRegionEntry.js +67 -0
- package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/_Personalization/internals.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/v3/FlpLaunchPageAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +2 -2
- package/src/main/js/sap/ushell/adapters/cdm/v3/utilsCdm.js +1 -1
- package/src/main/js/sap/ushell/adapters/cep/MenuAdapter.js +10 -5
- package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionInternalAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/FlpLaunchPageAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/MenuAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionInternalAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/PagePersistenceAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/PersonalizationAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/PersonalizationV2Adapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +2 -2
- package/src/main/js/sap/ushell/api/BootstrapObserver.js +1 -1
- package/src/main/js/sap/ushell/api/Copilot.js +1 -1
- package/src/main/js/sap/ushell/api/Inbox.js +1 -1
- package/src/main/js/sap/ushell/api/NewExperience/CustomOverflowListItem.js +1 -1
- package/src/main/js/sap/ushell/api/NewExperience.js +1 -1
- package/src/main/js/sap/ushell/api/RTA.js +1 -1
- package/src/main/js/sap/ushell/api/S4MyHome.js +1 -1
- package/src/main/js/sap/ushell/api/SAPBusinessClient.js +129 -0
- package/src/main/js/sap/ushell/api/common/ComponentInstantiation.js +1 -1
- package/src/main/js/sap/ushell/api/workpage/Designtime.js +1 -1
- package/src/main/js/sap/ushell/api/workpage/Runtime.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/neo/AppInfoService.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/neo/AppRuntimeNeo.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/neo/ProxyAppUtils.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/AppCommunicationMgr.js +24 -5
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntimeContext.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntimeService.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/BusyIndicator.css +26 -0
- package/src/main/js/sap/ushell/appRuntime/ui5/BusyIndicator.js +16 -21
- package/src/main/js/sap/ushell/appRuntime/ui5/SessionHandlerAgent.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/libsPreload.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/performance/FesrEnhancer.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/AppLifeCycleUtils.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/BaseRTAPluginStatus.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/CheckConditions.js +4 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Renderer.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Trigger.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/Component.js +4 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/Component.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/scriptAgent/Component.js +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 +1 -1
- 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 +3 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycle.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycleAgent.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/services/AppState.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Bookmark.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/BookmarkV2.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/CommonDataModel.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Container.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/CrossApplicationNavigation.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Extension/Item.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Extension.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/FrameBoundExtension.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/LaunchPage.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/MessageBroker.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolution.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolutionInternal.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Navigation.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/ReferenceResolver.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigation.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigationInternal.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellUIService.js +11 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/services/UserDefaultParameters.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/services/UserInfo.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/ContainerAdapter.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/EmptyAdapter.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +2 -2
- package/src/main/js/sap/ushell/appRuntime/ui5/ui/UIProxy.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/EventProcessor.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/FLPLoader.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/FLPScheduler.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/LoadingConfiguration.json +4 -0
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/StepConfiguration.json +35 -3
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/logger.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/state.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/cdm/cdm-def-dev.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/cdm/cdm-def-loader.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/cdm/cdm-def.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/cdm/cdm.boot.task.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/cdm/cdm.constants.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/cdm.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.boot.path.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.boot.script.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.boot.task.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5.extractLibs.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5language.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5theme.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ushell.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.constants.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +68 -6
- package/src/main/js/sap/ushell/bootstrap/common/common.debug.mode.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.load.bootstrapExtension.js +1 -1
- 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 +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.load.model.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.load.script.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.override.registermodulepath.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.read.metatags.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.read.ui5theme.from.config.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.read.ushell.config.from.url.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.util.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/sandbox2/sandbox.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/sandbox2/sandboxBootTask.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/sandbox2.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/ui5loader-config.js +1 -1
- package/src/main/js/sap/ushell/components/CatalogsManager.js +1 -1
- package/src/main/js/sap/ushell/components/ComponentKeysHandler.js +3 -3
- package/src/main/js/sap/ushell/components/DestroyHelper.js +1 -1
- package/src/main/js/sap/ushell/components/GroupsHelper.js +1 -1
- package/src/main/js/sap/ushell/components/HomepageManager.js +1 -1
- package/src/main/js/sap/ushell/components/MessagingHelper.js +1 -1
- package/src/main/js/sap/ushell/components/SharedComponentUtils.js +1 -1
- package/src/main/js/sap/ushell/components/_HomepageManager/DashboardLoadingManager.js +1 -1
- package/src/main/js/sap/ushell/components/_HomepageManager/PagingManager.js +1 -1
- package/src/main/js/sap/ushell/components/_HomepageManager/PersistentPageOperationAdapter.js +1 -1
- package/src/main/js/sap/ushell/components/_HomepageManager/TransientPageOperationAdapter.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/AppFinder.controller.js +11 -3
- package/src/main/js/sap/ushell/components/appfinder/AppFinderView.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/Catalog.controller.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/CatalogView.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/Component.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/EasyAccess.controller.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/EasyAccessView.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/GroupListPopover.controller.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/GroupListPopoverView.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/HierarchyApps.controller.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/HierarchyAppsView.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/HierarchyFolders.controller.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/HierarchyFoldersView.js +1 -1
- package/src/main/js/sap/ushell/components/appfinder/VisualizationOrganizerHelper.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 +713 -910
- package/src/main/js/sap/ushell/components/applicationIntegration/ApplicationContainer.js +272 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/ApplicationContainerCache.js +229 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/ApplicationContainerRenderer.js +35 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/IframeApplicationContainer.js +372 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/IframeApplicationContainerRenderer.js +296 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/KeepAliveApps.js +68 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/PostMessageManager/AppruntimeHandler.js +120 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/PostMessageManager/ExtensionItems.js +143 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/PostMessageManager/LifecycleHandler.js +618 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/PostMessageManager/MessageBrokerHandler.js +64 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/PostMessageManager/NWBCHandler.js +83 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/PostMessageManager/ServiceHandler.js +1503 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/PostMessageManager.js +638 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/PostMessagePluginInterface.js +152 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/Storage.js +21 -50
- package/src/main/js/sap/ushell/components/applicationIntegration/UI5ApplicationContainer.js +168 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/UI5ApplicationContainerRenderer.js +41 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/application/Application.js +30 -679
- package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxHandler.js +13 -390
- package/src/main/js/sap/ushell/components/applicationIntegration/application/BlueBoxesCache.js +8 -249
- package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPI.js +9 -2365
- package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageAPIInterface.js +10 -127
- package/src/main/js/sap/ushell/components/applicationIntegration/application/PostMessageUtils.js +10 -177
- package/src/main/js/sap/ushell/components/applicationIntegration/application/WebGUIStatefulHandler.js +10 -74
- package/src/main/js/sap/ushell/components/applicationIntegration/configuration/AppMeta.js +21 -12
- package/src/main/js/sap/ushell/components/applicationIntegration/contracts/EmbeddedUI5Handler.js +176 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/contracts/StatefulContainerV1Handler.js +91 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/contracts/StatefulContainerV2Handler.js +175 -0
- package/src/main/js/sap/ushell/components/applicationIntegration/relatedServices/RelatedServices.js +13 -74
- package/src/main/js/sap/ushell/components/applicationIntegrationOld/AppLifeCycle.js +1926 -0
- package/src/main/js/sap/ushell/components/applicationIntegrationOld/Storage.js +62 -0
- package/src/main/js/sap/ushell/components/applicationIntegrationOld/application/Application.js +709 -0
- package/src/main/js/sap/ushell/components/applicationIntegrationOld/application/BlueBoxHandler.js +406 -0
- package/src/main/js/sap/ushell/components/applicationIntegrationOld/application/BlueBoxesCache.js +263 -0
- package/src/main/js/sap/ushell/components/applicationIntegrationOld/application/PostMessageAPI.js +2382 -0
- package/src/main/js/sap/ushell/components/applicationIntegrationOld/application/PostMessageAPIInterface.js +143 -0
- package/src/main/js/sap/ushell/components/applicationIntegrationOld/application/PostMessageUtils.js +192 -0
- package/src/main/js/sap/ushell/components/applicationIntegrationOld/application/WebGUIStatefulHandler.js +90 -0
- package/src/main/js/sap/ushell/components/applicationIntegrationOld/configuration/AppMeta.js +193 -0
- package/src/main/js/sap/ushell/components/applicationIntegrationOld/relatedServices/RelatedServices.js +91 -0
- package/src/main/js/sap/ushell/components/cards/Card.controller.js +1 -1
- package/src/main/js/sap/ushell/components/cards/Configuration.controller.js +1 -1
- package/src/main/js/sap/ushell/components/cards/ManifestPropertyHelper.js +1 -1
- 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 +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/Component.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/Config.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/cards/searchresultwidget/Extension.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/AdvancedFormatters.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/Edition.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/EditionAdvanced.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/EditionStandard.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/appendStyleVars.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Category.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Highlighter.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/Paginator.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/All.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Application.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Event.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/People.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/Workpage.js +1 -1
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/i18n/i18n_sk.properties +1 -1
- package/src/main/js/sap/ushell/components/container/ApplicationContainer.js +38 -22
- package/src/main/js/sap/ushell/components/container/IframePOSTUtils.js +5 -1
- package/src/main/js/sap/ushell/components/contentFinder/CatalogService.js +2 -2
- package/src/main/js/sap/ushell/components/contentFinder/Component.js +17 -7
- package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +2 -2
- package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +2 -2
- package/src/main/js/sap/ushell/components/contentFinder/dialog/Component.js +2 -2
- package/src/main/js/sap/ushell/components/contentFinder/dialog/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/model/GraphQLListBinding.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/model/GraphQLModel.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/model/formatter.js +32 -8
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources.properties +6 -2
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ar.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_bg.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ca.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cnr.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cs.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cy.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_da.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_de.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_el.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_GB.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_US_saprigi.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_es.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_es_MX.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_et.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fi.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fr.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fr_CA.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hi.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hr.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hu.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_id.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_it.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_iw.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ja.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_kk.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ko.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_lt.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_lv.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_mk.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ms.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_nl.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_no.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pl.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pt.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pt_PT.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ro.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ru.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sh.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sk.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sl.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sr.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sv.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_th.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_tr.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_uk.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_vi.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_zh_CN.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_zh_TW.properties +5 -14
- package/src/main/js/sap/ushell/components/contentFinder/view/VisualizationsNoDataIllustratedMessage.fragment.xml +6 -3
- package/src/main/js/sap/ushell/components/contentFinderStandalone/Component.js +2 -2
- package/src/main/js/sap/ushell/components/contentFinderStandalone/controller/ContentFinderStandalone.controller.js +54 -14
- package/src/main/js/sap/ushell/components/contentFinderStandalone/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources.properties +6 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_ar.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_bg.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_ca.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_cnr.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_cs.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_cy.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_da.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_de.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_el.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_en.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_en_GB.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_en_US_saprigi.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_es.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_es_MX.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_et.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_fi.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_fr.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_fr_CA.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_hi.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_hr.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_hu.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_id.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_it.properties +4 -1
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_iw.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_ja.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_kk.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_ko.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_lt.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_lv.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_mk.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_ms.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_nl.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_no.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_pl.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_pt.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_pt_PT.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_ro.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_ru.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_sh.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_sk.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_sl.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_sr.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_sv.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_th.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_tr.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_uk.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_vi.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_zh_CN.properties +3 -0
- package/src/main/js/sap/ushell/components/contentFinderStandalone/resources/resources_zh_TW.properties +3 -0
- package/src/main/js/sap/ushell/components/factsheet/Component.js +2 -2
- package/src/main/js/sap/ushell/components/factsheet/annotation/Mapping.js +1 -1
- package/src/main/js/sap/ushell/components/factsheet/controls/PictureTile.js +1 -1
- package/src/main/js/sap/ushell/components/factsheet/controls/PictureTileRenderer.js +1 -1
- package/src/main/js/sap/ushell/components/factsheet/controls/PictureViewer.js +1 -1
- package/src/main/js/sap/ushell/components/factsheet/controls/PictureViewerItem.js +1 -1
- package/src/main/js/sap/ushell/components/factsheet/controls/PictureViewerRenderer.js +1 -1
- package/src/main/js/sap/ushell/components/factsheet/factory/ThingInspector.js +1 -1
- package/src/main/js/sap/ushell/components/factsheet/tools/ODataUrlTemplating.js +1 -1
- package/src/main/js/sap/ushell/components/factsheet/views/ThingViewer.controller.js +1 -1
- package/src/main/js/sap/ushell/components/factsheet/views/ThingViewer.view.js +1 -1
- package/src/main/js/sap/ushell/components/homeApp/error/Component.js +1 -1
- package/src/main/js/sap/ushell/components/homeApp/error/HomeAppError.controller.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/ActionMode.js +2 -2
- package/src/main/js/sap/ushell/components/homepage/Component.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/DashboardContent.controller.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +2 -2
- package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +2 -2
- package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +2 -2
- package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/pages/ActionMode.js +2 -2
- package/src/main/js/sap/ushell/components/pages/Component.js +2 -2
- package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +2 -2
- package/src/main/js/sap/ushell/components/pages/StateManager.js +1 -1
- package/src/main/js/sap/ushell/components/pages/controller/ImportDialog.controller.js +1 -1
- package/src/main/js/sap/ushell/components/pages/controller/MyHome.controller.js +1 -1
- package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +141 -147
- package/src/main/js/sap/ushell/components/pages/controller/PagesAndSpaceId.js +1 -1
- package/src/main/js/sap/ushell/components/pages/fragment/DialogPageNotExists.fragment.xml +5 -4
- package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/runtimeSwitcher/Component.js +1 -1
- package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +2 -2
- package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/FloatingContainer/Component.js +1 -1
- package/src/main/js/sap/ushell/components/shell/FloatingContainer/controls/FloatingContainer.js +1 -1
- package/src/main/js/sap/ushell/components/shell/FloatingContainer/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/MenuBar/Component.js +1 -1
- package/src/main/js/sap/ushell/components/shell/MenuBar/controller/MenuBar.controller.js +1 -2
- package/src/main/js/sap/ushell/components/shell/MenuBar/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/Component.js +39 -4
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +30 -63
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenuButton.controller.js +118 -0
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/view/NavigationBarMenu.view.xml +64 -17
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/view/NavigationBarMenuButton.view.xml +24 -0
- package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +2 -2
- package/src/main/js/sap/ushell/components/shell/Notifications/Notifications.controller.js +1 -1
- package/src/main/js/sap/ushell/components/shell/PostLoadingHeaderEnhancement/Component.js +1 -1
- package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +2 -2
- package/src/main/js/sap/ushell/components/shell/Search/Component.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Search/ESearch.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 +2 -2
- package/src/main/js/sap/ushell/components/shell/SearchCEP/ProvidersExecuter.js +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchCEP.controller.js +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +2 -2
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +2 -2
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +2 -2
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchServiceProvider.js +2 -2
- package/src/main/js/sap/ushell/components/shell/Settings/Component.js +19 -16
- package/src/main/js/sap/ushell/components/shell/Settings/ContentWrapper.fragment.xml +3 -2
- 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 +46 -22
- package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +99 -50
- package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.view.xml +11 -2
- package/src/main/js/sap/ushell/components/shell/Settings/appearance/AppearanceEntry.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/homepage/HomepageEntry.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/notifications/NotificationsEntry.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/notifications/NotificationsSetting.controller.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/search/Search.controller.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/search/SearchEntry.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/spaces/SpacesEntry.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/spaces/SpacesSetting.controller.js +1 -1
- 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/userActivities/UserActivitiesEntry.js +1 -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/userDefaults/Component.js +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/UserDefaultsEntry.js +1 -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/ExtendedValueDialog.controller.js +1 -1
- 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 +1 -1
- package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/UserLanguageRegionEntry.js +1 -1
- package/src/main/js/sap/ushell/components/shell/SideNavigation/Component.js +206 -30
- package/src/main/js/sap/ushell/components/shell/SideNavigation/controller/SideNavigation.controller.js +79 -314
- package/src/main/js/sap/ushell/components/shell/SideNavigation/css/style.css +3 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/fragment/Popover.fragment.xml +13 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/manifest.json +8 -1
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/AllSpaces.js +52 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/AppFinder.js +48 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/Favorites.js +222 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/GenericFixedNavigationListProvider.js +142 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/GenericNavigationListProvider.js +186 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/MyHome.js +73 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/NavigationHelper.js +79 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/RecentActivity.js +141 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/Spaces.js +288 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/SpacesNavigationListProvider.js +79 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources.properties +21 -4
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ar.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_bg.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ca.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_cnr.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_cs.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_cy.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_da.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_de.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_el.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_en.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_en_GB.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_en_US_saprigi.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_es.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_es_MX.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_et.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_fi.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_fr.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_fr_CA.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_hi.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_hr.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_hu.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_id.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_it.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_iw.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ja.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_kk.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ko.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_lt.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_lv.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_mk.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ms.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_nl.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_no.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_pl.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_pt.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_pt_PT.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ro.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ru.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sh.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sk.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sl.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sr.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sv.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_th.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_tr.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_uk.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_vi.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_zh_CN.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_zh_TW.properties +11 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/view/Main.view.xml +15 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/view/SideNavigation.view.xml +33 -16
- package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +2 -2
- package/src/main/js/sap/ushell/components/shell/UserActionsMenu/UserActionsMenu.controller.js +153 -19
- package/src/main/js/sap/ushell/components/shell/UserActionsMenu/UserActionsMenu.fragment.xml +33 -0
- package/src/main/js/sap/ushell/components/shell/UserActionsMenu/UserActionsMenuPopover.fragment.xml +42 -4
- package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +2 -2
- package/src/main/js/sap/ushell/components/tiles/action/ActionTile.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/action/Configuration.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/applauncher/Component.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/applauncher/Configuration.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTile.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTile.view.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/Component.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/Configuration.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/DynamicTile.controller.js +1 -3
- package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/DynamicTile.view.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/Component.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.view.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/Component.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.view.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/generic.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorArea/AreaChartTile.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorArea/AreaChartTile.view.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorDual/DualTile.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorDual/DualTile.view.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorDualComparison/DualComparison.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorDualComparison/DualComparison.view.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/indicatorDualContribution/DualContribution.view.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorDualDeviation/DualDeviation.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorDualDeviation/DualDeviation.view.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorDualTrend/DualTrend.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorDualTrend/DualTrend.view.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorHarveyBall/HarveyBallTile.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorHarveyBall/HarveyBallTile.view.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/cache.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/indicatorTileHelper.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/oData4Analytics.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/smartBusinessUtil.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorcomparison/ComparisonTile.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatorcomparison/ComparisonTile.view.js +1 -1
- 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 +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatordeviation/DeviationTile.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatordeviation/DeviationTile.view.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatornumeric/NumericTile.controller.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/indicatornumeric/NumericTile.view.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/sbtilecontent.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/utils.js +3 -4
- package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +2 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +2 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +2 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +2 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.layout.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +2 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +2 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +2 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +2 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnRenderer.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +2 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRenderer.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +2 -2
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRowRenderer.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ar.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_bg.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ca.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cnr.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cs.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_cy.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_da.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_de.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_el.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_GB.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_en_US_saprigi.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_es.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_es_MX.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_et.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fi.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fr.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_fr_CA.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hi.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hr.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_hu.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_id.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_it.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_iw.properties +4 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ja.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_kk.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ko.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_lt.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_lv.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_mk.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ms.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_nl.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_no.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pl.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pt.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_pt_PT.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ro.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_ru.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sh.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sk.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sl.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sr.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_sv.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_th.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_tr.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_uk.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_vi.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_zh_CN.properties +3 -0
- package/src/main/js/sap/ushell/components/workPageBuilder/resources/resources_zh_TW.properties +3 -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 +2 -2
- package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
- package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +2 -2
- package/src/main/js/sap/ushell/functionBindPrototype.js +1 -1
- package/src/main/js/sap/ushell/iconfonts.js +1 -1
- package/src/main/js/sap/ushell/library.js +68 -2
- package/src/main/js/sap/ushell/navigationMode.js +2 -2
- package/src/main/js/sap/ushell/override.js +1 -1
- package/src/main/js/sap/ushell/performance/FesrEnhancer.js +1 -1
- package/src/main/js/sap/ushell/performance/ShellAnalytics.js +2 -2
- package/src/main/js/sap/ushell/performance/StatisticalRecord.js +2 -2
- package/src/main/js/sap/ushell/plugins/BaseRTAPlugin.js +1 -1
- package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +2 -2
- package/src/main/js/sap/ushell/plugins/appwarmup/ShellUIService.js +1 -1
- package/src/main/js/sap/ushell/plugins/ghostapp/Component.js +1 -1
- package/src/main/js/sap/ushell/plugins/ghostapp/FakeModel.js +1 -1
- package/src/main/js/sap/ushell/plugins/rta/Component.js +16 -1
- package/src/main/js/sap/ushell/plugins/rta-personalize/Component.js +1 -1
- package/src/main/js/sap/ushell/renderer/AccessKeysHandler.js +4 -2
- package/src/main/js/sap/ushell/renderer/History.js +1 -1
- package/src/main/js/sap/ushell/renderer/LogonFrameProvider.js +1 -1
- package/src/main/js/sap/ushell/renderer/Renderer.js +3 -3
- package/src/main/js/sap/ushell/renderer/Shell.controller.js +392 -155
- package/src/main/js/sap/ushell/renderer/Shell.view.js +1 -1
- package/src/main/js/sap/ushell/renderer/ShellLayout.js +10 -2
- package/src/main/js/sap/ushell/renderer/allMyApps/AllMyApps.controller.js +1 -1
- package/src/main/js/sap/ushell/renderer/allMyApps/AllMyAppsManager.js +1 -1
- package/src/main/js/sap/ushell/renderer/resources/resources.properties +37 -8
- package/src/main/js/sap/ushell/renderer/resources/resources_ar.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_bg.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_ca.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_cnr.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_cs.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_cy.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_da.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_de.properties +12 -3
- package/src/main/js/sap/ushell/renderer/resources/resources_el.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_en.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_en_GB.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_en_US_saprigi.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_es.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_es_MX.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_et.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_fi.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_fr.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_fr_CA.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_hi.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_hr.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_hu.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_id.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_it.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_iw.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_ja.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_kk.properties +51 -42
- package/src/main/js/sap/ushell/renderer/resources/resources_ko.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_lt.properties +13 -4
- package/src/main/js/sap/ushell/renderer/resources/resources_lv.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_mk.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_ms.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_nl.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_no.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_pl.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_pt.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_pt_PT.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_ro.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_ru.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_sh.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_sk.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_sl.properties +13 -4
- package/src/main/js/sap/ushell/renderer/resources/resources_sr.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_sv.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_th.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_tr.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_uk.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_vi.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_zh_CN.properties +11 -2
- package/src/main/js/sap/ushell/renderer/resources/resources_zh_TW.properties +11 -2
- package/src/main/js/sap/ushell/renderer/search/searchComponent/Component.js +1 -1
- package/src/main/js/sap/ushell/renderer/search/searchComponent/controller/CEPSearchApp.controller.js +1 -1
- package/src/main/js/sap/ushell/renderer/search/searchComponent/controller/SearchApp.controller.js +1 -1
- 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 +1 -1
- package/src/main/js/sap/ushell/renderer/shellHeader/ShellHeader.controller.js +13 -7
- package/src/main/js/sap/ushell/renderer/utils.js +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/History.js +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/LogonFrameProvider.js +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/RendererExtensions.js +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/Shell.controller.js +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/Shell.view.js +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/allMyApps/AllMyAppsManager.js +1 -1
- package/src/main/js/sap/ushell/resources.js +1 -1
- package/src/main/js/sap/ushell/services/AllMyApps.js +1 -1
- package/src/main/js/sap/ushell/services/AppConfiguration.js +2 -2
- package/src/main/js/sap/ushell/services/AppLifeCycle.js +4 -3
- package/src/main/js/sap/ushell/services/AppState.js +2 -2
- package/src/main/js/sap/ushell/services/AppType.js +1 -1
- package/src/main/js/sap/ushell/services/Bookmark.js +2 -2
- package/src/main/js/sap/ushell/services/BookmarkV2.js +2 -2
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/Formatter.js +2 -2
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/InboundIndex.js +2 -2
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/InboundProvider.js +2 -2
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/ParameterMapping.js +1 -1
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/PrelaunchOperations.js +2 -2
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/Search.js +2 -2
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/StagedLogger.js +2 -2
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/SystemContext.js +2 -2
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/Utils.js +2 -2
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/VirtualInbounds.js +2 -2
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/XAppStateProcessing.js +2 -2
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +2 -2
- package/src/main/js/sap/ushell/services/CommonDataModel/PersonalizationProcessor.js +1 -1
- package/src/main/js/sap/ushell/services/CommonDataModel/SiteConverter.js +2 -2
- package/src/main/js/sap/ushell/services/CommonDataModel/vizTypeDefaults/VizTypeDefaults.js +2 -2
- package/src/main/js/sap/ushell/services/CommonDataModel.js +2 -13
- package/src/main/js/sap/ushell/services/Configuration.js +2 -2
- package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +2 -2
- package/src/main/js/sap/ushell/services/Container.js +1 -1
- package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +2 -2
- package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +2 -2
- package/src/main/js/sap/ushell/services/DarkModeSupport.js +15 -6
- package/src/main/js/sap/ushell/services/EndUserFeedback.js +1 -1
- package/src/main/js/sap/ushell/services/Extension/Item.js +2 -2
- package/src/main/js/sap/ushell/services/Extension.js +2 -2
- package/src/main/js/sap/ushell/services/FlpLaunchPage.js +2 -2
- package/src/main/js/sap/ushell/services/FrameBoundExtension/FloatingContainer.js +2 -2
- package/src/main/js/sap/ushell/services/FrameBoundExtension/Footer.js +2 -2
- package/src/main/js/sap/ushell/services/FrameBoundExtension/Item.js +2 -2
- package/src/main/js/sap/ushell/services/FrameBoundExtension/SidePane.js +2 -2
- package/src/main/js/sap/ushell/services/FrameBoundExtension/ToolArea.js +2 -2
- package/src/main/js/sap/ushell/services/FrameBoundExtension/UserSettingsEntry.js +63 -0
- package/src/main/js/sap/ushell/services/FrameBoundExtension.js +14 -10
- package/src/main/js/sap/ushell/services/LaunchPage.js +2 -2
- package/src/main/js/sap/ushell/services/Menu.js +2 -2
- package/src/main/js/sap/ushell/services/Message.js +2 -2
- package/src/main/js/sap/ushell/services/MessageBroker/MessageBrokerEngine.js +269 -143
- package/src/main/js/sap/ushell/services/MessageBroker.js +2 -2
- package/src/main/js/sap/ushell/services/MessageInternal.js +2 -2
- package/src/main/js/sap/ushell/services/NavTargetResolution.js +1 -1
- package/src/main/js/sap/ushell/services/NavTargetResolutionInternal.js +1 -1
- package/src/main/js/sap/ushell/services/Navigation/compatibility.js +2 -2
- package/src/main/js/sap/ushell/services/Navigation/utils.js +2 -2
- package/src/main/js/sap/ushell/services/Navigation.js +6 -6
- package/src/main/js/sap/ushell/services/NavigationDataProvider.js +2 -2
- package/src/main/js/sap/ushell/services/Notifications.js +1 -1
- package/src/main/js/sap/ushell/services/NotificationsV2.js +1 -1
- package/src/main/js/sap/ushell/services/PageBuilding.js +2 -2
- package/src/main/js/sap/ushell/services/PagePersistence.js +2 -2
- package/src/main/js/sap/ushell/services/PageReferencing.js +2 -2
- package/src/main/js/sap/ushell/services/Pages.js +2 -2
- package/src/main/js/sap/ushell/services/Personalization.js +2 -2
- package/src/main/js/sap/ushell/services/PersonalizationV2/ContextContainer.js +1 -1
- package/src/main/js/sap/ushell/services/PersonalizationV2/Personalizer.js +1 -1
- package/src/main/js/sap/ushell/services/PersonalizationV2/TransientPersonalizer.js +1 -1
- package/src/main/js/sap/ushell/services/PersonalizationV2/Variant.js +1 -1
- package/src/main/js/sap/ushell/services/PersonalizationV2/VariantSet.js +1 -1
- package/src/main/js/sap/ushell/services/PersonalizationV2/VariantSetAdapter.js +1 -1
- package/src/main/js/sap/ushell/services/PersonalizationV2/WindowAdapter.js +1 -1
- package/src/main/js/sap/ushell/services/PersonalizationV2/WindowAdapterContainer.js +1 -1
- package/src/main/js/sap/ushell/services/PersonalizationV2/constants.js +1 -1
- package/src/main/js/sap/ushell/services/PersonalizationV2/constants.private.js +1 -1
- package/src/main/js/sap/ushell/services/PersonalizationV2/utils.js +1 -1
- package/src/main/js/sap/ushell/services/PersonalizationV2.js +2 -2
- package/src/main/js/sap/ushell/services/PluginManager/Extensions.js +2 -2
- package/src/main/js/sap/ushell/services/PluginManager/HeaderExtensions.js +2 -2
- package/src/main/js/sap/ushell/services/PluginManager/MenuExtensions.js +2 -2
- package/src/main/js/sap/ushell/services/PluginManager/SimpleExpression.js +89 -0
- package/src/main/js/sap/ushell/services/PluginManager.js +68 -25
- package/src/main/js/sap/ushell/services/ReferenceResolver.js +4 -4
- package/src/main/js/sap/ushell/services/Search.js +2 -2
- package/src/main/js/sap/ushell/services/SearchCEP.js +2 -2
- package/src/main/js/sap/ushell/services/SearchableContent.js +2 -2
- package/src/main/js/sap/ushell/services/ShellNavigation.js +2 -2
- package/src/main/js/sap/ushell/services/ShellNavigationHashChanger.js +1 -1
- package/src/main/js/sap/ushell/services/ShellNavigationInternal.js +1 -1
- package/src/main/js/sap/ushell/services/SmartNavigation.js +2 -2
- package/src/main/js/sap/ushell/services/SpaceContent.js +2 -2
- package/src/main/js/sap/ushell/services/SupportTicket.js +1 -1
- package/src/main/js/sap/ushell/services/UITracer.js +2 -2
- package/src/main/js/sap/ushell/services/URLParsing.js +1 -1
- package/src/main/js/sap/ushell/services/URLShortening.js +2 -2
- package/src/main/js/sap/ushell/services/URLTemplate.js +2 -2
- package/src/main/js/sap/ushell/services/Ui5ComponentHandle.js +11 -1
- package/src/main/js/sap/ushell/services/Ui5ComponentLoader/utils.js +2 -2
- package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +2 -2
- package/src/main/js/sap/ushell/services/UsageAnalytics.js +1 -1
- package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +2 -2
- package/src/main/js/sap/ushell/services/UserDefaultParameters.js +2 -2
- package/src/main/js/sap/ushell/services/UserInfo.js +2 -2
- package/src/main/js/sap/ushell/services/UserRecents/RecentActivity.js +1 -1
- package/src/main/js/sap/ushell/services/UserRecents/RecentAppsUsage.js +1 -1
- package/src/main/js/sap/ushell/services/UserRecents/RecentsList.js +1 -1
- package/src/main/js/sap/ushell/services/UserRecents/UserRecentsBase.js +1 -1
- package/src/main/js/sap/ushell/services/UserRecents.js +2 -2
- package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +2 -2
- package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +2 -2
- package/src/main/js/sap/ushell/services/_AppState/AppStatePersistencyMethod.js +1 -1
- package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +2 -2
- package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +2 -2
- package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +2 -2
- package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +2 -2
- package/src/main/js/sap/ushell/services/_Personalization/ContextContainer.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainer.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainerVariant.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainerVariantSet.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/Personalizer.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/TransientPersonalizer.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/Variant.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/VariantSet.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/VariantSetAdapter.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/WindowAdapter.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/WindowAdapterContainer.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/constants.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/constants.private.js +1 -1
- package/src/main/js/sap/ushell/services/_Personalization/utils.js +1 -1
- package/src/main/js/sap/ushell/services/appstate/AppState.js +1 -1
- package/src/main/js/sap/ushell/services/appstate/AppStatePersistencyMethod.js +1 -1
- package/src/main/js/sap/ushell/services/appstate/AppStatePersistencySettings.js +1 -1
- package/src/main/js/sap/ushell/services/appstate/LimitedBuffer.js +1 -1
- package/src/main/js/sap/ushell/services/appstate/Sequentializer.js +1 -1
- package/src/main/js/sap/ushell/services/appstate/SequentializingAdapter.js +1 -1
- package/src/main/js/sap/ushell/services/appstate/WindowAdapter.js +1 -1
- package/src/main/js/sap/ushell/services/personalization/VariantSetAdapter.js +1 -1
- package/src/main/js/sap/ushell/state/BackNavigation.js +91 -0
- package/src/main/js/sap/ushell/state/BaseState.js +1 -1
- package/src/main/js/sap/ushell/state/BindingHelper.js +18 -15
- package/src/main/js/sap/ushell/state/ControlManager.js +1 -1
- package/src/main/js/sap/ushell/state/CurrentState.js +1 -1
- package/src/main/js/sap/ushell/state/KeepAlive.js +1 -1
- package/src/main/js/sap/ushell/state/ShellModel.js +1 -1
- package/src/main/js/sap/ushell/state/StateManager/LaunchpadState.js +1 -1
- package/src/main/js/sap/ushell/state/StateManager/Operation.js +1 -1
- package/src/main/js/sap/ushell/state/StateManager/ShellMode.js +1 -1
- package/src/main/js/sap/ushell/state/StateManager.js +7 -1
- package/src/main/js/sap/ushell/state/StateRules.js +1 -1
- package/src/main/js/sap/ushell/state/StrategyFactory/DefaultStrategy.js +1 -1
- package/src/main/js/sap/ushell/state/StrategyFactory/FloatingActionsStrategy.js +1 -1
- package/src/main/js/sap/ushell/state/StrategyFactory/FloatingContainerStrategy.js +1 -1
- package/src/main/js/sap/ushell/state/StrategyFactory/HeadEndItemsStrategy.js +1 -1
- package/src/main/js/sap/ushell/state/StrategyFactory/HeadItemsStrategy.js +4 -2
- package/src/main/js/sap/ushell/state/StrategyFactory/SidePaneStrategy.js +1 -1
- package/src/main/js/sap/ushell/state/StrategyFactory/SubHeaderStrategy.js +1 -1
- package/src/main/js/sap/ushell/state/StrategyFactory/UserActionsStrategy.js +7 -6
- package/src/main/js/sap/ushell/state/StrategyFactory.js +1 -1
- package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +2 -2
- package/src/main/js/sap/ushell/themes/base/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_belize/Section.less +6 -6
- package/src/main/js/sap/ushell/themes/sap_belize/TileContainer.less +9 -9
- package/src/main/js/sap/ushell/themes/sap_belize/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_belize_base/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_belize_hcb/HistoryScreen.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_belize_hcb/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_belize_hcw/HistoryScreen.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_belize_hcw/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_belize_plus/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_bluecrystal/HistoryScreen.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_bluecrystal/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_bluecrystal_base/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_fiori_3/Section.less +6 -6
- package/src/main/js/sap/ushell/themes/sap_fiori_3/TileContainer.less +7 -7
- package/src/main/js/sap/ushell/themes/sap_fiori_3/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_fiori_3_dark/Section.less +6 -6
- package/src/main/js/sap/ushell/themes/sap_fiori_3_dark/ShellHeader.less +4 -4
- package/src/main/js/sap/ushell/themes/sap_fiori_3_dark/TileContainer.less +7 -7
- package/src/main/js/sap/ushell/themes/sap_fiori_3_dark/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_fiori_3_hcb/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_fiori_3_hcw/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_hcb/HistoryScreen.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_hcb/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_horizon/Section.less +4 -6
- package/src/main/js/sap/ushell/themes/sap_horizon/TileContainer.less +7 -8
- package/src/main/js/sap/ushell/themes/sap_horizon/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_horizon_dark/Section.less +7 -7
- package/src/main/js/sap/ushell/themes/sap_horizon_dark/TileContainer.less +7 -7
- package/src/main/js/sap/ushell/themes/sap_horizon_dark/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_horizon_hcb/library.source.less +1 -1
- package/src/main/js/sap/ushell/themes/sap_horizon_hcw/library.source.less +1 -1
- package/src/main/js/sap/ushell/thirdparty/Icons.js +19 -0
- package/src/main/js/sap/ushell/thirdparty/Theme.js +130 -0
- package/src/main/js/sap/ushell/thirdparty/UserMenu.js +1819 -0
- package/src/main/js/sap/ushell/thirdparty/UserMenuAccount.js +104 -0
- package/src/main/js/sap/ushell/thirdparty/UserMenuItem.js +420 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/SAP-icons.js +2508 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/SAP-icons2.js +2508 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/ar.js +7139 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/ar_EG.js +7139 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/ar_SA.js +7138 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/bg.js +6031 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/ca.js +6133 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/cnr.js +6219 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/cs.js +6759 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/da.js +5977 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/de.js +6098 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/de_AT.js +6099 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/de_CH.js +6097 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/el.js +5882 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/el_CY.js +5882 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/en.js +6094 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/en_AU.js +6134 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/en_GB.js +6125 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/en_HK.js +6136 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/en_IE.js +6125 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/en_IN.js +6132 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/en_NZ.js +6125 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/en_PG.js +6126 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/en_SG.js +6132 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/en_ZA.js +6126 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/es.js +6153 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/es_AR.js +6156 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/es_BO.js +6155 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/es_CL.js +6048 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/es_CO.js +6048 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/es_MX.js +6157 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/es_PE.js +5939 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/es_UY.js +5941 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/es_VE.js +5940 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/et.js +6077 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/fa.js +6002 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/fi.js +6245 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/fr.js +6047 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/fr_BE.js +6047 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/fr_CA.js +6041 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/fr_CH.js +6065 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/fr_LU.js +6047 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/he.js +6593 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/hi.js +5911 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/hr.js +6246 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/hu.js +5995 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/id.js +5783 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/it.js +6036 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/it_CH.js +6036 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/ja.js +5942 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/kk.js +5989 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/ko.js +5823 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/lt.js +6628 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/lv.js +6164 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ar.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ar2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ar3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_bg.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_bg2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_bg3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ca.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ca2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ca3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cnr.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cnr2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cnr3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cs.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cs2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cs3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cy.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cy2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cy3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_da.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_da2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_da3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_de.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_de2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_de3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_el.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_el2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_el3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_GB.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_GB2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_GB3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_sappsd.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_sappsd2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_sappsd3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saprigi.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saprigi2.js +656 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saprigi3.js +542 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saptrc.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saptrc2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saptrc3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es_MX.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es_MX2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es_MX3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_et.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_et2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_et3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fi.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fi2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fi3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr_CA.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr_CA2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr_CA3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hi.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hi2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hi3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hr.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hr2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hr3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hu.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hu2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hu3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_in.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_in2.js +266 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_in3.js +143 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_it.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_it2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_it3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_iw.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_iw2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_iw3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ja.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ja2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ja3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_kk.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_kk2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_kk3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ko.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ko2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ko3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lt.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lt2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lt3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lv.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lv2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lv3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_mk.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_mk2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_mk3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ms.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ms2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ms3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_nl.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_nl2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_nl3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_no.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_no2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_no3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pl.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pl2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pl3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt_PT.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt_PT2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt_PT3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ro.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ro2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ro3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ru.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ru2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ru3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sh.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sh2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sh3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sk.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sk2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sk3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sl.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sl2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sl3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sr.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sr2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sr3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sv.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sv2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sv3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_th.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_th2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_th3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_tr.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_tr2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_tr3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_uk.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_uk2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_uk3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_vi.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_vi2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_vi3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_CN.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_CN2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_CN3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_TW.js +182 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_TW2.js +650 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_TW3.js +515 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/mk.js +6095 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/ms.js +5617 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/nb.js +6085 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/nl.js +6252 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/nl_BE.js +6252 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css10.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css11.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css12.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css13.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css14.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css15.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css16.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css17.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css18.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css19.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css2.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css20.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css21.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css22.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css23.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css24.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css3.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css4.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css5.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css6.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css7.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css8.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css9.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/pl.js +6639 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/pt.js +6165 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/pt_PT.js +6230 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/ro.js +6250 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/ru.js +6553 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/ru_UA.js +6553 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/sk.js +6482 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/sl.js +6494 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/sr.js +6291 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/sr_Latn.js +6278 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/sv.js +6126 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/th.js +5928 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/tr.js +6146 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/uk.js +6504 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/vi.js +5720 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/zh_CN.js +5770 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/zh_HK.js +5779 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/zh_SG.js +5779 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/zh_TW.js +5846 -0
- package/src/main/js/sap/ushell/thirdparty/i18n.js +25 -0
- package/src/main/js/sap/ushell/thirdparty/i18nBundle.js +9 -0
- package/src/main/js/sap/ushell/thirdparty/parameters-bundle.css25.js +7203 -0
- package/src/main/js/sap/ushell/thirdparty/property.js +50 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents/dist/ListItem.js +81 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents/dist/ListItemBase.js +44 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents/dist/MenuItem.js +119 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-base.js +198 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-fiori/UserMenu.js +4 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-fiori/UserMenuAccount.js +4 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-fiori/UserMenuItem.js +4 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-fiori/dist/UserMenu.js +99 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-fiori/dist/UserMenuAccount.js +75 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-fiori/dist/UserMenuItem.js +39 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-fiori.js +333 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-icons/AllIcons.js +26 -0
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents.js +636 -0
- package/src/main/js/sap/ushell/thirdparty/webcomponents-base.js +26 -0
- package/src/main/js/sap/ushell/thirdparty/webcomponents-fiori.js +146 -0
- package/src/main/js/sap/ushell/thirdparty/webcomponents.js +385 -0
- package/src/main/js/sap/ushell/ui/AppContainer.js +23 -9
- package/src/main/js/sap/ushell/ui/AppContainerRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/ContentNodeSelector.js +1 -1
- package/src/main/js/sap/ushell/ui/ContentNodeSelectorRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/ContentNodeTreeItem.js +1 -1
- package/src/main/js/sap/ushell/ui/CustomGroupHeaderListItem.js +1 -1
- package/src/main/js/sap/ushell/ui/CustomGroupHeaderListItemRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/QuickAccess.js +1 -1
- package/src/main/js/sap/ushell/ui/ShellHeader.js +215 -57
- package/src/main/js/sap/ushell/ui/ShellHeaderRenderer.js +83 -44
- package/src/main/js/sap/ushell/ui/appfinder/AppBox.js +1 -1
- package/src/main/js/sap/ushell/ui/appfinder/AppBoxInternal.js +1 -1
- package/src/main/js/sap/ushell/ui/appfinder/AppBoxInternalRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/appfinder/AppBoxRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/appfinder/PinButton.js +1 -1
- package/src/main/js/sap/ushell/ui/appfinder/PinButtonRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/bookmark/SaveOnPage.controller.js +1 -1
- package/src/main/js/sap/ushell/ui/cards/FrequentActivitiesExtension.js +1 -1
- package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +2 -2
- package/src/main/js/sap/ushell/ui/footerbar/AboutButton.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/AboutDialog.controller.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/AddBookmarkButton.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/ContactSupportButton.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/ContactSupportDialog.controller.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/JamDiscussButton.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/JamShareButton.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/LogoutButton.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/SaveAsTile.controller.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/SaveAsTile.view.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/SendAsEmailButton.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/AccessibilityCustomData.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/ActionItem.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/AnchorItem.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/AnchorItemRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/AnchorNavigationBar.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/AnchorNavigationBarRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/CatalogEntryContainer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/CatalogsContainer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/DashboardGroupsContainer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/DashboardGroupsContainerRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +2 -2
- package/src/main/js/sap/ushell/ui/launchpad/FailedTileDialog.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/GroupHeaderActions.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/GroupListItem.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/GroupListItemRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/LinkTileWrapper.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/LinkTileWrapperRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/LoadingDialog.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/LoadingDialogRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/Page.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/PageRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/PlusTile.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/PlusTileRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/Section.js +2 -2
- package/src/main/js/sap/ushell/ui/launchpad/SectionRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/Tile.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/TileContainer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/TileContainerRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/TileContainerUtils.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/TileRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/TileState.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/TileStateInternal.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/TileStateInternalRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/TileStateRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/ViewPortState.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/VizInstance.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/VizInstanceAbap.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/VizInstanceBase.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/VizInstanceCdm.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/VizInstanceLaunchPage.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/VizInstanceLink.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/VizInstanceRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +2 -2
- package/src/main/js/sap/ushell/ui/launchpad/section/CompactAreaRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/ContentRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/NavigationMiniTile.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/OverflowListItem.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/RightFloatingContainer.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/ShellAppTitle.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/ShellFloatingAction.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/ShellFloatingActionRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/ShellFloatingActions.js +1 -9
- package/src/main/js/sap/ushell/ui/shell/ShellHeadItem.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/ShellNavigationMenu.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/SidePane.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/SubHeader.js +8 -51
- package/src/main/js/sap/ushell/ui/shell/SysInfoBar.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/SysInfoBarRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/ToolArea.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +2 -2
- package/src/main/js/sap/ushell/ui/tile/DynamicTile.js +1 -1
- package/src/main/js/sap/ushell/ui/tile/DynamicTileRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/tile/ImageTile.js +1 -1
- package/src/main/js/sap/ushell/ui/tile/ImageTileRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/tile/StaticTile.js +1 -1
- package/src/main/js/sap/ushell/ui/tile/StaticTileRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/tile/TileBase.js +1 -1
- package/src/main/js/sap/ushell/ui/tile/TileBaseRenderer.js +1 -1
- package/src/main/js/sap/ushell/ui/utils.js +2 -2
- package/src/main/js/sap/ushell/ui5service/ShellUIService.js +120 -13
- package/src/main/js/sap/ushell/ui5service/ShellUIServiceFactory.js +2 -2
- package/src/main/js/sap/ushell/ui5service/UserStatus.js +2 -2
- package/src/main/js/sap/ushell/utils/AppType.js +1 -1
- package/src/main/js/sap/ushell/utils/Deferred.js +1 -1
- package/src/main/js/sap/ushell/utils/DynamicTileRequest.js +1 -1
- package/src/main/js/sap/ushell/utils/HttpClient.js +1 -1
- package/src/main/js/sap/ushell/utils/RestrictedJSONModel.js +17 -1
- package/src/main/js/sap/ushell/utils/UriParameters.js +1 -1
- package/src/main/js/sap/ushell/utils/UrlParsing.js +1 -1
- package/src/main/js/sap/ushell/utils/UrlShortening.js +2 -2
- package/src/main/js/sap/ushell/utils/WindowUtils.js +1 -1
- package/src/main/js/sap/ushell/utils/chipsUtils.js +1 -1
- package/src/main/js/sap/ushell/utils/objectOperations.js +1 -1
- package/src/main/js/sap/ushell/utils/tilecard/TileCard.js +1 -1
- package/src/main/js/sap/ushell/utils/tilecard/TileCardExtension.js +1 -1
- package/src/main/js/sap/ushell/utils/type.js +1 -1
- package/src/main/js/sap/ushell/utils/utilsCdm.js +1 -1
- package/src/main/js/sap/ushell/utils/workpage/DestinationResolver.js +1 -1
- package/src/main/js/sap/ushell/utils/workpage/WorkPageHost.js +2 -2
- package/src/main/js/sap/ushell/utils/workpage/WorkPageService.js +3 -3
- package/src/main/js/sap/ushell/utils/workpage/WorkPageVizInstantiation.js +3 -3
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_ar.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_bg.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_ca.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_cnr.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_cs.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_cy.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_da.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_de.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_el.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_en.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_en_GB.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_en_US_saprigi.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_es.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_es_MX.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_et.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_fi.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_fr.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_fr_CA.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_hi.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_hr.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_hu.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_id.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_it.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_iw.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_ja.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_kk.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_ko.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_lt.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_lv.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_mk.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_ms.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_nl.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_no.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_pl.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_pt.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_pt_PT.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_ro.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_ru.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_sh.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_sk.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_sl.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_sr.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_sv.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_th.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_tr.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_uk.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_vi.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_zh_CN.properties +3 -0
- package/src/main/js/sap/ushell/utils/workpage/resources/resources_zh_TW.properties +3 -0
- package/src/main/js/sap/ushell/utils.js +9 -1
- package/src/test/js/sap/ushell/bootstrap/sandbox.js +2 -2
- package/ui5.yaml +41 -5
- package/src/main/js/sap/ushell/appRuntime/ui5/style.css +0 -48
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
sap.ui.define(['exports'], (function (exports) { 'use strict';
|
|
2
|
+
|
|
3
|
+
var parametersBundle_css = ":root{--sapThemeMetaData-Base-baseLib:{\"Path\": \"Base.baseLib.sap_fiori_3.css_variables\",\"PathPattern\": \"/%frameworkId%/%libId%/%themeId%/%fileId%.css\",\"Extends\": [\"sap_base_fiori\",\"baseTheme\"],\"Tags\": [\"Fiori_3\",\"LightColorScheme\"],\"FallbackThemeId\": \"sap_belize\",\"Engine\":{\"Name\": \"theming-engine\",\"Version\": \"14.2.8\"},\"Version\":{\"Build\": \"11.24.0.20241212104249\",\"Source\": \"11.24.0\"}};--sapBrandColor: #0a6ed1;--sapHighlightColor: #0854a0;--sapBaseColor: #fff;--sapShellColor: #354a5f;--sapBackgroundColor: #f7f7f7;--sapFontFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSize: .875rem;--sapTextColor: #32363a;--sapLinkColor: #0a6ed1;--sapCompanyLogo: none;--sapBackgroundImage: none;--sapBackgroundImageOpacity: 1;--sapBackgroundImageRepeat: false;--sapSelectedColor: #0854a0;--sapHoverColor: #ededed;--sapActiveColor: #0854a0;--sapHighlightTextColor: #fff;--sapTitleColor: #32363a;--sapNegativeColor: #bb0000;--sapCriticalColor: #df6e0c;--sapPositiveColor: #107e3e;--sapInformativeColor: #0a6ed1;--sapNeutralColor: #6a6d70;--sapNegativeElementColor: #bb0000;--sapCriticalElementColor: #df6e0c;--sapPositiveElementColor: #107e3e;--sapInformativeElementColor: #0a6ed1;--sapNeutralElementColor: #6a6d70;--sapNegativeTextColor: #bb0000;--sapCriticalTextColor: #b3590a;--sapPositiveTextColor: #107e3e;--sapInformativeTextColor: #0a6ed1;--sapNeutralTextColor: #6a6d70;--sapErrorColor: #bb0000;--sapWarningColor: #df6e0c;--sapSuccessColor: #107e3e;--sapInformationColor: #0a6ed1;--sapErrorBackground: #ffebeb;--sapWarningBackground: #fef7f1;--sapSuccessBackground: #f1fdf6;--sapInformationBackground: #f5faff;--sapNeutralBackground: #f4f4f4;--sapErrorBorderColor: #bb0000;--sapWarningBorderColor: #df6e0c;--sapSuccessBorderColor: #107e3e;--sapInformationBorderColor: #0a6ed1;--sapNeutralBorderColor: #6a6d70;--sapElement_LineHeight: 2.75rem;--sapElement_Height: 2.25rem;--sapElement_BorderWidth: .0625rem;--sapElement_BorderCornerRadius: .25rem;--sapElement_Compact_LineHeight: 2rem;--sapElement_Compact_Height: 1.625rem;--sapElement_Condensed_LineHeight: 1.5rem;--sapElement_Condensed_Height: 1.375rem;--sapContent_LineHeight: 1.4;--sapContent_IconHeight: 1rem;--sapContent_IconColor: #0854a0;--sapContent_ContrastIconColor: #fff;--sapContent_NonInteractiveIconColor: #6a6d70;--sapContent_MarkerIconColor: #286eb4;--sapContent_MarkerTextColor: #0e7581;--sapContent_MeasureIndicatorColor: #89919a;--sapContent_Selected_MeasureIndicatorColor: #89919a;--sapContent_Placeholderloading_Background: #ccc;--sapContent_Placeholderloading_Gradient: linear-gradient(to right, #ccc 0%, #ccc 20%, #999 50%, #ccc 80%, #ccc 100%);--sapContent_ImagePlaceholderBackground: #ccc;--sapContent_ImagePlaceholderForegroundColor: #fff;--sapContent_RatedColor: #d08014;--sapContent_UnratedColor: #89919a;--sapContent_BusyColor: #0854a0;--sapContent_FocusColor: #000;--sapContent_FocusStyle: dotted;--sapContent_FocusWidth: .0625rem;--sapContent_ContrastFocusColor: #fff;--sapContent_ShadowColor: #000;--sapContent_ContrastShadowColor: #fff;--sapContent_Shadow0: 0 0 0 .0625rem rgba(0,0,0,.1), 0 .125rem .5rem 0 rgba(0,0,0,.1);--sapContent_Shadow1: 0 0 0 .0625rem rgba(0,0,0,.42), 0 .125rem .5rem 0 rgba(0,0,0,.3);--sapContent_Shadow2: 0 0 0 .0625rem rgba(0,0,0,.42), 0 .625rem 1.875rem 0 rgba(0,0,0,.3);--sapContent_Shadow3: 0 0 0 .0625rem rgba(0,0,0,.42), 0 1.25rem 5rem 0 rgba(0,0,0,.3);--sapContent_TextShadow: 0 0 .125rem #fff;--sapContent_ContrastTextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapContent_HeaderShadow: 0 .125rem .125rem 0 rgba(0,0,0,.05), inset 0 -.0625rem 0 0 #d9d9d9;--sapContent_Interaction_Shadow: none;--sapContent_Selected_Shadow: none;--sapContent_Negative_Shadow: none;--sapContent_Critical_Shadow: none;--sapContent_Positive_Shadow: none;--sapContent_Informative_Shadow: none;--sapContent_Neutral_Shadow: none;--sapContent_SearchHighlightColor: #d4f7db;--sapContent_HelpColor: #3f8600;--sapContent_LabelColor: #6a6d70;--sapContent_MonospaceFontFamily: \"72Mono\", \"72Monofull\", lucida console, monospace;--sapContent_MonospaceBoldFontFamily: \"72Mono-Bold\", \"72Mono-Boldfull\", lucida console, monospace;--sapContent_IconFontFamily: \"SAP-icons\";--sapContent_DisabledTextColor: rgba(50,54,58,.6);--sapContent_DisabledOpacity: .4;--sapContent_ContrastTextThreshold: .65;--sapContent_ContrastTextColor: #fff;--sapContent_ForegroundColor: #efefef;--sapContent_ForegroundBorderColor: #89919a;--sapContent_ForegroundTextColor: #32363a;--sapContent_BadgeBackground: #d04343;--sapContent_BadgeTextColor: #fff;--sapContent_BadgeBorderColor: #fff;--sapContent_DragAndDropActiveColor: #0854a0;--sapContent_Selected_TextColor: #fff;--sapContent_Selected_Background: #0854a0;--sapContent_Selected_Hover_Background: #095caf;--sapContent_Selected_ForegroundColor: #0854a0;--sapContent_ForcedColorAdjust: none;--sapContent_Lite_Shadow: None;--sapContent_Illustrative_Color1: #9b015d;--sapContent_Illustrative_Color2: #56bdff;--sapContent_Illustrative_Color3: #ff7f4c;--sapContent_Illustrative_Color4: #4a5055;--sapContent_Illustrative_Color5: #9da4aa;--sapContent_Illustrative_Color6: #c6cace;--sapContent_Illustrative_Color7: #dbf1ff;--sapContent_Illustrative_Color8: #fff;--sapContent_Illustrative_Color9: #0899a7;--sapContent_Illustrative_Color10: #dbf1ff;--sapContent_Illustrative_Color11: #df1278;--sapContent_Illustrative_Color12: #00a800;--sapContent_Illustrative_Color13: #0070f2;--sapContent_Illustrative_Color14: #0040b0;--sapContent_Illustrative_Color15: #c35500;--sapContent_Illustrative_Color16: #8d2a00;--sapContent_Illustrative_Color17: #046c7c;--sapContent_Illustrative_Color18: #bce5ff;--sapContent_Illustrative_Color19: #a3dbff;--sapContent_Illustrative_Color20: #89d1ff;--sapContent_Illustrative_Color21: #1b90ff;--sapContent_Illustrative_Color22: #00144a;--sapContent_Illustrative_Color23: #d20a0a;--sapContent_Illustrative_Color24: #ffb2d2;--sapContent_Illustrative_Color25: #ffeaf4;--sapContent_Illustrative_Color26: #ffdf72;--sapContent_Illustrative_Color27: #fff8d6;--sapContent_Illustrative_Color28: #a93e00;--sapContent_Illustrative_Color29: #450b00;--sapContent_Illustrative_Color30: #340800;--sapContent_Illustrative_Color31: #ffab92;--sapContent_Space_S: 1rem;--sapContent_Space_M: 2rem;--sapContent_Space_L: 2rem;--sapContent_Space_XL: 3rem;--sapContent_Space_Tiny: 2rem;--sapContent_Space_Small: 1rem;--sapContent_Space_Medium: 2rem;--sapContent_Space_Large: 3rem;--sapContent_Margin_Tiny: 0 0 1rem;--sapContent_Margin_Small: 1rem;--sapContent_Margin_Medium: 1rem 2rem;--sapContent_Margin_Large: 1rem 3rem;--sapContent_Padding_S: 0rem;--sapContent_Padding_M: 2rem;--sapContent_Padding_L: 2rem;--sapContent_Padding_XL: 3rem;--sapContent_Gap: 1rem;--sapContent_Success_HeaderShadow: 0 .125rem .125rem 0 rgba(0,0,0,.05), inset 0 -.0625rem 0 0 #107e3e;--sapContent_Warning_HeaderShadow: 0 .125rem .125rem 0 rgba(0,0,0,.05), inset 0 -.0625rem 0 0 #df6e0c;--sapContent_Error_HeaderShadow: 0 .125rem .125rem 0 rgba(0,0,0,.05), inset 0 -.0625rem 0 0 #bb0000;--sapContent_Information_HeaderShadow: 0 .125rem .125rem 0 rgba(0,0,0,.05), inset 0 -.0625rem 0 0 #0a6ed1;--sapFontLightFamily: \"72-Light\", \"72-Lightfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontBoldFamily: \"72-Bold\", \"72-Boldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSemiboldFamily: \"72-Semibold\", \"72-Semiboldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSemiboldDuplexFamily: \"72-SemiboldDuplex\", \"72-SemiboldDuplexfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontBlackFamily: \"72Black\", \"72Blackfull\",\"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontHeaderFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSmallSize: .75rem;--sapFontLargeSize: 1rem;--sapFontHeader1Size: 2.25rem;--sapFontHeader2Size: 1.5rem;--sapFontHeader3Size: 1.25rem;--sapFontHeader4Size: 1.125rem;--sapFontHeader5Size: 1rem;--sapFontHeader6Size: .875rem;--sapLink_TextDecoration: none;--sapLink_Hover_Color: #0854a0;--sapLink_Hover_TextDecoration: underline;--sapLink_Active_Color: #0a6ed1;--sapLink_Active_TextDecoration: underline;--sapLink_Visited_Color: #0a6ed1;--sapLink_InvertedColor: #d3e8fd;--sapLink_SubtleColor: #074888;--sapShell_Background: #edeff0;--sapShell_BackgroundImage: linear-gradient(to bottom, #dfe3e4, #f3f4f5);--sapShell_BackgroundImageOpacity: 1;--sapShell_BackgroundImageRepeat: false;--sapShell_BorderColor: #354a5f;--sapShell_TextColor: #fff;--sapShell_InteractiveBackground: #354a5f;--sapShell_InteractiveTextColor: #d1e8ff;--sapShell_InteractiveBorderColor: #7996b4;--sapShell_GroupTitleTextColor: #32363a;--sapShell_GroupTitleTextShadow: 0 0 .125rem #fff;--sapShell_Hover_Background: #283848;--sapShell_Active_Background: #23303e;--sapShell_Active_TextColor: #fff;--sapShell_Selected_Background: #23303e;--sapShell_Selected_TextColor: #fff;--sapShell_Selected_Hover_Background: #23303e;--sapShell_Favicon: none;--sapShell_Navigation_Background: #354a5f;--sapShell_Navigation_Hover_Background: #283848;--sapShell_Navigation_SelectedColor: #d1e8ff;--sapShell_Navigation_Selected_TextColor: #d1e8ff;--sapShell_Navigation_TextColor: #fff;--sapShell_Navigation_Active_TextColor: #fff;--sapShell_Navigation_Active_Background: #23303e;--sapShell_Shadow: 0 .125rem .125rem 0 rgba(0,0,0,.08), inset 0 -.0625rem 0 0 rgba(0,0,0,.18);--sapShell_NegativeColor: #f88;--sapShell_CriticalColor: #f8b67d;--sapShell_PositiveColor: #abe2c2;--sapShell_InformativeColor: #b1d6fb;--sapShell_NeutralColor: #d4d6d7;--sapShell_Assistant_ForegroundColor: #9f88ff;--sapShell_SubBrand_TextColor: #fff;--sapShell_Category_1_Background: #286eb4;--sapShell_Category_1_BorderColor: #286eb4;--sapShell_Category_1_TextColor: #fff;--sapShell_Category_1_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_2_Background: #db1f77;--sapShell_Category_2_BorderColor: #db1f77;--sapShell_Category_2_TextColor: #fff;--sapShell_Category_2_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_3_Background: #d58215;--sapShell_Category_3_BorderColor: #d58215;--sapShell_Category_3_TextColor: #fff;--sapShell_Category_3_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_4_Background: #892971;--sapShell_Category_4_BorderColor: #892971;--sapShell_Category_4_TextColor: #fff;--sapShell_Category_4_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_5_Background: #bb2f2f;--sapShell_Category_5_BorderColor: #bb2f2f;--sapShell_Category_5_TextColor: #fff;--sapShell_Category_5_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_6_Background: #1193a2;--sapShell_Category_6_BorderColor: #1193a2;--sapShell_Category_6_TextColor: #fff;--sapShell_Category_6_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_7_Background: #cf5db3;--sapShell_Category_7_BorderColor: #cf5db3;--sapShell_Category_7_TextColor: #fff;--sapShell_Category_7_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_8_Background: #8b9668;--sapShell_Category_8_BorderColor: #8b9668;--sapShell_Category_8_TextColor: #fff;--sapShell_Category_8_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_9_Background: #597da1;--sapShell_Category_9_BorderColor: #597da1;--sapShell_Category_9_TextColor: #fff;--sapShell_Category_9_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_10_Background: #647987;--sapShell_Category_10_BorderColor: #647987;--sapShell_Category_10_TextColor: #fff;--sapShell_Category_10_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_11_Background: #dc5b5b;--sapShell_Category_11_BorderColor: #dc5b5b;--sapShell_Category_11_TextColor: #fff;--sapShell_Category_11_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_12_Background: #5154bd;--sapShell_Category_12_BorderColor: #5154bd;--sapShell_Category_12_TextColor: #fff;--sapShell_Category_12_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_13_Background: #bc1b66;--sapShell_Category_13_BorderColor: #bc1b66;--sapShell_Category_13_TextColor: #fff;--sapShell_Category_13_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_14_Background: #49797e;--sapShell_Category_14_BorderColor: #49797e;--sapShell_Category_14_TextColor: #fff;--sapShell_Category_14_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_15_Background: #476380;--sapShell_Category_15_BorderColor: #476380;--sapShell_Category_15_TextColor: #fff;--sapShell_Category_15_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Category_16_Background: #687a33;--sapShell_Category_16_BorderColor: #687a33;--sapShell_Category_16_TextColor: #fff;--sapShell_Category_16_TextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapShell_Space_S: .5rem;--sapShell_Space_M: 2rem;--sapShell_Space_L: 2rem;--sapShell_Space_XL: 3rem;--sapShell_Gap_S: .5rem;--sapShell_Gap_M: 1rem;--sapShell_Gap_L: 1rem;--sapShell_Gap_XL: 1rem;--sapShell_GroupGap_S: 2rem;--sapShell_GroupGap_M: 3rem;--sapShell_GroupGap_L: 3rem;--sapShell_GroupGap_XL: 3rem;--sapAssistant_Color1: #5d36ff;--sapAssistant_Color2: #a100c2;--sapAssistant_BackgroundGradient: linear-gradient(#5d36ff, #a100c2);--sapAssistant_Background: #5d36ff;--sapAssistant_BorderColor: #5d36ff;--sapAssistant_TextColor: #fff;--sapAssistant_Hover_Background: #2800cf;--sapAssistant_Hover_BorderColor: #2800cf;--sapAssistant_Hover_TextColor: #fff;--sapAssistant_Active_Background: #1e009c;--sapAssistant_Active_BorderColor: #1e009c;--sapAssistant_Active_TextColor: #fff;--sapAssistant_Question_Background: #eae5ff;--sapAssistant_Question_BorderColor: #eae5ff;--sapAssistant_Question_TextColor: #32363a;--sapAssistant_Answer_Background: #f4f4f4;--sapAssistant_Answer_BorderColor: #f4f4f4;--sapAssistant_Answer_TextColor: #32363a;--sapAvatar_1_Background: #d08014;--sapAvatar_1_BorderColor: #d08014;--sapAvatar_1_TextColor: #fff;--sapAvatar_1_Hover_Background: #d08014;--sapAvatar_2_Background: #d04343;--sapAvatar_2_BorderColor: #d04343;--sapAvatar_2_TextColor: #fff;--sapAvatar_2_Hover_Background: #d04343;--sapAvatar_3_Background: #db1f77;--sapAvatar_3_BorderColor: #db1f77;--sapAvatar_3_TextColor: #fff;--sapAvatar_3_Hover_Background: #db1f77;--sapAvatar_4_Background: #c0399f;--sapAvatar_4_BorderColor: #c0399f;--sapAvatar_4_TextColor: #fff;--sapAvatar_4_Hover_Background: #c0399f;--sapAvatar_5_Background: #6367de;--sapAvatar_5_BorderColor: #6367de;--sapAvatar_5_TextColor: #fff;--sapAvatar_5_Hover_Background: #6367de;--sapAvatar_6_Background: #286eb4;--sapAvatar_6_BorderColor: #286eb4;--sapAvatar_6_TextColor: #fff;--sapAvatar_6_Hover_Background: #286eb4;--sapAvatar_7_Background: #0f828f;--sapAvatar_7_BorderColor: #0f828f;--sapAvatar_7_TextColor: #fff;--sapAvatar_7_Hover_Background: #0f828f;--sapAvatar_8_Background: #7ca10c;--sapAvatar_8_BorderColor: #7ca10c;--sapAvatar_8_TextColor: #fff;--sapAvatar_8_Hover_Background: #7ca10c;--sapAvatar_9_Background: #925ace;--sapAvatar_9_BorderColor: #925ace;--sapAvatar_9_TextColor: #fff;--sapAvatar_9_Hover_Background: #925ace;--sapAvatar_10_Background: #647987;--sapAvatar_10_BorderColor: #647987;--sapAvatar_10_TextColor: #fff;--sapAvatar_10_Hover_Background: #647987;--sapAvatar_Lite_BorderColor: transparent;--sapAvatar_Lite_Background: transparent;--sapAvatar_Hover_BorderColor: rgba(137,145,154,.25);--sapButton_Background: #fff;--sapButton_BorderColor: #0854a0;--sapButton_BorderWidth: .0625rem;--sapButton_BorderCornerRadius: .25rem;--sapButton_TextColor: #0854a0;--sapButton_FontFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapButton_Hover_Background: #ebf5fe;--sapButton_Hover_BorderColor: #0854a0;--sapButton_Hover_TextColor: #0854a0;--sapButton_IconColor: #0854a0;--sapButton_Active_Background: #0854a0;--sapButton_Active_BorderColor: #0854a0;--sapButton_Active_TextColor: #fff;--sapButton_Emphasized_Background: #0a6ed1;--sapButton_Emphasized_BorderColor: #0a6ed1;--sapButton_Emphasized_BorderWidth: .0625rem;--sapButton_Emphasized_TextColor: #fff;--sapButton_Emphasized_FontFamily: \"72-Bold\", \"72-Boldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapButton_Emphasized_Hover_Background: #085caf;--sapButton_Emphasized_Hover_BorderColor: #085caf;--sapButton_Emphasized_Hover_TextColor: #fff;--sapButton_Emphasized_Active_Background: #0854a0;--sapButton_Emphasized_Active_BorderColor: #0854a0;--sapButton_Emphasized_Active_TextColor: #fff;--sapButton_Emphasized_TextShadow: transparent;--sapButton_Emphasized_FontWeight: bold;--sapButton_Reject_Background: #fff;--sapButton_Reject_BorderColor: #bb0000;--sapButton_Reject_TextColor: #b00;--sapButton_Reject_Hover_Background: #ffebeb;--sapButton_Reject_Hover_BorderColor: #bb0000;--sapButton_Reject_Hover_TextColor: #b00;--sapButton_Reject_Active_Background: #a20000;--sapButton_Reject_Active_BorderColor: #a20000;--sapButton_Reject_Active_TextColor: #fff;--sapButton_Reject_Selected_Background: #a20000;--sapButton_Reject_Selected_BorderColor: #a20000;--sapButton_Reject_Selected_TextColor: #fff;--sapButton_Reject_Selected_Hover_Background: #b00;--sapButton_Reject_Selected_Hover_BorderColor: #b00;--sapButton_Accept_Background: #fff;--sapButton_Accept_BorderColor: #107e3e;--sapButton_Accept_TextColor: #107e3e;--sapButton_Accept_Hover_Background: #f1fdf6;--sapButton_Accept_Hover_BorderColor: #107e3e;--sapButton_Accept_Hover_TextColor: #107e3e;--sapButton_Accept_Active_Background: #0d6733;--sapButton_Accept_Active_BorderColor: #0d6733;--sapButton_Accept_Active_TextColor: #fff;--sapButton_Accept_Selected_Background: #0d6733;--sapButton_Accept_Selected_BorderColor: #0d6733;--sapButton_Accept_Selected_TextColor: #fff;--sapButton_Accept_Selected_Hover_Background: #107e3e;--sapButton_Accept_Selected_Hover_BorderColor: #107e3e;--sapButton_Lite_Background: transparent;--sapButton_Lite_BorderColor: transparent;--sapButton_Lite_TextColor: #0854a0;--sapButton_Lite_Hover_Background: #ebf5fe;--sapButton_Lite_Hover_BorderColor: #0854a0;--sapButton_Lite_Hover_TextColor: #0854a0;--sapButton_Lite_Active_Background: #0854a0;--sapButton_Lite_Active_BorderColor: #0854a0;--sapButton_Selected_Background: #0854a0;--sapButton_Selected_BorderColor: #0854a0;--sapButton_Selected_TextColor: #fff;--sapButton_Selected_Hover_Background: #095caf;--sapButton_Selected_Hover_BorderColor: #095caf;--sapButton_Attention_Background: #fff;--sapButton_Attention_BorderColor: #df6e0c;--sapButton_Attention_TextColor: #32363a;--sapButton_Attention_Hover_Background: #fef7f1;--sapButton_Attention_Hover_BorderColor: #df6e0c;--sapButton_Attention_Hover_TextColor: #32363a;--sapButton_Attention_Active_Background: #f3801c;--sapButton_Attention_Active_BorderColor: #f3801c;--sapButton_Attention_Active_TextColor: #fff;--sapButton_Attention_Selected_Background: #f3801c;--sapButton_Attention_Selected_BorderColor: #f3801c;--sapButton_Attention_Selected_TextColor: #fff;--sapButton_Attention_Selected_Hover_Background: #f48e34;--sapButton_Attention_Selected_Hover_BorderColor: #f48e34;--sapButton_Negative_Background: #bb0000;--sapButton_Negative_BorderColor: #bb0000;--sapButton_Negative_TextColor: #fff;--sapButton_Negative_Hover_Background: #970000;--sapButton_Negative_Hover_BorderColor: #970000;--sapButton_Negative_Hover_TextColor: #fff;--sapButton_Negative_Active_Background: #800;--sapButton_Negative_Active_BorderColor: #800;--sapButton_Negative_Active_TextColor: #fff;--sapButton_Critical_Background: #df6e0c;--sapButton_Critical_BorderColor: #df6e0c;--sapButton_Critical_TextColor: #fff;--sapButton_Critical_Hover_Background: #f3801c;--sapButton_Critical_Hover_BorderColor: #f3801c;--sapButton_Critical_Hover_TextColor: #fff;--sapButton_Critical_Active_Background: #f5933e;--sapButton_Critical_Active_BorderColor: #f5933e;--sapButton_Critical_Active_TextColor: #fff;--sapButton_Success_Background: #107e3e;--sapButton_Success_BorderColor: #107e3e;--sapButton_Success_TextColor: #fff;--sapButton_Success_Hover_Background: #0c5e2e;--sapButton_Success_Hover_BorderColor: #0c5e2e;--sapButton_Success_Hover_TextColor: #fff;--sapButton_Success_Active_Background: #0a5128;--sapButton_Success_Active_BorderColor: #0a5128;--sapButton_Success_Active_TextColor: #fff;--sapButton_Information_Background: #0a6ed1;--sapButton_Information_BorderColor: #0a6ed1;--sapButton_Information_TextColor: #fff;--sapButton_Information_Hover_Background: #0961b9;--sapButton_Information_Hover_BorderColor: #0961b9;--sapButton_Information_Hover_TextColor: #fff;--sapButton_Information_Active_Background: #0854a0;--sapButton_Information_Active_BorderColor: #0854a0;--sapButton_Information_Active_TextColor: #fff;--sapButton_Neutral_Background: #6a6d70;--sapButton_Neutral_BorderColor: #6a6d70;--sapButton_Neutral_TextColor: #fff;--sapButton_Neutral_Hover_Background: #595b5e;--sapButton_Neutral_Hover_BorderColor: #595b5e;--sapButton_Neutral_Hover_TextColor: #fff;--sapButton_Neutral_Active_Background: #515456;--sapButton_Neutral_Active_BorderColor: #515456;--sapButton_Neutral_Active_TextColor: #fff;--sapButton_Track_Background: #ededed;--sapButton_Track_BorderColor: #89919a;--sapButton_Track_TextColor: #32363a;--sapButton_Track_Hover_Background: #ededed;--sapButton_Track_Hover_BorderColor: #0854a0;--sapButton_Track_Selected_Background: #ebf5fe;--sapButton_Track_Selected_BorderColor: #0854a0;--sapButton_Track_Selected_TextColor: #32363a;--sapButton_Track_Selected_Hover_Background: #ebf5fe;--sapButton_Track_Selected_Hover_BorderColor: #095caf;--sapButton_Handle_Background: #fff;--sapButton_Handle_BorderColor: #89919a;--sapButton_Handle_TextColor: #32363a;--sapButton_Handle_Hover_Background: #ebf5fe;--sapButton_Handle_Hover_BorderColor: #0854a0;--sapButton_Handle_Selected_Background: #0854a0;--sapButton_Handle_Selected_BorderColor: #0854a0;--sapButton_Handle_Selected_TextColor: #fff;--sapButton_Handle_Selected_Hover_Background: #095caf;--sapButton_Handle_Selected_Hover_BorderColor: #095caf;--sapButton_Track_Negative_Background: #ffebeb;--sapButton_Track_Negative_BorderColor: #bb0000;--sapButton_Track_Negative_TextColor: #b00;--sapButton_Track_Negative_Hover_Background: #ffebeb;--sapButton_Track_Negative_Hover_BorderColor: #bb0000;--sapButton_Handle_Negative_Background: #fff;--sapButton_Handle_Negative_BorderColor: #bb0000;--sapButton_Handle_Negative_TextColor: #b00;--sapButton_Handle_Negative_Hover_Background: #ffebeb;--sapButton_Handle_Negative_Hover_BorderColor: #bb0000;--sapButton_Track_Positive_Background: #f1fdf6;--sapButton_Track_Positive_BorderColor: #107e3e;--sapButton_Track_Positive_TextColor: #107e3e;--sapButton_Track_Positive_Hover_Background: #f1fdf6;--sapButton_Track_Positive_Hover_BorderColor: #107e3e;--sapButton_Handle_Positive_Background: #fff;--sapButton_Handle_Positive_BorderColor: #107e3e;--sapButton_Handle_Positive_TextColor: #107e3e;--sapButton_Handle_Positive_Hover_Background: #f1fdf6;--sapButton_Handle_Positive_Hover_BorderColor: #107e3e;--sapButton_TokenBackground: #fafafa;--sapButton_TokenBorderColor: #c2c2c2;--sapButton_TokenBorderCornerRadius: .25rem;--sapButton_Selected_TokenBorderWidth: 0;--sapButton_ReadOnly_TokenBackground: #fafafa;--sapButton_Segment_BorderCornerRadius: 0;--sapField_Background: #fff;--sapField_BackgroundStyle: none;--sapField_TextColor: #32363a;--sapField_PlaceholderTextColor: #74777a;--sapField_BorderColor: #89919a;--sapField_HelpBackground: #fff;--sapField_BorderWidth: .0625rem;--sapField_BorderStyle: solid;--sapField_BorderCornerRadius: .125rem;--sapField_Shadow: none;--sapField_Hover_Background: #fff;--sapField_Hover_BackgroundStyle: none;--sapField_Hover_BorderColor: #0854a0;--sapField_Hover_HelpBackground: #ebf5fe;--sapField_Hover_Shadow: none;--sapField_Hover_InvalidShadow: none;--sapField_Hover_WarningShadow: none;--sapField_Hover_SuccessShadow: none;--sapField_Hover_InformationShadow: none;--sapField_Active_BorderColor: #0854a0;--sapField_Focus_Background: #fff;--sapField_Focus_BorderColor: #89919a;--sapField_Focus_HelpBackground: #fff;--sapField_ReadOnly_Background: rgba(242,242,242,.5);--sapField_ReadOnly_BackgroundStyle: none;--sapField_ReadOnly_BorderColor: #89919a;--sapField_ReadOnly_BorderStyle: solid;--sapField_ReadOnly_HelpBackground: rgba(242,242,242,.5);--sapField_RequiredColor: #ce3b3b;--sapField_InvalidColor: #bb0000;--sapField_InvalidBackground: #fff;--sapField_InvalidBackgroundStyle: none;--sapField_InvalidBorderWidth: .125rem;--sapField_InvalidBorderStyle: solid;--sapField_InvalidShadow: none;--sapField_WarningColor: #df6e0c;--sapField_WarningBackground: #fff;--sapField_WarningBackgroundStyle: none;--sapField_WarningBorderWidth: .125rem;--sapField_WarningBorderStyle: solid;--sapField_WarningShadow: none;--sapField_SuccessColor: #107e3e;--sapField_SuccessBackground: #fff;--sapField_SuccessBackgroundStyle: none;--sapField_SuccessBorderWidth: .0625rem;--sapField_SuccessBorderStyle: solid;--sapField_SuccessShadow: none;--sapField_InformationColor: #0a6ed1;--sapField_InformationBackground: #fff;--sapField_InformationBackgroundStyle: none;--sapField_InformationBorderWidth: .125rem;--sapField_InformationBorderStyle: solid;--sapField_InformationShadow: none;--sapField_Selector_Hover_Background: #fff;--sapField_Selector_Hover_InvalidBackground: #fff;--sapField_Selector_Hover_WarningBackground: #fff;--sapField_Selector_Hover_SuccessBackground: #fff;--sapField_Selector_Hover_InformationBackground: #fff;--sapField_Picker_BorderColor: #89919a;--sapField_Picker_BorderWidth: .0625rem;--sapField_Selector_BorderStyle: solid;--sapField_Selector_ReadOnly_BorderStyle: solid;--sapField_Selector_InvalidBorderStyle: solid;--sapField_Selector_WarningBorderStyle: solid;--sapField_Selector_SuccessBorderStyle: solid;--sapField_Selector_InformationBorderStyle: solid;--sapGroup_TitleBorderWidth: .0625rem;--sapGroup_TitleBackground: transparent;--sapGroup_TitleBorderColor: #d9d9d9;--sapGroup_TitleTextColor: #32363a;--sapGroup_Title_FontSize: 1.125rem;--sapGroup_ContentBackground: #fff;--sapGroup_ContentBorderColor: #d9d9d9;--sapGroup_BorderWidth: .0625rem;--sapGroup_BorderCornerRadius: 0;--sapGroup_FooterBackground: transparent;--sapToolbar_Background: transparent;--sapToolbar_SeparatorColor: #d9d9d9;--sapList_HeaderBackground: #f2f2f2;--sapList_HeaderBorderColor: #e5e5e5;--sapList_HeaderTextColor: #32363a;--sapList_BorderColor: #e5e5e5;--sapList_BorderWidth: .0625rem;--sapList_TextColor: #32363a;--sapList_Active_TextColor: #fff;--sapList_Active_Background: #0854a0;--sapList_SelectionBackgroundColor: #e5f0fa;--sapList_SelectionBorderColor: #0854a0;--sapList_Hover_SelectionBackground: #d8e9f8;--sapList_Background: #fff;--sapList_Hover_Background: #ededed;--sapList_AlternatingBackground: #f2f2f2;--sapList_GroupHeaderBackground: #fff;--sapList_GroupHeaderBorderColor: #d9d9d9;--sapList_GroupHeaderTextColor: #32363a;--sapList_TableGroupHeaderBackground: #efefef;--sapList_TableGroupHeaderBorderColor: #d9d9d9;--sapList_TableGroupHeaderTextColor: #32363a;--sapList_FooterBackground: #fafafa;--sapList_FooterTextColor: #32363a;--sapList_TableFooterBorder: #d9d9d9;--sapList_TableFixedBorderColor: #8c8c8c;--sapList_TableFixedColumnBorderWidth: .0625rem;--sapList_TableFixedRowBorderWidth: .125rem;--sapMessage_BorderWidth: .0625rem;--sapMessage_ErrorBorderColor: #bb0000;--sapMessage_WarningBorderColor: #df6e0c;--sapMessage_SuccessBorderColor: #107e3e;--sapMessage_InformationBorderColor: #0a6ed1;--sapMessage_Button_Hover_Background: rgba(235,245,254,.2);--sapPopover_BorderCornerRadius: .25rem;--sapProgress_Background: #fff;--sapProgress_BorderColor: #89919a;--sapProgress_TextColor: #32363a;--sapProgress_FontSize: .75rem;--sapProgress_NegativeBackground: #fff;--sapProgress_NegativeBorderColor: #89919a;--sapProgress_NegativeTextColor: #32363a;--sapProgress_CriticalBackground: #fff;--sapProgress_CriticalBorderColor: #89919a;--sapProgress_CriticalTextColor: #32363a;--sapProgress_PositiveBackground: #fff;--sapProgress_PositiveBorderColor: #89919a;--sapProgress_PositiveTextColor: #32363a;--sapProgress_InformationBackground: #fff;--sapProgress_InformationBorderColor: #89919a;--sapProgress_InformationTextColor: #32363a;--sapProgress_Value_Background: #6a6d70;--sapProgress_Value_BorderColor: #89919a;--sapProgress_Value_TextColor: #32363a;--sapProgress_Value_NegativeBackground: #bb0000;--sapProgress_Value_NegativeBorderColor: #fff;--sapProgress_Value_NegativeTextColor: #32363a;--sapProgress_Value_CriticalBackground: #df6e0c;--sapProgress_Value_CriticalBorderColor: #fff;--sapProgress_Value_CriticalTextColor: #32363a;--sapProgress_Value_PositiveBackground: #107e3e;--sapProgress_Value_PositiveBorderColor: #fff;--sapProgress_Value_PositiveTextColor: #32363a;--sapProgress_Value_InformationBackground: #0a6ed1;--sapProgress_Value_InformationBorderColor: #fff;--sapProgress_Value_InformationTextColor: #32363a;--sapScrollBar_FaceColor: #949494;--sapScrollBar_TrackColor: #fff;--sapScrollBar_BorderColor: #949494;--sapScrollBar_SymbolColor: #0854a0;--sapScrollBar_Dimension: .75rem;--sapScrollBar_Hover_FaceColor: #8c8c8c;--sapSlider_Background: #89919a;--sapSlider_BorderColor: #89919a;--sapSlider_Selected_Background: #0854a0;--sapSlider_Selected_BorderColor: #0854a0;--sapSlider_Selected_Dimension: 111px;--sapSlider_HandleBackground: #fff;--sapSlider_HandleBorderColor: #89919a;--sapSlider_RangeHandleBackground: transparent;--sapSlider_Hover_HandleBackground: #ebf5fe;--sapSlider_Hover_HandleBorderColor: #0854a0;--sapSlider_Hover_RangeHandleBackground: #ebf5fe;--sapSlider_Active_HandleBackground: #0854a0;--sapSlider_Active_HandleBorderColor: #0854a0;--sapSlider_Active_RangeHandleBackground: transparent;--sapPageHeader_Background: #fff;--sapPageHeader_BorderColor: #d9d9d9;--sapPageHeader_TextColor: #32363a;--sapPageFooter_Background: #fff;--sapPageFooter_BorderColor: #d9d9d9;--sapPageFooter_TextColor: #32363a;--sapInfobar_Background: #0f828f;--sapInfobar_Hover_Background: #0e7581;--sapInfobar_Active_Background: #0a545c;--sapInfobar_NonInteractive_Background: #e6e6e6;--sapInfobar_TextColor: #fff;--sapObjectHeader_Background: #fff;--sapObjectHeader_Hover_Background: #ededed;--sapObjectHeader_BorderColor: #d9d9d9;--sapObjectHeader_Title_TextColor: #32363a;--sapObjectHeader_Title_FontSize: 1.25rem;--sapObjectHeader_Title_SnappedFontSize: 1.25rem;--sapObjectHeader_Title_FontFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapObjectHeader_Subtitle_TextColor: #6a6d70;--sapBlockLayer_Background: #000;--sapBlockLayer_Opacity: .2;--sapTab_TextColor: #6a6d70;--sapTab_ForegroundColor: #0854a0;--sapTab_IconColor: #0854a0;--sapTab_Background: #fff;--sapTab_Selected_TextColor: #0854a0;--sapTab_Selected_IconColor: #fff;--sapTab_Selected_Background: #0854a0;--sapTab_Selected_Indicator_Dimension: .1875rem;--sapTab_Positive_TextColor: #107e3e;--sapTab_Positive_ForegroundColor: #107e3e;--sapTab_Positive_IconColor: #107e3e;--sapTab_Positive_Selected_TextColor: #107e3e;--sapTab_Positive_Selected_IconColor: #fff;--sapTab_Positive_Selected_Background: #107e3e;--sapTab_Negative_TextColor: #bb0000;--sapTab_Negative_ForegroundColor: #bb0000;--sapTab_Negative_IconColor: #b00;--sapTab_Negative_Selected_TextColor: #bb0000;--sapTab_Negative_Selected_IconColor: #fff;--sapTab_Negative_Selected_Background: #bb0000;--sapTab_Critical_TextColor: #b3590a;--sapTab_Critical_ForegroundColor: #df6e0c;--sapTab_Critical_IconColor: #df6e0c;--sapTab_Critical_Selected_TextColor: #b3590a;--sapTab_Critical_Selected_IconColor: #fff;--sapTab_Critical_Selected_Background: #df6e0c;--sapTile_Background: #fff;--sapTile_Hover_Background: #f5f5f5;--sapTile_Active_Background: #f5f5f5;--sapTile_BorderColor: transparent;--sapTile_BorderCornerRadius: .25rem;--sapTile_TitleTextColor: #32363a;--sapTile_TextColor: #6a6d70;--sapTile_IconColor: #5a7da0;--sapTile_SeparatorColor: #ccc;--sapTile_Interactive_BorderColor: #b3b3b3;--sapTile_OverlayBackground: rgba(0,0,0,.8);--sapTile_OverlayForegroundColor: #fff;--sapTile_Hover_ContentBackground: #f5f5f5;--sapTile_Active_ContentBackground: #f5f5f5;--sapAccentColor1: #d08014;--sapAccentColor2: #d04343;--sapAccentColor3: #db1f77;--sapAccentColor4: #c0399f;--sapAccentColor5: #6367de;--sapAccentColor6: #286eb4;--sapAccentColor7: #0f828f;--sapAccentColor8: #7ca10c;--sapAccentColor9: #925ace;--sapAccentColor10: #647987;--sapAccentBackgroundColor1: #fff3b8;--sapAccentBackgroundColor2: #ffd0e7;--sapAccentBackgroundColor3: #fff0fa;--sapAccentBackgroundColor4: #ffdcf3;--sapAccentBackgroundColor5: #ded3ff;--sapAccentBackgroundColor6: #d1efff;--sapAccentBackgroundColor7: #c2fcee;--sapAccentBackgroundColor8: #ebf5cb;--sapAccentBackgroundColor9: #dafdf5;--sapAccentBackgroundColor10: #eaecee;--sapIndicationColor_1: #880000;--sapIndicationColor_1_Background: #880000;--sapIndicationColor_1_BorderColor: #880000;--sapIndicationColor_1_TextColor: #fff;--sapIndicationColor_1_Hover_Background: #6f0000;--sapIndicationColor_1_Active_Background: #500;--sapIndicationColor_1_Active_BorderColor: #880000;--sapIndicationColor_1_Active_TextColor: #fff;--sapIndicationColor_1_Selected_Background: #500;--sapIndicationColor_1_Selected_BorderColor: #880000;--sapIndicationColor_1_Selected_TextColor: #fff;--sapIndicationColor_1b: #fb9d9d;--sapIndicationColor_1b_TextColor: #880000;--sapIndicationColor_1b_Background: #fb9d9d;--sapIndicationColor_1b_BorderColor: #fb9d9d;--sapIndicationColor_1b_Hover_Background: #fa8585;--sapIndicationColor_2: #bb0000;--sapIndicationColor_2_Background: #bb0000;--sapIndicationColor_2_BorderColor: #bb0000;--sapIndicationColor_2_TextColor: #fff;--sapIndicationColor_2_Hover_Background: #a20000;--sapIndicationColor_2_Active_Background: #800;--sapIndicationColor_2_Active_BorderColor: #bb0000;--sapIndicationColor_2_Active_TextColor: #fff;--sapIndicationColor_2_Selected_Background: #800;--sapIndicationColor_2_Selected_BorderColor: #bb0000;--sapIndicationColor_2_Selected_TextColor: #fff;--sapIndicationColor_2b: #fcc4c4;--sapIndicationColor_2b_TextColor: #bb0000;--sapIndicationColor_2b_Background: #fcc4c4;--sapIndicationColor_2b_BorderColor: #fcc4c4;--sapIndicationColor_2b_Hover_Background: #fbacac;--sapIndicationColor_3: #df6e0c;--sapIndicationColor_3_Background: #df6e0c;--sapIndicationColor_3_BorderColor: #df6e0c;--sapIndicationColor_3_TextColor: #fff;--sapIndicationColor_3_Hover_Background: #d0670b;--sapIndicationColor_3_Active_Background: #c2600a;--sapIndicationColor_3_Active_BorderColor: #df6e0c;--sapIndicationColor_3_Active_TextColor: #fff;--sapIndicationColor_3_Selected_Background: #c2600a;--sapIndicationColor_3_Selected_BorderColor: #df6e0c;--sapIndicationColor_3_Selected_TextColor: #fff;--sapIndicationColor_3b: #fff2c0;--sapIndicationColor_3b_TextColor: #df6e0c;--sapIndicationColor_3b_Background: #fff2c0;--sapIndicationColor_3b_BorderColor: #fff2c0;--sapIndicationColor_3b_Hover_Background: #ffeda6;--sapIndicationColor_4: #107e3e;--sapIndicationColor_4_Background: #107e3e;--sapIndicationColor_4_BorderColor: #107e3e;--sapIndicationColor_4_TextColor: #fff;--sapIndicationColor_4_Hover_Background: #0d6733;--sapIndicationColor_4_Active_Background: #0a5128;--sapIndicationColor_4_Active_BorderColor: #107e3e;--sapIndicationColor_4_Active_TextColor: #fff;--sapIndicationColor_4_Selected_Background: #0a5128;--sapIndicationColor_4_Selected_BorderColor: #107e3e;--sapIndicationColor_4_Selected_TextColor: #fff;--sapIndicationColor_4b: #bae8bc;--sapIndicationColor_4b_TextColor: #107e3e;--sapIndicationColor_4b_Background: #bae8bc;--sapIndicationColor_4b_BorderColor: #bae8bc;--sapIndicationColor_4b_Hover_Background: #a7e2a9;--sapIndicationColor_5: #0a6ed1;--sapIndicationColor_5_Background: #0a6ed1;--sapIndicationColor_5_BorderColor: #0a6ed1;--sapIndicationColor_5_TextColor: #fff;--sapIndicationColor_5_Hover_Background: #0961b9;--sapIndicationColor_5_Active_Background: #0854a0;--sapIndicationColor_5_Active_BorderColor: #0a6ed1;--sapIndicationColor_5_Active_TextColor: #fff;--sapIndicationColor_5_Selected_Background: #0854a0;--sapIndicationColor_5_Selected_BorderColor: #0a6ed1;--sapIndicationColor_5_Selected_TextColor: #fff;--sapIndicationColor_5b: #d3effd;--sapIndicationColor_5b_TextColor: #0a6ed1;--sapIndicationColor_5b_Background: #d3effd;--sapIndicationColor_5b_BorderColor: #d3effd;--sapIndicationColor_5b_Hover_Background: #bbe6fc;--sapIndicationColor_6: #0f828f;--sapIndicationColor_6_Background: #0f828f;--sapIndicationColor_6_BorderColor: #0f828f;--sapIndicationColor_6_TextColor: #fff;--sapIndicationColor_6_Hover_Background: #0d6d78;--sapIndicationColor_6_Active_Background: #0a5861;--sapIndicationColor_6_Active_BorderColor: #0f828f;--sapIndicationColor_6_Active_TextColor: #fff;--sapIndicationColor_6_Selected_Background: #0a5861;--sapIndicationColor_6_Selected_BorderColor: #0f828f;--sapIndicationColor_6_Selected_TextColor: #fff;--sapIndicationColor_6b: #cdf5ec;--sapIndicationColor_6b_TextColor: #0f828f;--sapIndicationColor_6b_Background: #cdf5ec;--sapIndicationColor_6b_BorderColor: #cdf5ec;--sapIndicationColor_6b_Hover_Background: #b8f1e4;--sapIndicationColor_7: #925ace;--sapIndicationColor_7_Background: #925ace;--sapIndicationColor_7_BorderColor: #925ace;--sapIndicationColor_7_TextColor: #fff;--sapIndicationColor_7_Hover_Background: #8546c8;--sapIndicationColor_7_Active_Background: #7838bd;--sapIndicationColor_7_Active_BorderColor: #925ace;--sapIndicationColor_7_Active_TextColor: #fff;--sapIndicationColor_7_Selected_Background: #7838bd;--sapIndicationColor_7_Selected_BorderColor: #925ace;--sapIndicationColor_7_Selected_TextColor: #fff;--sapIndicationColor_7b: #e2dbff;--sapIndicationColor_7b_TextColor: #925ace;--sapIndicationColor_7b_Background: #e2dbff;--sapIndicationColor_7b_BorderColor: #e2dbff;--sapIndicationColor_7b_Hover_Background: #cdc2ff;--sapIndicationColor_8: #c0399f;--sapIndicationColor_8_Background: #c0399f;--sapIndicationColor_8_BorderColor: #c0399f;--sapIndicationColor_8_TextColor: #fff;--sapIndicationColor_8_Hover_Background: #ac338f;--sapIndicationColor_8_Active_Background: #992d7e;--sapIndicationColor_8_Active_BorderColor: #c0399f;--sapIndicationColor_8_Active_TextColor: #fff;--sapIndicationColor_8_Selected_Background: #992d7e;--sapIndicationColor_8_Selected_BorderColor: #c0399f;--sapIndicationColor_8_Selected_TextColor: #fff;--sapIndicationColor_8b: #f8d6ff;--sapIndicationColor_8b_TextColor: #c0399f;--sapIndicationColor_8b_Background: #f8d6ff;--sapIndicationColor_8b_BorderColor: #f8d6ff;--sapIndicationColor_8b_Hover_Background: #f4bdff;--sapIndicationColor_9: #1d2d3e;--sapIndicationColor_9_Background: #1d2d3e;--sapIndicationColor_9_BorderColor: #1d2d3e;--sapIndicationColor_9_TextColor: #fff;--sapIndicationColor_9_Hover_Background: #15202d;--sapIndicationColor_9_Active_Background: #0d141b;--sapIndicationColor_9_Active_BorderColor: #1d2d3e;--sapIndicationColor_9_Active_TextColor: #fff;--sapIndicationColor_9_Selected_Background: #0d141b;--sapIndicationColor_9_Selected_BorderColor: #1d2d3e;--sapIndicationColor_9_Selected_TextColor: #fff;--sapIndicationColor_9b: #fff;--sapIndicationColor_9b_TextColor: #1d2d3e;--sapIndicationColor_9b_Background: #fff;--sapIndicationColor_9b_BorderColor: #d9d9d9;--sapIndicationColor_9b_Hover_Background: #f2f2f2;--sapIndicationColor_10: #45484a;--sapIndicationColor_10_Background: #45484a;--sapIndicationColor_10_BorderColor: #45484a;--sapIndicationColor_10_TextColor: #fff;--sapIndicationColor_10_Hover_Background: #393b3d;--sapIndicationColor_10_Active_Background: #2c2e30;--sapIndicationColor_10_Active_BorderColor: #45484a;--sapIndicationColor_10_Active_TextColor: #fff;--sapIndicationColor_10_Selected_Background: #2c2e30;--sapIndicationColor_10_Selected_BorderColor: #45484a;--sapIndicationColor_10_Selected_TextColor: #fff;--sapIndicationColor_10b: #eaecee;--sapIndicationColor_10b_TextColor: #45484a;--sapIndicationColor_10b_Background: #eaecee;--sapIndicationColor_10b_BorderColor: #eaecee;--sapIndicationColor_10b_Hover_Background: #dcdfe3;--sapLegend_WorkingBackground: #fafafa;--sapLegend_NonWorkingBackground: #dedede;--sapLegend_CurrentDateTime: #c0399f;--sapLegendColor1: #d58215;--sapLegendColor2: #dc5b5b;--sapLegendColor3: #db1f77;--sapLegendColor4: #9b3b3b;--sapLegendColor5: #cf5db3;--sapLegendColor6: #286eb4;--sapLegendColor7: #1193a2;--sapLegendColor8: #8b9668;--sapLegendColor9: #647987;--sapLegendColor10: #892971;--sapLegendColor11: #725a3a;--sapLegendColor12: #bb2f2f;--sapLegendColor13: #bc1b66;--sapLegendColor14: #8b714f;--sapLegendColor15: #606190;--sapLegendColor16: #597da1;--sapLegendColor17: #49797e;--sapLegendColor18: #687a33;--sapLegendColor19: #295989;--sapLegendColor20: #5154bd;--sapLegendBackgroundColor1: #fdf3e7;--sapLegendBackgroundColor2: #faeaea;--sapLegendBackgroundColor3: #fce9f2;--sapLegendBackgroundColor4: #f8ecec;--sapLegendBackgroundColor5: #f9ebf5;--sapLegendBackgroundColor6: #ebf3fa;--sapLegendBackgroundColor7: #e8fbfd;--sapLegendBackgroundColor8: #f3f4ef;--sapLegendBackgroundColor9: #f1f3f4;--sapLegendBackgroundColor10: #f9ebf6;--sapLegendBackgroundColor11: #f6f2ed;--sapLegendBackgroundColor12: #faeaea;--sapLegendBackgroundColor13: #fce9f2;--sapLegendBackgroundColor14: #f5f2ee;--sapLegendBackgroundColor15: #f0f0f5;--sapLegendBackgroundColor16: #eff2f6;--sapLegendBackgroundColor17: #eff5f6;--sapLegendBackgroundColor18: #f5f7ed;--sapLegendBackgroundColor19: #ebf2f9;--sapLegendBackgroundColor20: #ecedf8;--sapChart_Background: transparent;--sapChart_ContrastTextShadow: 0 0 .0625rem rgba(0,0,0,.7);--sapChart_ContrastShadowColor: #fff;--sapChart_ContrastLineColor: #fff;--sapChart_LineColor_1: #e1e3e5;--sapChart_LineColor_2: #fff;--sapChart_LineColor_3: #000;--sapChart_Choropleth_Background: #f7f7f8;--sapChart_ChoroplethRegion_Background: #848f94;--sapChart_ChoroplethRegion_BorderColor: #f7f7f8;--sapChart_Data_TextColor: #030303;--sapChart_Data_ContrastTextColor: #fff;--sapChart_Data_InteractiveColor: #000;--sapChart_Data_Active_Background: #d4d4d4;--sapChart_OrderedColor_1: #438cd5;--sapChart_OrderedColor_2: #e66729;--sapChart_OrderedColor_3: #16976c;--sapChart_OrderedColor_4: #ed4a7b;--sapChart_OrderedColor_5: #945ecf;--sapChart_OrderedColor_6: #1193a2;--sapChart_OrderedColor_7: #525df4;--sapChart_OrderedColor_8: #bf399e;--sapChart_OrderedColor_9: #6c8893;--sapChart_OrderedColor_10: #ed5f5f;--sapChart_OrderedColor_11: #2f6497;--sapChart_OrderedColor_12: #b08e6d;--sapChart_Bad: #dc0d0e;--sapChart_Critical: #cb7d0c;--sapChart_Good: #3c9d57;--sapChart_Neutral: #848f94;--sapChart_Sequence_1_Plus3: #9cc7f2;--sapChart_Sequence_1_Plus3_TextColor: #030303;--sapChart_Sequence_1_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_1_Plus2: #7eb2e7;--sapChart_Sequence_1_Plus2_TextColor: #030303;--sapChart_Sequence_1_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_1_Plus1: #5e9edd;--sapChart_Sequence_1_Plus1_TextColor: #030303;--sapChart_Sequence_1_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_1: #438cd5;--sapChart_Sequence_1_TextColor: #030303;--sapChart_Sequence_1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_1_BorderColor: #438cd5;--sapChart_Sequence_1_Minus1: #3170af;--sapChart_Sequence_1_Minus1_TextColor: #fff;--sapChart_Sequence_1_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_1_Minus2: #15599d;--sapChart_Sequence_1_Minus2_TextColor: #fff;--sapChart_Sequence_1_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_1_Minus3: #134f8b;--sapChart_Sequence_1_Minus3_TextColor: #fff;--sapChart_Sequence_1_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_1_Minus4: #104579;--sapChart_Sequence_1_Minus4_TextColor: #fff;--sapChart_Sequence_1_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_1_Minus5: #0e3a67;--sapChart_Sequence_1_Minus5_TextColor: #fff;--sapChart_Sequence_1_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_2_Plus3: #ffa376;--sapChart_Sequence_2_Plus3_TextColor: #030303;--sapChart_Sequence_2_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_2_Plus2: #f69565;--sapChart_Sequence_2_Plus2_TextColor: #030303;--sapChart_Sequence_2_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_2_Plus1: #ef7c44;--sapChart_Sequence_2_Plus1_TextColor: #030303;--sapChart_Sequence_2_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_2: #e66729;--sapChart_Sequence_2_TextColor: #030303;--sapChart_Sequence_2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_2_BorderColor: #c95218;--sapChart_Sequence_2_Minus1: #c95218;--sapChart_Sequence_2_Minus1_TextColor: #fff;--sapChart_Sequence_2_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_2_Minus2: #b83c00;--sapChart_Sequence_2_Minus2_TextColor: #fff;--sapChart_Sequence_2_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_2_Minus3: #973e12;--sapChart_Sequence_2_Minus3_TextColor: #fff;--sapChart_Sequence_2_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_2_Minus4: #80340f;--sapChart_Sequence_2_Minus4_TextColor: #fff;--sapChart_Sequence_2_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_2_Minus5: #6a2b0c;--sapChart_Sequence_2_Minus5_TextColor: #fff;--sapChart_Sequence_2_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_3_Plus3: #80cbb2;--sapChart_Sequence_3_Plus3_TextColor: #030303;--sapChart_Sequence_3_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_3_Plus2: #57bc9a;--sapChart_Sequence_3_Plus2_TextColor: #030303;--sapChart_Sequence_3_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_3_Plus1: #39a783;--sapChart_Sequence_3_Plus1_TextColor: #030303;--sapChart_Sequence_3_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_3: #16976c;--sapChart_Sequence_3_TextColor: #030303;--sapChart_Sequence_3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_3_BorderColor: #0b7954;--sapChart_Sequence_3_Minus1: #0b7954;--sapChart_Sequence_3_Minus1_TextColor: #fff;--sapChart_Sequence_3_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_3_Minus2: #025e40;--sapChart_Sequence_3_Minus2_TextColor: #fff;--sapChart_Sequence_3_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_3_Minus3: #093e2c;--sapChart_Sequence_3_Minus3_TextColor: #fff;--sapChart_Sequence_3_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_3_Minus4: #073123;--sapChart_Sequence_3_Minus4_TextColor: #fff;--sapChart_Sequence_3_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_3_Minus5: #052319;--sapChart_Sequence_3_Minus5_TextColor: #fff;--sapChart_Sequence_3_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_4_Plus3: #f8b4c9;--sapChart_Sequence_4_Plus3_TextColor: #030303;--sapChart_Sequence_4_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_4_Plus2: #f490ae;--sapChart_Sequence_4_Plus2_TextColor: #030303;--sapChart_Sequence_4_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_4_Plus1: #f06a93;--sapChart_Sequence_4_Plus1_TextColor: #030303;--sapChart_Sequence_4_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_4: #ed4a7b;--sapChart_Sequence_4_TextColor: #030303;--sapChart_Sequence_4_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_4_BorderColor: #ed4a7b;--sapChart_Sequence_4_Minus1: #e5386c;--sapChart_Sequence_4_Minus1_TextColor: #fff;--sapChart_Sequence_4_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_4_Minus2: #d70947;--sapChart_Sequence_4_Minus2_TextColor: #fff;--sapChart_Sequence_4_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_4_Minus3: #b51243;--sapChart_Sequence_4_Minus3_TextColor: #fff;--sapChart_Sequence_4_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_4_Minus4: #900e35;--sapChart_Sequence_4_Minus4_TextColor: #fff;--sapChart_Sequence_4_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_4_Minus5: #790c2d;--sapChart_Sequence_4_Minus5_TextColor: #fff;--sapChart_Sequence_4_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_5_Plus3: #d3bdeb;--sapChart_Sequence_5_Plus3_TextColor: #030303;--sapChart_Sequence_5_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_5_Plus2: #be9de2;--sapChart_Sequence_5_Plus2_TextColor: #030303;--sapChart_Sequence_5_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_5_Plus1: #a97dd8;--sapChart_Sequence_5_Plus1_TextColor: #030303;--sapChart_Sequence_5_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_5: #945ecf;--sapChart_Sequence_5_TextColor: #030303;--sapChart_Sequence_5_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_5_BorderColor: #945ecf;--sapChart_Sequence_5_Minus1: #8746ce;--sapChart_Sequence_5_Minus1_TextColor: #fff;--sapChart_Sequence_5_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_5_Minus2: #7629cc;--sapChart_Sequence_5_Minus2_TextColor: #fff;--sapChart_Sequence_5_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_5_Minus3: #6626ab;--sapChart_Sequence_5_Minus3_TextColor: #fff;--sapChart_Sequence_5_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_5_Minus4: #521f8a;--sapChart_Sequence_5_Minus4_TextColor: #fff;--sapChart_Sequence_5_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_5_Minus5: #3c1c5e;--sapChart_Sequence_5_Minus5_TextColor: #fff;--sapChart_Sequence_5_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_6_Plus3: #71ccd6;--sapChart_Sequence_6_Plus3_TextColor: #030303;--sapChart_Sequence_6_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_6_Plus2: #4bbcc9;--sapChart_Sequence_6_Plus2_TextColor: #030303;--sapChart_Sequence_6_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_6_Plus1: #29858f;--sapChart_Sequence_6_Plus1_TextColor: #fff;--sapChart_Sequence_6_Plus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_6: #1193a2;--sapChart_Sequence_6_TextColor: #030303;--sapChart_Sequence_6_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_6_BorderColor: #1193a2;--sapChart_Sequence_6_Minus1: #0b7c8a;--sapChart_Sequence_6_Minus1_TextColor: #fff;--sapChart_Sequence_6_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_6_Minus2: #07656f;--sapChart_Sequence_6_Minus2_TextColor: #fff;--sapChart_Sequence_6_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_6_Minus3: #07525a;--sapChart_Sequence_6_Minus3_TextColor: #fff;--sapChart_Sequence_6_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_6_Minus4: #064147;--sapChart_Sequence_6_Minus4_TextColor: #fff;--sapChart_Sequence_6_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_6_Minus5: #042b30;--sapChart_Sequence_6_Minus5_TextColor: #fff;--sapChart_Sequence_6_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_7_Plus3: #99a0f9;--sapChart_Sequence_7_Plus3_TextColor: #030303;--sapChart_Sequence_7_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_7_Plus2: #828af7;--sapChart_Sequence_7_Plus2_TextColor: #030303;--sapChart_Sequence_7_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_7_Plus1: #6973f6;--sapChart_Sequence_7_Plus1_TextColor: #030303;--sapChart_Sequence_7_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_7: #525df4;--sapChart_Sequence_7_TextColor: #fff;--sapChart_Sequence_7_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_7_BorderColor: #525df4;--sapChart_Sequence_7_Minus1: #3945e4;--sapChart_Sequence_7_Minus1_TextColor: #fff;--sapChart_Sequence_7_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_7_Minus2: #2631d4;--sapChart_Sequence_7_Minus2_TextColor: #fff;--sapChart_Sequence_7_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_7_Minus3: #222cbe;--sapChart_Sequence_7_Minus3_TextColor: #fff;--sapChart_Sequence_7_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_7_Minus4: #1c249b;--sapChart_Sequence_7_Minus4_TextColor: #fff;--sapChart_Sequence_7_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_7_Minus5: #161c79;--sapChart_Sequence_7_Minus5_TextColor: #fff;--sapChart_Sequence_7_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_8_Plus3: #e598d2;--sapChart_Sequence_8_Plus3_TextColor: #030303;--sapChart_Sequence_8_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_8_Plus2: #d877c0;--sapChart_Sequence_8_Plus2_TextColor: #030303;--sapChart_Sequence_8_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_8_Plus1: #cd59b1;--sapChart_Sequence_8_Plus1_TextColor: #030303;--sapChart_Sequence_8_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_8: #bf399e;--sapChart_Sequence_8_TextColor: #fff;--sapChart_Sequence_8_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_8_BorderColor: #bf399e;--sapChart_Sequence_8_Minus1: #a92689;--sapChart_Sequence_8_Minus1_TextColor: #fff;--sapChart_Sequence_8_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_8_Minus2: #921473;--sapChart_Sequence_8_Minus2_TextColor: #fff;--sapChart_Sequence_8_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_8_Minus3: #801265;--sapChart_Sequence_8_Minus3_TextColor: #fff;--sapChart_Sequence_8_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_8_Minus4: #6a0f54;--sapChart_Sequence_8_Minus4_TextColor: #fff;--sapChart_Sequence_8_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_8_Minus5: #4b0a3b;--sapChart_Sequence_8_Minus5_TextColor: #fff;--sapChart_Sequence_8_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_9_Plus3: #d1d9db;--sapChart_Sequence_9_Plus3_TextColor: #030303;--sapChart_Sequence_9_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_9_Plus2: #adbcc3;--sapChart_Sequence_9_Plus2_TextColor: #030303;--sapChart_Sequence_9_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_9_Plus1: #8ca2ab;--sapChart_Sequence_9_Plus1_TextColor: #030303;--sapChart_Sequence_9_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_9: #6c8893;--sapChart_Sequence_9_TextColor: #030303;--sapChart_Sequence_9_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_9_BorderColor: #6c8893;--sapChart_Sequence_9_Minus1: #547582;--sapChart_Sequence_9_Minus1_TextColor: #fff;--sapChart_Sequence_9_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_9_Minus2: #3c6372;--sapChart_Sequence_9_Minus2_TextColor: #fff;--sapChart_Sequence_9_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_9_Minus3: #2e4b57;--sapChart_Sequence_9_Minus3_TextColor: #fff;--sapChart_Sequence_9_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_9_Minus4: #20343c;--sapChart_Sequence_9_Minus4_TextColor: #fff;--sapChart_Sequence_9_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_9_Minus5: #152328;--sapChart_Sequence_9_Minus5_TextColor: #fff;--sapChart_Sequence_9_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_10_Plus3: #fbc1c1;--sapChart_Sequence_10_Plus3_TextColor: #030303;--sapChart_Sequence_10_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_10_Plus2: #f79d9d;--sapChart_Sequence_10_Plus2_TextColor: #030303;--sapChart_Sequence_10_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_10_Plus1: #f27d7d;--sapChart_Sequence_10_Plus1_TextColor: #030303;--sapChart_Sequence_10_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_10: #ed5f5f;--sapChart_Sequence_10_TextColor: #030303;--sapChart_Sequence_10_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_10_BorderColor: #e04343;--sapChart_Sequence_10_Minus1: #e04343;--sapChart_Sequence_10_Minus1_TextColor: #030303;--sapChart_Sequence_10_Minus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_10_Minus2: #d02a2a;--sapChart_Sequence_10_Minus2_TextColor: #fff;--sapChart_Sequence_10_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_10_Minus3: #b72525;--sapChart_Sequence_10_Minus3_TextColor: #fff;--sapChart_Sequence_10_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_10_Minus4: #9d2020;--sapChart_Sequence_10_Minus4_TextColor: #fff;--sapChart_Sequence_10_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_10_Minus5: #841b1b;--sapChart_Sequence_10_Minus5_TextColor: #fff;--sapChart_Sequence_10_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_11_Plus3: #85a1bb;--sapChart_Sequence_11_Plus3_TextColor: #030303;--sapChart_Sequence_11_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_11_Plus2: #698daf;--sapChart_Sequence_11_Plus2_TextColor: #030303;--sapChart_Sequence_11_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_11_Plus1: #4d79a2;--sapChart_Sequence_11_Plus1_TextColor: #030303;--sapChart_Sequence_11_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_11: #2f6497;--sapChart_Sequence_11_TextColor: #fff;--sapChart_Sequence_11_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_11_BorderColor: #2f6497;--sapChart_Sequence_11_Minus1: #245a8e;--sapChart_Sequence_11_Minus1_TextColor: #fff;--sapChart_Sequence_11_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_11_Minus2: #144a7f;--sapChart_Sequence_11_Minus2_TextColor: #fff;--sapChart_Sequence_11_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_11_Minus3: #103b65;--sapChart_Sequence_11_Minus3_TextColor: #fff;--sapChart_Sequence_11_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_11_Minus4: #0c2b4a;--sapChart_Sequence_11_Minus4_TextColor: #fff;--sapChart_Sequence_11_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_11_Minus5: #081c30;--sapChart_Sequence_11_Minus5_TextColor: #fff;--sapChart_Sequence_11_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_12_Plus3: #ebebeb;--sapChart_Sequence_12_Plus3_TextColor: #030303;--sapChart_Sequence_12_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_12_Plus2: #ead8c7;--sapChart_Sequence_12_Plus2_TextColor: #030303;--sapChart_Sequence_12_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_12_Plus1: #d0b79e;--sapChart_Sequence_12_Plus1_TextColor: #030303;--sapChart_Sequence_12_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_12: #b08e6d;--sapChart_Sequence_12_TextColor: #030303;--sapChart_Sequence_12_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_12_BorderColor: #b08e6d;--sapChart_Sequence_12_Minus1: #9e7a56;--sapChart_Sequence_12_Minus1_TextColor: #fff;--sapChart_Sequence_12_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_12_Minus2: #865b31;--sapChart_Sequence_12_Minus2_TextColor: #fff;--sapChart_Sequence_12_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_12_Minus3: #785431;--sapChart_Sequence_12_Minus3_TextColor: #fff;--sapChart_Sequence_12_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_12_Minus4: #69492b;--sapChart_Sequence_12_Minus4_TextColor: #fff;--sapChart_Sequence_12_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_12_Minus5: #523a23;--sapChart_Sequence_12_Minus5_TextColor: #fff;--sapChart_Sequence_12_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Bad_Plus3: #f99494;--sapChart_Sequence_Bad_Plus3_TextColor: #030303;--sapChart_Sequence_Bad_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Bad_Plus2: #f66364;--sapChart_Sequence_Bad_Plus2_TextColor: #030303;--sapChart_Sequence_Bad_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Bad_Plus1: #f33334;--sapChart_Sequence_Bad_Plus1_TextColor: #030303;--sapChart_Sequence_Bad_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Bad: #dc0d0e;--sapChart_Sequence_Bad_TextColor: #fff;--sapChart_Sequence_Bad_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Bad_BorderColor: #dc0d0e;--sapChart_Sequence_Bad_Minus1: #b90c0d;--sapChart_Sequence_Bad_Minus1_TextColor: #fff;--sapChart_Sequence_Bad_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Bad_Minus2: #b90c0d;--sapChart_Sequence_Bad_Minus2_TextColor: #fff;--sapChart_Sequence_Bad_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Bad_Minus3: #7c0708;--sapChart_Sequence_Bad_Minus3_TextColor: #fff;--sapChart_Sequence_Bad_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Bad_Minus4: #550505;--sapChart_Sequence_Bad_Minus4_TextColor: #fff;--sapChart_Sequence_Bad_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Bad_Minus5: #380304;--sapChart_Sequence_Bad_Minus5_TextColor: #fff;--sapChart_Sequence_Bad_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Critical_Plus3: #f7c479;--sapChart_Sequence_Critical_Plus3_TextColor: #030303;--sapChart_Sequence_Critical_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Critical_Plus2: #f3a83a;--sapChart_Sequence_Critical_Plus2_TextColor: #030303;--sapChart_Sequence_Critical_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Critical_Plus1: #ed920e;--sapChart_Sequence_Critical_Plus1_TextColor: #030303;--sapChart_Sequence_Critical_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Critical: #cb7d0c;--sapChart_Sequence_Critical_TextColor: #030303;--sapChart_Sequence_Critical_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Critical_BorderColor: #cb7d0c;--sapChart_Sequence_Critical_Minus1: #b36e0b;--sapChart_Sequence_Critical_Minus1_TextColor: #030303;--sapChart_Sequence_Critical_Minus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Critical_Minus2: #915909;--sapChart_Sequence_Critical_Minus2_TextColor: #fff;--sapChart_Sequence_Critical_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Critical_Minus3: #744807;--sapChart_Sequence_Critical_Minus3_TextColor: #fff;--sapChart_Sequence_Critical_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Critical_Minus4: #573605;--sapChart_Sequence_Critical_Minus4_TextColor: #fff;--sapChart_Sequence_Critical_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Critical_Minus5: #3b2403;--sapChart_Sequence_Critical_Minus5_TextColor: #fff;--sapChart_Sequence_Critical_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Good_Plus3: #9ad8ab;--sapChart_Sequence_Good_Plus3_TextColor: #030303;--sapChart_Sequence_Good_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Good_Plus2: #6ac683;--sapChart_Sequence_Good_Plus2_TextColor: #030303;--sapChart_Sequence_Good_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Good_Plus1: #46b765;--sapChart_Sequence_Good_Plus1_TextColor: #030303;--sapChart_Sequence_Good_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Good: #3c9d57;--sapChart_Sequence_Good_TextColor: #030303;--sapChart_Sequence_Good_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Good_BorderColor: #3c9d57;--sapChart_Sequence_Good_Minus1: #328349;--sapChart_Sequence_Good_Minus1_TextColor: #fff;--sapChart_Sequence_Good_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Good_Minus2: #276638;--sapChart_Sequence_Good_Minus2_TextColor: #fff;--sapChart_Sequence_Good_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Good_Minus3: #20532e;--sapChart_Sequence_Good_Minus3_TextColor: #fff;--sapChart_Sequence_Good_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Good_Minus4: #1a4426;--sapChart_Sequence_Good_Minus4_TextColor: #fff;--sapChart_Sequence_Good_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Good_Minus5: #15361e;--sapChart_Sequence_Good_Minus5_TextColor: #fff;--sapChart_Sequence_Good_Minus5_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Neutral_Plus3: #d5dadc;--sapChart_Sequence_Neutral_Plus3_TextColor: #030303;--sapChart_Sequence_Neutral_Plus3_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Neutral_Plus2: #bac1c4;--sapChart_Sequence_Neutral_Plus2_TextColor: #030303;--sapChart_Sequence_Neutral_Plus2_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Neutral_Plus1: #9ea8ad;--sapChart_Sequence_Neutral_Plus1_TextColor: #030303;--sapChart_Sequence_Neutral_Plus1_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Neutral: #848f94;--sapChart_Sequence_Neutral_TextColor: #030303;--sapChart_Sequence_Neutral_TextShadow: 0 0 .125rem #fff;--sapChart_Sequence_Neutral_BorderColor: #848f94;--sapChart_Sequence_Neutral_Minus1: #6a757b;--sapChart_Sequence_Neutral_Minus1_TextColor: #fff;--sapChart_Sequence_Neutral_Minus1_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Neutral_Minus2: #596368;--sapChart_Sequence_Neutral_Minus2_TextColor: #fff;--sapChart_Sequence_Neutral_Minus2_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Neutral_Minus3: #454c4f;--sapChart_Sequence_Neutral_Minus3_TextColor: #fff;--sapChart_Sequence_Neutral_Minus3_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Neutral_Minus4: #323739;--sapChart_Sequence_Neutral_Minus4_TextColor: #fff;--sapChart_Sequence_Neutral_Minus4_TextShadow: 0 0 .125rem #000;--sapChart_Sequence_Neutral_Minus5: #232729;--sapChart_Sequence_Neutral_Minus5_TextColor: #fff;--sapChart_Sequence_Neutral_Minus5_TextShadow: 0 0 .125rem #000;--sapSapThemeId: sap_fiori_3;--sapBreakpoint_S_Min: 0;--sapBreakpoint_M_Min: 600px;--sapBreakpoint_L_Min: 1024px;--sapBreakpoint_XL_Min: 1440px}\n";
|
|
4
|
+
|
|
5
|
+
exports.default = parametersBundle_css;
|
|
6
|
+
|
|
7
|
+
}));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
sap.ui.define(['exports'], (function (exports) { 'use strict';
|
|
2
|
+
|
|
3
|
+
var parametersBundle_css = ":root{--ui5-v2-8-0-avatar-hover-box-shadow-offset: 0px 0px 0px .0625rem var();--ui5-v2-8-0-avatar-initials-color: var(--sapContent_ImagePlaceholderForegroundColor);--ui5-v2-8-0-avatar-border-radius: .25rem;--ui5-v2-8-0-avatar-border-radius-img-deduction: .0625rem;--ui5-v2-8-0-avatar-initials-border: none;--ui5-v2-8-0-avatar-accent1: var(--sapAccentColor1);--ui5-v2-8-0-avatar-accent2: var(--sapAccentColor2);--ui5-v2-8-0-avatar-accent3: var(--sapAccentColor3);--ui5-v2-8-0-avatar-accent4: var(--sapAccentColor4);--ui5-v2-8-0-avatar-accent5: var(--sapAccentColor5);--ui5-v2-8-0-avatar-accent6: var(--sapAccentColor6);--ui5-v2-8-0-avatar-accent7: var(--sapAccentColor7);--ui5-v2-8-0-avatar-accent8: var(--sapAccentColor8);--ui5-v2-8-0-avatar-accent9: var(--sapAccentColor9);--ui5-v2-8-0-avatar-accent10: var(--sapAccentColor10);--ui5-v2-8-0-avatar-placeholder: var(--sapContent_ImagePlaceholderBackground);--ui5-v2-8-0-avatar-accent1-color: var(--ui5-v2-8-0-avatar-initials-color);--ui5-v2-8-0-avatar-accent2-color: var(--ui5-v2-8-0-avatar-initials-color);--ui5-v2-8-0-avatar-accent3-color: var(--ui5-v2-8-0-avatar-initials-color);--ui5-v2-8-0-avatar-accent4-color: var(--ui5-v2-8-0-avatar-initials-color);--ui5-v2-8-0-avatar-accent5-color: var(--ui5-v2-8-0-avatar-initials-color);--ui5-v2-8-0-avatar-accent6-color: var(--ui5-v2-8-0-avatar-initials-color);--ui5-v2-8-0-avatar-accent7-color: var(--ui5-v2-8-0-avatar-initials-color);--ui5-v2-8-0-avatar-accent8-color: var(--ui5-v2-8-0-avatar-initials-color);--ui5-v2-8-0-avatar-accent9-color: var(--ui5-v2-8-0-avatar-initials-color);--ui5-v2-8-0-avatar-accent10-color: var(--ui5-v2-8-0-avatar-initials-color);--ui5-v2-8-0-avatar-placeholder-color: var(--ui5-v2-8-0-avatar-initials-color);--ui5-v2-8-0-avatar-accent1-border-color: var(--sapField_BorderColor);--ui5-v2-8-0-avatar-accent2-border-color: var(--sapField_BorderColor);--ui5-v2-8-0-avatar-accent3-border-color: var(--sapField_BorderColor);--ui5-v2-8-0-avatar-accent4-border-color: var(--sapField_BorderColor);--ui5-v2-8-0-avatar-accent5-border-color: var(--sapField_BorderColor);--ui5-v2-8-0-avatar-accent6-border-color: var(--sapField_BorderColor);--ui5-v2-8-0-avatar-accent7-border-color: var(--sapField_BorderColor);--ui5-v2-8-0-avatar-accent8-border-color: var(--sapField_BorderColor);--ui5-v2-8-0-avatar-accent9-border-color: var(--sapField_BorderColor);--ui5-v2-8-0-avatar-accent10-border-color: var(--sapField_BorderColor);--ui5-v2-8-0-avatar-placeholder-border-color: var(--sapField_BorderColor);--_ui5-v2-8-0_avatar_outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-v2-8-0_avatar_focus_offset: .0625rem;--_ui5-v2-8-0_avatar_focus_width: .0625rem;--_ui5-v2-8-0_avatar_focus_color: var(--sapContent_FocusColor);--_ui5-v2-8-0_avatar_overflow_button_focus_offset: .0625rem;--_ui5-v2-8-0_avatar_icon_XS: 1rem;--_ui5-v2-8-0_avatar_icon_S: 1.5rem;--_ui5-v2-8-0_avatar_icon_M: 2rem;--_ui5-v2-8-0_avatar_icon_L: 2.5rem;--_ui5-v2-8-0_avatar_icon_XL: 3rem;--_ui5-v2-8-0_avatar_fontsize_XS: 1rem;--_ui5-v2-8-0_avatar_fontsize_S: 1.125rem;--_ui5-v2-8-0_avatar_fontsize_M: 1.5rem;--_ui5-v2-8-0_avatar_fontsize_L: 2.25rem;--_ui5-v2-8-0_avatar_fontsize_XL: 3rem;--_ui5-v2-8-0_avatar_group_button_focus_border: none;--_ui5-v2-8-0-tag-height: 1rem;--_ui5-v2-8-0-tag-padding-inline-icon-only: .1875rem;--_ui5-v2-8-0-tag-text-padding: 0 .25rem;--_ui5-v2-8-0-tag-text-transform: uppercase;--_ui5-v2-8-0-tag-icon-width: .75rem;--_ui5-v2-8-0-tag-icon-gap: .125rem;--_ui5-v2-8-0-tag-font-size: var(--sapFontSmallSize);--_ui5-v2-8-0-tag-font: \"72override\", var(--sapFontFamily);--_ui5-v2-8-0-tag-font-weight: bold;--_ui5-v2-8-0-tag-letter-spacing: .0125em;--ui5-v2-8-0-tag-contrast-text-shadow: var(--sapContent_ContrastTextShadow);--ui5-v2-8-0-tag-information-text-shadow: var(--ui5-v2-8-0-tag-text-shadow);--ui5-v2-8-0-tag-set2-color-scheme-1-color: var(--sapIndicationColor_1);--ui5-v2-8-0-tag-set2-color-scheme-1-background: var(--sapIndicationColor_1b);--ui5-v2-8-0-tag-set2-color-scheme-1-border: var(--sapIndicationColor_1b_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-1-hover-background: var(--sapIndicationColor_1b_Hover_Background);--ui5-v2-8-0-tag-set2-color-scheme-1-active-color: var(--sapIndicationColor_1_Active_TextColor);--ui5-v2-8-0-tag-set2-color-scheme-1-active-background: var(--sapIndicationColor_1_Active_Background);--ui5-v2-8-0-tag-set2-color-scheme-1-active-border: var(--sapIndicationColor_1_Active_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-2-color: var(--sapIndicationColor_2);--ui5-v2-8-0-tag-set2-color-scheme-2-background: var(--sapIndicationColor_2b);--ui5-v2-8-0-tag-set2-color-scheme-2-border: var(--sapIndicationColor_2b_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-2-hover-background: var(--sapIndicationColor_2b_Hover_Background);--ui5-v2-8-0-tag-set2-color-scheme-2-active-color: var(--sapIndicationColor_2_Active_TextColor);--ui5-v2-8-0-tag-set2-color-scheme-2-active-background: var(--sapIndicationColor_2_Active_Background);--ui5-v2-8-0-tag-set2-color-scheme-2-active-border: var(--sapIndicationColor_2_Active_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-3-color: var(--sapIndicationColor_3);--ui5-v2-8-0-tag-set2-color-scheme-3-background: var(--sapIndicationColor_3b);--ui5-v2-8-0-tag-set2-color-scheme-3-border: var(--sapIndicationColor_3b_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-3-hover-background: var(--sapIndicationColor_3b_Hover_Background);--ui5-v2-8-0-tag-set2-color-scheme-3-active-color: var(--sapIndicationColor_3_Active_TextColor);--ui5-v2-8-0-tag-set2-color-scheme-3-active-background: var(--sapIndicationColor_3_Active_Background);--ui5-v2-8-0-tag-set2-color-scheme-3-active-border: var(--sapIndicationColor_3_Active_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-4-color: var(--sapIndicationColor_4);--ui5-v2-8-0-tag-set2-color-scheme-4-background: var(--sapIndicationColor_4b);--ui5-v2-8-0-tag-set2-color-scheme-4-border: var(--sapIndicationColor_4b_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-4-hover-background: var(--sapIndicationColor_4b_Hover_Background);--ui5-v2-8-0-tag-set2-color-scheme-4-active-color: var(--sapIndicationColor_4_Active_TextColor);--ui5-v2-8-0-tag-set2-color-scheme-4-active-background: var(--sapIndicationColor_4_Active_Background);--ui5-v2-8-0-tag-set2-color-scheme-4-active-border: var(--sapIndicationColor_4_Active_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-5-color: var(--sapIndicationColor_5);--ui5-v2-8-0-tag-set2-color-scheme-5-background: var(--sapIndicationColor_5b);--ui5-v2-8-0-tag-set2-color-scheme-5-border: var(--sapIndicationColor_5b_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-5-hover-background: var(--sapIndicationColor_5b_Hover_Background);--ui5-v2-8-0-tag-set2-color-scheme-5-active-color: var(--sapIndicationColor_5_Active_TextColor);--ui5-v2-8-0-tag-set2-color-scheme-5-active-background: var(--sapIndicationColor_5_Active_Background);--ui5-v2-8-0-tag-set2-color-scheme-5-active-border: var(--sapIndicationColor_5_Active_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-6-color: var(--sapIndicationColor_6);--ui5-v2-8-0-tag-set2-color-scheme-6-background: var(--sapIndicationColor_6b);--ui5-v2-8-0-tag-set2-color-scheme-6-border: var(--sapIndicationColor_6b_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-6-hover-background: var(--sapIndicationColor_6b_Hover_Background);--ui5-v2-8-0-tag-set2-color-scheme-6-active-color: var(--sapIndicationColor_6_Active_TextColor);--ui5-v2-8-0-tag-set2-color-scheme-6-active-background: var(--sapIndicationColor_6_Active_Background);--ui5-v2-8-0-tag-set2-color-scheme-6-active-border: var(--sapIndicationColor_6_Active_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-7-color: var(--sapIndicationColor_7);--ui5-v2-8-0-tag-set2-color-scheme-7-background: var(--sapIndicationColor_7b);--ui5-v2-8-0-tag-set2-color-scheme-7-border: var(--sapIndicationColor_7b_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-7-hover-background: var(--sapIndicationColor_7b_Hover_Background);--ui5-v2-8-0-tag-set2-color-scheme-7-active-color: var(--sapIndicationColor_7_Active_TextColor);--ui5-v2-8-0-tag-set2-color-scheme-7-active-background: var(--sapIndicationColor_7_Active_Background);--ui5-v2-8-0-tag-set2-color-scheme-7-active-border: var(--sapIndicationColor_7_Active_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-8-color: var(--sapIndicationColor_8);--ui5-v2-8-0-tag-set2-color-scheme-8-background: var(--sapIndicationColor_8b);--ui5-v2-8-0-tag-set2-color-scheme-8-border: var(--sapIndicationColor_8b_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-8-hover-background: var(--sapIndicationColor_8b_Hover_Background);--ui5-v2-8-0-tag-set2-color-scheme-8-active-color: var(--sapIndicationColor_8_Active_TextColor);--ui5-v2-8-0-tag-set2-color-scheme-8-active-background: var(--sapIndicationColor_8_Active_Background);--ui5-v2-8-0-tag-set2-color-scheme-8-active-border: var(--sapIndicationColor_8_Active_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-9-color: var(--sapIndicationColor_9);--ui5-v2-8-0-tag-set2-color-scheme-9-background: var(--sapIndicationColor_9b);--ui5-v2-8-0-tag-set2-color-scheme-9-border: var(--sapIndicationColor_9b_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-9-hover-background: var(--sapIndicationColor_9b_Hover_Background);--ui5-v2-8-0-tag-set2-color-scheme-9-active-color: var(--sapIndicationColor_9_Active_TextColor);--ui5-v2-8-0-tag-set2-color-scheme-9-active-background: var(--sapIndicationColor_9_Active_Background);--ui5-v2-8-0-tag-set2-color-scheme-9-active-border: var(--sapIndicationColor_9_Active_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-10-color: var(--sapIndicationColor_10);--ui5-v2-8-0-tag-set2-color-scheme-10-background: var(--sapIndicationColor_10b);--ui5-v2-8-0-tag-set2-color-scheme-10-border: var(--sapIndicationColor_10b_BorderColor);--ui5-v2-8-0-tag-set2-color-scheme-10-hover-background: var(--sapIndicationColor_10b_Hover_Background);--ui5-v2-8-0-tag-set2-color-scheme-10-active-color: var(--sapIndicationColor_10_Active_TextColor);--ui5-v2-8-0-tag-set2-color-scheme-10-active-background: var(--sapIndicationColor_10_Active_Background);--ui5-v2-8-0-tag-set2-color-scheme-10-active-border: var(--sapIndicationColor_10_Active_BorderColor);--_ui5-v2-8-0-tag-height_size_l: 1.5rem;--_ui5-v2-8-0-tag-min-width_size_l: 1.75rem;--_ui5-v2-8-0-tag-font-size_size_l: 1.25rem;--_ui5-v2-8-0-tag-icon_min_width_size_l: 1.25rem;--_ui5-v2-8-0-tag-icon_min_height_size_l:1.25rem;--_ui5-v2-8-0-tag-icon_height_size_l: 1.25rem;--_ui5-v2-8-0-tag-text_padding_size_l: .125rem .25rem;--_ui5-v2-8-0-tag-text-height_size_l: 1.5rem;--ui5-v2-8-0-tag-text-shadow: var(--sapContent_ContrastTextShadow);--_ui5-v2-8-0_bar_base_height: 2.75rem;--_ui5-v2-8-0_bar_subheader_height: 3rem;--_ui5-v2-8-0_bar-start-container-padding-start: 2rem;--_ui5-v2-8-0_bar-mid-container-padding-start-end: .5rem;--_ui5-v2-8-0_bar-end-container-padding-end: 2rem;--_ui5-v2-8-0_bar-start-container-padding-start_S: 1rem;--_ui5-v2-8-0_bar-start-container-padding-start_XL: 3rem;--_ui5-v2-8-0_bar-end-container-padding-end_S: 1rem;--_ui5-v2-8-0_bar-end-container-padding-end_XL: 3rem;--_ui5-v2-8-0_bar_subheader_margin-top: -.0625rem;--_ui5-v2-8-0_busy_indicator_color: var(--sapContent_IconColor);--_ui5-v2-8-0_busy_indicator_focus_outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-v2-8-0_busy_indicator_block_layer: color-mix(in oklch, transparent, var(--sapBlockLayer_Background) 20%);--_ui5-v2-8-0-button-badge-diameter: .75rem;--_ui5-v2-8-0-calendar-legend-root-padding: .75rem;--_ui5-v2-8-0-calendar-legend-root-width: 18.5rem;--_ui5-v2-8-0-calendar-legend-item-root-focus-margin: 0;--_ui5-v2-8-0-calendar-legend-item-root-focus-border: var(--sapContent_FocusWidth) dotted var(--sapContent_FocusColor);--_ui5-v2-8-0-calendar-legend-item-root-focus-border-radius: 0;--_ui5-v2-8-0-calendar-legend-item-root-width: 7.75rem;--_ui5-v2-8-0_card_box_shadow: var(--sapContent_Shadow0);--_ui5-v2-8-0_card_hover_box_shadow: var(--_ui5-v2-8-0_card_box_shadow);--_ui5-v2-8-0_card_border: 1px solid var(--sapTile_BorderColor);--_ui5-v2-8-0_card_border-radius: var(--sapElement_BorderCornerRadius);--_ui5-v2-8-0_card_header_padding: 1rem;--_ui5-v2-8-0_card_header_hover_bg: var(--sapList_Hover_Background);--_ui5-v2-8-0_card_header_active_bg: var(--_ui5-v2-8-0_card_header_hover_bg);--_ui5-v2-8-0_card_header_border: 1px solid var(--_ui5-v2-8-0_card_header_border_color);--_ui5-v2-8-0_card_header_border_color: var(--sapTile_SeparatorColor);--_ui5-v2-8-0_card_header_focus_border: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-v2-8-0_card_header_focus_radius: 0px;--_ui5-v2-8-0_card_header_focus_bottom_radius: 0px;--_ui5-v2-8-0_card_header_focus_offset: 1px;--_ui5-v2-8-0_card_header_title_font_family: \"72override\", var(--sapFontFamily);--_ui5-v2-8-0_card_header_title_font_size: var(--sapFontHeader5Size);--_ui5-v2-8-0_card_header_title_font_weight: normal;--_ui5-v2-8-0_card_header_subtitle_margin_top: .25rem;--ui5-v2-8-0_carousel_background_color_solid: var(--sapGroup_ContentBackground);--ui5-v2-8-0_carousel_background_color_translucent: var(--sapBackgroundColor);--ui5-v2-8-0_carousel_button_size: 2.5rem;--ui5-v2-8-0_carousel_inactive_dot_size: .25rem;--ui5-v2-8-0_carousel_inactive_dot_margin: 0 .375rem;--ui5-v2-8-0_carousel_inactive_dot_border: 1px solid var(--sapContent_ForegroundBorderColor);--ui5-v2-8-0_carousel_inactive_dot_background: var(--sapContent_ForegroundBorderColor);--ui5-v2-8-0_carousel_active_dot_border: 1px solid var(--sapContent_Selected_ForegroundColor);--ui5-v2-8-0_carousel_active_dot_background: var(--sapContent_Selected_ForegroundColor);--ui5-v2-8-0_carousel_navigation_button_active_box_shadow: var(--sapContent_Shadow1);--_ui5-v2-8-0_checkbox_box_shadow: none;--_ui5-v2-8-0_checkbox_transition: unset;--_ui5-v2-8-0_checkbox_focus_border: none;--_ui5-v2-8-0_checkbox_disabled_opacity: .5;--_ui5-v2-8-0_checkbox_border_radius: 0;--_ui5-v2-8-0_checkbox_hover_background: var(--sapField_Hover_Background);--_ui5-v2-8-0_checkbox_active_background: var(--sapField_Hover_Background);--_ui5-v2-8-0_checkbox_checkmark_warning_color: var(--sapField_TextColor);--_ui5-v2-8-0_checkbox_inner_warning_color: var(--sapField_WarningColor);--_ui5-v2-8-0_checkbox_inner_information_color: currentColor;--_ui5-v2-8-0_checkbox_checkmark_color: var(--sapSelectedColor);--_ui5-v2-8-0_checkbox_focus_position: .5625rem;--_ui5-v2-8-0_checkbox_focus_outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-v2-8-0_checkbox_focus_border_radius: 0;--_ui5-v2-8-0_checkbox_outer_hover_background: transparent;--_ui5-v2-8-0_checkbox_inner_width_height: 1.375rem;--_ui5-v2-8-0_checkbox_inner_hover_border_color: var(--sapField_HoverBorderColor);--_ui5-v2-8-0_checkbox_inner_hover_checked_border_color: var(--sapField_HoverBorderColor);--_ui5-v2-8-0_checkbox_inner_selected_border_color: var(--sapField_BorderColor);--_ui5-v2-8-0_checkbox_inner_disabled_border_color: var(--sapField_BorderColor);--_ui5-v2-8-0_checkbox_inner_active_border_color: var(--sapField_BorderColor);--_ui5-v2-8-0_checkbox_inner_error_border: .125rem solid var(--sapField_InvalidColor);--_ui5-v2-8-0_checkbox_inner_warning_border: .125rem solid var(--sapField_WarningColor);--_ui5-v2-8-0_checkbox_inner_information_border: .125rem solid var(--sapField_InformationColor);--_ui5-v2-8-0_checkbox_inner_information_box_shadow: none;--_ui5-v2-8-0_checkbox_inner_warning_box_shadow: none;--_ui5-v2-8-0_checkbox_inner_error_box_shadow: none;--_ui5-v2-8-0_checkbox_inner_success_box_shadow: none;--_ui5-v2-8-0_checkbox_inner_default_box_shadow: none;--_ui5-v2-8-0_checkbox_inner_warning_background_hover: var(--sapField_WarningBackground);--_ui5-v2-8-0_checkbox_inner_error_background_hover: var(--sapField_InvalidBackground);--_ui5-v2-8-0_checkbox_inner_success_background_hover: var(--sapField_SuccessBackground);--_ui5-v2-8-0_checkbox_inner_information_background_hover: var(--sapField_InformationBackground);--_ui5-v2-8-0_checkbox_inner_success_border: var(--sapField_BorderWidth) solid var(--sapField_SuccessColor);--_ui5-v2-8-0_checkbox_inner_background: var(--sapField_Background);--_ui5-v2-8-0_checkbox_wrapped_focus_inset_block: var(--_ui5-v2-8-0_checkbox_focus_position);--_ui5-v2-8-0_checkbox_compact_wrapper_padding: .5rem;--_ui5-v2-8-0_checkbox_compact_width_height: 2rem;--_ui5-v2-8-0_checkbox_compact_inner_size: 1rem;--_ui5-v2-8-0_checkbox_compact_focus_position: .375rem;--_ui5-v2-8-0_checkbox_label_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_checkbox_label_offset: var(--_ui5-v2-8-0_checkbox_wrapper_padding);--_ui5-v2-8-0_checkbox_disabled_label_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_checkbox_default_focus_border: none;--_ui5-v2-8-0_checkbox_focus_outline_display: block;--_ui5-v2-8-0_checkbox_right_focus_distance: 0;--_ui5-v2-8-0_checkbox_wrapper_padding: .6875rem;--_ui5-v2-8-0_checkbox_width_height: 2.75rem;--_ui5-v2-8-0_checkbox_inner_border: .0625rem solid var(--sapField_BorderColor);--_ui5-v2-8-0_checkbox_inner_border_radius: .125rem;--_ui5-v2-8-0_checkbox_wrapped_focus_padding: .5rem;--_ui5-v2-8-0_checkbox_inner_readonly_border: 1px solid var(--sapField_ReadOnly_BorderColor);--_ui5-v2-8-0_color-palette-item-after-focus-border-radius: .125rem;--_ui5-v2-8-0_color-palette-item-container-sides-padding: .3125rem;--_ui5-v2-8-0_color-palette-item-container-rows-padding: .6875rem;--_ui5-v2-8-0_color-palette-item-focus-height: 1.5rem;--_ui5-v2-8-0_color-palette-item-container-padding: var(--_ui5-v2-8-0_color-palette-item-container-sides-padding) var(--_ui5-v2-8-0_color-palette-item-container-rows-padding);--_ui5-v2-8-0_color-palette-item-hover-margin: 0;--_ui5-v2-8-0_color-palette-row-height: 9.5rem;--_ui5-v2-8-0_color-palette-button-height: 3rem;--_ui5-v2-8-0_color-palette-item-before-focus-color: .0625rem solid white;--_ui5-v2-8-0_color-palette-item-before-focus-inset: .0625rem;--_ui5-v2-8-0_color-palette-item-before-focus-hover-inset: .0625rem;--_ui5-v2-8-0_color-palette-item-after-focus-color: .0625rem dotted black;--_ui5-v2-8-0_color-palette-item-after-focus-inset: .0625rem;--_ui5-v2-8-0_color-palette-item-after-focus-hover-inset: .0625rem;--_ui5-v2-8-0_color-palette-item-before-focus-border-radius: 0;--_ui5-v2-8-0_color-palette-item-outer-border-radius: .25rem;--_ui5-v2-8-0_color-palette-item-inner-border-radius: .1875rem;--_ui5-v2-8-0_color-palette-item-hover-outer-border-radius: .25rem;--_ui5-v2-8-0_color-palette-item-hover-inner-border-radius: .1875rem;--_ui5-v2-8-0_color-palette-item-selected-focused-border-before: var(--_ui5-v2-8-0_color-palette-item-before-focus-hover-inset);--_ui5-v2-8-0_color-palette-item-selected-focused-border-after: var(--_ui5-v2-8-0_color-palette-item-after-focus-color);--_ui5-v2-8-0_color-palette-item-after-focus-not-selected-border: .0625rem dotted black;--_ui5-v2-8-0_color-palette-item-after-not-focus-color: .0625rem solid var(--sapGroup_ContentBackground);--_ui5-v2-8-0_color-palette-item-selected-focused-border: .0625rem solid var(--sapGroup_ContentBackground);--_ui5-v2-8-0-color-palette-item-mobile-focus-inset: .625rem;--_ui5-v2-8-0_color-palette-item-mobile-focus-sides-inset: .25rem .25rem;--_ui5-v2-8-0_color-palette-item-after-mobile-focus-border: var(--_ui5-v2-8-0_color-palette-item-after-focus-color);--_ui5-v2-8-0_color_picker_slider_handle_box_shadow: inset 0 0 0 .125rem var(--sapContent_ContrastShadowColor);--_ui5-v2-8-0_color_picker_slider_handle_border: .125rem solid var(--sapField_BorderColor);--_ui5-v2-8-0_color_picker_slider_handle_outline_hover: .125rem solid var(--sapButton_Hover_BorderColor);--_ui5-v2-8-0_color_picker_slider_handle_outline_focus: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-8-0_color_picker_slider_handle_margin_top: -.125rem;--_ui5-v2-8-0_color_picker_slider_handle_inner_border_color: #fff;--_ui5-v2-8-0_color_picker_circle_outer_border: .0625rem solid var(--sapContent_ContrastShadowColor);--_ui5-v2-8-0_color_picker_circle_inner_border: var(--sapField_Picker_BorderWidth) solid var(--sapField_BorderColor);--_ui5-v2-8-0_color_picker_circle_inner_circle_size: .5625rem;--_ui5-v2-8-0_color_picker_slider_handle_inline_focus: none;--_ui5-v2-8-0_datepicker_icon_border: none;--_ui5-v2-8-0-datepicker_border_radius: 0;--_ui5-v2-8-0-datepicker-hover-background: var(--sapField_Hover_Background);--_ui5-v2-8-0-datepicker_icon_border_radius: 0;--_ui5-v2-8-0_daypicker_item_box_shadow: inset 0 0 0 .0625rem var(--sapContent_Selected_ForegroundColor);--_ui5-v2-8-0_daypicker_item_margin: 2px;--_ui5-v2-8-0_daypicker_item_border: none;--_ui5-v2-8-0_daypicker_item_selected_border_color: var(--sapList_Background);--_ui5-v2-8-0_daypicker_daynames_container_height: 2rem;--_ui5-v2-8-0_daypicker_weeknumbers_container_padding_top: 2rem;--_ui5-v2-8-0_daypicker_item_othermonth_background_color: var(--sapList_Background);--_ui5-v2-8-0_daypicker_item_othermonth_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_daypicker_item_othermonth_hover_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_daypicker_item_now_inner_border_radius: 0;--_ui5-v2-8-0_daypicker_item_outline_width: 1px;--_ui5-v2-8-0_daypicker_item_outline_offset: 1px;--_ui5-v2-8-0_daypicker_item_now_focus_after_width: calc(100% - .25rem) ;--_ui5-v2-8-0_daypicker_item_now_focus_after_height: calc(100% - .25rem) ;--_ui5-v2-8-0_daypicker_item_now_selected_focus_after_width: calc(100% - .375rem) ;--_ui5-v2-8-0_daypicker_item_now_selected_focus_after_height: calc(100% - .375rem) ;--_ui5-v2-8-0_daypicker_item_selected_box_shadow: var(--_ui5-v2-8-0_daypicker_item_box_shadow), var(--_ui5-v2-8-0_daypicker_item_box_shadow);--_ui5-v2-8-0_daypicker_item_selected_daytext_hover_background: transparent;--_ui5-v2-8-0_daypicker_item_outline_focus_after: none;--_ui5-v2-8-0_daypicker_item_border_focus_after: var(--_ui5-v2-8-0_daypicker_item_outline_width) dotted var(--sapContent_FocusColor);--_ui5-v2-8-0_daypicker_item_width_focus_after: calc(100% - .25rem) ;--_ui5-v2-8-0_daypicker_item_height_focus_after: calc(100% - .25rem) ;--_ui5-v2-8-0_daypicker_item_now_border: .125rem solid var(--sapLegend_CurrentDateTime);--_ui5-v2-8-0_daypicker_item_now_outline: none;--_ui5-v2-8-0_daypicker_item_now_outline_offset: none;--_ui5-v2-8-0_daypicker_item_now_outline_offset_focus_after: var(--_ui5-v2-8-0_daypicker_item_now_outline_offset);--_ui5-v2-8-0_daypicker_item_selected_between_border: .25rem;--_ui5-v2-8-0_daypicker_item_selected_between_background: var(--sapList_SelectionBackgroundColor);--_ui5-v2-8-0_daypicker_item_selected_between_text_background: var(--sapList_SelectionBackgroundColor);--_ui5-v2-8-0_daypicker_item_selected_between_text_font: inherit;--_ui5-v2-8-0_daypicker_item_selected_between_hover_background: var(--sapList_Hover_SelectionBackground);--_ui5-v2-8-0_daypicker_item_now_box_shadow: inset 0 0 0 .0625rem var(--_ui5-v2-8-0_daypicker_item_selected_border_color);--_ui5-v2-8-0_daypicker_item_selected_text_outline: none;--_ui5-v2-8-0_daypicker_item_now_not_selected_inset: 0;--_ui5-v2-8-0_daypicker_item_now_inset: .1875rem;--_ui5-v2-8-0_daypicker_item_now_border_color: var(--sapLegend_CurrentDateTime);--_ui5-v2-8-0_daypicker_item_weeekend_filter: brightness(100%);--_ui5-v2-8-0_daypicker_item_selected_hover: var(--sapContent_Selected_Hover_Background);--_ui5-v2-8-0_daypicker_two_calendar_item_now_inset: .1875rem;--_ui5-v2-8-0_daypicker_item_selected__secondary_type_text_outline: none;--_ui5-v2-8-0_daypicker_two_calendar_item_now_day_text_content: none;--_ui5-v2-8-0_daypicker_two_calendar_item_now_selected_border_width: .0625rem;--_ui5-v2-8-0_daypicker_two_calendar_item_border_radius: .3125rem;--_ui5-v2-8-0_daypicker_two_calendar_item_border_focus_border_radius: 0rem;--_ui5-v2-8-0_daypicker_two_calendar_item_no_selected_inset: .125rem;--_ui5-v2-8-0_daypicker_two_calendar_item_selected_now_border_radius_focus: .0625rem;--_ui5-v2-8-0_daypicker_two_calendar_item_no_selected_focus_inset: .125rem;--_ui5-v2-8-0_daypicker_two_calendar_item_no_select_focus_border_radius: .0625rem;--_ui5-v2-8-0_dp_two_calendar_item_secondary_text_border_radios: .25rem;--_ui5-v2-8-0_daypicker_two_calendar_item_now_selected_border_inset: .125rem;--_ui5-v2-8-0_daypicker_special_day_top: 2.5rem;--_ui5-v2-8-0_daypicker_special_day_border_bottom_radius: .25rem;--_ui5-v2-8-0_daypicker_special_day_before_border_color: var(--sapList_Background);--_ui5-v2-8-0_daypicker_selected_item_special_day_width: 100%;--_ui5-v2-8-0_daypicker_selected_item_now_special_day_top: 2.375rem;--_ui5-v2-8-0_daypicker_selected_item_now_special_day_width: calc(100% - .375rem) ;--_ui5-v2-8-0_daypicker_selected_item_now_special_day_border_bottom_radius: 0;--_ui5-v2-8-0-daypicker_item_selected_now_border_radius: .25rem;--_ui5-v2-8-0_daypicker_selected_item_now_special_day_border_bottom_radius_alternate: .0625rem;--_ui5-v2-8-0_daypicker_two_calendar_item_margin_bottom: 0;--_ui5-v2-8-0_daypicker_twocalendar_item_special_day_now_inset: .1875rem;--_ui5-v2-8-0_daypicker_twocalendar_item_special_day_now_border_radius: 0;--_ui5-v2-8-0_daypicker_item_now_focus_margin: .09375rem;--_ui5-v2-8-0_daypicker_special_day_border_top: .0625rem solid var(--_ui5-v2-8-0_daypicker_special_day_before_border_color);--_ui5-v2-8-0_daypicker_special_day_selected_border_radius_bottom: .0625rem;--_ui5-v2-8-0_daypicker_specialday_focused_top: 2.375rem;--_ui5-v2-8-0_daypicker_specialday_focused_width: calc(100% - .375rem) ;--_ui5-v2-8-0_daypicker_specialday_focused_border_bottom: .0625rem;--_ui5-v2-8-0_daypicker_item_now_specialday_top: 2.375rem;--_ui5-v2-8-0_daypicker_item_now_specialday_width: calc(100% - .375rem) ;--_ui5-v2-8-0_daypicker_twocalendar_item_special_day_after_border_width: .125rem;--_ui5-v2-8-0_daypicker_twocalendar_item_special_day_dot: .375rem;--_ui5-v2-8-0_daypicker_twocalendar_item_special_day_top: 2rem;--_ui5-v2-8-0_daypicker_twocalendar_item_special_day_right: 1.4375rem;--_ui5-v2-8-0_daypicker_item_selected_background: var(--sapContent_Selected_Background);--_ui5-v2-8-0_daypicker_dayname_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_daypicker_weekname_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_daypicker_item_border_radius_focus_after: .0625rem;--_ui5-v2-8-0_daypicker_item_border_radius_item: .0625rem;--_ui5-v2-8-0_daypicker_item_selected_border: none;--_ui5-v2-8-0_daypicker_item_not_selected_focus_border: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-8-0_daypicker_item_selected_focus_color: var(--sapContent_ContentColor);--_ui5-v2-8-0_daypicker_item_selected_focus_width: .0625rem;--_ui5-v2-8-0_daypicker_item_no_selected_inset: .125rem;--_ui5-v2-8-0_daypicker_item_now_border_focus_after: .0625rem dotted var(--sapList_SelectionBorderColor);--_ui5-v2-8-0_daypicker_item_now_border_radius_focus_after: .0625rem;--_ui5-v2-8-0_day_picker_item_selected_now_border: .1875rem solid var(--sapList_Background);--_ui5-v2-8-0_day_picker_item_selected_now_border_focus: .0625rem dotted var(--sapContent_ContrastFocusColor);--_ui5-v2-8-0_day_picker_item_selected_now_border_radius_focus: .0625rem;--_ui5-v2-8-0-dp-item_withsecondtype_border: .1875rem;--_ui5-v2-8-0_daypicker_item_border_radius: .25rem;--_ui5-v2-8-0_daypicker_item_selected_text_border: none;--_ui5-v2-8-0_daypicker_item_select_between_border: 1px solid var(--sapContent_Selected_ForegroundColor);--_ui5-v2-8-0_daypicker_item_now_selected_outline_offset: -.3125rem;--_ui5-v2-8-0_dialog_header_focus_bottom_offset: 3px;--_ui5-v2-8-0_dialog_header_focus_top_offset: 2px;--_ui5-v2-8-0_dialog_header_focus_left_offset: 2px;--_ui5-v2-8-0_dialog_header_focus_right_offset: 2px;--_ui5-v2-8-0_dialog_header_border_radius: 0px;--_ui5-v2-8-0_dialog_header_error_state_icon_color: var(--sapNegativeElementColor);--_ui5-v2-8-0_dialog_header_information_state_icon_color: var(--sapInformativeElementColor);--_ui5-v2-8-0_dialog_header_success_state_icon_color: var(--sapPositiveElementColor);--_ui5-v2-8-0_dialog_header_warning_state_icon_color: var(--sapCriticalElementColor);--_ui5-v2-8-0_dialog_header_state_line_height: .0625rem;--_ui5-v2-8-0_file_uploader_hover_border: 1px solid var(--sapField_Hover_BorderColor);--_ui5-v2-8-0_file_uploader_value_state_error_hover_background_color: var(--sapField_Hover_Background);--ui5-v2-8-0-form-item-layout: 4fr 8fr 0fr;--ui5-v2-8-0-form-item-label-justify: end;--ui5-v2-8-0-form-item-label-justify-span12: start;--ui5-v2-8-0-form-item-label-padding: .125rem 0;--ui5-v2-8-0-form-item-label-padding-end: .85rem;--ui5-v2-8-0-form-item-label-padding-span12: .625rem .25rem 0 .25rem;--_ui5-v2-8-0_table_cell_valign: center;--_ui5-v2-8-0_table_cell_min_width: 2.75rem;--_ui5-v2-8-0_table_navigated_cell_width: .25rem;--_ui5-v2-8-0_table_cell_horizontal_padding: .5rem;--_ui5-v2-8-0_table_cell_vertical_padding: .25rem;--_ui5-v2-8-0_table_row_actions_gap: .25rem;--ui5-v2-8-0-group-header-listitem-background-color: var(--sapList_GroupHeaderBackground);--_ui5-v2-8-0_input_width: 13.125rem;--_ui5-v2-8-0_input_min_width: 2.75rem;--_ui5-v2-8-0_input_height: var(--sapElement_Height);--_ui5-v2-8-0_input_compact_height: 1.625rem;--_ui5-v2-8-0_input_hover_border: var(--sapField_BorderWidth) var(--sapField_BorderStyle) var(--sapField_Hover_BorderColor);--_ui5-v2-8-0_input_value_state_error_hover_background: var(--sapField_Hover_Background);--_ui5-v2-8-0_input_background_color: var(--sapField_Background);--_ui5-v2-8-0_input_border_radius: var(--sapField_BorderCornerRadius);--_ui5-v2-8-0_input_focus_border_radius: 0;--_ui5-v2-8-0_input_readonly_focus_border_radius: 0;--_ui5-v2-8-0_input_placeholder_style: italic;--_ui5-v2-8-0_input_placeholder_color: var(--sapField_PlaceholderTextColor);--_ui5-v2-8-0_input_bottom_border_height: 0;--_ui5-v2-8-0_input_bottom_border_color: transparent;--_ui5-v2-8-0_input_focused_border_color: var(--sapField_Hover_BorderColor);--_ui5-v2-8-0_input_state_border_width: .125rem;--_ui5-v2-8-0_input_information_border_width: .125rem;--_ui5-v2-8-0_input_error_font_weight: normal;--_ui5-v2-8-0_input_warning_font_weight: normal;--_ui5-v2-8-0_input_focus_border_width: 1px;--_ui5-v2-8-0_input_error_warning_border_style: solid;--_ui5-v2-8-0_input_error_warning_font_style: inherit;--_ui5-v2-8-0_input_error_warning_text_indent: 0;--_ui5-v2-8-0_input_disabled_color: var(--sapContent_DisabledTextColor);--_ui5-v2-8-0_input_disabled_font_weight: normal;--_ui5-v2-8-0_input_disabled_border_color: var(--sapField_BorderColor);--_ui5-v2-8-0-input_disabled_background: var(--sapField_Background);--_ui5-v2-8-0_input_readonly_border_color: var(--sapField_ReadOnly_BorderColor);--_ui5-v2-8-0_input_readonly_background: var(--sapField_ReadOnly_Background);--_ui5-v2-8-0_input_custom_icon_padding: .5625rem .625rem;--_ui5-v2-8-0_input_error_warning_custom_icon_padding: .5rem .625rem;--_ui5-v2-8-0_input_error_warning_custom_focused_icon_padding: .5rem .625rem;--_ui5-v2-8-0_input_information_custom_icon_padding: .5rem .625rem;--_ui5-v2-8-0_input_information_custom_focused_icon_padding: .5rem .625rem;--_ui5-v2-8-0_input_error_warning_icon_padding: .5rem .5rem .5rem .5625rem;--_ui5-v2-8-0_input_error_warning_focused_icon_padding: .5rem .5rem .5rem .5625rem;--_ui5-v2-8-0_input_information_icon_padding: .5rem .5rem .5rem .5625rem;--_ui5-v2-8-0_input_information_focused_icon_padding: .5rem .5rem .5rem .5625rem;--_ui5-v2-8-0_input_disabled_opacity: var(--sapContent_DisabledOpacity);--_ui5-v2-8-0_input_icon_min_width: 2.25rem;--_ui5-v2-8-0_input_compact_min_width: 2rem;--_ui5-v2-8-0_input_transition: none;--_ui5-v2-8-0-input-value-state-icon-display: none;--_ui5-v2-8-0_input_focused_value_state_error_background: var(--sapField_InvalidBackground);--_ui5-v2-8-0_input_focused_value_state_warning_background: var(--sapField_WarningBackground);--_ui5-v2-8-0_input_focused_value_state_success_background: var(--sapField_SuccessBackground);--_ui5-v2-8-0_input_focused_value_state_information_background: var(--sapField_InformationBackground);--_ui5-v2-8-0_input_value_state_error_border_color: var(--sapField_InvalidColor);--_ui5-v2-8-0_input_focused_value_state_error_border_color: var(--sapField_InvalidColor);--_ui5-v2-8-0_input_focused_value_state_error_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-8-0_input_focused_value_state_warning_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-8-0_input_focused_value_state_success_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-8-0_input_value_state_warning_border_color: var(--sapField_WarningColor);--_ui5-v2-8-0_input_focused_value_state_warning_border_color: var(--sapField_WarningColor);--_ui5-v2-8-0_input_value_state_success_border_color: var(--sapField_SuccessColor);--_ui5-v2-8-0_input_focused_value_state_success_border_color: var(--sapField_SuccessColor);--_ui5-v2-8-0_input_value_state_success_border_width: 1px;--_ui5-v2-8-0_input_value_state_information_border_color: var(--sapField_InformationColor);--_ui5-v2-8-0_input_focused_value_state_information_border_color: var(--sapField_InformationColor);--_ui5-v2-8-0-input-value-state-information-border-width: 1px;--_ui5-v2-8-0-input-background-image: none;--_ui5-v2-8-0_input_focus_offset: 1px;--_ui5-v2-8-0_input_readonly_focus_offset: 1px;--ui5-v2-8-0_input_focus_pseudo_element_content: \"\";--_ui5-v2-8-0_input_value_state_error_warning_placeholder_font_weight: normal;--_ui5-v2-8-0_input_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-8-0-input_error_placeholder_color: var(--sapField_PlaceholderTextColor);--_ui5-v2-8-0_input_icon_width: 2.25rem;--_ui5-v2-8-0_input_icon_wrapper_height: 100%;--_ui5-v2-8-0_input_icon_wrapper_state_height: 100%;--_ui5-v2-8-0_input_icon_wrapper_success_state_height: 100%;--_ui5-v2-8-0-input-icons-count: 0;--_ui5-v2-8-0_input_margin_top_bottom: .1875rem;--_ui5-v2-8-0_input_tokenizer_min_width: 3.25rem;--_ui5-v2-8-0-input-border: 1px solid var(--sapField_BorderColor);--_ui5-v2-8-0_input_icon_padding: .5625rem;--_ui5-v2-8-0_input_icon_color: var(--sapContent_IconColor);--_ui5-v2-8-0_input_icon_pressed_color: var(--sapButton_Active_TextColor);--_ui5-v2-8-0_input_icon_pressed_bg: var(--sapButton_Selected_Background);--_ui5-v2-8-0_input_icon_hover_bg: var(--sapButton_Lite_Hover_Background);--_ui5-v2-8-0_input_icon_border_radius: 0;--_ui5-v2-8-0_input_icon_box_shadow: none;--_ui5-v2-8-0_input_icon_border: 1px solid transparent;--_ui5-v2-8-0_input_error_icon_box_shadow: var(--_ui5-v2-8-0_input_icon_box_shadow);--_ui5-v2-8-0_input_warning_icon_box_shadow: var(--_ui5-v2-8-0_input_icon_box_shadow);--_ui5-v2-8-0_input_information_icon_box_shadow: var(--_ui5-v2-8-0_input_icon_box_shadow);--_ui5-v2-8-0_input_success_icon_box_shadow: var(--_ui5-v2-8-0_input_icon_box_shadow);--_ui5-v2-8-0_input_icon_error_pressed_color: var(--sapButton_Active_TextColor);--_ui5-v2-8-0_input_icon_warning_pressed_color: var(--sapButton_Active_TextColor);--_ui5-v2-8-0_input_icon_information_pressed_color: var(--sapButton_Active_TextColor);--_ui5-v2-8-0_input_icon_success_pressed_color: var(--sapButton_Active_TextColor);--_ui5-v2-8-0_link_focused_hover_text_decoration: underline;--_ui5-v2-8-0_link_focused_hover_text_color: var(--sapLinkColor);--_ui5-v2-8-0_link_active_text_decoration: underline;--_ui5-v2-8-0_link_outline: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-8-0_link_focus_border-radius: 0;--_ui5-v2-8-0_link_focus_background_color: transparent;--_ui5-v2-8-0_link_focus_color: var(--sapLinkColor);--_ui5-v2-8-0_link_focus_text_decoration: underline;--_ui5-v2-8-0_link_subtle_text_decoration: none;--_ui5-v2-8-0_link_subtle_text_decoration_hover: underline;--_ui5-v2-8-0_link_large_interactive_area_height: unset;--_ui5-v2-8-0_link_text_decoration: none;--_ui5-v2-8-0_link_hover_text_decoration: underline;--ui5-v2-8-0_list_footer_text_color: var(--sapList_FooterTextColor);--ui5-v2-8-0-listitem-background-color: var(--sapList_Background);--ui5-v2-8-0-listitem-border-bottom: var(--sapList_BorderWidth) solid var(--sapList_BorderColor);--ui5-v2-8-0-listitem-selected-border-bottom: 1px solid var(--sapList_SelectionBorderColor);--ui5-v2-8-0-listitem-focused-selected-border-bottom: 1px solid var(--sapList_SelectionBorderColor);--ui5-v2-8-0-listitem-active-border-color: var(--sapContent_ContrastFocusColor);--_ui5-v2-8-0_listitembase_focus_width: 1px;--_ui5-v2-8-0-listitembase_disabled_opacity: .5;--_ui5-v2-8-0_product_switch_item_border: none;--_ui5-v2-8-0_menu_popover_border_radius: var(--sapElement_BorderCornerRadius);--_ui5-v2-8-0_menu_item_padding: 0 1rem 0 .75rem;--_ui5-v2-8-0_menu_item_submenu_icon_right: 1rem;--_ui5-v2-8-0_menu_item_additional_text_start_margin: 1rem;--_ui5-v2-8-0_monthpicker_item_margin: .0625rem;--_ui5-v2-8-0_monthpicker_item_border: .0625rem solid var(--sapButton_Lite_BorderColor);--_ui5-v2-8-0_monthpicker_item_hover_border: .0625rem solid var(--sapButton_Lite_Hover_BorderColor);--_ui5-v2-8-0_monthpicker_item_active_border: .0625rem solid var(--sapButton_Lite_Active_BorderColor);--_ui5-v2-8-0_monthpicker_item_selected_border: .0625rem solid var(--sapButton_Selected_BorderColor);--_ui5-v2-8-0_monthpicker_item_selected_hover_border: .0625rem solid var(--sapButton_Selected_Hover_BorderColor);--_ui5-v2-8-0_monthpicker_item_border_radius: .25rem;--_ui5-v2-8-0_message_strip_icon_width: 2.5rem;--_ui5-v2-8-0_message_strip_button_border_width: 0;--_ui5-v2-8-0_message_strip_button_border_style: none;--_ui5-v2-8-0_message_strip_button_border_color: transparent;--_ui5-v2-8-0_message_strip_button_border_radius: 0;--_ui5-v2-8-0_message_strip_padding: .4375rem 2.5rem .4375rem 2.5rem;--_ui5-v2-8-0_message_strip_padding_block_no_icon: .4375rem .4375rem;--_ui5-v2-8-0_message_strip_padding_inline_no_icon: 1rem 2.5rem;--_ui5-v2-8-0_message_strip_button_height: 1.625rem;--_ui5-v2-8-0_message_strip_border_width: 1px;--_ui5-v2-8-0_message_strip_close_button_border: none;--_ui5-v2-8-0_message_strip_icon_top: .4375rem;--_ui5-v2-8-0_message_strip_focus_width: 1px;--_ui5-v2-8-0_message_strip_focus_offset: -2px;--_ui5-v2-8-0_message_strip_close_button_top: .125rem;--_ui5-v2-8-0_message_strip_close_button_right: .125rem;--_ui5-v2-8-0_message_strip_scheme_1_set_2_background: var(--sapIndicationColor_1b);--_ui5-v2-8-0_message_strip_scheme_1_set_2_border_color: var(--sapIndicationColor_1b_BorderColor);--_ui5-v2-8-0_message_strip_scheme_2_set_2_background: var(--sapIndicationColor_2b);--_ui5-v2-8-0_message_strip_scheme_2_set_2_border_color: var(--sapIndicationColor_2b_BorderColor);--_ui5-v2-8-0_message_strip_scheme_3_set_2_background: var(--sapIndicationColor_3b);--_ui5-v2-8-0_message_strip_scheme_3_set_2_border_color: var(--sapIndicationColor_3b_BorderColor);--_ui5-v2-8-0_message_strip_scheme_4_set_2_background: var(--sapIndicationColor_4b);--_ui5-v2-8-0_message_strip_scheme_4_set_2_border_color: var(--sapIndicationColor_4b_BorderColor);--_ui5-v2-8-0_message_strip_scheme_5_set_2_background: var(--sapIndicationColor_5b);--_ui5-v2-8-0_message_strip_scheme_5_set_2_border_color: var(--sapIndicationColor_5b_BorderColor);--_ui5-v2-8-0_message_strip_scheme_6_set_2_background: var(--sapIndicationColor_6b);--_ui5-v2-8-0_message_strip_scheme_6_set_2_border_color: var(--sapIndicationColor_6b_BorderColor);--_ui5-v2-8-0_message_strip_scheme_7_set_2_background: var(--sapIndicationColor_7b);--_ui5-v2-8-0_message_strip_scheme_7_set_2_border_color: var(--sapIndicationColor_7b_BorderColor);--_ui5-v2-8-0_message_strip_scheme_8_set_2_background: var(--sapIndicationColor_8b);--_ui5-v2-8-0_message_strip_scheme_8_set_2_border_color: var(--sapIndicationColor_8b_BorderColor);--_ui5-v2-8-0_message_strip_scheme_9_set_2_background: var(--sapIndicationColor_9b);--_ui5-v2-8-0_message_strip_scheme_9_set_2_border_color: var(--sapIndicationColor_9b_BorderColor);--_ui5-v2-8-0_message_strip_scheme_10_set_2_background: var(--sapIndicationColor_10b);--_ui5-v2-8-0_message_strip_scheme_10_set_2_border_color: var(--sapIndicationColor_10b_BorderColor);--_ui5-v2-8-0_message_strip_close_button_color_set_1_background: #062e4f1a;--_ui5-v2-8-0_message_strip_close_button_color_set_2_background: #062e4f80;--_ui5-v2-8-0_message_strip_close_button_color_set_1_color: var(--sapContent_ContrastIconColor);--_ui5-v2-8-0_message_strip_close_button_color_set_1_hover_color: var(--sapContent_ContrastIconColor);--_ui5-v2-8-0_panel_focus_border: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-v2-8-0_panel_header_height: 2.75rem;--_ui5-v2-8-0_panel_button_root_width: 2.75rem;--_ui5-v2-8-0_panel_button_root_height: 2.75rem;--_ui5-v2-8-0_panel_border_radius: 0px;--_ui5-v2-8-0_panel_border_radius_expanded: 0;--_ui5-v2-8-0_panel_default_header_border: none;--_ui5-v2-8-0_panel_border_bottom: var(--sapGroup_TitleBorderWidth) solid var(--sapGroup_TitleBorderColor);--_ui5-v2-8-0_panel_outline_offset: -3px;--_ui5-v2-8-0_panel_icon_color: var(--sapContent_IconColor);--_ui5-v2-8-0_panel_header_padding_right: .5rem;--_ui5-v2-8-0_panel_header_button_wrapper_padding: .25rem;--_ui5-v2-8-0_panel_focus_offset: 1px;--_ui5-v2-8-0_panel_focus_bottom_offset: var(--_ui5-v2-8-0_panel_focus_offset);--_ui5-v2-8-0_panel_content_padding: .625rem 1rem 1.375rem 1rem;--_ui5-v2-8-0_panel_header_background_color: var(--sapBackgroundColor);--_ui5-v2-8-0_popover_background: var(--sapGroup_ContentBackground);--_ui5-v2-8-0_popover_box_shadow: var(--sapContent_Shadow2);--_ui5-v2-8-0_popover_no_arrow_box_shadow: var(--sapContent_Shadow1);--_ui5-v2-8-0_popup_content_padding_s: 1rem;--_ui5-v2-8-0_popup_content_padding_m_l: 2rem;--_ui5-v2-8-0_popup_content_padding_xl: 3rem;--_ui5-v2-8-0_popup_header_footer_padding_s: 1rem;--_ui5-v2-8-0_popup_header_footer_padding_m_l: 2rem;--_ui5-v2-8-0_popup_header_footer_padding_xl: 3rem;--_ui5-v2-8-0_popup_viewport_margin: 10px;--_ui5-v2-8-0_popup_header_font_weight: 400;--_ui5-v2-8-0_popup_header_prop_header_text_alignment: flex-start;--_ui5-v2-8-0_popup_border_radius: var(--sapElement_BorderCornerRadius);--_ui5-v2-8-0_popup_header_background: var(--sapPageHeader_Background);--_ui5-v2-8-0_popup_header_shadow: var(--sapContent_HeaderShadow);--_ui5-v2-8-0_popup_header_border: none;--_ui5-v2-8-0_popup_block_layer_background: var(--sapBlockLayer_Background);--_ui5-v2-8-0_popup_block_layer_opacity: .2;--_ui5-v2-8-0_progress_indicator_background_none: var(--sapField_Background);--_ui5-v2-8-0_progress_indicator_background_error: var(--sapField_Background);--_ui5-v2-8-0_progress_indicator_background_warning: var(--sapField_Background);--_ui5-v2-8-0_progress_indicator_background_success: var(--sapField_Background);--_ui5-v2-8-0_progress_indicator_background_information: var(--sapField_Background);--_ui5-v2-8-0_progress_indicator_value_state_none: var(--sapNeutralElementColor);--_ui5-v2-8-0_progress_indicator_value_state_error: var(--sapNegativeElementColor);--_ui5-v2-8-0_progress_indicator_value_state_warning: var(--sapCriticalElementColor);--_ui5-v2-8-0_progress_indicator_value_state_success: var(--sapPositiveElementColor);--_ui5-v2-8-0_progress_indicator_value_state_information: var(--sapInformativeElementColor);--_ui5-v2-8-0_progress_indicator_border_color_error: var(--sapField_BorderColor);--_ui5-v2-8-0_progress_indicator_border_color_warning: var(--sapField_BorderColor);--_ui5-v2-8-0_progress_indicator_border_color_success: var(--sapField_BorderColor);--_ui5-v2-8-0_progress_indicator_border_color_information: var(--sapField_BorderColor);--_ui5-v2-8-0_progress_indicator_color: var(--sapTextColor);--_ui5-v2-8-0_progress_indicator_bar_color: var(--sapContent_ContrastTextColor);--_ui5-v2-8-0_progress_indicator_border: .0625rem solid var(--sapField_BorderColor);--_ui5-v2-8-0_progress_indicator_bar_border_max: none;--_ui5-v2-8-0_progress_indicator_icon_visibility: none;--_ui5-v2-8-0_progress_indicator_side_points_visibility: none;--_ui5-v2-8-0_progress_indicator_padding_novalue: 0;--_ui5-v2-8-0_progress_indicator_host_height: 1rem;--_ui5-v2-8-0_progress_indicator_host_min_height: 1rem;--_ui5-v2-8-0_progress_indicator_root_border_radius: .5rem;--_ui5-v2-8-0_progress_indicator_root_height: 100%;--_ui5-v2-8-0_progress_indicator_root_overflow: hidden;--_ui5-v2-8-0_progress_indicator_bar_height: 100%;--_ui5-v2-8-0_progress_indicator_bar_border_radius: .5rem 0 0 .5rem;--_ui5-v2-8-0_progress_indicator_remaining_bar_overflow: hidden;--_ui5-v2-8-0_progress_indicator_icon_size: var(--sapFontSmallSize);--_ui5-v2-8-0_progress_indicator_value_margin: 0 .375rem;--_ui5-v2-8-0_radio_button_min_width: 2.75rem;--_ui5-v2-8-0_radio_button_hover_fill: var(--sapField_Hover_Background);--_ui5-v2-8-0_radio_button_hover_fill_error: var(--sapField_Hover_Background);--_ui5-v2-8-0_radio_button_hover_fill_warning: var(--sapField_Hover_Background);--_ui5-v2-8-0_radio_button_hover_fill_success: var(--sapField_Hover_Background);--_ui5-v2-8-0_radio_button_hover_fill_information: var(--sapField_Hover_Background);--_ui5-v2-8-0_radio_button_border_width: 1px;--_ui5-v2-8-0_radio_button_checked_fill: var(--sapSelectedColor);--_ui5-v2-8-0_radio_button_checked_error_fill: var(--sapField_InvalidColor);--_ui5-v2-8-0_radio_button_checked_warning_fill: var(--sapField_TextColor);--_ui5-v2-8-0_radio_button_checked_success_fill: var(--sapField_SuccessColor);--_ui5-v2-8-0_radio_button_checked_information_fill: var(--sapField_InformationColor);--_ui5-v2-8-0_radio_button_warning_error_border_dash: 0;--_ui5-v2-8-0_radio_button_outer_ring_color: var(--sapField_BorderColor);--_ui5-v2-8-0_radio_button_outer_ring_width: var(--sapField_BorderWidth);--_ui5-v2-8-0_radio_button_outer_ring_bg: var(--sapField_Background);--_ui5-v2-8-0_radio_button_outer_ring_hover_color: var(--sapField_Hover_BorderColor);--_ui5-v2-8-0_radio_button_outer_ring_active_color: var(--sapField_Hover_BorderColor);--_ui5-v2-8-0_radio_button_outer_ring_checked_hover_color: var(--sapField_Hover_BorderColor);--_ui5-v2-8-0_radio_button_outer_ring_padding: 0 .625rem;--_ui5-v2-8-0_radio_button_outer_ring_padding_with_label: 0 .6875rem;--_ui5-v2-8-0_radio_button_border_radius: 0;--_ui5-v2-8-0_radio_button_border: none;--_ui5-v2-8-0_radio_button_focus_outline: block;--_ui5-v2-8-0_radio_button_focus_dist: .5rem;--_ui5-v2-8-0_radio_button_color: var(--sapField_BorderColor);--_ui5-v2-8-0_radio_button_label_offset: 1px;--_ui5-v2-8-0_radio_button_label_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_radio_button_items_align: unset;--_ui5-v2-8-0_radio_button_inner_ring_radius: 22%;--_ui5-v2-8-0_radio_button_read_only_border_type: none;--_ui5-v2-8-0_radio_button_inner_ring_color: var(--sapSelectedColor);--_ui5-v2-8-0_radio_button_information_border_width: var(--sapField_InformationBorderWidth);--_ui5-v2-8-0_radio_button_read_only_border_width: var(--sapField_BorderWidth);--_ui5-v2-8-0_radio_button_read_only_inner_ring_color: var(--sapContent_NonInteractiveIconColor);--_ui5-v2-8-0_rating_indicator_border_radius: .5rem;--_ui5-v2-8-0_rating_indicator_outline_offset: -.125rem;--_ui5-v2-8-0_rating_indicator_item_height: 1em;--_ui5-v2-8-0_rating_indicator_item_width: 1em;--_ui5-v2-8-0_rating_indicator_readonly_item_height: 1em;--_ui5-v2-8-0_rating_indicator_readonly_item_width: 1em;--_ui5-v2-8-0_rating_indicator_readonly_item_spacing: 0px;--_ui5-v2-8-0_rating_indicator_component_spacing: .5rem 0px;--_ui5-v2-8-0_rating_indicator_component_padding: .25rem;--_ui5-v2-8-0_rating_indicator_item_size_s: 1.375rem;--_ui5-v2-8-0_rating_indicator_item_size_l: 2rem;--_ui5-v2-8-0_segmented_btn_inner_border: .0625rem solid var(--sapButton_BorderColor);--_ui5-v2-8-0_segmented_btn_inner_border_odd_child: 0;--_ui5-v2-8-0_segmented_btn_inner_pressed_border_odd_child: 0;--_ui5-v2-8-0_segmented_btn_item_border_left: 0px;--_ui5-v2-8-0_segmented_btn_item_border_right: .0625rem;--_ui5-v2-8-0_button_focused_border: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-8-0_button_focused_border_radius: .25rem;--_ui5-v2-8-0_button_focused_inner_border_radius: 0;--_ui5-v2-8-0_button_base_min_compact_width: 2rem;--_ui5-v2-8-0_button_base_height: var(--sapElement_Height);--_ui5-v2-8-0_button_compact_height: 1.625rem;--_ui5-v2-8-0_button_border_radius: var(--sapButton_BorderCornerRadius);--_ui5-v2-8-0_button_compact_padding: .4375rem;--_ui5-v2-8-0_button_focus_offset: 1px;--_ui5-v2-8-0_button_focus_width: 1px;--_ui5-v2-8-0_button_pressed_focused_border_color: var(--sapContent_ContrastFocusColor);--_ui5-v2-8-0_button_fontFamily: var(--sapFontFamily);--_ui5-v2-8-0_button_base_min_width: 2.25rem;--_ui5-v2-8-0_button_base_padding: .5625rem;--_ui5-v2-8-0_button_base_icon_only_padding: .5625rem;--_ui5-v2-8-0_button_base_icon_margin: .375rem;--_ui5-v2-8-0_button_icon_font_size: 1rem;--_ui5-v2-8-0_button_text_shadow: none;--_ui5-v2-8-0_button_emphasized_focused_border: .0625rem dotted var(--sapContent_ContrastFocusColor);--_ui5-v2-8-0_button_emphasized_focused_border_before: unset;--_ui5-v2-8-0_button_emphasized_outline: 1px solid var(--sapContent_FocusColor);--_ui5-v2-8-0_button_emphasized_focused_border_color: var(--sapContent_ContrastFocusColor);--_ui5-v2-8-0_button_emphasized_focused_active_border_color: var(--sapContent_ContrastFocusColor);--_ui5-v2-8-0_select_hover_icon_left_border: 1px solid transparent;--_ui5-v2-8-0_select_label_color: var(--sapField_TextColor);--_ui5-v2-8-0_split_button_focused_border: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-8-0_split_button_focused_border_radius: .125rem;--_ui5-v2-8-0_split_button_middle_separator_width: 0;--_ui5-v2-8-0_split_button_middle_separator_left: -.0625rem;--_ui5-v2-8-0_split_button_middle_separator_hover_display: block;--_ui5-v2-8-0_split_button_text_button_width: 2.25rem;--_ui5-v2-8-0_split_button_text_button_right_border_width: 0;--_ui5-v2-8-0_split_button_transparent_hover_background: var(--sapButton_Lite_Background);--_ui5-v2-8-0_split_button_host_transparent_hover_background: transparent;--_ui5-v2-8-0_split_button_transparent_hover_color: var(--sapButton_Lite_TextColor);--_ui5-v2-8-0_split_button_transparent_disabled_background: transparent;--_ui5-v2-8-0_split_button_inner_focused_border_radius_outer: .25rem;--_ui5-v2-8-0_split_button_inner_focused_border_radius_inner: 0;--_ui5-v2-8-0_split_button_emphasized_separator_color: var(--sapButton_Emphasized_TextColor);--_ui5-v2-8-0_split_button_positive_separator_color: var(--sapButton_Accept_BorderColor);--_ui5-v2-8-0_split_button_negative_separator_color: var(--sapButton_Reject_BorderColor);--_ui5-v2-8-0_split_button_attention_separator_color: var(--sapButton_Attention_BorderColor);--_ui5-v2-8-0_split_button_attention_separator_color_default: var(--sapButton_Attention_BorderColor);--_ui5-v2-8-0_split_button_host_default_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_BorderColor);--_ui5-v2-8-0_split_button_host_attention_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Attention_BorderColor);--_ui5-v2-8-0_split_button_host_emphasized_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Emphasized_BorderColor);--_ui5-v2-8-0_split_button_host_positive_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Accept_BorderColor);--_ui5-v2-8-0_split_button_host_negative_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Reject_BorderColor);--_ui5-v2-8-0_split_button_host_transparent_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Lite_BorderColor);--_ui5-v2-8-0_split_button_host_transparent_hover_box_shadow: none;--_ui5-v2-8-0_split_text_button_border_color: transparent;--_ui5-v2-8-0_split_text_button_background_color: transparent;--_ui5-v2-8-0_split_text_button_emphasized_border: var(--sapButton_BorderWidth) solid var(--sapButton_Emphasized_BorderColor);--_ui5-v2-8-0_split_text_button_emphasized_border_width: .0625rem;--_ui5-v2-8-0_split_text_button_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5-v2-8-0_split_text_button_emphasized_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Emphasized_BorderColor);--_ui5-v2-8-0_split_text_button_positive_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Accept_BorderColor);--_ui5-v2-8-0_split_text_button_negative_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Reject_BorderColor);--_ui5-v2-8-0_split_text_button_attention_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Attention_BorderColor);--_ui5-v2-8-0_split_text_button_transparent_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5-v2-8-0_split_arrow_button_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5-v2-8-0_split_arrow_button_emphasized_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Emphasized_BorderColor);--_ui5-v2-8-0_split_arrow_button_emphasized_hover_border_left: var(--sapButton_BorderWidth) solid var(--sapButton_Emphasized_BorderColor);--_ui5-v2-8-0_split_arrow_button_positive_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Accept_BorderColor);--_ui5-v2-8-0_split_arrow_button_negative_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Reject_BorderColor);--_ui5-v2-8-0_split_arrow_button_attention_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Attention_BorderColor);--_ui5-v2-8-0_split_arrow_button_transparent_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5-v2-8-0_split_text_button_hover_border_right: none;--_ui5-v2-8-0_split_text_button_emphasized_hover_border_right: none;--_ui5-v2-8-0_split_text_button_positive_hover_border_right: none;--_ui5-v2-8-0_split_text_button_negative_hover_border_right: none;--_ui5-v2-8-0_split_text_button_attention_hover_border_right: none;--_ui5-v2-8-0_split_text_button_transparent_hover_border_right: none;--_ui5-v2-8-0_split_text_button_hover_border_left: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5-v2-8-0_split_text_button_emphasized_hover_border_left: var(--sapButton_BorderWidth) solid var(--sapButton_Emphasized_BorderColor);--_ui5-v2-8-0_split_text_button_positive_hover_border_left: var(--sapButton_BorderWidth) solid var(--sapButton_Accept_BorderColor);--_ui5-v2-8-0_split_text_button_negative_hover_border_left: var(--sapButton_BorderWidth) solid var(--sapButton_Reject_BorderColor);--_ui5-v2-8-0_split_text_button_attention_hover_border_left: var(--sapButton_BorderWidth) solid var(--sapButton_Attention_BorderColor);--_ui5-v2-8-0_split_text_button_transparent_hover_border_left: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5-v2-8-0_split_button_middle_separator_hover_display_emphasized: block;--_ui5-v2-8-0_switch_height: 2.75rem;--_ui5-v2-8-0_switch_width: 3.25rem;--_ui5-v2-8-0_switch_min_width: 3.875rem;--_ui5-v2-8-0_switch_with_label_width: 100%;--_ui5-v2-8-0_switch_focus_outline: var(--_ui5-v2-8-0_switch_foucs_border_size) dotted var(--sapContent_FocusColor);--_ui5-v2-8-0_switch_root_outline_top: .25rem;--_ui5-v2-8-0_switch_root_outline_bottom: .25rem;--_ui5-v2-8-0_switch_root_outline_left: 0;--_ui5-v2-8-0_switch_root_outline_right: 0;--_ui5-v2-8-0_switch_foucs_border_size: 1px;--_ui5-v2-8-0-switch-root-border-radius: 0;--_ui5-v2-8-0-switch-root-box-shadow: none;--_ui5-v2-8-0_switch_root_after_outline: none;--_ui5-v2-8-0-switch-focus: \"\";--_ui5-v2-8-0_switch_disabled_opacity: .4;--_ui5-v2-8-0_switch_transform: translateX(100%) translateX(-1.875rem);--_ui5-v2-8-0_switch_transform_with_label: translateX(100%) translateX(-1.875rem);--_ui5-v2-8-0_switch_rtl_transform: translateX(-100%) translateX(1.875rem);--_ui5-v2-8-0_switch_rtl_transform_with_label: translateX(-100%) translateX(1.875rem);--_ui5-v2-8-0_switch_track_with_label_width: 100%;--_ui5-v2-8-0_switch_track_with_label_height: 1.375rem;--_ui5-v2-8-0_switch_track_width: 100%;--_ui5-v2-8-0_switch_track_height: 1.375rem;--_ui5-v2-8-0_switch_track_border_radius: .75rem;--_ui5-v2-8-0-switch-track-border: 1px solid;--_ui5-v2-8-0_switch_track_active_background_color: var(--sapButton_Track_Selected_Background);--_ui5-v2-8-0_switch_track_inactive_background_color: var(--sapButton_Track_Background);--_ui5-v2-8-0_switch_track_hover_active_background_color: var(--sapButton_Track_Selected_Background);--_ui5-v2-8-0_switch_track_hover_inactive_background_color: var(--sapButton_Track_Background);--_ui5-v2-8-0_switch_track_active_border_color: var(--sapContent_ForegroundBorderColor);--_ui5-v2-8-0_switch_track_inactive_border_color: var(--sapContent_ForegroundBorderColor);--_ui5-v2-8-0_switch_track_hover_active_border_color: var(--sapButton_Hover_BorderColor);--_ui5-v2-8-0_switch_track_hover_inactive_border_color: var(--sapButton_Hover_BorderColor);--_ui5-v2-8-0_switch_track_semantic_accept_background_color: var(--sapSuccessBackground);--_ui5-v2-8-0_switch_track_semantic_reject_background_color: var(--sapErrorBackground);--_ui5-v2-8-0_switch_track_semantic_hover_accept_background_color: var(--sapSuccessBackground);--_ui5-v2-8-0_switch_track_semantic_hover_reject_background_color: var(--sapErrorBackground);--_ui5-v2-8-0_switch_track_semantic_accept_border_color: var(--sapSuccessBorderColor);--_ui5-v2-8-0_switch_track_semantic_reject_border_color: var(--sapErrorBorderColor);--_ui5-v2-8-0_switch_track_semantic_hover_accept_border_color: var(--sapSuccessBorderColor);--_ui5-v2-8-0_switch_track_semantic_hover_reject_border_color: var(--sapErrorBorderColor);--_ui5-v2-8-0_switch_track_transition: none;--_ui5-v2-8-0_switch_track_icon_display: none;--_ui5-v2-8-0_switch_handle_width: 2rem;--_ui5-v2-8-0_switch_handle_height: 2rem;--_ui5-v2-8-0_switch_handle_with_label_width: 2rem;--_ui5-v2-8-0_switch_handle_with_label_height: 2rem;--_ui5-v2-8-0_switch_handle_border: var(--_ui5-v2-8-0_switch_handle_border_width) solid var(--sapButton_Handle_BorderColor);--_ui5-v2-8-0_switch_handle_border_width: .0625rem;--_ui5-v2-8-0_switch_handle_border_radius: 1rem;--_ui5-v2-8-0_switch_handle_active_background_color: var(--sapButton_Selected_Background);--_ui5-v2-8-0_switch_handle_inactive_background_color: var(--sapButton_TokenBackground);--_ui5-v2-8-0_switch_handle_hover_active_background_color: var(--sapButton_Selected_Hover_Background);--_ui5-v2-8-0_switch_handle_hover_inactive_background_color: var(--sapButton_Handle_Hover_Background);--_ui5-v2-8-0_switch_handle_active_border_color: var(--sapButton_Selected_BorderColor);--_ui5-v2-8-0_switch_handle_inactive_border_color: var(--sapContent_ForegroundBorderColor);--_ui5-v2-8-0_switch_handle_hover_active_border_color: var(--sapButton_Selected_BorderColor);--_ui5-v2-8-0_switch_handle_hover_inactive_border_color: var(--sapButton_Hover_BorderColor);--_ui5-v2-8-0_switch_handle_semantic_accept_background_color: var(--sapButton_Background);--_ui5-v2-8-0_switch_handle_semantic_reject_background_color: var(--sapButton_Background);--_ui5-v2-8-0_switch_handle_semantic_hover_accept_background_color: var(--sapSuccessBackground);--_ui5-v2-8-0_switch_handle_semantic_hover_reject_background_color: var(--sapErrorBackground);--_ui5-v2-8-0_switch_handle_semantic_accept_border_color: var(--sapSuccessBorderColor);--_ui5-v2-8-0_switch_handle_semantic_reject_border_color: var(--sapErrorBorderColor);--_ui5-v2-8-0_switch_handle_semantic_hover_accept_border_color: var(--sapSuccessBorderColor);--_ui5-v2-8-0_switch_handle_semantic_hover_reject_border_color: var(--sapErrorBorderColor);--_ui5-v2-8-0_switch_handle_on_hover_box_shadow: none;--_ui5-v2-8-0_switch_handle_off_hover_box_shadow: none;--_ui5-v2-8-0_switch_handle_semantic_on_hover_box_shadow: var(--sapContent_Informative_Shadow);--_ui5-v2-8-0_switch_handle_semantic_off_hover_box_shadow: var(--sapContent_Negative_Shadow);--_ui5-v2-8-0_switch_handle_left: -.0625rem;--_ui5-v2-8-0-switch-slider-texts-display: inline;--_ui5-v2-8-0_switch_text_font_family: \"72override\", var(--sapFontFamily);--_ui5-v2-8-0_switch_text_font_size: var(--sapFontSmallSize);--_ui5-v2-8-0_switch_text_with_label_font_family: \"72override\", var(--sapFontFamily);--_ui5-v2-8-0_switch_text_with_label_font_size: var(--sapFontSmallSize);--_ui5-v2-8-0_switch_text_with_label_width: none;--_ui5-v2-8-0_switch_text_width: none;--_ui5-v2-8-0_switch_text_inactive_left: auto;--_ui5-v2-8-0_switch_text_inactive_left_alternate: auto;--_ui5-v2-8-0_switch_text_inactive_right: .125rem;--_ui5-v2-8-0_switch_text_inactive_right_alternate: .125rem;--_ui5-v2-8-0_switch_text_active_left: calc(-100% + 2rem) ;--_ui5-v2-8-0_switch_text_active_left_alternate: calc(-100% + 2rem) ;--_ui5-v2-8-0_switch_text_active_right: auto;--_ui5-v2-8-0_switch_text_active_color: var(--sapButton_Track_Selected_TextColor);--_ui5-v2-8-0_switch_text_inactive_color: var(--sapTextColor);--_ui5-v2-8-0_switch_text_semantic_accept_color: var(--sapPositiveElementColor);--_ui5-v2-8-0_switch_text_semantic_reject_color: var(--sapNegativeElementColor);--_ui5-v2-8-0_switch_text_overflow: none;--_ui5-v2-8-0_switch_text_z_index: inherit;--_ui5-v2-8-0_switch_text_hidden: hidden;--_ui5-v2-8-0_switch_text_min_width: 1.625rem;--_ui5-v2-8-0_switch_icon_width: .75rem;--_ui5-v2-8-0_switch_icon_height: .75rem;--_ui5-v2-8-0_tc_header_height: var(--_ui5-v2-8-0_tc_item_height);--_ui5-v2-8-0_tc_header_height_text_only: var(--_ui5-v2-8-0_tc_item_text_only_height);--_ui5-v2-8-0_tc_header_height_text_with_additional_text: var(--_ui5-v2-8-0_tc_item_text_only_with_additional_text_height);--_ui5-v2-8-0_tc_header_box_shadow: var(--sapContent_HeaderShadow);--_ui5-v2-8-0_tc_header_background: var(--sapObjectHeader_Background);--_ui5-v2-8-0_tc_header_background_translucent: var(--sapObjectHeader_Background);--_ui5-v2-8-0_tc_content_background: var(--sapBackgroundColor);--_ui5-v2-8-0_tc_content_background_translucent: var(--sapGroup_ContentBackground);--_ui5-v2-8-0_tc_headeritem_padding: 1rem;--_ui5-v2-8-0_tc_headerItem_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_tc_headerItem_additional_text_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_tc_headerItem_text_selected_color: var(--sapSelectedColor);--_ui5-v2-8-0_tc_headerItem_text_selected_hover_color: var(--sapSelectedColor);--_ui5-v2-8-0_tc_headeritem_text_font_weight: normal;--_ui5-v2-8-0_tc_headerItem_additional_text_font_weight: normal;--_ui5-v2-8-0_tc_headerItem_neutral_color: var(--sapNeutralTextColor);--_ui5-v2-8-0_tc_headerItem_positive_color: var(--sapPositiveTextColor);--_ui5-v2-8-0_tc_headerItem_negative_color: var(--sapNegativeTextColor);--_ui5-v2-8-0_tc_headerItem_critical_color: var(--sapCriticalTextColor);--_ui5-v2-8-0_tc_headerItem_neutral_border_color: var(--sapNeutralElementColor);--_ui5-v2-8-0_tc_headerItem_positive_border_color: var(--sapPositiveElementColor);--_ui5-v2-8-0_tc_headerItem_negative_border_color: var(--sapNegativeElementColor);--_ui5-v2-8-0_tc_headerItem_critical_border_color: var(--sapCriticalElementColor);--_ui5-v2-8-0_tc_headerItem_neutral_selected_border_color: var(--_ui5-v2-8-0_tc_headerItem_neutral_color);--_ui5-v2-8-0_tc_headerItem_positive_selected_border_color: var(--_ui5-v2-8-0_tc_headerItem_positive_color);--_ui5-v2-8-0_tc_headerItem_negative_selected_border_color: var(--_ui5-v2-8-0_tc_headerItem_negative_color);--_ui5-v2-8-0_tc_headerItem_critical_selected_border_color: var(--_ui5-v2-8-0_tc_headerItem_critical_color);--_ui5-v2-8-0_tc_headerItem_transition: none;--_ui5-v2-8-0_tc_headerItem_hover_border_visibility: hidden;--_ui5-v2-8-0_tc_headerItem_focus_offset: 0px;--_ui5-v2-8-0_tc_headerItemContent_border_radius: .125rem .125rem 0 0;--_ui5-v2-8-0_tc_headerItemContent_border_bg: transparent;--_ui5-v2-8-0_tc_headerItem_neutral_border_bg: transparent;--_ui5-v2-8-0_tc_headerItem_positive_border_bg: transparent;--_ui5-v2-8-0_tc_headerItem_negative_border_bg: transparent;--_ui5-v2-8-0_tc_headerItem_critical_border_bg: transparent;--_ui5-v2-8-0_tc_headerItemContent_border_height: 0;--_ui5-v2-8-0_tc_headerItemContent_focus_offset: 1rem;--_ui5-v2-8-0_tc_headerItem_focus_border: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-v2-8-0_tc_headerItem_text_focus_border_offset_left: 0px;--_ui5-v2-8-0_tc_headerItem_text_focus_border_offset_right: 0px;--_ui5-v2-8-0_tc_headerItem_text_focus_border_offset_top: 0px;--_ui5-v2-8-0_tc_headerItem_text_focus_border_offset_bottom: 0px;--_ui5-v2-8-0_tc_headerItem_mixed_mode_focus_border_offset_left: .75rem;--_ui5-v2-8-0_tc_headerItem_mixed_mode_focus_border_offset_right: .625rem;--_ui5-v2-8-0_tc_headerItem_mixed_mode_focus_border_offset_top: .75rem;--_ui5-v2-8-0_tc_headerItem_mixed_mode_focus_border_offset_bottom: .75rem;--_ui5-v2-8-0_tc_headerItemContent_focus_border: none;--_ui5-v2-8-0_tc_headerItemContent_default_focus_border: none;--_ui5-v2-8-0_tc_headerItemContent_focus_border_radius: 0;--_ui5-v2-8-0_tc_headerItemSemanticIcon_display: none;--_ui5-v2-8-0_tc_headerItemSemanticIcon_size: .75rem;--_ui5-v2-8-0_tc_headerItem_focus_border_radius: 0px;--_ui5-v2-8-0_tc_mixedMode_itemText_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_tc_mixedMode_itemText_font_family: var(--sapFontFamily);--_ui5-v2-8-0_tc_mixedMode_itemText_font_size: var(--sapFontSmallSize);--_ui5-v2-8-0_tc_mixedMode_itemText_font_weight: normal;--_ui5-v2-8-0_tc_headerItem_expand_button_margin_inline_start: .625rem;--_ui5-v2-8-0_tc_headerItem_single_click_expand_button_margin_inline_start: .875rem;--_ui5-v2-8-0_tc_headerItem_expand_button_border_radius: var(--sapButton_BorderCornerRadius);--_ui5-v2-8-0_tc_headerItem_expand_button_separator_display: none;--_ui5-v2-8-0_tc_overflowItem_positive_color: var(--sapPositiveColor);--_ui5-v2-8-0_tc_overflowItem_negative_color: var(--sapNegativeColor);--_ui5-v2-8-0_tc_overflowItem_critical_color: var(--sapCriticalColor);--_ui5-v2-8-0_tc_overflowItem_focus_offset: .125rem;--_ui5-v2-8-0_tc_overflowItem_indent: .5rem;--_ui5-v2-8-0_tc_overflowItem_extra_indent: 0rem;--_ui5-v2-8-0_tc_headerItemIcon_border: 1px solid var(--sapHighlightColor);--_ui5-v2-8-0_tc_headerItemIcon_color: var(--sapHighlightColor);--_ui5-v2-8-0_tc_headerItemIcon_selected_background: var(--sapHighlightColor);--_ui5-v2-8-0_tc_headerItemIcon_selected_color: var(--sapGroup_ContentBackground);--_ui5-v2-8-0_tc_headerItemIcon_positive_selected_background: var(--sapPositiveColor);--_ui5-v2-8-0_tc_headerItemIcon_negative_selected_background: var(--sapNegativeColor);--_ui5-v2-8-0_tc_headerItemIcon_critical_selected_background: var(--sapCriticalColor);--_ui5-v2-8-0_tc_headerItemIcon_neutral_selected_background: var(--sapNeutralColor);--_ui5-v2-8-0_tc_headerItemIcon_semantic_selected_color: var(--sapGroup_ContentBackground);--_ui5-v2-8-0_tc_headerItemIcon_background_color: transparent;--_ui5-v2-8-0_tc_headerItem_focus_border_offset: -2px;--_ui5-v2-8-0_tc_headerItemIcon_focus_border_radius: 0;--_ui5-v2-8-0_tc_overflow_text_color: var(--sapButton_TextColor);--_ui5-v2-8-0_tc_header_border_bottom: .0625rem solid var(--sapObjectHeader_Background);--_ui5-v2-8-0_tc_headerItemContent_border_bottom: .1875rem solid var(--sapSelectedColor);--_ui5-v2-8-0_tc_overflowItem_default_color: var(--sapHighlightColor);--_ui5-v2-8-0_tc_overflowItem_current_color: CurrentColor;--_ui5-v2-8-0_tc_content_border_bottom: .0625rem solid var(--sapObjectHeader_BorderColor);--_ui5-v2-8-0_tc_headerItem_text_hover_color: #fff;--_ui5-v2-8-0_text_max_lines: initial;--_ui5-v2-8-0_textarea_state_border_width: .125rem;--_ui5-v2-8-0_textarea_information_border_width: .125rem;--_ui5-v2-8-0_textarea_placeholder_font_style: italic;--_ui5-v2-8-0_textarea_value_state_error_warning_placeholder_font_weight: normal;--_ui5-v2-8-0_textarea_error_placeholder_font_style: italic;--_ui5-v2-8-0_textarea_error_placeholder_color: var(--sapField_PlaceholderTextColor);--_ui5-v2-8-0_textarea_error_hover_background_color: var(--sapField_Hover_Background);--_ui5-v2-8-0_textarea_hover_border: var(--sapField_BorderWidth) var(--sapField_BorderStyle) var(--sapField_Hover_BorderColor);--_ui5-v2-8-0_textarea_error_warning_border_style: solid;--_ui5-v2-8-0_textarea_disabled_opacity: .4;--_ui5-v2-8-0_textarea_line_height: 1.4;--_ui5-v2-8-0_textarea_focus_pseudo_element_content: \"\";--_ui5-v2-8-0_textarea_focused_value_state_error_background: var(--sapField_InvalidBackground);--_ui5-v2-8-0_textarea_focused_value_state_warning_background: var(--sapField_WarningBackground);--_ui5-v2-8-0_textarea_focused_value_state_success_background: var(--sapField_SuccessBackground);--_ui5-v2-8-0_textarea_focused_value_state_information_background: var(--sapField_InformationBackground);--_ui5-v2-8-0_textarea_focused_value_state_error_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-8-0_textarea_focused_value_state_warning_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-8-0_textarea_focused_value_state_success_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-8-0_textarea_focus_offset: 1px;--_ui5-v2-8-0_textarea_readonly_focus_offset: 1px;--_ui5-v2-8-0_textarea_value_state_focus_offset: 1px;--_ui5-v2-8-0_textarea_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-8-0_textarea_min_height: 2.25rem;--_ui5-v2-8-0_textarea_wrapper_padding: 0;--_ui5-v2-8-0_textarea_success_wrapper_padding: 0;--_ui5-v2-8-0_textarea_warning_error_wrapper_padding: 0;--_ui5-v2-8-0_textarea_information_wrapper_padding: 0;--_ui5-v2-8-0_textarea_padding_right_and_left: .5625rem;--_ui5-v2-8-0_textarea_padding_right_and_left_error_warning: .5rem;--_ui5-v2-8-0_textarea_padding_right_and_left_information: .5rem;--_ui5-v2-8-0_textarea_padding_right_and_left_readonly: .5625rem;--_ui5-v2-8-0_textarea_padding_top: .4375rem;--_ui5-v2-8-0_textarea_padding_bottom: .4375rem;--_ui5-v2-8-0_textarea_padding_top_readonly: .4375rem;--_ui5-v2-8-0_textarea_padding_bottom_readonly:.4375rem;--_ui5-v2-8-0_textarea_padding_top_error_warning: .375rem;--_ui5-v2-8-0_textarea_padding_bottom_error_warning: .375rem;--_ui5-v2-8-0_textarea_padding_top_information: .375rem;--_ui5-v2-8-0_textarea_padding_bottom_information: .375rem;--_ui5-v2-8-0_textarea_exceeded_text_height: 1rem;--_ui5-v2-8-0_textarea_readonly_border_style: var(--sapField_BorderStyle);--_ui5-v2-8-0_toast_vertical_offset: 3rem;--_ui5-v2-8-0_toast_horizontal_offset: 2rem;--_ui5-v2-8-0_toast_background: var(--sapIndicationColor_9_Background);--_ui5-v2-8-0_toast_shadow: var(--sapContent_Lite_Shadow);--_ui5-v2-8-0_toast_offset_width: -.1875rem;--_ui5-v2-8-0_toggle_button_pressed_focussed: var(--sapButton_Selected_BorderColor);--_ui5-v2-8-0_toggle_button_pressed_focussed_hovered: var(--sapButton_Selected_BorderColor);--_ui5-v2-8-0_toggle_button_selected_positive_text_color: var(--sapButton_Selected_TextColor);--_ui5-v2-8-0_toggle_button_selected_negative_text_color: var(--sapButton_Selected_TextColor);--_ui5-v2-8-0_toggle_button_selected_attention_text_color: var(--sapButton_Selected_TextColor);--_ui5-v2-8-0_toggle_button_emphasized_pressed_focussed_hovered: var(--sapContent_FocusColor);--_ui5-v2-8-0_toggle_button_emphasized_text_shadow: none;--_ui5-v2-8-0_yearpicker_item_margin: .0625rem;--_ui5-v2-8-0_yearpicker_item_border: .0625rem solid var(--sapButton_Lite_BorderColor);--_ui5-v2-8-0_yearpicker_item_hover_border: .0625rem solid var(--sapButton_Lite_Hover_BorderColor);--_ui5-v2-8-0_yearpicker_item_active_border: .0625rem solid var(--sapButton_Lite_Active_BorderColor);--_ui5-v2-8-0_yearpicker_item_selected_border: .0625rem solid var(--sapButton_Selected_BorderColor);--_ui5-v2-8-0_yearpicker_item_selected_hover_border: .0625rem solid var(--sapButton_Selected_Hover_BorderColor);--_ui5-v2-8-0_yearpicker_item_border_radius: .25rem;--_ui5-v2-8-0_calendar_header_arrow_button_border: none;--_ui5-v2-8-0_calendar_header_arrow_button_border_radius: .25rem;--_ui5-v2-8-0_calendar_header_middle_button_width: 6.25rem;--_ui5-v2-8-0_calendar_header_middle_button_flex: 1 1 auto;--_ui5-v2-8-0_calendar_header_middle_button_focus_border_radius: .25rem;--_ui5-v2-8-0_calendar_header_middle_button_focus_border: none;--_ui5-v2-8-0_calendar_header_middle_button_focus_after_display: block;--_ui5-v2-8-0_calendar_header_button_background_color: none;--_ui5-v2-8-0_calendar_header_arrow_button_box_shadow: none;--_ui5-v2-8-0_calendar_header_middle_button_focus_background: transparent;--_ui5-v2-8-0_calendar_header_middle_button_focus_outline: none;--_ui5-v2-8-0_calendar_header_middle_button_focus_active_outline: none;--_ui5-v2-8-0_calendar_header_middle_button_focus_active_background: var(--sapButton_Active_Background);--_ui5-v2-8-0_calendar_header_middle_button_focus_after_border: 1px dotted var(--sapContent_FocusColor);--_ui5-v2-8-0_calendar_header_middle_button_focus_after_width: calc(100% - .375rem) ;--_ui5-v2-8-0_calendar_header_middle_button_focus_after_height: calc(100% - .375rem) ;--_ui5-v2-8-0_calendar_header_middle_button_focus_after_top_offset: .125rem;--_ui5-v2-8-0_calendar_header_middle_button_focus_after_left_offset: .125rem;--_ui5-v2-8-0-toolbar-padding-left: .5rem;--_ui5-v2-8-0-toolbar-padding-right: .5rem;--_ui5-v2-8-0-toolbar-item-margin-left: 0;--_ui5-v2-8-0-toolbar-item-margin-right: .25rem;--_ui5-v2-8-0_load_more_padding: 0;--_ui5-v2-8-0_load_more_border: 1px top solid transparent;--_ui5-v2-8-0_load_more_border_radius: none;--_ui5-v2-8-0_load_more_outline_width: 1px;--_ui5-v2-8-0_token_background: var(--sapButton_TokenBackground);--_ui5-v2-8-0_token_readonly_background: var(--sapButton_TokenBackground);--_ui5-v2-8-0_token_readonly_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_token_border_radius: var(--sapButton_BorderCornerRadius);--_ui5-v2-8-0_token_focus_outline_width: .0625rem;--_ui5-v2-8-0_token_outline_offset: -.125rem;--_ui5-v2-8-0_token_hover_border_color: var(--sapButton_Hover_BorderColor);--_ui5-v2-8-0_token_right_margin: .3125rem;--_ui5-v2-8-0_token_padding: .25rem 0;--_ui5-v2-8-0_token_left_padding: .3125rem;--_ui5-v2-8-0_token_readonly_padding: .25rem .375rem;--_ui5-v2-8-0_token_selected_focus_outline: var(--_ui5-v2-8-0_token_focus_outline_width) dotted var(--sapContent_ContrastFocusColor);--_ui5-v2-8-0_token_focus_outline: var(--_ui5-v2-8-0_token_focus_outline_width) dotted var(--sapContent_FocusColor);--_ui5-v2-8-0_token_selected_hover_border_color: var(--sapButton_Selected_Hover_BorderColor);--_ui5-v2-8-0_token_focused_selected_border: 1px solid var(--sapButton_Selected_BorderColor);--ui5-v2-8-0_token_focus_pseudo_element_content: none;--_ui5-v2-8-0_token_focus_offset: -.25rem;--_ui5-v2-8-0_token_selected_text_font_family: \"72override\", var(--sapFontFamily);--_ui5-v2-8-0_token_selected_internal_border_bottom: none;--_ui5-v2-8-0_token_selected_internal_border_bottom_radius: 0;--_ui5-v2-8-0_token_text_icon_top: 0;--_ui5-v2-8-0_token_selected_focused_offset_bottom: var(--_ui5-v2-8-0_token_focus_offset);--_ui5-v2-8-0_token_text_color: var(--sapTextColor);--_ui5-v2-8-0_tokenizer_gap: .625rem .25rem;--_ui5-v2-8-0_tokenizer_n_more_text_color: var(--sapField_TextColor);--_ui5-v2-8-0_tokenizer-popover_offset: .3125rem;--_ui5-v2-8-0_value_state_message_border: none;--_ui5-v2-8-0_value_state_header_border: none;--_ui5-v2-8-0_input_value_state_icon_display: none;--_ui5-v2-8-0_value_state_message_padding: .5rem;--_ui5-v2-8-0_value_state_message_padding_phone: .5rem .5rem .5rem 1rem;--_ui5-v2-8-0_value_state_header_padding: .5625rem 1rem;--_ui5-v2-8-0_value_state_message_popover_box_shadow: none;--_ui5-v2-8-0_value_state_message_icon_width: .875rem;--_ui5-v2-8-0_value_state_message_icon_height: .875rem;--_ui5-v2-8-0_input_value_state_icon_offset: .5rem;--_ui5-v2-8-0_value_state_header_offset: -.125rem;--_ui5-v2-8-0_value_state_message_popover_border_radius: 0;--_ui5-v2-8-0_value_state_header_box_shadow_error: inset 0 -.0625rem var(--sapField_InvalidColor);--_ui5-v2-8-0_value_state_header_box_shadow_information: inset 0 -.0625rem var(--sapField_InformationColor);--_ui5-v2-8-0_value_state_header_box_shadow_success: inset 0 -.0625rem var(--sapField_SuccessColor);--_ui5-v2-8-0_value_state_header_box_shadow_warning: inset 0 -.0625rem var(--sapField_WarningColor);--_ui5-v2-8-0_value_state_message_line_height: 1rem;--_ui5-v2-8-0_value_state_message_icon_offset_phone: 1rem;--_ui5-v2-8-0_value_state_header_border_bottom: none;--_ui5-v2-8-0-multi_combobox_token_margin_top: 1px;--_ui5-v2-8-0_slider_progress_container_background: var(--sapField_BorderColor);--_ui5-v2-8-0_slider_progress_container_dot_display: none;--_ui5-v2-8-0_slider_progress_container_dot_background: var(--sapField_BorderColor);--_ui5-v2-8-0_slider_progress_border: none;--_ui5-v2-8-0_slider_padding: 1.406rem 1.0625rem;--_ui5-v2-8-0_slider_inner_height: .25rem;--_ui5-v2-8-0_slider_outer_height: 1.6875rem;--_ui5-v2-8-0_slider_progress_border_radius: .25rem;--_ui5-v2-8-0_slider_progress_background: var(--sapActiveColor);--_ui5-v2-8-0_slider_handle_icon_display: none;--_ui5-v2-8-0_range_slider_root_hover_handle_icon_display: none;--_ui5-v2-8-0_slider_handle_height: 1.625rem;--_ui5-v2-8-0_slider_handle_width: 1.625rem;--_ui5-v2-8-0_slider_handle_border: solid .125rem var(--sapField_BorderColor);--_ui5-v2-8-0_slider_handle_border_radius: 1rem;--_ui5-v2-8-0_slider_handle_background: var(--sapButton_Background);--_ui5-v2-8-0_slider_handle_top: -.825rem;--_ui5-v2-8-0_slider_tickmark_bg: var(--sapField_BorderColor);--_ui5-v2-8-0_slider_handle_margin_left: calc(-1 * (var(--_ui5-v2-8-0_slider_handle_width) / 2));--_ui5-v2-8-0_slider_handle_hover_background: var(--sapButton_Hover_Background);--_ui5-v2-8-0_slider_handle_hover_border: .125rem solid var(--sapButton_Hover_BorderColor);--_ui5-v2-8-0_slider_handle_outline: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-8-0_slider_handle_focus_border: var(--_ui5-v2-8-0_slider_handle_hover_border);--_ui5-v2-8-0_slider_handle_outline_offset: .075rem;--_ui5-v2-8-0_slider_progress_outline: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-8-0_slider_progress_outline_offset: -.8125rem;--_ui5-v2-8-0_slider_disabled_opacity: .4;--_ui5-v2-8-0_slider_tooltip_fontsize: var(--sapFontSmallSize);--_ui5-v2-8-0_slider_tooltip_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_slider_tooltip_background: var(--sapField_Background);--_ui5-v2-8-0_slider_tooltip_border_radius: var(--sapElement_BorderCornerRadius);--_ui5-v2-8-0_slider_tooltip_border_color: var(--sapField_BorderColor);--_ui5-v2-8-0_slider_tooltip_border: .0625rem solid var(--_ui5-v2-8-0_slider_tooltip_border_color);--_ui5-v2-8-0_slider_tooltip_box_shadow: none;--_ui5-v2-8-0_slider_tooltip_padding: .4125rem;--_ui5-v2-8-0_slider_tooltip_height: 1rem;--_ui5-v2-8-0_slider_tooltip_min_width: 2rem;--_ui5-v2-8-0_slider_tooltip_bottom: 2rem;--_ui5-v2-8-0_slider_label_fontsize: var(--sapFontSmallSize);--_ui5-v2-8-0_slider_label_color: var(--sapContent_LabelColor);--_ui5-v2-8-0_range_slider_progress_focus_display: none;--_ui5-v2-8-0_range_slider_progress_focus_top: -1.063rem;--_ui5-v2-8-0_range_slider_progress_focus_left: -1.438rem;--_ui5-v2-8-0_range_slider_progress_focus_padding: 0 1.375rem 0 1.438rem;--_ui5-v2-8-0_range_slider_progress_focus_height: 2rem;--_ui5-v2-8-0_range_slider_legacy_progress_focus_display: block;--_ui5-v2-8-0_slider_handle_focus_width: 0;--_ui5-v2-8-0_slider_start_end_point_size: .375rem;--_ui5-v2-8-0_slider_start_end_point_left: -.875rem;--_ui5-v2-8-0_slider_start_end_point_top: -.1875rem;--_ui5-v2-8-0_slider_handle_background_focus: var(--sapButton_Active_Background);--_ui5-v2-8-0_slider_handle_focused_tooltip_distance: var(--_ui5-v2-8-0_slider_tooltip_bottom);--_ui5-v2-8-0_slider_handle_box_sizing: content-box;--_ui5-v2-8-0_slider_tooltip_border_box: content-box;--_ui5-v2-8-0_range_slider_handle_active_background: var(--_ui5-v2-8-0_range_slider_handle_background);--_ui5-v2-8-0_range_slider_active_handle_icon_display: none;--_ui5-v2-8-0_range_slider_handle_background_focus: transparent;--_ui5-v2-8-0_range_slider_progress_focus_width: 100%;--_ui5-v2-8-0_range_slider_root_active_handle_icon_display: none;--_ui5-v2-8-0_slider_tickmark_height: 1rem;--_ui5-v2-8-0_slider_tickmark_top: -.3125rem;--_ui5-v2-8-0_slider_progress_box_sizing: content-box;--_ui5-v2-8-0_slider_tickmark_in_range_bg: var(--sapField_BorderColor);--_ui5-v2-8-0_range_slider_focus_outline_width: 100%;--_ui5-v2-8-0_slider_progress_outline_offset_left: 0;--_ui5-v2-8-0_range_slider_focus_outline_radius: 0;--_ui5-v2-8-0_slider_progress_container_top: 0;--_ui5-v2-8-0_slider_progress_height: 100%;--_ui5-v2-8-0_slider_active_progress_border: none;--_ui5-v2-8-0_slider_active_progress_left: 0;--_ui5-v2-8-0_slider_active_progress_top: 0;--_ui5-v2-8-0_slider_no_tickmarks_progress_container_top: var(--_ui5-v2-8-0_slider_progress_container_top);--_ui5-v2-8-0_slider_no_tickmarks_progress_height: var(--_ui5-v2-8-0_slider_progress_height);--_ui5-v2-8-0_slider_no_tickmarks_active_progress_border: var(--_ui5-v2-8-0_slider_active_progress_border);--_ui5-v2-8-0_slider_no_tickmarks_active_progress_left: var(--_ui5-v2-8-0_slider_active_progress_left);--_ui5-v2-8-0_slider_no_tickmarks_active_progress_top: var(--_ui5-v2-8-0_slider_active_progress_top);--_ui5-v2-8-0_slider_handle_focus_visibility: none;--_ui5-v2-8-0_slider_handle_icon_size: 1rem;--_ui5-v2-8-0_slider_inner_min_width: 4rem;--_ui5-v2-8-0_range_slider_handle_background: transparent;--_ui5-v2-8-0_range_slider_root_hover_handle_bg: transparent;--_ui5-v2-8-0_step_input_input_error_background_color: var(--sapField_InvalidBackground);--_ui5-v2-8-0-step_input_button_state_hover_background_color: var(--sapField_Background);--_ui5-v2-8-0_step_input_border_style: 1px solid var(--sapField_BorderColor);--_ui5-v2-8-0_step_input_border_style_hover: 1px solid var(--sapField_Hover_BorderColor);--_ui5-v2-8-0_step_input_button_background_color:var(--sapField_Background);--_ui5-v2-8-0_step_input_input_border: 1px solid transparent;--_ui5-v2-8-0_step_input_input_margin_top: -.0625rem;--_ui5-v2-8-0_step_input_button_display: inline-block;--_ui5-v2-8-0_step_input_button_left: 0;--_ui5-v2-8-0_step_input_button_right: 0;--_ui5-v2-8-0_step_input_input_border_focused_after: var(--_ui5-v2-8-0_input_focus_border_width) dotted var(--sapContent_FocusColor);--_ui5-v2-8-0_step_input_input_border_top_bottom_focused_after: .0625rem;--_ui5-v2-8-0_step_input_input_border_radius_focused_after: 0;--_ui5-v2-8-0_step_input_input_information_border_color_focused_after: var(--sapField_BorderColor);--_ui5-v2-8-0_step_input_input_warning_border_color_focused_after: var(--sapField_BorderColor);--_ui5-v2-8-0_step_input_input_success_border_color_focused_after: var(--sapField_BorderColor);--_ui5-v2-8-0_step_input_input_error_border_color_focused_after: var(--sapField_BorderColor);--_ui5-v2-8-0_step_input_disabled_button_background: var(--sapField_ReadOnly_Background);--_ui5-v2-8-0_step_input_border_color_hover: var(--sapField_Hover_Background);--_ui5-v2-8-0_step_input_border_hover: 1px solid var(--sapField_Hover_BorderColor);--_ui5-v2-8-0_input_input_background_color: var(--sapField_InvalidBackground);--_ui5-v2-8-0_step_input_min_width: 7.25rem;--_ui5-v2-8-0_step_input_padding: 2.5rem;--_ui5-v2-8-0_calendar_height: 24.5rem;--_ui5-v2-8-0_calendar_width: 20rem;--_ui5-v2-8-0_calendar_padding: 1rem;--_ui5-v2-8-0_calendar_left_right_padding: .5rem;--_ui5-v2-8-0_calendar_top_bottom_padding: 1rem;--_ui5-v2-8-0_calendar_header_height: 3rem;--_ui5-v2-8-0_calendar_header_arrow_button_width: 2.5rem;--_ui5-v2-8-0_calendar_header_padding: .25rem 0;--_ui5-v2-8-0_checkbox_root_side_padding: .6875rem;--_ui5-v2-8-0_checkbox_icon_size: 1rem;--_ui5-v2-8-0_checkbox_partially_icon_size: .75rem;--_ui5-v2-8-0_custom_list_item_rb_min_width: 2.75rem;--_ui5-v2-8-0_day_picker_item_width: 2.25rem;--_ui5-v2-8-0_day_picker_item_height: 2.875rem;--_ui5-v2-8-0_day_picker_empty_height: 3rem;--_ui5-v2-8-0_day_picker_item_justify_content: space-between;--_ui5-v2-8-0_dp_two_calendar_item_now_text_padding_top: .375rem;--_ui5-v2-8-0_daypicker_item_now_selected_two_calendar_focus_special_day_top: 2rem;--_ui5-v2-8-0_daypicker_item_now_selected_two_calendar_focus_special_day_right: 1.4375rem;--_ui5-v2-8-0_dp_two_calendar_item_primary_text_height: 1.8125rem;--_ui5-v2-8-0_dp_two_calendar_item_secondary_text_height: 1rem;--_ui5-v2-8-0_dp_two_calendar_item_text_padding_top: .4375rem;--_ui5-v2-8-0_dp_two_calendar_item_secondary_text_padding_block: 0 .5rem;--_ui5-v2-8-0_dp_two_calendar_item_secondary_text_padding: 0 .5rem;--_ui5-v2-8-0_daypicker_item_now_selected_two_calendar_focus_secondary_text_padding_block: 0 .5rem;--_ui5-v2-8-0_daypicker_two_calendar_item_selected_focus_margin_bottom: 0;--_ui5-v2-8-0_daypicker_two_calendar_item_selected_focus_padding_right: .4375rem;--_ui5-v2-8-0-calendar-legend-item-box-margin: .25rem;--_ui5-v2-8-0-calendar-legend-item-box-inner-margin: .5rem;--_ui5-v2-8-0_color_picker_slider_progress_container_height: 1.625rem;--_ui5-v2-8-0_color_picker_slider_container_margin_top: -.5rem;--_ui5-v2-8-0_color_picker_slider_handle_height: 2rem;--_ui5-v2-8-0_color_picker_slider_handle_width: 1.0625rem;--_ui5-v2-8-0_color_picker_slider_handle_after_height: 1.75rem;--_ui5-v2-8-0_color_picker_slider_handle_focus_height: 2.125rem;--_ui5-v2-8-0_color_picker_colors_wrapper_height: 2.25rem;--_ui5-v2-8-0_color_picker_sliders_height: 3rem;--_ui5-v2-8-0_color_picker_main_color_margin_bottom: 1rem;--_ui5-v2-8-0_color_picker_slider_spacing: .9375rem;--_ui5-v2-8-0_color_channel_toggle_button_width: 1.625rem;--_ui5-v2-8-0_color_channel_toggle_button_margin-top: -.75rem;--_ui5-v2-8-0_color_channel_hex_input_width: 4.8125rem;--_ui5-v2-8-0-color_channel_margin_top: .25rem;--_ui5-v2-8-0_color-palette-item-height: 1.75rem;--_ui5-v2-8-0_color-palette-item-hover-height: 2.375rem;--_ui5-v2-8-0_color-palette-item-margin: calc((var(--_ui5-v2-8-0_color-palette-item-hover-height) - var(--_ui5-v2-8-0_color-palette-item-height)) / 2);--_ui5-v2-8-0_color-palette-row-width: 12rem;--_ui5-v2-8-0_color-palette-swatch-container-padding: .3125rem .6875rem;--_ui5-v2-8-0_datetime_picker_width: 40.0625rem;--_ui5-v2-8-0_datetime_picker_height: 25rem;--_ui5-v2-8-0_datetime_timeview_width: 17rem;--_ui5-v2-8-0_datetime_timeview_phonemode_width: 19.5rem;--_ui5-v2-8-0_datetime_timeview_padding: 1rem;--_ui5-v2-8-0_datetime_timeview_phonemode_clocks_width: 24.5rem;--_ui5-v2-8-0_datetime_dateview_phonemode_margin_bottom: 0;--_ui5-v2-8-0_dialog_content_min_height: 2.75rem;--_ui5-v2-8-0_dialog_footer_height: 2.75rem;--_ui5-v2-8-0_input_inner_padding: 0 .625rem;--_ui5-v2-8-0_input_inner_padding_with_icon: 0 .25rem 0 .625rem;--_ui5-v2-8-0_input_inner_space_to_tokenizer: .125rem;--_ui5-v2-8-0_input_inner_space_to_n_more_text: .1875rem;--_ui5-v2-8-0_list_no_data_height: 3rem;--_ui5-v2-8-0_list_item_cb_margin_right: 0;--_ui5-v2-8-0_list_item_title_size: var(--sapFontLargeSize);--_ui5-v2-8-0_list_no_data_font_size: var(--sapFontLargeSize);--_ui5-v2-8-0_list_item_img_size: 3rem;--_ui5-v2-8-0_list_item_img_top_margin: .5rem;--_ui5-v2-8-0_list_item_img_bottom_margin: .5rem;--_ui5-v2-8-0_list_item_img_hn_margin: .75rem;--_ui5-v2-8-0_list_item_dropdown_base_height: 2.5rem;--_ui5-v2-8-0_list_item_base_height: var(--sapElement_LineHeight);--_ui5-v2-8-0_list_item_base_padding: 0 1rem;--_ui5-v2-8-0_list_item_icon_size: 1.125rem;--_ui5-v2-8-0_list_item_icon_padding-inline-end: .5rem;--_ui5-v2-8-0_list_item_selection_btn_margin_top: calc(-1 * var(--_ui5-v2-8-0_checkbox_wrapper_padding));--_ui5-v2-8-0_list_item_content_vertical_offset: calc((var(--_ui5-v2-8-0_list_item_base_height) - var(--_ui5-v2-8-0_list_item_title_size)) / 2);--_ui5-v2-8-0_group_header_list_item_height: 2.75rem;--_ui5-v2-8-0_list_busy_row_height: 3rem;--_ui5-v2-8-0_month_picker_item_height: 3rem;--_ui5-v2-8-0_list_buttons_left_space: .125rem;--_ui5-v2-8-0_form_item_min_height: 2.813rem;--_ui5-v2-8-0_form_item_padding: .65rem;--_ui5-v2-8-0-form-group-heading-height: 2.75rem;--_ui5-v2-8-0_popup_default_header_height: 2.75rem;--_ui5-v2-8-0_year_picker_item_height: 3rem;--_ui5-v2-8-0_tokenizer_padding: .25rem;--_ui5-v2-8-0_token_height: 1.625rem;--_ui5-v2-8-0_token_icon_size: .75rem;--_ui5-v2-8-0_token_icon_padding: .25rem .5rem;--_ui5-v2-8-0_token_wrapper_right_padding: .3125rem;--_ui5-v2-8-0_token_wrapper_left_padding: 0;--_ui5-v2-8-0_tl_bubble_padding: 1rem;--_ui5-v2-8-0_tl_indicator_before_bottom: -1.625rem;--_ui5-v2-8-0_tl_padding: 1rem 1rem 1rem .5rem;--_ui5-v2-8-0_tl_li_margin_bottom: 1.625rem;--_ui5-v2-8-0_tc_item_text: 3rem;--_ui5-v2-8-0_tc_item_height: 4.75rem;--_ui5-v2-8-0_tc_item_text_only_height: 2.75rem;--_ui5-v2-8-0_tc_item_text_only_with_additional_text_height: 3.75rem;--_ui5-v2-8-0_tc_item_text_line_height: 1.325rem;--_ui5-v2-8-0_tc_item_icon_circle_size: 2.75rem;--_ui5-v2-8-0_tc_item_icon_size: 1.25rem;--_ui5-v2-8-0_tc_item_add_text_margin_top: .375rem;--_ui5-v2-8-0_textarea_margin: .25rem 0;--_ui5-v2-8-0_radio_button_height: 2.75rem;--_ui5-v2-8-0_radio_button_label_side_padding: .875rem;--_ui5-v2-8-0_radio_button_inner_size: 2.75rem;--_ui5-v2-8-0_radio_button_svg_size: 1.375rem;--_ui5-v2-8-0-responsive_popover_header_height: 2.75rem;--ui5-v2-8-0_side_navigation_item_height: 2.75rem;--_ui5-v2-8-0-tree-indent-step: 1.5rem;--_ui5-v2-8-0-tree-toggle-box-width: 2.75rem;--_ui5-v2-8-0-tree-toggle-box-height: 2.25rem;--_ui5-v2-8-0-tree-toggle-icon-size: 1.0625rem;--_ui5-v2-8-0_timeline_tli_indicator_before_bottom: -1.5rem;--_ui5-v2-8-0_timeline_tli_indicator_before_right: -1.625rem;--_ui5-v2-8-0_timeline_tli_indicator_before_without_icon_bottom: -1.875rem;--_ui5-v2-8-0_timeline_tli_indicator_before_without_icon_right: -1.9375rem;--_ui5-v2-8-0_timeline_tli_indicator_after_top: calc(-100% - 1rem) ;--_ui5-v2-8-0_timeline_tli_indicator_after_height: calc(100% + 1rem) ;--_ui5-v2-8-0_timeline_tli_indicator_before_height: 100%;--_ui5-v2-8-0_timeline_tli_horizontal_indicator_after_width: calc(100% + .25rem) ;--_ui5-v2-8-0_timeline_tli_horizontal_indicator_after_left: 1.9375rem;--_ui5-v2-8-0_timeline_tli_horizontal_without_icon_indicator_before_width: calc(100% + .5rem) ;--_ui5-v2-8-0_timeline_tli_horizontal_indicator_before_width: calc(100% + .5rem) ;--_ui5-v2-8-0_timeline_tli_icon_horizontal_indicator_after_width: calc(100% + .25rem) ;--_ui5-v2-8-0_timeline_tli_without_icon_horizontal_indicator_before_width: calc(100% + .375rem) ;--_ui5-v2-8-0_timeline_tli_horizontal_indicator_short_after_width: 100%;--_ui5-v2-8-0_timeline_tli_last_child_vertical_indicator_before_height: calc(100% - 1.5rem) ;--_ui5-v2-8-0_split_button_middle_separator_top: -.0625rem;--_ui5-v2-8-0_split_button_middle_separator_height: 2.25rem;--_ui5-v2-8-0-toolbar-separator-height: 2rem;--_ui5-v2-8-0-toolbar-height: 2.75rem;--_ui5-v2-8-0_toolbar_overflow_padding: .25rem .5rem;--_ui5-v2-8-0_table_cell_padding: .25rem .5rem;--_ui5-v2-8-0_dynamic_page_title_actions_separator_height: var(--_ui5-v2-8-0-toolbar-separator-height);--_ui5-v2-8-0-calendar-legend-item-root-focus-offset: -.0625rem;--_ui5-v2-8-0_color_picker_slider_handle_container_margin_top: .1875rem}[data-ui5-compact-size],.ui5-content-density-compact,.sapUiSizeCompact{--_ui5-v2-8-0_input_min_width: 2rem;--_ui5-v2-8-0_input_icon_width: 2rem;--_ui5-v2-8-0_input_error_warning_icon_padding: .1875rem .375rem .1875rem .4375rem;--_ui5-v2-8-0_input_error_warning_focused_icon_padding: .1875rem .375rem .1875rem .4375rem;--_ui5-v2-8-0_input_information_icon_padding: .1875rem .375rem .1875rem .4375rem;--_ui5-v2-8-0_input_information_focused_icon_padding: .1875rem .375rem .1875rem .4375rem;--_ui5-v2-8-0_input_custom_icon_padding: .25rem .5rem;--_ui5-v2-8-0_input_error_warning_custom_icon_padding: .1875rem .5rem;--_ui5-v2-8-0_input_error_warning_custom_focused_icon_padding: .1875rem .5rem;--_ui5-v2-8-0_input_information_custom_icon_padding: .1875rem .5rem;--_ui5-v2-8-0_input_information_custom_focused_icon_padding: .1875rem .5rem;--_ui5-v2-8-0_input_icon_padding: .25rem .4375rem;--_ui5-v2-8-0_panel_header_button_wrapper_padding: .1875rem .25rem;--_ui5-v2-8-0_radio_button_min_width: 2rem;--_ui5-v2-8-0_radio_button_focus_dist: .375rem;--_ui5-v2-8-0_radio_button_outer_ring_padding_with_label: 0 .5rem;--_ui5-v2-8-0_rating_indicator_item_height: .67em;--_ui5-v2-8-0_rating_indicator_item_width: .67em;--_ui5-v2-8-0_rating_indicator_readonly_item_height: .67em;--_ui5-v2-8-0_rating_indicator_readonly_item_width: .67em;--_ui5-v2-8-0_rating_indicator_component_spacing: .8125rem 0px;--_ui5-v2-8-0_switch_height: 2rem;--_ui5-v2-8-0_switch_width: 2.5rem;--_ui5-v2-8-0_switch_with_label_width: 100%;--_ui5-v2-8-0_switch_root_outline_top: 0;--_ui5-v2-8-0_switch_root_outline_bottom: 0;--_ui5-v2-8-0_switch_transform: translateX(100%) translateX(-1.5rem);--_ui5-v2-8-0_switch_transform_with_label: translateX(100%) translateX( -1.5rem);--_ui5-v2-8-0_switch_rtl_transform: translateX(1.5rem) translateX(-100%);--_ui5-v2-8-0_switch_rtl_transform_with_label: translateX(1.5rem) translateX(-100%);--_ui5-v2-8-0_switch_track_with_label_width: 100%;--_ui5-v2-8-0_switch_track_with_label_height: 1.375rem;--_ui5-v2-8-0_switch_track_width: 100%;--_ui5-v2-8-0_switch_track_height: 1.375rem;--_ui5-v2-8-0_switch_handle_width: 1.625rem;--_ui5-v2-8-0_switch_handle_height: 1.625rem;--_ui5-v2-8-0_switch_handle_with_label_width: 1.625rem;--_ui5-v2-8-0_switch_handle_with_label_height: 1.625rem;--_ui5-v2-8-0_switch_text_font_size: var(--sapFontSmallSize);--_ui5-v2-8-0_switch_text_width: none;--_ui5-v2-8-0_switch_text_active_left: calc(-100% + 1.625rem) ;--_ui5-v2-8-0_textarea_padding_right_and_left: .4375rem;--_ui5-v2-8-0_textarea_padding_right_and_left_error_warning: .375rem;--_ui5-v2-8-0_textarea_padding_right_and_left_information: .375rem;--_ui5-v2-8-0_textarea_padding_right_and_left_readonly: .4375rem;--_ui5-v2-8-0_textarea_padding_top: .125rem;--_ui5-v2-8-0_textarea_padding_bottom: .125rem;--_ui5-v2-8-0_textarea_padding_top_readonly: .125rem;--_ui5-v2-8-0_textarea_padding_bottom_readonly: .125rem;--_ui5-v2-8-0_textarea_padding_top_error_warning: .0625rem;--_ui5-v2-8-0_textarea_padding_bottom_error_warning: .0625rem;--_ui5-v2-8-0_textarea_padding_top_information: .0625rem;--_ui5-v2-8-0_textarea_padding_bottom_information: .0625rem;--_ui5-v2-8-0_textarea_exceeded_text_height: .375rem;--_ui5-v2-8-0_textarea_min_height: 1.625rem;--_ui5-v2-8-0_tokenizer_gap: .375em .25rem;--_ui5-v2-8-0_tokenizer-popover_offset: .1875rem;--_ui5-v2-8-0_slider_handle_icon_size: .875rem;--_ui5-v2-8-0_slider_padding: 1rem 1.0625rem;--_ui5-v2-8-0_bar_base_height: 2.5rem;--_ui5-v2-8-0_bar_subheader_height: 2.25rem;--_ui5-v2-8-0_button_base_height: var(--sapElement_Compact_Height);--_ui5-v2-8-0_button_base_padding: .4375rem;--_ui5-v2-8-0_button_base_min_width: 2rem;--_ui5-v2-8-0_button_icon_font_size: 1rem;--_ui5-v2-8-0-button-badge-diameter: .625rem;--_ui5-v2-8-0_calendar_height: 18rem;--_ui5-v2-8-0_calendar_width: 17.75rem;--_ui5-v2-8-0_calendar_left_right_padding: .25rem;--_ui5-v2-8-0_calendar_top_bottom_padding: .5rem;--_ui5-v2-8-0_calendar_header_height: 2rem;--_ui5-v2-8-0_calendar_header_arrow_button_width: 2rem;--_ui5-v2-8-0_calendar_header_padding: 0;--_ui5-v2-8-0-calendar-legend-root-padding: .5rem;--_ui5-v2-8-0-calendar-legend-root-width: 16.75rem;--_ui5-v2-8-0-calendar-legend-item-root-focus-margin: -.125rem;--_ui5-v2-8-0_checkbox_root_side_padding: var(--_ui5-v2-8-0_checkbox_wrapped_focus_padding);--_ui5-v2-8-0_checkbox_width_height: var(--_ui5-v2-8-0_checkbox_compact_width_height);--_ui5-v2-8-0_checkbox_wrapper_padding: var(--_ui5-v2-8-0_checkbox_compact_wrapper_padding);--_ui5-v2-8-0_checkbox_focus_position: var(--_ui5-v2-8-0_checkbox_compact_focus_position);--_ui5-v2-8-0_checkbox_wrapped_focus_inset_block: var(--_ui5-v2-8-0_checkbox_focus_position);--_ui5-v2-8-0_checkbox_inner_width_height: var(--_ui5-v2-8-0_checkbox_compact_inner_size);--_ui5-v2-8-0_checkbox_icon_size: .75rem;--_ui5-v2-8-0_checkbox_partially_icon_size: .5rem;--_ui5-v2-8-0_color_picker_slider_progress_container_height: 1.125rem;--_ui5-v2-8-0_color_picker_slider_container_margin_top: -.375rem;--_ui5-v2-8-0_color_picker_slider_handle_height: 1.5rem;--_ui5-v2-8-0_color_picker_slider_handle_width: .9375rem;--_ui5-v2-8-0_color_picker_slider_handle_after_height: 1.25rem;--_ui5-v2-8-0_color_picker_slider_handle_focus_height: 1.625rem;--_ui5-v2-8-0_color_picker_colors_wrapper_height: 1.5rem;--_ui5-v2-8-0_color_picker_sliders_height: 2.25rem;--_ui5-v2-8-0_color_picker_main_color_margin_bottom: .75rem;--_ui5-v2-8-0_color_picker_slider_spacing: .8125rem;--_ui5-v2-8-0_color_channel_toggle_button_width: 1.375rem;--_ui5-v2-8-0_color_channel_toggle_button_margin-top: -.9375rem;--_ui5-v2-8-0_color_channel_hex_input_width: 4.625rem;--_ui5-v2-8-0-color_channel_margin_top: 0rem;--_ui5-v2-8-0_color-palette-item-height: 1.25rem;--_ui5-v2-8-0_color-palette-item-focus-height: 1rem;--_ui5-v2-8-0_color-palette-item-container-sides-padding: .1875rem;--_ui5-v2-8-0_color-palette-item-container-rows-padding: .8125rem;--_ui5-v2-8-0_color-palette-item-hover-height: 1.625rem;--_ui5-v2-8-0_color-palette-item-margin: calc((var(--_ui5-v2-8-0_color-palette-item-hover-height) - var(--_ui5-v2-8-0_color-palette-item-height)) / 2);--_ui5-v2-8-0_color-palette-row-width: 8.125rem;--_ui5-v2-8-0_color-palette-swatch-container-padding: .1875rem .8125rem;--_ui5-v2-8-0_color-palette-item-hover-margin: 0;--_ui5-v2-8-0_color-palette-row-height: 7.5rem;--_ui5-v2-8-0_color-palette-button-height: 2rem;--_ui5-v2-8-0_custom_list_item_rb_min_width: 2rem;--_ui5-v2-8-0_daypicker_weeknumbers_container_padding_top: 2rem;--_ui5-v2-8-0_day_picker_item_width: 2rem;--_ui5-v2-8-0_day_picker_item_height: 2rem;--_ui5-v2-8-0_day_picker_empty_height: 2.125rem;--_ui5-v2-8-0_day_picker_item_justify_content: flex-end;--_ui5-v2-8-0_dp_two_calendar_item_now_text_padding_top: .5rem;--_ui5-v2-8-0_dp_two_calendar_item_primary_text_height: 1rem;--_ui5-v2-8-0_dp_two_calendar_item_secondary_text_height: .75rem;--_ui5-v2-8-0_dp_two_calendar_item_text_padding_top: .5rem;--_ui5-v2-8-0_daypicker_selected_item_now_special_day_top: 1.5625rem;--_ui5-v2-8-0_daypicker_specialday_focused_top: 1.5rem;--_ui5-v2-8-0_daypicker_special_day_top: 1.625rem;--_ui5-v2-8-0_daypicker_item_now_specialday_top: 1.5rem;--_ui5-v2-8-0_daypicker_twocalendar_item_special_day_top: 1.25rem;--_ui5-v2-8-0_daypicker_twocalendar_item_special_day_right: 1.25rem;--_ui5-v2-8-0_daypicker_two_calendar_item_margin_bottom: 0;--_ui5-v2-8-0_dp_two_calendar_item_secondary_text_padding_block: 0 .625rem;--_ui5-v2-8-0_daypicker_item_now_selected_two_calendar_focus_special_day_top: 1.125rem;--_ui5-v2-8-0_daypicker_item_now_selected_two_calendar_focus_special_day_right: 1.125rem;--_ui5-v2-8-0_dp_two_calendar_item_secondary_text_padding: 0 .375rem;--_ui5-v2-8-0_daypicker_item_now_selected_two_calendar_focus_secondary_text_padding_block: 0 1rem;--_ui5-v2-8-0_daypicker_two_calendar_item_selected_focus_margin_bottom: -.25rem;--_ui5-v2-8-0_daypicker_two_calendar_item_selected_focus_padding_right: .4375rem;--_ui5-v2-8-0_datetime_picker_height: 20.5rem;--_ui5-v2-8-0_datetime_picker_width: 35.5rem;--_ui5-v2-8-0_datetime_timeview_width: 17rem;--_ui5-v2-8-0_datetime_timeview_phonemode_width: 18.5rem;--_ui5-v2-8-0_datetime_timeview_padding: .5rem;--_ui5-v2-8-0_datetime_timeview_phonemode_clocks_width: 21.125rem;--_ui5-v2-8-0_datetime_dateview_phonemode_margin_bottom: 3.125rem;--_ui5-v2-8-0_dialog_content_min_height: 2.5rem;--_ui5-v2-8-0_dialog_footer_height: 2.5rem;--_ui5-v2-8-0_form_item_min_height: 2rem;--_ui5-v2-8-0_form_item_padding: .25rem;--_ui5-v2-8-0-form-group-heading-height: 2rem;--_ui5-v2-8-0_input_height: var(--sapElement_Compact_Height);--_ui5-v2-8-0_input_inner_padding: 0 .5rem;--_ui5-v2-8-0_input_inner_padding_with_icon: 0 .2rem 0 .5rem;--_ui5-v2-8-0_input_inner_space_to_tokenizer: .125rem;--_ui5-v2-8-0_input_inner_space_to_n_more_text: .125rem;--_ui5-v2-8-0_input_icon_min_width: var(--_ui5-v2-8-0_input_compact_min_width);--_ui5-v2-8-0_menu_item_padding: 0 .75rem 0 .5rem;--_ui5-v2-8-0_menu_item_submenu_icon_right: .75rem;--_ui5-v2-8-0_popup_default_header_height: 2.5rem;--_ui5-v2-8-0_textarea_margin: .1875rem 0;--_ui5-v2-8-0_list_no_data_height: 2rem;--_ui5-v2-8-0_list_item_cb_margin_right: .5rem;--_ui5-v2-8-0_list_item_title_size: var(--sapFontSize);--_ui5-v2-8-0_list_item_img_top_margin: .55rem;--_ui5-v2-8-0_list_no_data_font_size: var(--sapFontSize);--_ui5-v2-8-0_list_item_dropdown_base_height: 2rem;--_ui5-v2-8-0_list_item_base_height: 2rem;--_ui5-v2-8-0_list_item_base_padding: 0 1rem;--_ui5-v2-8-0_list_item_icon_size: 1rem;--_ui5-v2-8-0_list_item_selection_btn_margin_top: calc(-1 * var(--_ui5-v2-8-0_checkbox_wrapper_padding));--_ui5-v2-8-0_list_item_content_vertical_offset: calc((var(--_ui5-v2-8-0_list_item_base_height) - var(--_ui5-v2-8-0_list_item_title_size)) / 2);--_ui5-v2-8-0_list_busy_row_height: 2rem;--_ui5-v2-8-0_list_buttons_left_space: .125rem;--_ui5-v2-8-0_month_picker_item_height: 2rem;--_ui5-v2-8-0_year_picker_item_height: 2rem;--_ui5-v2-8-0_panel_header_height: 2rem;--_ui5-v2-8-0_panel_button_root_height: 2rem;--_ui5-v2-8-0_panel_button_root_width: 2.5rem;--_ui5-v2-8-0_token_height: 1.25rem;--_ui5-v2-8-0_token_right_margin: .25rem;--_ui5-v2-8-0_token_left_padding: .25rem;--_ui5-v2-8-0_token_readonly_padding: .125rem .25rem;--_ui5-v2-8-0_token_focus_offset: -.125rem;--_ui5-v2-8-0_token_icon_size: .75rem;--_ui5-v2-8-0_token_icon_padding: .375rem .375rem;--_ui5-v2-8-0_token_wrapper_right_padding: .25rem;--_ui5-v2-8-0_token_wrapper_left_padding: 0;--_ui5-v2-8-0_token_outline_offset: -.125rem;--_ui5-v2-8-0_tl_bubble_padding: .5rem;--_ui5-v2-8-0_tl_indicator_before_bottom: -.5rem;--_ui5-v2-8-0_tl_padding: .5rem;--_ui5-v2-8-0_tl_li_margin_bottom: .5rem;--_ui5-v2-8-0_tc_item_text: 2rem;--_ui5-v2-8-0_tc_item_text_line_height: 1.325rem;--_ui5-v2-8-0_tc_item_add_text_margin_top: .3125rem;--_ui5-v2-8-0_tc_item_height: 4rem;--_ui5-v2-8-0_tc_header_height: var(--_ui5-v2-8-0_tc_item_height);--_ui5-v2-8-0_tc_item_icon_circle_size: 2rem;--_ui5-v2-8-0_tc_item_icon_size: 1rem;--_ui5-v2-8-0_radio_button_height: 2rem;--_ui5-v2-8-0_radio_button_label_side_padding: .5rem;--_ui5-v2-8-0_radio_button_inner_size: 2rem;--_ui5-v2-8-0_radio_button_svg_size: 1rem;--_ui5-v2-8-0-responsive_popover_header_height: 2.5rem;--_ui5-v2-8-0_slider_handle_top: -.5rem;--_ui5-v2-8-0_slider_tooltip_height: 1rem;--_ui5-v2-8-0_slider_tooltip_padding: .25rem;--_ui5-v2-8-0_slider_progress_outline_offset: -.625rem;--_ui5-v2-8-0_slider_outer_height: 1.3125rem;--_ui5-v2-8-0_split_button_middle_separator_height: 1.625rem;--_ui5-v2-8-0_step_input_min_width: 6rem;--_ui5-v2-8-0_step_input_padding: 2rem;--_ui5-v2-8-0-tree-indent-step: .5rem;--_ui5-v2-8-0-tree-toggle-box-width: 2rem;--_ui5-v2-8-0-tree-toggle-box-height: 1.5rem;--_ui5-v2-8-0-tree-toggle-icon-size: .8125rem;--_ui5-v2-8-0_timeline_tli_indicator_before_bottom: -.75rem;--_ui5-v2-8-0_timeline_tli_indicator_before_right: -.5rem;--_ui5-v2-8-0_timeline_tli_indicator_before_without_icon_bottom: -1rem;--_ui5-v2-8-0_timeline_tli_indicator_before_without_icon_right: -.8125rem;--_ui5-v2-8-0_timeline_tli_indicator_before_height: calc(100% - 1.25rem) ;--_ui5-v2-8-0_timeline_tli_horizontal_without_icon_indicator_before_width: var(--_ui5-v2-8-0_timeline_tli_indicator_after_height);--_ui5-v2-8-0_timeline_tli_horizontal_indicator_before_width: var(--_ui5-v2-8-0_timeline_tli_indicator_after_height);--_ui5-v2-8-0_timeline_tli_icon_horizontal_indicator_after_width: var(--_ui5-v2-8-0_timeline_tli_indicator_after_height);--_ui5-v2-8-0_timeline_tli_horizontal_indicator_after_left: 1.8625rem;--_ui5-v2-8-0_timeline_tli_horizontal_indicator_short_after_width: calc(100% - 1rem) ;--_ui5-v2-8-0_timeline_tli_without_icon_horizontal_indicator_before_width: calc(100% - .625rem) ;--_ui5-v2-8-0_timeline_tli_last_child_vertical_indicator_before_height: calc(100% - 2.5rem) ;--_ui5-v2-8-0_timeline_tlgi_compact_icon_before_height: calc(100% + 1.5rem) ;--_ui5-v2-8-0_timeline_tlgi_horizontal_line_placeholder_before_width: var(--_ui5-v2-8-0_timeline_tlgi_compact_icon_before_height);--_ui5-v2-8-0_timeline_tlgi_horizontal_compact_root_margin_left: .5rem;--_ui5-v2-8-0_timeline_tlgi_compact_root_gap: .5rem;--_ui5-v2-8-0_timeline_tlgi_root_horizontal_height: 19.375rem;--_ui5-v2-8-0_vsd_header_container: 2.5rem;--_ui5-v2-8-0_vsd_sub_header_container_height: 2rem;--_ui5-v2-8-0_vsd_header_height: 4rem;--_ui5-v2-8-0_vsd_expand_content_height: 25.4375rem;--_ui5-v2-8-0-toolbar-separator-height: 1.5rem;--_ui5-v2-8-0-toolbar-height: 2rem;--_ui5-v2-8-0_toolbar_overflow_padding: .1875rem .375rem;--_ui5-v2-8-0_dynamic_page_title_actions_separator_height: var(--_ui5-v2-8-0-toolbar-separator-height);--_ui5-v2-8-0_color_picker_slider_handle_container_margin_top: none;--_ui5-v2-8-0_timeline_tli_indicator_after_height: 50%;--_ui5-v2-8-0_timeline_tli_indicator_after_top: -50%;--_ui5-v2-8-0_timeline_tli_horizontal_indicator_after_width: calc(100% - 1rem) ;--_ui5-v2-8-0_slider_handle_width: 1.25rem;--_ui5-v2-8-0_slider_handle_height: 1.25rem}:root,[dir=ltr]{--_ui5-v2-8-0_rotation_90deg: rotate(90deg);--_ui5-v2-8-0_rotation_minus_90deg: rotate(-90deg);--_ui5-v2-8-0_icon_transform_scale: none;--_ui5-v2-8-0_panel_toggle_btn_rotation: var(--_ui5-v2-8-0_rotation_90deg);--_ui5-v2-8-0_li_notification_group_toggle_btn_rotation: var(--_ui5-v2-8-0_rotation_90deg);--_ui5-v2-8-0_timeline_scroll_container_offset: .5rem;--_ui5-v2-8-0_popover_upward_arrow_margin: .1875rem 0 0 .1875rem;--_ui5-v2-8-0_popover_right_arrow_margin: .1875rem 0 0 -.375rem;--_ui5-v2-8-0_popover_downward_arrow_margin: -.375rem 0 0 .125rem;--_ui5-v2-8-0_popover_left_arrow_margin: .125rem 0 0 .25rem;--_ui5-v2-8-0_dialog_resize_cursor: se-resize;--_ui5-v2-8-0_progress_indicator_bar_border_radius: .5rem 0 0 .5rem;--_ui5-v2-8-0_progress_indicator_remaining_bar_border_radius: 0 .5rem .5rem 0;--_ui5-v2-8-0_menu_submenu_margin_offset: -.25rem 0;--_ui5-v2-8-0_menu_submenu_placement_type_left_margin_offset: .25rem 0;--_ui5-v2-8-0-menu_item_icon_float: right;--_ui5-v2-8-0-shellbar-notification-btn-count-offset: -.125rem}[dir=rtl],[dir=rtl] :host{--_ui5-v2-8-0_icon_transform_scale: scale(-1, 1);--_ui5-v2-8-0_panel_toggle_btn_rotation: var(--_ui5-v2-8-0_rotation_minus_90deg);--_ui5-v2-8-0_li_notification_group_toggle_btn_rotation: var(--_ui5-v2-8-0_rotation_minus_90deg);--_ui5-v2-8-0_timeline_scroll_container_offset: -.5rem;--_ui5-v2-8-0_popover_upward_arrow_margin: .1875rem .125rem 0 0;--_ui5-v2-8-0_popover_right_arrow_margin: .1875rem .25rem 0 0;--_ui5-v2-8-0_popover_downward_arrow_margin: -.4375rem .125rem 0 0;--_ui5-v2-8-0_popover_left_arrow_margin: .1875rem -.375rem 0 0;--_ui5-v2-8-0_dialog_resize_cursor:sw-resize;--_ui5-v2-8-0_progress_indicator_bar_border_radius: 0 .5rem .5rem 0;--_ui5-v2-8-0_progress_indicator_remaining_bar_border_radius: .5rem 0 0 .5rem;--_ui5-v2-8-0_menu_submenu_margin_offset: 0 -.25rem;--_ui5-v2-8-0_menu_submenu_placement_type_left_margin_offset: 0 .25rem;--_ui5-v2-8-0-menu_item_icon_float: left;--_ui5-v2-8-0_segmented_btn_item_border_left: .0625rem;--_ui5-v2-8-0_segmented_btn_item_border_right: 0px;--_ui5-v2-8-0-shellbar-notification-btn-count-offset: auto}\n";
|
|
4
|
+
|
|
5
|
+
exports.default = parametersBundle_css;
|
|
6
|
+
|
|
7
|
+
}));
|