@sapui5/sap.ushell 1.139.0 → 1.141.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/main/js/sap/ushell/.library +1 -1
- package/src/main/js/sap/ushell/AppInfoParameters.js +2 -2
- package/src/main/js/sap/ushell/ApplicationType/UrlPostProcessing.js +0 -1
- package/src/main/js/sap/ushell/ApplicationType/guiResolution.js +6 -6
- package/src/main/js/sap/ushell/ApplicationType/systemAlias.js +22 -25
- package/src/main/js/sap/ushell/ApplicationType/urlResolution.js +12 -6
- package/src/main/js/sap/ushell/ApplicationType/urlTemplateResolution.js +277 -302
- package/src/main/js/sap/ushell/ApplicationType/wcfResolution.js +0 -1
- package/src/main/js/sap/ushell/ApplicationType/wdaResolution.js +11 -10
- package/src/main/js/sap/ushell/ApplicationType.js +8 -8
- package/src/main/js/sap/ushell/Container.js +54 -56
- package/src/main/js/sap/ushell/EventHub.js +5 -7
- package/src/main/js/sap/ushell/Fiori20Adapter.js +17 -11
- package/src/main/js/sap/ushell/Fiori20AdapterTest.js +1 -1
- package/src/main/js/sap/ushell/NWBCInterface.js +1 -1
- package/src/main/js/sap/ushell/SessionHandler.js +1 -1
- package/src/main/js/sap/ushell/TechnicalParameters.js +5 -5
- package/src/main/js/sap/ushell/URLTemplateProcessor/DefinitionParameterSetBuilder.js +1 -1
- package/src/main/js/sap/ushell/URLTemplateProcessor/DependencyGraph.js +1 -1
- package/src/main/js/sap/ushell/URLTemplateProcessor/Functions.js +11 -4
- package/src/main/js/sap/ushell/URLTemplateProcessor/Resolvers.js +1 -1
- package/src/main/js/sap/ushell/URLTemplateProcessor/TemplateParameterParser.js +1 -1
- package/src/main/js/sap/ushell/URLTemplateProcessor/utils.js +13 -2
- package/src/main/js/sap/ushell/URLTemplateProcessor.js +13 -3
- package/src/main/js/sap/ushell/Ui5NativeServiceFactory.js +4 -2
- package/src/main/js/sap/ushell/Ui5ServiceFactory.js +29 -27
- package/src/main/js/sap/ushell/User.js +13 -14
- package/src/main/js/sap/ushell/UserActivityLog.js +3 -3
- package/src/main/js/sap/ushell/adapters/AppVariantPersonalizationAdapter.js +54 -43
- package/src/main/js/sap/ushell/adapters/cdm/ClientSideTargetResolutionAdapter.js +13 -10
- package/src/main/js/sap/ushell/adapters/cdm/CommonDataModelAdapter.js +15 -14
- package/src/main/js/sap/ushell/adapters/cdm/ConfigurationDefaultsAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/ContainerAdapter.js +3 -3
- package/src/main/js/sap/ushell/adapters/cdm/LaunchPageAdapter.js +155 -129
- package/src/main/js/sap/ushell/adapters/cdm/PagesCommonDataModelAdapter.js +25 -23
- package/src/main/js/sap/ushell/adapters/cdm/PersonalizationAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/PersonalizationV2Adapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/Settings/UserLanguageAndRegion/UserLanguageAndRegion.controller.js +4 -4
- package/src/main/js/sap/ushell/adapters/cdm/Ui5ComponentLoaderAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/modifyHome.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readCatalogs.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/readHome.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_LaunchPage/uri.transform.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/_Personalization/internals.js +8 -13
- package/src/main/js/sap/ushell/adapters/cdm/util/AppForInbound.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/util/cdmSiteUtils.js +6 -3
- package/src/main/js/sap/ushell/adapters/cdm/v3/AdapterBase.js +42 -30
- package/src/main/js/sap/ushell/adapters/cdm/v3/FlpLaunchPageAdapter.js +112 -97
- package/src/main/js/sap/ushell/adapters/cdm/v3/LaunchPageAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/StaticGroupsAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readApplications.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readCatalogs.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readHome.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readPages.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readUtils.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/_LaunchPage/readVisualizations.js +1 -1
- package/src/main/js/sap/ushell/adapters/cdm/v3/utilsCdm.js +5 -6
- package/src/main/js/sap/ushell/adapters/cep/MenuAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cep/NavTargetResolutionInternalAdapter.js +10 -8
- package/src/main/js/sap/ushell/adapters/cep/SearchCEPAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/cflp/UserDefaultParameterPersistenceAdapter.js +13 -14
- package/src/main/js/sap/ushell/adapters/local/AdapterContainer.js +162 -162
- package/src/main/js/sap/ushell/adapters/local/AppStateAdapter.js +14 -14
- package/src/main/js/sap/ushell/adapters/local/ClientSideTargetResolutionAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/ContainerAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/FlpLaunchPageAdapter.js +22 -22
- package/src/main/js/sap/ushell/adapters/local/LaunchPageAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/MenuAdapter.js +4 -4
- package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/NavTargetResolutionInternalAdapter.js +4 -4
- package/src/main/js/sap/ushell/adapters/local/PageBuildingAdapter.js +1 -1
- 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 +1 -1
- package/src/main/js/sap/ushell/adapters/local/SearchAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/SearchCEPAdapter.js +2 -2
- package/src/main/js/sap/ushell/adapters/local/SupportTicketAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/Ui5ComponentLoaderAdapter.js +1 -1
- package/src/main/js/sap/ushell/adapters/local/UserDefaultParameterPersistenceAdapter.js +14 -14
- package/src/main/js/sap/ushell/adapters/local/UserInfoAdapter.js +8 -13
- package/src/main/js/sap/ushell/api/common/ComponentInstantiation.js +5 -5
- package/src/main/js/sap/ushell/api/performance/Extension.js +147 -0
- package/src/main/js/sap/ushell/api/performance/NavigationSource.js +86 -0
- package/src/main/js/sap/ushell/appIntegration/AppLifeCycle.js +66 -156
- package/src/main/js/sap/ushell/appIntegration/ApplicationContainer.js +10 -44
- package/src/main/js/sap/ushell/appIntegration/ApplicationContainerCache.js +9 -6
- package/src/main/js/sap/ushell/appIntegration/IframeApplicationContainer.js +41 -15
- package/src/main/js/sap/ushell/appIntegration/IframeApplicationContainerRenderer.js +0 -3
- package/src/main/js/sap/ushell/appIntegration/KeepAliveApps.js +82 -30
- package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/AppInfoHandler.js +228 -0
- package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/AppStateHandler.js +188 -0
- package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/BookmarkHandler.js +725 -0
- package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/EnvironmentHandler.js +347 -0
- package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/ExtensionHandler.js +573 -0
- package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/LifecycleHandler.js +226 -0
- package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/MessageBrokerHandler.js +165 -0
- package/src/main/js/sap/ushell/appIntegration/{PostMessageManager → PostMessageHandler}/NWBCHandler.js +12 -0
- package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/NavigationHandler.js +648 -0
- package/src/main/js/sap/ushell/appIntegration/PostMessageHandler/SessionHandler.js +157 -0
- package/src/main/js/sap/ushell/appIntegration/PostMessageHandler.js +146 -0
- package/src/main/js/sap/ushell/appIntegration/PostMessageManager.js +26 -13
- package/src/main/js/sap/ushell/appIntegration/PostMessagePluginInterface.js +249 -95
- package/src/main/js/sap/ushell/appIntegration/UI5ApplicationContainer.js +0 -1
- package/src/main/js/sap/ushell/appIntegration/contracts/EmbeddedUI5Handler.js +2 -23
- package/src/main/js/sap/ushell/appIntegration/contracts/StatefulContainerV1Handler.js +0 -4
- package/src/main/js/sap/ushell/appIntegration/contracts/StatefulContainerV2Handler.js +1 -3
- package/src/main/js/sap/ushell/appRuntime/ui5/AppCommunicationMgr.js +103 -81
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntime.js +77 -83
- package/src/main/js/sap/ushell/appRuntime/ui5/SessionHandlerAgent.js +33 -29
- package/src/main/js/sap/ushell/appRuntime/ui5/libsPreload.js +2 -2
- 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 +11 -3
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/BaseRTAPluginStatus.js +9 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/CheckConditions.js +50 -31
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Renderer.js +8 -0
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/baseRta/Trigger.js +6 -0
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/Component.js +3 -3
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaAgent/i18n/i18n_vi.properties +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/plugins/rtaShell/Component.js +12 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/AccessKeysAgent.js +5 -3
- package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/Renderer.js +15 -15
- package/src/main/js/sap/ushell/appRuntime/ui5/renderers/fiori2/RendererExtensions.js +5 -5
- package/src/main/js/sap/ushell/appRuntime/ui5/services/AppConfiguration.js +4 -5
- package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycle.js +6 -6
- package/src/main/js/sap/ushell/appRuntime/ui5/services/AppLifeCycleAgent.js +199 -225
- package/src/main/js/sap/ushell/appRuntime/ui5/services/AppState.js +11 -11
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Bookmark.js +18 -18
- package/src/main/js/sap/ushell/appRuntime/ui5/services/BookmarkV2.js +15 -15
- package/src/main/js/sap/ushell/appRuntime/ui5/services/CommonDataModel.js +4 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Container.js +9 -7
- package/src/main/js/sap/ushell/appRuntime/ui5/services/CrossApplicationNavigation.js +93 -36
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Extension/Item.js +10 -10
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Extension.js +16 -18
- package/src/main/js/sap/ushell/appRuntime/ui5/services/FlpLaunchPage.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/services/FrameBoundExtension.js +1 -1
- package/src/main/js/sap/ushell/appRuntime/ui5/services/LaunchPage.js +4 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/services/MessageBroker/Client.js +114 -0
- package/src/main/js/sap/ushell/appRuntime/ui5/services/MessageBroker.js +157 -58
- package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolution.js +9 -9
- package/src/main/js/sap/ushell/appRuntime/ui5/services/NavTargetResolutionInternal.js +9 -9
- package/src/main/js/sap/ushell/appRuntime/ui5/services/Navigation.js +31 -35
- package/src/main/js/sap/ushell/appRuntime/ui5/services/ReferenceResolver.js +4 -4
- package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigation.js +7 -7
- package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellNavigationInternal.js +6 -6
- package/src/main/js/sap/ushell/appRuntime/ui5/services/ShellUIService.js +20 -22
- package/src/main/js/sap/ushell/appRuntime/ui5/services/UserDefaultParameters.js +7 -3
- package/src/main/js/sap/ushell/appRuntime/ui5/services/UserInfo.js +8 -8
- package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/ContainerAdapter.js +4 -3
- package/src/main/js/sap/ushell/appRuntime/ui5/services/adapters/Ui5ComponentLoaderAdapter.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/FLPLoader.js +1 -3
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/logger.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent/state.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/SchedulingAgent.js +21 -22
- package/src/main/js/sap/ushell/bootstrap/common/common.configure.ui5datetimeformat.js +5 -5
- package/src/main/js/sap/ushell/bootstrap/common/common.create.configcontract.core.js +9 -9
- package/src/main/js/sap/ushell/bootstrap/common/common.debug.mode.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.load.core-min.js +14 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.load.script.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/common/common.read.metatags.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/common/common.util.js +2 -2
- package/src/main/js/sap/ushell/bootstrap/sandbox2/sandbox.js +1 -1
- package/src/main/js/sap/ushell/bootstrap/sandbox2.js +1 -1
- package/src/main/js/sap/ushell/components/CatalogsManager.js +3 -3
- package/src/main/js/sap/ushell/components/HomepageManager.js +120 -117
- package/src/main/js/sap/ushell/components/SharedComponentUtils.js +24 -13
- package/src/main/js/sap/ushell/components/_HomepageManager/PersistentPageOperationAdapter.js +18 -18
- package/src/main/js/sap/ushell/components/_HomepageManager/TransientPageOperationAdapter.js +4 -4
- package/src/main/js/sap/ushell/components/appfinder/AppFinder.controller.js +6 -3
- package/src/main/js/sap/ushell/components/appfinder/Catalog.controller.js +10 -4
- package/src/main/js/sap/ushell/components/appfinder/CatalogView.js +3 -3
- package/src/main/js/sap/ushell/components/appfinder/EasyAccess.controller.js +119 -108
- package/src/main/js/sap/ushell/components/appfinder/HierarchyAppsView.js +2 -2
- package/src/main/js/sap/ushell/components/appfinder/HierarchyFolders.controller.js +17 -15
- package/src/main/js/sap/ushell/components/appfinder/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/cards/Configuration.controller.js +35 -33
- package/src/main/js/sap/ushell/components/cards/ManifestPropertyHelper.js +6 -4
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/Edition.js +2 -2
- package/src/main/js/sap/ushell/components/cepsearchresult/app/util/controls/categories/People.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/CatalogService.js +6 -6
- package/src/main/js/sap/ushell/components/contentFinder/Component.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/controller/AppSearch.controller.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/controller/ContentFinderDialog.controller.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/dialog/Component.js +1 -1
- 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/resources/resources_ar.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_bg.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ca.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cnr.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cs.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_cy.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_da.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_de.properties +2 -2
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_el.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_en_GB.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_es.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_es_MX.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_et.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fi.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fr.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_fr_CA.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hi.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hr.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_hu.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_id.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_it.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_iw.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ja.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_kk.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ko.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_lt.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_lv.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_mk.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ms.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_nl.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_no.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pl.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pt.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_pt_PT.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ro.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_ru.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sh.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sk.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sl.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sr.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_sv.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_th.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_tr.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_uk.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_vi.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_zh_CN.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinder/resources/resources_zh_TW.properties +1 -1
- package/src/main/js/sap/ushell/components/contentFinderStandalone/Component.js +1 -1
- package/src/main/js/sap/ushell/components/contentFinderStandalone/controller/ContentFinderStandalone.controller.js +29 -13
- package/src/main/js/sap/ushell/components/contentFinderStandalone/manifest.json +6 -1
- package/src/main/js/sap/ushell/components/factsheet/Component.js +1 -1
- package/src/main/js/sap/ushell/components/factsheet/factory/ThingInspector.js +2 -2
- package/src/main/js/sap/ushell/components/homepage/ActionMode.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/DashboardContent.view.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/DashboardGroupsBox.js +1 -1
- package/src/main/js/sap/ushell/components/homepage/DashboardUIActions.js +2 -2
- package/src/main/js/sap/ushell/components/homepage/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/pages/ActionMode.js +1 -1
- package/src/main/js/sap/ushell/components/pages/Component.js +1 -1
- package/src/main/js/sap/ushell/components/pages/MyHomeImport.js +2 -2
- package/src/main/js/sap/ushell/components/pages/controller/ImportDialog.controller.js +8 -8
- package/src/main/js/sap/ushell/components/pages/controller/PageRuntime.controller.js +55 -46
- package/src/main/js/sap/ushell/components/pages/controller/PagesAndSpaceId.js +24 -15
- package/src/main/js/sap/ushell/components/pages/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/runtimeSwitcher/controller/RuntimeSwitcher.controller.js +1 -1
- package/src/main/js/sap/ushell/components/runtimeSwitcher/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/FloatingContainer/Component.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/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenu.controller.js +1 -1
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/controller/NavigationBarMenuButton.controller.js +1 -1
- package/src/main/js/sap/ushell/components/shell/NavigationBarMenu/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/Notifications/Component.js +3 -3
- package/src/main/js/sap/ushell/components/shell/Notifications/Notifications.controller.js +9 -9
- package/src/main/js/sap/ushell/components/shell/PostLoadingHeaderEnhancement/Component.js +25 -16
- package/src/main/js/sap/ushell/components/shell/ProductSwitch/Component.js +3 -3
- package/src/main/js/sap/ushell/components/shell/Search/Component.js +3 -1
- package/src/main/js/sap/ushell/components/shell/Search/ESearch.js +9 -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 +3 -3
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/FrequentActivityProvider.js +32 -30
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/RecentSearchProvider.js +19 -17
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchProvider.js +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEP/SearchProviders/SearchServiceProvider.js +30 -28
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/Component.js +240 -118
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/SearchProviders/FrequentActivityProvider.js +4 -5
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/SearchProviders/RecentSearchProvider.js +20 -18
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/SearchProviders/SearchProvider.js +4 -4
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/SearchProviders/SearchServiceProvider.js +31 -29
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources.properties +9 -1
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ar.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_bg.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ca.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_cnr.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_cs.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_cy.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_da.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_de.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_el.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_en.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_en_GB.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_en_US_saprigi.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_es.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_es_MX.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_et.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_fi.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_fr.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_fr_CA.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_hi.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_hr.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_hu.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_id.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_it.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_iw.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ja.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_kk.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ko.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_lt.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_lv.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_mk.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ms.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_nl.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_no.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_pl.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_pt.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_pt_PT.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ro.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_ru.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_sh.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_sk.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_sl.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_sr.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_sv.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_th.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_tr.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_uk.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_vi.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_zh_CN.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/SearchCEPNew/resources/resources_zh_TW.properties +12 -0
- package/src/main/js/sap/ushell/components/shell/Settings/Component.js +11 -7
- package/src/main/js/sap/ushell/components/shell/Settings/UserSettings.controller.js +21 -20
- package/src/main/js/sap/ushell/components/shell/Settings/appearance/Appearance.controller.js +90 -67
- package/src/main/js/sap/ushell/components/shell/Settings/homepage/HomepageEntry.js +6 -6
- package/src/main/js/sap/ushell/components/shell/Settings/notifications/NotificationsSetting.controller.js +3 -3
- package/src/main/js/sap/ushell/components/shell/Settings/spaces/SpacesSetting.controller.js +8 -7
- package/src/main/js/sap/ushell/components/shell/Settings/userAccount/UserAccountSelector.controller.js +4 -3
- package/src/main/js/sap/ushell/components/shell/Settings/userActivities/UserActivitiesSetting.controller.js +3 -3
- package/src/main/js/sap/ushell/components/shell/Settings/userDefaults/controller/UserDefaultsSetting.controller.js +2 -2
- package/src/main/js/sap/ushell/components/shell/Settings/userLanguageRegion/LanguageRegionSelector.controller.js +5 -5
- package/src/main/js/sap/ushell/components/shell/ShellBar/Component.js +47 -2
- package/src/main/js/sap/ushell/components/shell/ShellBar/controller/ShellBar.controller.js +20 -0
- package/src/main/js/sap/ushell/components/shell/ShellBar/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/ShellBar/view/ShellBar.view.xml +9 -6
- package/src/main/js/sap/ushell/components/shell/SideNavigation/controller/SideNavigation.controller.js +48 -59
- package/src/main/js/sap/ushell/components/shell/SideNavigation/fragment/Popover.fragment.xml +2 -2
- package/src/main/js/sap/ushell/components/shell/SideNavigation/interface/ListProviderAPI.js +144 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/interface/NavContainer.js +82 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/AllSpaces.js +4 -4
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/Favorites.js +36 -9
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/GenericFixedNavigationListProvider.js +49 -28
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/GenericNavigationListProvider.js +104 -49
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/MyHome.js +2 -2
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/NavigationHelper.js +17 -2
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/RecentActivity.js +2 -2
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/Spaces.js +18 -7
- package/src/main/js/sap/ushell/components/shell/SideNavigation/modules/SpacesNavigationListProvider.js +11 -5
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources.properties +2 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ar.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_bg.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ca.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_cnr.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_cs.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_cy.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_da.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_de.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_el.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_en.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_en_GB.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_en_US_saprigi.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_es.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_es_MX.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_et.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_fi.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_fr.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_fr_CA.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_hi.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_hr.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_hu.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_id.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_it.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_iw.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ja.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_kk.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ko.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_lt.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_lv.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_mk.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ms.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_nl.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_no.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_pl.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_pt.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_pt_PT.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ro.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_ru.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sh.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sk.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sl.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sr.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_sv.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_th.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_tr.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_uk.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_vi.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_zh_CN.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/SideNavigation/resources/resources_zh_TW.properties +1 -0
- package/src/main/js/sap/ushell/components/shell/UserActionsMenu/Component.js +1 -1
- package/src/main/js/sap/ushell/components/shell/UserActionsMenu/UserActionsMenu.controller.js +1 -0
- package/src/main/js/sap/ushell/components/shell/UserImage/Component.js +1 -1
- package/src/main/js/sap/ushell/components/tiles/action/ActionTile.controller.js +22 -14
- package/src/main/js/sap/ushell/components/tiles/applauncher/StaticTile.controller.js +43 -13
- package/src/main/js/sap/ushell/components/tiles/applauncherdynamic/DynamicTile.controller.js +43 -13
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncher/StaticTile.controller.js +12 -2
- package/src/main/js/sap/ushell/components/tiles/cdm/applauncherdynamic/DynamicTile.controller.js +12 -2
- package/src/main/js/sap/ushell/components/tiles/indicatorArea/AreaChartTile.controller.js +157 -152
- package/src/main/js/sap/ushell/components/tiles/indicatorDual/DualTile.controller.js +2 -2
- package/src/main/js/sap/ushell/components/tiles/indicatorDual/DualTile.view.js +23 -22
- package/src/main/js/sap/ushell/components/tiles/indicatorDualComparison/DualComparison.controller.js +4 -2
- package/src/main/js/sap/ushell/components/tiles/indicatorDualDeviation/DualDeviation.controller.js +5 -5
- package/src/main/js/sap/ushell/components/tiles/indicatorDualTrend/DualTrend.controller.js +106 -102
- package/src/main/js/sap/ushell/components/tiles/indicatorHarveyBall/HarveyBallTile.controller.js +8 -7
- package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/oData4Analytics.js +96 -53
- package/src/main/js/sap/ushell/components/tiles/indicatorTileUtils/smartBusinessUtil.js +63 -52
- package/src/main/js/sap/ushell/components/tiles/indicatorcomparison/ComparisonTile.controller.js +4 -2
- package/src/main/js/sap/ushell/components/tiles/indicatorcontribution/ContributionTile.controller.js +2 -1
- package/src/main/js/sap/ushell/components/tiles/indicatordeviation/DeviationTile.controller.js +2 -2
- package/src/main/js/sap/ushell/components/tiles/utils.js +25 -25
- package/src/main/js/sap/ushell/components/visualizationOrganizer/Component.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/Component.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.accessibility.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controller/WorkPageBuilder.controller.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPage.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageButton.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageCell.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumn.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageColumnResizer.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/controls/WorkPageRow.js +1 -1
- package/src/main/js/sap/ushell/components/workPageBuilder/manifest.json +1 -1
- package/src/main/js/sap/ushell/components/workPageRuntime/Component.js +1 -1
- package/src/main/js/sap/ushell/components/workPageRuntime/controller/WorkPageRuntime.controller.js +1 -1
- package/src/main/js/sap/ushell/components/workPageRuntime/manifest.json +1 -1
- package/src/main/js/sap/ushell/designtime/ApplicationContainer.designtime.js +1 -1
- package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/Avatar.js +111 -113
- package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/Button.js +215 -137
- package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/Label.js +68 -70
- package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/ListItem.js +81 -80
- package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/ListItemBase.js +40 -39
- package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/ListItemGroup.js +146 -84
- package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/Menu.js +178 -120
- package/src/main/js/sap/ushell/gen/ui5/webcomponents/dist/MenuItem.js +186 -156
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-base.js +517 -368
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/IllustratedMessage.js +97 -0
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/NotificationList.js +128 -79
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/NotificationListGroupItem.js +76 -75
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/NotificationListItem.js +119 -99
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/NotificationListItemBase.js +48 -46
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/Search.js +156 -138
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/SearchItem.js +68 -62
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/SearchItemGroup.js +30 -29
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/SearchMessageArea.js +46 -45
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/SearchScope.js +48 -49
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/ShellBar.js +373 -214
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/ShellBarBranding.js +71 -70
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/ShellBarItem.js +81 -64
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/ShellBarSearch.js +150 -127
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/ShellBarSpacer.js +42 -41
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/UserMenu.js +190 -137
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/UserMenuAccount.js +76 -75
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori/dist/UserMenuItem.js +35 -34
- package/src/main/js/sap/ushell/gen/ui5/webcomponents-fiori.js +1706 -1389
- package/src/main/js/sap/ushell/gen/ui5/webcomponents.js +3011 -2450
- package/src/main/js/sap/ushell/library.js +1 -1
- package/src/main/js/sap/ushell/modules/NavigationMenu/ListProvider.js +56 -0
- package/src/main/js/sap/ushell/modules/NavigationMenu/ListProviderAPI.js +119 -0
- package/src/main/js/sap/ushell/modules/NavigationMenu/NavContainer.js +60 -0
- package/src/main/js/sap/ushell/modules/NavigationMenu/NavigationMenuMode.js +37 -0
- package/src/main/js/sap/ushell/modules/NavigationMenu.js +17 -16
- package/src/main/js/sap/ushell/navigation/NavigationState.js +0 -3
- package/src/main/js/sap/ushell/navigationMode.js +5 -5
- package/src/main/js/sap/ushell/override.js +1 -2
- package/src/main/js/sap/ushell/performance/FesrEnhancer.js +51 -15
- package/src/main/js/sap/ushell/performance/ShellAnalytics.js +1 -1
- package/src/main/js/sap/ushell/performance/StatisticalRecord.js +19 -10
- package/src/main/js/sap/ushell/plugins/BaseRTAPlugin.js +8 -2
- package/src/main/js/sap/ushell/plugins/appwarmup/Component.js +1 -1
- package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_de.properties +1 -1
- package/src/main/js/sap/ushell/plugins/rta/i18n/i18n_vi.properties +1 -1
- package/src/main/js/sap/ushell/renderer/AccessKeysHandler.js +17 -13
- package/src/main/js/sap/ushell/renderer/NavContainer.js +7 -0
- package/src/main/js/sap/ushell/renderer/Renderer.js +13 -13
- package/src/main/js/sap/ushell/renderer/RendererAppContainer.js +3 -3
- package/src/main/js/sap/ushell/renderer/RendererManagedComponents.js +194 -0
- package/src/main/js/sap/ushell/renderer/Shell.controller.js +29 -39
- package/src/main/js/sap/ushell/renderer/Shell.view.js +8 -5
- package/src/main/js/sap/ushell/renderer/resources/resources_cs.properties +8 -8
- package/src/main/js/sap/ushell/renderer/resources/resources_es.properties +1 -1
- package/src/main/js/sap/ushell/renderer/resources/resources_id.properties +18 -18
- package/src/main/js/sap/ushell/renderer/resources/resources_pt_PT.properties +1 -1
- package/src/main/js/sap/ushell/renderer/resources/resources_vi.properties +1 -1
- package/src/main/js/sap/ushell/renderer/search/searchComponent/manifest.json +1 -1
- package/src/main/js/sap/ushell/renderers/fiori2/Renderer.js +38 -31
- package/src/main/js/sap/ushell/renderers/fiori2/Shell.view.js +2 -2
- package/src/main/js/sap/ushell/resources.js +1 -1
- package/src/main/js/sap/ushell/services/AllMyApps.js +1 -3
- package/src/main/js/sap/ushell/services/AppConfiguration.js +2 -2
- package/src/main/js/sap/ushell/services/AppLifeCycle.js +33 -30
- package/src/main/js/sap/ushell/services/AppState.js +3 -3
- package/src/main/js/sap/ushell/services/Bookmark.js +35 -39
- package/src/main/js/sap/ushell/services/BookmarkV2.js +6 -8
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/Formatter.js +1 -1
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/InboundIndex.js +1 -1
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/InboundProvider.js +1 -1
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/PrelaunchOperations.js +5 -5
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/Search.js +1 -1
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/StagedLogger.js +1 -1
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/SystemContext.js +1 -1
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/Utils.js +1 -1
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/VirtualInbounds.js +1 -1
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution/XAppStateProcessing.js +1 -1
- package/src/main/js/sap/ushell/services/ClientSideTargetResolution.js +13 -14
- package/src/main/js/sap/ushell/services/CommonDataModel/SiteConverter.js +1 -1
- package/src/main/js/sap/ushell/services/CommonDataModel/vizTypeDefaults/VizTypeDefaults.js +1 -1
- package/src/main/js/sap/ushell/services/CommonDataModel.js +82 -78
- package/src/main/js/sap/ushell/services/Configuration.js +1 -1
- package/src/main/js/sap/ushell/services/ConfigurationDefaults.js +1 -1
- package/src/main/js/sap/ushell/services/ContentExtensionAdapterFactory.js +1 -1
- package/src/main/js/sap/ushell/services/CrossApplicationNavigation.js +201 -230
- package/src/main/js/sap/ushell/services/DarkModeSupport.js +3 -3
- package/src/main/js/sap/ushell/services/EndUserFeedback.js +2 -2
- package/src/main/js/sap/ushell/services/Extension/Item.js +1 -1
- package/src/main/js/sap/ushell/services/Extension.js +1 -1
- package/src/main/js/sap/ushell/services/FlpLaunchPage.js +61 -57
- package/src/main/js/sap/ushell/services/FrameBoundExtension/FloatingContainer.js +1 -1
- package/src/main/js/sap/ushell/services/FrameBoundExtension/Footer.js +1 -1
- package/src/main/js/sap/ushell/services/FrameBoundExtension/Item.js +1 -1
- package/src/main/js/sap/ushell/services/FrameBoundExtension/SidePane.js +1 -1
- package/src/main/js/sap/ushell/services/FrameBoundExtension/ToolArea.js +1 -1
- package/src/main/js/sap/ushell/services/FrameBoundExtension/UserSettingsEntry.js +1 -1
- package/src/main/js/sap/ushell/services/FrameBoundExtension.js +1 -1
- package/src/main/js/sap/ushell/services/LaunchPage.js +1 -1
- package/src/main/js/sap/ushell/services/Menu.js +2 -2
- package/src/main/js/sap/ushell/services/Message.js +1 -1
- package/src/main/js/sap/ushell/services/MessageBroker/ClientAlias.js +37 -0
- package/src/main/js/sap/ushell/services/MessageBroker/ClientConnectionMessage.js +37 -0
- package/src/main/js/sap/ushell/services/MessageBroker/MessageBrokerEngine.js +463 -622
- package/src/main/js/sap/ushell/services/MessageBroker.js +127 -60
- package/src/main/js/sap/ushell/services/MessageInternal.js +2 -2
- package/src/main/js/sap/ushell/services/NavTargetResolutionInternal.js +4 -4
- package/src/main/js/sap/ushell/services/Navigation/compatibility.js +2 -3
- package/src/main/js/sap/ushell/services/Navigation/utils.js +3 -3
- package/src/main/js/sap/ushell/services/Navigation.js +5 -5
- package/src/main/js/sap/ushell/services/NavigationDataProvider.js +21 -11
- package/src/main/js/sap/ushell/services/Notifications.js +1 -1
- package/src/main/js/sap/ushell/services/NotificationsV2.js +152 -109
- package/src/main/js/sap/ushell/services/PageBuilding.js +4 -2
- package/src/main/js/sap/ushell/services/PagePersistence.js +1 -1
- package/src/main/js/sap/ushell/services/PageReferencing.js +1 -1
- package/src/main/js/sap/ushell/services/Pages.js +32 -32
- package/src/main/js/sap/ushell/services/Personalization.js +36 -32
- package/src/main/js/sap/ushell/services/PersonalizationV2/ContextContainer.js +6 -6
- package/src/main/js/sap/ushell/services/PersonalizationV2/Personalizer.js +3 -3
- package/src/main/js/sap/ushell/services/PersonalizationV2/WindowAdapter.js +2 -2
- package/src/main/js/sap/ushell/services/PersonalizationV2/WindowAdapterContainer.js +4 -4
- package/src/main/js/sap/ushell/services/PersonalizationV2/utils.js +4 -8
- package/src/main/js/sap/ushell/services/PersonalizationV2.js +17 -15
- package/src/main/js/sap/ushell/services/PluginManager/Extensions.js +3 -3
- package/src/main/js/sap/ushell/services/PluginManager/HeaderExtensions.js +1 -1
- package/src/main/js/sap/ushell/services/PluginManager/MenuExtensions.js +1 -1
- package/src/main/js/sap/ushell/services/PluginManager/SimpleExpression.js +1 -1
- package/src/main/js/sap/ushell/services/PluginManager.js +22 -22
- package/src/main/js/sap/ushell/services/ReferenceResolver.js +2 -2
- package/src/main/js/sap/ushell/services/Search.js +1 -1
- package/src/main/js/sap/ushell/services/SearchCEP.js +3 -3
- package/src/main/js/sap/ushell/services/SearchableContent.js +2 -2
- package/src/main/js/sap/ushell/services/ShellNavigation.js +1 -1
- package/src/main/js/sap/ushell/services/ShellNavigationHashChanger.js +2 -2
- package/src/main/js/sap/ushell/services/ShellNavigationInternal.js +1 -1
- package/src/main/js/sap/ushell/services/SmartNavigation.js +2 -3
- package/src/main/js/sap/ushell/services/SpaceContent.js +1 -1
- package/src/main/js/sap/ushell/services/UITracer.js +5 -5
- package/src/main/js/sap/ushell/services/URLParsing.js +10 -10
- package/src/main/js/sap/ushell/services/URLShortening.js +1 -1
- package/src/main/js/sap/ushell/services/URLTemplate.js +1 -1
- package/src/main/js/sap/ushell/services/Ui5ComponentLoader.js +20 -20
- package/src/main/js/sap/ushell/services/UserDefaultParameterPersistence.js +1 -1
- package/src/main/js/sap/ushell/services/UserDefaultParameters.js +7 -7
- package/src/main/js/sap/ushell/services/UserInfo.js +4 -4
- package/src/main/js/sap/ushell/services/UserRecents/RecentAppsUsage.js +2 -2
- package/src/main/js/sap/ushell/services/UserRecents/UserRecentsBase.js +6 -6
- package/src/main/js/sap/ushell/services/UserRecents.js +1 -1
- package/src/main/js/sap/ushell/services/VisualizationDataProvider.js +18 -15
- package/src/main/js/sap/ushell/services/VisualizationInstantiation.js +3 -3
- package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/ContentExtensionAdapterConfig.js +1 -1
- package/src/main/js/sap/ushell/services/_ContentExtensionAdapterFactory/FeaturedGroupConfig.js +1 -1
- package/src/main/js/sap/ushell/services/_CrossApplicationNavigation/utils.js +3 -3
- package/src/main/js/sap/ushell/services/_PageReferencing/PageReferencer.js +2 -2
- package/src/main/js/sap/ushell/services/_Personalization/ContextContainer.js +10 -10
- package/src/main/js/sap/ushell/services/_Personalization/PersonalizationContainer.js +8 -8
- package/src/main/js/sap/ushell/services/_Personalization/Personalizer.js +14 -14
- package/src/main/js/sap/ushell/services/_Personalization/utils.js +2 -2
- package/src/main/js/sap/ushell/services/appstate/AppState.js +8 -8
- package/src/main/js/sap/ushell/services/appstate/WindowAdapter.js +3 -3
- package/src/main/js/sap/ushell/state/StrategyFactory/HeadEndItemsStrategy.js +7 -0
- package/src/main/js/sap/ushell/state/modules/BackNavigation.js +7 -24
- package/src/main/js/sap/ushell/state/modules/ContentDensity.js +1 -1
- package/src/main/js/sap/ushell/state/modules/Favicon.js +1 -1
- package/src/main/js/sap/ushell/state/modules/HeaderLogo.js +3 -3
- package/src/main/js/sap/ushell/support/plugins/flpConfig/FlpConfigurationPlugin.js +1 -1
- package/src/main/js/sap/ushell/themes/base/ActionMode.less +1 -1
- package/src/main/js/sap/ushell/themes/base/ToolAreaItem.less +1 -1
- package/src/main/js/sap/ushell/thirdparty/Avatar.js +9 -9
- package/src/main/js/sap/ushell/thirdparty/BusyIndicator.js +6 -12
- package/src/main/js/sap/ushell/thirdparty/Button.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/Button2.js +74 -22
- package/src/main/js/sap/ushell/thirdparty/FocusableElements.js +10 -0
- package/src/main/js/sap/ushell/thirdparty/Icon.js +32 -15
- package/src/main/js/sap/ushell/thirdparty/Icons.js +149 -111
- package/src/main/js/sap/ushell/thirdparty/IllustratedMessage.js +1297 -0
- package/src/main/js/sap/ushell/thirdparty/Label.js +5 -5
- package/src/main/js/sap/ushell/thirdparty/Link.js +7 -7
- package/src/main/js/sap/ushell/thirdparty/List.js +55 -75
- package/src/main/js/sap/ushell/thirdparty/ListItemAdditionalText.css.js +10 -0
- package/src/main/js/sap/ushell/thirdparty/ListItemBase.js +23 -11
- package/src/main/js/sap/ushell/thirdparty/ListItemCustom.js +64 -48
- package/src/main/js/sap/ushell/thirdparty/ListItemGroup.js +239 -74
- package/src/main/js/sap/ushell/thirdparty/Menu.js +14 -15
- package/src/main/js/sap/ushell/thirdparty/MenuItem.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/MenuItem2.js +55 -21
- package/src/main/js/sap/ushell/thirdparty/NotificationList.js +10 -10
- package/src/main/js/sap/ushell/thirdparty/NotificationListGroupItem.js +14 -14
- package/src/main/js/sap/ushell/thirdparty/NotificationListItem.js +23 -14
- package/src/main/js/sap/ushell/thirdparty/NotificationListItemBase.js +6 -6
- package/src/main/js/sap/ushell/thirdparty/ResponsivePopover.js +94 -52
- package/src/main/js/sap/ushell/thirdparty/SearchItem.js +25 -8
- package/src/main/js/sap/ushell/thirdparty/SearchItemGroup.js +4 -7
- package/src/main/js/sap/ushell/thirdparty/SearchMessageArea.js +4 -4
- package/src/main/js/sap/ushell/thirdparty/ShellBar.js +85 -51
- package/src/main/js/sap/ushell/thirdparty/ShellBarBranding.js +6 -6
- package/src/main/js/sap/ushell/thirdparty/ShellBarSearch.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/ShellBarSearch2.js +308 -176
- package/src/main/js/sap/ushell/thirdparty/Tag.js +7 -7
- package/src/main/js/sap/ushell/thirdparty/Text.js +5 -5
- package/src/main/js/sap/ushell/thirdparty/Title.js +4 -4
- package/src/main/js/sap/ushell/thirdparty/UserMenu.js +23 -23
- package/src/main/js/sap/ushell/thirdparty/UserMenuItem.js +3 -3
- package/src/main/js/sap/ushell/thirdparty/WrappingType.js +24 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/InputSuggestions.js +5 -52
- package/src/main/js/sap/ushell/thirdparty/_dynamics/ListItemStandardExpandableTextTemplate.js +4 -4
- package/src/main/js/sap/ushell/thirdparty/_dynamics/SAP-icons-TNT.js +202 -178
- package/src/main/js/sap/ushell/thirdparty/_dynamics/SAP-icons-TNT2.js +145 -121
- package/src/main/js/sap/ushell/thirdparty/_dynamics/SAP-icons.js +2 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/SAP-icons2.js +2 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ar2.js +144 -18
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ar3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_bg2.js +144 -18
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_bg3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ca2.js +144 -18
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ca3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cnr2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cnr3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cs2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cs3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cy2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_cy3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_da2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_da3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_de2.js +144 -18
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_de3.js +13 -7
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_el2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_el3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en.js +3 -174
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en2.js +174 -717
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en3.js +837 -582
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en4.js +602 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_GB2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_GB3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_sappsd.js +3 -174
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_sappsd2.js +174 -711
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_sappsd3.js +837 -582
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_sappsd4.js +596 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saprigi.js +3 -174
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saprigi2.js +174 -717
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saprigi3.js +837 -582
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saprigi4.js +602 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saptrc.js +3 -174
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saptrc2.js +174 -711
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saptrc3.js +837 -582
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_en_US_saptrc4.js +596 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es_MX2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_es_MX3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_et2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_et3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fi2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fi3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr_CA2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_fr_CA3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hi2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hi3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hr2.js +144 -18
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hr3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hu2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_hu3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_id2.js +145 -19
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_id3.js +7 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_it2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_it3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_iw2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_iw3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ja2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ja3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_kk2.js +144 -18
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_kk3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ko2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ko3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lt2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lt3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lv2.js +145 -19
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_lv3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_mk2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_mk3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ms2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ms3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_nl2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_nl3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_no2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_no3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pl2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pl3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt_PT2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_pt_PT3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ro2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ro3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ru2.js +144 -18
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_ru3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sh2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sh3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sk2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sk3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sl2.js +144 -18
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sl3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sr2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sr3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sv2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_sv3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_th2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_th3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_tr2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_tr3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_uk2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_uk3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_vi2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_vi3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_CN2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_CN3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_TW2.js +143 -17
- package/src/main/js/sap/ushell/thirdparty/_dynamics/messagebundle_zh_TW3.js +6 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css10.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css11.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css12.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css13.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css14.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css15.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css16.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css17.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css18.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css19.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css20.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css21.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css22.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css23.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css24.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css25.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css26.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css27.js +7 -0
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css4.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css5.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css6.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css7.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css8.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css9.js +1 -1
- package/src/main/js/sap/ushell/thirdparty/i18n-defaults.js +110 -145
- package/src/main/js/sap/ushell/thirdparty/i18n-defaults2.js +152 -104
- package/src/main/js/sap/ushell/thirdparty/information.js +10 -10
- package/src/main/js/sap/ushell/thirdparty/overflow.js +16 -36
- package/src/main/js/sap/ushell/thirdparty/parameters-bundle.css.js +4 -1
- package/src/main/js/sap/ushell/thirdparty/parameters-bundle.css2.js +2 -2
- package/src/main/js/sap/ushell/thirdparty/parameters-bundle.css3.js +8 -0
- package/src/main/js/sap/ushell/thirdparty/slim-arrow-down.js +4 -4
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-icons/AllIcons.js +2 -2
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-icons-business-suite/AllIcons.js +2 -2
- package/src/main/js/sap/ushell/thirdparty/ui5/webcomponents-icons-tnt/AllIcons.js +2 -2
- package/src/main/js/sap/ushell/thirdparty/webcomponents-base.js +80 -67
- package/src/main/js/sap/ushell/thirdparty/webcomponents-fiori.js +14 -14
- package/src/main/js/sap/ushell/thirdparty/webcomponents.js +29 -29
- package/src/main/js/sap/ushell/ui/QuickAccess.js +22 -14
- package/src/main/js/sap/ushell/ui/ShellHeader.js +4 -4
- package/src/main/js/sap/ushell/ui/appfinder/AppBoxInternal.js +3 -3
- package/src/main/js/sap/ushell/ui/cards/RecentActivitiesExtension.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/AboutDialog.controller.js +4 -4
- package/src/main/js/sap/ushell/ui/footerbar/AddBookmarkButton.js +7 -7
- package/src/main/js/sap/ushell/ui/footerbar/ContactSupportDialog.controller.js +1 -1
- package/src/main/js/sap/ushell/ui/footerbar/JamShareButton.js +4 -3
- package/src/main/js/sap/ushell/ui/footerbar/SendAsEmailButton.js +2 -2
- package/src/main/js/sap/ushell/ui/launchpad/CatalogsContainer.js +2 -3
- package/src/main/js/sap/ushell/ui/launchpad/DashboardGroupsContainer.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/ExtendedChangeDetection.js +2 -2
- package/src/main/js/sap/ushell/ui/launchpad/LinkTileWrapperRenderer.js +2 -2
- package/src/main/js/sap/ushell/ui/launchpad/Section.js +1 -1
- package/src/main/js/sap/ushell/ui/launchpad/TileContainerUtils.js +1 -2
- package/src/main/js/sap/ushell/ui/launchpad/TileRenderer.js +2 -2
- package/src/main/js/sap/ushell/ui/launchpad/VizInstance.js +7 -4
- package/src/main/js/sap/ushell/ui/launchpad/section/CompactArea.js +1 -1
- package/src/main/js/sap/ushell/ui/shell/ShellAppTitle.js +3 -2
- package/src/main/js/sap/ushell/ui/shell/ShellNavigationMenu.js +20 -20
- package/src/main/js/sap/ushell/ui/shell/ToolAreaItem.js +1 -1
- package/src/main/js/sap/ushell/ui/tile/TileBase.js +3 -3
- package/src/main/js/sap/ushell/ui/utils.js +6 -6
- package/src/main/js/sap/ushell/ui5service/ShellUIService.js +3 -0
- package/src/main/js/sap/ushell/ui5service/ShellUIServiceFactory.js +1 -1
- package/src/main/js/sap/ushell/ui5service/UserStatus.js +1 -1
- package/src/main/js/sap/ushell/utils/CallbackQueue.js +114 -0
- package/src/main/js/sap/ushell/utils/Deferred.js +3 -3
- package/src/main/js/sap/ushell/utils/DynamicTileRequest.js +6 -6
- package/src/main/js/sap/ushell/utils/HttpClient.js +68 -68
- package/src/main/js/sap/ushell/utils/LaunchpadError.js +21 -0
- package/src/main/js/sap/ushell/utils/UrlParsing.js +16 -17
- package/src/main/js/sap/ushell/utils/UrlShortening.js +2 -2
- package/src/main/js/sap/ushell/utils/WindowUtils.js +5 -3
- package/src/main/js/sap/ushell/utils/chipsUtils.js +7 -5
- package/src/main/js/sap/ushell/utils/tilecard/TileCard.js +2 -2
- package/src/main/js/sap/ushell/utils/tilecard/TileCardExtension.js +9 -9
- package/src/main/js/sap/ushell/utils/utilsCdm.js +5 -6
- package/src/main/js/sap/ushell/utils/workpage/DestinationResolver.js +15 -11
- package/src/main/js/sap/ushell/utils/workpage/WorkPageHost.js +18 -19
- package/src/main/js/sap/ushell/utils/workpage/WorkPageService.js +11 -7
- package/src/main/js/sap/ushell/utils/workpage/WorkPageVizInstantiation.js +1 -1
- package/src/main/js/sap/ushell/utils.js +45 -65
- package/src/test/js/sap/ushell/bootstrap/sandbox.js +69 -70
- package/ui5.yaml +37 -16
- package/src/main/js/sap/ushell/appIntegration/PostMessageManager/AppruntimeHandler.js +0 -121
- package/src/main/js/sap/ushell/appIntegration/PostMessageManager/LifecycleHandler.js +0 -631
- package/src/main/js/sap/ushell/appIntegration/PostMessageManager/MessageBrokerHandler.js +0 -59
- package/src/main/js/sap/ushell/appIntegration/PostMessageManager/ServiceHandler.js +0 -1541
- package/src/main/js/sap/ushell/appRuntime/ui5/AppRuntimeService.js +0 -40
- package/src/main/js/sap/ushell/thirdparty/_dynamics/parameters-bundle.css3.js +0 -7
- /package/src/main/js/sap/ushell/appIntegration/{PostMessageManager → PostMessageHandler}/ExtensionItems.js +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
sap.ui.define(['exports'], (function (exports) { 'use strict';
|
|
2
2
|
|
|
3
|
-
var parametersBundle_css = ":root{--ui5-v2-13-0-rc-0-avatar-hover-box-shadow-offset: 0px 0px 0px .0625rem var();--ui5-v2-13-0-rc-0-avatar-initials-color: var(--sapContent_ImagePlaceholderForegroundColor);--ui5-v2-13-0-rc-0-avatar-border-radius: .25rem;--ui5-v2-13-0-rc-0-avatar-border-radius-img-deduction: .0625rem;--ui5-v2-13-0-rc-0-avatar-initials-border: none;--ui5-v2-13-0-rc-0-avatar-optional-border: .0625rem solid var(--sapGroup_ContentBorderColor);--ui5-v2-13-0-rc-0-avatar-accent1: var(--sapAccentColor1);--ui5-v2-13-0-rc-0-avatar-accent2: var(--sapAccentColor2);--ui5-v2-13-0-rc-0-avatar-accent3: var(--sapAccentColor3);--ui5-v2-13-0-rc-0-avatar-accent4: var(--sapAccentColor4);--ui5-v2-13-0-rc-0-avatar-accent5: var(--sapAccentColor5);--ui5-v2-13-0-rc-0-avatar-accent6: var(--sapAccentColor6);--ui5-v2-13-0-rc-0-avatar-accent7: var(--sapAccentColor7);--ui5-v2-13-0-rc-0-avatar-accent8: var(--sapAccentColor8);--ui5-v2-13-0-rc-0-avatar-accent9: var(--sapAccentColor9);--ui5-v2-13-0-rc-0-avatar-accent10: var(--sapAccentColor10);--ui5-v2-13-0-rc-0-avatar-placeholder: var(--sapContent_ImagePlaceholderBackground);--ui5-v2-13-0-rc-0-avatar-accent1-color: var(--ui5-v2-13-0-rc-0-avatar-initials-color);--ui5-v2-13-0-rc-0-avatar-accent2-color: var(--ui5-v2-13-0-rc-0-avatar-initials-color);--ui5-v2-13-0-rc-0-avatar-accent3-color: var(--ui5-v2-13-0-rc-0-avatar-initials-color);--ui5-v2-13-0-rc-0-avatar-accent4-color: var(--ui5-v2-13-0-rc-0-avatar-initials-color);--ui5-v2-13-0-rc-0-avatar-accent5-color: var(--ui5-v2-13-0-rc-0-avatar-initials-color);--ui5-v2-13-0-rc-0-avatar-accent6-color: var(--ui5-v2-13-0-rc-0-avatar-initials-color);--ui5-v2-13-0-rc-0-avatar-accent7-color: var(--ui5-v2-13-0-rc-0-avatar-initials-color);--ui5-v2-13-0-rc-0-avatar-accent8-color: var(--ui5-v2-13-0-rc-0-avatar-initials-color);--ui5-v2-13-0-rc-0-avatar-accent9-color: var(--ui5-v2-13-0-rc-0-avatar-initials-color);--ui5-v2-13-0-rc-0-avatar-accent10-color: var(--ui5-v2-13-0-rc-0-avatar-initials-color);--ui5-v2-13-0-rc-0-avatar-placeholder-color: var(--ui5-v2-13-0-rc-0-avatar-initials-color);--ui5-v2-13-0-rc-0-avatar-accent1-border-color: var(--sapField_BorderColor);--ui5-v2-13-0-rc-0-avatar-accent2-border-color: var(--sapField_BorderColor);--ui5-v2-13-0-rc-0-avatar-accent3-border-color: var(--sapField_BorderColor);--ui5-v2-13-0-rc-0-avatar-accent4-border-color: var(--sapField_BorderColor);--ui5-v2-13-0-rc-0-avatar-accent5-border-color: var(--sapField_BorderColor);--ui5-v2-13-0-rc-0-avatar-accent6-border-color: var(--sapField_BorderColor);--ui5-v2-13-0-rc-0-avatar-accent7-border-color: var(--sapField_BorderColor);--ui5-v2-13-0-rc-0-avatar-accent8-border-color: var(--sapField_BorderColor);--ui5-v2-13-0-rc-0-avatar-accent9-border-color: var(--sapField_BorderColor);--ui5-v2-13-0-rc-0-avatar-accent10-border-color: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_avatar_outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_avatar_focus_offset: .0625rem;--_ui5-v2-13-0-rc-0_avatar_overflow_button_focus_offset: .0625rem;--_ui5-v2-13-0-rc-0_avatar_icon_XS: 1rem;--_ui5-v2-13-0-rc-0_avatar_icon_S: 1.5rem;--_ui5-v2-13-0-rc-0_avatar_icon_M: 2rem;--_ui5-v2-13-0-rc-0_avatar_icon_L: 2.5rem;--_ui5-v2-13-0-rc-0_avatar_icon_XL: 3rem;--_ui5-v2-13-0-rc-0_avatar_fontsize_XS: 1rem;--_ui5-v2-13-0-rc-0_avatar_fontsize_S: 1.125rem;--_ui5-v2-13-0-rc-0_avatar_fontsize_M: 1.5rem;--_ui5-v2-13-0-rc-0_avatar_fontsize_L: 2.25rem;--_ui5-v2-13-0-rc-0_avatar_fontsize_XL: 3rem;--_ui5-v2-13-0-rc-0_avatar_group_button_focus_border: none;--_ui5-v2-13-0-rc-0_avatar_group_padding: .3rem;--_ui5-v2-13-0-rc-0-tag-height: 1rem;--_ui5-v2-13-0-rc-0-tag-padding-inline-icon-only: .1875rem;--_ui5-v2-13-0-rc-0-tag-text-padding: 0 .25rem;--_ui5-v2-13-0-rc-0-tag-text-transform: uppercase;--_ui5-v2-13-0-rc-0-tag-icon-width: .75rem;--_ui5-v2-13-0-rc-0-tag-icon-gap: .125rem;--_ui5-v2-13-0-rc-0-tag-font-weight: bold;--_ui5-v2-13-0-rc-0-tag-letter-spacing: .0125em;--ui5-v2-13-0-rc-0-tag-text-shadow: var(--sapContent_TextShadow);--ui5-v2-13-0-rc-0-tag-contrast-text-shadow: var(--sapContent_ContrastTextShadow);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-1-color: var(--sapIndicationColor_1);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-1-background: var(--sapIndicationColor_1b);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-1-border: var(--sapIndicationColor_1b_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-1-hover-background: var(--sapIndicationColor_1b_Hover_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-1-active-color: var(--sapIndicationColor_1_Active_TextColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-1-active-background: var(--sapIndicationColor_1_Active_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-1-active-border: var(--sapIndicationColor_1_Active_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-2-color: var(--sapIndicationColor_2);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-2-background: var(--sapIndicationColor_2b);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-2-border: var(--sapIndicationColor_2b_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-2-hover-background: var(--sapIndicationColor_2b_Hover_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-2-active-color: var(--sapIndicationColor_2_Active_TextColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-2-active-background: var(--sapIndicationColor_2_Active_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-2-active-border: var(--sapIndicationColor_2_Active_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-3-color: var(--sapIndicationColor_3);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-3-background: var(--sapIndicationColor_3b);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-3-border: var(--sapIndicationColor_3b_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-3-hover-background: var(--sapIndicationColor_3b_Hover_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-3-active-color: var(--sapIndicationColor_3_Active_TextColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-3-active-background: var(--sapIndicationColor_3_Active_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-3-active-border: var(--sapIndicationColor_3_Active_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-4-color: var(--sapIndicationColor_4);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-4-background: var(--sapIndicationColor_4b);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-4-border: var(--sapIndicationColor_4b_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-4-hover-background: var(--sapIndicationColor_4b_Hover_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-4-active-color: var(--sapIndicationColor_4_Active_TextColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-4-active-background: var(--sapIndicationColor_4_Active_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-4-active-border: var(--sapIndicationColor_4_Active_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-5-color: var(--sapIndicationColor_5);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-5-background: var(--sapIndicationColor_5b);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-5-border: var(--sapIndicationColor_5b_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-5-hover-background: var(--sapIndicationColor_5b_Hover_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-5-active-color: var(--sapIndicationColor_5_Active_TextColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-5-active-background: var(--sapIndicationColor_5_Active_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-5-active-border: var(--sapIndicationColor_5_Active_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-6-color: var(--sapIndicationColor_6);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-6-background: var(--sapIndicationColor_6b);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-6-border: var(--sapIndicationColor_6b_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-6-hover-background: var(--sapIndicationColor_6b_Hover_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-6-active-color: var(--sapIndicationColor_6_Active_TextColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-6-active-background: var(--sapIndicationColor_6_Active_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-6-active-border: var(--sapIndicationColor_6_Active_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-7-color: var(--sapIndicationColor_7);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-7-background: var(--sapIndicationColor_7b);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-7-border: var(--sapIndicationColor_7b_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-7-hover-background: var(--sapIndicationColor_7b_Hover_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-7-active-color: var(--sapIndicationColor_7_Active_TextColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-7-active-background: var(--sapIndicationColor_7_Active_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-7-active-border: var(--sapIndicationColor_7_Active_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-8-color: var(--sapIndicationColor_8);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-8-background: var(--sapIndicationColor_8b);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-8-border: var(--sapIndicationColor_8b_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-8-hover-background: var(--sapIndicationColor_8b_Hover_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-8-active-color: var(--sapIndicationColor_8_Active_TextColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-8-active-background: var(--sapIndicationColor_8_Active_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-8-active-border: var(--sapIndicationColor_8_Active_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-9-color: var(--sapIndicationColor_9);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-9-background: var(--sapIndicationColor_9b);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-9-border: var(--sapIndicationColor_9b_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-9-hover-background: var(--sapIndicationColor_9b_Hover_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-9-active-color: var(--sapIndicationColor_9_Active_TextColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-9-active-background: var(--sapIndicationColor_9_Active_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-9-active-border: var(--sapIndicationColor_9_Active_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-10-color: var(--sapIndicationColor_10);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-10-background: var(--sapIndicationColor_10b);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-10-border: var(--sapIndicationColor_10b_BorderColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-10-hover-background: var(--sapIndicationColor_10b_Hover_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-10-active-color: var(--sapIndicationColor_10_Active_TextColor);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-10-active-background: var(--sapIndicationColor_10_Active_Background);--ui5-v2-13-0-rc-0-tag-set2-color-scheme-10-active-border: var(--sapIndicationColor_10_Active_BorderColor);--_ui5-v2-13-0-rc-0-tag-height_size_l: 1.5rem;--_ui5-v2-13-0-rc-0-tag-min-width_size_l: 1.75rem;--_ui5-v2-13-0-rc-0-tag-font-size_size_l: 1.25rem;--_ui5-v2-13-0-rc-0-tag-icon_min_width_size_l: 1.25rem;--_ui5-v2-13-0-rc-0-tag-icon_min_height_size_l:1.25rem;--_ui5-v2-13-0-rc-0-tag-icon_height_size_l: 1.25rem;--_ui5-v2-13-0-rc-0-tag-text_padding_size_l: .125rem .25rem;--ui5-v2-13-0-rc-0-tag-information-text-shadow: var(--sapContent_ContrastTextShadow);--_ui5-v2-13-0-rc-0_bar_base_height: 2.75rem;--_ui5-v2-13-0-rc-0_bar_subheader_height: 3rem;--_ui5-v2-13-0-rc-0_bar-start-container-padding-start: 1rem;--_ui5-v2-13-0-rc-0_bar-mid-container-padding-start-end: .5rem;--_ui5-v2-13-0-rc-0_bar-end-container-padding-end: 1rem;--_ui5-v2-13-0-rc-0_bar_subheader_margin-top: -.0625rem;--_ui5-v2-13-0-rc-0_busy_indicator_color: var(--sapContent_IconColor);--_ui5-v2-13-0-rc-0_busy_indicator_focus_outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0-button-badge-diameter: .75rem;--_ui5-v2-13-0-rc-0_card_box_shadow: var(--sapContent_Shadow0);--_ui5-v2-13-0-rc-0_card_hover_box_shadow: var(--_ui5-v2-13-0-rc-0_card_box_shadow);--_ui5-v2-13-0-rc-0_card_border: 1px solid var(--sapTile_BorderColor);--_ui5-v2-13-0-rc-0_card_border-radius: var(--sapElement_BorderCornerRadius);--_ui5-v2-13-0-rc-0_card_header_padding: 1rem;--_ui5-v2-13-0-rc-0_card_header_hover_bg: var(--sapList_Hover_Background);--_ui5-v2-13-0-rc-0_card_header_active_bg: var(--_ui5-v2-13-0-rc-0_card_header_hover_bg);--_ui5-v2-13-0-rc-0_card_header_border: 1px solid var(--_ui5-v2-13-0-rc-0_card_header_border_color);--_ui5-v2-13-0-rc-0_card_header_border_color: var(--sapTile_SeparatorColor);--_ui5-v2-13-0-rc-0_card_header_focus_border: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_card_header_focus_radius: 0px;--_ui5-v2-13-0-rc-0_card_header_focus_bottom_radius: 0px;--_ui5-v2-13-0-rc-0_card_header_focus_offset: 1px;--_ui5-v2-13-0-rc-0_card_header_title_font_family: \"72override\", var(--sapFontFamily);--_ui5-v2-13-0-rc-0_card_header_title_font_size: var(--sapFontHeader5Size);--_ui5-v2-13-0-rc-0_card_header_title_font_weight: normal;--_ui5-v2-13-0-rc-0_card_header_subtitle_margin_top: .25rem;--_ui5-v2-13-0-rc-0-calendar-legend-root-padding: .75rem;--_ui5-v2-13-0-rc-0-calendar-legend-root-width: 18.5rem;--_ui5-v2-13-0-rc-0-calendar-legend-item-root-focus-border: var(--sapContent_FocusWidth) dotted var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0-calendar-legend-item-root-focus-border-radius: 0;--_ui5-v2-13-0-rc-0-calendar-legend-item-root-width: 7.75rem;--_ui5-v2-13-0-rc-0-calendar-legend-item-box-dot-display: none;--ui5-v2-13-0-rc-0_carousel_background_color_solid: var(--sapGroup_ContentBackground);--ui5-v2-13-0-rc-0_carousel_background_color_translucent: var(--sapBackgroundColor);--ui5-v2-13-0-rc-0_carousel_button_size: 2.5rem;--ui5-v2-13-0-rc-0_carousel_inactive_dot_size: .25rem;--ui5-v2-13-0-rc-0_carousel_inactive_dot_margin: 0 .375rem;--ui5-v2-13-0-rc-0_carousel_inactive_dot_border: 1px solid var(--sapContent_ForegroundBorderColor);--ui5-v2-13-0-rc-0_carousel_inactive_dot_background: var(--sapContent_ForegroundBorderColor);--ui5-v2-13-0-rc-0_carousel_active_dot_border: 1px solid var(--sapContent_Selected_ForegroundColor);--ui5-v2-13-0-rc-0_carousel_active_dot_background: var(--sapContent_Selected_ForegroundColor);--ui5-v2-13-0-rc-0_carousel_navigation_button_active_box_shadow: var(--sapContent_Shadow1);--_ui5-v2-13-0-rc-0_checkbox_transition: unset;--_ui5-v2-13-0-rc-0_checkbox_disabled_opacity: .5;--_ui5-v2-13-0-rc-0_checkbox_border_radius: 0;--_ui5-v2-13-0-rc-0_checkbox_hover_background: var(--sapField_Hover_Background);--_ui5-v2-13-0-rc-0_checkbox_active_background: var(--sapField_Hover_Background);--_ui5-v2-13-0-rc-0_checkbox_checkmark_warning_color: var(--sapField_TextColor);--_ui5-v2-13-0-rc-0_checkbox_inner_warning_color: var(--sapField_WarningColor);--_ui5-v2-13-0-rc-0_checkbox_inner_information_color: currentColor;--_ui5-v2-13-0-rc-0_checkbox_checkmark_color: var(--sapSelectedColor);--_ui5-v2-13-0-rc-0_checkbox_focus_position: .5625rem;--_ui5-v2-13-0-rc-0_checkbox_focus_outline: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_checkbox_focus_border_radius: 0;--_ui5-v2-13-0-rc-0_checkbox_outer_hover_background: transparent;--_ui5-v2-13-0-rc-0_checkbox_inner_width_height: 1.375rem;--_ui5-v2-13-0-rc-0_checkbox_inner_hover_border_color: var(--sapField_HoverBorderColor);--_ui5-v2-13-0-rc-0_checkbox_inner_hover_checked_border_color: var(--sapField_HoverBorderColor);--_ui5-v2-13-0-rc-0_checkbox_inner_selected_border_color: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_checkbox_inner_disabled_border_color: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_checkbox_inner_active_border_color: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_checkbox_inner_error_border: .125rem solid var(--sapField_InvalidColor);--_ui5-v2-13-0-rc-0_checkbox_inner_warning_border: .125rem solid var(--sapField_WarningColor);--_ui5-v2-13-0-rc-0_checkbox_inner_information_border: .125rem solid var(--sapField_InformationColor);--_ui5-v2-13-0-rc-0_checkbox_inner_warning_background_hover: var(--sapField_WarningBackground);--_ui5-v2-13-0-rc-0_checkbox_inner_error_background_hover: var(--sapField_InvalidBackground);--_ui5-v2-13-0-rc-0_checkbox_inner_success_background_hover: var(--sapField_SuccessBackground);--_ui5-v2-13-0-rc-0_checkbox_inner_information_background_hover: var(--sapField_InformationBackground);--_ui5-v2-13-0-rc-0_checkbox_inner_success_border: var(--sapField_BorderWidth) solid var(--sapField_SuccessColor);--_ui5-v2-13-0-rc-0_checkbox_inner_background: var(--sapField_Background);--_ui5-v2-13-0-rc-0_checkbox_wrapped_focus_inset_block: var(--_ui5-v2-13-0-rc-0_checkbox_focus_position);--_ui5-v2-13-0-rc-0_checkbox_compact_wrapper_padding: .5rem;--_ui5-v2-13-0-rc-0_checkbox_compact_width_height: 2rem;--_ui5-v2-13-0-rc-0_checkbox_compact_inner_size: 1rem;--_ui5-v2-13-0-rc-0_checkbox_compact_focus_position: .375rem;--_ui5-v2-13-0-rc-0_checkbox_label_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_checkbox_label_offset: var(--_ui5-v2-13-0-rc-0_checkbox_wrapper_padding);--_ui5-v2-13-0-rc-0_checkbox_disabled_label_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_checkbox_default_focus_border: none;--_ui5-v2-13-0-rc-0_checkbox_focus_outline_display: block;--_ui5-v2-13-0-rc-0_checkbox_right_focus_distance: 0;--_ui5-v2-13-0-rc-0_checkbox_wrapper_padding: .6875rem;--_ui5-v2-13-0-rc-0_checkbox_width_height: 2.75rem;--_ui5-v2-13-0-rc-0_checkbox_inner_border: .0625rem solid var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_checkbox_inner_border_radius: .125rem;--_ui5-v2-13-0-rc-0_checkbox_wrapped_focus_padding: .5rem;--_ui5-v2-13-0-rc-0_checkbox_inner_readonly_border: 1px solid var(--sapField_ReadOnly_BorderColor);--_ui5-v2-13-0-rc-0_color-palette-item-after-focus-border-radius: .125rem;--_ui5-v2-13-0-rc-0_color-palette-item-hover-margin: 0;--_ui5-v2-13-0-rc-0_color-palette-row-height: 9.5rem;--_ui5-v2-13-0-rc-0_color-palette-button-height: 3rem;--_ui5-v2-13-0-rc-0_color-palette-item-before-focus-color: .0625rem solid white;--_ui5-v2-13-0-rc-0_color-palette-item-before-focus-inset: .0625rem;--_ui5-v2-13-0-rc-0_color-palette-item-before-focus-hover-inset: .0625rem;--_ui5-v2-13-0-rc-0_color-palette-item-after-focus-color: .0625rem dotted black;--_ui5-v2-13-0-rc-0_color-palette-item-after-focus-inset: .0625rem;--_ui5-v2-13-0-rc-0_color-palette-item-after-focus-hover-inset: .0625rem;--_ui5-v2-13-0-rc-0_color-palette-item-before-focus-border-radius: 0;--_ui5-v2-13-0-rc-0_color-palette-item-outer-border-radius: .25rem;--_ui5-v2-13-0-rc-0_color-palette-item-inner-border-radius: .1875rem;--_ui5-v2-13-0-rc-0_color-palette-item-hover-outer-border-radius: .25rem;--_ui5-v2-13-0-rc-0_color-palette-item-hover-inner-border-radius: .1875rem;--_ui5-v2-13-0-rc-0_color-palette-item-selected-focused-border-before: var(--_ui5-v2-13-0-rc-0_color-palette-item-before-focus-hover-inset);--_ui5-v2-13-0-rc-0_color-palette-item-after-focus-not-selected-border: .0625rem dotted black;--_ui5-v2-13-0-rc-0_color-palette-item-after-not-focus-color: .0625rem solid var(--sapGroup_ContentBackground);--_ui5-v2-13-0-rc-0_color-palette-item-selected-focused-border: .0625rem solid var(--sapGroup_ContentBackground);--_ui5-v2-13-0-rc-0-color-palette-item-mobile-focus-inset: .625rem;--_ui5-v2-13-0-rc-0_color-palette-item-mobile-focus-sides-inset: .25rem .25rem;--_ui5-v2-13-0-rc-0_color-palette-item-after-mobile-focus-border: var(--_ui5-v2-13-0-rc-0_color-palette-item-after-focus-color);--_ui5-v2-13-0-rc-0_color_picker_slider_handle_box_shadow: inset 0 0 0 .125rem var(--sapContent_ContrastShadowColor);--_ui5-v2-13-0-rc-0_color_picker_slider_handle_border: .125rem solid var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_color_picker_slider_handle_outline_hover: .125rem solid var(--sapButton_Hover_BorderColor);--_ui5-v2-13-0-rc-0_color_picker_slider_handle_outline_focus: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_color_picker_slider_handle_inner_border_color: #fff;--_ui5-v2-13-0-rc-0_color_picker_circle_outer_border: .0625rem solid var(--sapContent_ContrastShadowColor);--_ui5-v2-13-0-rc-0_color_picker_circle_inner_border: var(--sapField_Picker_BorderWidth) solid var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_color_picker_circle_inner_circle_size: .5625rem;--_ui5-v2-13-0-rc-0_color_picker_slider_handle_inline_focus: none;--_ui5-v2-13-0-rc-0-datepicker_border_radius: 0;--_ui5-v2-13-0-rc-0-datepicker-hover-background: var(--sapField_Hover_Background);--_ui5-v2-13-0-rc-0_daypicker_item_margin: 2px;--_ui5-v2-13-0-rc-0_daypicker_item_border: none;--_ui5-v2-13-0-rc-0_daypicker_item_selected_border_color: var(--sapList_Background);--_ui5-v2-13-0-rc-0_daypicker_daynames_container_height: 2rem;--_ui5-v2-13-0-rc-0_daypicker_weeknumbers_container_padding_top: 2rem;--_ui5-v2-13-0-rc-0_daypicker_item_othermonth_background_color: var(--sapList_Background);--_ui5-v2-13-0-rc-0_daypicker_item_othermonth_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_daypicker_item_othermonth_hover_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_daypicker_item_selected_daytext_hover_background: transparent;--_ui5-v2-13-0-rc-0_daypicker_item_selected_between_border: .25rem;--_ui5-v2-13-0-rc-0_daypicker_item_selected_between_background: var(--sapList_SelectionBackgroundColor);--_ui5-v2-13-0-rc-0_daypicker_item_selected_between_text_font: inherit;--_ui5-v2-13-0-rc-0_daypicker_item_selected_between_hover_background: var(--sapList_Hover_SelectionBackground);--_ui5-v2-13-0-rc-0_daypicker_item_now_box_shadow: inset 0 0 0 .0625rem var(--_ui5-v2-13-0-rc-0_daypicker_item_selected_border_color);--_ui5-v2-13-0-rc-0_daypicker_item_selected_text_outline: none;--_ui5-v2-13-0-rc-0_daypicker_item_now_not_selected_inset: 0;--_ui5-v2-13-0-rc-0_daypicker_item_now_inset: .1875rem;--_ui5-v2-13-0-rc-0_daypicker_item_now_border_color: var(--sapLegend_CurrentDateTime);--_ui5-v2-13-0-rc-0_daypicker_item_weeekend_filter: brightness(100%);--_ui5-v2-13-0-rc-0_daypicker_item_selected_hover: var(--sapContent_Selected_Hover_Background);--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_now_inset: .1875rem;--_ui5-v2-13-0-rc-0_daypicker_item_selected__secondary_type_text_outline: none;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_now_day_text_content: none;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_now_selected_border_width: .0625rem;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_border_radius: .3125rem;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_border_focus_border_radius: 0rem;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_no_selected_inset: .125rem;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_selected_now_border_radius_focus: .0625rem;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_no_selected_focus_inset: .125rem;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_no_select_focus_border_radius: .0625rem;--_ui5-v2-13-0-rc-0_dp_two_calendar_item_secondary_text_border_radios: .25rem;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_now_selected_border_inset: .125rem;--_ui5-v2-13-0-rc-0_daypicker_special_day_top: 2.5rem;--_ui5-v2-13-0-rc-0_daypicker_special_day_border_bottom_radius: .25rem;--_ui5-v2-13-0-rc-0_daypicker_special_day_before_border_color: var(--sapList_Background);--_ui5-v2-13-0-rc-0_daypicker_selected_item_special_day_width: 100%;--_ui5-v2-13-0-rc-0_daypicker_selected_item_now_special_day_top: 2.375rem;--_ui5-v2-13-0-rc-0_daypicker_selected_item_now_special_day_width: calc(100% - .375rem) ;--_ui5-v2-13-0-rc-0_daypicker_selected_item_now_special_day_border_bottom_radius: 0;--_ui5-v2-13-0-rc-0-daypicker_item_selected_now_border_radius: .25rem;--_ui5-v2-13-0-rc-0_daypicker_selected_item_now_special_day_border_bottom_radius_alternate: .0625rem;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_margin_bottom: 0;--_ui5-v2-13-0-rc-0_daypicker_twocalendar_item_special_day_now_inset: .1875rem;--_ui5-v2-13-0-rc-0_daypicker_twocalendar_item_special_day_now_border_radius: 0;--_ui5-v2-13-0-rc-0_daypicker_item_now_focus_margin: .09375rem;--_ui5-v2-13-0-rc-0_daypicker_special_day_border_top: .0625rem solid var(--_ui5-v2-13-0-rc-0_daypicker_special_day_before_border_color);--_ui5-v2-13-0-rc-0_daypicker_special_day_selected_border_radius_bottom: .0625rem;--_ui5-v2-13-0-rc-0_daypicker_specialday_focused_top: 2.375rem;--_ui5-v2-13-0-rc-0_daypicker_specialday_focused_width: calc(100% - .375rem) ;--_ui5-v2-13-0-rc-0_daypicker_specialday_focused_border_bottom: .0625rem;--_ui5-v2-13-0-rc-0_daypicker_item_now_specialday_top: 2.375rem;--_ui5-v2-13-0-rc-0_daypicker_item_now_specialday_width: calc(100% - .375rem) ;--_ui5-v2-13-0-rc-0_daypicker_twocalendar_item_special_day_after_border_width: .125rem;--_ui5-v2-13-0-rc-0_daypicker_twocalendar_item_special_day_dot: .375rem;--_ui5-v2-13-0-rc-0_daypicker_twocalendar_item_special_day_top: 2rem;--_ui5-v2-13-0-rc-0_daypicker_twocalendar_item_special_day_right: 1.4375rem;--_ui5-v2-13-0-rc-0_daypicker_item_selected_background: var(--sapContent_Selected_Background);--_ui5-v2-13-0-rc-0_daypicker_dayname_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_daypicker_weekname_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_daypicker_item_border_radius_focus_after: .0625rem;--_ui5-v2-13-0-rc-0_daypicker_item_border_radius_item: .0625rem;--_ui5-v2-13-0-rc-0_daypicker_item_selected_border: none;--_ui5-v2-13-0-rc-0_daypicker_item_not_selected_focus_border: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_daypicker_item_selected_focus_color: var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_daypicker_item_selected_focus_width: .0625rem;--_ui5-v2-13-0-rc-0_daypicker_item_no_selected_inset: .125rem;--_ui5-v2-13-0-rc-0_daypicker_item_now_border_focus_after: .0625rem dotted var(--sapList_SelectionBorderColor);--_ui5-v2-13-0-rc-0_daypicker_item_now_border_radius_focus_after: .0625rem;--_ui5-v2-13-0-rc-0_day_picker_item_selected_now_border: .1875rem solid var(--sapList_Background);--_ui5-v2-13-0-rc-0_day_picker_item_selected_now_border_focus: .0625rem dotted var(--sapContent_ContrastFocusColor);--_ui5-v2-13-0-rc-0_day_picker_item_selected_now_border_radius_focus: .0625rem;--_ui5-v2-13-0-rc-0-dp-item_withsecondtype_border: .1875rem;--_ui5-v2-13-0-rc-0_daypicker_item_border_radius: .25rem;--_ui5-v2-13-0-rc-0_daypicker_item_selected_text_border: none;--_ui5-v2-13-0-rc-0_daypicker_item_select_between_border: 1px solid var(--sapContent_Selected_ForegroundColor);--_ui5-v2-13-0-rc-0_daypicker_item_now_selected_outline_offset: -.3125rem;--_ui5-v2-13-0-rc-0_file_uploader_hover_border: 1px solid var(--sapField_Hover_BorderColor);--_ui5-v2-13-0-rc-0_file_uploader_value_state_error_hover_background_color: var(--sapField_Hover_Background);--ui5-v2-13-0-rc-0-form-item-layout: 4fr 8fr 0fr;--ui5-v2-13-0-rc-0-form-item-label-justify: end;--ui5-v2-13-0-rc-0-form-item-label-justify-span12: start;--ui5-v2-13-0-rc-0-form-item-label-padding: .125rem 0;--ui5-v2-13-0-rc-0-form-item-label-padding-end: .85rem;--ui5-v2-13-0-rc-0-form-item-label-padding-span12: .625rem .25rem 0 .25rem;--_ui5-v2-13-0-rc-0_dialog_header_focus_bottom_offset: 3px;--_ui5-v2-13-0-rc-0_dialog_header_focus_top_offset: 2px;--_ui5-v2-13-0-rc-0_dialog_header_focus_left_offset: 2px;--_ui5-v2-13-0-rc-0_dialog_header_focus_right_offset: 2px;--_ui5-v2-13-0-rc-0_dialog_header_border_radius: 0px;--_ui5-v2-13-0-rc-0_dialog_header_error_state_icon_color: var(--sapNegativeElementColor);--_ui5-v2-13-0-rc-0_dialog_header_information_state_icon_color: var(--sapInformativeElementColor);--_ui5-v2-13-0-rc-0_dialog_header_success_state_icon_color: var(--sapPositiveElementColor);--_ui5-v2-13-0-rc-0_dialog_header_warning_state_icon_color: var(--sapCriticalElementColor);--_ui5-v2-13-0-rc-0_dialog_header_state_line_height: .0625rem;--_ui5-v2-13-0-rc-0_table_cell_valign: center;--_ui5-v2-13-0-rc-0_table_cell_min_width: 2.75rem;--_ui5-v2-13-0-rc-0_table_navigated_cell_width: .25rem;--_ui5-v2-13-0-rc-0_first_table_cell_horizontal_padding: 1rem;--_ui5-v2-13-0-rc-0_table_cell_horizontal_padding: .5rem;--_ui5-v2-13-0-rc-0_table_cell_vertical_padding: .25rem;--_ui5-v2-13-0-rc-0_table_row_actions_gap: .25rem;--ui5-v2-13-0-rc-0-group-header-listitem-background-color: var(--sapList_GroupHeaderBackground);--_ui5-v2-13-0-rc-0_input_width: 13.125rem;--_ui5-v2-13-0-rc-0_input_min_width: 2.75rem;--_ui5-v2-13-0-rc-0_input_height: var(--sapElement_Height);--_ui5-v2-13-0-rc-0_input_hover_border: var(--sapField_BorderWidth) var(--sapField_BorderStyle) var(--sapField_Hover_BorderColor);--_ui5-v2-13-0-rc-0_input_value_state_error_hover_background: var(--sapField_Hover_Background);--_ui5-v2-13-0-rc-0_input_background_color: var(--sapField_Background);--_ui5-v2-13-0-rc-0_input_border_radius: var(--sapField_BorderCornerRadius);--_ui5-v2-13-0-rc-0_input_focus_border_radius: 0;--_ui5-v2-13-0-rc-0_input_readonly_focus_border_radius: 0;--_ui5-v2-13-0-rc-0_input_placeholder_style: italic;--_ui5-v2-13-0-rc-0_input_placeholder_color: var(--sapField_PlaceholderTextColor);--_ui5-v2-13-0-rc-0_input_bottom_border_height: 0;--_ui5-v2-13-0-rc-0_input_bottom_border_color: transparent;--_ui5-v2-13-0-rc-0_input_focused_border_color: var(--sapField_Hover_BorderColor);--_ui5-v2-13-0-rc-0_input_state_border_width: .125rem;--_ui5-v2-13-0-rc-0_input_information_border_width: .125rem;--_ui5-v2-13-0-rc-0_input_error_font_weight: normal;--_ui5-v2-13-0-rc-0_input_warning_font_weight: normal;--_ui5-v2-13-0-rc-0_input_focus_border_width: 1px;--_ui5-v2-13-0-rc-0_input_error_warning_border_style: solid;--_ui5-v2-13-0-rc-0_input_error_warning_font_style: inherit;--_ui5-v2-13-0-rc-0_input_error_warning_text_indent: 0;--_ui5-v2-13-0-rc-0_input_disabled_border_color: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0-input_disabled_background: var(--sapField_Background);--_ui5-v2-13-0-rc-0_input_readonly_border_color: var(--sapField_ReadOnly_BorderColor);--_ui5-v2-13-0-rc-0_input_readonly_background: var(--sapField_ReadOnly_Background);--_ui5-v2-13-0-rc-0_input_custom_icon_padding: .5625rem .625rem;--_ui5-v2-13-0-rc-0_input_error_warning_custom_icon_padding: .5rem .625rem;--_ui5-v2-13-0-rc-0_input_error_warning_custom_focused_icon_padding: .5rem .625rem;--_ui5-v2-13-0-rc-0_input_information_custom_icon_padding: .5rem .625rem;--_ui5-v2-13-0-rc-0_input_information_custom_focused_icon_padding: .5rem .625rem;--_ui5-v2-13-0-rc-0_input_error_warning_icon_padding: .5rem .5rem .5rem .5625rem;--_ui5-v2-13-0-rc-0_input_error_warning_focused_icon_padding: .5rem .5rem .5rem .5625rem;--_ui5-v2-13-0-rc-0_input_information_icon_padding: .5rem .5rem .5rem .5625rem;--_ui5-v2-13-0-rc-0_input_information_focused_icon_padding: .5rem .5rem .5rem .5625rem;--_ui5-v2-13-0-rc-0_input_disabled_opacity: var(--sapContent_DisabledOpacity);--_ui5-v2-13-0-rc-0_input_icon_min_width: 2.25rem;--_ui5-v2-13-0-rc-0_input_compact_min_width: 2rem;--_ui5-v2-13-0-rc-0_input_transition: none;--_ui5-v2-13-0-rc-0-input-value-state-icon-display: none;--_ui5-v2-13-0-rc-0_input_focused_value_state_error_background: var(--sapField_InvalidBackground);--_ui5-v2-13-0-rc-0_input_focused_value_state_warning_background: var(--sapField_WarningBackground);--_ui5-v2-13-0-rc-0_input_focused_value_state_success_background: var(--sapField_SuccessBackground);--_ui5-v2-13-0-rc-0_input_focused_value_state_information_background: var(--sapField_InformationBackground);--_ui5-v2-13-0-rc-0_input_value_state_error_border_color: var(--sapField_InvalidColor);--_ui5-v2-13-0-rc-0_input_focused_value_state_error_border_color: var(--sapField_InvalidColor);--_ui5-v2-13-0-rc-0_input_focused_value_state_error_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_input_focused_value_state_warning_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_input_focused_value_state_success_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_input_value_state_warning_border_color: var(--sapField_WarningColor);--_ui5-v2-13-0-rc-0_input_focused_value_state_warning_border_color: var(--sapField_WarningColor);--_ui5-v2-13-0-rc-0_input_value_state_success_border_color: var(--sapField_SuccessColor);--_ui5-v2-13-0-rc-0_input_focused_value_state_success_border_color: var(--sapField_SuccessColor);--_ui5-v2-13-0-rc-0_input_value_state_success_border_width: 1px;--_ui5-v2-13-0-rc-0_input_value_state_information_border_color: var(--sapField_InformationColor);--_ui5-v2-13-0-rc-0_input_focused_value_state_information_border_color: var(--sapField_InformationColor);--_ui5-v2-13-0-rc-0_input_focus_offset: 1px;--_ui5-v2-13-0-rc-0_input_readonly_focus_offset: 1px;--ui5-v2-13-0-rc-0_input_focus_pseudo_element_content: \"\";--_ui5-v2-13-0-rc-0_input_value_state_error_warning_placeholder_font_weight: normal;--_ui5-v2-13-0-rc-0_input_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0-input_error_placeholder_color: var(--sapField_PlaceholderTextColor);--_ui5-v2-13-0-rc-0_input_icon_width: 2.25rem;--_ui5-v2-13-0-rc-0_input_icon_wrapper_height: 100%;--_ui5-v2-13-0-rc-0_input_icon_wrapper_state_height: 100%;--_ui5-v2-13-0-rc-0_input_icon_wrapper_success_state_height: 100%;--_ui5-v2-13-0-rc-0-input-icons-count: 0;--_ui5-v2-13-0-rc-0_input_margin_top_bottom: .1875rem;--_ui5-v2-13-0-rc-0_input_tokenizer_min_width: 3.25rem;--_ui5-v2-13-0-rc-0-input-border: 1px solid var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_input_readonly_border: var(--sapElement_BorderWidth) var(--sapField_BorderStyle) var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_input_icon_padding: .5625rem;--_ui5-v2-13-0-rc-0_input_icon_color: var(--sapField_TextColor);--_ui5-v2-13-0-rc-0_input_icon_pressed_color: var(--sapButton_Active_TextColor);--_ui5-v2-13-0-rc-0_input_icon_pressed_bg: var(--sapField_Hover_Background);--_ui5-v2-13-0-rc-0_input_icon_hover_bg: var(--sapButton_Lite_Hover_Background);--_ui5-v2-13-0-rc-0_input_icon_border_radius: 0;--_ui5-v2-13-0-rc-0_input_icon_box_shadow: none;--_ui5-v2-13-0-rc-0_input_icon_border: 1px solid transparent;--_ui5-v2-13-0-rc-0_input_error_icon_box_shadow: var(--_ui5-v2-13-0-rc-0_input_icon_box_shadow);--_ui5-v2-13-0-rc-0_input_warning_icon_box_shadow: var(--_ui5-v2-13-0-rc-0_input_icon_box_shadow);--_ui5-v2-13-0-rc-0_input_information_icon_box_shadow: var(--_ui5-v2-13-0-rc-0_input_icon_box_shadow);--_ui5-v2-13-0-rc-0_input_success_icon_box_shadow: var(--_ui5-v2-13-0-rc-0_input_icon_box_shadow);--_ui5-v2-13-0-rc-0_input_icon_error_pressed_color: var(--sapButton_Active_TextColor);--_ui5-v2-13-0-rc-0_input_icon_warning_pressed_color: var(--sapButton_Active_TextColor);--_ui5-v2-13-0-rc-0_input_icon_information_pressed_color: var(--sapButton_Active_TextColor);--_ui5-v2-13-0-rc-0_input_icon_success_pressed_color: var(--sapButton_Active_TextColor);--_ui5-v2-13-0-rc-0_link_focused_hover_text_decoration: underline;--_ui5-v2-13-0-rc-0_link_focused_hover_text_color: var(--sapLinkColor);--_ui5-v2-13-0-rc-0_link_active_text_decoration: underline;--_ui5-v2-13-0-rc-0_link_outline: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_link_focus_border-radius: 0;--_ui5-v2-13-0-rc-0_link_focus_background_color: transparent;--_ui5-v2-13-0-rc-0_link_focus_color: var(--sapLinkColor);--_ui5-v2-13-0-rc-0_link_focus_text_decoration: underline;--_ui5-v2-13-0-rc-0_link_subtle_text_decoration: none;--_ui5-v2-13-0-rc-0_link_subtle_text_decoration_hover: underline;--_ui5-v2-13-0-rc-0_link_large_interactive_area_height: unset;--_ui5-v2-13-0-rc-0_link_text_decoration: none;--_ui5-v2-13-0-rc-0_link_hover_text_decoration: underline;--ui5-v2-13-0-rc-0_list_footer_text_color: var(--sapTextColor);--ui5-v2-13-0-rc-0-listitem-background-color: var(--sapList_Background);--ui5-v2-13-0-rc-0-listitem-border-bottom: var(--sapList_BorderWidth) solid var(--sapList_BorderColor);--ui5-v2-13-0-rc-0-listitem-selected-border-bottom: 1px solid var(--sapList_SelectionBorderColor);--ui5-v2-13-0-rc-0-listitem-focused-selected-border-bottom: 1px solid var(--sapList_SelectionBorderColor);--_ui5-v2-13-0-rc-0-listitembase_disabled_opacity: .5;--_ui5-v2-13-0-rc-0_product_switch_item_border: none;--_ui5-v2-13-0-rc-0_menu_popover_border_radius: var(--sapElement_BorderCornerRadius);--_ui5-v2-13-0-rc-0_menu_item_padding: 0 1rem 0 .75rem;--_ui5-v2-13-0-rc-0_menu_item_submenu_icon_right: 1rem;--_ui5-v2-13-0-rc-0_monthpicker_item_margin: .0625rem;--_ui5-v2-13-0-rc-0_monthpicker_item_border: .0625rem solid var(--sapButton_Lite_BorderColor);--_ui5-v2-13-0-rc-0_monthpicker_item_hover_border: .0625rem solid var(--sapButton_Lite_Hover_BorderColor);--_ui5-v2-13-0-rc-0_monthpicker_item_active_border: .0625rem solid var(--sapButton_Lite_Active_BorderColor);--_ui5-v2-13-0-rc-0_monthpicker_item_selected_border: .0625rem solid var(--sapButton_Selected_BorderColor);--_ui5-v2-13-0-rc-0_monthpicker_item_selected_hover_border: .0625rem solid var(--sapButton_Selected_Hover_BorderColor);--_ui5-v2-13-0-rc-0_monthpicker_item_border_radius: .25rem;--_ui5-v2-13-0-rc-0_message_strip_padding: .4375rem 2.5rem .4375rem 2.5rem;--_ui5-v2-13-0-rc-0_message_strip_padding_block_no_icon: .4375rem .4375rem;--_ui5-v2-13-0-rc-0_message_strip_padding_inline_no_icon: 1rem 2.5rem;--_ui5-v2-13-0-rc-0_message_strip_border_width: var(--sapMessage_BorderWidth);--_ui5-v2-13-0-rc-0_message_strip_icon_top: .4375rem;--_ui5-v2-13-0-rc-0_message_strip_close_button_top: .125rem;--_ui5-v2-13-0-rc-0_message_strip_close_button_right: .125rem;--_ui5-v2-13-0-rc-0_message_strip_close_button_color_set_1_color: var(--sapContent_ContrastIconColor);--_ui5-v2-13-0-rc-0_message_strip_scheme_1_set_2_background: var(--sapIndicationColor_1b);--_ui5-v2-13-0-rc-0_message_strip_scheme_1_set_2_border_color: var(--sapIndicationColor_1b_BorderColor);--_ui5-v2-13-0-rc-0_message_strip_scheme_2_set_2_background: var(--sapIndicationColor_2b);--_ui5-v2-13-0-rc-0_message_strip_scheme_2_set_2_border_color: var(--sapIndicationColor_2b_BorderColor);--_ui5-v2-13-0-rc-0_message_strip_scheme_3_set_2_background: var(--sapIndicationColor_3b);--_ui5-v2-13-0-rc-0_message_strip_scheme_3_set_2_border_color: var(--sapIndicationColor_3b_BorderColor);--_ui5-v2-13-0-rc-0_message_strip_scheme_4_set_2_background: var(--sapIndicationColor_4b);--_ui5-v2-13-0-rc-0_message_strip_scheme_4_set_2_border_color: var(--sapIndicationColor_4b_BorderColor);--_ui5-v2-13-0-rc-0_message_strip_scheme_5_set_2_background: var(--sapIndicationColor_5b);--_ui5-v2-13-0-rc-0_message_strip_scheme_5_set_2_border_color: var(--sapIndicationColor_5b_BorderColor);--_ui5-v2-13-0-rc-0_message_strip_scheme_6_set_2_background: var(--sapIndicationColor_6b);--_ui5-v2-13-0-rc-0_message_strip_scheme_6_set_2_border_color: var(--sapIndicationColor_6b_BorderColor);--_ui5-v2-13-0-rc-0_message_strip_scheme_7_set_2_background: var(--sapIndicationColor_7b);--_ui5-v2-13-0-rc-0_message_strip_scheme_7_set_2_border_color: var(--sapIndicationColor_7b_BorderColor);--_ui5-v2-13-0-rc-0_message_strip_scheme_8_set_2_background: var(--sapIndicationColor_8b);--_ui5-v2-13-0-rc-0_message_strip_scheme_8_set_2_border_color: var(--sapIndicationColor_8b_BorderColor);--_ui5-v2-13-0-rc-0_message_strip_scheme_9_set_2_background: var(--sapIndicationColor_9b);--_ui5-v2-13-0-rc-0_message_strip_scheme_9_set_2_border_color: var(--sapIndicationColor_9b_BorderColor);--_ui5-v2-13-0-rc-0_message_strip_scheme_10_set_2_background: var(--sapIndicationColor_10b);--_ui5-v2-13-0-rc-0_message_strip_scheme_10_set_2_border_color: var(--sapIndicationColor_10b_BorderColor);--_ui5-v2-13-0-rc-0_message_strip_close_button_color_set_1_background: var(--sapMessage_Button_Hover_Background);--_ui5-v2-13-0-rc-0_message_strip_close_button_color_set_2_background: var(--sapMessage_Button_Hover_Background);--_ui5-v2-13-0-rc-0_panel_focus_border: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_panel_header_height: 2.75rem;--_ui5-v2-13-0-rc-0_panel_button_root_width: 2.75rem;--_ui5-v2-13-0-rc-0_panel_button_root_height: 2.75rem;--_ui5-v2-13-0-rc-0_panel_border_radius: 0px;--_ui5-v2-13-0-rc-0_panel_border_radius_expanded: 0;--_ui5-v2-13-0-rc-0_panel_default_header_border: none;--_ui5-v2-13-0-rc-0_panel_border_bottom: var(--sapGroup_TitleBorderWidth) solid var(--sapGroup_TitleBorderColor);--_ui5-v2-13-0-rc-0_panel_icon_color: var(--sapContent_IconColor);--_ui5-v2-13-0-rc-0_panel_header_padding_right: .5rem;--_ui5-v2-13-0-rc-0_panel_header_button_wrapper_padding: .25rem;--_ui5-v2-13-0-rc-0_panel_focus_offset: 1px;--_ui5-v2-13-0-rc-0_panel_focus_bottom_offset: var(--_ui5-v2-13-0-rc-0_panel_focus_offset);--_ui5-v2-13-0-rc-0_panel_content_padding: .625rem 1rem 1.375rem 1rem;--_ui5-v2-13-0-rc-0_panel_header_background_color: var(--sapBackgroundColor);--_ui5-v2-13-0-rc-0_popover_background: var(--sapGroup_ContentBackground);--_ui5-v2-13-0-rc-0_popover_box_shadow: var(--sapContent_Shadow2);--_ui5-v2-13-0-rc-0_popover_no_arrow_box_shadow: var(--sapContent_Shadow1);--_ui5-v2-13-0-rc-0_popup_content_padding_s: 1rem;--_ui5-v2-13-0-rc-0_popup_content_padding_m_l: 2rem;--_ui5-v2-13-0-rc-0_popup_content_padding_xl: 3rem;--_ui5-v2-13-0-rc-0_popup_header_footer_padding_s: 1rem;--_ui5-v2-13-0-rc-0_popup_header_footer_padding_m_l: 2rem;--_ui5-v2-13-0-rc-0_popup_header_footer_padding_xl: 3rem;--_ui5-v2-13-0-rc-0_popup_viewport_margin: 10px;--_ui5-v2-13-0-rc-0_popup_header_prop_header_text_alignment: flex-start;--_ui5-v2-13-0-rc-0_popup_border_radius: var(--sapElement_BorderCornerRadius);--_ui5-v2-13-0-rc-0_popup_header_background: var(--sapPageHeader_Background);--_ui5-v2-13-0-rc-0_popup_header_shadow: var(--sapContent_HeaderShadow);--_ui5-v2-13-0-rc-0_popup_header_border: none;--_ui5-v2-13-0-rc-0_popup_block_layer_background: var(--sapBlockLayer_Background);--_ui5-v2-13-0-rc-0_popup_block_layer_opacity: .2;--_ui5-v2-13-0-rc-0_progress_indicator_background_none: var(--sapField_Background);--_ui5-v2-13-0-rc-0_progress_indicator_background_error: var(--sapField_Background);--_ui5-v2-13-0-rc-0_progress_indicator_background_warning: var(--sapField_Background);--_ui5-v2-13-0-rc-0_progress_indicator_background_success: var(--sapField_Background);--_ui5-v2-13-0-rc-0_progress_indicator_background_information: var(--sapField_Background);--_ui5-v2-13-0-rc-0_progress_indicator_value_state_none: var(--sapNeutralElementColor);--_ui5-v2-13-0-rc-0_progress_indicator_value_state_error: var(--sapNegativeElementColor);--_ui5-v2-13-0-rc-0_progress_indicator_value_state_warning: var(--sapCriticalElementColor);--_ui5-v2-13-0-rc-0_progress_indicator_value_state_success: var(--sapPositiveElementColor);--_ui5-v2-13-0-rc-0_progress_indicator_value_state_information: var(--sapInformativeElementColor);--_ui5-v2-13-0-rc-0_progress_indicator_border_color_error: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_progress_indicator_border_color_warning: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_progress_indicator_border_color_success: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_progress_indicator_border_color_information: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_progress_indicator_color: var(--sapTextColor);--_ui5-v2-13-0-rc-0_progress_indicator_bar_color: var(--sapContent_ContrastTextColor);--_ui5-v2-13-0-rc-0_progress_indicator_border: .0625rem solid var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_progress_indicator_bar_border_max: none;--_ui5-v2-13-0-rc-0_progress_indicator_icon_visibility: none;--_ui5-v2-13-0-rc-0_progress_indicator_side_points_visibility: none;--_ui5-v2-13-0-rc-0_progress_indicator_padding_novalue: 0;--_ui5-v2-13-0-rc-0_progress_indicator_host_height: 1rem;--_ui5-v2-13-0-rc-0_progress_indicator_root_border_radius: .5rem;--_ui5-v2-13-0-rc-0_progress_indicator_root_height: 100%;--_ui5-v2-13-0-rc-0_progress_indicator_root_overflow: hidden;--_ui5-v2-13-0-rc-0_progress_indicator_bar_height: 100%;--_ui5-v2-13-0-rc-0_progress_indicator_bar_border_radius: .5rem 0 0 .5rem;--_ui5-v2-13-0-rc-0_progress_indicator_remaining_bar_overflow: hidden;--_ui5-v2-13-0-rc-0_progress_indicator_icon_size: var(--sapFontSmallSize);--_ui5-v2-13-0-rc-0_progress_indicator_value_margin: 0 .375rem;--_ui5-v2-13-0-rc-0_radio_button_min_width: 2.75rem;--_ui5-v2-13-0-rc-0_radio_button_hover_fill: var(--sapField_Hover_Background);--_ui5-v2-13-0-rc-0_radio_button_hover_fill_error: var(--sapField_Hover_Background);--_ui5-v2-13-0-rc-0_radio_button_hover_fill_warning: var(--sapField_Hover_Background);--_ui5-v2-13-0-rc-0_radio_button_hover_fill_success: var(--sapField_Hover_Background);--_ui5-v2-13-0-rc-0_radio_button_hover_fill_information: var(--sapField_Hover_Background);--_ui5-v2-13-0-rc-0_radio_button_border_width: 1px;--_ui5-v2-13-0-rc-0_radio_button_checked_fill: var(--sapSelectedColor);--_ui5-v2-13-0-rc-0_radio_button_checked_error_fill: var(--sapField_InvalidColor);--_ui5-v2-13-0-rc-0_radio_button_checked_warning_fill: var(--sapField_TextColor);--_ui5-v2-13-0-rc-0_radio_button_checked_success_fill: var(--sapField_SuccessColor);--_ui5-v2-13-0-rc-0_radio_button_checked_information_fill: var(--sapField_InformationColor);--_ui5-v2-13-0-rc-0_radio_button_warning_error_border_dash: 0;--_ui5-v2-13-0-rc-0_radio_button_outer_ring_color: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_radio_button_outer_ring_width: var(--sapField_BorderWidth);--_ui5-v2-13-0-rc-0_radio_button_outer_ring_bg: var(--sapField_Background);--_ui5-v2-13-0-rc-0_radio_button_outer_ring_hover_color: var(--sapField_Hover_BorderColor);--_ui5-v2-13-0-rc-0_radio_button_outer_ring_active_color: var(--sapField_Hover_BorderColor);--_ui5-v2-13-0-rc-0_radio_button_outer_ring_checked_hover_color: var(--sapField_Hover_BorderColor);--_ui5-v2-13-0-rc-0_radio_button_outer_ring_padding: 0 .625rem;--_ui5-v2-13-0-rc-0_radio_button_outer_ring_padding_with_label: 0 .6875rem;--_ui5-v2-13-0-rc-0_radio_button_border_radius: 0;--_ui5-v2-13-0-rc-0_radio_button_border: none;--_ui5-v2-13-0-rc-0_radio_button_focus_outline: block;--_ui5-v2-13-0-rc-0_radio_button_focus_dist: .5rem;--_ui5-v2-13-0-rc-0_radio_button_color: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_radio_button_label_offset: 1px;--_ui5-v2-13-0-rc-0_radio_button_label_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_radio_button_inner_ring_radius: 22%;--_ui5-v2-13-0-rc-0_radio_button_read_only_border_type: none;--_ui5-v2-13-0-rc-0_radio_button_inner_ring_color: var(--sapSelectedColor);--_ui5-v2-13-0-rc-0_radio_button_information_border_width: var(--sapField_InformationBorderWidth);--_ui5-v2-13-0-rc-0_radio_button_read_only_border_width: var(--sapField_BorderWidth);--_ui5-v2-13-0-rc-0_radio_button_read_only_inner_ring_color: var(--sapContent_NonInteractiveIconColor);--_ui5-v2-13-0-rc-0_rating_indicator_border_radius: .5rem;--_ui5-v2-13-0-rc-0_rating_indicator_outline_offset: -.125rem;--_ui5-v2-13-0-rc-0_rating_indicator_item_height: 1em;--_ui5-v2-13-0-rc-0_rating_indicator_item_width: 1em;--_ui5-v2-13-0-rc-0_rating_indicator_readonly_item_height: 1em;--_ui5-v2-13-0-rc-0_rating_indicator_readonly_item_width: 1em;--_ui5-v2-13-0-rc-0_rating_indicator_readonly_item_spacing: 0px;--_ui5-v2-13-0-rc-0_rating_indicator_component_spacing: .5rem 0px;--_ui5-v2-13-0-rc-0_rating_indicator_component_padding: .25rem;--_ui5-v2-13-0-rc-0_rating_indicator_item_size_s: 1.375rem;--_ui5-v2-13-0-rc-0_rating_indicator_item_size_l: 2rem;--_ui5-v2-13-0-rc-0_segmented_btn_item_border_left: 0px;--_ui5-v2-13-0-rc-0_segmented_btn_item_border_right: .0625rem;--_ui5-v2-13-0-rc-0_button_focused_border: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_button_focused_border_radius: .25rem;--_ui5-v2-13-0-rc-0_button_focused_inner_border_radius: 0;--_ui5-v2-13-0-rc-0_button_base_height: var(--sapElement_Height);--_ui5-v2-13-0-rc-0_button_border_radius: var(--sapButton_BorderCornerRadius);--_ui5-v2-13-0-rc-0_button_pressed_focused_border_color: var(--sapContent_ContrastFocusColor);--_ui5-v2-13-0-rc-0_button_fontFamily: var(--sapButton_FontFamily);--_ui5-v2-13-0-rc-0_button_base_min_width: 2.25rem;--_ui5-v2-13-0-rc-0_button_base_padding: .5625rem;--_ui5-v2-13-0-rc-0_button_base_icon_margin: .375rem;--_ui5-v2-13-0-rc-0_button_text_shadow: none;--_ui5-v2-13-0-rc-0_button_emphasized_focused_border_before: unset;--_ui5-v2-13-0-rc-0_button_emphasized_focused_border_color: var(--sapContent_ContrastFocusColor);--_ui5-v2-13-0-rc-0_button_emphasized_focused_active_border_color: var(--sapContent_ContrastFocusColor);--_ui5-v2-13-0-rc-0_select_hover_icon_left_border: 1px solid transparent;--_ui5-v2-13-0-rc-0_select_label_color: var(--sapField_TextColor);--_ui5-v2-13-0-rc-0_select_icon_width: 2.25rem;--_ui5-v2-13-0-rc-0_select_icon_wrapper_height: 100%;--_ui5-v2-13-0-rc-0_split_button_focused_border: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_split_button_focused_border_radius: .125rem;--_ui5-v2-13-0-rc-0_split_button_middle_separator_left: -.0625rem;--_ui5-v2-13-0-rc-0_split_button_middle_separator_hover_display: block;--_ui5-v2-13-0-rc-0_split_button_text_button_right_border_width: 0;--_ui5-v2-13-0-rc-0_split_button_transparent_hover_background: var(--sapButton_Lite_Background);--_ui5-v2-13-0-rc-0_split_button_host_transparent_hover_background: transparent;--_ui5-v2-13-0-rc-0_split_button_transparent_hover_color: var(--sapButton_Lite_TextColor);--_ui5-v2-13-0-rc-0_split_button_transparent_disabled_background: transparent;--_ui5-v2-13-0-rc-0_split_button_inner_focused_border_radius_inner: 0;--_ui5-v2-13-0-rc-0_split_button_emphasized_separator_color: var(--sapButton_Emphasized_TextColor);--_ui5-v2-13-0-rc-0_split_button_positive_separator_color: var(--sapButton_Accept_BorderColor);--_ui5-v2-13-0-rc-0_split_button_negative_separator_color: var(--sapButton_Reject_BorderColor);--_ui5-v2-13-0-rc-0_split_button_attention_separator_color: var(--sapButton_Attention_BorderColor);--_ui5-v2-13-0-rc-0_split_button_attention_separator_color_default: var(--sapButton_Attention_BorderColor);--_ui5-v2-13-0-rc-0_split_button_host_default_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_BorderColor);--_ui5-v2-13-0-rc-0_split_button_host_attention_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Attention_BorderColor);--_ui5-v2-13-0-rc-0_split_button_host_emphasized_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Emphasized_BorderColor);--_ui5-v2-13-0-rc-0_split_button_host_positive_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Accept_BorderColor);--_ui5-v2-13-0-rc-0_split_button_host_negative_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Reject_BorderColor);--_ui5-v2-13-0-rc-0_split_button_host_transparent_box_shadow: inset 0 0 0 var(--sapButton_BorderWidth) var(--sapButton_Lite_BorderColor);--_ui5-v2-13-0-rc-0_split_button_host_transparent_hover_box_shadow: none;--_ui5-v2-13-0-rc-0_split_text_button_border_color: transparent;--_ui5-v2-13-0-rc-0_split_text_button_background_color: transparent;--_ui5-v2-13-0-rc-0_split_text_button_emphasized_border: var(--sapButton_BorderWidth) solid var(--sapButton_Emphasized_BorderColor);--_ui5-v2-13-0-rc-0_split_text_button_emphasized_border_width: .0625rem;--_ui5-v2-13-0-rc-0_split_text_button_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5-v2-13-0-rc-0_split_text_button_positive_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Accept_BorderColor);--_ui5-v2-13-0-rc-0_split_text_button_negative_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Reject_BorderColor);--_ui5-v2-13-0-rc-0_split_text_button_attention_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Attention_BorderColor);--_ui5-v2-13-0-rc-0_split_text_button_transparent_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5-v2-13-0-rc-0_split_arrow_button_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5-v2-13-0-rc-0_split_arrow_button_emphasized_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Emphasized_BorderColor);--_ui5-v2-13-0-rc-0_split_arrow_button_positive_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Accept_BorderColor);--_ui5-v2-13-0-rc-0_split_arrow_button_negative_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Reject_BorderColor);--_ui5-v2-13-0-rc-0_split_arrow_button_attention_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_Attention_BorderColor);--_ui5-v2-13-0-rc-0_split_arrow_button_transparent_hover_border: var(--sapButton_BorderWidth) solid var(--sapButton_BorderColor);--_ui5-v2-13-0-rc-0_split_text_button_hover_border_right: none;--_ui5-v2-13-0-rc-0_split_text_button_positive_hover_border_right: none;--_ui5-v2-13-0-rc-0_split_text_button_negative_hover_border_right: none;--_ui5-v2-13-0-rc-0_split_text_button_attention_hover_border_right: none;--_ui5-v2-13-0-rc-0_split_text_button_transparent_hover_border_right: none;--_ui5-v2-13-0-rc-0_split_button_middle_separator_hover_display_emphasized: block;--_ui5-v2-13-0-rc-0_switch_height: 2.75rem;--_ui5-v2-13-0-rc-0_switch_width: 3.25rem;--_ui5-v2-13-0-rc-0_switch_min_width: 3.875rem;--_ui5-v2-13-0-rc-0_switch_with_label_width: 100%;--_ui5-v2-13-0-rc-0_switch_focus_outline: var(--_ui5-v2-13-0-rc-0_switch_foucs_border_size) dotted var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_switch_root_outline_top: .25rem;--_ui5-v2-13-0-rc-0_switch_root_outline_bottom: .25rem;--_ui5-v2-13-0-rc-0_switch_root_outline_left: 0;--_ui5-v2-13-0-rc-0_switch_root_outline_right: 0;--_ui5-v2-13-0-rc-0_switch_foucs_border_size: 1px;--_ui5-v2-13-0-rc-0-switch-root-border-radius: 0;--_ui5-v2-13-0-rc-0-switch-root-box-shadow: none;--_ui5-v2-13-0-rc-0_switch_root_after_outline: none;--_ui5-v2-13-0-rc-0_switch_disabled_opacity: .4;--_ui5-v2-13-0-rc-0_switch_transform: translateX(100%) translateX(-1.875rem);--_ui5-v2-13-0-rc-0_switch_transform_with_label: translateX(100%) translateX(-1.875rem);--_ui5-v2-13-0-rc-0_switch_rtl_transform: translateX(-100%) translateX(1.875rem);--_ui5-v2-13-0-rc-0_switch_rtl_transform_with_label: translateX(-100%) translateX(1.875rem);--_ui5-v2-13-0-rc-0_switch_track_with_label_width: 100%;--_ui5-v2-13-0-rc-0_switch_track_with_label_height: 1.375rem;--_ui5-v2-13-0-rc-0_switch_track_width: 100%;--_ui5-v2-13-0-rc-0_switch_track_height: 1.375rem;--_ui5-v2-13-0-rc-0_switch_track_border_radius: .75rem;--_ui5-v2-13-0-rc-0-switch-track-border: 1px solid;--_ui5-v2-13-0-rc-0_switch_track_active_background_color: var(--sapButton_Track_Selected_Background);--_ui5-v2-13-0-rc-0_switch_track_inactive_background_color: var(--sapButton_Track_Background);--_ui5-v2-13-0-rc-0_switch_track_hover_active_background_color: var(--sapButton_Track_Selected_Background);--_ui5-v2-13-0-rc-0_switch_track_hover_inactive_background_color: var(--sapButton_Track_Background);--_ui5-v2-13-0-rc-0_switch_track_active_border_color: var(--sapContent_ForegroundBorderColor);--_ui5-v2-13-0-rc-0_switch_track_inactive_border_color: var(--sapContent_ForegroundBorderColor);--_ui5-v2-13-0-rc-0_switch_track_hover_active_border_color: var(--sapButton_Hover_BorderColor);--_ui5-v2-13-0-rc-0_switch_track_hover_inactive_border_color: var(--sapButton_Hover_BorderColor);--_ui5-v2-13-0-rc-0_switch_track_semantic_accept_background_color: var(--sapSuccessBackground);--_ui5-v2-13-0-rc-0_switch_track_semantic_reject_background_color: var(--sapErrorBackground);--_ui5-v2-13-0-rc-0_switch_track_semantic_hover_accept_background_color: var(--sapSuccessBackground);--_ui5-v2-13-0-rc-0_switch_track_semantic_hover_reject_background_color: var(--sapErrorBackground);--_ui5-v2-13-0-rc-0_switch_track_semantic_accept_border_color: var(--sapSuccessBorderColor);--_ui5-v2-13-0-rc-0_switch_track_semantic_reject_border_color: var(--sapErrorBorderColor);--_ui5-v2-13-0-rc-0_switch_track_semantic_hover_accept_border_color: var(--sapSuccessBorderColor);--_ui5-v2-13-0-rc-0_switch_track_semantic_hover_reject_border_color: var(--sapErrorBorderColor);--_ui5-v2-13-0-rc-0_switch_track_transition: none;--_ui5-v2-13-0-rc-0_switch_track_icon_display: none;--_ui5-v2-13-0-rc-0_switch_handle_width: 2rem;--_ui5-v2-13-0-rc-0_switch_handle_height: 2rem;--_ui5-v2-13-0-rc-0_switch_handle_with_label_width: 2rem;--_ui5-v2-13-0-rc-0_switch_handle_with_label_height: 2rem;--_ui5-v2-13-0-rc-0_switch_handle_border: var(--_ui5-v2-13-0-rc-0_switch_handle_border_width) solid var(--sapButton_Handle_BorderColor);--_ui5-v2-13-0-rc-0_switch_handle_border_width: .0625rem;--_ui5-v2-13-0-rc-0_switch_handle_border_radius: 1rem;--_ui5-v2-13-0-rc-0_switch_handle_active_background_color: var(--sapButton_Selected_Background);--_ui5-v2-13-0-rc-0_switch_handle_inactive_background_color: var(--sapButton_TokenBackground);--_ui5-v2-13-0-rc-0_switch_handle_hover_active_background_color: var(--sapButton_Selected_Hover_Background);--_ui5-v2-13-0-rc-0_switch_handle_hover_inactive_background_color: var(--sapButton_Handle_Hover_Background);--_ui5-v2-13-0-rc-0_switch_handle_active_border_color: var(--sapButton_Selected_BorderColor);--_ui5-v2-13-0-rc-0_switch_handle_inactive_border_color: var(--sapContent_ForegroundBorderColor);--_ui5-v2-13-0-rc-0_switch_handle_hover_active_border_color: var(--sapButton_Selected_BorderColor);--_ui5-v2-13-0-rc-0_switch_handle_hover_inactive_border_color: var(--sapButton_Hover_BorderColor);--_ui5-v2-13-0-rc-0_switch_handle_semantic_accept_background_color: var(--sapButton_Background);--_ui5-v2-13-0-rc-0_switch_handle_semantic_reject_background_color: var(--sapButton_Background);--_ui5-v2-13-0-rc-0_switch_handle_semantic_hover_accept_background_color: var(--sapSuccessBackground);--_ui5-v2-13-0-rc-0_switch_handle_semantic_hover_reject_background_color: var(--sapErrorBackground);--_ui5-v2-13-0-rc-0_switch_handle_semantic_accept_border_color: var(--sapSuccessBorderColor);--_ui5-v2-13-0-rc-0_switch_handle_semantic_reject_border_color: var(--sapErrorBorderColor);--_ui5-v2-13-0-rc-0_switch_handle_semantic_hover_accept_border_color: var(--sapSuccessBorderColor);--_ui5-v2-13-0-rc-0_switch_handle_semantic_hover_reject_border_color: var(--sapErrorBorderColor);--_ui5-v2-13-0-rc-0_switch_handle_on_hover_box_shadow: none;--_ui5-v2-13-0-rc-0_switch_handle_off_hover_box_shadow: none;--_ui5-v2-13-0-rc-0_switch_handle_semantic_on_hover_box_shadow: var(--sapContent_Informative_Shadow);--_ui5-v2-13-0-rc-0_switch_handle_semantic_off_hover_box_shadow: var(--sapContent_Negative_Shadow);--_ui5-v2-13-0-rc-0_switch_handle_left: -.0625rem;--_ui5-v2-13-0-rc-0-switch-slider-texts-display: inline;--_ui5-v2-13-0-rc-0_switch_text_font_family: \"72override\", var(--sapFontFamily);--_ui5-v2-13-0-rc-0_switch_text_font_size: var(--sapFontSmallSize);--_ui5-v2-13-0-rc-0_switch_text_with_label_font_family: \"72override\", var(--sapFontFamily);--_ui5-v2-13-0-rc-0_switch_text_with_label_font_size: var(--sapFontSmallSize);--_ui5-v2-13-0-rc-0_switch_text_with_label_width: none;--_ui5-v2-13-0-rc-0_switch_text_width: none;--_ui5-v2-13-0-rc-0_switch_text_inactive_left: auto;--_ui5-v2-13-0-rc-0_switch_text_inactive_left_alternate: auto;--_ui5-v2-13-0-rc-0_switch_text_inactive_right: .125rem;--_ui5-v2-13-0-rc-0_switch_text_inactive_right_alternate: .125rem;--_ui5-v2-13-0-rc-0_switch_text_active_left: calc(-100% + 2rem) ;--_ui5-v2-13-0-rc-0_switch_text_active_left_alternate: calc(-100% + 2rem) ;--_ui5-v2-13-0-rc-0_switch_text_active_color: var(--sapButton_Track_Selected_TextColor);--_ui5-v2-13-0-rc-0_switch_text_inactive_color: var(--sapTextColor);--_ui5-v2-13-0-rc-0_switch_text_semantic_accept_color: var(--sapPositiveElementColor);--_ui5-v2-13-0-rc-0_switch_text_semantic_reject_color: var(--sapNegativeElementColor);--_ui5-v2-13-0-rc-0_switch_text_overflow: none;--_ui5-v2-13-0-rc-0_switch_text_z_index: inherit;--_ui5-v2-13-0-rc-0_switch_text_hidden: hidden;--_ui5-v2-13-0-rc-0_switch_text_min_width: 1.625rem;--_ui5-v2-13-0-rc-0_switch_icon_width: .75rem;--_ui5-v2-13-0-rc-0_switch_icon_height: .75rem;--_ui5-v2-13-0-rc-0_tc_header_height: var(--_ui5-v2-13-0-rc-0_tc_item_height);--_ui5-v2-13-0-rc-0_tc_header_height_text_only: var(--_ui5-v2-13-0-rc-0_tc_item_text_only_height);--_ui5-v2-13-0-rc-0_tc_header_height_text_with_additional_text: var(--_ui5-v2-13-0-rc-0_tc_item_text_only_with_additional_text_height);--_ui5-v2-13-0-rc-0_tc_header_box_shadow: var(--sapContent_HeaderShadow);--_ui5-v2-13-0-rc-0_tc_header_background: var(--sapObjectHeader_Background);--_ui5-v2-13-0-rc-0_tc_header_background_translucent: var(--sapObjectHeader_Background);--_ui5-v2-13-0-rc-0_tc_content_background: var(--sapBackgroundColor);--_ui5-v2-13-0-rc-0_tc_content_background_translucent: var(--sapGroup_ContentBackground);--_ui5-v2-13-0-rc-0_tc_headeritem_padding: 1rem;--_ui5-v2-13-0-rc-0_tc_headerItem_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_tc_headerItem_additional_text_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_tc_headerItem_text_selected_color: var(--sapTab_Selected_TextColor);--_ui5-v2-13-0-rc-0_tc_headerItem_text_selected_hover_color: var(--sapSelectedColor);--_ui5-v2-13-0-rc-0_tc_headeritem_text_font_weight: normal;--_ui5-v2-13-0-rc-0_tc_headerItem_additional_text_font_weight: normal;--_ui5-v2-13-0-rc-0_tc_headerItem_neutral_border_color: var(--sapTab_Neutral_ForegroundColor);--_ui5-v2-13-0-rc-0_tc_headerItem_transition: none;--_ui5-v2-13-0-rc-0_tc_headerItemContent_border_radius: .125rem .125rem 0 0;--_ui5-v2-13-0-rc-0_tc_headerItemContent_border_bg: transparent;--_ui5-v2-13-0-rc-0_tc_headerItem_neutral_border_bg: transparent;--_ui5-v2-13-0-rc-0_tc_headerItem_positive_border_bg: transparent;--_ui5-v2-13-0-rc-0_tc_headerItem_negative_border_bg: transparent;--_ui5-v2-13-0-rc-0_tc_headerItem_critical_border_bg: transparent;--_ui5-v2-13-0-rc-0_tc_headerItemContent_border_height: 0;--_ui5-v2-13-0-rc-0_tc_headerItem_focus_border: var(--sapContent_FocusWidth) var(--sapContent_FocusStyle) var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_tc_headerItem_text_focus_border_offset_left: 0px;--_ui5-v2-13-0-rc-0_tc_headerItem_text_focus_border_offset_right: 0px;--_ui5-v2-13-0-rc-0_tc_headerItem_text_focus_border_offset_top: 0px;--_ui5-v2-13-0-rc-0_tc_headerItem_text_focus_border_offset_bottom: 0px;--_ui5-v2-13-0-rc-0_tc_headerItem_mixed_mode_focus_border_offset_left: .75rem;--_ui5-v2-13-0-rc-0_tc_headerItem_mixed_mode_focus_border_offset_right: .625rem;--_ui5-v2-13-0-rc-0_tc_headerItem_mixed_mode_focus_border_offset_top: .75rem;--_ui5-v2-13-0-rc-0_tc_headerItem_mixed_mode_focus_border_offset_bottom: .75rem;--_ui5-v2-13-0-rc-0_tc_headerItemContent_default_focus_border: none;--_ui5-v2-13-0-rc-0_tc_headerItemContent_focus_border_radius: 0;--_ui5-v2-13-0-rc-0_tc_headerItemSemanticIcon_display: none;--_ui5-v2-13-0-rc-0_tc_headerItemSemanticIcon_size: .75rem;--_ui5-v2-13-0-rc-0_tc_headerItem_focus_border_radius: 0px;--_ui5-v2-13-0-rc-0_tc_mixedMode_itemText_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_tc_mixedMode_itemText_font_family: var(--sapFontFamily);--_ui5-v2-13-0-rc-0_tc_mixedMode_itemText_font_size: var(--sapFontSmallSize);--_ui5-v2-13-0-rc-0_tc_mixedMode_itemText_font_weight: normal;--_ui5-v2-13-0-rc-0_tc_headerItem_expand_button_margin_inline_start: .625rem;--_ui5-v2-13-0-rc-0_tc_headerItem_single_click_expand_button_margin_inline_start: .875rem;--_ui5-v2-13-0-rc-0_tc_headerItem_expand_button_border_radius: var(--sapButton_BorderCornerRadius);--_ui5-v2-13-0-rc-0_tc_headerItem_expand_button_separator_display: none;--_ui5-v2-13-0-rc-0_tc_overflowItem_positive_color: var(--sapPositiveColor);--_ui5-v2-13-0-rc-0_tc_overflowItem_negative_color: var(--sapNegativeColor);--_ui5-v2-13-0-rc-0_tc_overflowItem_critical_color: var(--sapCriticalColor);--_ui5-v2-13-0-rc-0_tc_overflowItem_focus_offset: .125rem;--_ui5-v2-13-0-rc-0_tc_overflowItem_indent: .5rem;--_ui5-v2-13-0-rc-0_tc_overflowItem_extra_indent: 0rem;--_ui5-v2-13-0-rc-0_tc_headerItemIcon_border: 1px solid var(--sapHighlightColor);--_ui5-v2-13-0-rc-0_tc_headerItemIcon_semantic_selected_color: var(--sapGroup_ContentBackground);--_ui5-v2-13-0-rc-0_tc_headerItem_focus_border_offset: -2px;--_ui5-v2-13-0-rc-0_tc_headerItemIcon_focus_border_radius: 0;--_ui5-v2-13-0-rc-0_tc_overflow_text_color: var(--sapButton_TextColor);--_ui5-v2-13-0-rc-0_tc_header_border_bottom: .0625rem solid var(--sapObjectHeader_Background);--_ui5-v2-13-0-rc-0_tc_overflowItem_default_color: var(--sapNeutralTextColor);--_ui5-v2-13-0-rc-0_tc_overflowItem_current_color: CurrentColor;--_ui5-v2-13-0-rc-0_tc_content_border_bottom: .0625rem solid var(--sapObjectHeader_BorderColor);--_ui5-v2-13-0-rc-0_tc_headerItem_text_hover_color: #1a1c1f;--_ui5-v2-13-0-rc-0_text_max_lines: initial;--_ui5-v2-13-0-rc-0_textarea_state_border_width: .125rem;--_ui5-v2-13-0-rc-0_textarea_information_border_width: .125rem;--_ui5-v2-13-0-rc-0_textarea_placeholder_font_style: italic;--_ui5-v2-13-0-rc-0_textarea_value_state_error_warning_placeholder_font_weight: normal;--_ui5-v2-13-0-rc-0_textarea_error_placeholder_font_style: italic;--_ui5-v2-13-0-rc-0_textarea_error_placeholder_color: var(--sapField_PlaceholderTextColor);--_ui5-v2-13-0-rc-0_textarea_error_hover_background_color: var(--sapField_Hover_Background);--_ui5-v2-13-0-rc-0_textarea_hover_border: var(--sapField_BorderWidth) var(--sapField_BorderStyle) var(--sapField_Hover_BorderColor);--_ui5-v2-13-0-rc-0_textarea_error_warning_border_style: solid;--_ui5-v2-13-0-rc-0_textarea_disabled_opacity: .4;--_ui5-v2-13-0-rc-0_textarea_line_height: 1.4;--_ui5-v2-13-0-rc-0_textarea_focus_pseudo_element_content: \"\";--_ui5-v2-13-0-rc-0_textarea_focused_value_state_error_background: var(--sapField_InvalidBackground);--_ui5-v2-13-0-rc-0_textarea_focused_value_state_warning_background: var(--sapField_WarningBackground);--_ui5-v2-13-0-rc-0_textarea_focused_value_state_success_background: var(--sapField_SuccessBackground);--_ui5-v2-13-0-rc-0_textarea_focused_value_state_information_background: var(--sapField_InformationBackground);--_ui5-v2-13-0-rc-0_textarea_focused_value_state_error_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_textarea_focused_value_state_warning_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_textarea_focused_value_state_success_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_textarea_focus_offset: 1px;--_ui5-v2-13-0-rc-0_textarea_readonly_focus_offset: 1px;--_ui5-v2-13-0-rc-0_textarea_value_state_focus_offset: 1px;--_ui5-v2-13-0-rc-0_textarea_focus_outline_color: var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_textarea_min_height: 2.25rem;--_ui5-v2-13-0-rc-0_textarea_wrapper_padding: 0;--_ui5-v2-13-0-rc-0_textarea_success_wrapper_padding: 0;--_ui5-v2-13-0-rc-0_textarea_warning_error_wrapper_padding: 0;--_ui5-v2-13-0-rc-0_textarea_information_wrapper_padding: 0;--_ui5-v2-13-0-rc-0_textarea_padding_right_and_left: .5625rem;--_ui5-v2-13-0-rc-0_textarea_padding_right_and_left_error_warning: .5rem;--_ui5-v2-13-0-rc-0_textarea_padding_right_and_left_information: .5rem;--_ui5-v2-13-0-rc-0_textarea_padding_right_and_left_readonly: .5625rem;--_ui5-v2-13-0-rc-0_textarea_padding_top: .4375rem;--_ui5-v2-13-0-rc-0_textarea_padding_bottom: .4375rem;--_ui5-v2-13-0-rc-0_textarea_padding_top_readonly: .4375rem;--_ui5-v2-13-0-rc-0_textarea_padding_bottom_readonly:.4375rem;--_ui5-v2-13-0-rc-0_textarea_padding_top_error_warning: .375rem;--_ui5-v2-13-0-rc-0_textarea_padding_bottom_error_warning: .375rem;--_ui5-v2-13-0-rc-0_textarea_padding_top_information: .375rem;--_ui5-v2-13-0-rc-0_textarea_padding_bottom_information: .375rem;--_ui5-v2-13-0-rc-0_textarea_readonly_border_style: var(--sapField_BorderStyle);--_ui5-v2-13-0-rc-0-time_picker_border_radius: 0;--_ui5-v2-13-0-rc-0_toast_vertical_offset: 3rem;--_ui5-v2-13-0-rc-0_toast_horizontal_offset: 2rem;--_ui5-v2-13-0-rc-0_toast_background: var(--sapIndicationColor_9_Background);--_ui5-v2-13-0-rc-0_toast_shadow: var(--sapContent_Lite_Shadow);--_ui5-v2-13-0-rc-0_toast_offset_width: -.1875rem;--_ui5-v2-13-0-rc-0_toggle_button_emphasized_text_shadow: none;--_ui5-v2-13-0-rc-0_yearpicker_item_margin: .0625rem;--_ui5-v2-13-0-rc-0_yearpicker_item_border: .0625rem solid var(--sapButton_Lite_BorderColor);--_ui5-v2-13-0-rc-0_yearpicker_item_hover_border: .0625rem solid var(--sapButton_Lite_Hover_BorderColor);--_ui5-v2-13-0-rc-0_yearpicker_item_selected_border: .0625rem solid var(--sapButton_Selected_BorderColor);--_ui5-v2-13-0-rc-0_yearpicker_item_selected_hover_border: .0625rem solid var(--sapButton_Selected_Hover_BorderColor);--_ui5-v2-13-0-rc-0_yearpicker_item_border_radius: .25rem;--_ui5-v2-13-0-rc-0_calendar_header_arrow_button_border: none;--_ui5-v2-13-0-rc-0_calendar_header_arrow_button_border_radius: .25rem;--_ui5-v2-13-0-rc-0_calendar_header_middle_button_width: 6.25rem;--_ui5-v2-13-0-rc-0_calendar_header_middle_button_flex: 1 1 auto;--_ui5-v2-13-0-rc-0_calendar_header_middle_button_focus_border_radius: .25rem;--_ui5-v2-13-0-rc-0_calendar_header_middle_button_focus_border: none;--_ui5-v2-13-0-rc-0_calendar_header_middle_button_focus_after_display: block;--_ui5-v2-13-0-rc-0_calendar_header_arrow_button_box_shadow: none;--_ui5-v2-13-0-rc-0_calendar_header_middle_button_focus_background: transparent;--_ui5-v2-13-0-rc-0_calendar_header_middle_button_focus_outline: none;--_ui5-v2-13-0-rc-0_calendar_header_middle_button_focus_active_outline: none;--_ui5-v2-13-0-rc-0_calendar_header_middle_button_focus_active_background: var(--sapButton_Active_Background);--_ui5-v2-13-0-rc-0_calendar_header_middle_button_focus_after_border: 1px dotted var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_calendar_header_middle_button_focus_after_width: calc(100% - .375rem) ;--_ui5-v2-13-0-rc-0_calendar_header_middle_button_focus_after_height: calc(100% - .375rem) ;--_ui5-v2-13-0-rc-0_calendar_header_middle_button_focus_after_top_offset: .125rem;--_ui5-v2-13-0-rc-0_calendar_header_middle_button_focus_after_left_offset: .125rem;--_ui5-v2-13-0-rc-0-toolbar-padding-left: .5rem;--_ui5-v2-13-0-rc-0-toolbar-padding-right: .5rem;--_ui5-v2-13-0-rc-0-toolbar-item-margin-left: 0;--_ui5-v2-13-0-rc-0-toolbar-item-margin-right: .25rem;--_ui5-v2-13-0-rc-0_load_more_padding: 0;--_ui5-v2-13-0-rc-0_load_more_border: 1px top solid transparent;--_ui5-v2-13-0-rc-0_load_more_border_radius: none;--_ui5-v2-13-0-rc-0_load_more_outline_width: 1px;--_ui5-v2-13-0-rc-0_token_background: var(--sapButton_TokenBackground);--_ui5-v2-13-0-rc-0_token_readonly_background: var(--sapButton_TokenBackground);--_ui5-v2-13-0-rc-0_token_readonly_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_token_border_radius: var(--sapButton_BorderCornerRadius);--_ui5-v2-13-0-rc-0_token_outline_offset: -.125rem;--_ui5-v2-13-0-rc-0_token_right_margin: .3125rem;--_ui5-v2-13-0-rc-0_token_left_padding: .3125rem;--_ui5-v2-13-0-rc-0_token_readonly_padding: .25rem .375rem;--_ui5-v2-13-0-rc-0_token_selected_focus_outline: var(--_ui5-v2-13-0-rc-0_token_focus_outline_width) dotted var(--sapContent_ContrastFocusColor);--_ui5-v2-13-0-rc-0_token_focus_outline: var(--_ui5-v2-13-0-rc-0_token_focus_outline_width) dotted var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_token_focused_selected_border: 1px solid var(--sapButton_Selected_BorderColor);--ui5-v2-13-0-rc-0_token_focus_pseudo_element_content: none;--_ui5-v2-13-0-rc-0_token_focus_offset: -.25rem;--_ui5-v2-13-0-rc-0_token_selected_text_font_family: \"72override\", var(--sapFontFamily);--_ui5-v2-13-0-rc-0_token_selected_internal_border_bottom: none;--_ui5-v2-13-0-rc-0_token_selected_internal_border_bottom_radius: 0;--_ui5-v2-13-0-rc-0_token_focus_outline_width: .0625rem;--_ui5-v2-13-0-rc-0_token_text_color: var(--sapTextColor);--_ui5-v2-13-0-rc-0_tokenizer_gap: .625rem .25rem;--_ui5-v2-13-0-rc-0_tokenizer_n_more_text_color: var(--sapField_TextColor);--_ui5-v2-13-0-rc-0_tokenizer-popover_offset: .3125rem;--_ui5-v2-13-0-rc-0_value_state_message_border: none;--_ui5-v2-13-0-rc-0_value_state_header_border: none;--_ui5-v2-13-0-rc-0_input_value_state_icon_display: none;--_ui5-v2-13-0-rc-0_value_state_message_padding: .5rem;--_ui5-v2-13-0-rc-0_value_state_message_padding_phone: .5rem .5rem .5rem 1rem;--_ui5-v2-13-0-rc-0_value_state_header_padding: .5625rem 1rem;--_ui5-v2-13-0-rc-0_value_state_message_popover_box_shadow: none;--_ui5-v2-13-0-rc-0_value_state_message_icon_width: .875rem;--_ui5-v2-13-0-rc-0_value_state_message_icon_height: .875rem;--_ui5-v2-13-0-rc-0_input_value_state_icon_offset: .5rem;--_ui5-v2-13-0-rc-0_value_state_header_offset: -.125rem;--_ui5-v2-13-0-rc-0_value_state_message_popover_border_radius: 0;--_ui5-v2-13-0-rc-0_value_state_header_box_shadow_error: inset 0 -.0625rem var(--sapField_InvalidColor);--_ui5-v2-13-0-rc-0_value_state_header_box_shadow_information: inset 0 -.0625rem var(--sapField_InformationColor);--_ui5-v2-13-0-rc-0_value_state_header_box_shadow_success: inset 0 -.0625rem var(--sapField_SuccessColor);--_ui5-v2-13-0-rc-0_value_state_header_box_shadow_warning: inset 0 -.0625rem var(--sapField_WarningColor);--_ui5-v2-13-0-rc-0_value_state_message_line_height: 1rem;--_ui5-v2-13-0-rc-0_value_state_message_icon_offset_phone: 1rem;--_ui5-v2-13-0-rc-0_value_state_header_border_bottom: none;--_ui5-v2-13-0-rc-0_slider_progress_container_background: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_slider_progress_container_dot_display: none;--_ui5-v2-13-0-rc-0_slider_progress_container_dot_background: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_slider_progress_border: none;--_ui5-v2-13-0-rc-0_slider_padding: 1.406rem 1.0625rem;--_ui5-v2-13-0-rc-0_slider_inner_height: .25rem;--_ui5-v2-13-0-rc-0_slider_outer_height: 1.6875rem;--_ui5-v2-13-0-rc-0_slider_progress_border_radius: .25rem;--_ui5-v2-13-0-rc-0_slider_progress_background: var(--sapActiveColor);--_ui5-v2-13-0-rc-0_slider_handle_icon_display: none;--_ui5-v2-13-0-rc-0_range_slider_root_hover_handle_icon_display: none;--_ui5-v2-13-0-rc-0_slider_handle_border: solid .125rem var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_slider_handle_border_radius: 1rem;--_ui5-v2-13-0-rc-0_slider_tickmark_bg: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_slider_handle_hover_border: .125rem solid var(--sapButton_Hover_BorderColor);--_ui5-v2-13-0-rc-0_slider_handle_outline: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_slider_handle_focus_border: var(--_ui5-v2-13-0-rc-0_slider_handle_hover_border);--_ui5-v2-13-0-rc-0_slider_handle_outline_offset: .075rem;--_ui5-v2-13-0-rc-0_slider_progress_outline: .0625rem dotted var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_slider_progress_outline_offset: -.8125rem;--_ui5-v2-13-0-rc-0_slider_disabled_opacity: .4;--_ui5-v2-13-0-rc-0_slider_tooltip_fontsize: var(--sapFontSmallSize);--_ui5-v2-13-0-rc-0_slider_tooltip_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_slider_tooltip_background: var(--sapField_Background);--_ui5-v2-13-0-rc-0_slider_tooltip_border_radius: var(--sapElement_BorderCornerRadius);--_ui5-v2-13-0-rc-0_slider_tooltip_border_color: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_slider_tooltip_border: .0625rem solid var(--_ui5-v2-13-0-rc-0_slider_tooltip_border_color);--_ui5-v2-13-0-rc-0_slider_tooltip_box_shadow: none;--_ui5-v2-13-0-rc-0_slider_tooltip_padding: .4125rem;--_ui5-v2-13-0-rc-0_slider_tooltip_height: 1rem;--_ui5-v2-13-0-rc-0_slider_tooltip_min_width: 2rem;--_ui5-v2-13-0-rc-0_slider_tooltip_bottom: 2rem;--_ui5-v2-13-0-rc-0_slider_label_fontsize: var(--sapFontSmallSize);--_ui5-v2-13-0-rc-0_slider_label_color: var(--sapContent_LabelColor);--_ui5-v2-13-0-rc-0_range_slider_progress_focus_display: none;--_ui5-v2-13-0-rc-0_range_slider_progress_focus_top: -1.063rem;--_ui5-v2-13-0-rc-0_range_slider_progress_focus_left: -1.438rem;--_ui5-v2-13-0-rc-0_range_slider_progress_focus_padding: 0 1.375rem 0 1.438rem;--_ui5-v2-13-0-rc-0_range_slider_progress_focus_height: 2rem;--_ui5-v2-13-0-rc-0_range_slider_legacy_progress_focus_display: block;--_ui5-v2-13-0-rc-0_slider_handle_focus_width: 0;--_ui5-v2-13-0-rc-0_slider_start_end_point_size: .375rem;--_ui5-v2-13-0-rc-0_slider_start_end_point_left: -.875rem;--_ui5-v2-13-0-rc-0_slider_start_end_point_top: -.1875rem;--_ui5-v2-13-0-rc-0_slider_handle_background_focus: var(--sapButton_Active_Background);--_ui5-v2-13-0-rc-0_slider_handle_focused_tooltip_distance: var(--_ui5-v2-13-0-rc-0_slider_tooltip_bottom);--_ui5-v2-13-0-rc-0_slider_tooltip_border_box: content-box;--_ui5-v2-13-0-rc-0_range_slider_active_handle_icon_display: none;--_ui5-v2-13-0-rc-0_range_slider_progress_focus_width: 100%;--_ui5-v2-13-0-rc-0_slider_tickmark_height: 1rem;--_ui5-v2-13-0-rc-0_slider_progress_box_sizing: content-box;--_ui5-v2-13-0-rc-0_slider_tickmark_in_range_bg: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_range_slider_focus_outline_width: 100%;--_ui5-v2-13-0-rc-0_slider_progress_outline_offset_left: 0;--_ui5-v2-13-0-rc-0_range_slider_focus_outline_radius: 0;--_ui5-v2-13-0-rc-0_slider_progress_container_top: 0;--_ui5-v2-13-0-rc-0_slider_progress_height: 100%;--_ui5-v2-13-0-rc-0_slider_active_progress_border: none;--_ui5-v2-13-0-rc-0_slider_active_progress_left: 0;--_ui5-v2-13-0-rc-0_slider_active_progress_top: 0;--_ui5-v2-13-0-rc-0_slider_no_tickmarks_progress_container_top: var(--_ui5-v2-13-0-rc-0_slider_progress_container_top);--_ui5-v2-13-0-rc-0_slider_no_tickmarks_progress_height: var(--_ui5-v2-13-0-rc-0_slider_progress_height);--_ui5-v2-13-0-rc-0_slider_no_tickmarks_active_progress_border: var(--_ui5-v2-13-0-rc-0_slider_active_progress_border);--_ui5-v2-13-0-rc-0_slider_no_tickmarks_active_progress_left: var(--_ui5-v2-13-0-rc-0_slider_active_progress_left);--_ui5-v2-13-0-rc-0_slider_no_tickmarks_active_progress_top: var(--_ui5-v2-13-0-rc-0_slider_active_progress_top);--_ui5-v2-13-0-rc-0_slider_handle_focus_visibility: none;--_ui5-v2-13-0-rc-0_slider_handle_icon_size: 1rem;--_ui5-v2-13-0-rc-0_slider_inner_min_width: 4rem;--_ui5-v2-13-0-rc-0_range_slider_handle_background_focus: transparent;--_ui5-v2-13-0-rc-0_slider_handle_top: -.875rem;--_ui5-v2-13-0-rc-0_range_slider_handle_background: transparent;--_ui5-v2-13-0-rc-0_range_slider_handle_active_background: transparent;--_ui5-v2-13-0-rc-0_slider_handle_background: var(--sapButton_Background);--_ui5-v2-13-0-rc-0_slider_handle_hover_background: var(--sapButton_Hover_Background);--_ui5-v2-13-0-rc-0_range_slider_root_hover_handle_bg: transparent;--_ui5-v2-13-0-rc-0_range_slider_root_active_handle_icon_display: none;--_ui5-v2-13-0-rc-0_slider_handle_width: 1.875rem;--_ui5-v2-13-0-rc-0_slider_handle_height: 1.875rem;--_ui5-v2-13-0-rc-0_slider_handle_box_sizing: border-box;--_ui5-v2-13-0-rc-0_slider_tickmark_top: -.34375rem;--_ui5-v2-13-0-rc-0_step_input_input_error_background_color: var(--sapField_InvalidBackground);--_ui5-v2-13-0-rc-0-step_input_button_state_hover_background_color: var(--sapField_Background);--_ui5-v2-13-0-rc-0_step_input_border_style: 1px solid var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_step_input_border_style_hover: 1px solid var(--sapField_Hover_BorderColor);--_ui5-v2-13-0-rc-0_step_input_button_background_color:var(--sapField_Background);--_ui5-v2-13-0-rc-0_step_input_input_border: 1px solid transparent;--_ui5-v2-13-0-rc-0_step_input_input_margin_top: -.0625rem;--_ui5-v2-13-0-rc-0_step_input_button_display: inline-block;--_ui5-v2-13-0-rc-0_step_input_button_left: 0;--_ui5-v2-13-0-rc-0_step_input_button_right: 0;--_ui5-v2-13-0-rc-0_step_input_input_border_focused_after: var(--_ui5-v2-13-0-rc-0_input_focus_border_width) dotted var(--sapContent_FocusColor);--_ui5-v2-13-0-rc-0_step_input_input_border_top_bottom_focused_after: .0625rem;--_ui5-v2-13-0-rc-0_step_input_input_border_radius_focused_after: 0;--_ui5-v2-13-0-rc-0_step_input_input_information_border_color_focused_after: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_step_input_input_warning_border_color_focused_after: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_step_input_input_success_border_color_focused_after: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_step_input_input_error_border_color_focused_after: var(--sapField_BorderColor);--_ui5-v2-13-0-rc-0_step_input_disabled_button_background: var(--sapField_ReadOnly_Background);--_ui5-v2-13-0-rc-0_step_input_border_color_hover: var(--sapField_Hover_Background);--_ui5-v2-13-0-rc-0_step_input_border_hover: 1px solid var(--sapField_Hover_BorderColor);--_ui5-v2-13-0-rc-0_input_input_background_color: var(--sapField_InvalidBackground);--_ui5-v2-13-0-rc-0_step_input_min_width: 7.25rem;--_ui5-v2-13-0-rc-0_step_input_padding: 2.5rem;--_ui5-v2-13-0-rc-0_calendar_height: 24.5rem;--_ui5-v2-13-0-rc-0_calendar_width: 20rem;--_ui5-v2-13-0-rc-0_calendar_left_right_padding: .5rem;--_ui5-v2-13-0-rc-0_calendar_top_bottom_padding: 1rem;--_ui5-v2-13-0-rc-0_calendar_header_height: 3rem;--_ui5-v2-13-0-rc-0_calendar_header_arrow_button_width: 2.5rem;--_ui5-v2-13-0-rc-0_calendar_header_padding: .25rem 0;--_ui5-v2-13-0-rc-0_checkbox_root_side_padding: .6875rem;--_ui5-v2-13-0-rc-0_checkbox_icon_size: 1rem;--_ui5-v2-13-0-rc-0_checkbox_partially_icon_size: .75rem;--_ui5-v2-13-0-rc-0_custom_list_item_rb_min_width: 2.75rem;--_ui5-v2-13-0-rc-0_day_picker_item_width: 2.25rem;--_ui5-v2-13-0-rc-0_day_picker_item_height: 2.875rem;--_ui5-v2-13-0-rc-0_day_picker_empty_height: 3rem;--_ui5-v2-13-0-rc-0_day_picker_item_justify_content: space-between;--_ui5-v2-13-0-rc-0_daypicker_item_now_selected_two_calendar_focus_special_day_top: 2rem;--_ui5-v2-13-0-rc-0_daypicker_item_now_selected_two_calendar_focus_special_day_right: 1.4375rem;--_ui5-v2-13-0-rc-0_dp_two_calendar_item_secondary_text_height: 1rem;--_ui5-v2-13-0-rc-0_dp_two_calendar_item_text_padding_top: .4375rem;--_ui5-v2-13-0-rc-0_dp_two_calendar_item_secondary_text_padding_block: 0 .5rem;--_ui5-v2-13-0-rc-0_dp_two_calendar_item_secondary_text_padding: 0 .5rem;--_ui5-v2-13-0-rc-0_daypicker_item_now_selected_two_calendar_focus_secondary_text_padding_block: 0 .5rem;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_selected_focus_margin_bottom: 0;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_selected_focus_padding_right: .4375rem;--_ui5-v2-13-0-rc-0-calendar-legend-item-box-margin: .25rem;--_ui5-v2-13-0-rc-0-calendar-legend-item-box-inner-margin: .5rem;--_ui5-v2-13-0-rc-0_color_picker_slider_progress_container_height: 1.625rem;--_ui5-v2-13-0-rc-0_color_picker_slider_container_margin_top: -.5rem;--_ui5-v2-13-0-rc-0_color_picker_slider_handle_height: 2rem;--_ui5-v2-13-0-rc-0_color_picker_slider_handle_width: 1.0625rem;--_ui5-v2-13-0-rc-0_color_picker_slider_handle_after_height: 1.75rem;--_ui5-v2-13-0-rc-0_color_picker_slider_handle_focus_height: 2.125rem;--_ui5-v2-13-0-rc-0_color_picker_colors_wrapper_height: 2.25rem;--_ui5-v2-13-0-rc-0_color_picker_sliders_height: 3rem;--_ui5-v2-13-0-rc-0_color_picker_main_color_margin_bottom: 1rem;--_ui5-v2-13-0-rc-0_color_picker_slider_spacing: .9375rem;--_ui5-v2-13-0-rc-0_color_channel_toggle_button_width: 1.625rem;--_ui5-v2-13-0-rc-0_color_channel_toggle_button_margin-top: -.75rem;--_ui5-v2-13-0-rc-0_color_channel_hex_input_width: 4.8125rem;--_ui5-v2-13-0-rc-0-color_channel_margin_top: .25rem;--_ui5-v2-13-0-rc-0_color-palette-item-height: 1.75rem;--_ui5-v2-13-0-rc-0_color-palette-item-hover-height: 2.375rem;--_ui5-v2-13-0-rc-0_color-palette-item-margin: calc((var(--_ui5-v2-13-0-rc-0_color-palette-item-hover-height) - var(--_ui5-v2-13-0-rc-0_color-palette-item-height)) / 2);--_ui5-v2-13-0-rc-0_color-palette-row-width: 12rem;--_ui5-v2-13-0-rc-0_color-palette-swatch-container-padding: .3125rem .6875rem;--_ui5-v2-13-0-rc-0_datetime_picker_width: 40.0625rem;--_ui5-v2-13-0-rc-0_datetime_picker_height: 25rem;--_ui5-v2-13-0-rc-0_datetime_timeview_width: 17rem;--_ui5-v2-13-0-rc-0_datetime_timeview_phonemode_width: 19.5rem;--_ui5-v2-13-0-rc-0_datetime_timeview_phonemode_clocks_width: 24.5rem;--_ui5-v2-13-0-rc-0_datetime_dateview_phonemode_margin_bottom: 0;--_ui5-v2-13-0-rc-0_dialog_content_min_height: 2.75rem;--_ui5-v2-13-0-rc-0_dialog_footer_height: 2.75rem;--_ui5-v2-13-0-rc-0_input_inner_padding: 0 .625rem;--_ui5-v2-13-0-rc-0_input_inner_padding_with_icon: 0 .25rem 0 .625rem;--_ui5-v2-13-0-rc-0_input_inner_space_to_tokenizer: .125rem;--_ui5-v2-13-0-rc-0_input_inner_space_to_n_more_text: .1875rem;--_ui5-v2-13-0-rc-0_list_no_data_height: 3rem;--_ui5-v2-13-0-rc-0_list_item_cb_margin_right: 0;--_ui5-v2-13-0-rc-0_list_item_title_size: var(--sapFontLargeSize);--_ui5-v2-13-0-rc-0_list_no_data_font_size: var(--sapFontLargeSize);--_ui5-v2-13-0-rc-0_list_item_img_size: 3rem;--_ui5-v2-13-0-rc-0_list_item_img_top_margin: .5rem;--_ui5-v2-13-0-rc-0_list_item_img_bottom_margin: .5rem;--_ui5-v2-13-0-rc-0_list_item_img_hn_margin: .75rem;--_ui5-v2-13-0-rc-0_list_item_dropdown_base_height: 2.5rem;--_ui5-v2-13-0-rc-0_list_item_base_height: var(--sapElement_LineHeight);--_ui5-v2-13-0-rc-0_list_item_base_padding: 0 1rem;--_ui5-v2-13-0-rc-0_list_item_icon_size: 1.125rem;--_ui5-v2-13-0-rc-0_list_item_icon_padding-inline-end: .75rem;--_ui5-v2-13-0-rc-0_list_item_selection_btn_margin_top: calc(-1 * var(--_ui5-v2-13-0-rc-0_checkbox_wrapper_padding));--_ui5-v2-13-0-rc-0_list_item_content_vertical_offset: calc((var(--_ui5-v2-13-0-rc-0_list_item_base_height) - var(--_ui5-v2-13-0-rc-0_list_item_title_size)) / 2);--_ui5-v2-13-0-rc-0_group_header_list_item_height: 2.75rem;--_ui5-v2-13-0-rc-0_month_picker_item_height: 3rem;--_ui5-v2-13-0-rc-0_list_buttons_left_space: .125rem;--_ui5-v2-13-0-rc-0_form_item_min_height: 2.813rem;--_ui5-v2-13-0-rc-0_form_item_padding: .65rem;--_ui5-v2-13-0-rc-0-form-group-heading-height: 2.75rem;--_ui5-v2-13-0-rc-0_popup_default_header_height: 2.75rem;--_ui5-v2-13-0-rc-0_year_picker_item_height: 3rem;--_ui5-v2-13-0-rc-0_tokenizer_padding: .25rem;--_ui5-v2-13-0-rc-0_token_height: 1.625rem;--_ui5-v2-13-0-rc-0_token_icon_size: .75rem;--_ui5-v2-13-0-rc-0_token_icon_padding: .25rem .5rem;--_ui5-v2-13-0-rc-0_tl_bubble_padding: 1rem;--_ui5-v2-13-0-rc-0_tl_padding: 1rem 1rem 1rem .5rem;--_ui5-v2-13-0-rc-0_tl_li_margin_bottom: 1.625rem;--_ui5-v2-13-0-rc-0_tc_item_text: 3rem;--_ui5-v2-13-0-rc-0_tc_item_height: 4.75rem;--_ui5-v2-13-0-rc-0_tc_item_text_only_height: 2.75rem;--_ui5-v2-13-0-rc-0_tc_item_text_only_with_additional_text_height: 3.75rem;--_ui5-v2-13-0-rc-0_tc_item_text_line_height: 1.325rem;--_ui5-v2-13-0-rc-0_tc_item_icon_circle_size: 2.75rem;--_ui5-v2-13-0-rc-0_tc_item_icon_size: 1.25rem;--_ui5-v2-13-0-rc-0_tc_item_add_text_margin_top: .375rem;--_ui5-v2-13-0-rc-0_textarea_margin: .25rem 0;--_ui5-v2-13-0-rc-0_radio_button_height: 2.75rem;--_ui5-v2-13-0-rc-0_radio_button_label_side_padding: .875rem;--_ui5-v2-13-0-rc-0_radio_button_inner_size: 2.75rem;--_ui5-v2-13-0-rc-0_radio_button_svg_size: 1.375rem;--_ui5-v2-13-0-rc-0-responsive_popover_header_height: 2.75rem;--_ui5-v2-13-0-rc-0-tree-indent-step: 1.5rem;--_ui5-v2-13-0-rc-0-tree-toggle-box-width: 2.75rem;--_ui5-v2-13-0-rc-0-tree-toggle-box-height: 2.25rem;--_ui5-v2-13-0-rc-0-tree-toggle-icon-size: 1.0625rem;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_before_bottom: -1.5rem;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_before_right: -1.625rem;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_before_without_icon_bottom: -1.875rem;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_before_without_icon_right: -1.9375rem;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_after_top: calc(-100% - 1rem) ;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_after_height: calc(100% + 1rem) ;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_before_height: 100%;--_ui5-v2-13-0-rc-0_timeline_tli_horizontal_indicator_after_width: calc(100% + .25rem) ;--_ui5-v2-13-0-rc-0_timeline_tli_horizontal_indicator_after_left: 1.9375rem;--_ui5-v2-13-0-rc-0_timeline_tli_horizontal_without_icon_indicator_before_width: calc(100% + .5rem) ;--_ui5-v2-13-0-rc-0_timeline_tli_horizontal_indicator_before_width: calc(100% + .5rem) ;--_ui5-v2-13-0-rc-0_timeline_tli_icon_horizontal_indicator_after_width: calc(100% + .25rem) ;--_ui5-v2-13-0-rc-0_timeline_tli_without_icon_horizontal_indicator_before_width: calc(100% + .375rem) ;--_ui5-v2-13-0-rc-0_timeline_tli_horizontal_indicator_short_after_width: 100%;--_ui5-v2-13-0-rc-0_split_button_middle_separator_top: -.0625rem;--_ui5-v2-13-0-rc-0_split_button_middle_separator_height: 2.25rem;--_ui5-v2-13-0-rc-0-toolbar-separator-height: 2rem;--_ui5-v2-13-0-rc-0-toolbar-height: 2.75rem;--_ui5-v2-13-0-rc-0_toolbar_overflow_padding: .25rem .5rem;--_ui5-v2-13-0-rc-0_dynamic_page_title_actions_separator_height: var(--_ui5-v2-13-0-rc-0-toolbar-separator-height);--_ui5-v2-13-0-rc-0-calendar-legend-item-root-focus-offset: -.0625rem;--_ui5-v2-13-0-rc-0_color_picker_slider_handle_container_margin_top: .25rem}[data-ui5-compact-size],.ui5-content-density-compact,.sapUiSizeCompact{--_ui5-v2-13-0-rc-0_checkbox_label_offset: var(--_ui5-v2-13-0-rc-0_checkbox_compact_wrapper_padding);--_ui5-v2-13-0-rc-0_input_min_width: 2rem;--_ui5-v2-13-0-rc-0_input_icon_width: 2rem;--_ui5-v2-13-0-rc-0_input_error_warning_icon_padding: .1875rem .375rem .1875rem .4375rem;--_ui5-v2-13-0-rc-0_input_error_warning_focused_icon_padding: .1875rem .375rem .1875rem .4375rem;--_ui5-v2-13-0-rc-0_input_information_icon_padding: .1875rem .375rem .1875rem .4375rem;--_ui5-v2-13-0-rc-0_input_information_focused_icon_padding: .1875rem .375rem .1875rem .4375rem;--_ui5-v2-13-0-rc-0_input_custom_icon_padding: .25rem .5rem;--_ui5-v2-13-0-rc-0_input_error_warning_custom_icon_padding: .1875rem .5rem;--_ui5-v2-13-0-rc-0_input_error_warning_custom_focused_icon_padding: .1875rem .5rem;--_ui5-v2-13-0-rc-0_input_information_custom_icon_padding: .1875rem .5rem;--_ui5-v2-13-0-rc-0_input_information_custom_focused_icon_padding: .1875rem .5rem;--_ui5-v2-13-0-rc-0_input_icon_padding: .25rem .4375rem;--_ui5-v2-13-0-rc-0_panel_header_button_wrapper_padding: .1875rem .25rem;--_ui5-v2-13-0-rc-0_radio_button_min_width: 2rem;--_ui5-v2-13-0-rc-0_radio_button_focus_dist: .375rem;--_ui5-v2-13-0-rc-0_radio_button_outer_ring_padding_with_label: 0 .5rem;--_ui5-v2-13-0-rc-0_rating_indicator_item_height: .67em;--_ui5-v2-13-0-rc-0_rating_indicator_item_width: .67em;--_ui5-v2-13-0-rc-0_rating_indicator_readonly_item_height: .67em;--_ui5-v2-13-0-rc-0_rating_indicator_readonly_item_width: .67em;--_ui5-v2-13-0-rc-0_rating_indicator_component_spacing: .8125rem 0px;--_ui5-v2-13-0-rc-0_select_icon_width: 2rem;--_ui5-v2-13-0-rc-0_switch_height: 2rem;--_ui5-v2-13-0-rc-0_switch_width: 2.5rem;--_ui5-v2-13-0-rc-0_switch_with_label_width: 100%;--_ui5-v2-13-0-rc-0_switch_root_outline_top: 0;--_ui5-v2-13-0-rc-0_switch_root_outline_bottom: 0;--_ui5-v2-13-0-rc-0_switch_transform: translateX(100%) translateX(-1.5rem);--_ui5-v2-13-0-rc-0_switch_transform_with_label: translateX(100%) translateX( -1.5rem);--_ui5-v2-13-0-rc-0_switch_rtl_transform: translateX(1.5rem) translateX(-100%);--_ui5-v2-13-0-rc-0_switch_rtl_transform_with_label: translateX(1.5rem) translateX(-100%);--_ui5-v2-13-0-rc-0_switch_track_with_label_width: 100%;--_ui5-v2-13-0-rc-0_switch_track_with_label_height: 1.375rem;--_ui5-v2-13-0-rc-0_switch_track_width: 100%;--_ui5-v2-13-0-rc-0_switch_track_height: 1.375rem;--_ui5-v2-13-0-rc-0_switch_handle_width: 1.625rem;--_ui5-v2-13-0-rc-0_switch_handle_height: 1.625rem;--_ui5-v2-13-0-rc-0_switch_handle_with_label_width: 1.625rem;--_ui5-v2-13-0-rc-0_switch_handle_with_label_height: 1.625rem;--_ui5-v2-13-0-rc-0_switch_text_font_size: var(--sapFontSmallSize);--_ui5-v2-13-0-rc-0_switch_text_width: none;--_ui5-v2-13-0-rc-0_switch_text_active_left: calc(-100% + 1.625rem) ;--_ui5-v2-13-0-rc-0_textarea_padding_right_and_left: .4375rem;--_ui5-v2-13-0-rc-0_textarea_padding_right_and_left_error_warning: .375rem;--_ui5-v2-13-0-rc-0_textarea_padding_right_and_left_information: .375rem;--_ui5-v2-13-0-rc-0_textarea_padding_right_and_left_readonly: .4375rem;--_ui5-v2-13-0-rc-0_textarea_padding_top: .125rem;--_ui5-v2-13-0-rc-0_textarea_padding_bottom: .125rem;--_ui5-v2-13-0-rc-0_textarea_padding_top_readonly: .125rem;--_ui5-v2-13-0-rc-0_textarea_padding_bottom_readonly: .125rem;--_ui5-v2-13-0-rc-0_textarea_padding_top_error_warning: .0625rem;--_ui5-v2-13-0-rc-0_textarea_padding_bottom_error_warning: .0625rem;--_ui5-v2-13-0-rc-0_textarea_padding_top_information: .0625rem;--_ui5-v2-13-0-rc-0_textarea_padding_bottom_information: .0625rem;--_ui5-v2-13-0-rc-0_textarea_min_height: 1.625rem;--_ui5-v2-13-0-rc-0_tokenizer_gap: .375em .25rem;--_ui5-v2-13-0-rc-0_tokenizer-popover_offset: .1875rem;--_ui5-v2-13-0-rc-0_slider_handle_icon_size: .875rem;--_ui5-v2-13-0-rc-0_slider_padding: 1rem 1.0625rem;--_ui5-v2-13-0-rc-0_bar_base_height: 2.5rem;--_ui5-v2-13-0-rc-0_bar_subheader_height: 2.25rem;--_ui5-v2-13-0-rc-0_button_base_height: var(--sapElement_Compact_Height);--_ui5-v2-13-0-rc-0_button_base_padding: .4375rem;--_ui5-v2-13-0-rc-0_button_base_min_width: 2rem;--_ui5-v2-13-0-rc-0-button-badge-diameter: .625rem;--_ui5-v2-13-0-rc-0_calendar_height: 18rem;--_ui5-v2-13-0-rc-0_calendar_width: 17.75rem;--_ui5-v2-13-0-rc-0_calendar_left_right_padding: .25rem;--_ui5-v2-13-0-rc-0_calendar_top_bottom_padding: .5rem;--_ui5-v2-13-0-rc-0_calendar_header_height: 2rem;--_ui5-v2-13-0-rc-0_calendar_header_arrow_button_width: 2rem;--_ui5-v2-13-0-rc-0_calendar_header_padding: 0;--_ui5-v2-13-0-rc-0-calendar-legend-root-padding: .5rem;--_ui5-v2-13-0-rc-0-calendar-legend-root-width: 16.75rem;--_ui5-v2-13-0-rc-0_checkbox_root_side_padding: var(--_ui5-v2-13-0-rc-0_checkbox_wrapped_focus_padding);--_ui5-v2-13-0-rc-0_checkbox_width_height: var(--_ui5-v2-13-0-rc-0_checkbox_compact_width_height);--_ui5-v2-13-0-rc-0_checkbox_wrapper_padding: var(--_ui5-v2-13-0-rc-0_checkbox_compact_wrapper_padding);--_ui5-v2-13-0-rc-0_checkbox_focus_position: var(--_ui5-v2-13-0-rc-0_checkbox_compact_focus_position);--_ui5-v2-13-0-rc-0_checkbox_wrapped_focus_inset_block: var(--_ui5-v2-13-0-rc-0_checkbox_focus_position);--_ui5-v2-13-0-rc-0_checkbox_inner_width_height: var(--_ui5-v2-13-0-rc-0_checkbox_compact_inner_size);--_ui5-v2-13-0-rc-0_checkbox_icon_size: .75rem;--_ui5-v2-13-0-rc-0_checkbox_partially_icon_size: .5rem;--_ui5-v2-13-0-rc-0_color_picker_slider_progress_container_height: 1.125rem;--_ui5-v2-13-0-rc-0_color_picker_slider_container_margin_top: -.375rem;--_ui5-v2-13-0-rc-0_color_picker_slider_handle_height: 1.5rem;--_ui5-v2-13-0-rc-0_color_picker_slider_handle_width: .9375rem;--_ui5-v2-13-0-rc-0_color_picker_slider_handle_after_height: 1.25rem;--_ui5-v2-13-0-rc-0_color_picker_slider_handle_focus_height: 1.625rem;--_ui5-v2-13-0-rc-0_color_picker_colors_wrapper_height: 1.5rem;--_ui5-v2-13-0-rc-0_color_picker_sliders_height: 2.25rem;--_ui5-v2-13-0-rc-0_color_picker_main_color_margin_bottom: .75rem;--_ui5-v2-13-0-rc-0_color_picker_slider_spacing: .8125rem;--_ui5-v2-13-0-rc-0_color_channel_toggle_button_width: 1.375rem;--_ui5-v2-13-0-rc-0_color_channel_toggle_button_margin-top: -.9375rem;--_ui5-v2-13-0-rc-0_color_channel_hex_input_width: 4.625rem;--_ui5-v2-13-0-rc-0-color_channel_margin_top: 0rem;--_ui5-v2-13-0-rc-0_color-palette-item-height: 1.25rem;--_ui5-v2-13-0-rc-0_color-palette-item-hover-height: 1.625rem;--_ui5-v2-13-0-rc-0_color-palette-item-margin: calc((var(--_ui5-v2-13-0-rc-0_color-palette-item-hover-height) - var(--_ui5-v2-13-0-rc-0_color-palette-item-height)) / 2);--_ui5-v2-13-0-rc-0_color-palette-row-width: 8.125rem;--_ui5-v2-13-0-rc-0_color-palette-swatch-container-padding: .1875rem .8125rem;--_ui5-v2-13-0-rc-0_color-palette-item-hover-margin: 0;--_ui5-v2-13-0-rc-0_color-palette-row-height: 7.5rem;--_ui5-v2-13-0-rc-0_color-palette-button-height: 2rem;--_ui5-v2-13-0-rc-0_custom_list_item_rb_min_width: 2rem;--_ui5-v2-13-0-rc-0_daypicker_weeknumbers_container_padding_top: 2rem;--_ui5-v2-13-0-rc-0_day_picker_item_width: 2rem;--_ui5-v2-13-0-rc-0_day_picker_item_height: 2rem;--_ui5-v2-13-0-rc-0_day_picker_empty_height: 2.125rem;--_ui5-v2-13-0-rc-0_day_picker_item_justify_content: flex-end;--_ui5-v2-13-0-rc-0_dp_two_calendar_item_secondary_text_height: .75rem;--_ui5-v2-13-0-rc-0_dp_two_calendar_item_text_padding_top: .5rem;--_ui5-v2-13-0-rc-0_daypicker_selected_item_now_special_day_top: 1.5625rem;--_ui5-v2-13-0-rc-0_daypicker_specialday_focused_top: 1.5rem;--_ui5-v2-13-0-rc-0_daypicker_special_day_top: 1.625rem;--_ui5-v2-13-0-rc-0_daypicker_item_now_specialday_top: 1.5rem;--_ui5-v2-13-0-rc-0_daypicker_twocalendar_item_special_day_top: 1.25rem;--_ui5-v2-13-0-rc-0_daypicker_twocalendar_item_special_day_right: 1.25rem;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_margin_bottom: 0;--_ui5-v2-13-0-rc-0_dp_two_calendar_item_secondary_text_padding_block: 0 .625rem;--_ui5-v2-13-0-rc-0_daypicker_item_now_selected_two_calendar_focus_special_day_top: 1.125rem;--_ui5-v2-13-0-rc-0_daypicker_item_now_selected_two_calendar_focus_special_day_right: 1.125rem;--_ui5-v2-13-0-rc-0_dp_two_calendar_item_secondary_text_padding: 0 .375rem;--_ui5-v2-13-0-rc-0_daypicker_item_now_selected_two_calendar_focus_secondary_text_padding_block: 0 1rem;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_selected_focus_margin_bottom: -.25rem;--_ui5-v2-13-0-rc-0_daypicker_two_calendar_item_selected_focus_padding_right: .4375rem;--_ui5-v2-13-0-rc-0_datetime_picker_height: 20.5rem;--_ui5-v2-13-0-rc-0_datetime_picker_width: 35.5rem;--_ui5-v2-13-0-rc-0_datetime_timeview_width: 17rem;--_ui5-v2-13-0-rc-0_datetime_timeview_phonemode_width: 18.5rem;--_ui5-v2-13-0-rc-0_datetime_timeview_phonemode_clocks_width: 21.125rem;--_ui5-v2-13-0-rc-0_datetime_dateview_phonemode_margin_bottom: 3.125rem;--_ui5-v2-13-0-rc-0_dialog_content_min_height: 2.5rem;--_ui5-v2-13-0-rc-0_dialog_footer_height: 2.5rem;--_ui5-v2-13-0-rc-0_form_item_min_height: 2rem;--_ui5-v2-13-0-rc-0_form_item_padding: .25rem;--_ui5-v2-13-0-rc-0-form-group-heading-height: 2rem;--_ui5-v2-13-0-rc-0_input_height: var(--sapElement_Compact_Height);--_ui5-v2-13-0-rc-0_input_inner_padding: 0 .5rem;--_ui5-v2-13-0-rc-0_input_inner_padding_with_icon: 0 .2rem 0 .5rem;--_ui5-v2-13-0-rc-0_input_inner_space_to_tokenizer: .125rem;--_ui5-v2-13-0-rc-0_input_inner_space_to_n_more_text: .125rem;--_ui5-v2-13-0-rc-0_input_icon_min_width: var(--_ui5-v2-13-0-rc-0_input_compact_min_width);--_ui5-v2-13-0-rc-0_menu_item_padding: 0 .75rem 0 .5rem;--_ui5-v2-13-0-rc-0_menu_item_submenu_icon_right: .75rem;--_ui5-v2-13-0-rc-0_popup_default_header_height: 2.5rem;--_ui5-v2-13-0-rc-0_textarea_margin: .1875rem 0;--_ui5-v2-13-0-rc-0_list_no_data_height: 2rem;--_ui5-v2-13-0-rc-0_list_item_cb_margin_right: .5rem;--_ui5-v2-13-0-rc-0_list_item_title_size: var(--sapFontSize);--_ui5-v2-13-0-rc-0_list_item_img_top_margin: .55rem;--_ui5-v2-13-0-rc-0_list_no_data_font_size: var(--sapFontSize);--_ui5-v2-13-0-rc-0_list_item_dropdown_base_height: 2rem;--_ui5-v2-13-0-rc-0_list_item_base_height: 2rem;--_ui5-v2-13-0-rc-0_list_item_base_padding: 0 1rem;--_ui5-v2-13-0-rc-0_list_item_icon_size: 1rem;--_ui5-v2-13-0-rc-0_list_item_selection_btn_margin_top: calc(-1 * var(--_ui5-v2-13-0-rc-0_checkbox_wrapper_padding));--_ui5-v2-13-0-rc-0_list_item_content_vertical_offset: calc((var(--_ui5-v2-13-0-rc-0_list_item_base_height) - var(--_ui5-v2-13-0-rc-0_list_item_title_size)) / 2);--_ui5-v2-13-0-rc-0_list_buttons_left_space: .125rem;--_ui5-v2-13-0-rc-0_month_picker_item_height: 2rem;--_ui5-v2-13-0-rc-0_year_picker_item_height: 2rem;--_ui5-v2-13-0-rc-0_panel_header_height: 2rem;--_ui5-v2-13-0-rc-0_panel_button_root_height: 2rem;--_ui5-v2-13-0-rc-0_panel_button_root_width: 2.75rem;--_ui5-v2-13-0-rc-0_token_height: 1.25rem;--_ui5-v2-13-0-rc-0_token_right_margin: .25rem;--_ui5-v2-13-0-rc-0_token_left_padding: .25rem;--_ui5-v2-13-0-rc-0_token_readonly_padding: .125rem .25rem;--_ui5-v2-13-0-rc-0_token_focus_offset: -.125rem;--_ui5-v2-13-0-rc-0_token_icon_size: .75rem;--_ui5-v2-13-0-rc-0_token_icon_padding: .375rem .375rem;--_ui5-v2-13-0-rc-0_token_outline_offset: -.125rem;--_ui5-v2-13-0-rc-0_tl_bubble_padding: .5rem;--_ui5-v2-13-0-rc-0_tl_padding: .5rem;--_ui5-v2-13-0-rc-0_tl_li_margin_bottom: .5rem;--_ui5-v2-13-0-rc-0_tc_item_text: 2rem;--_ui5-v2-13-0-rc-0_tc_item_text_line_height: 1.325rem;--_ui5-v2-13-0-rc-0_tc_item_add_text_margin_top: .3125rem;--_ui5-v2-13-0-rc-0_tc_item_height: 4rem;--_ui5-v2-13-0-rc-0_tc_header_height: var(--_ui5-v2-13-0-rc-0_tc_item_height);--_ui5-v2-13-0-rc-0_tc_item_icon_circle_size: 2rem;--_ui5-v2-13-0-rc-0_tc_item_icon_size: 1rem;--_ui5-v2-13-0-rc-0_radio_button_height: 2rem;--_ui5-v2-13-0-rc-0_radio_button_label_side_padding: .5rem;--_ui5-v2-13-0-rc-0_radio_button_inner_size: 2rem;--_ui5-v2-13-0-rc-0_radio_button_svg_size: 1rem;--_ui5-v2-13-0-rc-0-responsive_popover_header_height: 2.5rem;--_ui5-v2-13-0-rc-0_slider_handle_top: -.5rem;--_ui5-v2-13-0-rc-0_slider_tooltip_height: 1rem;--_ui5-v2-13-0-rc-0_slider_tooltip_padding: .25rem;--_ui5-v2-13-0-rc-0_slider_progress_outline_offset: -.625rem;--_ui5-v2-13-0-rc-0_slider_outer_height: 1.3125rem;--_ui5-v2-13-0-rc-0_split_button_middle_separator_height: 1.625rem;--_ui5-v2-13-0-rc-0_step_input_min_width: 6rem;--_ui5-v2-13-0-rc-0_step_input_padding: 2rem;--_ui5-v2-13-0-rc-0-tree-indent-step: .5rem;--_ui5-v2-13-0-rc-0-tree-toggle-box-width: 2rem;--_ui5-v2-13-0-rc-0-tree-toggle-box-height: 1.5rem;--_ui5-v2-13-0-rc-0-tree-toggle-icon-size: .8125rem;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_before_bottom: -.75rem;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_before_right: -.5rem;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_before_without_icon_bottom: -1rem;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_before_without_icon_right: -.8125rem;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_before_height: calc(100% - 1.25rem) ;--_ui5-v2-13-0-rc-0_timeline_tli_horizontal_without_icon_indicator_before_width: var(--_ui5-v2-13-0-rc-0_timeline_tli_indicator_after_height);--_ui5-v2-13-0-rc-0_timeline_tli_horizontal_indicator_before_width: var(--_ui5-v2-13-0-rc-0_timeline_tli_indicator_after_height);--_ui5-v2-13-0-rc-0_timeline_tli_icon_horizontal_indicator_after_width: var(--_ui5-v2-13-0-rc-0_timeline_tli_indicator_after_height);--_ui5-v2-13-0-rc-0_timeline_tli_horizontal_indicator_after_left: 1.8625rem;--_ui5-v2-13-0-rc-0_timeline_tli_horizontal_indicator_short_after_width: calc(100% - 1rem) ;--_ui5-v2-13-0-rc-0_timeline_tli_without_icon_horizontal_indicator_before_width: calc(100% - .625rem) ;--_ui5-v2-13-0-rc-0_timeline_tlgi_compact_icon_before_height: calc(100% + 1.5rem) ;--_ui5-v2-13-0-rc-0_timeline_tlgi_horizontal_line_placeholder_before_width: var(--_ui5-v2-13-0-rc-0_timeline_tlgi_compact_icon_before_height);--_ui5-v2-13-0-rc-0_timeline_tlgi_horizontal_compact_root_margin_left: .5rem;--_ui5-v2-13-0-rc-0_timeline_tlgi_compact_root_gap: .5rem;--_ui5-v2-13-0-rc-0_vsd_header_container: 2.5rem;--_ui5-v2-13-0-rc-0_vsd_sub_header_container_height: 2rem;--_ui5-v2-13-0-rc-0_vsd_expand_content_height: 25.4375rem;--_ui5-v2-13-0-rc-0-toolbar-separator-height: 1.5rem;--_ui5-v2-13-0-rc-0-toolbar-height: 2rem;--_ui5-v2-13-0-rc-0_toolbar_overflow_padding: .1875rem .375rem;--_ui5-v2-13-0-rc-0_dynamic_page_title_actions_separator_height: var(--_ui5-v2-13-0-rc-0-toolbar-separator-height);--_ui5-v2-13-0-rc-0_color_picker_slider_handle_container_margin_top: none;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_after_height: 50%;--_ui5-v2-13-0-rc-0_timeline_tli_indicator_after_top: -50%;--_ui5-v2-13-0-rc-0_timeline_tli_horizontal_indicator_after_width: calc(100% - 1rem) ;--_ui5-v2-13-0-rc-0_timeline_tlgi_root_horizontal_height: 20.90625rem;--_ui5-v2-13-0-rc-0_slider_handle_width: 1.25rem;--_ui5-v2-13-0-rc-0_slider_handle_height: 1.25rem}:root,[dir=ltr]{--_ui5-v2-13-0-rc-0_rotation_90deg: rotate(90deg);--_ui5-v2-13-0-rc-0_rotation_minus_90deg: rotate(-90deg);--_ui5-v2-13-0-rc-0_icon_transform_scale: none;--_ui5-v2-13-0-rc-0_panel_toggle_btn_rotation: var(--_ui5-v2-13-0-rc-0_rotation_90deg);--_ui5-v2-13-0-rc-0_timeline_scroll_container_offset: .5rem;--_ui5-v2-13-0-rc-0_popover_upward_arrow_margin: .1875rem 0 0 .1875rem;--_ui5-v2-13-0-rc-0_popover_right_arrow_margin: .1875rem 0 0 -.375rem;--_ui5-v2-13-0-rc-0_popover_downward_arrow_margin: -.375rem 0 0 .125rem;--_ui5-v2-13-0-rc-0_popover_left_arrow_margin: .125rem 0 0 .25rem;--_ui5-v2-13-0-rc-0_dialog_resize_cursor: se-resize;--_ui5-v2-13-0-rc-0_progress_indicator_bar_border_radius: .5rem 0 0 .5rem;--_ui5-v2-13-0-rc-0_progress_indicator_remaining_bar_border_radius: 0 .5rem .5rem 0;--_ui5-v2-13-0-rc-0_menu_submenu_margin_offset: -.25rem 0;--_ui5-v2-13-0-rc-0_menu_submenu_placement_type_left_margin_offset: .25rem 0;--_ui5-v2-13-0-rc-0-shellbar-notification-btn-count-offset: .125rem}[dir=rtl],[dir=rtl] :host{--_ui5-v2-13-0-rc-0_icon_transform_scale: scale(-1, 1);--_ui5-v2-13-0-rc-0_panel_toggle_btn_rotation: var(--_ui5-v2-13-0-rc-0_rotation_minus_90deg);--_ui5-v2-13-0-rc-0_timeline_scroll_container_offset: -.5rem;--_ui5-v2-13-0-rc-0_popover_upward_arrow_margin: .1875rem .125rem 0 0;--_ui5-v2-13-0-rc-0_popover_right_arrow_margin: .1875rem .25rem 0 0;--_ui5-v2-13-0-rc-0_popover_downward_arrow_margin: -.4375rem .125rem 0 0;--_ui5-v2-13-0-rc-0_popover_left_arrow_margin: .1875rem -.375rem 0 0;--_ui5-v2-13-0-rc-0_dialog_resize_cursor:sw-resize;--_ui5-v2-13-0-rc-0_progress_indicator_bar_border_radius: 0 .5rem .5rem 0;--_ui5-v2-13-0-rc-0_progress_indicator_remaining_bar_border_radius: .5rem 0 0 .5rem;--_ui5-v2-13-0-rc-0_menu_submenu_margin_offset: 0 -.25rem;--_ui5-v2-13-0-rc-0_menu_submenu_placement_type_left_margin_offset: 0 .25rem;--_ui5-v2-13-0-rc-0_segmented_btn_item_border_left: .0625rem;--_ui5-v2-13-0-rc-0_segmented_btn_item_border_right: 0px;--_ui5-v2-13-0-rc-0-shellbar-notification-btn-count-offset: auto}\n";
|
|
3
|
+
var parametersBundle_css = ":root {--sapThemeMetaData-Base-baseLib:{\"Path\": \"Base.baseLib.sap_horizon_hcw.css_variables\",\"PathPattern\": \"/%frameworkId%/%libId%/%themeId%/%fileId%.css\",\"Extends\": [\"sap_horizon_hcb\",\"sap_horizon\",\"baseTheme\"],\"Tags\": [\"Fiori_3\",\"HighContrast\",\"LightColorScheme\"],\"FallbackThemeId\": \"sap_fiori_3_hcw\",\"Engine\":{\"Name\": \"theming-engine\",\"Version\": \"15.0.8\"},\"Version\":{\"Build\": \"11.29.3.20250417070835\",\"Source\": \"11.29.3\"}};--sapBrandColor: #e97624;--sapHighlightColor: #e97624;--sapBaseColor: #fff;--sapShellColor: #fff;--sapBackgroundColor: #fff;--sapFontFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapFontSize: .875rem;--sapTextColor: #000;--sapLinkColor: #000;--sapCompanyLogo: none;--sapFavicon: none;--sapBackgroundImage: none;--sapBackgroundImageOpacity: 1;--sapBackgroundImageRepeat: false;--sapSelectedColor: #5c93ff;--sapHoverColor: #e97624;--sapActiveColor: #e97624;--sapHighlightTextColor: #000;--sapTitleColor: #000;--sapNegativeColor: #ab0000;--sapCriticalColor: #5c5c00;--sapPositiveColor: #006362;--sapInformativeColor: #000;--sapNeutralColor: #000;--sapNegativeElementColor: #ab0000;--sapCriticalElementColor: #5c5c00;--sapPositiveElementColor: #006362;--sapInformativeElementColor: #000;--sapNeutralElementColor: #000;--sapNegativeTextColor: #ab0000;--sapCriticalTextColor: #5c5c00;--sapPositiveTextColor: #006362;--sapInformativeTextColor: #000;--sapNeutralTextColor: #000;--sapErrorColor: #ab0000;--sapWarningColor: #5c5c00;--sapSuccessColor: #006362;--sapInformationColor: #000;--sapErrorBackground: #fff;--sapWarningBackground: #fff;--sapSuccessBackground: #fff;--sapInformationBackground: #fff;--sapNeutralBackground: #fff;--sapErrorBorderColor: #ab0000;--sapWarningBorderColor: #5c5c00;--sapSuccessBorderColor: #006362;--sapInformationBorderColor: #000;--sapNeutralBorderColor: #000;--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.5;--sapContent_IconHeight: 1rem;--sapContent_IconColor: #000;--sapContent_ContrastIconColor: #000;--sapContent_NonInteractiveIconColor: #000;--sapContent_MarkerIconColor: #000;--sapContent_MarkerTextColor: #000;--sapContent_MeasureIndicatorColor: #000;--sapContent_Selected_MeasureIndicatorColor: #000;--sapContent_Placeholderloading_Background: #888;--sapContent_Placeholderloading_Gradient: linear-gradient(to right, #888 0%, #888 35%, #585858 50%, #888 65%, #888 100%);--sapContent_ImagePlaceholderBackground: #fff;--sapContent_ImagePlaceholderForegroundColor: #000;--sapContent_RatedColor: #000;--sapContent_UnratedColor: #585858;--sapContent_BusyColor: #000;--sapContent_FocusColor: #000;--sapContent_FocusStyle: dotted;--sapContent_FocusWidth: .125rem;--sapContent_ContrastFocusColor: #000;--sapContent_ShadowColor: #000;--sapContent_ContrastShadowColor: #000;--sapContent_Shadow0: 0 0 0 .0625rem #000;--sapContent_Shadow1: 0 0 1rem 0 rgba(0,0,0,.5), 0 0 0 .125rem #000;--sapContent_Shadow2: 0 .25rem 2rem 0 rgba(0,0,0,.6), 0 0 0 .125rem #000;--sapContent_Shadow3: 0 .625rem 4rem 0 rgba(0,0,0,.8), 0 0 0 .125rem #000;--sapContent_TextShadow: -.0625rem 0 #fff, 0 .0625rem #fff, .0625rem 0 #fff, 0 -.0625rem #fff;--sapContent_ContrastTextShadow: none;--sapContent_HeaderShadow: inset 0 -.125rem #000;--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: #e97624;--sapContent_HelpColor: #006800;--sapContent_LabelColor: #000;--sapContent_MonospaceFontFamily: \"72Mono\", \"72Monofull\", lucida console, monospace;--sapContent_MonospaceBoldFontFamily: \"72Mono-Bold\", \"72Mono-Boldfull\", lucida console, monospace;--sapContent_IconFontFamily: \"SAP-icons\";--sapContent_DisabledTextColor: #888;--sapContent_DisabledOpacity: .4;--sapContent_ContrastTextThreshold: .5;--sapContent_ContrastTextColor: #000;--sapContent_ForegroundColor: #fff;--sapContent_ForegroundBorderColor: #000;--sapContent_ForegroundTextColor: #000;--sapContent_BadgeBackground: #000;--sapContent_BadgeTextColor: #fff;--sapContent_BadgeBorderColor: #fff;--sapContent_DragAndDropActiveColor: #006800;--sapContent_Selected_TextColor: #000;--sapContent_Selected_Background: #5c93ff;--sapContent_Selected_Hover_Background: #e97624;--sapContent_Selected_ForegroundColor: #000;--sapContent_ForcedColorAdjust: none;--sapContent_Lite_Shadow: 0 0 1rem 0 rgba(0,0,0,.5), 0 0 0 .125rem #000;--sapContent_Illustrative_Color1: #9b015d;--sapContent_Illustrative_Color2: #56bdff;--sapContent_Illustrative_Color3: #ff7f4c;--sapContent_Illustrative_Color4: #00144a;--sapContent_Illustrative_Color5: #a9b4be;--sapContent_Illustrative_Color6: #d5dadd;--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: .5rem;--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: inset 0 -.125rem #006362;--sapContent_Warning_HeaderShadow: inset 0 -.125rem #5c5c00;--sapContent_Error_HeaderShadow: inset 0 -.125rem #ab0000;--sapContent_Information_HeaderShadow: inset 0 -.125rem #000;--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: 3rem;--sapFontHeader2Size: 2rem;--sapFontHeader3Size: 1.5rem;--sapFontHeader4Size: 1.25rem;--sapFontHeader5Size: 1rem;--sapFontHeader6Size: .875rem;--sapLink_TextDecoration: underline;--sapLink_Hover_Color: #000;--sapLink_Hover_TextDecoration: none;--sapLink_Active_Color: #000;--sapLink_Active_TextDecoration: underline;--sapLink_Visited_Color: #000;--sapLink_InvertedColor: #000;--sapLink_SubtleColor: #000;--sapShell_Background: #fff;--sapShell_BackgroundImage: linear-gradient(to bottom, #fff, #fff);--sapShell_BackgroundImageOpacity: 1;--sapShell_BackgroundImageRepeat: false;--sapShell_BorderColor: #000;--sapShell_TextColor: #000;--sapShell_InteractiveBackground: #fff;--sapShell_InteractiveTextColor: #000;--sapShell_InteractiveBorderColor: #000;--sapShell_GroupTitleTextColor: #000;--sapShell_GroupTitleTextShadow: -.0625rem 0 #fff, 0 .0625rem #fff, .0625rem 0 #fff, 0 -.0625rem #fff;--sapShell_Hover_Background: #e97624;--sapShell_Active_Background: #e97624;--sapShell_Active_TextColor: #000;--sapShell_Selected_Background: #5c93ff;--sapShell_Selected_TextColor: #000;--sapShell_Selected_Hover_Background: #e97624;--sapShell_Favicon: none;--sapShell_Navigation_Background: #fff;--sapShell_Navigation_Hover_Background: #e97624;--sapShell_Navigation_SelectedColor: #000;--sapShell_Navigation_Selected_TextColor: #000;--sapShell_Navigation_TextColor: #000;--sapShell_Navigation_Active_TextColor: #000;--sapShell_Navigation_Active_Background: #e97624;--sapShell_Shadow: 0 .125rem 0 0 #000;--sapShell_NegativeColor: #ab0000;--sapShell_CriticalColor: #5c5c00;--sapShell_PositiveColor: #006362;--sapShell_InformativeColor: #000;--sapShell_NeutralColor: #000;--sapShell_Assistant_ForegroundColor: #000;--sapShell_SubBrand_TextColor: #000;--sapShell_Category_1_Background: #fff;--sapShell_Category_1_BorderColor: #004ccb;--sapShell_Category_1_TextColor: #000;--sapShell_Category_1_TextShadow: none;--sapShell_Category_2_Background: #fff;--sapShell_Category_2_BorderColor: #973333;--sapShell_Category_2_TextColor: #000;--sapShell_Category_2_TextShadow: none;--sapShell_Category_3_Background: #fff;--sapShell_Category_3_BorderColor: #5f5800;--sapShell_Category_3_TextColor: #000;--sapShell_Category_3_TextShadow: none;--sapShell_Category_4_Background: #fff;--sapShell_Category_4_BorderColor: #6c3d62;--sapShell_Category_4_TextColor: #000;--sapShell_Category_4_TextShadow: none;--sapShell_Category_5_Background: #fff;--sapShell_Category_5_BorderColor: #734f00;--sapShell_Category_5_TextColor: #000;--sapShell_Category_5_TextShadow: none;--sapShell_Category_6_Background: #fff;--sapShell_Category_6_BorderColor: #105b5b;--sapShell_Category_6_TextColor: #000;--sapShell_Category_6_TextShadow: none;--sapShell_Category_7_Background: #fff;--sapShell_Category_7_BorderColor: #961d7c;--sapShell_Category_7_TextColor: #000;--sapShell_Category_7_TextShadow: none;--sapShell_Category_8_Background: #fff;--sapShell_Category_8_BorderColor: #26340b;--sapShell_Category_8_TextColor: #000;--sapShell_Category_8_TextShadow: none;--sapShell_Category_9_Background: #fff;--sapShell_Category_9_BorderColor: #002a86;--sapShell_Category_9_TextColor: #000;--sapShell_Category_9_TextShadow: none;--sapShell_Category_10_Background: #fff;--sapShell_Category_10_BorderColor: #47596c;--sapShell_Category_10_TextColor: #000;--sapShell_Category_10_TextShadow: none;--sapShell_Category_11_Background: #fff;--sapShell_Category_11_BorderColor: #af080b;--sapShell_Category_11_TextColor: #000;--sapShell_Category_11_TextShadow: none;--sapShell_Category_12_Background: #fff;--sapShell_Category_12_BorderColor: #7000e0;--sapShell_Category_12_TextColor: #000;--sapShell_Category_12_TextShadow: none;--sapShell_Category_13_Background: #fff;--sapShell_Category_13_BorderColor: #580440;--sapShell_Category_13_TextColor: #000;--sapShell_Category_13_TextShadow: none;--sapShell_Category_14_Background: #fff;--sapShell_Category_14_BorderColor: #035663;--sapShell_Category_14_TextColor: #000;--sapShell_Category_14_TextShadow: none;--sapShell_Category_15_Background: #fff;--sapShell_Category_15_BorderColor: #223548;--sapShell_Category_15_TextColor: #000;--sapShell_Category_15_TextShadow: none;--sapShell_Category_16_Background: #fff;--sapShell_Category_16_BorderColor: #1e592f;--sapShell_Category_16_TextColor: #000;--sapShell_Category_16_TextShadow: none;--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: #000;--sapAssistant_Color2: #000;--sapAssistant_BackgroundGradient: linear-gradient(#fff, #fff);--sapAssistant_Background: #fff;--sapAssistant_BorderColor: #000;--sapAssistant_TextColor: #000;--sapAssistant_Hover_Background: #e97624;--sapAssistant_Hover_BorderColor: #000;--sapAssistant_Hover_TextColor: #000;--sapAssistant_Active_Background: #e97624;--sapAssistant_Active_BorderColor: #000;--sapAssistant_Active_TextColor: #000;--sapAssistant_Question_Background: #fff;--sapAssistant_Question_BorderColor: #000;--sapAssistant_Question_TextColor: #000;--sapAssistant_Answer_Background: #b3b3b3;--sapAssistant_Answer_BorderColor: #000;--sapAssistant_Answer_TextColor: #000;--sapAvatar_1_Background: #fff;--sapAvatar_1_BorderColor: #000;--sapAvatar_1_TextColor: #000;--sapAvatar_1_Hover_Background: #e97624;--sapAvatar_2_Background: #fff;--sapAvatar_2_BorderColor: #000;--sapAvatar_2_TextColor: #000;--sapAvatar_2_Hover_Background: #e97624;--sapAvatar_3_Background: #fff;--sapAvatar_3_BorderColor: #000;--sapAvatar_3_TextColor: #000;--sapAvatar_3_Hover_Background: #e97624;--sapAvatar_4_Background: #fff;--sapAvatar_4_BorderColor: #000;--sapAvatar_4_TextColor: #000;--sapAvatar_4_Hover_Background: #e97624;--sapAvatar_5_Background: #fff;--sapAvatar_5_BorderColor: #000;--sapAvatar_5_TextColor: #000;--sapAvatar_5_Hover_Background: #e97624;--sapAvatar_6_Background: #fff;--sapAvatar_6_BorderColor: #000;--sapAvatar_6_TextColor: #000;--sapAvatar_6_Hover_Background: #e97624;--sapAvatar_7_Background: #fff;--sapAvatar_7_BorderColor: #000;--sapAvatar_7_TextColor: #000;--sapAvatar_7_Hover_Background: #e97624;--sapAvatar_8_Background: #fff;--sapAvatar_8_BorderColor: #000;--sapAvatar_8_TextColor: #000;--sapAvatar_8_Hover_Background: #e97624;--sapAvatar_9_Background: #fff;--sapAvatar_9_BorderColor: #000;--sapAvatar_9_TextColor: #000;--sapAvatar_9_Hover_Background: #e97624;--sapAvatar_10_Background: #fff;--sapAvatar_10_BorderColor: #000;--sapAvatar_10_TextColor: #000;--sapAvatar_10_Hover_Background: #e97624;--sapAvatar_Lite_BorderColor: #000;--sapAvatar_Lite_Background: #fff;--sapAvatar_Hover_BorderColor: #000;--sapButton_Background: #fff;--sapButton_BorderColor: #000;--sapButton_BorderWidth: .0625rem;--sapButton_BorderCornerRadius: .375rem;--sapButton_TextColor: #000;--sapButton_FontFamily: \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapButton_Hover_Background: #e97624;--sapButton_Hover_BorderColor: #000;--sapButton_Hover_TextColor: #000;--sapButton_IconColor: #000;--sapButton_Active_Background: #e97624;--sapButton_Active_BorderColor: #000;--sapButton_Active_TextColor: #000;--sapButton_Emphasized_Background: #fff;--sapButton_Emphasized_BorderColor: #000;--sapButton_Emphasized_BorderWidth: .125rem;--sapButton_Emphasized_TextColor: #000;--sapButton_Emphasized_FontFamily: \"72-Bold\", \"72-Boldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapButton_Emphasized_Hover_Background: #e97624;--sapButton_Emphasized_Hover_BorderColor: #000;--sapButton_Emphasized_Hover_TextColor: #000;--sapButton_Emphasized_Active_Background: #e97624;--sapButton_Emphasized_Active_BorderColor: #000;--sapButton_Emphasized_Active_TextColor: #000;--sapButton_Emphasized_TextShadow: transparent;--sapButton_Emphasized_FontWeight: bold;--sapButton_Reject_Background: #fff;--sapButton_Reject_BorderColor: #000;--sapButton_Reject_TextColor: #000;--sapButton_Reject_Hover_Background: #e97624;--sapButton_Reject_Hover_BorderColor: #000;--sapButton_Reject_Hover_TextColor: #000;--sapButton_Reject_Active_Background: #e97624;--sapButton_Reject_Active_BorderColor: #000;--sapButton_Reject_Active_TextColor: #000;--sapButton_Reject_Selected_Background: #5c93ff;--sapButton_Reject_Selected_BorderColor: #000;--sapButton_Reject_Selected_TextColor: #000;--sapButton_Reject_Selected_Hover_Background: #e97624;--sapButton_Reject_Selected_Hover_BorderColor: #000;--sapButton_Accept_Background: #fff;--sapButton_Accept_BorderColor: #000;--sapButton_Accept_TextColor: #000;--sapButton_Accept_Hover_Background: #e97624;--sapButton_Accept_Hover_BorderColor: #000;--sapButton_Accept_Hover_TextColor: #000;--sapButton_Accept_Active_Background: #e97624;--sapButton_Accept_Active_BorderColor: #000;--sapButton_Accept_Active_TextColor: #000;--sapButton_Accept_Selected_Background: #5c93ff;--sapButton_Accept_Selected_BorderColor: #000;--sapButton_Accept_Selected_TextColor: #000;--sapButton_Accept_Selected_Hover_Background: #e97624;--sapButton_Accept_Selected_Hover_BorderColor: #000;--sapButton_Lite_Background: #fff;--sapButton_Lite_BorderColor: #000;--sapButton_Lite_TextColor: #000;--sapButton_Lite_Hover_Background: #e97624;--sapButton_Lite_Hover_BorderColor: #000;--sapButton_Lite_Hover_TextColor: #000;--sapButton_Lite_Active_Background: #e97624;--sapButton_Lite_Active_BorderColor: #000;--sapButton_Selected_Background: #5c93ff;--sapButton_Selected_BorderColor: #000;--sapButton_Selected_TextColor: #000;--sapButton_Selected_Hover_Background: #e97624;--sapButton_Selected_Hover_BorderColor: #000;--sapButton_Attention_Background: #fff;--sapButton_Attention_BorderColor: #000;--sapButton_Attention_TextColor: #000;--sapButton_Attention_Hover_Background: #e97624;--sapButton_Attention_Hover_BorderColor: #000;--sapButton_Attention_Hover_TextColor: #000;--sapButton_Attention_Active_Background: #e97624;--sapButton_Attention_Active_BorderColor: #000;--sapButton_Attention_Active_TextColor: #000;--sapButton_Attention_Selected_Background: #5c93ff;--sapButton_Attention_Selected_BorderColor: #000;--sapButton_Attention_Selected_TextColor: #000;--sapButton_Attention_Selected_Hover_Background: #e97624;--sapButton_Attention_Selected_Hover_BorderColor: #000;--sapButton_Negative_Background: #fff;--sapButton_Negative_BorderColor: #000;--sapButton_Negative_TextColor: #000;--sapButton_Negative_Hover_Background: #e97624;--sapButton_Negative_Hover_BorderColor: #000;--sapButton_Negative_Hover_TextColor: #000;--sapButton_Negative_Active_Background: #e97624;--sapButton_Negative_Active_BorderColor: #000;--sapButton_Negative_Active_TextColor: #000;--sapButton_Critical_Background: #fff;--sapButton_Critical_BorderColor: #000;--sapButton_Critical_TextColor: #000;--sapButton_Critical_Hover_Background: #e97624;--sapButton_Critical_Hover_BorderColor: #000;--sapButton_Critical_Hover_TextColor: #000;--sapButton_Critical_Active_Background: #e97624;--sapButton_Critical_Active_BorderColor: #000;--sapButton_Critical_Active_TextColor: #000;--sapButton_Success_Background: #fff;--sapButton_Success_BorderColor: #000;--sapButton_Success_TextColor: #000;--sapButton_Success_Hover_Background: #e97624;--sapButton_Success_Hover_BorderColor: #000;--sapButton_Success_Hover_TextColor: #000;--sapButton_Success_Active_Background: #e97624;--sapButton_Success_Active_BorderColor: #000;--sapButton_Success_Active_TextColor: #000;--sapButton_Information_Background: #fff;--sapButton_Information_BorderColor: #000;--sapButton_Information_TextColor: #000;--sapButton_Information_Hover_Background: #e97624;--sapButton_Information_Hover_BorderColor: #000;--sapButton_Information_Hover_TextColor: #000;--sapButton_Information_Active_Background: #e97624;--sapButton_Information_Active_BorderColor: #000;--sapButton_Information_Active_TextColor: #000;--sapButton_Neutral_Background: #fff;--sapButton_Neutral_BorderColor: #000;--sapButton_Neutral_TextColor: #000;--sapButton_Neutral_Hover_Background: #e97624;--sapButton_Neutral_Hover_BorderColor: #000;--sapButton_Neutral_Hover_TextColor: #000;--sapButton_Neutral_Active_Background: #e97624;--sapButton_Neutral_Active_BorderColor: #000;--sapButton_Neutral_Active_TextColor: #000;--sapButton_Track_Background: #fff;--sapButton_Track_BorderColor: #000;--sapButton_Track_TextColor: #000;--sapButton_Track_Hover_Background: #e97624;--sapButton_Track_Hover_BorderColor: #000;--sapButton_Track_Selected_Background: #5c93ff;--sapButton_Track_Selected_BorderColor: #000;--sapButton_Track_Selected_TextColor: #000;--sapButton_Track_Selected_Hover_Background: #e97624;--sapButton_Track_Selected_Hover_BorderColor: #000;--sapButton_Handle_Background: #fff;--sapButton_Handle_BorderColor: #000;--sapButton_Handle_TextColor: #000;--sapButton_Handle_Hover_Background: #e97624;--sapButton_Handle_Hover_BorderColor: #000;--sapButton_Handle_Selected_Background: #5c93ff;--sapButton_Handle_Selected_BorderColor: #000;--sapButton_Handle_Selected_TextColor: #000;--sapButton_Handle_Selected_Hover_Background: #e97624;--sapButton_Handle_Selected_Hover_BorderColor: #000;--sapButton_Track_Negative_Background: #fff;--sapButton_Track_Negative_BorderColor: #ab0000;--sapButton_Track_Negative_TextColor: #000;--sapButton_Track_Negative_Hover_Background: #e97624;--sapButton_Track_Negative_Hover_BorderColor: #ab0000;--sapButton_Handle_Negative_Background: #fff;--sapButton_Handle_Negative_BorderColor: #ab0000;--sapButton_Handle_Negative_TextColor: #000;--sapButton_Handle_Negative_Hover_Background: #e97624;--sapButton_Handle_Negative_Hover_BorderColor: #ab0000;--sapButton_Track_Positive_Background: #fff;--sapButton_Track_Positive_BorderColor: #006362;--sapButton_Track_Positive_TextColor: #000;--sapButton_Track_Positive_Hover_Background: #e97624;--sapButton_Track_Positive_Hover_BorderColor: #000;--sapButton_Handle_Positive_Background: #fff;--sapButton_Handle_Positive_BorderColor: #006362;--sapButton_Handle_Positive_TextColor: #000;--sapButton_Handle_Positive_Hover_Background: #e97624;--sapButton_Handle_Positive_Hover_BorderColor: #006362;--sapButton_TokenBackground: #fff;--sapButton_TokenBorderColor: #000;--sapButton_TokenBorderCornerRadius: .25rem;--sapButton_Selected_TokenBorderWidth: 0;--sapButton_ReadOnly_TokenBackground: #b3b3b3;--sapButton_Segment_BorderCornerRadius: 0;--sapField_Background: #fff;--sapField_BackgroundStyle: none;--sapField_TextColor: #000;--sapField_PlaceholderTextColor: #585858;--sapField_BorderColor: #000;--sapField_HelpBackground: #fff;--sapField_BorderWidth: .125rem;--sapField_BorderStyle: solid;--sapField_BorderCornerRadius: 0;--sapField_Shadow: none;--sapField_Hover_Background: #fff;--sapField_Hover_BackgroundStyle: none;--sapField_Hover_BorderColor: #000;--sapField_Hover_HelpBackground: #fff;--sapField_Hover_Shadow: none;--sapField_Hover_InvalidShadow: none;--sapField_Hover_WarningShadow: none;--sapField_Hover_SuccessShadow: none;--sapField_Hover_InformationShadow: none;--sapField_Active_BorderColor: #000;--sapField_Focus_Background: #fff;--sapField_Focus_BorderColor: #000;--sapField_Focus_HelpBackground: #fff;--sapField_ReadOnly_Background: #b3b3b3;--sapField_ReadOnly_BackgroundStyle: none;--sapField_ReadOnly_BorderColor: #000;--sapField_ReadOnly_BorderStyle: solid;--sapField_ReadOnly_HelpBackground: #b3b3b3;--sapField_RequiredColor: #000;--sapField_InvalidColor: #000;--sapField_InvalidBackground: #e97624;--sapField_InvalidBackgroundStyle: none;--sapField_InvalidBorderWidth: .125rem;--sapField_InvalidBorderStyle: dashed;--sapField_InvalidShadow: none;--sapField_WarningColor: #000;--sapField_WarningBackground: #fff;--sapField_WarningBackgroundStyle: none;--sapField_WarningBorderWidth: .125rem;--sapField_WarningBorderStyle: dashed;--sapField_WarningShadow: none;--sapField_SuccessColor: #000;--sapField_SuccessBackground: #fff;--sapField_SuccessBackgroundStyle: none;--sapField_SuccessBorderWidth: .125rem;--sapField_SuccessBorderStyle: solid;--sapField_SuccessShadow: none;--sapField_InformationColor: #000;--sapField_InformationBackground: #fff;--sapField_InformationBackgroundStyle: none;--sapField_InformationBorderWidth: .0625rem;--sapField_InformationBorderStyle: dashed;--sapField_InformationShadow: none;--sapField_Selector_Hover_Background: #5c93ff;--sapField_Selector_Hover_InvalidBackground: #e97624;--sapField_Selector_Hover_WarningBackground: #fff;--sapField_Selector_Hover_SuccessBackground: #fff;--sapField_Selector_Hover_InformationBackground: #fff;--sapField_Picker_BorderColor: #fff;--sapField_Picker_BorderWidth: .125rem;--sapField_Selector_BorderStyle: solid;--sapField_Selector_ReadOnly_BorderStyle: solid;--sapField_Selector_InvalidBorderStyle: dashed;--sapField_Selector_WarningBorderStyle: dashed;--sapField_Selector_SuccessBorderStyle: solid;--sapField_Selector_InformationBorderStyle: dashed;--sapGroup_TitleBorderWidth: .125rem;--sapGroup_TitleBackground: #fff;--sapGroup_TitleBorderColor: #000;--sapGroup_TitleTextColor: #000;--sapGroup_Title_FontSize: 1rem;--sapGroup_ContentBackground: #fff;--sapGroup_ContentBorderColor: #000;--sapGroup_BorderWidth: .0625rem;--sapGroup_BorderCornerRadius: 0;--sapGroup_FooterBackground: #fff;--sapToolbar_Background: #fff;--sapToolbar_SeparatorColor: #000;--sapList_HeaderBackground: #fff;--sapList_HeaderBorderColor: #000;--sapList_HeaderTextColor: #000;--sapList_BorderColor: #585858;--sapList_BorderWidth: .0625rem;--sapList_TextColor: #000;--sapList_Active_TextColor: #000;--sapList_Active_Background: #e97624;--sapList_SelectionBackgroundColor: #5c93ff;--sapList_SelectionBorderColor: #000;--sapList_Hover_SelectionBackground: #e97624;--sapList_Background: #fff;--sapList_Hover_Background: #e97624;--sapList_AlternatingBackground: #e6e6e6;--sapList_GroupHeaderBackground: #fff;--sapList_GroupHeaderBorderColor: #000;--sapList_GroupHeaderTextColor: #000;--sapList_TableGroupHeaderBackground: #b3b3b3;--sapList_TableGroupHeaderBorderColor: #000;--sapList_TableGroupHeaderTextColor: #000;--sapList_FooterBackground: #fff;--sapList_FooterTextColor: #000;--sapList_TableFooterBorder: #000;--sapList_TableFixedBorderColor: #000;--sapList_TableFixedColumnBorderWidth: .1875rem;--sapList_TableFixedRowBorderWidth: .1875rem;--sapMessage_BorderWidth: .125rem;--sapMessage_ErrorBorderColor: #ab0000;--sapMessage_WarningBorderColor: #5c5c00;--sapMessage_SuccessBorderColor: #006362;--sapMessage_InformationBorderColor: #000;--sapMessage_Button_Hover_Background: #e97624;--sapPopover_BorderCornerRadius: .25rem;--sapProgress_Background: #fff;--sapProgress_BorderColor: #000;--sapProgress_TextColor: #000;--sapProgress_FontSize: .875rem;--sapProgress_NegativeBackground: #fff;--sapProgress_NegativeBorderColor: #000;--sapProgress_NegativeTextColor: #000;--sapProgress_CriticalBackground: #fff;--sapProgress_CriticalBorderColor: #000;--sapProgress_CriticalTextColor: #000;--sapProgress_PositiveBackground: #fff;--sapProgress_PositiveBorderColor: #000;--sapProgress_PositiveTextColor: #000;--sapProgress_InformationBackground: #fff;--sapProgress_InformationBorderColor: #000;--sapProgress_InformationTextColor: #000;--sapProgress_Value_Background: #e97624;--sapProgress_Value_BorderColor: #000;--sapProgress_Value_TextColor: #000;--sapProgress_Value_NegativeBackground: #e97624;--sapProgress_Value_NegativeBorderColor: #000;--sapProgress_Value_NegativeTextColor: #000;--sapProgress_Value_CriticalBackground: #e97624;--sapProgress_Value_CriticalBorderColor: #000;--sapProgress_Value_CriticalTextColor: #000;--sapProgress_Value_PositiveBackground: #e97624;--sapProgress_Value_PositiveBorderColor: #000;--sapProgress_Value_PositiveTextColor: #000;--sapProgress_Value_InformationBackground: #e97624;--sapProgress_Value_InformationBorderColor: #000;--sapProgress_Value_InformationTextColor: #000;--sapScrollBar_FaceColor: #585858;--sapScrollBar_TrackColor: #fff;--sapScrollBar_BorderColor: #585858;--sapScrollBar_SymbolColor: #000;--sapScrollBar_Dimension: .75rem;--sapScrollBar_Hover_FaceColor: #000;--sapSlider_Background: #fff;--sapSlider_BorderColor: #000;--sapSlider_Selected_Background: #5c93ff;--sapSlider_Selected_BorderColor: #000;--sapSlider_Selected_Dimension: 111px;--sapSlider_HandleBackground: #fff;--sapSlider_HandleBorderColor: #000;--sapSlider_RangeHandleBackground: #fff;--sapSlider_Hover_HandleBackground: #e97624;--sapSlider_Hover_HandleBorderColor: #000;--sapSlider_Hover_RangeHandleBackground: #e97624;--sapSlider_Active_HandleBackground: #e97624;--sapSlider_Active_HandleBorderColor: #000;--sapSlider_Active_RangeHandleBackground: transparent;--sapPageHeader_Background: #fff;--sapPageHeader_BorderColor: #000;--sapPageHeader_TextColor: #000;--sapPageFooter_Background: #fff;--sapPageFooter_BorderColor: #000;--sapPageFooter_TextColor: #000;--sapInfobar_Background: #fff;--sapInfobar_Hover_Background: #e97624;--sapInfobar_Active_Background: #e97624;--sapInfobar_NonInteractive_Background: #b3b3b3;--sapInfobar_TextColor: #000;--sapObjectHeader_Background: #fff;--sapObjectHeader_Hover_Background: #e97624;--sapObjectHeader_BorderColor: #000;--sapObjectHeader_Title_TextColor: #000;--sapObjectHeader_Title_FontSize: 1.5rem;--sapObjectHeader_Title_SnappedFontSize: 1.25rem;--sapObjectHeader_Title_FontFamily: \"72-Bold\", \"72-Boldfull\", \"72\", \"72full\", Arial, Helvetica, sans-serif;--sapObjectHeader_Subtitle_TextColor: #000;--sapBlockLayer_Background: #fff;--sapBlockLayer_Opacity: .3;--sapTab_TextColor: #000;--sapTab_ForegroundColor: #000;--sapTab_IconColor: #000;--sapTab_Background: #fff;--sapTab_Selected_TextColor: #000;--sapTab_Selected_IconColor: #000;--sapTab_Selected_Background: #5c93ff;--sapTab_Selected_Indicator_Dimension: .3125rem;--sapTab_Positive_TextColor: #000;--sapTab_Positive_ForegroundColor: #000;--sapTab_Positive_IconColor: #000;--sapTab_Positive_Selected_TextColor: #000;--sapTab_Positive_Selected_IconColor: #000;--sapTab_Positive_Selected_Background: #5c93ff;--sapTab_Negative_TextColor: #000;--sapTab_Negative_ForegroundColor: #000;--sapTab_Negative_IconColor: #000;--sapTab_Negative_Selected_TextColor: #000;--sapTab_Negative_Selected_IconColor: #000;--sapTab_Negative_Selected_Background: #5c93ff;--sapTab_Critical_TextColor: #000;--sapTab_Critical_ForegroundColor: #000;--sapTab_Critical_IconColor: #000;--sapTab_Critical_Selected_TextColor: #000;--sapTab_Critical_Selected_IconColor: #000;--sapTab_Critical_Selected_Background: #5c93ff;--sapTab_Neutral_TextColor: #000;--sapTab_Neutral_ForegroundColor: #000;--sapTab_Neutral_IconColor: #000;--sapTab_Neutral_Selected_TextColor: #000;--sapTab_Neutral_Selected_IconColor: #000;--sapTab_Neutral_Selected_Background: #5c93ff;--sapTile_Background: #fff;--sapTile_Hover_Background: #e97624;--sapTile_Active_Background: #e97624;--sapTile_BorderColor: #000;--sapTile_BorderCornerRadius: .25rem;--sapTile_TitleTextColor: #000;--sapTile_TextColor: #000;--sapTile_IconColor: #000;--sapTile_SeparatorColor: #000;--sapTile_Interactive_BorderColor: #000;--sapTile_OverlayBackground: #fff;--sapTile_OverlayForegroundColor: #000;--sapTile_Hover_ContentBackground: #e97624;--sapTile_Active_ContentBackground: #e97624;--sapAccentColor1: #5f5800;--sapAccentColor2: #5e4101;--sapAccentColor3: #973333;--sapAccentColor4: #961d7c;--sapAccentColor5: #365892;--sapAccentColor6: #004ccb;--sapAccentColor7: #105b5b;--sapAccentColor8: #26340b;--sapAccentColor9: #6c32a9;--sapAccentColor10: #4a5964;--sapAccentBackgroundColor1: #fff;--sapAccentBackgroundColor2: #fff;--sapAccentBackgroundColor3: #fff;--sapAccentBackgroundColor4: #fff;--sapAccentBackgroundColor5: #fff;--sapAccentBackgroundColor6: #fff;--sapAccentBackgroundColor7: #fff;--sapAccentBackgroundColor8: #fff;--sapAccentBackgroundColor9: #fff;--sapAccentBackgroundColor10: #fff;--sapIndicationColor_1: #780000;--sapIndicationColor_1_Background: #fff;--sapIndicationColor_1_BorderColor: #000;--sapIndicationColor_1_TextColor: #000;--sapIndicationColor_1_Hover_Background: #e97624;--sapIndicationColor_1_Active_Background: #e97624;--sapIndicationColor_1_Active_BorderColor: #000;--sapIndicationColor_1_Active_TextColor: #000;--sapIndicationColor_1_Selected_Background: #5c93ff;--sapIndicationColor_1_Selected_BorderColor: #000;--sapIndicationColor_1_Selected_TextColor: #000;--sapIndicationColor_1b: #780000;--sapIndicationColor_1b_TextColor: #000;--sapIndicationColor_1b_Background: #fff;--sapIndicationColor_1b_BorderColor: #000;--sapIndicationColor_1b_Hover_Background: #e97624;--sapIndicationColor_2: #ab0000;--sapIndicationColor_2_Background: #fff;--sapIndicationColor_2_BorderColor: #000;--sapIndicationColor_2_TextColor: #000;--sapIndicationColor_2_Hover_Background: #e97624;--sapIndicationColor_2_Active_Background: #e97624;--sapIndicationColor_2_Active_BorderColor: #000;--sapIndicationColor_2_Active_TextColor: #000;--sapIndicationColor_2_Selected_Background: #5c93ff;--sapIndicationColor_2_Selected_BorderColor: #000;--sapIndicationColor_2_Selected_TextColor: #000;--sapIndicationColor_2b: #ab0000;--sapIndicationColor_2b_TextColor: #000;--sapIndicationColor_2b_Background: #fff;--sapIndicationColor_2b_BorderColor: #000;--sapIndicationColor_2b_Hover_Background: #e97624;--sapIndicationColor_3: #5c5c00;--sapIndicationColor_3_Background: #fff;--sapIndicationColor_3_BorderColor: #000;--sapIndicationColor_3_TextColor: #000;--sapIndicationColor_3_Hover_Background: #e97624;--sapIndicationColor_3_Active_Background: #e97624;--sapIndicationColor_3_Active_BorderColor: #000;--sapIndicationColor_3_Active_TextColor: #000;--sapIndicationColor_3_Selected_Background: #5c93ff;--sapIndicationColor_3_Selected_BorderColor: #000;--sapIndicationColor_3_Selected_TextColor: #000;--sapIndicationColor_3b: #5c5c00;--sapIndicationColor_3b_TextColor: #000;--sapIndicationColor_3b_Background: #fff;--sapIndicationColor_3b_BorderColor: #000;--sapIndicationColor_3b_Hover_Background: #e97624;--sapIndicationColor_4: #006362;--sapIndicationColor_4_Background: #fff;--sapIndicationColor_4_BorderColor: #000;--sapIndicationColor_4_TextColor: #000;--sapIndicationColor_4_Hover_Background: #e97624;--sapIndicationColor_4_Active_Background: #e97624;--sapIndicationColor_4_Active_BorderColor: #000;--sapIndicationColor_4_Active_TextColor: #000;--sapIndicationColor_4_Selected_Background: #5c93ff;--sapIndicationColor_4_Selected_BorderColor: #000;--sapIndicationColor_4_Selected_TextColor: #000;--sapIndicationColor_4b: #006362;--sapIndicationColor_4b_TextColor: #000;--sapIndicationColor_4b_Background: #fff;--sapIndicationColor_4b_BorderColor: #000;--sapIndicationColor_4b_Hover_Background: #e97624;--sapIndicationColor_5: #004ccb;--sapIndicationColor_5_Background: #fff;--sapIndicationColor_5_BorderColor: #000;--sapIndicationColor_5_TextColor: #000;--sapIndicationColor_5_Hover_Background: #e97624;--sapIndicationColor_5_Active_Background: #e97624;--sapIndicationColor_5_Active_BorderColor: #000;--sapIndicationColor_5_Active_TextColor: #000;--sapIndicationColor_5_Selected_Background: #5c93ff;--sapIndicationColor_5_Selected_BorderColor: #000;--sapIndicationColor_5_Selected_TextColor: #000;--sapIndicationColor_5b: #004ccb;--sapIndicationColor_5b_TextColor: #000;--sapIndicationColor_5b_Background: #fff;--sapIndicationColor_5b_BorderColor: #000;--sapIndicationColor_5b_Hover_Background: #e97624;--sapIndicationColor_6: #105b5b;--sapIndicationColor_6_Background: #fff;--sapIndicationColor_6_BorderColor: #000;--sapIndicationColor_6_TextColor: #000;--sapIndicationColor_6_Hover_Background: #e97624;--sapIndicationColor_6_Active_Background: #e97624;--sapIndicationColor_6_Active_BorderColor: #000;--sapIndicationColor_6_Active_TextColor: #000;--sapIndicationColor_6_Selected_Background: #5c93ff;--sapIndicationColor_6_Selected_BorderColor: #000;--sapIndicationColor_6_Selected_TextColor: #000;--sapIndicationColor_6b: #105b5b;--sapIndicationColor_6b_TextColor: #000;--sapIndicationColor_6b_Background: #fff;--sapIndicationColor_6b_BorderColor: #000;--sapIndicationColor_6b_Hover_Background: #e97624;--sapIndicationColor_7: #6c32a9;--sapIndicationColor_7_Background: #fff;--sapIndicationColor_7_BorderColor: #000;--sapIndicationColor_7_TextColor: #000;--sapIndicationColor_7_Hover_Background: #e97624;--sapIndicationColor_7_Active_Background: #e97624;--sapIndicationColor_7_Active_BorderColor: #000;--sapIndicationColor_7_Active_TextColor: #000;--sapIndicationColor_7_Selected_Background: #5c93ff;--sapIndicationColor_7_Selected_BorderColor: #000;--sapIndicationColor_7_Selected_TextColor: #000;--sapIndicationColor_7b: #6c32a9;--sapIndicationColor_7b_TextColor: #000;--sapIndicationColor_7b_Background: #fff;--sapIndicationColor_7b_BorderColor: #000;--sapIndicationColor_7b_Hover_Background: #e97624;--sapIndicationColor_8: #961d7c;--sapIndicationColor_8_Background: #fff;--sapIndicationColor_8_BorderColor: #000;--sapIndicationColor_8_TextColor: #000;--sapIndicationColor_8_Hover_Background: #e97624;--sapIndicationColor_8_Active_Background: #e97624;--sapIndicationColor_8_Active_BorderColor: #000;--sapIndicationColor_8_Active_TextColor: #000;--sapIndicationColor_8_Selected_Background: #5c93ff;--sapIndicationColor_8_Selected_BorderColor: #000;--sapIndicationColor_8_Selected_TextColor: #000;--sapIndicationColor_8b: #961d7c;--sapIndicationColor_8b_TextColor: #000;--sapIndicationColor_8b_Background: #fff;--sapIndicationColor_8b_BorderColor: #000;--sapIndicationColor_8b_Hover_Background: #e97624;--sapIndicationColor_9: #fff;--sapIndicationColor_9_Background: #fff;--sapIndicationColor_9_BorderColor: #000;--sapIndicationColor_9_TextColor: #000;--sapIndicationColor_9_Hover_Background: #e97624;--sapIndicationColor_9_Active_Background: #e97624;--sapIndicationColor_9_Active_BorderColor: #000;--sapIndicationColor_9_Active_TextColor: #000;--sapIndicationColor_9_Selected_Background: #5c93ff;--sapIndicationColor_9_Selected_BorderColor: #000;--sapIndicationColor_9_Selected_TextColor: #000;--sapIndicationColor_9b: #fff;--sapIndicationColor_9b_TextColor: #000;--sapIndicationColor_9b_Background: #fff;--sapIndicationColor_9b_BorderColor: #000;--sapIndicationColor_9b_Hover_Background: #e97624;--sapIndicationColor_10: #eaecee;--sapIndicationColor_10_Background: #fff;--sapIndicationColor_10_BorderColor: #000;--sapIndicationColor_10_TextColor: #000;--sapIndicationColor_10_Hover_Background: #e97624;--sapIndicationColor_10_Active_Background: #e97624;--sapIndicationColor_10_Active_BorderColor: #000;--sapIndicationColor_10_Active_TextColor: #000;--sapIndicationColor_10_Selected_Background: #5c93ff;--sapIndicationColor_10_Selected_BorderColor: #000;--sapIndicationColor_10_Selected_TextColor: #000;--sapIndicationColor_10b: #eaecee;--sapIndicationColor_10b_TextColor: #000;--sapIndicationColor_10b_Background: #fff;--sapIndicationColor_10b_BorderColor: #000;--sapIndicationColor_10b_Hover_Background: #e97624;--sapLegend_WorkingBackground: #d9d9d9;--sapLegend_NonWorkingBackground: #b3b3b3;--sapLegend_CurrentDateTime: #961d7c;--sapLegendColor1: #5f5800;--sapLegendColor2: #5e4101;--sapLegendColor3: #973333;--sapLegendColor4: #463000;--sapLegendColor5: #961d7c;--sapLegendColor6: #004ccb;--sapLegendColor7: #105b5b;--sapLegendColor8: #26340b;--sapLegendColor9: #4a5964;--sapLegendColor10: #6c3d62;--sapLegendColor11: #383513;--sapLegendColor12: #734f00;--sapLegendColor13: #723e3e;--sapLegendColor14: #5f5642;--sapLegendColor15: #60535d;--sapLegendColor16: #465878;--sapLegendColor17: #435b5b;--sapLegendColor18: #4e5a36;--sapLegendColor19: #4e5869;--sapLegendColor20: #001b49;--sapLegendBackgroundColor1: #fff;--sapLegendBackgroundColor2: #fff;--sapLegendBackgroundColor3: #fff;--sapLegendBackgroundColor4: #fff;--sapLegendBackgroundColor5: #fff;--sapLegendBackgroundColor6: #fff;--sapLegendBackgroundColor7: #fff;--sapLegendBackgroundColor8: #fff;--sapLegendBackgroundColor9: #fff;--sapLegendBackgroundColor10: #fff;--sapLegendBackgroundColor11: #fff;--sapLegendBackgroundColor12: #fff;--sapLegendBackgroundColor13: #fff;--sapLegendBackgroundColor14: #fff;--sapLegendBackgroundColor15: #fff;--sapLegendBackgroundColor16: #fff;--sapLegendBackgroundColor17: #fff;--sapLegendBackgroundColor18: #fff;--sapLegendBackgroundColor19: #fff;--sapLegendBackgroundColor20: #fff;--sapChart_Background: #fff;--sapChart_ContrastTextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_ContrastShadowColor: #fff;--sapChart_ContrastLineColor: #fff;--sapChart_LineColor_1: #888;--sapChart_LineColor_2: #000;--sapChart_LineColor_3: #000;--sapChart_Choropleth_Background: #b3b3b3;--sapChart_ChoroplethRegion_Background: #525252;--sapChart_ChoroplethRegion_BorderColor: #b3b3b3;--sapChart_Data_TextColor: #000;--sapChart_Data_ContrastTextColor: #fff;--sapChart_Data_InteractiveColor: #000;--sapChart_Data_Active_Background: #e97624;--sapChart_OrderedColor_1: #446e97;--sapChart_OrderedColor_2: #d74114;--sapChart_OrderedColor_3: #2d6f51;--sapChart_OrderedColor_4: #df1278;--sapChart_OrderedColor_5: #7d44cf;--sapChart_OrderedColor_6: #03778c;--sapChart_OrderedColor_7: #0070f2;--sapChart_OrderedColor_8: #ae478d;--sapChart_OrderedColor_9: #667664;--sapChart_OrderedColor_10: #b75757;--sapChart_OrderedColor_11: #4b25e7;--sapChart_OrderedColor_12: #816246;--sapChart_Bad: #ab0000;--sapChart_Critical: #5c5c00;--sapChart_Good: #006362;--sapChart_Neutral: #525252;--sapChart_Sequence_1_Plus3: #6f97be;--sapChart_Sequence_1_Plus3_TextColor: #000;--sapChart_Sequence_1_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_1_Plus2: #5a88b4;--sapChart_Sequence_1_Plus2_TextColor: #fff;--sapChart_Sequence_1_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Plus1: #4c7ba9;--sapChart_Sequence_1_Plus1_TextColor: #fff;--sapChart_Sequence_1_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1: #446e97;--sapChart_Sequence_1_TextColor: #fff;--sapChart_Sequence_1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_BorderColor: #446e97;--sapChart_Sequence_1_Minus1: #3c6185;--sapChart_Sequence_1_Minus1_TextColor: #fff;--sapChart_Sequence_1_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Minus2: #345474;--sapChart_Sequence_1_Minus2_TextColor: #fff;--sapChart_Sequence_1_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Minus3: #2c4862;--sapChart_Sequence_1_Minus3_TextColor: #fff;--sapChart_Sequence_1_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Minus4: #243b51;--sapChart_Sequence_1_Minus4_TextColor: #fff;--sapChart_Sequence_1_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_1_Minus5: #1c2e3f;--sapChart_Sequence_1_Minus5_TextColor: #fff;--sapChart_Sequence_1_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Plus3: #ee6c45;--sapChart_Sequence_2_Plus3_TextColor: #000;--sapChart_Sequence_2_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_2_Plus2: #ec5d32;--sapChart_Sequence_2_Plus2_TextColor: #fff;--sapChart_Sequence_2_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Plus1: #ea4b1b;--sapChart_Sequence_2_Plus1_TextColor: #fff;--sapChart_Sequence_2_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2: #d74114;--sapChart_Sequence_2_TextColor: #fff;--sapChart_Sequence_2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_BorderColor: #d74114;--sapChart_Sequence_2_Minus1: #c03a12;--sapChart_Sequence_2_Minus1_TextColor: #fff;--sapChart_Sequence_2_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Minus2: #9f300f;--sapChart_Sequence_2_Minus2_TextColor: #fff;--sapChart_Sequence_2_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Minus3: #912c0d;--sapChart_Sequence_2_Minus3_TextColor: #fff;--sapChart_Sequence_2_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Minus4: #7a250b;--sapChart_Sequence_2_Minus4_TextColor: #fff;--sapChart_Sequence_2_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_2_Minus5: #621e09;--sapChart_Sequence_2_Minus5_TextColor: #fff;--sapChart_Sequence_2_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Plus3: #43a579;--sapChart_Sequence_3_Plus3_TextColor: #000;--sapChart_Sequence_3_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_3_Plus2: #3c936b;--sapChart_Sequence_3_Plus2_TextColor: #fff;--sapChart_Sequence_3_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Plus1: #34815e;--sapChart_Sequence_3_Plus1_TextColor: #fff;--sapChart_Sequence_3_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3: #2d6f51;--sapChart_Sequence_3_TextColor: #fff;--sapChart_Sequence_3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_BorderColor: #2d6f51;--sapChart_Sequence_3_Minus1: #265d44;--sapChart_Sequence_3_Minus1_TextColor: #fff;--sapChart_Sequence_3_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Minus2: #1e4b37;--sapChart_Sequence_3_Minus2_TextColor: #fff;--sapChart_Sequence_3_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Minus3: #183c2c;--sapChart_Sequence_3_Minus3_TextColor: #fff;--sapChart_Sequence_3_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Minus4: #132e21;--sapChart_Sequence_3_Minus4_TextColor: #fff;--sapChart_Sequence_3_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_3_Minus5: #0d1f17;--sapChart_Sequence_3_Minus5_TextColor: #fff;--sapChart_Sequence_3_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Plus3: #f25ba6;--sapChart_Sequence_4_Plus3_TextColor: #000;--sapChart_Sequence_4_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_4_Plus2: #ef3a94;--sapChart_Sequence_4_Plus2_TextColor: #fff;--sapChart_Sequence_4_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Plus1: #ed2287;--sapChart_Sequence_4_Plus1_TextColor: #fff;--sapChart_Sequence_4_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4: #df1278;--sapChart_Sequence_4_TextColor: #fff;--sapChart_Sequence_4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_BorderColor: #df1278;--sapChart_Sequence_4_Minus1: #c7106b;--sapChart_Sequence_4_Minus1_TextColor: #fff;--sapChart_Sequence_4_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Minus2: #b00e5f;--sapChart_Sequence_4_Minus2_TextColor: #fff;--sapChart_Sequence_4_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Minus3: #980c52;--sapChart_Sequence_4_Minus3_TextColor: #fff;--sapChart_Sequence_4_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Minus4: #810a45;--sapChart_Sequence_4_Minus4_TextColor: #fff;--sapChart_Sequence_4_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_4_Minus5: #690839;--sapChart_Sequence_4_Minus5_TextColor: #fff;--sapChart_Sequence_4_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Plus3: #a781df;--sapChart_Sequence_5_Plus3_TextColor: #000;--sapChart_Sequence_5_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_5_Plus2: #996dd9;--sapChart_Sequence_5_Plus2_TextColor: #fff;--sapChart_Sequence_5_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Plus1: #8b58d4;--sapChart_Sequence_5_Plus1_TextColor: #fff;--sapChart_Sequence_5_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5: #7d44cf;--sapChart_Sequence_5_TextColor: #fff;--sapChart_Sequence_5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_BorderColor: #7d44cf;--sapChart_Sequence_5_Minus1: #6f33c7;--sapChart_Sequence_5_Minus1_TextColor: #fff;--sapChart_Sequence_5_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Minus2: #642eb2;--sapChart_Sequence_5_Minus2_TextColor: #fff;--sapChart_Sequence_5_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Minus3: #59299e;--sapChart_Sequence_5_Minus3_TextColor: #fff;--sapChart_Sequence_5_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Minus4: #522592;--sapChart_Sequence_5_Minus4_TextColor: #fff;--sapChart_Sequence_5_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_5_Minus5: #492182;--sapChart_Sequence_5_Minus5_TextColor: #fff;--sapChart_Sequence_5_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Plus3: #04a1be;--sapChart_Sequence_6_Plus3_TextColor: #000;--sapChart_Sequence_6_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_6_Plus2: #0495af;--sapChart_Sequence_6_Plus2_TextColor: #fff;--sapChart_Sequence_6_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Plus1: #0388a0;--sapChart_Sequence_6_Plus1_TextColor: #fff;--sapChart_Sequence_6_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6: #03778c;--sapChart_Sequence_6_TextColor: #fff;--sapChart_Sequence_6_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_BorderColor: #03778c;--sapChart_Sequence_6_Minus1: #036678;--sapChart_Sequence_6_Minus1_TextColor: #fff;--sapChart_Sequence_6_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Minus2: #025564;--sapChart_Sequence_6_Minus2_TextColor: #fff;--sapChart_Sequence_6_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Minus3: #024450;--sapChart_Sequence_6_Minus3_TextColor: #fff;--sapChart_Sequence_6_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Minus4: #01333c;--sapChart_Sequence_6_Minus4_TextColor: #fff;--sapChart_Sequence_6_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_6_Minus5: #012228;--sapChart_Sequence_6_Minus5_TextColor: #fff;--sapChart_Sequence_6_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Plus3: #3a95ff;--sapChart_Sequence_7_Plus3_TextColor: #000;--sapChart_Sequence_7_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_7_Plus2: #268aff;--sapChart_Sequence_7_Plus2_TextColor: #fff;--sapChart_Sequence_7_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Plus1: #0d7dff;--sapChart_Sequence_7_Plus1_TextColor: #fff;--sapChart_Sequence_7_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7: #0070f2;--sapChart_Sequence_7_TextColor: #fff;--sapChart_Sequence_7_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_BorderColor: #0070f2;--sapChart_Sequence_7_Minus1: #0062d3;--sapChart_Sequence_7_Minus1_TextColor: #fff;--sapChart_Sequence_7_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Minus2: #0054b5;--sapChart_Sequence_7_Minus2_TextColor: #fff;--sapChart_Sequence_7_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Minus3: #00418c;--sapChart_Sequence_7_Minus3_TextColor: #fff;--sapChart_Sequence_7_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Minus4: #00244f;--sapChart_Sequence_7_Minus4_TextColor: #fff;--sapChart_Sequence_7_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_7_Minus5: #001b3a;--sapChart_Sequence_7_Minus5_TextColor: #fff;--sapChart_Sequence_7_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Plus3: #c879af;--sapChart_Sequence_8_Plus3_TextColor: #000;--sapChart_Sequence_8_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_8_Plus2: #c167a4;--sapChart_Sequence_8_Plus2_TextColor: #fff;--sapChart_Sequence_8_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Plus1: #ba5599;--sapChart_Sequence_8_Plus1_TextColor: #fff;--sapChart_Sequence_8_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8: #ae478d;--sapChart_Sequence_8_TextColor: #fff;--sapChart_Sequence_8_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_BorderColor: #ae478d;--sapChart_Sequence_8_Minus1: #9c407e;--sapChart_Sequence_8_Minus1_TextColor: #fff;--sapChart_Sequence_8_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Minus2: #8a3870;--sapChart_Sequence_8_Minus2_TextColor: #fff;--sapChart_Sequence_8_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Minus3: #783161;--sapChart_Sequence_8_Minus3_TextColor: #fff;--sapChart_Sequence_8_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Minus4: #662952;--sapChart_Sequence_8_Minus4_TextColor: #fff;--sapChart_Sequence_8_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_8_Minus5: #532244;--sapChart_Sequence_8_Minus5_TextColor: #fff;--sapChart_Sequence_8_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Plus3: #879785;--sapChart_Sequence_9_Plus3_TextColor: #000;--sapChart_Sequence_9_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_9_Plus2: #7c8e7a;--sapChart_Sequence_9_Plus2_TextColor: #fff;--sapChart_Sequence_9_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Plus1: #70816d;--sapChart_Sequence_9_Plus1_TextColor: #fff;--sapChart_Sequence_9_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9: #667664;--sapChart_Sequence_9_TextColor: #fff;--sapChart_Sequence_9_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_BorderColor: #667664;--sapChart_Sequence_9_Minus1: #5c6b5b;--sapChart_Sequence_9_Minus1_TextColor: #fff;--sapChart_Sequence_9_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Minus2: #536051;--sapChart_Sequence_9_Minus2_TextColor: #fff;--sapChart_Sequence_9_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Minus3: #495548;--sapChart_Sequence_9_Minus3_TextColor: #fff;--sapChart_Sequence_9_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Minus4: #404a3f;--sapChart_Sequence_9_Minus4_TextColor: #fff;--sapChart_Sequence_9_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_9_Minus5: #363f35;--sapChart_Sequence_9_Minus5_TextColor: #fff;--sapChart_Sequence_9_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Plus3: #c98282;--sapChart_Sequence_10_Plus3_TextColor: #000;--sapChart_Sequence_10_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_10_Plus2: #c57777;--sapChart_Sequence_10_Plus2_TextColor: #fff;--sapChart_Sequence_10_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Plus1: #bd6565;--sapChart_Sequence_10_Plus1_TextColor: #fff;--sapChart_Sequence_10_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10: #b75757;--sapChart_Sequence_10_TextColor: #fff;--sapChart_Sequence_10_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_BorderColor: #b75757;--sapChart_Sequence_10_Minus1: #af4b4b;--sapChart_Sequence_10_Minus1_TextColor: #fff;--sapChart_Sequence_10_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Minus2: #a04545;--sapChart_Sequence_10_Minus2_TextColor: #fff;--sapChart_Sequence_10_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Minus3: #923f3f;--sapChart_Sequence_10_Minus3_TextColor: #fff;--sapChart_Sequence_10_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Minus4: #843939;--sapChart_Sequence_10_Minus4_TextColor: #fff;--sapChart_Sequence_10_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_10_Minus5: #763232;--sapChart_Sequence_10_Minus5_TextColor: #fff;--sapChart_Sequence_10_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Plus3: #967dff;--sapChart_Sequence_11_Plus3_TextColor: #000;--sapChart_Sequence_11_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_11_Plus2: #7e5fff;--sapChart_Sequence_11_Plus2_TextColor: #fff;--sapChart_Sequence_11_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Plus1: #5d36ff;--sapChart_Sequence_11_Plus1_TextColor: #fff;--sapChart_Sequence_11_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11: #4b25e7;--sapChart_Sequence_11_TextColor: #fff;--sapChart_Sequence_11_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_BorderColor: #4b25e7;--sapChart_Sequence_11_Minus1: #3a17cd;--sapChart_Sequence_11_Minus1_TextColor: #fff;--sapChart_Sequence_11_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Minus2: #3012a8;--sapChart_Sequence_11_Minus2_TextColor: #fff;--sapChart_Sequence_11_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Minus3: #250e83;--sapChart_Sequence_11_Minus3_TextColor: #fff;--sapChart_Sequence_11_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Minus4: #1d0b68;--sapChart_Sequence_11_Minus4_TextColor: #fff;--sapChart_Sequence_11_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_11_Minus5: #10063a;--sapChart_Sequence_11_Minus5_TextColor: #fff;--sapChart_Sequence_11_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Plus3: #b08d6e;--sapChart_Sequence_12_Plus3_TextColor: #000;--sapChart_Sequence_12_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_12_Plus2: #9f7956;--sapChart_Sequence_12_Plus2_TextColor: #fff;--sapChart_Sequence_12_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Plus1: #926f4f;--sapChart_Sequence_12_Plus1_TextColor: #fff;--sapChart_Sequence_12_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12: #816246;--sapChart_Sequence_12_TextColor: #fff;--sapChart_Sequence_12_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_BorderColor: #816246;--sapChart_Sequence_12_Minus1: #74583f;--sapChart_Sequence_12_Minus1_TextColor: #fff;--sapChart_Sequence_12_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Minus2: #674e38;--sapChart_Sequence_12_Minus2_TextColor: #fff;--sapChart_Sequence_12_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Minus3: #594430;--sapChart_Sequence_12_Minus3_TextColor: #fff;--sapChart_Sequence_12_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Minus4: #4c3a29;--sapChart_Sequence_12_Minus4_TextColor: #fff;--sapChart_Sequence_12_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_12_Minus5: #3f3022;--sapChart_Sequence_12_Minus5_TextColor: #fff;--sapChart_Sequence_12_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Plus3: #ff5454;--sapChart_Sequence_Bad_Plus3_TextColor: #000;--sapChart_Sequence_Bad_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Bad_Plus2: #ff2626;--sapChart_Sequence_Bad_Plus2_TextColor: #fff;--sapChart_Sequence_Bad_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Plus1: #e80000;--sapChart_Sequence_Bad_Plus1_TextColor: #fff;--sapChart_Sequence_Bad_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad: #ab0000;--sapChart_Sequence_Bad_TextColor: #fff;--sapChart_Sequence_Bad_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_BorderColor: #ab0000;--sapChart_Sequence_Bad_Minus1: #970000;--sapChart_Sequence_Bad_Minus1_TextColor: #fff;--sapChart_Sequence_Bad_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Minus2: #820000;--sapChart_Sequence_Bad_Minus2_TextColor: #fff;--sapChart_Sequence_Bad_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Minus3: #6e0000;--sapChart_Sequence_Bad_Minus3_TextColor: #fff;--sapChart_Sequence_Bad_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Minus4: #590000;--sapChart_Sequence_Bad_Minus4_TextColor: #fff;--sapChart_Sequence_Bad_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Bad_Minus5: #000;--sapChart_Sequence_Bad_Minus5_TextColor: #fff;--sapChart_Sequence_Bad_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Plus3: #990;--sapChart_Sequence_Critical_Plus3_TextColor: #000;--sapChart_Sequence_Critical_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Critical_Plus2: #858500;--sapChart_Sequence_Critical_Plus2_TextColor: #fff;--sapChart_Sequence_Critical_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Plus1: #707000;--sapChart_Sequence_Critical_Plus1_TextColor: #fff;--sapChart_Sequence_Critical_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical: #5c5c00;--sapChart_Sequence_Critical_TextColor: #fff;--sapChart_Sequence_Critical_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_BorderColor: #5c5c00;--sapChart_Sequence_Critical_Minus1: #525200;--sapChart_Sequence_Critical_Minus1_TextColor: #fff;--sapChart_Sequence_Critical_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Minus2: #484800;--sapChart_Sequence_Critical_Minus2_TextColor: #fff;--sapChart_Sequence_Critical_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Minus3: #3d3d00;--sapChart_Sequence_Critical_Minus3_TextColor: #fff;--sapChart_Sequence_Critical_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Minus4: #330;--sapChart_Sequence_Critical_Minus4_TextColor: #fff;--sapChart_Sequence_Critical_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Critical_Minus5: #242400;--sapChart_Sequence_Critical_Minus5_TextColor: #fff;--sapChart_Sequence_Critical_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Plus3: #00a5a4;--sapChart_Sequence_Good_Plus3_TextColor: #000;--sapChart_Sequence_Good_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Good_Plus2: #00918f;--sapChart_Sequence_Good_Plus2_TextColor: #fff;--sapChart_Sequence_Good_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Plus1: #007776;--sapChart_Sequence_Good_Plus1_TextColor: #fff;--sapChart_Sequence_Good_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good: #006362;--sapChart_Sequence_Good_TextColor: #fff;--sapChart_Sequence_Good_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_BorderColor: #006362;--sapChart_Sequence_Good_Minus1: #005453;--sapChart_Sequence_Good_Minus1_TextColor: #fff;--sapChart_Sequence_Good_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Minus2: #044;--sapChart_Sequence_Good_Minus2_TextColor: #fff;--sapChart_Sequence_Good_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Minus3: #003535;--sapChart_Sequence_Good_Minus3_TextColor: #fff;--sapChart_Sequence_Good_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Minus4: #002625;--sapChart_Sequence_Good_Minus4_TextColor: #fff;--sapChart_Sequence_Good_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Good_Minus5: #001c1b;--sapChart_Sequence_Good_Minus5_TextColor: #fff;--sapChart_Sequence_Good_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Plus3: #8d8d8d;--sapChart_Sequence_Neutral_Plus3_TextColor: #000;--sapChart_Sequence_Neutral_Plus3_TextShadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;--sapChart_Sequence_Neutral_Plus2: #7b7b7b;--sapChart_Sequence_Neutral_Plus2_TextColor: #fff;--sapChart_Sequence_Neutral_Plus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Plus1: #666;--sapChart_Sequence_Neutral_Plus1_TextColor: #fff;--sapChart_Sequence_Neutral_Plus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral: #525252;--sapChart_Sequence_Neutral_TextColor: #fff;--sapChart_Sequence_Neutral_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_BorderColor: #525252;--sapChart_Sequence_Neutral_Minus1: #3e3e3e;--sapChart_Sequence_Neutral_Minus1_TextColor: #fff;--sapChart_Sequence_Neutral_Minus1_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Minus2: #2e2e2e;--sapChart_Sequence_Neutral_Minus2_TextColor: #fff;--sapChart_Sequence_Neutral_Minus2_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Minus3: #242424;--sapChart_Sequence_Neutral_Minus3_TextColor: #fff;--sapChart_Sequence_Neutral_Minus3_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Minus4: #1a1a1a;--sapChart_Sequence_Neutral_Minus4_TextColor: #fff;--sapChart_Sequence_Neutral_Minus4_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapChart_Sequence_Neutral_Minus5: #000;--sapChart_Sequence_Neutral_Minus5_TextColor: #fff;--sapChart_Sequence_Neutral_Minus5_TextShadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;--sapSapThemeId: sap_horizon_hcw;--sapBreakpoint_S_Min: 0;--sapBreakpoint_M_Min: 600px;--sapBreakpoint_L_Min: 1024px;--sapBreakpoint_XL_Min: 1440px\n}";
|
|
4
4
|
|
|
5
5
|
exports.default = parametersBundle_css;
|
|
6
6
|
|