@openui5/sap.ui.integration 1.96.2 → 1.98.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/.reuse/dep5 +26 -31
- package/THIRDPARTY.txt +15 -21
- package/package.json +3 -3
- package/src/sap/ui/integration/.library +16 -22
- package/src/sap/ui/integration/ActionDefinition.js +2 -2
- package/src/sap/ui/integration/Designtime.js +2 -2
- package/src/sap/ui/integration/Extension.js +2 -2
- package/src/sap/ui/integration/Host.js +38 -2
- package/src/sap/ui/integration/bindingFeatures/DateRange.js +1 -1
- package/src/sap/ui/integration/cards/AdaptiveContent.js +16 -50
- package/src/sap/ui/integration/cards/AnalyticalContent.js +8 -9
- package/src/sap/ui/integration/cards/AnalyticalContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +5 -3
- package/src/sap/ui/integration/cards/AnalyticsCloudContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/BaseContent.js +56 -6
- package/src/sap/ui/integration/cards/BaseContentRenderer.js +2 -2
- package/src/sap/ui/integration/cards/BaseListContent.js +39 -69
- package/src/sap/ui/integration/cards/CalendarContent.js +16 -12
- package/src/sap/ui/integration/cards/CalendarContentRenderer.js +2 -1
- package/src/sap/ui/integration/cards/ComponentContent.js +3 -2
- package/src/sap/ui/integration/cards/ComponentContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/Footer.js +2 -2
- package/src/sap/ui/integration/cards/Header.js +3 -3
- package/src/sap/ui/integration/cards/ListContent.js +67 -23
- package/src/sap/ui/integration/cards/ListContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/NumericHeader.js +3 -3
- package/src/sap/ui/integration/cards/ObjectContent.js +353 -228
- package/src/sap/ui/integration/cards/ObjectContentRenderer.js +28 -0
- package/src/sap/ui/integration/cards/TableContent.js +6 -10
- package/src/sap/ui/integration/cards/TableContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/TimelineContent.js +10 -14
- package/src/sap/ui/integration/cards/TimelineContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/WebPageContent.js +6 -2
- package/src/sap/ui/integration/cards/WebPageContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/actions/BaseAction.js +89 -0
- package/src/sap/ui/integration/cards/actions/CardActions.js +472 -0
- package/src/sap/ui/integration/cards/actions/CustomAction.js +31 -0
- package/src/sap/ui/integration/cards/actions/DateChangeAction.js +20 -0
- package/src/sap/ui/integration/cards/actions/MonthChangeAction.js +20 -0
- package/src/sap/ui/integration/cards/actions/NavigationAction.js +63 -0
- package/src/sap/ui/integration/cards/actions/SubmitAction.js +89 -0
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +10 -10
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +3 -3
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +7 -12
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +2 -2
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputTime.js +2 -2
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +3 -3
- package/src/sap/ui/integration/cards/adaptivecards/elements/hostConfig.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/overwrites/ActionRender.js +1 -1
- package/src/sap/ui/integration/cards/filters/BaseFilter.js +2 -2
- package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +63 -58
- package/src/sap/ui/integration/cards/filters/FilterBar.js +91 -0
- package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +34 -13
- package/src/sap/ui/integration/cards/filters/SearchFilter.js +95 -0
- package/src/sap/ui/integration/cards/filters/SelectFilter.js +34 -4
- package/src/sap/ui/integration/controls/ActionsStrip.js +3 -3
- package/src/sap/ui/integration/controls/ActionsToolbar.js +4 -5
- package/src/sap/ui/integration/controls/ActionsToolbarRenderer.js +1 -1
- package/src/sap/ui/integration/controls/ListContentItem.js +2 -2
- package/src/sap/ui/integration/controls/ListContentItemRenderer.js +1 -1
- package/src/sap/ui/integration/controls/Microchart.js +2 -2
- package/src/sap/ui/integration/controls/MicrochartLegend.js +2 -2
- package/src/sap/ui/integration/controls/MicrochartLegendRenderer.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementBase.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementCard.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementCardEditor.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_sappsd.properties +15 -11
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saprigi.properties +13 -19
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saptrc.properties +16 -12
- package/src/sap/ui/integration/designtime/baseEditor/layout/Form.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.fragment.xml +1 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +7 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.fragment.xml +15 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +116 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/util/BaseDefaultValidatorModules.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/StylesheetManager.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/util/binding/resolveBinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/cleanupDesigntimeMetadata.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/createPromise.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/escapeParameter.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/findClosestInstance.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/hasTag.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/isTemplate.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/isValidBindingString.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsPatternMatch.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +18 -3
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/BASEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/CardEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/PropertyEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/PropertyEditors.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/AppConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/HeaderConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/ListCardConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/ObjectCardConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/TableCardConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/generateActionConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/generateDataConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/index.js +13 -2
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n.properties +57 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ar.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_bg.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ca.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cs.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cy.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_da.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_de.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_el.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_GB.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_sappsd.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saprigi.properties +0 -4
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saptrc.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es_MX.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_et.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fi.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr_CA.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hi.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hr.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hu.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_id.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_it.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_iw.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ja.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_kk.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ko.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lt.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lv.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ms.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_nl.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_no.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pl.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt_PT.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ro.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ru.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sh.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sk.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sl.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sv.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_th.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_tr.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_uk.properties +41 -1
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_vi.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_CN.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_TW.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +62 -4
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +218 -0
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/util/CommonPatterns.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/validator/IsPatternMatchList.js +1 -1
- package/src/sap/ui/integration/designtime/editor/CardEditor.js +53 -4
- package/src/sap/ui/integration/designtime/editor/CardPreview.js +31 -11
- package/src/sap/ui/integration/designtime/editor/css/CardPreview.css +18 -1
- package/src/sap/ui/integration/editor/Editor.js +219 -209
- package/src/sap/ui/integration/editor/EditorResourceBundles.js +43 -32
- package/src/sap/ui/integration/editor/Extension.js +2 -2
- package/src/sap/ui/integration/editor/Manifest.js +3 -3
- package/src/sap/ui/integration/editor/Merger.js +1 -19
- package/src/sap/ui/integration/editor/Settings.js +10 -6
- package/src/sap/ui/integration/editor/css/Editor.css +22 -0
- package/src/sap/ui/integration/editor/fields/BaseField.js +9 -12
- package/src/sap/ui/integration/editor/fields/BooleanField.js +4 -2
- package/src/sap/ui/integration/editor/fields/DateField.js +2 -2
- package/src/sap/ui/integration/editor/fields/DateTimeField.js +2 -2
- package/src/sap/ui/integration/editor/fields/DestinationField.js +2 -2
- package/src/sap/ui/integration/editor/fields/IntegerField.js +5 -2
- package/src/sap/ui/integration/editor/fields/ListField.js +274 -62
- package/src/sap/ui/integration/editor/fields/NumberField.js +2 -2
- package/src/sap/ui/integration/editor/fields/StringField.js +85 -53
- package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +10 -30
- package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +2 -4
- package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +2 -4
- package/src/sap/ui/integration/editor/languages.json +2 -2
- package/src/sap/ui/integration/formatters/DateTimeFormatter.js +1 -1
- package/src/sap/ui/integration/formatters/IconFormatter.js +1 -1
- package/src/sap/ui/integration/formatters/NumberFormatter.js +1 -1
- package/src/sap/ui/integration/formatters/TextFormatter.js +1 -1
- package/src/sap/ui/integration/library-bootstrap.js +1 -1
- package/src/sap/ui/integration/library.js +21 -4
- package/src/sap/ui/integration/messagebundle_ar.properties +4 -0
- package/src/sap/ui/integration/messagebundle_bg.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ca.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cs.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cy.properties +4 -0
- package/src/sap/ui/integration/messagebundle_da.properties +4 -0
- package/src/sap/ui/integration/messagebundle_de.properties +4 -0
- package/src/sap/ui/integration/messagebundle_el.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_GB.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_US_sappsd.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_US_saprigi.properties +55 -81
- package/src/sap/ui/integration/messagebundle_en_US_saptrc.properties +4 -0
- package/src/sap/ui/integration/messagebundle_es.properties +4 -0
- package/src/sap/ui/integration/messagebundle_es_MX.properties +4 -0
- package/src/sap/ui/integration/messagebundle_et.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fr_CA.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hu.properties +4 -0
- package/src/sap/ui/integration/messagebundle_id.properties +4 -0
- package/src/sap/ui/integration/messagebundle_it.properties +4 -0
- package/src/sap/ui/integration/messagebundle_iw.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ja.properties +4 -0
- package/src/sap/ui/integration/messagebundle_kk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ko.properties +4 -0
- package/src/sap/ui/integration/messagebundle_lt.properties +4 -0
- package/src/sap/ui/integration/messagebundle_lv.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ms.properties +4 -0
- package/src/sap/ui/integration/messagebundle_nl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_no.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pt.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pt_PT.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ro.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ru.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sh.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sv.properties +4 -0
- package/src/sap/ui/integration/messagebundle_th.properties +4 -0
- package/src/sap/ui/integration/messagebundle_tr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_uk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_vi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_zh_CN.properties +4 -0
- package/src/sap/ui/integration/messagebundle_zh_TW.properties +4 -0
- package/src/sap/ui/integration/model/ContextModel.js +3 -3
- package/src/sap/ui/integration/model/ObservableModel.js +2 -2
- package/src/sap/ui/integration/sap-ui-integration-config.js +1 -1
- package/src/sap/ui/integration/sap-ui-integration-define-nojQuery.js +1 -1
- package/src/sap/ui/integration/schemas/sap-card.json +195 -8
- package/src/sap/ui/integration/services/Data.js +1 -1
- package/src/sap/ui/integration/services/Navigation.js +1 -1
- package/src/sap/ui/integration/services/Service.js +1 -1
- package/src/sap/ui/integration/themes/base/CalendarContent.less +31 -4
- package/src/sap/ui/integration/themes/base/ObjectContent.less +57 -9
- package/src/sap/ui/integration/themes/base/library.source.less +1 -1
- package/src/sap/ui/integration/themes/sap_hcb/library.source.less +1 -1
- package/src/sap/ui/integration/thirdparty/adaptive-expressions.js +1 -0
- package/src/sap/ui/integration/thirdparty/adaptivecards-templating.js +660 -952
- package/src/sap/ui/integration/thirdparty/markdown-it.js +8340 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js +27 -102
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-8f9ad94e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-8f9ad94e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-39f4bd50.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-39f4bd50.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-d12c1ceb.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-d12c1ceb.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-307b7f69.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-307b7f69.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-0f578e7e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-0f578e7e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-6bb7d77b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-6bb7d77b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-0376c479.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-0376c479.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-e1955d32.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-e1955d32.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-e41c44ec.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-e41c44ec.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-963f5beb.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-963f5beb.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-10d3b264.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-10d3b264.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-8a51ede2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-8a51ede2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ac48007a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ac48007a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-1fe90167.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-1fe90167.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-b984b6dc.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-b984b6dc.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-c96b504c.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-c96b504c.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-c943134b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-c943134b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-16c1c577.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-16c1c577.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-60f6fce4.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-60f6fce4.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-3c753818.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-3c753818.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-f5eadd90.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-f5eadd90.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d57d2bfc.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d57d2bfc.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-51d189db.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-51d189db.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-71f66463.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-71f66463.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-5b3dd502.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-5b3dd502.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-c393c4a9.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-c393c4a9.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-632e4f9f.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-632e4f9f.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-56b41ac8.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-56b41ac8.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-c58db769.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-c58db769.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-54fe878e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-54fe878e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-71b1c190.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-71b1c190.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-5ae816d9.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-5ae816d9.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-dd8107e1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-dd8107e1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-9e9f924f.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-9e9f924f.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-2c6cce63.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-2c6cce63.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-767b0e99.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-767b0e99.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-b3537542.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-b3537542.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-806e8ca0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-806e8ca0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-57daf6b1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-57daf6b1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-71a84189.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-71a84189.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-d6d000eb.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-d6d000eb.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-79715cf0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-79715cf0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-c378e505.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-c378e505.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-99b5589a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-99b5589a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-c9a9277d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-c9a9277d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-748178a2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-748178a2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-ffef9f6e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-ffef9f6e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0c3377c5.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0c3377c5.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-16ed5ab0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-16ed5ab0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-2b80e11c.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-2b80e11c.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-324b2fcc.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-324b2fcc.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-4809f843.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-4809f843.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5338149e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5338149e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55dcf53d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55dcf53d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55e683ed.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55e683ed.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5bc2c0de.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5bc2c0de.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7bc1fa16.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7bc1fa16.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7f593c6e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7f593c6e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-826107f5.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-826107f5.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-8b95ce95.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-8b95ce95.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-a003a2e2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-a003a2e2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-ab3e8649.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-ab3e8649.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bfa33d93.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bfa33d93.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dec4feca.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dec4feca.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fb5a25ab.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fb5a25ab.js.map +1 -0
- package/src/sap/ui/integration/util/BaseFactory.js +2 -2
- package/src/sap/ui/integration/util/BindingHelper.js +6 -4
- package/src/sap/ui/integration/util/BindingResolver.js +6 -5
- package/src/sap/ui/integration/util/CacheAndRequestDataProvider.js +1 -1
- package/src/sap/ui/integration/util/CardMerger.js +7 -18
- package/src/sap/ui/integration/util/CardObserver.js +2 -2
- package/src/sap/ui/integration/util/ContentFactory.js +5 -9
- package/src/sap/ui/integration/util/CsrfTokenHandler.js +296 -0
- package/src/sap/ui/integration/util/DataProvider.js +11 -2
- package/src/sap/ui/integration/util/DataProviderFactory.js +49 -12
- package/src/sap/ui/integration/util/Destinations.js +2 -2
- package/src/sap/ui/integration/util/ExtensionDataProvider.js +2 -2
- package/src/sap/ui/integration/util/HeaderFactory.js +3 -3
- package/src/sap/ui/integration/util/JSONBindingHelper.js +3 -3
- package/src/sap/ui/integration/util/LoadingProvider.js +2 -2
- package/src/sap/ui/integration/util/Manifest.js +4 -4
- package/src/sap/ui/integration/util/ManifestResolver.js +99 -0
- package/src/sap/ui/integration/util/ParameterMap.js +1 -1
- package/src/sap/ui/integration/util/RequestDataProvider.js +88 -50
- package/src/sap/ui/integration/util/ServiceDataProvider.js +2 -2
- package/src/sap/ui/integration/util/ServiceManager.js +2 -2
- package/src/sap/ui/integration/util/SkeletonCard.js +50 -0
- package/src/sap/ui/integration/util/Utils.js +74 -2
- package/src/sap/ui/integration/util/loadCardEditor.js +1 -1
- package/src/sap/ui/integration/widgets/Card.js +67 -20
- package/src/sap/ui/integration/widgets/CardRenderer.js +1 -7
- package/src/sap-ui-integration-card-editor.js +1 -1
- package/src/sap-ui-integration-editor.js +1 -1
- package/src/sap-ui-integration.js +1 -1
- package/ui5.yaml +288 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/Unicode-Data-Files-LICENSE.txt +0 -27
- package/src/sap/ui/integration/thirdparty/webcomponents/ar.43441c1da168c24d.json +0 -5906
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_EG.2c9d7bc8c6cc480e.json +0 -5906
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_SA.5a58dac7851f3491.json +0 -5906
- package/src/sap/ui/integration/thirdparty/webcomponents/bg.ed8d32010cf321a6.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.es5.js +0 -212
- package/src/sap/ui/integration/thirdparty/webcomponents/ca.e7ad42298985cd11.json +0 -4996
- package/src/sap/ui/integration/thirdparty/webcomponents/cs.9c679acdc4b03e38.json +0 -5498
- package/src/sap/ui/integration/thirdparty/webcomponents/da.ba9951ef39b201a6.json +0 -4888
- package/src/sap/ui/integration/thirdparty/webcomponents/de.6caccc36abcd1ecf.json +0 -4916
- package/src/sap/ui/integration/thirdparty/webcomponents/de_AT.0f4ffe37737725a0.json +0 -4917
- package/src/sap/ui/integration/thirdparty/webcomponents/de_CH.c148cbc7ceb1a7a5.json +0 -4915
- package/src/sap/ui/integration/thirdparty/webcomponents/el.11c4c67dcb9fadcc.json +0 -4883
- package/src/sap/ui/integration/thirdparty/webcomponents/el_CY.ed3bddd6e79dc343.json +0 -4883
- package/src/sap/ui/integration/thirdparty/webcomponents/en.c4465af466100b5b.json +0 -4970
- package/src/sap/ui/integration/thirdparty/webcomponents/en_AU.5cb9fccc9ce24663.json +0 -4962
- package/src/sap/ui/integration/thirdparty/webcomponents/en_GB.e31daeeb57c2f1d1.json +0 -4971
- package/src/sap/ui/integration/thirdparty/webcomponents/en_HK.0a22405bb092bec2.json +0 -4977
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IE.6a062df10dabdb1c.json +0 -4971
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IN.bfd20b07e9079267.json +0 -4972
- package/src/sap/ui/integration/thirdparty/webcomponents/en_NZ.18303e8298e4752a.json +0 -4971
- package/src/sap/ui/integration/thirdparty/webcomponents/en_PG.9f604c968f3ab77e.json +0 -4972
- package/src/sap/ui/integration/thirdparty/webcomponents/en_SG.cc59a6a409e1617e.json +0 -4973
- package/src/sap/ui/integration/thirdparty/webcomponents/en_ZA.198f9641a502d660.json +0 -4972
- package/src/sap/ui/integration/thirdparty/webcomponents/es.c10bf80f473caf30.json +0 -4912
- package/src/sap/ui/integration/thirdparty/webcomponents/es_AR.7708d7dd7a6d2a15.json +0 -4914
- package/src/sap/ui/integration/thirdparty/webcomponents/es_BO.4a1616d9f3425fba.json +0 -4913
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CL.5637126713317a15.json +0 -4914
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CO.c9436572ca8f4da8.json +0 -4913
- package/src/sap/ui/integration/thirdparty/webcomponents/es_MX.b4bce7dc951eb8f4.json +0 -4915
- package/src/sap/ui/integration/thirdparty/webcomponents/es_PE.65f448fde1f0de13.json +0 -4913
- package/src/sap/ui/integration/thirdparty/webcomponents/es_UY.9ec44031491e9b95.json +0 -4915
- package/src/sap/ui/integration/thirdparty/webcomponents/es_VE.152233c7f57ecdab.json +0 -4914
- package/src/sap/ui/integration/thirdparty/webcomponents/et.bbc93e8a17832e8f.json +0 -4967
- package/src/sap/ui/integration/thirdparty/webcomponents/fa.083b927b3586b3a3.json +0 -4883
- package/src/sap/ui/integration/thirdparty/webcomponents/fi.1b4c89f38783556e.json +0 -5008
- package/src/sap/ui/integration/thirdparty/webcomponents/fr.ddbb9df1e0bdb6ac.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_BE.bf3609280b7b93ee.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CA.b64d0bcd23a5cd3e.json +0 -4973
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CH.349b221a02887244.json +0 -4997
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_LU.ef7d7c8bb3328d28.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/he.d628e8bf13a8a2c8.json +0 -5378
- package/src/sap/ui/integration/thirdparty/webcomponents/hi.cc34df8229f656f5.json +0 -4829
- package/src/sap/ui/integration/thirdparty/webcomponents/hr.c920290f50173516.json +0 -4919
- package/src/sap/ui/integration/thirdparty/webcomponents/hu.2d9fa4a9163cd7c0.json +0 -4856
- package/src/sap/ui/integration/thirdparty/webcomponents/id.163fdd2a7dbd1dd3.json +0 -4658
- package/src/sap/ui/integration/thirdparty/webcomponents/it.b5acbefdd6794dfc.json +0 -4950
- package/src/sap/ui/integration/thirdparty/webcomponents/it_CH.ade4cbfb2e49424a.json +0 -4950
- package/src/sap/ui/integration/thirdparty/webcomponents/ja.d882fade5c3e04b5.json +0 -4830
- package/src/sap/ui/integration/thirdparty/webcomponents/kk.ab96b18c66676a99.json +0 -4725
- package/src/sap/ui/integration/thirdparty/webcomponents/ko.a0d63a1580dcbefd.json +0 -4738
- package/src/sap/ui/integration/thirdparty/webcomponents/lt.93bb00f91a74d613.json +0 -5481
- package/src/sap/ui/integration/thirdparty/webcomponents/lv.3c272216d7d4d61c.json +0 -5112
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar.d20c665dc46a6f9b.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg.38428028ff3b1869.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca.c46423cc94896604.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs.d9d68b2690954b4e.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy.facf33e921a1a902.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da.1189e997523b89f6.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de.1edf86f620dd657a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el.b0d02877b9366e9a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es.43fc364a8be37449.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX.ebf2828c83c4821a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et.8f9abcfab5eb10c2.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi.6fc14fd0d16cc223.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr.c686ab9036b91d78.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA.fb1250c736f2ac8c.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi.8b8cbc4fb282adf6.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr.bb811aa76359724a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu.18417ced7dce8cf7.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in.e3c5681fc8917143.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it.554f904c106ab069.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw.487febe0c5c504ff.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja.68cf1fa9f03cd6c3.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk.36e63b8f9e1fd98f.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko.fb000c7a35009d21.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt.6acd357e3eb3f54e.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv.3ffdda1a20bc15ec.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms.218aa30a3e8f58fa.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl.f753744c7e08b3a5.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no.385f0fc9f2e49ab5.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl.6c42672479ad9687.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt.ede162cbf79f7fca.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT.dcaa871d6b8eec75.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro.d3f32654c57588ea.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru.0ec083b64484a12d.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh.98cd3e4299919a30.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk.fddb8b9e7b70fc1d.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl.c55d5f817482ea06.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv.6d855a11d20b4335.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th.e791b9a81f16120c.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr.ce83741e39606b55.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk.e1ea822764025a5a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi.7ee7339211750379.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN.0cfd71faba640211.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW.bc718e0187728a16.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ms.e26b54937e5d1516.json +0 -4515
- package/src/sap/ui/integration/thirdparty/webcomponents/nb.a6e9993590a73989.json +0 -4977
- package/src/sap/ui/integration/thirdparty/webcomponents/nl.cac914c3529b7b01.json +0 -4884
- package/src/sap/ui/integration/thirdparty/webcomponents/nl_BE.a3ac6f9f99feba7b.json +0 -4884
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.34f9ef46a8f6a852.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.52d78e00faad9126.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.6c6e759e0d3534d0.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.8cc66e917327b7a4.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.966b2e43c0966351.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.97725b2cf4e77494.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.b1bf75f0b850363c.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.d164773ecb392b28.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.def3978aa5de7b11.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.dfd19a1252497415.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e19065174fdd4592.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e2ac94de83159e1e.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/pl.2cc1c94da23f8c37.json +0 -5176
- package/src/sap/ui/integration/thirdparty/webcomponents/pt.fc8dd9656bc363a4.json +0 -4805
- package/src/sap/ui/integration/thirdparty/webcomponents/pt_PT.be31b641eedfdb48.json +0 -4940
- package/src/sap/ui/integration/thirdparty/webcomponents/ro.fc6a48bc63cf435e.json +0 -5090
- package/src/sap/ui/integration/thirdparty/webcomponents/ru.77f0de46b3b490b1.json +0 -5407
- package/src/sap/ui/integration/thirdparty/webcomponents/ru_UA.4c4e0034fbd799c6.json +0 -5407
- package/src/sap/ui/integration/thirdparty/webcomponents/sk.0d62a8cca83c1dec.json +0 -5370
- package/src/sap/ui/integration/thirdparty/webcomponents/sl.7b303551cc238560.json +0 -5340
- package/src/sap/ui/integration/thirdparty/webcomponents/sr.7fb9ac6ed054ff7d.json +0 -5126
- package/src/sap/ui/integration/thirdparty/webcomponents/sv.6ea04dfd8d1c331b.json +0 -5011
- package/src/sap/ui/integration/thirdparty/webcomponents/th.8e8d734a66ed1c51.json +0 -4797
- package/src/sap/ui/integration/thirdparty/webcomponents/tr.dbb9aa836fc4e3f5.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/uk.4854089f0c12f77c.json +0 -5353
- package/src/sap/ui/integration/thirdparty/webcomponents/vi.e6ffbde0643d7d75.json +0 -4673
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-ce.js +0 -73
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -336
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -221
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd.js +0 -169
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/webcomponents-loader.js +0 -185
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_CN.6607a3e9e0901e53.json +0 -4632
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_HK.1c2563d3e4dad56e.json +0 -4640
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_SG.db7f1334eecf894d.json +0 -4640
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_TW.a1d00dd87c58d8f0.json +0 -4728
- package/src/sap/ui/integration/util/CardActions.js +0 -551
package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.34f9ef46a8f6a852.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_":":root{--_ui5_calendar_header_height:3rem;--_ui5_calendar_header_arrow_button_width:2.5rem;--_ui5_calendar_header_padding:0.25rem 0;--_ui5_checkbox_root_side_padding:.6875rem;--_ui5_checkbox_icon_size:1rem;--_ui5_custom_list_item_height:3rem;--_ui5_custom_list_item_rb_min_width:3rem;--_ui5_day_picker_item_width:2.25rem;--_ui5_day_picker_item_height:2.875rem;--_ui5_day_picker_empty_height:3rem;--_ui5_datetime_picker_width:40.0625rem;--_ui5_datetime_picker_height:25rem;--_ui5_datetime_timeview_phonemode_width:19.5rem;--_ui5_datetime_timeview_padding:1rem;--_ui5_input_inner_padding:0 0.75rem;--_ui5_input_value_state_icon_padding:var(--_ui5-input-icon-padding);--_ui5_list_no_data_height:3rem;--_ui5_list_item_cb_margin_right:0;--_ui5_list_item_title_size:var(--sapMFontLargeSize);--_ui5_list_item_img_size:2rem;--_ui5_list_item_img_margin:0.5rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:3rem;--_ui5_list_busy_row_height:3rem;--_ui5_month_picker_item_height:3rem;--_ui5_year_picker_item_height:3rem;--_ui5_tokenizer_root_padding:0.1875rem;--_ui5_token_height:1.625rem;--_ui5_token_icon_size:1rem;--_ui5_token_icon_padding:0.25rem 0.5rem;--_ui5_token_wrapper_right_padding:0.3125rem;--_ui5_tl_bubble_padding:1rem;--_ui5_tl_indicator_before_bottom:-1.625rem;--_ui5_tl_padding:1rem 1rem 1rem .5rem;--_ui5_tl_li_margin_bottom:1.625rem;--_ui5_rb_height:2.75rem;--_ui5_rb_label_side_padding:.875rem;--_ui5_rb_focus_dist:.5rem;--_ui5_rb_inner_size:2.75rem;--_ui5_rb_svg_size:1.375rem;--_ui5_rb_label_width:calc(100% - 2.75rem);--_ui5_rb_rtl_focus_right:0.5rem;--_ui5_switch_text_on_left:calc(-100% + 1.9125rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.875rem);--_ui5_switch_rtl_transform:translateX(1.875rem) translateX(-100%);--_ui5_switch_text_right:calc(-100% + 1.9125rem);--_ui5_tc_item_text:3rem;--_ui5_tc_item_text_text_only:3rem;--_ui5_tc_item_text_line_height:normal;--_ui5_tc_item_icon_size:1.5rem;--_ui5_tc_item_add_text_margin_top:0.625rem;--_ui5_textarea_padding:0.5625rem 0.6875rem;--_ui5-responnsive_popover_header_height:2.75rem;--ui5_side_navigation_item_height:2.75rem;--_ui5-tree-indent-step:1.5rem;--_ui5-tree-toggle-box-width:2.75rem;--_ui5-tree-toggle-box-height:2.25rem;--_ui5-tree-toggle-icon-size:1.0625rem;--_ui5_segmented_btn_border_radius:0.375rem;--ui5-avatar-initials-color:var(--sapContent_ImagePlaceholderForegroundColor);--ui5-avatar-initials-border:none;--ui5-avatar-accent1:var(--sapAccentColor1);--ui5-avatar-accent2:var(--sapAccentColor2);--ui5-avatar-accent3:var(--sapAccentColor3);--ui5-avatar-accent4:var(--sapAccentColor4);--ui5-avatar-accent5:var(--sapAccentColor5);--ui5-avatar-accent6:var(--sapAccentColor6);--ui5-avatar-accent7:var(--sapAccentColor7);--ui5-avatar-accent8:var(--sapAccentColor8);--ui5-avatar-accent9:var(--sapAccentColor9);--ui5-avatar-accent10:var(--sapAccentColor10);--ui5-avatar-placeholder:var(--sapContent_ImagePlaceholderBackground);--ui5-badge-font-size:0.75em;--_ui5_button_base_min_compact_width:2rem;--_ui5_button_compact_height:1.625rem;--_ui5_button_compact_padding:0.4375rem;--_ui5_button_outline:1px dotted var(--sapContent_FocusColor);--_ui5_button_outline_offset:-0.1875rem;--_ui5_button_focus_offset:1px;--_ui5_button_focus_width:1px;--_ui5_button_focus_color:var(--sapContent_FocusColor);--_ui5_button_transparent_border_color:transparent;--_ui5_button_transparent_hover_border_color:var(--sapButton_BorderColor);--_ui5_button_active_border_color:var(--sapButton_Active_BorderColor);--_ui5_button_positive_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_positive_border_hover_color:var(--sapButton_Accept_Hover_BorderColor);--_ui5_button_positive_border_active_color:var(--sapButton_Accept_Active_BorderColor);--_ui5_button_positive_border_focus_hover_color:var(--sapContent_FocusColor);--_ui5_button_positive_focus_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_negative_focus_border_color:var(--sapButton_Reject_BorderColor);--_ui5_button_negative_active_border_color:var(--sapButton_Reject_Active_BorderColor);--_ui5_button_emphasized_focused_border_color:var(--sapButton_Emphasized_BorderColor);--_ui5_button_base_min_width:2.25rem;--_ui5_button_base_height:2.25rem;--_ui5_button_border_radius:0.25rem;--_ui5_button_base_padding:0.5625rem;--_ui5_button_base_icon_only_padding:0.5625rem;--_ui5_button_base_icon_margin:0.375rem;--_ui5_button_emphasized_font_weight:bold;--_ui5_button_text_shadow:none;--_ui5_card_border_color:var(--sapTile_SeparatorColor);--_ui5_card_content_padding:1rem;--_ui5_card_header_hover_bg:var(--sapList_Hover_Background);--_ui5_card_header_active_bg:var(--_ui5_card_header_hover_bg);--_ui5_card_header_border_color:var(--_ui5_card_border_color);--_ui5_card_header_focus_border:1px dotted var(--sapContent_FocusColor);--ui5_carousel_button_size:2.5rem;--ui5_carousel_height:0.25rem;--ui5_carousel_width:0.25rem;--ui5_carousel_margin:0 0.375rem;--ui5_carousel_border:1px solid var(--sapContent_ForegroundBorderColor);--ui5_carousel_dot_border:none;--ui5_carousel_dot_background:var(--sapContent_NonInteractiveIconColor);--_ui5_checkbox_hover_background:var(--sapField_Hover_Background);--_ui5_checkbox_inner_width_height:1.375rem;--_ui5_checkbox_inner_error_border:0.125rem solid var(--sapField_InvalidColor);--_ui5_checkbox_inner_warning_border:0.125rem solid var(--sapField_WarningColor);--_ui5_checkbox_inner_information_border:0.125rem solid var(--sapField_InformationColor);--_ui5_checkbox_checkmark_warning_color:var(--sapField_TextColor);--_ui5_checkbox_checkmark_color:var(--sapSelectedColor);--_ui5_checkbox_wrapped_focus_left_top_bottom_position:.5625rem;--_ui5_checkbox_focus_outline:1px dotted var(--sapContent_FocusColor);--_ui5_checkbox_compact_wrapper_padding:.5rem;--_ui5_checkbox_compact_width_height:2rem;--_ui5_checkbox_compact_inner_size:1rem;--_ui5_checkbox_compact_focus_position:.375rem;--_ui5_checkbox_wrapper_padding:.6875rem;--_ui5_checkbox_width_height:2.75rem;--_ui5_checkbox_inner_border:.0625rem solid var(--sapField_BorderColor);--_ui5_checkbox_focus_position:0.5625rem;--_ui5_checkbox_inner_border_radius:.125rem;--_ui5_checkbox_wrapped_content_margin_top:0;--_ui5_checkbox_wrapped_focus_padding:.5rem;--_ui5_checkbox_inner_readonly_border:1px solid var(--sapField_ReadOnly_BorderColor);--_ui5_checkbox_compact_wrapped_label_margin_top:-0.125rem;--_ui5_datepicker_icon_border:none;--_ui5_daypicker_item_margin:2px;--_ui5_daypicker_item_border:none;--_ui5_daypicker_item_outline_width:1px;--_ui5_daypicker_item_outline_offset:1px;--_ui5_daypicker_daynames_container_height:2rem;--_ui5_daypicker_item_othermonth_background_color:var(--sapList_Background);--_ui5_daypicker_item_othermonth_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_othermonth_hover_color:var(--sapContent_LabelColor);--_ui5_daypicker_dayname_color:var(--sapContent_LabelColor);--_ui5_daypicker_weekname_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_now_selected_focus_after_width:calc(100% - 0.125rem);--_ui5_daypicker_item_now_selected_focus_after_height:calc(100% - 0.125rem);--_ui5_daypicker_item_selected_hover_background_color:var(--sapActiveColor_Lighten3);--_ui5_daypicker_item_border_radius:0.25rem;--_ui5_daypicker_item_now_inner_border_radius:0.125rem;--ui5-group-header-listitem-background-color:var(--sapList_GroupHeaderBackground);--_ui5_input_width:13.125rem;--_ui5_input_compact_height:1.625rem;--_ui5_input_state_border_width:0.125rem;--_ui5-input-information_border_width:0.125rem;--_ui5_input_error_font_weight:normal;--_ui5_input_focus_border_width:1px;--_ui5_input_error_warning_border_style:solid;--_ui5_input_error_warning_font_style:inherit;--_ui5_input_disabled_color:var(--sapContent_DisabledTextColor);--_ui5_input_disabled_font_weight:normal;--_ui5_input_disabled_border_color:var(--sapField_BorderColor);--_ui5_input_disabled_background:var(--sapField_Background);--_ui5_input_icon_min_width:2.375rem;--_ui5_input_compact_min_width:2rem;--_ui5_input_height:2.25rem;--_ui5_input_disabled_opacity:0.4;--_ui5_input_wrapper_border_radius:0.125rem;--_ui5_input_icon_padding:.5625rem .6875rem;--_ui5_link_opacity:0.4;--_ui5_link_text_decoration:none;--_ui5_link_hover_text_decoration:underline;--ui5_list_footer_text_color:var(--sapList_FooterTextColor);--ui5-listitem-background-color:var(--sapList_Background);--ui5-listitem-border-bottom:1px solid var(--sapList_BorderColor);--ui5-listitem-selected-border-bottom:1px solid var(--sapList_SelectionBorderColor);--_ui5_listitembase_focus_width:1px;--_ui5_product_switch_item_border:none;--_ui5_monthpicker_item_border:none;--_ui5_monthpicker_item_margin:1px;--_ui5_monthpicker_item_focus_after_width:calc(100% - 0.375rem);--_ui5_monthpicker_item_focus_after_height:calc(100% - 0.375rem);--_ui5_monthpicker_item_focus_after_border:1px dotted var(--sapContent_FocusColor);--_ui5_monthpicker_item_focus_after_offset:2px;--_ui5_monthpicker_item_border_radius:0.25rem;--_ui5_messagestrip_icon_width:2.5rem;--_ui5_messagestrip_border_radius:0.1875rem;--_ui5_messagestrip_button_border_width:0;--_ui5_messagestrip_button_border_style:none;--_ui5_messagestrip_button_border_color:transparent;--_ui5_messagestrip_button_border_radius:0;--_ui5_messagestrip_padding:0.125rem .125rem;--_ui5_messagestrip_button_height:1.625rem;--_ui5_messagestrip_border_width:1px;--_ui5_messagestrip_close_button_border:none;--_ui5_messagestrip_close_button_size:1.625rem;--_ui5_messagestrip_icon_top:0.4375rem;--_ui5_messagestrip_focus_width:1px;--_ui5_messagestrip_focus_offset:-2px;--_ui5_panel_focus_border:1px dotted var(--sapContent_FocusColor);--_ui5_panel_header_height:2.75rem;--_ui5_panel_button_root_width:2.75rem;--_ui5_popup_content_padding:.4375em;--_ui5_progress_indicator_value_state_none:var(--sapNeutralElementColor);--_ui5_progress_indicator_value_state_error:var(--sapNegativeElementColor);--_ui5_progress_indicator_value_state_warning:var(--sapCriticalElementColor);--_ui5_progress_indicator_value_state_success:var(--sapPositiveElementColor);--_ui5_progress_indicator_value_state_information:var(--sapInformativeElementColor);--_ui5_progress_indicator_color:var(--sapTextColor);--_ui5_progress_indicator_bar_color:var(--sapContent_ContrastTextColor);--_ui5_progress_indicator_border:0.0625rem solid var(--sapField_BorderColor);--_ui5_progress_indicator_bar_border_max:none;--_ui5_progress_indicator_icon_visibility:none;--_ui5_radiobutton_min_width:2.75rem;--_ui5_radiobutton_min_width_compact:2rem;--_ui5_radiobutton_hover_fill:var(--sapField_Hover_Background);--_ui5_radiobutton_border_width:1px;--_ui5_radiobutton_selected_fill:var(--sapSelectedColor);--_ui5_radiobutton_selected_error_fill:var(--sapField_InvalidColor);--_ui5_radiobutton_selected_warning_fill:var(--sapField_TextColor);--_ui5_radiobutton_warning_error_border_dash:0;--_ui5_select_disabled_background:var(--sapField_Background);--_ui5_select_disabled_border_color:var(--sapField_BorderColor);--_ui5_select_state_error_warning_border_style:solid;--_ui5_select_state_error_warning_border_width:0.125rem;--_ui5_select_hover_icon_left_border:1px solid transparent;--_ui5_select_rtl_hover_icon_left_border:none;--_ui5_select_rtl_hover_icon_right_border:none;--_ui5_select_focus_width:1px;--_ui5_switch_height:2.75rem;--_ui5_switch_width:3.875rem;--_ui5_switch_no_label_width:3.25rem;--_ui5_switch_outline:1px;--_ui5_switch_compact_height:2rem;--_ui5_switch_compact_width:3.5rem;--_ui5_switch_compact_no_label_width:2.5rem;--_ui5_switch_track_height:1.375rem;--_ui5_switch_track_no_label_height:1.25rem;--_ui5_switch_track_compact_no_label_height:1rem;--_ui5_switch_track_hover_border_color:var(--_ui5_switch_track_checked_border_color);--_ui5_switch_track_hover_background_color:var(--sapButton_Track_Background);--_ui5_switch_track_hover_checked_background_color:var(--sapButton_Track_Selected_Background);--_ui5_switch_track_border_radius:0.75rem;--_ui5_switch_track_disabled_checked_bg:var(--_ui5_switch_track_checked_bg);--_ui5_switch_track_disabled_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_track_disabled_semantic_checked_bg:var(--sapSuccessBackground);--_ui5_switch_track_disabled_semantic_checked_border_color:var(--sapSuccessBorderColor);--_ui5_switch_track_disabled_semantic_bg:var(--sapErrorBackground);--_ui5_switch_track_disabled_semantic_border_color:var(--sapErrorBorderColor);--_ui5_switch_handle_width:2rem;--_ui5_switch_handle_height:2rem;--_ui5_switch_handle_border_width:1px;--_ui5_switch_handle_border_radius:1rem;--_ui5_switch_handle_bg:var(--sapButton_TokenBackground);--_ui5_switch_handle_checked_bg:var(--sapButton_Selected_Background);--_ui5_switch_handle_checked_border_color:var(--sapButton_Selected_BorderColor);--_ui5_switch_handle_semantic_hover_bg:var(--sapErrorBackground);--_ui5_switch_handle_semantic_checked_hover_bg:var(--sapSuccessBackground);--_ui5_switch_handle_semantic_hover_border_color:var(--sapErrorBorderColor);--_ui5_switch_handle_semantic_checked_hover_border_color:var(--sapSuccessBorderColor);--_ui5_switch_handle_compact_width:1.625rem;--_ui5_switch_handle_compact_height:1.625rem;--_ui5_switch_handle_disabled_bg:var(--_ui5_switch_handle_bg);--_ui5_switch_handle_disabled_checked_bg:var(--_ui5_switch_handle_checked_bg);--_ui5_switch_handle_disabled_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_handle_disabled_semantic_checked_bg:var(--sapButton_Background);--_ui5_switch_handle_disabled_semantic_checked_border_color:var(--sapSuccessBorderColor);--_ui5_switch_handle_disabled_semantic_border_color:var(--sapErrorBorderColor);--_ui5_switch_text_on_semantic_color:var(--sapPositiveElementColor);--_ui5_switch_text_off_semantic_color:var(--sapNegativeElementColor);--_ui5_switch_text_disabled_color:var(--sapTextColor);--_ui5_tc_header_height:4.6875rem;--_ui5_tc_header_height_compact:3.6875rem;--_ui5_tc_header_height_text_only:3rem;--_ui5_tc_header_height_text_only_compact:2rem;--_ui5_tc_headeritem_text_selected_color:var(--sapSelectedColor);--_ui5_tc_headerItem_neutral_color:var(--sapNeutralColor);--_ui5_tc_headerItem_positive_color:var(--sapPositiveColor);--_ui5_tc_headerItem_negative_color:var(--sapNegativeColor);--_ui5_tc_headerItem_critical_color:var(--sapCriticalColor);--_ui5_tc_headerItem_neutral_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItem_neutral_selected_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_selected_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_selected_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_selected_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItem_focus_border:1px dotted var(--sapContent_FocusColor);--_ui5_tc_headerItemSemanticIcon_display:none;--_ui5_tc_overflowItem_neutral_color:var(--sapNeutralColor);--_ui5_tc_overflowItem_positive_color:var(--sapPositiveColor);--_ui5_tc_overflowItem_negative_color:var(--sapNegativeColor);--_ui5_tc_overflowItem_critical_color:var(--sapCriticalColor);--_ui5_tc_headerItemIcon_border:1px solid var(--sapHighlightColor);--_ui5_tc_headerItemIcon_color:var(--sapHighlightColor);--_ui5_tc_headerItemIcon_selected_background:var(--sapHighlightColor);--_ui5_tc_headerItemIcon_selected_color:var(--sapGroup_ContentBackground);--_ui5_tc_headerItemIcon_positive_selected_background:var(--sapPositiveColor);--_ui5_tc_headerItemIcon_negative_selected_background:var(--sapNegativeColor);--_ui5_tc_headerItemIcon_critical_selected_background:var(--sapCriticalColor);--_ui5_tc_headerItemIcon_neutral_selected_background:var(--sapNeutralColor);--_ui5_tc_headerItemIcon_semantic_selected_color:var(--sapGroup_ContentBackground);--_ui5_tc_header_box_shadow:var(--sapContent_HeaderShadow);--_ui5_tc_header_border_bottom:0.0625rem solid var(--sapObjectHeader_Background);--_ui5_tc_headerItem_color:var(--sapContent_LabelColor);--_ui5_tc_headerItemContent_border_bottom:0.188rem solid var(--sapSelectedColor);--_ui5_tc_overflowItem_default_color:var(--sapHighlightColor);--_ui5_tc_overflowItem_current_color:CurrentColor;--_ui5_tc_content_border_bottom:0.0625rem solid var(--sapObjectHeader_BorderColor);--_ui5_textarea_focus_after_width:1px;--_ui5_textarea_warning_border_style:solid;--_ui5_textarea_warning_border_width:2px;--_ui5_TimelineItem_arrow_size:1.625rem;--_ui5_TimelineItem_bubble_outline_width:0.0625rem;--_ui5_TimelineItem_bubble_outline_top:-0.125rem;--_ui5_TimelineItem_bubble_outline_right:-0.125rem;--_ui5_TimelineItem_bubble_outline_bottom:-0.125rem;--_ui5_TimelineItem_bubble_outline_left:-0.625rem;--_ui5_TimelineItem_bubble_rtl_left_offset:-0.125rem;--_ui5_TimelineItem_bubble_rtl_right_offset:-0.625rem;--_ui5_toast_vertical_offset:3rem;--_ui5_toast_horizontal_offset:2rem;--_ui5_toast_background:var(--sapList_Background);--_ui5_toast_shadow:var(--sapContent_Shadow2);--_ui5_wheelslider_item_text_size:var(--sapFontSize);--_ui5_wheelslider_label_text_size:var(--sapFontSmallSize);--_ui5_wheelslider_mobile_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*4);--_ui5_wheelslider_label_text_color:var(--sapContent_LabelColor);--_ui5_wheelslider_height:15rem;--_ui5_wheelslider_mobile_height:27rem;--_ui5_wheelslider_arrows_visibility:hidden;--_ui5_wheelslider_item_background_color:var(--sapLegend_WorkingBackground);--_ui5_wheelslider_item_text_color:var(--sapTextColor);--_ui_wheelslider_item_hover_color:var(--sapList_Hover_Background);--_ui5_wheelslider_item_border_color:var(--sapList_Background);--_ui5_wheelslider_collapsed_item_text_color:var(--_ui5_wheelslider_item_border_color);--_ui5_wheelslider_selected_item_background_color:var(--sapContent_Selected_Background);--_ui5_wheelslider_selected_item_hover_background_color:var(--sapButton_Emphasized_Hover_BorderColor);--_ui5_wheelslider_active_item_background_color:var(--sapContent_Selected_Background);--_ui5_wheelslider_active_item_text_color:var(--sapContent_Selected_TextColor);--_ui5_wheelslider_item_width:3rem;--_ui5_wheelslider_item_height:2.875rem;--_ui5_wheelslider_selection_frame_color:var(--sapList_SelectionBorderColor);--_ui_wheelslider_item_border_radius:var(--_ui5_button_border_radius);--_ui5_toggle_button_pressed_focussed:var(--sapButton_Selected_BorderColor);--_ui5_toggle_button_pressed_focussed_hovered:var(--sapButton_Selected_BorderColor);--_ui5_yearpicker_item_selected_focus:var(--sapContent_Selected_Background);--_ui5_yearpicker_item_border:none;--_ui5_yearpicker_item_margin:1px;--_ui5_yearpicker_item_focus_after_width:calc(100% - 0.375rem);--_ui5_yearpicker_item_focus_after_height:calc(100% - 0.375rem);--_ui5_yearpicker_item_focus_after_border:1px dotted var(--sapContent_FocusColor);--_ui5_yearpicker_item_focus_after_offset:2px;--_ui5_yearpicker_item_border_radius:0.25rem;--_ui5_calendar_header_arrow_button_border:none;--_ui5_calendar_header_arrow_button_border_radius:0.25rem;--_ui5_calendar_header_middle_button_width:6.25rem;--_ui5_calendar_header_middle_button_flex:1 1 auto;--_ui5_calendar_header_middle_button_focus_border_radius:0.25rem;--_ui5_calendar_header_middle_button_focus_border:none;--_ui5_calendar_header_middle_button_focus_after_display:block;--_ui5_calendar_header_middle_button_focus_after_width:calc(100% - 0.375rem);--_ui5_calendar_header_middle_button_focus_after_height:calc(100% - 0.375rem);--_ui5_calendar_header_middle_button_focus_after_top_offset:0.125rem;--_ui5_calendar_header_middle_button_focus_after_left_offset:0.125rem;--ui5_table_header_row_outline_width:1px;--ui5_table_row_outline_width:1px;--ui5_title_level_1Size:1.625rem;--ui5_title_level_2Size:1.375rem;--ui5_title_level_3Size:1.250rem;--ui5_title_level_4Size:1.125rem;--ui5_title_level_5Size:1rem;--ui5_title_level_6Size:0.875rem;--_ui5_token_focus_outline_width:0.0625rem;--_ui5_token_background:var(--sapButton_TokenBackground);--_ui5_token_border_radius:0.25rem;--_ui5_token_text_color:var(--sapTextColor);--_ui5_token_icon_color:var(--sapContent_IconColor);--_ui5_value_state_message_border:none;--_ui5-multi_combobox_token_margin_top:1px}.sapUiSizeCompact,.ui5-content-density-compact,:root,[data-ui5-compact-size]{--_ui5_datetime_timeview_width:17rem;--_ui5_token_wrapper_left_padding:0;--_ui5_button_icon_font_size:1rem;--_ui5_daypicker_weeknumbers_container_padding_top:2rem;--_ui5_wheelslider_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*2)}.sapUiSizeCompact,.ui5-content-density-compact,[data-ui5-compact-size]{--_ui5_button_base_height:1.625rem;--_ui5_button_base_padding:0.4375rem;--_ui5_button_base_min_width:2rem;--_ui5_calendar_header_height:2rem;--_ui5_calendar_header_padding:0;--_ui5_calendar_header_arrow_button_width:2rem;--_ui5_checkbox_root_side_padding:var(--_ui5_checkbox_wrapped_focus_padding);--_ui5_checkbox_wrapped_content_margin_top:var(--_ui5_checkbox_compact_wrapped_label_margin_top);--_ui5_checkbox_wrapped_focus_left_top_bottom_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_width_height:var(--_ui5_checkbox_compact_width_height);--_ui5_checkbox_wrapper_padding:var(--_ui5_checkbox_compact_wrapper_padding);--_ui5_checkbox_focus_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_inner_width_height:var(--_ui5_checkbox_compact_inner_size);--_ui5_checkbox_icon_size:.75rem;--_ui5_custom_list_item_height:2rem;--_ui5_custom_list_item_rb_min_width:2rem;--_ui5_day_picker_item_width:2rem;--_ui5_day_picker_item_height:2rem;--_ui5_day_picker_empty_height:2.125rem;--_ui5_datetime_picker_height:17rem;--_ui5_datetime_picker_width:34.0625rem;--_ui5_datetime_timeview_phonemode_width:18.5rem;--_ui5_datetime_timeview_padding:0.5rem;--_ui5_input_height:var(--_ui5_input_compact_height);--_ui5_input_inner_padding:0 0.5rem;--_ui5_input_icon_min_width:var(--_ui5_input_compact_min_width);--_ui5_input_icon_padding:.25rem .5rem;--_ui5_input_value_state_icon_padding:.1875rem .5rem;--_ui5_textarea_padding:.1875rem .5rem;--_ui5_list_no_data_height:2rem;--_ui5_list_item_cb_margin_right:.5rem;--_ui5_list_item_title_size:var(--sapFontSize);--_ui5_list_item_img_size:1.75rem;--_ui5_list_item_img_margin:0.55rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:2rem;--_ui5_list_busy_row_height:2rem;--_ui5_month_picker_item_height:2rem;--_ui5_panel_header_height:2rem;--_ui5_year_picker_item_height:2rem;--_ui5_tokenizer_root_padding:0.125rem;--_ui5_token_height:1.125rem;--_ui5_token_icon_size:.75rem;--_ui5_token_icon_padding:0.1rem 0.25rem;--_ui5_token_wrapper_right_padding:0.25rem;--_ui5_tl_bubble_padding:.5rem;--_ui5_tl_indicator_before_bottom:-.5rem;--_ui5_tl_padding:.5rem;--_ui5_tl_li_margin_bottom:.5rem;--_ui5_rb_height:2rem;--_ui5_rb_label_side_padding:.5rem;--_ui5_rb_focus_dist:.375rem;--_ui5_rb_inner_size:2rem;--_ui5_rb_svg_size:1rem;--_ui5_rb_label_width:calc(100% - 2rem + 1px);--_ui5_rb_rtl_focus_right:0.375rem;--_ui5_wheelslider_item_width:4rem;--_ui5_wheelslider_item_height:2rem;--_ui5_wheelslider_height:14rem;--_ui5_wheelslider_arrows_visibility:visible;--_ui5_switch_height:var(--_ui5_switch_compact_height);--_ui5_switch_width:var(--_ui5_switch_compact_width);--_ui5_switch_handle_height:var(--_ui5_switch_handle_compact_height);--_ui5_switch_handle_width:var(--_ui5_switch_handle_compact_width);--_ui5_switch_text_on_left:calc(-100% + 1.5625rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.5rem);--_ui5_switch_no_label_width:var(--_ui5_switch_compact_no_label_width);--_ui5_switch_track_no_label_height:var(--_ui5_switch_track_compact_no_label_height);--_ui5_switch_rtl_transform:translateX(-100%) translateX(1.5rem);--_ui5_switch_text_right:calc(-100% + 1.5625rem);--_ui5_tc_item_text:2rem;--_ui5_tc_item_text_line_height:1.325rem;--_ui5_tc_item_icon_size:1rem;--_ui5_tc_item_add_text_margin_top:0.3125rem;--_ui5_tc_header_height:var(--_ui5_tc_header_height_compact);--_ui5_radiobutton_min_width:var(--_ui5_radiobutton_min_width_compact);--_ui5-responnsive_popover_header_height:2.5rem;--ui5_side_navigation_item_height:2rem;--_ui5-tree-indent-step:0.5rem;--_ui5-tree-toggle-box-width:2rem;--_ui5-tree-toggle-box-height:1.5rem;--_ui5-tree-toggle-icon-size:0.8125rem}"}
|
package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.52d78e00faad9126.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_":":root{--_ui5_calendar_header_height:3rem;--_ui5_calendar_header_arrow_button_width:2.5rem;--_ui5_calendar_header_padding:0.25rem 0;--_ui5_checkbox_root_side_padding:.6875rem;--_ui5_checkbox_icon_size:1rem;--_ui5_custom_list_item_height:3rem;--_ui5_custom_list_item_rb_min_width:3rem;--_ui5_day_picker_item_width:2.25rem;--_ui5_day_picker_item_height:2.875rem;--_ui5_day_picker_empty_height:3rem;--_ui5_datetime_picker_width:40.0625rem;--_ui5_datetime_picker_height:25rem;--_ui5_datetime_timeview_phonemode_width:19.5rem;--_ui5_datetime_timeview_padding:1rem;--_ui5_input_inner_padding:0 0.75rem;--_ui5_input_value_state_icon_padding:var(--_ui5-input-icon-padding);--_ui5_list_no_data_height:3rem;--_ui5_list_item_cb_margin_right:0;--_ui5_list_item_title_size:var(--sapMFontLargeSize);--_ui5_list_item_img_size:2rem;--_ui5_list_item_img_margin:0.5rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:3rem;--_ui5_list_busy_row_height:3rem;--_ui5_month_picker_item_height:3rem;--_ui5_year_picker_item_height:3rem;--_ui5_tokenizer_root_padding:0.1875rem;--_ui5_token_height:1.625rem;--_ui5_token_icon_size:1rem;--_ui5_token_icon_padding:0.25rem 0.5rem;--_ui5_token_wrapper_right_padding:0.3125rem;--_ui5_tl_bubble_padding:1rem;--_ui5_tl_indicator_before_bottom:-1.625rem;--_ui5_tl_padding:1rem 1rem 1rem .5rem;--_ui5_tl_li_margin_bottom:1.625rem;--_ui5_rb_height:2.75rem;--_ui5_rb_label_side_padding:.875rem;--_ui5_rb_focus_dist:.5rem;--_ui5_rb_inner_size:2.75rem;--_ui5_rb_svg_size:1.375rem;--_ui5_rb_label_width:calc(100% - 2.75rem);--_ui5_rb_rtl_focus_right:0.5rem;--_ui5_switch_text_on_left:calc(-100% + 1.9125rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.875rem);--_ui5_switch_rtl_transform:translateX(1.875rem) translateX(-100%);--_ui5_switch_text_right:calc(-100% + 1.9125rem);--_ui5_tc_item_text:3rem;--_ui5_tc_item_text_text_only:3rem;--_ui5_tc_item_text_line_height:normal;--_ui5_tc_item_icon_size:1.5rem;--_ui5_tc_item_add_text_margin_top:0.625rem;--_ui5_textarea_padding:0.5625rem 0.6875rem;--_ui5-responnsive_popover_header_height:2.75rem;--ui5_side_navigation_item_height:2.75rem;--_ui5-tree-indent-step:1.5rem;--_ui5-tree-toggle-box-width:2.75rem;--_ui5-tree-toggle-box-height:2.25rem;--_ui5-tree-toggle-icon-size:1.0625rem;--_ui5_segmented_btn_border_radius:0.375rem;--ui5-avatar-initials-color:#fff;--ui5-avatar-initials-border:.0625rem solid #fff;--ui5-avatar-accent1:#000;--ui5-avatar-accent2:#000;--ui5-avatar-accent3:#000;--ui5-avatar-accent4:#000;--ui5-avatar-accent5:#000;--ui5-avatar-accent6:#000;--ui5-avatar-accent7:#000;--ui5-avatar-accent8:#000;--ui5-avatar-accent9:#000;--ui5-avatar-accent10:#000;--ui5-avatar-placeholder:#000;--ui5-badge-font-size:0.75em;--_ui5_button_base_min_width:2.5rem;--_ui5_button_base_min_compact_width:2rem;--_ui5_button_base_height:2.5rem;--_ui5_button_compact_height:1.625rem;--_ui5_button_base_padding:0.6875rem;--_ui5_button_compact_padding:0.4375rem;--_ui5_button_base_icon_only_padding:0.5625rem;--_ui5_button_base_icon_margin:0.563rem;--_ui5_button_icon_font_size:1.375rem;--_ui5_button_emphasized_font_weight:normal;--_ui5_button_text_shadow:var(--sapContent_TextShadow);--_ui5_button_focus_offset:1px;--_ui5_button_transparent_hover_border_color:var(--sapButton_BorderColor);--_ui5_button_positive_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_positive_border_hover_color:var(--sapButton_Accept_Hover_BorderColor);--_ui5_button_positive_border_focus_hover_color:var(--sapContent_FocusColor);--_ui5_button_emphasized_focused_border_color:var(--sapButton_Emphasized_BorderColor);--_ui5_button_border_radius:0.375rem;--_ui5_button_outline_offset:-0.125rem;--_ui5_button_outline:0.125rem dotted var(--sapContent_FocusColor);--_ui5_button_positive_border_active_color:transparent;--_ui5_button_active_border_color:transparent;--_ui5_button_positive_focus_border_color:transparent;--_ui5_button_negative_focus_border_color:transparent;--_ui5_button_negative_active_border_color:transparent;--_ui5_button_transparent_border_color:var(--sapButton_BorderColor);--_ui5_button_focus_width:1px;--_ui5_button_focus_color:var(--sapContent_FocusColor);--_ui5_button_focussed_border_color:transparent;--_ui5_calendar_header_middle_button_focus_after_width:calc(100% - 0.25rem);--_ui5_calendar_header_middle_button_focus_after_height:calc(100% - 0.25rem);--_ui5_calendar_header_middle_button_focus_after_top_offset:1px;--_ui5_calendar_header_middle_button_focus_after_left_offset:1px;--_ui5_calendar_header_arrow_button_border:1px solid var(--sapButton_BorderColor);--_ui5_calendar_header_arrow_button_border_radius:0.375rem;--_ui5_calendar_header_middle_button_width:5.75rem;--_ui5_calendar_header_middle_button_flex:auto;--_ui5_calendar_header_middle_button_focus_border_radius:0;--_ui5_calendar_header_middle_button_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_calendar_header_middle_button_focus_after_display:none;--ui5_carousel_button_size:2.5rem;--ui5_carousel_height:0.25rem;--ui5_carousel_width:0.25rem;--ui5_carousel_margin:0 0.375rem;--ui5_carousel_border:1px solid var(--sapContent_ForegroundBorderColor);--ui5_carousel_dot_border:1px solid var(--sapContent_ForegroundBorderColor);--ui5_carousel_dot_background:var(--sapContent_NonInteractiveIconColor);--_ui5_card_content_padding:1rem;--_ui5_card_header_hover_bg:var(--sapList_Hover_Background);--_ui5_card_header_active_bg:var(--_ui5_card_header_hover_bg);--_ui5_card_header_border_color:var(--_ui5_card_border_color);--_ui5_card_border_color:var(--sapTile_BorderColor);--_ui5_card_header_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_checkbox_wrapper_padding:.8125rem;--_ui5_checkbox_width_height:3rem;--_ui5_checkbox_inner_width_height:1.375rem;--_ui5_checkbox_inner_border:solid .125rem var(--sapField_BorderColor);--_ui5_checkbox_inner_information_border:0.125rem solid var(--sapField_InformationColor);--_ui5_checkbox_inner_readonly_border:0.125rem solid var(--sapField_ReadOnly_BorderColor);--_ui5_checkbox_wrapped_focus_padding:.375rem;--_ui5_checkbox_wrapped_content_margin_top:.125rem;--_ui5_checkbox_wrapped_focus_left_top_bottom_position:.5625rem;--_ui5_checkbox_focus_position:.6875rem;--_ui5_checkbox_compact_wrapper_padding:.5rem;--_ui5_checkbox_compact_width_height:2rem;--_ui5_checkbox_compact_inner_size:1rem;--_ui5_checkbox_compact_focus_position:.375rem;--_ui5_checkbox_compact_wrapped_label_margin_top:-1px;--_ui5_checkbox_inner_border_radius:0;--_ui5_checkbox_checkmark_color:var(--sapContent_IconColor);--_ui5_checkbox_inner_error_border:0.125rem dashed var(--sapField_InvalidColor);--_ui5_checkbox_inner_warning_border:0.125rem dashed var(--sapField_WarningColor);--_ui5_checkbox_checkmark_warning_color:var(--sapField_WarningColor);--_ui5_checkbox_hover_background:var(--sapSelectedColor);--_ui5_checkbox_focus_outline:0.125rem dotted var(--sapContent_FocusColor);--_ui5_datepicker_icon_border:1px solid transparent;--_ui5_daypicker_daynames_container_height:2rem;--_ui5_daypicker_item_selected_hover_background_color:var(--sapContent_Selected_Background);--_ui5_daypicker_item_othermonth_background_color:var(--sapList_Background);--_ui5_daypicker_item_othermonth_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_othermonth_hover_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_border_radius:0;--_ui5_daypicker_item_now_inner_border_radius:0;--_ui5_daypicker_item_margin:0;--_ui5_daypicker_item_border:1px solid var(--sapList_BorderColor);--_ui5_daypicker_item_outline_width:0.125rem;--_ui5_daypicker_item_outline_offset:0;--_ui5_daypicker_dayname_color:var(--sapHC_ReducedForeground);--_ui5_daypicker_weekname_color:var(--sapHC_ReducedForeground);--_ui5_daypicker_item_now_selected_focus_after_width:calc(100% - 0.25rem);--_ui5_daypicker_item_now_selected_focus_after_height:calc(100% - 0.25rem);--ui5-group-header-listitem-background-color:var(--sapList_GroupHeaderBackground);--_ui5_input_width:13.125rem;--_ui5_input_height:2.5rem;--_ui5_input_compact_height:1.625rem;--_ui5_input_wrapper_border_radius:0;--_ui5-input-information_border_width:0.125rem;--_ui5_input_disabled_opacity:0.5;--_ui5_input_icon_min_width:2.375rem;--_ui5_input_compact_min_width:2rem;--_ui5_input_focus_border_width:0.125rem;--_ui5_input_state_border_width:1px;--_ui5_input_error_warning_border_style:dashed;--_ui5_input_error_warning_font_style:italic;--_ui5_input_error_font_weight:bold;--_ui5_input_disabled_color:var(--sapContent_DisabledTextColor);--_ui5_input_disabled_font_weight:normal;--_ui5_input_disabled_border_color:var(--sapField_ReadOnly_BorderColor);--_ui5_input_disabled_background:var(--sapField_ReadOnly_Background);--_ui5_input_icon_padding:0.6875rem .6875rem;--_ui5_link_opacity:0.5;--_ui5_link_text_decoration:none;--_ui5_link_hover_text_decoration:underline;--ui5_list_footer_text_color:var(--sapPageFooter_TextColor);--ui5-listitem-background-color:var(--sapList_Background);--ui5-listitem-border-bottom:1px solid var(--sapList_BorderColor);--ui5-listitem-selected-border-bottom:1px solid var(--sapList_SelectionBorderColor);--_ui5_product_switch_item_border:none;--_ui5_listitembase_focus_width:0.125rem;--_ui5_monthpicker_item_border_radius:0;--_ui5_monthpicker_item_border:1px solid var(--sapList_BorderColor);--_ui5_monthpicker_item_margin:0;--_ui5_monthpicker_item_focus_after_width:calc(100% - 0.25rem);--_ui5_monthpicker_item_focus_after_height:calc(100% - 0.25rem);--_ui5_monthpicker_item_focus_after_border:2px dotted var(--sapContent_FocusColor);--_ui5_monthpicker_item_focus_after_offset:0;--_ui5_messagestrip_icon_width:2.5rem;--_ui5_messagestrip_border_radius:0.1875rem;--_ui5_messagestrip_button_border_width:0;--_ui5_messagestrip_button_border_style:none;--_ui5_messagestrip_button_border_color:transparent;--_ui5_messagestrip_button_border_radius:0;--_ui5_messagestrip_padding:0.125rem .125rem;--_ui5_messagestrip_button_height:1.625rem;--_ui5_messagestrip_close_button_size:1.5rem;--_ui5_messagestrip_close_button_border:1px solid var(--sapButton_BorderColor);--_ui5_messagestrip_border_width:0.125rem;--_ui5_messagestrip_icon_top:0.375rem;--_ui5_messagestrip_focus_width:0.125rem;--_ui5_messagestrip_focus_offset:-2px;--_ui5_panel_header_height:3rem;--_ui5_panel_button_root_width:3rem;--_ui5_panel_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_popup_content_padding:.4375em;--_ui5_progress_indicator_color:var(--sapTextColor);--_ui5_progress_indicator_bar_color:var(--sapContent_ContrastTextColor);--_ui5_progress_indicator_border:0.0625rem solid var(--sapField_BorderColor);--_ui5_progress_indicator_value_state_none:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_error:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_warning:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_success:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_information:var(--sapHighlightColor);--_ui5_progress_indicator_bar_border_max:var(--_ui5_progress_indicator_border);--_ui5_progress_indicator_icon_visibility:inline-block;--_ui5_radiobutton_min_width:2.75rem;--_ui5_radiobutton_min_width_compact:2rem;--_ui5_radiobutton_selected_fill:var(--sapContent_IconColor);--_ui5_radiobutton_selected_warning_fill:var(--sapContent_IconColor);--_ui5_radiobutton_selected_error_fill:var(--sapContent_IconColor);--_ui5_radiobutton_hover_fill:var(--sapSelectedColor);--_ui5_radiobutton_border_width:0.125rem;--_ui5_radiobutton_warning_error_border_dash:5;--_ui5_select_disabled_background:var(--sapHC_ReducedBackground);--_ui5_select_disabled_border_color:var(--sapHC_ReducedForeground);--_ui5_select_state_error_warning_border_style:dashed;--_ui5_select_state_error_warning_border_width:1px;--_ui5_select_hover_icon_left_border:0.0625rem solid var(--sapField_Hover_BorderColor);--_ui5_select_rtl_hover_icon_left_border:none;--_ui5_select_rtl_hover_icon_right_border:0.0625rem solid var(--sapField_Hover_BorderColor);--_ui5_select_focus_width:0.125rem;--_ui5_switch_height:2.75rem;--_ui5_switch_width:3.875rem;--_ui5_switch_no_label_width:3.25rem;--_ui5_switch_compact_height:2rem;--_ui5_switch_compact_width:3.5rem;--_ui5_switch_compact_no_label_width:2.5rem;--_ui5_switch_track_height:1.375rem;--_ui5_switch_track_no_label_height:1.25rem;--_ui5_switch_track_compact_no_label_height:1rem;--_ui5_switch_track_border_radius:0.75rem;--_ui5_switch_handle_width:2rem;--_ui5_switch_handle_height:2rem;--_ui5_switch_handle_border_radius:1rem;--_ui5_switch_handle_checked_bg:var(--sapButton_Selected_Background);--_ui5_switch_handle_checked_border_color:var(--sapButton_Selected_BorderColor);--_ui5_switch_handle_compact_width:1.625rem;--_ui5_switch_handle_compact_height:1.625rem;--_ui5_switch_outline:0.125rem;--_ui5_switch_track_hover_border_color:var(--sapTextColor);--_ui5_switch_track_border_color:var(--sapButton_Background);--_ui5_switch_track_hover_background_color:var(--sapButton_Background);--_ui5_switch_track_hover_checked_background_color:var(--sapButton_Background);--_ui5_switch_track_disabled_checked_bg:var(--sapHC_ReducedBackground);--_ui5_switch_track_disabled_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_track_disabled_semantic_checked_bg:var(--sapHC_ReducedBackground);--_ui5_switch_track_disabled_semantic_checked_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_track_disabled_semantic_bg:var(--sapButton_Background);--_ui5_switch_track_disabled_semantic_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_handle_bg:var(--sapButton_Background);--_ui5_switch_handle_semantic_hover_bg:var(--sapButton_Hover_Background);--_ui5_switch_handle_semantic_checked_hover_bg:var(--sapButton_Hover_Background);--_ui5_switch_handle_semantic_hover_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_handle_semantic_checked_hover_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_handle_border_width:0.125rem;--_ui5_switch_handle_disabled_bg:var(--sapButton_Background);--_ui5_switch_handle_disabled_checked_bg:var(--_ui5_switch_handle_disabled_bg);--_ui5_switch_handle_disabled_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_handle_disabled_semantic_checked_bg:var(--_ui5_switch_handle_disabled_bg);--_ui5_switch_handle_disabled_semantic_checked_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_handle_disabled_semantic_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_text_on_semantic_color:var(--sapTextColor);--_ui5_switch_text_off_semantic_color:var(--sapTextColor);--_ui5_switch_text_disabled_color:var(--sapHC_ReducedAltForeground);--_ui5_tc_header_height:4.6875rem;--_ui5_tc_header_height_compact:3.6875rem;--_ui5_tc_header_height_text_only:3rem;--_ui5_tc_header_height_text_only_compact:2rem;--_ui5_tc_header_box_shadow:inset 0 -0.25rem 0 -0.125rem var(--sapObjectHeader_BorderColor);--_ui5_tc_headerItem_color:var(--sapGroup_TitleTextColor);--_ui5_tc_content_border_bottom:0.125rem solid var(--sapObjectHeader_BorderColor);--_ui5_tc_header_border_bottom:0.125rem solid var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemContent_border_bottom:0.25rem solid var(--sapPageHeader_BorderColor);--_ui5_tc_headerItem_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_tc_headerItem_neutral_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_positive_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_negative_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_critical_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_neutral_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItem_neutral_selected_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_selected_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_selected_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_selected_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItemSemanticIcon_display:inline-block;--_ui5_tc_headerItemIcon_border:1px solid var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemIcon_color:var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemIcon_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_selected_color:var(--sapContent_IconColor);--_ui5_tc_headeritem_text_selected_color:var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemIcon_positive_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_negative_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_critical_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_neutral_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_semantic_selected_color:var(--sapContent_IconColor);--_ui5_tc_overflowItem_neutral_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_positive_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_negative_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_critical_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_default_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_current_color:var(--_ui5_tc_overflowItem_default_color);--ui5_table_header_row_outline_width:0.125rem;--ui5_table_row_outline_width:0.125rem;--_ui5_textarea_focus_after_width:2px;--_ui5_textarea_warning_border_style:dashed;--_ui5_textarea_warning_border_width:1px;--_ui5_TimelineItem_arrow_size:1.625rem;--_ui5_TimelineItem_bubble_outline_width:0.125rem;--_ui5_TimelineItem_bubble_outline_top:-0.1875rem;--_ui5_TimelineItem_bubble_outline_right:-0.1875rem;--_ui5_TimelineItem_bubble_outline_bottom:-0.1875rem;--_ui5_TimelineItem_bubble_outline_left:-0.6875rem;--_ui5_TimelineItem_bubble_rtl_left_offset:-0.1875rem;--_ui5_TimelineItem_bubble_rtl_right_offset:-0.6875rem;--ui5_title_level_1Size:1.625rem;--ui5_title_level_2Size:1.375rem;--ui5_title_level_3Size:1.250rem;--ui5_title_level_4Size:1.125rem;--ui5_title_level_5Size:1rem;--ui5_title_level_6Size:0.875rem;--_ui5_toast_vertical_offset:3rem;--_ui5_toast_horizontal_offset:2rem;--_ui5_toast_background:var(--sapList_Background);--_ui5_toast_shadow:var(--sapContent_Shadow2);--_ui5_toggle_button_pressed_focussed:transparent;--_ui5_toggle_button_pressed_focussed_hovered:transparent;--_ui5_wheelslider_item_text_size:var(--sapFontSize);--_ui5_wheelslider_label_text_size:var(--sapFontSmallSize);--_ui5_wheelslider_mobile_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*4);--_ui5_wheelslider_label_text_color:var(--sapContent_LabelColor);--_ui5_wheelslider_height:15rem;--_ui5_wheelslider_mobile_height:27rem;--_ui5_wheelslider_arrows_visibility:hidden;--_ui5_wheelslider_item_background_color:var(--sapList_Background);--_ui5_wheelslider_item_text_color:var(--sapTextColor);--_ui_wheelslider_item_hover_color:var(--sapHighlightColor);--_ui5_wheelslider_item_border_color:var(--sapList_BorderColor);--_ui5_wheelslider_collapsed_item_text_color:var(--sapContent_ContrastTextColor);--_ui5_wheelslider_selected_item_background_color:var(--sapSelectedColor);--_ui5_wheelslider_selected_item_hover_background_color:var(--sapHighlightColor);--_ui5_wheelslider_active_item_background_color:var(--sapHighlightColor);--_ui5_wheelslider_active_item_text_color:var(--sapTextColor);--_ui5_wheelslider_item_width:4.5rem;--_ui5_wheelslider_item_height:3rem;--_ui5_wheelslider_selection_frame_color:var(--sapContent_ForegroundBorderColor);--_ui_wheelslider_item_border_radius:0;--_ui5_yearpicker_item_selected_focus:var(--sapContent_Selected_Background);--_ui5_yearpicker_item_border_radius:0;--_ui5_yearpicker_item_border:1px solid var(--sapList_BorderColor);--_ui5_yearpicker_item_margin:0;--_ui5_yearpicker_item_focus_after_width:calc(100% - 0.25rem);--_ui5_yearpicker_item_focus_after_height:calc(100% - 0.25rem);--_ui5_yearpicker_item_focus_after_border:2px dotted var(--sapContent_FocusColor);--_ui5_yearpicker_item_focus_after_offset:0;--_ui5_token_border_radius:0.125rem;--_ui5_value_state_message_border:2px solid var(--sapField_BorderColor);--_ui5-multi_combobox_token_margin_top:3px}.sapUiSizeCompact,.ui5-content-density-compact,:root,[data-ui5-compact-size]{--_ui5_datetime_timeview_width:17rem;--_ui5_token_wrapper_left_padding:0;--_ui5_daypicker_weeknumbers_container_padding_top:2rem;--_ui5_wheelslider_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*2)}.sapUiSizeCompact,.ui5-content-density-compact,[data-ui5-compact-size]{--_ui5_button_base_height:1.625rem;--_ui5_button_base_padding:0.4375rem;--_ui5_button_base_min_width:2rem;--_ui5_button_icon_font_size:1rem;--_ui5_calendar_header_height:2rem;--_ui5_calendar_header_padding:0;--_ui5_calendar_header_arrow_button_width:2rem;--_ui5_checkbox_root_side_padding:var(--_ui5_checkbox_wrapped_focus_padding);--_ui5_checkbox_wrapped_content_margin_top:var(--_ui5_checkbox_compact_wrapped_label_margin_top);--_ui5_checkbox_wrapped_focus_left_top_bottom_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_width_height:var(--_ui5_checkbox_compact_width_height);--_ui5_checkbox_wrapper_padding:var(--_ui5_checkbox_compact_wrapper_padding);--_ui5_checkbox_focus_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_inner_width_height:var(--_ui5_checkbox_compact_inner_size);--_ui5_checkbox_icon_size:.75rem;--_ui5_custom_list_item_height:2rem;--_ui5_custom_list_item_rb_min_width:2rem;--_ui5_day_picker_item_width:2rem;--_ui5_day_picker_item_height:2rem;--_ui5_day_picker_empty_height:2.125rem;--_ui5_datetime_picker_height:17rem;--_ui5_datetime_picker_width:34.0625rem;--_ui5_datetime_timeview_phonemode_width:18.5rem;--_ui5_datetime_timeview_padding:0.5rem;--_ui5_input_height:var(--_ui5_input_compact_height);--_ui5_input_inner_padding:0 0.5rem;--_ui5_input_icon_min_width:var(--_ui5_input_compact_min_width);--_ui5_input_icon_padding:.25rem .5rem;--_ui5_input_value_state_icon_padding:.1875rem .5rem;--_ui5_textarea_padding:.1875rem .5rem;--_ui5_list_no_data_height:2rem;--_ui5_list_item_cb_margin_right:.5rem;--_ui5_list_item_title_size:var(--sapFontSize);--_ui5_list_item_img_size:1.75rem;--_ui5_list_item_img_margin:0.55rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:2rem;--_ui5_list_busy_row_height:2rem;--_ui5_month_picker_item_height:2rem;--_ui5_panel_header_height:2rem;--_ui5_year_picker_item_height:2rem;--_ui5_tokenizer_root_padding:0.125rem;--_ui5_token_height:1.125rem;--_ui5_token_icon_size:.75rem;--_ui5_token_icon_padding:0.1rem 0.25rem;--_ui5_token_wrapper_right_padding:0.25rem;--_ui5_tl_bubble_padding:.5rem;--_ui5_tl_indicator_before_bottom:-.5rem;--_ui5_tl_padding:.5rem;--_ui5_tl_li_margin_bottom:.5rem;--_ui5_rb_height:2rem;--_ui5_rb_label_side_padding:.5rem;--_ui5_rb_focus_dist:.375rem;--_ui5_rb_inner_size:2rem;--_ui5_rb_svg_size:1rem;--_ui5_rb_label_width:calc(100% - 2rem + 1px);--_ui5_rb_rtl_focus_right:0.375rem;--_ui5_wheelslider_item_width:4rem;--_ui5_wheelslider_item_height:2rem;--_ui5_wheelslider_height:14rem;--_ui5_wheelslider_arrows_visibility:visible;--_ui5_switch_height:var(--_ui5_switch_compact_height);--_ui5_switch_width:var(--_ui5_switch_compact_width);--_ui5_switch_handle_height:var(--_ui5_switch_handle_compact_height);--_ui5_switch_handle_width:var(--_ui5_switch_handle_compact_width);--_ui5_switch_text_on_left:calc(-100% + 1.5625rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.5rem);--_ui5_switch_no_label_width:var(--_ui5_switch_compact_no_label_width);--_ui5_switch_track_no_label_height:var(--_ui5_switch_track_compact_no_label_height);--_ui5_switch_rtl_transform:translateX(-100%) translateX(1.5rem);--_ui5_switch_text_right:calc(-100% + 1.5625rem);--_ui5_tc_item_text:2rem;--_ui5_tc_item_text_line_height:1.325rem;--_ui5_tc_item_icon_size:1rem;--_ui5_tc_item_add_text_margin_top:0.3125rem;--_ui5_tc_header_height:var(--_ui5_tc_header_height_compact);--_ui5_radiobutton_min_width:var(--_ui5_radiobutton_min_width_compact);--_ui5-responnsive_popover_header_height:2.5rem;--ui5_side_navigation_item_height:2rem;--_ui5-tree-indent-step:0.5rem;--_ui5-tree-toggle-box-width:2rem;--_ui5-tree-toggle-box-height:1.5rem;--_ui5-tree-toggle-icon-size:0.8125rem}"}
|
package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.6c6e759e0d3534d0.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_":":root{--sapBrandColor:#427cac;--sapHighlightColor:#427cac;--sapBaseColor:#eff4f9;--sapShellColor:transparent;--sapBackgroundColor:#fafafa;--sapFontFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontLightFamily:\"72-Light\",\"72-Lightfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontBoldFamily:\"72-Bold\",\"72-Boldfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontHeaderFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontSize:.875rem;--sapFontSmallSize:.75rem;--sapFontLargeSize:1rem;--sapFontHeader1Size:1.625rem;--sapFontHeader2Size:1.375rem;--sapFontHeader3Size:1.25rem;--sapFontHeader4Size:1.125rem;--sapFontHeader5Size:1rem;--sapFontHeader6Size:.875rem;--sapTextColor:#333;--sapLinkColor:#0070b1;--sapLink_Hover_Color:#0070b1;--sapLink_Active_Color:#0070b1;--sapLink_Visited_Color:#0070b1;--sapLink_InvertedColor:#7ed0ff;--sapLink_SubtleColor:#004065;--sapCompanyLogo:none;--sapBackgroundImage:none;--sapBackgroundImageOpacity:1.0;--sapBackgroundImageRepeat:false;--sapSelectedColor:#427cac;--sapActiveColor:#427cac;--sapHighlightTextColor:#fff;--sapTitleColor:#333;--sapNegativeColor:#b00;--sapCriticalColor:#e78c07;--sapPositiveColor:#2b7c2b;--sapInformativeColor:#427cac;--sapNeutralColor:#5e696e;--sapNegativeElementColor:#b00;--sapCriticalElementColor:#e78c07;--sapPositiveElementColor:#2b7c2b;--sapInformativeElementColor:#427cac;--sapNeutralElementColor:#5e696e;--sapNegativeTextColor:#b00;--sapPositiveTextColor:#2b7c2b;--sapCriticalTextColor:#e78c07;--sapInformativeTextColor:#427cac;--sapNeutralTextColor:#5e696e;--sapNeutralBorderColor:#5e696e;--sapErrorColor:#e00;--sapErrorBorderColor:#e00;--sapWarningColor:#f9a429;--sapWarningBorderColor:#f9a429;--sapSuccessColor:#38a238;--sapSuccessBorderColor:#38a238;--sapInformationColor:#427cac;--sapInformationBorderColor:#427cac;--sapErrorBackground:#ffe4e4;--sapWarningBackground:#fef0db;--sapSuccessBackground:#e4f5e4;--sapInformationBackground:#ebf2f7;--sapNeutralBackground:#f4f5f6;--sapIndicationColor_1:#800;--sapIndicationColor_1_Hover_Background:#6f0000;--sapIndicationColor_1_Active_Background:#500;--sapIndicationColor_1_TextColor:#fff;--sapIndicationColor_2:#b00;--sapIndicationColor_2_Hover_Background:#a20000;--sapIndicationColor_2_Active_Background:#800;--sapIndicationColor_2_TextColor:#fff;--sapIndicationColor_3:#e78c07;--sapIndicationColor_3_Hover_Background:#d88307;--sapIndicationColor_3_Active_Background:#c97a06;--sapIndicationColor_3_TextColor:#fff;--sapIndicationColor_4:#2b7c2b;--sapIndicationColor_4_Hover_Background:#246924;--sapIndicationColor_4_Active_Background:#1e561e;--sapIndicationColor_4_TextColor:#fff;--sapIndicationColor_5:#427cac;--sapIndicationColor_5_Hover_Background:#3b6f9a;--sapIndicationColor_5_Active_Background:#346187;--sapIndicationColor_5_TextColor:#fff;--sapIndicationColor_6:#1a9898;--sapIndicationColor_6_Hover_Background:#168282;--sapIndicationColor_6_Active_Background:#136c6c;--sapIndicationColor_6_TextColor:#fff;--sapIndicationColor_7:#925ace;--sapIndicationColor_7_Hover_Background:#8546c8;--sapIndicationColor_7_Active_Background:#7838bd;--sapIndicationColor_7_TextColor:#fff;--sapIndicationColor_8:#ab218e;--sapIndicationColor_8_Hover_Background:#961d7c;--sapIndicationColor_8_Active_Background:#80196a;--sapIndicationColor_8_TextColor:#fff;--sapElement_LineHeight:3rem;--sapElement_Height:2.5rem;--sapElement_BorderWidth:.0625rem;--sapElement_BorderCornerRadius:.25rem;--sapElement_Compact_LineHeight:2rem;--sapElement_Compact_Height:1.625rem;--sapElement_Condensed_LineHeight:1.5rem;--sapElement_Condensed_Height:1.375rem;--sapContent_LineHeight:1.4;--sapContent_IconHeight:1rem;--sapContent_IconColor:#346187;--sapContent_ContrastIconColor:#fff;--sapContent_NonInteractiveIconColor:#878787;--sapContent_MarkerIconColor:#678bc7;--sapContent_MarkerTextColor:#147575;--sapContent_ImagePlaceholderBackground:#ceddec;--sapContent_ImagePlaceholderForegroundColor:#fff;--sapContent_RatedColor:#e09d00;--sapContent_UnratedColor:#a5a5a5;--sapContent_FocusColor:#000;--sapContent_FocusStyle:dotted;--sapContent_FocusWidth:.0625rem;--sapContent_ContrastFocusColor:#fff;--sapContent_ShadowColor:#000;--sapContent_ContrastShadowColor:#fff;--sapContent_Shadow0:0 0 0 1px rgba(0,0,0,0.15);--sapContent_Shadow1:0 0.125rem 0.5rem 0 rgba(0,0,0,0.15),0 0 0 1px rgba(0,0,0,0.15);--sapContent_Shadow2:0 0.625rem 1.875rem 0 rgba(0,0,0,0.15),0 0 0 1px rgba(0,0,0,0.15);--sapContent_Shadow3:0 1.25rem 5rem 0 rgba(0,0,0,0.15),0 0 0 1px rgba(0,0,0,0.15);--sapContent_TextShadow:0 0 0.125rem #fff;--sapContent_HeaderShadow:0 0.125rem 0 0 #eff4f9,inset 0 -0.125rem 0 0 #d1e0ee;--sapContent_SearchHighlightColor:#d4f7db;--sapContent_HelpColor:#3f8600;--sapContent_LabelColor:#666;--sapContent_MonospaceFontFamily:lucida console,monospace;--sapContent_DisabledTextColor:rgba(51,51,51,0.5);--sapContent_DisabledOpacity:0.5;--sapContent_ContrastTextThreshold:0.65;--sapContent_ContrastTextColor:#fff;--sapContent_ForegroundColor:#e5e5e5;--sapContent_ForegroundBorderColor:#bfbfbf;--sapContent_ForegroundTextColor:#333;--sapContent_BadgeBackground:#c14646;--sapContent_BadgeTextColor:#fff;--sapContent_Placeholderloading_Background:#c2d5e8;--sapContent_Placeholderloading_Gradient:linear-gradient(90deg,#c2d5e8 0%,#c2d5e8 35%,#afc8e1 50%,#c2d5e8 65%,#c2d5e8);--sapContent_DragAndDropActiveColor:#0070b1;--sapContent_Selected_Background:#427cac;--sapContent_Selected_TextColor:#fff;--sapContent_Selected_Hover_Background:#4684b7;--sapContent_Illustrative_Color1:#427cac;--sapContent_Illustrative_Color2:#93b7d6;--sapContent_Illustrative_Color3:#ffba10;--sapContent_Illustrative_Color4:#4a5055;--sapContent_Illustrative_Color5:#9da4aa;--sapContent_Illustrative_Color6:#c6cace;--sapContent_Illustrative_Color7:#e7e9ea;--sapContent_Illustrative_Color8:#fff;--sapShell_Background:#cad8e6;--sapShell_BackgroundImage:linear-gradient(180deg,#acc4dc,#e8ecf0);--sapShell_BackgroundGradient:linear-gradient(180deg,#acc4dc,#e8ecf0);--sapShell_BackgroundImageOpacity:1.0;--sapShell_BackgroundImageRepeat:false;--sapShell_BorderColor:transparent;--sapShell_TextColor:#346187;--sapShell_InteractiveTextColor:#346187;--sapShell_InteractiveBorderColor:#bfbfbf;--sapShell_GroupTitleTextColor:#333;--sapShell_Hover_Background:#346187;--sapShell_Active_Background:#427cac;--sapShell_Active_TextColor:#fff;--sapShell_Selected_Background:#427cac;--sapShell_Selected_TextColor:#fff;--sapShell_Selected_Hover_Background:#427cac;--sapShell_Favicon:none;--sapShell_Navigation_Background:transparent;--sapShell_Navigation_SelectedColor:#346187;--sapShell_Navigation_Selected_TextColor:#346187;--sapShell_Navigation_TextColor:#333;--sapShell_Shadow:0 0.125rem 0 0 #b9cbde;--sapButton_BorderWidth:.0625rem;--sapButton_BorderCornerRadius:.1875rem;--sapButton_Background:#f7f7f7;--sapButton_BorderColor:#ababab;--sapButton_TextColor:#346187;--sapButton_Hover_Background:#eaeaea;--sapButton_Hover_BorderColor:#ababab;--sapButton_Hover_TextColor:#346187;--sapButton_IconColor:#346187;--sapButton_Active_Background:#427cac;--sapButton_Active_BorderColor:#427cac;--sapButton_Active_TextColor:#fff;--sapButton_Emphasized_Background:#5496cd;--sapButton_Emphasized_BorderColor:#408ac7;--sapButton_Emphasized_TextColor:#fff;--sapButton_Emphasized_Hover_Background:#408ac7;--sapButton_Emphasized_Hover_BorderColor:#408ac7;--sapButton_Emphasized_Hover_TextColor:#fff;--sapButton_Emphasized_Active_Background:#427cac;--sapButton_Emphasized_Active_BorderColor:#427cac;--sapButton_Emphasized_TextShadow:rgba(0,0,0,0.5);--sapButton_Accept_Background:#f7f7f7;--sapButton_Accept_BorderColor:#2b7c2b;--sapButton_Accept_Hover_Background:#eaeaea;--sapButton_Accept_Hover_BorderColor:#2b7c2b;--sapButton_Accept_Hover_TextColor:#2b7c2b;--sapButton_Accept_Active_Background:#2b7c2b;--sapButton_Accept_Active_BorderColor:#2b7c2b;--sapButton_Accept_TextColor:#2b7c2b;--sapButton_Accept_Selected_Background:#2b7c2b;--sapButton_Accept_Selected_BorderColor:#2b7c2b;--sapButton_Accept_Selected_TextColor:#fff;--sapButton_Accept_Selected_Hover_Background:#328f32;--sapButton_Accept_Selected_Hover_BorderColor:#328f32;--sapButton_Reject_Background:#f7f7f7;--sapButton_Reject_BorderColor:#b00;--sapButton_Reject_Hover_Background:#eaeaea;--sapButton_Reject_Hover_BorderColor:#b00;--sapButton_Reject_Hover_TextColor:#b00;--sapButton_Reject_Active_Background:#b00;--sapButton_Reject_Active_BorderColor:#b00;--sapButton_Reject_TextColor:#b00;--sapButton_Reject_Selected_Background:#b00;--sapButton_Reject_Selected_BorderColor:#b00;--sapButton_Reject_Selected_TextColor:#fff;--sapButton_Reject_Selected_Hover_Background:#d40000;--sapButton_Reject_Selected_Hover_BorderColor:#d40000;--sapButton_Lite_Background:transparent;--sapButton_Lite_BorderColor:transparent;--sapButton_Lite_TextColor:#346187;--sapButton_Lite_Hover_Background:hsla(0,0%,69.8%,0.5);--sapButton_Lite_Hover_BorderColor:transparent;--sapButton_Lite_Hover_TextColor:#346187;--sapButton_Lite_Active_Background:#427cac;--sapButton_Lite_Active_BorderColor:#427cac;--sapButton_Selected_Background:#346187;--sapButton_Selected_BorderColor:#2d5475;--sapButton_Selected_TextColor:#fff;--sapButton_Selected_Hover_Background:#427bac;--sapButton_Selected_Hover_BorderColor:#427bac;--sapButton_Attention_Background:#f7f7f7;--sapButton_Attention_BorderColor:#e78c07;--sapButton_Attention_TextColor:#e78c07;--sapButton_Attention_Hover_Background:#fef0db;--sapButton_Attention_Hover_BorderColor:#e78c07;--sapButton_Attention_Hover_TextColor:#e78c07;--sapButton_Attention_Active_Background:#ce7d06;--sapButton_Attention_Active_BorderColor:#ce7d06;--sapButton_Attention_Selected_Background:#ce7d06;--sapButton_Attention_Selected_BorderColor:#ce7d06;--sapButton_Attention_Selected_TextColor:#fff;--sapButton_Attention_Selected_Hover_Background:#e78c07;--sapButton_Attention_Selected_Hover_BorderColor:#e78c07;--sapButton_Negative_Background:#b00;--sapButton_Negative_BorderColor:#b00;--sapButton_Negative_TextColor:#fff;--sapButton_Negative_Hover_Background:#970000;--sapButton_Negative_Hover_BorderColor:#970000;--sapButton_Negative_Hover_TextColor:#fff;--sapButton_Negative_Active_Background:#800;--sapButton_Negative_Active_BorderColor:#800;--sapButton_Critical_Background:#e78c07;--sapButton_Critical_BorderColor:#e78c07;--sapButton_Critical_TextColor:#fff;--sapButton_Critical_Hover_Background:#c47706;--sapButton_Critical_Hover_BorderColor:#c47706;--sapButton_Critical_Hover_TextColor:#fff;--sapButton_Critical_Active_Background:#b66e06;--sapButton_Critical_Active_BorderColor:#b66e06;--sapButton_Success_Background:#2b7c2b;--sapButton_Success_BorderColor:#2b7c2b;--sapButton_Success_TextColor:#fff;--sapButton_Success_Hover_Background:#226122;--sapButton_Success_Hover_BorderColor:#226122;--sapButton_Success_Hover_TextColor:#fff;--sapButton_Success_Active_Background:#1e561e;--sapButton_Success_Active_BorderColor:#1e561e;--sapButton_Information_Background:#427cac;--sapButton_Information_BorderColor:#427cac;--sapButton_Information_TextColor:#fff;--sapButton_Information_Hover_Background:#3b6f9a;--sapButton_Information_Hover_BorderColor:#3b6f9a;--sapButton_Information_Hover_TextColor:#fff;--sapButton_Information_Active_Background:#346187;--sapButton_Information_Active_BorderColor:#346187;--sapButton_Neutral_Background:#5e696e;--sapButton_Neutral_BorderColor:#5e696e;--sapButton_Neutral_TextColor:#fff;--sapButton_Neutral_Hover_Background:#4e575b;--sapButton_Neutral_Hover_BorderColor:#4e575b;--sapButton_Neutral_Hover_TextColor:#fff;--sapButton_Neutral_Active_Background:#474f53;--sapButton_Neutral_Active_BorderColor:#474f53;--sapButton_Track_Selected_Background:#346187;--sapButton_Track_Selected_TextColor:#fff;--sapButton_Track_Background:#fff;--sapButton_Track_TextColor:#333;--sapButton_TokenBackground:#f7f7f7;--sapButton_TokenBorderColor:#dedede;--sapField_Background:#fff;--sapField_TextColor:#000;--sapField_PlaceholderTextColor:#757575;--sapField_BorderColor:#bfbfbf;--sapField_HelpBackground:#fff;--sapField_BorderWidth:.0625rem;--sapField_BorderCornerRadius:0;--sapField_Hover_Background:#fff;--sapField_Hover_BorderColor:#427cac;--sapField_Hover_HelpBackground:#427cac;--sapField_Active_BorderColor:#427cac;--sapField_Focus_Background:#fff;--sapField_Focus_BorderColor:#bfbfbf;--sapField_Focus_HelpBackground:#fff;--sapField_ReadOnly_Background:hsla(0,0%,94.9%,0.5);--sapField_ReadOnly_BorderColor:#ccc;--sapField_ReadOnly_HelpBackground:hsla(0,0%,94.9%,0.5);--sapField_RequiredColor:#c14646;--sapField_InvalidColor:#e00;--sapField_InvalidBackground:#fff;--sapField_WarningColor:#f9a429;--sapField_WarningBackground:#fff;--sapField_SuccessColor:#38a238;--sapField_SuccessBackground:#fff;--sapField_InformationColor:#427cac;--sapField_InformationBackground:#fff;--sapGroup_TitleBackground:transparent;--sapGroup_TitleBorderColor:#ccc;--sapGroup_TitleTextColor:#333;--sapGroup_ContentBackground:#fff;--sapGroup_ContentBorderColor:#ebebeb;--sapGroup_BorderWidth:.0625rem;--sapGroup_BorderCornerRadius:0;--sapGroup_FooterBackground:transparent;--sapToolbar_Background:transparent;--sapToolbar_SeparatorColor:rgba(63,81,97,0.2);--sapList_HeaderBackground:#f7f7f7;--sapList_HeaderBorderColor:#e5e5e5;--sapList_HeaderTextColor:#333;--sapList_BorderColor:#e5e5e5;--sapList_TextColor:#333;--sapList_Active_TextColor:#fff;--sapList_BorderWidth:.0625rem;--sapList_SelectionBackgroundColor:#e8f0f6;--sapList_SelectionBorderColor:#e5e5e5;--sapList_Hover_SelectionBackground:#dde9f2;--sapList_Background:#fff;--sapList_Hover_Background:#f0f0f0;--sapList_AlternatingBackground:#fafafa;--sapList_GroupHeaderBackground:#fff;--sapList_GroupHeaderBorderColor:#ccc;--sapList_GroupHeaderTextColor:#147575;--sapList_FooterBackground:#ceddec;--sapList_FooterTextColor:#333;--sapList_TableGroupHeaderBackground:#f2f2f2;--sapList_TableGroupHeaderBorderColor:#ccc;--sapList_TableGroupHeaderTextColor:#147575;--sapList_TableFooterBorder:#ccc;--sapList_TableFixedBorderColor:#999;--sapList_Active_Background:#427cac;--sapScrollBar_FaceColor:#b2b2b2;--sapScrollBar_TrackColor:#fff;--sapScrollBar_BorderColor:#b2b2b2;--sapScrollBar_SymbolColor:#346187;--sapScrollBar_Dimension:.7rem;--sapScrollBar_Hover_FaceColor:#aaa;--sapPageHeader_Background:#eff4f9;--sapPageHeader_BorderColor:#d1e0ee;--sapPageHeader_TextColor:#666;--sapPageFooter_Background:#fff;--sapPageFooter_BorderColor:#ebebeb;--sapPageFooter_TextColor:#333;--sapInfobar_Background:#168282;--sapInfobar_Hover_Background:#147575;--sapInfobar_Active_Background:#427cac;--sapObjectHeader_Background:#eff4f9;--sapObjectHeader_BorderColor:#d1e0ee;--sapBlockLayer_Background:#000;--sapTile_Background:#fff;--sapTile_Hover_Background:#f7f7f7;--sapTile_Active_Background:#f7f7f7;--sapTile_BorderColor:transparent;--sapTile_TitleTextColor:#333;--sapTile_TextColor:#666;--sapTile_IconColor:#93b7d5;--sapTile_SeparatorColor:#ccc;--sapAccentColor1:#e09d00;--sapAccentColor2:#e6600d;--sapAccentColor3:#c14646;--sapAccentColor4:#ab218e;--sapAccentColor5:#678bc7;--sapAccentColor6:#0092d1;--sapAccentColor7:#1a9898;--sapAccentColor8:#759421;--sapAccentColor9:#925ace;--sapAccentColor10:#647987;--sapLegend_WorkingBackground:#f7f7f7;--sapLegend_NonWorkingBackground:#f7f7f7;--sapLegend_CurrentDateTime:#ab218e;--sapLegendColor1:#ad7900;--sapLegendColor2:#dc5c0c;--sapLegendColor3:#c14646;--sapLegendColor4:#853808;--sapLegendColor5:#da3fb9;--sapLegendColor6:#008bc7;--sapLegendColor7:#198f8f;--sapLegendColor8:#6e8c1f;--sapLegendColor9:#648796;--sapLegendColor10:#80196a;--sapLegendColor11:#6f5925;--sapLegendColor12:#b64600;--sapLegendColor13:#d61818;--sapLegendColor14:#976c52;--sapLegendColor15:#73596d;--sapLegendColor16:#5d759e;--sapLegendColor17:#466c6c;--sapLegendColor18:#626b4a;--sapLegendColor19:#284d5d;--sapLegendColor20:#1851b0;--sapLegendBackgroundColor1:#fff6e0;--sapLegendBackgroundColor2:#feeee5;--sapLegendBackgroundColor3:#f7e6e6;--sapLegendBackgroundColor4:#f9efe9;--sapLegendBackgroundColor5:#fdf2fa;--sapLegendBackgroundColor6:#ebf3fa;--sapLegendBackgroundColor7:#f2fdfd;--sapLegendBackgroundColor8:#f3f9e4;--sapLegendBackgroundColor9:#f1f3f4;--sapLegendBackgroundColor10:#f7edf5;--sapLegendBackgroundColor11:#ffeec6;--sapLegendBackgroundColor12:#fbdfce;--sapLegendBackgroundColor13:#ffdcdc;--sapLegendBackgroundColor14:#f2e2d8;--sapLegendBackgroundColor15:#f0e5ee;--sapLegendBackgroundColor16:#e7e8ea;--sapLegendBackgroundColor17:#d7eaea;--sapLegendBackgroundColor18:#e6edd1;--sapLegendBackgroundColor19:#f0f7fa;--sapLegendBackgroundColor20:#f0f7fa;--sapChart_OrderedColor_1:#5899da;--sapChart_OrderedColor_2:#e8743b;--sapChart_OrderedColor_3:#19a979;--sapChart_OrderedColor_4:#ed4a7b;--sapChart_OrderedColor_5:#945ecf;--sapChart_OrderedColor_6:#13a4b4;--sapChart_OrderedColor_7:#525df4;--sapChart_OrderedColor_8:#bf399e;--sapChart_OrderedColor_9:#6c8893;--sapChart_OrderedColor_10:#ee6868;--sapChart_OrderedColor_11:#2f6497;--sapChart_Bad:#dc0d0e;--sapChart_Critical:#de890d;--sapChart_Good:#3fa45b;--sapChart_Neutral:#848f94;--sapChart_Sequence_1:#5899da;--sapChart_Sequence_2:#e8743b;--sapChart_Sequence_3:#19a979;--sapChart_Sequence_4:#ed4a7b;--sapChart_Sequence_5:#945ecf;--sapChart_Sequence_6:#13a4b4;--sapChart_Sequence_7:#525df4;--sapChart_Sequence_8:#bf399e;--sapChart_Sequence_9:#6c8893;--sapChart_Sequence_10:#ee6868;--sapChart_Sequence_11:#2f6497;--sapChart_Sequence_Neutral:#848f94;}"}
|
package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.8cc66e917327b7a4.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_":":root{--sapBrandColor:#ec8b46;--sapHighlightColor:#ec8b46;--sapBaseColor:#fff;--sapShellColor:#fff;--sapBackgroundColor:#fff;--sapFontFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontLightFamily:\"72-Light\",\"72-Lightfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontBoldFamily:\"72-Bold\",\"72-Boldfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontHeaderFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontSize:.875rem;--sapFontSmallSize:.75rem;--sapFontLargeSize:1rem;--sapFontHeader1Size:2.25rem;--sapFontHeader2Size:1.5rem;--sapFontHeader3Size:1.25rem;--sapFontHeader4Size:1.125rem;--sapFontHeader5Size:1rem;--sapFontHeader6Size:.875rem;--sapTextColor:#000;--sapLinkColor:#000;--sapLink_Hover_Color:#000;--sapLink_Active_Color:#000;--sapLink_Visited_Color:#000;--sapLink_InvertedColor:#000;--sapLink_SubtleColor:#000;--sapCompanyLogo:none;--sapBackgroundImage:none;--sapBackgroundImageOpacity:1.0;--sapBackgroundImageRepeat:false;--sapSelectedColor:#8fb5ff;--sapActiveColor:#ec8b46;--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;--sapPositiveTextColor:#006362;--sapCriticalTextColor:#5c5c00;--sapInformativeTextColor:#000;--sapNeutralTextColor:#000;--sapNeutralBorderColor:#000;--sapErrorColor:#ab0000;--sapErrorBorderColor:#ab0000;--sapWarningColor:#5c5c00;--sapWarningBorderColor:#5c5c00;--sapSuccessColor:#006362;--sapSuccessBorderColor:#006362;--sapInformationColor:#000;--sapInformationBorderColor:#000;--sapErrorBackground:#fff;--sapWarningBackground:#fff;--sapSuccessBackground:#fff;--sapInformationBackground:#fff;--sapNeutralBackground:#fff;--sapIndicationColor_1:#780000;--sapIndicationColor_1_Hover_Background:#ec8b46;--sapIndicationColor_1_Active_Background:#ec8b46;--sapIndicationColor_1_TextColor:#000;--sapIndicationColor_2:#ab0000;--sapIndicationColor_2_Hover_Background:#ec8b46;--sapIndicationColor_2_Active_Background:#ec8b46;--sapIndicationColor_2_TextColor:#000;--sapIndicationColor_3:#5c5c00;--sapIndicationColor_3_Hover_Background:#ec8b46;--sapIndicationColor_3_Active_Background:#ec8b46;--sapIndicationColor_3_TextColor:#000;--sapIndicationColor_4:#006362;--sapIndicationColor_4_Hover_Background:#ec8b46;--sapIndicationColor_4_Active_Background:#ec8b46;--sapIndicationColor_4_TextColor:#000;--sapIndicationColor_5:#004ccb;--sapIndicationColor_5_Hover_Background:#ec8b46;--sapIndicationColor_5_Active_Background:#ec8b46;--sapIndicationColor_5_TextColor:#000;--sapIndicationColor_6:#105b5b;--sapIndicationColor_6_Hover_Background:#ec8b46;--sapIndicationColor_6_Active_Background:#ec8b46;--sapIndicationColor_6_TextColor:#000;--sapIndicationColor_7:#6c32a9;--sapIndicationColor_7_Hover_Background:#ec8b46;--sapIndicationColor_7_Active_Background:#ec8b46;--sapIndicationColor_7_TextColor:#000;--sapIndicationColor_8:#961d7c;--sapIndicationColor_8_Hover_Background:#ec8b46;--sapIndicationColor_8_Active_Background:#ec8b46;--sapIndicationColor_8_TextColor:#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.4;--sapContent_IconHeight:1rem;--sapContent_IconColor:#000;--sapContent_ContrastIconColor:#000;--sapContent_NonInteractiveIconColor:#000;--sapContent_MarkerIconColor:#000;--sapContent_MarkerTextColor:#000;--sapContent_ImagePlaceholderBackground:#fff;--sapContent_ImagePlaceholderForegroundColor:#000;--sapContent_RatedColor:#000;--sapContent_UnratedColor:#888;--sapContent_FocusColor:#000;--sapContent_FocusStyle:dotted;--sapContent_FocusWidth:.125rem;--sapContent_ContrastFocusColor:#000;--sapContent_ShadowColor:#000;--sapContent_ContrastShadowColor:#000;--sapContent_Shadow0:0 0 0 0.0625rem #000;--sapContent_Shadow1:0 0 1rem 0 rgba(0,0,0,0.5),0 0 0 0.125rem #000;--sapContent_Shadow2:0 0.25rem 2rem 0 rgba(0,0,0,0.6),0 0 0 0.125rem #000;--sapContent_Shadow3:0 0.625rem 4rem 0 rgba(0,0,0,0.8),0 0 0 0.125rem #000;--sapContent_TextShadow:none;--sapContent_HeaderShadow:inset 0 -0.125rem #000;--sapContent_SearchHighlightColor:#ec8b46;--sapContent_HelpColor:#006500;--sapContent_LabelColor:#000;--sapContent_MonospaceFontFamily:lucida console,monospace;--sapContent_DisabledTextColor:#888;--sapContent_DisabledOpacity:0.4;--sapContent_ContrastTextThreshold:0.65;--sapContent_ContrastTextColor:#000;--sapContent_ForegroundColor:#fff;--sapContent_ForegroundBorderColor:#000;--sapContent_ForegroundTextColor:#000;--sapContent_BadgeBackground:#fff;--sapContent_BadgeTextColor:#000;--sapContent_Placeholderloading_Background:#888;--sapContent_Placeholderloading_Gradient:linear-gradient(90deg,#888 0%,#888 35%,#585858 50%,#888 65%,#888);--sapContent_DragAndDropActiveColor:#006500;--sapContent_Selected_Background:#8fb5ff;--sapContent_Selected_TextColor:#000;--sapContent_Selected_Hover_Background:#ec8b46;--sapContent_Illustrative_Color1:#0a6ed1;--sapContent_Illustrative_Color2:#434e56;--sapContent_Illustrative_Color3:#62737c;--sapContent_Illustrative_Color4:#030303;--sapContent_Illustrative_Color5:#9da4aa;--sapContent_Illustrative_Color6:#0a6ed1;--sapContent_Illustrative_Color7:#e7e9ea;--sapContent_Illustrative_Color8:#fff;--sapShell_Background:#fff;--sapShell_BackgroundImage:#fff;--sapShell_BackgroundGradient:#fff;--sapShell_BackgroundImageOpacity:1.0;--sapShell_BackgroundImageRepeat:false;--sapShell_BorderColor:#000;--sapShell_TextColor:#000;--sapShell_InteractiveTextColor:#000;--sapShell_InteractiveBorderColor:#000;--sapShell_GroupTitleTextColor:#000;--sapShell_Hover_Background:#ec8b46;--sapShell_Active_Background:#ec8b46;--sapShell_Active_TextColor:#000;--sapShell_Selected_Background:#8fb5ff;--sapShell_Selected_TextColor:#000;--sapShell_Selected_Hover_Background:#ec8b46;--sapShell_Favicon:none;--sapShell_Navigation_Background:#fff;--sapShell_Navigation_SelectedColor:#000;--sapShell_Navigation_Selected_TextColor:#000;--sapShell_Navigation_TextColor:#000;--sapShell_Shadow:0 0.125rem 0 0 #000;--sapButton_BorderWidth:.0625rem;--sapButton_BorderCornerRadius:.375rem;--sapButton_Background:#fff;--sapButton_BorderColor:#000;--sapButton_TextColor:#000;--sapButton_Hover_Background:#ec8b46;--sapButton_Hover_BorderColor:#000;--sapButton_Hover_TextColor:#000;--sapButton_IconColor:#000;--sapButton_Active_Background:#ec8b46;--sapButton_Active_BorderColor:#000;--sapButton_Active_TextColor:#000;--sapButton_Emphasized_Background:#fff;--sapButton_Emphasized_BorderColor:#000;--sapButton_Emphasized_TextColor:#000;--sapButton_Emphasized_Hover_Background:#ec8b46;--sapButton_Emphasized_Hover_BorderColor:#000;--sapButton_Emphasized_Hover_TextColor:#000;--sapButton_Emphasized_Active_Background:#ec8b46;--sapButton_Emphasized_Active_BorderColor:#000;--sapButton_Emphasized_TextShadow:transparent;--sapButton_Accept_Background:#fff;--sapButton_Accept_BorderColor:#000;--sapButton_Accept_Hover_Background:#ec8b46;--sapButton_Accept_Hover_BorderColor:#000;--sapButton_Accept_Hover_TextColor:#000;--sapButton_Accept_Active_Background:#ec8b46;--sapButton_Accept_Active_BorderColor:#000;--sapButton_Accept_TextColor:#000;--sapButton_Accept_Selected_Background:#8fb5ff;--sapButton_Accept_Selected_BorderColor:#000;--sapButton_Accept_Selected_TextColor:#000;--sapButton_Accept_Selected_Hover_Background:#ec8b46;--sapButton_Accept_Selected_Hover_BorderColor:#000;--sapButton_Reject_Background:#fff;--sapButton_Reject_BorderColor:#000;--sapButton_Reject_Hover_Background:#ec8b46;--sapButton_Reject_Hover_BorderColor:#000;--sapButton_Reject_Hover_TextColor:#000;--sapButton_Reject_Active_Background:#ec8b46;--sapButton_Reject_Active_BorderColor:#000;--sapButton_Reject_TextColor:#000;--sapButton_Reject_Selected_Background:#8fb5ff;--sapButton_Reject_Selected_BorderColor:#000;--sapButton_Reject_Selected_TextColor:#000;--sapButton_Reject_Selected_Hover_Background:#ec8b46;--sapButton_Reject_Selected_Hover_BorderColor:#000;--sapButton_Lite_Background:#fff;--sapButton_Lite_BorderColor:#000;--sapButton_Lite_TextColor:#000;--sapButton_Lite_Hover_Background:#ec8b46;--sapButton_Lite_Hover_BorderColor:#000;--sapButton_Lite_Hover_TextColor:#000;--sapButton_Lite_Active_Background:#ec8b46;--sapButton_Lite_Active_BorderColor:#000;--sapButton_Selected_Background:#8fb5ff;--sapButton_Selected_BorderColor:#000;--sapButton_Selected_TextColor:#000;--sapButton_Selected_Hover_Background:#ec8b46;--sapButton_Selected_Hover_BorderColor:#000;--sapButton_Attention_Background:#fff;--sapButton_Attention_BorderColor:#000;--sapButton_Attention_TextColor:#000;--sapButton_Attention_Hover_Background:#ec8b46;--sapButton_Attention_Hover_BorderColor:#000;--sapButton_Attention_Hover_TextColor:#000;--sapButton_Attention_Active_Background:#ec8b46;--sapButton_Attention_Active_BorderColor:#000;--sapButton_Attention_Selected_Background:#8fb5ff;--sapButton_Attention_Selected_BorderColor:#000;--sapButton_Attention_Selected_TextColor:#000;--sapButton_Attention_Selected_Hover_Background:#ec8b46;--sapButton_Attention_Selected_Hover_BorderColor:#000;--sapButton_Negative_Background:#fff;--sapButton_Negative_BorderColor:#000;--sapButton_Negative_TextColor:#000;--sapButton_Negative_Hover_Background:#ec8b46;--sapButton_Negative_Hover_BorderColor:#000;--sapButton_Negative_Hover_TextColor:#000;--sapButton_Negative_Active_Background:#ec8b46;--sapButton_Negative_Active_BorderColor:#000;--sapButton_Critical_Background:#fff;--sapButton_Critical_BorderColor:#000;--sapButton_Critical_TextColor:#000;--sapButton_Critical_Hover_Background:#ec8b46;--sapButton_Critical_Hover_BorderColor:#000;--sapButton_Critical_Hover_TextColor:#000;--sapButton_Critical_Active_Background:#ec8b46;--sapButton_Critical_Active_BorderColor:#000;--sapButton_Success_Background:#fff;--sapButton_Success_BorderColor:#000;--sapButton_Success_TextColor:#000;--sapButton_Success_Hover_Background:#ec8b46;--sapButton_Success_Hover_BorderColor:#000;--sapButton_Success_Hover_TextColor:#000;--sapButton_Success_Active_Background:#ec8b46;--sapButton_Success_Active_BorderColor:#000;--sapButton_Information_Background:#fff;--sapButton_Information_BorderColor:#000;--sapButton_Information_TextColor:#000;--sapButton_Information_Hover_Background:#ec8b46;--sapButton_Information_Hover_BorderColor:#000;--sapButton_Information_Hover_TextColor:#000;--sapButton_Information_Active_Background:#ec8b46;--sapButton_Information_Active_BorderColor:#000;--sapButton_Neutral_Background:#fff;--sapButton_Neutral_BorderColor:#000;--sapButton_Neutral_TextColor:#000;--sapButton_Neutral_Hover_Background:#ec8b46;--sapButton_Neutral_Hover_BorderColor:#000;--sapButton_Neutral_Hover_TextColor:#000;--sapButton_Neutral_Active_Background:#ec8b46;--sapButton_Neutral_Active_BorderColor:#000;--sapButton_Track_Selected_Background:#8fb5ff;--sapButton_Track_Selected_TextColor:#000;--sapButton_Track_Background:#fff;--sapButton_Track_TextColor:#000;--sapButton_TokenBackground:#fff;--sapButton_TokenBorderColor:#000;--sapField_Background:#fff;--sapField_TextColor:#000;--sapField_PlaceholderTextColor:#585858;--sapField_BorderColor:#000;--sapField_HelpBackground:#fff;--sapField_BorderWidth:.0625rem;--sapField_BorderCornerRadius:0;--sapField_Hover_Background:#fff;--sapField_Hover_BorderColor:#000;--sapField_Hover_HelpBackground:#fff;--sapField_Active_BorderColor:#000;--sapField_Focus_Background:#fff;--sapField_Focus_BorderColor:#000;--sapField_Focus_HelpBackground:#fff;--sapField_ReadOnly_Background:#b3b3b3;--sapField_ReadOnly_BorderColor:#585858;--sapField_ReadOnly_HelpBackground:#b3b3b3;--sapField_RequiredColor:#000;--sapField_InvalidColor:#000;--sapField_InvalidBackground:#ec8b46;--sapField_WarningColor:#000;--sapField_WarningBackground:#fff;--sapField_SuccessColor:#000;--sapField_SuccessBackground:#fff;--sapField_InformationColor:#000;--sapField_InformationBackground:#fff;--sapGroup_TitleBackground:#fff;--sapGroup_TitleBorderColor:#000;--sapGroup_TitleTextColor:#000;--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_TextColor:#000;--sapList_Active_TextColor:#000;--sapList_BorderWidth:.0625rem;--sapList_SelectionBackgroundColor:#8fb5ff;--sapList_SelectionBorderColor:#000;--sapList_Hover_SelectionBackground:#ec8b46;--sapList_Background:#fff;--sapList_Hover_Background:#ec8b46;--sapList_AlternatingBackground:#e6e6e6;--sapList_GroupHeaderBackground:#fff;--sapList_GroupHeaderBorderColor:#000;--sapList_GroupHeaderTextColor:#000;--sapList_FooterBackground:#fff;--sapList_FooterTextColor:#000;--sapList_TableGroupHeaderBackground:#b3b3b3;--sapList_TableGroupHeaderBorderColor:#000;--sapList_TableGroupHeaderTextColor:#000;--sapList_TableFooterBorder:#000;--sapList_TableFixedBorderColor:#000;--sapList_Active_Background:#ec8b46;--sapScrollBar_FaceColor:#585858;--sapScrollBar_TrackColor:#fff;--sapScrollBar_BorderColor:#585858;--sapScrollBar_SymbolColor:#000;--sapScrollBar_Dimension:.75rem;--sapScrollBar_Hover_FaceColor:#000;--sapPageHeader_Background:#fff;--sapPageHeader_BorderColor:#000;--sapPageHeader_TextColor:#000;--sapPageFooter_Background:#fff;--sapPageFooter_BorderColor:#fff;--sapPageFooter_TextColor:#000;--sapInfobar_Background:#fff;--sapInfobar_Hover_Background:#ec8b46;--sapInfobar_Active_Background:#ec8b46;--sapObjectHeader_Background:#fff;--sapObjectHeader_BorderColor:#000;--sapBlockLayer_Background:#fff;--sapTile_Background:#fff;--sapTile_Hover_Background:#ec8b46;--sapTile_Active_Background:#ec8b46;--sapTile_BorderColor:#000;--sapTile_TitleTextColor:#000;--sapTile_TextColor:#000;--sapTile_IconColor:#000;--sapTile_SeparatorColor:#000;--sapAccentColor1:#5f5800;--sapAccentColor2:#5e4101;--sapAccentColor3:#973333;--sapAccentColor4:#961d7c;--sapAccentColor5:#365892;--sapAccentColor6:#004ccb;--sapAccentColor7:#105b5b;--sapAccentColor8:#26340b;--sapAccentColor9:#6c32a9;--sapAccentColor10:#4a5964;--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_OrderedColor_1:#286ac3;--sapChart_OrderedColor_2:#d74114;--sapChart_OrderedColor_3:#057d47;--sapChart_OrderedColor_4:#e11e48;--sapChart_OrderedColor_5:#642eb2;--sapChart_OrderedColor_6:#03778c;--sapChart_OrderedColor_7:#232deb;--sapChart_OrderedColor_8:#9b136f;--sapChart_OrderedColor_9:#395563;--sapChart_OrderedColor_10:#e02e2e;--sapChart_OrderedColor_11:#0d3367;--sapChart_Bad:#ab0000;--sapChart_Critical:#5c5c00;--sapChart_Good:#006362;--sapChart_Neutral:#000;--sapChart_Sequence_1:#286ac3;--sapChart_Sequence_2:#d74114;--sapChart_Sequence_3:#057d47;--sapChart_Sequence_4:#e11e48;--sapChart_Sequence_5:#642eb2;--sapChart_Sequence_6:#03778c;--sapChart_Sequence_7:#232deb;--sapChart_Sequence_8:#9b136f;--sapChart_Sequence_9:#395563;--sapChart_Sequence_10:#e02e2e;--sapChart_Sequence_11:#0d3367;--sapChart_Sequence_Neutral:#000;}"}
|
package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.966b2e43c0966351.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_":":root{--sapBrandColor:#7a5100;--sapHighlightColor:#7a5100;--sapBaseColor:#000;--sapShellColor:#000;--sapBackgroundColor:#000;--sapFontFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontLightFamily:\"72-Light\",\"72-Lightfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontBoldFamily:\"72-Bold\",\"72-Boldfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontHeaderFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontSize:.875rem;--sapFontSmallSize:.75rem;--sapFontLargeSize:1rem;--sapFontHeader1Size:2.25rem;--sapFontHeader2Size:1.5rem;--sapFontHeader3Size:1.25rem;--sapFontHeader4Size:1.125rem;--sapFontHeader5Size:1rem;--sapFontHeader6Size:.875rem;--sapTextColor:#fff;--sapLinkColor:#fff;--sapLink_Hover_Color:#fff;--sapLink_Active_Color:#fff;--sapLink_Visited_Color:#fff;--sapLink_InvertedColor:#fff;--sapLink_SubtleColor:#fff;--sapCompanyLogo:none;--sapBackgroundImage:none;--sapBackgroundImageOpacity:1.0;--sapBackgroundImageRepeat:false;--sapSelectedColor:#0f5d94;--sapActiveColor:#7a5100;--sapHighlightTextColor:#fff;--sapTitleColor:#fff;--sapNegativeColor:#ff5e5e;--sapCriticalColor:#ffab1d;--sapPositiveColor:#9c9;--sapInformativeColor:#fff;--sapNeutralColor:#fff;--sapNegativeElementColor:#ff5e5e;--sapCriticalElementColor:#ffab1d;--sapPositiveElementColor:#9c9;--sapInformativeElementColor:#fff;--sapNeutralElementColor:#fff;--sapNegativeTextColor:#ff5e5e;--sapPositiveTextColor:#9c9;--sapCriticalTextColor:#ffab1d;--sapInformativeTextColor:#fff;--sapNeutralTextColor:#fff;--sapNeutralBorderColor:#fff;--sapErrorColor:#ff5e5e;--sapErrorBorderColor:#ff5e5e;--sapWarningColor:#ffab1d;--sapWarningBorderColor:#ffab1d;--sapSuccessColor:#9c9;--sapSuccessBorderColor:#9c9;--sapInformationColor:#fff;--sapInformationBorderColor:#fff;--sapErrorBackground:#000;--sapWarningBackground:#000;--sapSuccessBackground:#000;--sapInformationBackground:#000;--sapNeutralBackground:#000;--sapIndicationColor_1:#ff5e5e;--sapIndicationColor_1_Hover_Background:#7a5100;--sapIndicationColor_1_Active_Background:#7a5100;--sapIndicationColor_1_TextColor:#fff;--sapIndicationColor_2:#ff9191;--sapIndicationColor_2_Hover_Background:#7a5100;--sapIndicationColor_2_Active_Background:#7a5100;--sapIndicationColor_2_TextColor:#fff;--sapIndicationColor_3:#ffab1d;--sapIndicationColor_3_Hover_Background:#7a5100;--sapIndicationColor_3_Active_Background:#7a5100;--sapIndicationColor_3_TextColor:#fff;--sapIndicationColor_4:#9c9;--sapIndicationColor_4_Hover_Background:#7a5100;--sapIndicationColor_4_Active_Background:#7a5100;--sapIndicationColor_4_TextColor:#fff;--sapIndicationColor_5:#6bd3ff;--sapIndicationColor_5_Hover_Background:#7a5100;--sapIndicationColor_5_Active_Background:#7a5100;--sapIndicationColor_5_TextColor:#fff;--sapIndicationColor_6:#7fc6c6;--sapIndicationColor_6_Hover_Background:#7a5100;--sapIndicationColor_6_Active_Background:#7a5100;--sapIndicationColor_6_TextColor:#fff;--sapIndicationColor_7:#b995e0;--sapIndicationColor_7_Hover_Background:#7a5100;--sapIndicationColor_7_Active_Background:#7a5100;--sapIndicationColor_7_TextColor:#fff;--sapIndicationColor_8:#e269c9;--sapIndicationColor_8_Hover_Background:#7a5100;--sapIndicationColor_8_Active_Background:#7a5100;--sapIndicationColor_8_TextColor:#fff;--sapElement_LineHeight:2.75rem;--sapElement_Height:2.25rem;--sapElement_BorderWidth:.0625rem;--sapElement_BorderCornerRadius:.25rem;--sapElement_Compact_LineHeight:2rem;--sapElement_Compact_Height:1.625rem;--sapElement_Condensed_LineHeight:1.5rem;--sapElement_Condensed_Height:1.375rem;--sapContent_LineHeight:1.4;--sapContent_IconHeight:1rem;--sapContent_IconColor:#fff;--sapContent_ContrastIconColor:#fff;--sapContent_NonInteractiveIconColor:#fff;--sapContent_MarkerIconColor:#fff;--sapContent_MarkerTextColor:#fff;--sapContent_ImagePlaceholderBackground:#000;--sapContent_ImagePlaceholderForegroundColor:#fff;--sapContent_RatedColor:#fff;--sapContent_UnratedColor:#666;--sapContent_FocusColor:#fff;--sapContent_FocusStyle:dotted;--sapContent_FocusWidth:.125rem;--sapContent_ContrastFocusColor:#fff;--sapContent_ShadowColor:#fff;--sapContent_ContrastShadowColor:#fff;--sapContent_Shadow0:0 0 0 0.0625rem #fff;--sapContent_Shadow1:0 0 1rem 0 hsla(0,0%,100%,0.5),0 0 0 0.125rem #fff;--sapContent_Shadow2:0 0.25rem 2rem 0 hsla(0,0%,100%,0.6),0 0 0 0.125rem #fff;--sapContent_Shadow3:0 0.625rem 4rem 0 hsla(0,0%,100%,0.8),0 0 0 0.125rem #fff;--sapContent_TextShadow:none;--sapContent_HeaderShadow:inset 0 -0.125rem #fff;--sapContent_SearchHighlightColor:#7a5100;--sapContent_HelpColor:#03b803;--sapContent_LabelColor:#fff;--sapContent_MonospaceFontFamily:lucida console,monospace;--sapContent_DisabledTextColor:#666;--sapContent_DisabledOpacity:0.4;--sapContent_ContrastTextThreshold:0.65;--sapContent_ContrastTextColor:#fff;--sapContent_ForegroundColor:#000;--sapContent_ForegroundBorderColor:#fff;--sapContent_ForegroundTextColor:#fff;--sapContent_BadgeBackground:#000;--sapContent_BadgeTextColor:#fff;--sapContent_Placeholderloading_Background:#666;--sapContent_Placeholderloading_Gradient:linear-gradient(90deg,#666 0%,#666 35%,#999 50%,#666 65%,#666);--sapContent_DragAndDropActiveColor:#03b803;--sapContent_Selected_Background:#0f5d94;--sapContent_Selected_TextColor:#fff;--sapContent_Selected_Hover_Background:#7a5100;--sapContent_Illustrative_Color1:#212628;--sapContent_Illustrative_Color2:#62737c;--sapContent_Illustrative_Color3:#62737c;--sapContent_Illustrative_Color4:#030303;--sapContent_Illustrative_Color5:#88979e;--sapContent_Illustrative_Color6:#88979e;--sapContent_Illustrative_Color7:#212628;--sapContent_Illustrative_Color8:#dbdbdb;--sapShell_Background:#000;--sapShell_BackgroundImage:#000;--sapShell_BackgroundGradient:#000;--sapShell_BackgroundImageOpacity:1.0;--sapShell_BackgroundImageRepeat:false;--sapShell_BorderColor:#fff;--sapShell_TextColor:#fff;--sapShell_InteractiveTextColor:#fff;--sapShell_InteractiveBorderColor:#fff;--sapShell_GroupTitleTextColor:#fff;--sapShell_Hover_Background:#7a5100;--sapShell_Active_Background:#7a5100;--sapShell_Active_TextColor:#fff;--sapShell_Selected_Background:#0f5d94;--sapShell_Selected_TextColor:#fff;--sapShell_Selected_Hover_Background:#7a5100;--sapShell_Favicon:none;--sapShell_Navigation_Background:#000;--sapShell_Navigation_SelectedColor:#fff;--sapShell_Navigation_Selected_TextColor:#fff;--sapShell_Navigation_TextColor:#fff;--sapShell_Shadow:0 0.125rem 0 0 #fff;--sapButton_BorderWidth:.0625rem;--sapButton_BorderCornerRadius:.375rem;--sapButton_Background:#000;--sapButton_BorderColor:#fff;--sapButton_TextColor:#fff;--sapButton_Hover_Background:#7a5100;--sapButton_Hover_BorderColor:#fff;--sapButton_Hover_TextColor:#fff;--sapButton_IconColor:#fff;--sapButton_Active_Background:#7a5100;--sapButton_Active_BorderColor:#fff;--sapButton_Active_TextColor:#fff;--sapButton_Emphasized_Background:#000;--sapButton_Emphasized_BorderColor:#fff;--sapButton_Emphasized_TextColor:#fff;--sapButton_Emphasized_Hover_Background:#7a5100;--sapButton_Emphasized_Hover_BorderColor:#fff;--sapButton_Emphasized_Hover_TextColor:#fff;--sapButton_Emphasized_Active_Background:#7a5100;--sapButton_Emphasized_Active_BorderColor:#fff;--sapButton_Emphasized_TextShadow:transparent;--sapButton_Accept_Background:#000;--sapButton_Accept_BorderColor:#fff;--sapButton_Accept_Hover_Background:#7a5100;--sapButton_Accept_Hover_BorderColor:#fff;--sapButton_Accept_Hover_TextColor:#fff;--sapButton_Accept_Active_Background:#7a5100;--sapButton_Accept_Active_BorderColor:#fff;--sapButton_Accept_TextColor:#fff;--sapButton_Accept_Selected_Background:#0f5d94;--sapButton_Accept_Selected_BorderColor:#fff;--sapButton_Accept_Selected_TextColor:#fff;--sapButton_Accept_Selected_Hover_Background:#7a5100;--sapButton_Accept_Selected_Hover_BorderColor:#fff;--sapButton_Reject_Background:#000;--sapButton_Reject_BorderColor:#fff;--sapButton_Reject_Hover_Background:#7a5100;--sapButton_Reject_Hover_BorderColor:#fff;--sapButton_Reject_Hover_TextColor:#fff;--sapButton_Reject_Active_Background:#7a5100;--sapButton_Reject_Active_BorderColor:#fff;--sapButton_Reject_TextColor:#fff;--sapButton_Reject_Selected_Background:#0f5d94;--sapButton_Reject_Selected_BorderColor:#fff;--sapButton_Reject_Selected_TextColor:#fff;--sapButton_Reject_Selected_Hover_Background:#7a5100;--sapButton_Reject_Selected_Hover_BorderColor:#fff;--sapButton_Lite_Background:#000;--sapButton_Lite_BorderColor:#fff;--sapButton_Lite_TextColor:#fff;--sapButton_Lite_Hover_Background:#7a5100;--sapButton_Lite_Hover_BorderColor:#fff;--sapButton_Lite_Hover_TextColor:#fff;--sapButton_Lite_Active_Background:#7a5100;--sapButton_Lite_Active_BorderColor:#fff;--sapButton_Selected_Background:#0f5d94;--sapButton_Selected_BorderColor:#fff;--sapButton_Selected_TextColor:#fff;--sapButton_Selected_Hover_Background:#7a5100;--sapButton_Selected_Hover_BorderColor:#fff;--sapButton_Attention_Background:#000;--sapButton_Attention_BorderColor:#fff;--sapButton_Attention_TextColor:#fff;--sapButton_Attention_Hover_Background:#7a5100;--sapButton_Attention_Hover_BorderColor:#fff;--sapButton_Attention_Hover_TextColor:#fff;--sapButton_Attention_Active_Background:#7a5100;--sapButton_Attention_Active_BorderColor:#fff;--sapButton_Attention_Selected_Background:#0f5d94;--sapButton_Attention_Selected_BorderColor:#fff;--sapButton_Attention_Selected_TextColor:#fff;--sapButton_Attention_Selected_Hover_Background:#7a5100;--sapButton_Attention_Selected_Hover_BorderColor:#fff;--sapButton_Negative_Background:#000;--sapButton_Negative_BorderColor:#fff;--sapButton_Negative_TextColor:#fff;--sapButton_Negative_Hover_Background:#7a5100;--sapButton_Negative_Hover_BorderColor:#fff;--sapButton_Negative_Hover_TextColor:#fff;--sapButton_Negative_Active_Background:#7a5100;--sapButton_Negative_Active_BorderColor:#fff;--sapButton_Critical_Background:#000;--sapButton_Critical_BorderColor:#fff;--sapButton_Critical_TextColor:#fff;--sapButton_Critical_Hover_Background:#7a5100;--sapButton_Critical_Hover_BorderColor:#fff;--sapButton_Critical_Hover_TextColor:#fff;--sapButton_Critical_Active_Background:#7a5100;--sapButton_Critical_Active_BorderColor:#fff;--sapButton_Success_Background:#000;--sapButton_Success_BorderColor:#fff;--sapButton_Success_TextColor:#fff;--sapButton_Success_Hover_Background:#7a5100;--sapButton_Success_Hover_BorderColor:#fff;--sapButton_Success_Hover_TextColor:#fff;--sapButton_Success_Active_Background:#7a5100;--sapButton_Success_Active_BorderColor:#fff;--sapButton_Information_Background:#000;--sapButton_Information_BorderColor:#fff;--sapButton_Information_TextColor:#fff;--sapButton_Information_Hover_Background:#7a5100;--sapButton_Information_Hover_BorderColor:#fff;--sapButton_Information_Hover_TextColor:#fff;--sapButton_Information_Active_Background:#7a5100;--sapButton_Information_Active_BorderColor:#fff;--sapButton_Neutral_Background:#000;--sapButton_Neutral_BorderColor:#fff;--sapButton_Neutral_TextColor:#fff;--sapButton_Neutral_Hover_Background:#7a5100;--sapButton_Neutral_Hover_BorderColor:#fff;--sapButton_Neutral_Hover_TextColor:#fff;--sapButton_Neutral_Active_Background:#7a5100;--sapButton_Neutral_Active_BorderColor:#fff;--sapButton_Track_Selected_Background:#0f5d94;--sapButton_Track_Selected_TextColor:#fff;--sapButton_Track_Background:#000;--sapButton_Track_TextColor:#fff;--sapButton_TokenBackground:#000;--sapButton_TokenBorderColor:#fff;--sapField_Background:#000;--sapField_TextColor:#fff;--sapField_PlaceholderTextColor:#999;--sapField_BorderColor:#fff;--sapField_HelpBackground:#000;--sapField_BorderWidth:.0625rem;--sapField_BorderCornerRadius:0;--sapField_Hover_Background:#000;--sapField_Hover_BorderColor:#fff;--sapField_Hover_HelpBackground:#000;--sapField_Active_BorderColor:#fff;--sapField_Focus_Background:#000;--sapField_Focus_BorderColor:#fff;--sapField_Focus_HelpBackground:#000;--sapField_ReadOnly_Background:#585858;--sapField_ReadOnly_BorderColor:#999;--sapField_ReadOnly_HelpBackground:#585858;--sapField_RequiredColor:#fff;--sapField_InvalidColor:#fff;--sapField_InvalidBackground:#7a5100;--sapField_WarningColor:#fff;--sapField_WarningBackground:#000;--sapField_SuccessColor:#fff;--sapField_SuccessBackground:#000;--sapField_InformationColor:#fff;--sapField_InformationBackground:#000;--sapGroup_TitleBackground:#000;--sapGroup_TitleBorderColor:#fff;--sapGroup_TitleTextColor:#fff;--sapGroup_ContentBackground:#000;--sapGroup_ContentBorderColor:#fff;--sapGroup_BorderWidth:.0625rem;--sapGroup_BorderCornerRadius:0;--sapGroup_FooterBackground:#000;--sapToolbar_Background:#000;--sapToolbar_SeparatorColor:#fff;--sapList_HeaderBackground:#000;--sapList_HeaderBorderColor:#fff;--sapList_HeaderTextColor:#fff;--sapList_BorderColor:#999;--sapList_TextColor:#fff;--sapList_Active_TextColor:#fff;--sapList_BorderWidth:.0625rem;--sapList_SelectionBackgroundColor:#0f5d94;--sapList_SelectionBorderColor:#fff;--sapList_Hover_SelectionBackground:#7a5100;--sapList_Background:#000;--sapList_Hover_Background:#7a5100;--sapList_AlternatingBackground:#262626;--sapList_GroupHeaderBackground:#000;--sapList_GroupHeaderBorderColor:#fff;--sapList_GroupHeaderTextColor:#fff;--sapList_FooterBackground:#000;--sapList_FooterTextColor:#fff;--sapList_TableGroupHeaderBackground:#585858;--sapList_TableGroupHeaderBorderColor:#fff;--sapList_TableGroupHeaderTextColor:#fff;--sapList_TableFooterBorder:#fff;--sapList_TableFixedBorderColor:#fff;--sapList_Active_Background:#7a5100;--sapScrollBar_FaceColor:#999;--sapScrollBar_TrackColor:#000;--sapScrollBar_BorderColor:#999;--sapScrollBar_SymbolColor:#fff;--sapScrollBar_Dimension:.75rem;--sapScrollBar_Hover_FaceColor:#fff;--sapPageHeader_Background:#000;--sapPageHeader_BorderColor:#fff;--sapPageHeader_TextColor:#fff;--sapPageFooter_Background:#000;--sapPageFooter_BorderColor:#000;--sapPageFooter_TextColor:#fff;--sapInfobar_Background:#000;--sapInfobar_Hover_Background:#7a5100;--sapInfobar_Active_Background:#7a5100;--sapObjectHeader_Background:#000;--sapObjectHeader_BorderColor:#fff;--sapBlockLayer_Background:#000;--sapTile_Background:#000;--sapTile_Hover_Background:#7a5100;--sapTile_Active_Background:#7a5100;--sapTile_BorderColor:#fff;--sapTile_TitleTextColor:#fff;--sapTile_TextColor:#fff;--sapTile_IconColor:#fff;--sapTile_SeparatorColor:#fff;--sapAccentColor1:#ffc847;--sapAccentColor2:#ed884a;--sapAccentColor3:#db9292;--sapAccentColor4:#e269c9;--sapAccentColor5:#8ca7d5;--sapAccentColor6:#6bd3ff;--sapAccentColor7:#7fc6c6;--sapAccentColor8:#b2e484;--sapAccentColor9:#b995e0;--sapAccentColor10:#b0bcc5;--sapLegend_WorkingBackground:#2e2e2e;--sapLegend_NonWorkingBackground:#4d4d4d;--sapLegend_CurrentDateTime:#e269c9;--sapLegendColor1:#ffc847;--sapLegendColor2:#ed884a;--sapLegendColor3:#db9292;--sapLegendColor4:#ff741f;--sapLegendColor5:#e269c9;--sapLegendColor6:#6bd3ff;--sapLegendColor7:#7fc6c6;--sapLegendColor8:#b2e484;--sapLegendColor9:#b0bcc5;--sapLegendColor10:#bb86b0;--sapLegendColor11:#ffe6ad;--sapLegendColor12:#cdaf9d;--sapLegendColor13:#ff8787;--sapLegendColor14:#ffb385;--sapLegendColor15:#ffb2ef;--sapLegendColor16:#9cabc5;--sapLegendColor17:#a4eeee;--sapLegendColor18:#8d9e7e;--sapLegendColor19:#addcf0;--sapLegendColor20:#629cff;--sapLegendBackgroundColor1:#000;--sapLegendBackgroundColor2:#000;--sapLegendBackgroundColor3:#000;--sapLegendBackgroundColor4:#000;--sapLegendBackgroundColor5:#000;--sapLegendBackgroundColor6:#000;--sapLegendBackgroundColor7:#000;--sapLegendBackgroundColor8:#000;--sapLegendBackgroundColor9:#000;--sapLegendBackgroundColor10:#000;--sapLegendBackgroundColor11:#000;--sapLegendBackgroundColor12:#000;--sapLegendBackgroundColor13:#000;--sapLegendBackgroundColor14:#000;--sapLegendBackgroundColor15:#000;--sapLegendBackgroundColor16:#000;--sapLegendBackgroundColor17:#000;--sapLegendBackgroundColor18:#000;--sapLegendBackgroundColor19:#000;--sapLegendBackgroundColor20:#000;--sapChart_OrderedColor_1:#4da2f6;--sapChart_OrderedColor_2:#e8743b;--sapChart_OrderedColor_3:#19a979;--sapChart_OrderedColor_4:#ed4a7b;--sapChart_OrderedColor_5:#945ecf;--sapChart_OrderedColor_6:#13a4b4;--sapChart_OrderedColor_7:#5c66f5;--sapChart_OrderedColor_8:#c63fa4;--sapChart_OrderedColor_9:#6c8893;--sapChart_OrderedColor_10:#ee6868;--sapChart_OrderedColor_11:#387bb7;--sapChart_Bad:#ff5e5e;--sapChart_Critical:#ffab1d;--sapChart_Good:#9c9;--sapChart_Neutral:#fff;--sapChart_Sequence_1:#4da2f6;--sapChart_Sequence_2:#e8743b;--sapChart_Sequence_3:#19a979;--sapChart_Sequence_4:#ed4a7b;--sapChart_Sequence_5:#945ecf;--sapChart_Sequence_6:#13a4b4;--sapChart_Sequence_7:#5c66f5;--sapChart_Sequence_8:#c63fa4;--sapChart_Sequence_9:#6c8893;--sapChart_Sequence_10:#ee6868;--sapChart_Sequence_11:#387bb7;--sapChart_Sequence_Neutral:#fff;}"}
|
package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.97725b2cf4e77494.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_":":root{--_ui5_calendar_header_height:3rem;--_ui5_calendar_header_arrow_button_width:2.5rem;--_ui5_calendar_header_padding:0.25rem 0;--_ui5_checkbox_root_side_padding:.6875rem;--_ui5_checkbox_icon_size:1rem;--_ui5_custom_list_item_height:3rem;--_ui5_custom_list_item_rb_min_width:3rem;--_ui5_day_picker_item_width:2.25rem;--_ui5_day_picker_item_height:2.875rem;--_ui5_day_picker_empty_height:3rem;--_ui5_datetime_picker_width:40.0625rem;--_ui5_datetime_picker_height:25rem;--_ui5_datetime_timeview_phonemode_width:19.5rem;--_ui5_datetime_timeview_padding:1rem;--_ui5_input_inner_padding:0 0.75rem;--_ui5_input_value_state_icon_padding:var(--_ui5-input-icon-padding);--_ui5_list_no_data_height:3rem;--_ui5_list_item_cb_margin_right:0;--_ui5_list_item_title_size:var(--sapMFontLargeSize);--_ui5_list_item_img_size:2rem;--_ui5_list_item_img_margin:0.5rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:3rem;--_ui5_list_busy_row_height:3rem;--_ui5_month_picker_item_height:3rem;--_ui5_year_picker_item_height:3rem;--_ui5_tokenizer_root_padding:0.1875rem;--_ui5_token_height:1.625rem;--_ui5_token_icon_size:1rem;--_ui5_token_icon_padding:0.25rem 0.5rem;--_ui5_token_wrapper_right_padding:0.3125rem;--_ui5_tl_bubble_padding:1rem;--_ui5_tl_indicator_before_bottom:-1.625rem;--_ui5_tl_padding:1rem 1rem 1rem .5rem;--_ui5_tl_li_margin_bottom:1.625rem;--_ui5_rb_height:2.75rem;--_ui5_rb_label_side_padding:.875rem;--_ui5_rb_focus_dist:.5rem;--_ui5_rb_inner_size:2.75rem;--_ui5_rb_svg_size:1.375rem;--_ui5_rb_label_width:calc(100% - 2.75rem);--_ui5_rb_rtl_focus_right:0.5rem;--_ui5_switch_text_on_left:calc(-100% + 1.9125rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.875rem);--_ui5_switch_rtl_transform:translateX(1.875rem) translateX(-100%);--_ui5_switch_text_right:calc(-100% + 1.9125rem);--_ui5_tc_item_text:3rem;--_ui5_tc_item_text_text_only:3rem;--_ui5_tc_item_text_line_height:normal;--_ui5_tc_item_icon_size:1.5rem;--_ui5_tc_item_add_text_margin_top:0.625rem;--_ui5_textarea_padding:0.5625rem 0.6875rem;--_ui5-responnsive_popover_header_height:2.75rem;--ui5_side_navigation_item_height:2.75rem;--_ui5-tree-indent-step:1.5rem;--_ui5-tree-toggle-box-width:2.75rem;--_ui5-tree-toggle-box-height:2.25rem;--_ui5-tree-toggle-icon-size:1.0625rem;--_ui5_segmented_btn_border_radius:0.375rem;--ui5-avatar-initials-color:var(--sapContent_ImagePlaceholderForegroundColor);--ui5-avatar-initials-border:none;--ui5-avatar-accent1:var(--sapAccentColor1);--ui5-avatar-accent2:var(--sapAccentColor2);--ui5-avatar-accent3:var(--sapAccentColor3);--ui5-avatar-accent4:var(--sapAccentColor4);--ui5-avatar-accent5:var(--sapAccentColor5);--ui5-avatar-accent6:var(--sapAccentColor6);--ui5-avatar-accent7:var(--sapAccentColor7);--ui5-avatar-accent8:var(--sapAccentColor8);--ui5-avatar-accent9:var(--sapAccentColor9);--ui5-avatar-accent10:var(--sapAccentColor10);--ui5-avatar-placeholder:var(--sapContent_ImagePlaceholderBackground);--ui5-badge-font-size:0.75em;--_ui5_button_base_min_width:2.5rem;--_ui5_button_base_min_compact_width:2rem;--_ui5_button_base_height:2.5rem;--_ui5_button_compact_height:1.625rem;--_ui5_button_border_radius:0.2rem;--_ui5_button_base_padding:0.6875rem;--_ui5_button_compact_padding:0.4375rem;--_ui5_button_base_icon_only_padding:0.5625rem;--_ui5_button_base_icon_margin:0.563rem;--_ui5_button_icon_font_size:1.375rem;--_ui5_button_outline:1px dotted var(--sapContent_FocusColor);--_ui5_button_outline_offset:-0.1875rem;--_ui5_button_emphasized_font_weight:normal;--_ui5_button_text_shadow:var(--sapContent_TextShadow);--_ui5_button_focus_offset:1px;--_ui5_button_focus_width:1px;--_ui5_button_focus_color:var(--sapContent_FocusColor);--_ui5_button_transparent_border_color:transparent;--_ui5_button_active_border_color:var(--sapButton_Active_BorderColor);--_ui5_button_positive_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_positive_border_hover_color:var(--sapButton_Accept_Hover_BorderColor);--_ui5_button_positive_border_active_color:var(--sapButton_Accept_Active_BorderColor);--_ui5_button_positive_border_focus_hover_color:var(--sapContent_FocusColor);--_ui5_button_positive_focus_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_negative_focus_border_color:var(--sapButton_Reject_BorderColor);--_ui5_button_negative_active_border_color:var(--sapButton_Reject_Active_BorderColor);--_ui5_button_emphasized_focused_border_color:var(--sapButton_Emphasized_BorderColor);--_ui5_button_transparent_hover_border_color:transparent;--_ui5_datepicker_icon_border:none;--_ui5_daypicker_item_margin:2px;--_ui5_daypicker_item_border:none;--_ui5_daypicker_item_outline_width:1px;--_ui5_daypicker_item_outline_offset:1px;--_ui5_daypicker_daynames_container_height:2rem;--_ui5_daypicker_item_selected_hover_background_color:var(--sapContent_Selected_Background);--_ui5_daypicker_item_othermonth_background_color:var(--sapList_Background);--_ui5_daypicker_item_othermonth_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_othermonth_hover_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_border_radius:0;--_ui5_daypicker_item_now_inner_border_radius:0;--_ui5_daypicker_dayname_color:var(--sapContent_LabelColor);--_ui5_daypicker_weekname_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_now_selected_focus_after_width:calc(100% - 0.125rem);--_ui5_daypicker_item_now_selected_focus_after_height:calc(100% - 0.125rem);--_ui5_calendar_header_arrow_button_border:none;--_ui5_calendar_header_arrow_button_border_radius:0.25rem;--_ui5_calendar_header_middle_button_width:6.25rem;--_ui5_calendar_header_middle_button_flex:1 1 auto;--_ui5_calendar_header_middle_button_focus_border_radius:0.25rem;--_ui5_calendar_header_middle_button_focus_border:none;--_ui5_calendar_header_middle_button_focus_after_display:block;--_ui5_calendar_header_middle_button_focus_after_width:calc(100% - 0.25rem);--_ui5_calendar_header_middle_button_focus_after_height:calc(100% - 0.25rem);--_ui5_calendar_header_middle_button_focus_after_top_offset:1px;--_ui5_calendar_header_middle_button_focus_after_left_offset:1px;--ui5_carousel_button_size:2.5rem;--ui5_carousel_height:0.25rem;--ui5_carousel_width:0.25rem;--ui5_carousel_margin:0 0.375rem;--ui5_carousel_border:1px solid var(--sapContent_ForegroundBorderColor);--ui5_carousel_dot_border:none;--ui5_carousel_dot_background:var(--sapContent_NonInteractiveIconColor);--_ui5_card_border_color:var(--sapTile_SeparatorColor);--_ui5_card_content_padding:1rem;--_ui5_card_header_hover_bg:var(--sapList_Hover_Background);--_ui5_card_header_active_bg:var(--_ui5_card_header_hover_bg);--_ui5_card_header_border_color:var(--_ui5_card_border_color);--_ui5_card_header_focus_border:1px dotted var(--sapContent_FocusColor);--_ui5_checkbox_wrapper_padding:.8125rem;--_ui5_checkbox_width_height:3rem;--_ui5_checkbox_hover_background:var(--sapField_Hover_Background);--_ui5_checkbox_inner_width_height:1.375rem;--_ui5_checkbox_inner_border:solid .125rem var(--sapField_BorderColor);--_ui5_checkbox_inner_border_radius:0;--_ui5_checkbox_inner_error_border:0.125rem solid var(--sapField_InvalidColor);--_ui5_checkbox_inner_warning_border:0.125rem solid var(--sapField_WarningColor);--_ui5_checkbox_inner_information_border:0.125rem solid var(--sapField_InformationColor);--_ui5_checkbox_inner_readonly_border:0.125rem solid var(--sapField_ReadOnly_BorderColor);--_ui5_checkbox_checkmark_warning_color:var(--sapField_TextColor);--_ui5_checkbox_checkmark_color:var(--sapSelectedColor);--_ui5_checkbox_wrapped_focus_padding:.375rem;--_ui5_checkbox_wrapped_content_margin_top:.125rem;--_ui5_checkbox_wrapped_focus_left_top_bottom_position:.5625rem;--_ui5_checkbox_focus_position:.6875rem;--_ui5_checkbox_focus_outline:1px dotted var(--sapContent_FocusColor);--_ui5_checkbox_compact_wrapper_padding:.5rem;--_ui5_checkbox_compact_width_height:2rem;--_ui5_checkbox_compact_inner_size:1rem;--_ui5_checkbox_compact_focus_position:.375rem;--_ui5_checkbox_compact_wrapped_label_margin_top:-1px;--ui5-group-header-listitem-background-color:var(--sapList_GroupHeaderBackground);--_ui5_input_width:13.125rem;--_ui5_input_height:2.5rem;--_ui5_input_compact_height:1.625rem;--_ui5_input_wrapper_border_radius:0;--_ui5_input_state_border_width:0.125rem;--_ui5-input-information_border_width:0.125rem;--_ui5_input_error_font_weight:normal;--_ui5_input_focus_border_width:1px;--_ui5_input_error_warning_border_style:solid;--_ui5_input_error_warning_font_style:inherit;--_ui5_input_disabled_color:var(--sapContent_DisabledTextColor);--_ui5_input_disabled_font_weight:normal;--_ui5_input_disabled_border_color:var(--sapField_BorderColor);--_ui5_input_disabled_background:var(--sapField_Background);--_ui5_input_disabled_opacity:0.5;--_ui5_input_icon_min_width:2.375rem;--_ui5_input_compact_min_width:2rem;--_ui5_input_icon_padding:0.6875rem .6875rem;--_ui5_link_opacity:0.5;--_ui5_link_text_decoration:none;--_ui5_link_hover_text_decoration:underline;--ui5_list_footer_text_color:var(--sapPageFooter_TextColor);--ui5-listitem-background-color:var(--sapList_Background);--ui5-listitem-border-bottom:1px solid var(--sapList_BorderColor);--ui5-listitem-selected-border-bottom:1px solid var(--sapList_SelectionBorderColor);--_ui5_listitembase_focus_width:1px;--_ui5_product_switch_item_border:none;--_ui5_messagestrip_icon_width:2.5rem;--_ui5_messagestrip_border_radius:0.1875rem;--_ui5_messagestrip_button_border_width:0;--_ui5_messagestrip_button_border_style:none;--_ui5_messagestrip_button_border_color:transparent;--_ui5_messagestrip_button_border_radius:0;--_ui5_messagestrip_padding:0.125rem .125rem;--_ui5_messagestrip_button_height:1.625rem;--_ui5_messagestrip_border_width:1px;--_ui5_messagestrip_close_button_border:none;--_ui5_messagestrip_close_button_size:1.625rem;--_ui5_messagestrip_icon_top:0.4375rem;--_ui5_messagestrip_focus_width:1px;--_ui5_messagestrip_focus_offset:-2px;--_ui5_monthpicker_item_border_radius:0;--_ui5_monthpicker_item_border:none;--_ui5_monthpicker_item_margin:1px;--_ui5_monthpicker_item_focus_after_width:calc(100% - 0.375rem);--_ui5_monthpicker_item_focus_after_height:calc(100% - 0.375rem);--_ui5_monthpicker_item_focus_after_border:1px dotted var(--sapContent_FocusColor);--_ui5_monthpicker_item_focus_after_offset:2px;--_ui5_panel_focus_border:1px dotted var(--sapContent_FocusColor);--_ui5_panel_header_height:3rem;--_ui5_panel_button_root_width:3rem;--_ui5_popup_content_padding:.4375em;--_ui5_progress_indicator_value_state_none:var(--sapNeutralElementColor);--_ui5_progress_indicator_color:var(--sapTextColor);--_ui5_progress_indicator_bar_color:var(--sapContent_ContrastTextColor);--_ui5_progress_indicator_border:0.0625rem solid var(--sapField_BorderColor);--_ui5_progress_indicator_bar_border_max:none;--_ui5_progress_indicator_icon_visibility:none;--_ui5_progress_indicator_value_state_error:var(--sapNegativeElementColor);--_ui5_progress_indicator_value_state_warning:var(--sapCriticalElementColor);--_ui5_progress_indicator_value_state_success:var(--sapPositiveElementColor);--_ui5_progress_indicator_value_state_information:var(--sapHighlightColor);--_ui5_radiobutton_min_width:2.75rem;--_ui5_radiobutton_min_width_compact:2rem;--_ui5_radiobutton_hover_fill:var(--sapField_Hover_Background);--_ui5_radiobutton_border_width:1px;--_ui5_radiobutton_selected_fill:var(--sapSelectedColor);--_ui5_radiobutton_selected_error_fill:var(--sapField_InvalidColor);--_ui5_radiobutton_selected_warning_fill:var(--sapField_TextColor);--_ui5_radiobutton_warning_error_border_dash:0;--_ui5_select_disabled_background:var(--sapField_Background);--_ui5_select_disabled_border_color:var(--sapField_BorderColor);--_ui5_select_state_error_warning_border_style:solid;--_ui5_select_state_error_warning_border_width:0.125rem;--_ui5_select_hover_icon_left_border:1px solid transparent;--_ui5_select_rtl_hover_icon_left_border:none;--_ui5_select_rtl_hover_icon_right_border:none;--_ui5_select_focus_width:1px;--_ui5_switch_height:2.75rem;--_ui5_switch_width:3.875rem;--_ui5_switch_no_label_width:3.25rem;--_ui5_switch_outline:1px;--_ui5_switch_compact_height:2rem;--_ui5_switch_compact_width:3.5rem;--_ui5_switch_compact_no_label_width:2.5rem;--_ui5_switch_track_height:1.375rem;--_ui5_switch_track_no_label_height:1.25rem;--_ui5_switch_track_compact_no_label_height:1rem;--_ui5_switch_track_hover_border_color:var(--_ui5_switch_track_checked_border_color);--_ui5_switch_track_hover_background_color:var(--sapButton_Track_Background);--_ui5_switch_track_hover_checked_background_color:var(--sapButton_Track_Selected_Background);--_ui5_switch_track_border_radius:0.75rem;--_ui5_switch_track_disabled_checked_bg:var(--_ui5_switch_track_checked_bg);--_ui5_switch_track_disabled_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_track_disabled_semantic_checked_bg:var(--sapSuccessBackground);--_ui5_switch_track_disabled_semantic_checked_border_color:var(--sapSuccessBorderColor);--_ui5_switch_track_disabled_semantic_bg:var(--sapErrorBackground);--_ui5_switch_track_disabled_semantic_border_color:var(--sapErrorBorderColor);--_ui5_switch_handle_width:2rem;--_ui5_switch_handle_height:2rem;--_ui5_switch_handle_border_width:1px;--_ui5_switch_handle_border_radius:1rem;--_ui5_switch_handle_bg:var(--sapButton_TokenBackground);--_ui5_switch_handle_checked_bg:var(--sapButton_Selected_Background);--_ui5_switch_handle_checked_border_color:var(--sapButton_Selected_BorderColor);--_ui5_switch_handle_semantic_hover_bg:var(--sapErrorBackground);--_ui5_switch_handle_semantic_checked_hover_bg:var(--sapSuccessBackground);--_ui5_switch_handle_semantic_hover_border_color:var(--sapErrorBorderColor);--_ui5_switch_handle_semantic_checked_hover_border_color:var(--sapSuccessBorderColor);--_ui5_switch_handle_compact_width:1.625rem;--_ui5_switch_handle_compact_height:1.625rem;--_ui5_switch_handle_disabled_bg:var(--_ui5_switch_handle_bg);--_ui5_switch_handle_disabled_checked_bg:var(--_ui5_switch_handle_checked_bg);--_ui5_switch_handle_disabled_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_handle_disabled_semantic_checked_bg:var(--sapButton_Background);--_ui5_switch_handle_disabled_semantic_checked_border_color:var(--sapSuccessBorderColor);--_ui5_switch_handle_disabled_semantic_border_color:var(--sapErrorBorderColor);--_ui5_switch_text_on_semantic_color:var(--sapPositiveElementColor);--_ui5_switch_text_off_semantic_color:var(--sapNegativeElementColor);--_ui5_switch_text_disabled_color:var(--sapTextColor);--_ui5_tc_header_height:4.6875rem;--_ui5_tc_header_height_compact:3.6875rem;--_ui5_tc_header_height_text_only:3rem;--_ui5_tc_header_height_text_only_compact:2rem;--_ui5_tc_header_box_shadow:inset 0 -0.25rem 0 -0.125rem var(--sapObjectHeader_BorderColor);--_ui5_tc_header_border_bottom:0.125rem solid var(--sapObjectHeader_Background);--_ui5_tc_headerItem_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_neutral_color:var(--sapNeutralColor);--_ui5_tc_headerItem_positive_color:var(--sapPositiveColor);--_ui5_tc_headerItem_negative_color:var(--sapNegativeColor);--_ui5_tc_headerItem_critical_color:var(--sapCriticalColor);--_ui5_tc_headerItem_neutral_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItem_neutral_selected_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_selected_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_selected_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_selected_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItemContent_border_bottom:0.125rem solid var(--sapSelectedColor);--_ui5_tc_headerItem_focus_border:1px dotted var(--sapContent_FocusColor);--_ui5_tc_headerItemSemanticIcon_display:none;--_ui5_tc_overflowItem_neutral_color:var(--sapNeutralColor);--_ui5_tc_overflowItem_positive_color:var(--sapPositiveColor);--_ui5_tc_overflowItem_negative_color:var(--sapNegativeColor);--_ui5_tc_overflowItem_critical_color:var(--sapCriticalColor);--_ui5_tc_headerItemIcon_border:1px solid var(--sapHighlightColor);--_ui5_tc_headerItemIcon_color:var(--sapHighlightColor);--_ui5_tc_headerItemIcon_selected_color:var(--sapGroup_ContentBackground);--_ui5_tc_headerItemIcon_positive_selected_background:var(--sapPositiveColor);--_ui5_tc_headerItemIcon_negative_selected_background:var(--sapNegativeColor);--_ui5_tc_headerItemIcon_critical_selected_background:var(--sapCriticalColor);--_ui5_tc_headerItemIcon_neutral_selected_background:var(--sapNeutralColor);--_ui5_tc_headerItemIcon_semantic_selected_color:var(--sapGroup_ContentBackground);--_ui5_tc_overflowItem_default_color:var(--sapHighlightColor);--_ui5_tc_overflowItem_current_color:CurrentColor;--_ui5_tc_content_border_bottom:0.125rem solid var(--sapObjectHeader_BorderColor);--_ui5_tc_headeritem_text_selected_color:#3b6f9a;--_ui5_tc_headerItemIcon_selected_background:#3b6f9a;--ui5_table_header_row_outline_width:1px;--ui5_table_row_outline_width:1px;--_ui5_textarea_focus_after_width:1px;--_ui5_textarea_warning_border_style:solid;--_ui5_textarea_warning_border_width:2px;--_ui5_TimelineItem_arrow_size:1.625rem;--_ui5_TimelineItem_bubble_outline_width:0.0625rem;--_ui5_TimelineItem_bubble_outline_top:-0.125rem;--_ui5_TimelineItem_bubble_outline_right:-0.125rem;--_ui5_TimelineItem_bubble_outline_bottom:-0.125rem;--_ui5_TimelineItem_bubble_outline_left:-0.625rem;--_ui5_TimelineItem_bubble_rtl_left_offset:-0.125rem;--_ui5_TimelineItem_bubble_rtl_right_offset:-0.625rem;--_ui5_time_picker_border:0.0625rem solid transparent;--ui5_title_level_1Size:1.625rem;--ui5_title_level_2Size:1.375rem;--ui5_title_level_3Size:1.250rem;--ui5_title_level_4Size:1.125rem;--ui5_title_level_5Size:1rem;--ui5_title_level_6Size:0.875rem;--_ui5_toast_vertical_offset:3rem;--_ui5_toast_horizontal_offset:2rem;--_ui5_toast_background:var(--sapList_Background);--_ui5_toast_shadow:var(--sapContent_Shadow2);--_ui5_toggle_button_pressed_focussed:var(--sapButton_Selected_BorderColor);--_ui5_toggle_button_pressed_focussed_hovered:var(--sapButton_Selected_BorderColor);--_ui5_wheelslider_item_text_size:var(--sapFontSize);--_ui5_wheelslider_label_text_size:var(--sapFontSmallSize);--_ui5_wheelslider_mobile_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*4);--_ui5_wheelslider_label_text_color:var(--sapContent_LabelColor);--_ui5_wheelslider_height:15rem;--_ui5_wheelslider_mobile_height:27rem;--_ui5_wheelslider_arrows_visibility:hidden;--_ui5_wheelslider_item_background_color:var(--sapLegend_WorkingBackground);--_ui5_wheelslider_item_text_color:var(--sapTextColor);--_ui_wheelslider_item_hover_color:var(--sapList_Hover_Background);--_ui5_wheelslider_item_border_color:var(--sapList_Background);--_ui5_wheelslider_collapsed_item_text_color:var(--_ui5_wheelslider_item_border_color);--_ui5_wheelslider_selected_item_background_color:var(--sapContent_Selected_Background);--_ui5_wheelslider_selected_item_hover_background_color:var(--_ui5_wheelslider_item_border_color);--_ui5_wheelslider_active_item_background_color:var(--sapContent_Selected_Background);--_ui5_wheelslider_active_item_text_color:var(--sapContent_Selected_TextColor);--_ui5_wheelslider_item_width:4.5rem;--_ui5_wheelslider_item_height:3rem;--_ui5_wheelslider_selection_frame_color:var(--sapList_SelectionBorderColor);--_ui_wheelslider_item_border_radius:var(--_ui5_button_border_radius);--_ui5_yearpicker_item_selected_focus:var(--sapContent_Selected_Background);--_ui5_yearpicker_item_border:none;--_ui5_yearpicker_item_border_radius:0;--_ui5_yearpicker_item_margin:1px;--_ui5_yearpicker_item_focus_after_width:calc(100% - 0.375rem);--_ui5_yearpicker_item_focus_after_height:calc(100% - 0.375rem);--_ui5_yearpicker_item_focus_after_border:1px dotted var(--sapContent_FocusColor);--_ui5_yearpicker_item_focus_after_offset:2px;--_ui5_token_background:var(--sapButton_Background);--_ui5_token_border_radius:0.125rem;--_ui5_token_focus_outline_width:0.0625rem;--_ui5_token_text_color:var(--sapButton_TextColor);--_ui5_token_icon_color:var(--sapContent_IconColor);--_ui5_value_state_message_border:none;--_ui5-multi_combobox_token_margin_top:3px}.sapUiSizeCompact,.ui5-content-density-compact,:root,[data-ui5-compact-size]{--_ui5_datetime_timeview_width:17rem;--_ui5_token_wrapper_left_padding:0;--_ui5_daypicker_weeknumbers_container_padding_top:2rem;--_ui5_wheelslider_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*2)}.sapUiSizeCompact,.ui5-content-density-compact,[data-ui5-compact-size]{--_ui5_button_base_height:1.625rem;--_ui5_button_base_padding:0.4375rem;--_ui5_button_base_min_width:2rem;--_ui5_button_icon_font_size:1rem;--_ui5_calendar_header_height:2rem;--_ui5_calendar_header_padding:0;--_ui5_calendar_header_arrow_button_width:2rem;--_ui5_checkbox_root_side_padding:var(--_ui5_checkbox_wrapped_focus_padding);--_ui5_checkbox_wrapped_content_margin_top:var(--_ui5_checkbox_compact_wrapped_label_margin_top);--_ui5_checkbox_wrapped_focus_left_top_bottom_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_width_height:var(--_ui5_checkbox_compact_width_height);--_ui5_checkbox_wrapper_padding:var(--_ui5_checkbox_compact_wrapper_padding);--_ui5_checkbox_focus_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_inner_width_height:var(--_ui5_checkbox_compact_inner_size);--_ui5_checkbox_icon_size:.75rem;--_ui5_custom_list_item_height:2rem;--_ui5_custom_list_item_rb_min_width:2rem;--_ui5_day_picker_item_width:2rem;--_ui5_day_picker_item_height:2rem;--_ui5_day_picker_empty_height:2.125rem;--_ui5_datetime_picker_height:17rem;--_ui5_datetime_picker_width:34.0625rem;--_ui5_datetime_timeview_phonemode_width:18.5rem;--_ui5_datetime_timeview_padding:0.5rem;--_ui5_input_height:var(--_ui5_input_compact_height);--_ui5_input_inner_padding:0 0.5rem;--_ui5_input_icon_min_width:var(--_ui5_input_compact_min_width);--_ui5_input_icon_padding:.25rem .5rem;--_ui5_input_value_state_icon_padding:.1875rem .5rem;--_ui5_textarea_padding:.1875rem .5rem;--_ui5_list_no_data_height:2rem;--_ui5_list_item_cb_margin_right:.5rem;--_ui5_list_item_title_size:var(--sapFontSize);--_ui5_list_item_img_size:1.75rem;--_ui5_list_item_img_margin:0.55rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:2rem;--_ui5_list_busy_row_height:2rem;--_ui5_month_picker_item_height:2rem;--_ui5_panel_header_height:2rem;--_ui5_year_picker_item_height:2rem;--_ui5_tokenizer_root_padding:0.125rem;--_ui5_token_height:1.125rem;--_ui5_token_icon_size:.75rem;--_ui5_token_icon_padding:0.1rem 0.25rem;--_ui5_token_wrapper_right_padding:0.25rem;--_ui5_tl_bubble_padding:.5rem;--_ui5_tl_indicator_before_bottom:-.5rem;--_ui5_tl_padding:.5rem;--_ui5_tl_li_margin_bottom:.5rem;--_ui5_rb_height:2rem;--_ui5_rb_label_side_padding:.5rem;--_ui5_rb_focus_dist:.375rem;--_ui5_rb_inner_size:2rem;--_ui5_rb_svg_size:1rem;--_ui5_rb_label_width:calc(100% - 2rem + 1px);--_ui5_rb_rtl_focus_right:0.375rem;--_ui5_wheelslider_item_width:4rem;--_ui5_wheelslider_item_height:2rem;--_ui5_wheelslider_height:14rem;--_ui5_wheelslider_arrows_visibility:visible;--_ui5_switch_height:var(--_ui5_switch_compact_height);--_ui5_switch_width:var(--_ui5_switch_compact_width);--_ui5_switch_handle_height:var(--_ui5_switch_handle_compact_height);--_ui5_switch_handle_width:var(--_ui5_switch_handle_compact_width);--_ui5_switch_text_on_left:calc(-100% + 1.5625rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.5rem);--_ui5_switch_no_label_width:var(--_ui5_switch_compact_no_label_width);--_ui5_switch_track_no_label_height:var(--_ui5_switch_track_compact_no_label_height);--_ui5_switch_rtl_transform:translateX(-100%) translateX(1.5rem);--_ui5_switch_text_right:calc(-100% + 1.5625rem);--_ui5_tc_item_text:2rem;--_ui5_tc_item_text_line_height:1.325rem;--_ui5_tc_item_icon_size:1rem;--_ui5_tc_item_add_text_margin_top:0.3125rem;--_ui5_tc_header_height:var(--_ui5_tc_header_height_compact);--_ui5_radiobutton_min_width:var(--_ui5_radiobutton_min_width_compact);--_ui5-responnsive_popover_header_height:2.5rem;--ui5_side_navigation_item_height:2rem;--_ui5-tree-indent-step:0.5rem;--_ui5-tree-toggle-box-width:2rem;--_ui5-tree-toggle-box-height:1.5rem;--_ui5-tree-toggle-icon-size:0.8125rem}"}
|
package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.b1bf75f0b850363c.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_":":root{--_ui5_calendar_header_height:3rem;--_ui5_calendar_header_arrow_button_width:2.5rem;--_ui5_calendar_header_padding:0.25rem 0;--_ui5_checkbox_root_side_padding:.6875rem;--_ui5_checkbox_icon_size:1rem;--_ui5_custom_list_item_height:3rem;--_ui5_custom_list_item_rb_min_width:3rem;--_ui5_day_picker_item_width:2.25rem;--_ui5_day_picker_item_height:2.875rem;--_ui5_day_picker_empty_height:3rem;--_ui5_datetime_picker_width:40.0625rem;--_ui5_datetime_picker_height:25rem;--_ui5_datetime_timeview_phonemode_width:19.5rem;--_ui5_datetime_timeview_padding:1rem;--_ui5_input_inner_padding:0 0.75rem;--_ui5_input_value_state_icon_padding:var(--_ui5-input-icon-padding);--_ui5_list_no_data_height:3rem;--_ui5_list_item_cb_margin_right:0;--_ui5_list_item_title_size:var(--sapMFontLargeSize);--_ui5_list_item_img_size:2rem;--_ui5_list_item_img_margin:0.5rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:3rem;--_ui5_list_busy_row_height:3rem;--_ui5_month_picker_item_height:3rem;--_ui5_year_picker_item_height:3rem;--_ui5_tokenizer_root_padding:0.1875rem;--_ui5_token_height:1.625rem;--_ui5_token_icon_size:1rem;--_ui5_token_icon_padding:0.25rem 0.5rem;--_ui5_token_wrapper_right_padding:0.3125rem;--_ui5_tl_bubble_padding:1rem;--_ui5_tl_indicator_before_bottom:-1.625rem;--_ui5_tl_padding:1rem 1rem 1rem .5rem;--_ui5_tl_li_margin_bottom:1.625rem;--_ui5_rb_height:2.75rem;--_ui5_rb_label_side_padding:.875rem;--_ui5_rb_focus_dist:.5rem;--_ui5_rb_inner_size:2.75rem;--_ui5_rb_svg_size:1.375rem;--_ui5_rb_label_width:calc(100% - 2.75rem);--_ui5_rb_rtl_focus_right:0.5rem;--_ui5_switch_text_on_left:calc(-100% + 1.9125rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.875rem);--_ui5_switch_rtl_transform:translateX(1.875rem) translateX(-100%);--_ui5_switch_text_right:calc(-100% + 1.9125rem);--_ui5_tc_item_text:3rem;--_ui5_tc_item_text_text_only:3rem;--_ui5_tc_item_text_line_height:normal;--_ui5_tc_item_icon_size:1.5rem;--_ui5_tc_item_add_text_margin_top:0.625rem;--_ui5_textarea_padding:0.5625rem 0.6875rem;--_ui5-responnsive_popover_header_height:2.75rem;--ui5_side_navigation_item_height:2.75rem;--_ui5-tree-indent-step:1.5rem;--_ui5-tree-toggle-box-width:2.75rem;--_ui5-tree-toggle-box-height:2.25rem;--_ui5-tree-toggle-icon-size:1.0625rem;--_ui5_segmented_btn_border_radius:0.375rem;--ui5-avatar-initials-color:var(--sapTextColor);--ui5-avatar-initials-border:.0625rem solid var(--sapField_BorderColor);--ui5-avatar-accent1:var(--sapBackgroundColor);--ui5-avatar-accent2:var(--sapBackgroundColor);--ui5-avatar-accent3:var(--sapBackgroundColor);--ui5-avatar-accent4:var(--sapBackgroundColor);--ui5-avatar-accent5:var(--sapBackgroundColor);--ui5-avatar-accent6:var(--sapBackgroundColor);--ui5-avatar-accent7:var(--sapBackgroundColor);--ui5-avatar-accent8:var(--sapBackgroundColor);--ui5-avatar-accent9:var(--sapBackgroundColor);--ui5-avatar-accent10:var(--sapBackgroundColor);--ui5-avatar-placeholder:var(--sapBackgroundColor);--ui5-badge-font-size:0.75em;--_ui5_button_base_min_width:2.5rem;--_ui5_button_base_min_compact_width:2rem;--_ui5_button_base_height:2.5rem;--_ui5_button_compact_height:1.625rem;--_ui5_button_base_padding:0.6875rem;--_ui5_button_compact_padding:0.4375rem;--_ui5_button_base_icon_only_padding:0.5625rem;--_ui5_button_base_icon_margin:0.563rem;--_ui5_button_icon_font_size:1.375rem;--_ui5_button_emphasized_font_weight:normal;--_ui5_button_text_shadow:var(--sapContent_TextShadow);--_ui5_button_focus_offset:1px;--_ui5_button_transparent_hover_border_color:var(--sapButton_BorderColor);--_ui5_button_positive_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_positive_border_hover_color:var(--sapButton_Accept_Hover_BorderColor);--_ui5_button_positive_border_focus_hover_color:var(--sapContent_FocusColor);--_ui5_button_positive_focus_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_negative_focus_border_color:var(--sapButton_Reject_BorderColor);--_ui5_button_emphasized_focused_border_color:var(--sapButton_Emphasized_BorderColor);--_ui5_button_border_radius:0.375rem;--_ui5_button_outline_offset:-0.25rem;--_ui5_button_outline:0.125rem dotted var(--sapContent_FocusColor);--_ui5_button_positive_border_active_color:var(--sapButton_Emphasized_Active_Background);--_ui5_button_active_border_color:var(--sapButton_Accept_Active_BorderColor);--_ui5_button_negative_active_border_color:var(--sapButton_Reject_Active_Background);--_ui5_button_transparent_border_color:var(--sapButton_BorderColor);--_ui5_button_focus_width:1px;--_ui5_button_focus_color:var(--sapContent_FocusColor);--_ui5_button_focussed_border_color:transparent;--_ui5_calendar_header_middle_button_focus_after_width:calc(100% - 0.25rem);--_ui5_calendar_header_middle_button_focus_after_height:calc(100% - 0.25rem);--_ui5_calendar_header_middle_button_focus_after_top_offset:1px;--_ui5_calendar_header_middle_button_focus_after_left_offset:1px;--_ui5_calendar_header_arrow_button_border:1px solid var(--sapButton_BorderColor);--_ui5_calendar_header_arrow_button_border_radius:0.375rem;--_ui5_calendar_header_middle_button_width:5.75rem;--_ui5_calendar_header_middle_button_flex:auto;--_ui5_calendar_header_middle_button_focus_border_radius:0;--_ui5_calendar_header_middle_button_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_calendar_header_middle_button_focus_after_display:none;--ui5_carousel_button_size:2.5rem;--ui5_carousel_height:0.5rem;--ui5_carousel_width:0.5rem;--ui5_carousel_margin:0 0.25rem;--ui5_carousel_border:1px solid #fff;--ui5_carousel_dot_border:1px solid var(--sapContent_ForegroundBorderColor);--ui5_carousel_dot_background:none;--_ui5_card_content_padding:1rem;--_ui5_card_header_hover_bg:var(--sapList_Hover_Background);--_ui5_card_header_active_bg:var(--_ui5_card_header_hover_bg);--_ui5_card_header_border_color:var(--_ui5_card_border_color);--_ui5_card_border_color:var(--sapTile_BorderColor);--_ui5_card_header_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_checkbox_wrapper_padding:.8125rem;--_ui5_checkbox_width_height:3rem;--_ui5_checkbox_inner_width_height:1.375rem;--_ui5_checkbox_inner_border:solid .125rem var(--sapField_BorderColor);--_ui5_checkbox_inner_readonly_border:0.125rem solid var(--sapField_ReadOnly_BorderColor);--_ui5_checkbox_wrapped_focus_padding:.375rem;--_ui5_checkbox_wrapped_content_margin_top:.125rem;--_ui5_checkbox_wrapped_focus_left_top_bottom_position:.5625rem;--_ui5_checkbox_focus_position:.6875rem;--_ui5_checkbox_compact_wrapper_padding:.5rem;--_ui5_checkbox_compact_width_height:2rem;--_ui5_checkbox_compact_inner_size:1rem;--_ui5_checkbox_compact_focus_position:.375rem;--_ui5_checkbox_compact_wrapped_label_margin_top:-1px;--_ui5_checkbox_inner_border_radius:0;--_ui5_checkbox_checkmark_color:var(--sapContent_IconColor);--_ui5_checkbox_inner_error_border:0.125rem dashed var(--sapField_InvalidColor);--_ui5_checkbox_inner_warning_border:0.125rem dashed var(--sapField_WarningColor);--_ui5_checkbox_inner_information_border:var(--sapField_BorderWidth) dashed var(--sapField_InformationColor);--_ui5_checkbox_checkmark_warning_color:var(--sapField_WarningColor);--_ui5_checkbox_hover_background:var(--sapSelectedColor);--_ui5_checkbox_focus_outline:0.125rem dotted var(--sapContent_FocusColor);--_ui5_datepicker_icon_border:1px solid transparent;--_ui5_daypicker_daynames_container_height:2rem;--_ui5_daypicker_item_selected_hover_background_color:var(--sapContent_Selected_Background);--_ui5_daypicker_item_othermonth_background_color:var(--sapList_Background);--_ui5_daypicker_item_othermonth_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_othermonth_hover_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_now_inner_border_radius:0;--_ui5_daypicker_item_margin:0;--_ui5_daypicker_item_border:1px solid #fff;--_ui5_daypicker_item_border_radius:0.25rem;--_ui5_daypicker_item_outline_width:0.125rem;--_ui5_daypicker_item_outline_offset:0;--_ui5_daypicker_dayname_color:var(--sapTextColor);--_ui5_daypicker_weekname_color:var(--sapTextColor);--_ui5_daypicker_item_now_selected_focus_after_width:calc(100% - 0.25rem);--_ui5_daypicker_item_now_selected_focus_after_height:calc(100% - 0.25rem);--ui5-group-header-listitem-background-color:var(--sapList_GroupHeaderBackground);--_ui5_input_width:13.125rem;--_ui5_input_height:2.5rem;--_ui5_input_compact_height:1.625rem;--_ui5_input_wrapper_border_radius:0;--_ui5_input_disabled_opacity:0.5;--_ui5_input_icon_min_width:2.375rem;--_ui5_input_compact_min_width:2rem;--_ui5_input_focus_border_width:0.125rem;--_ui5_input_state_border_width:0.125rem;--_ui5-input-information_border_width:var(--sapField_BorderWidth);--_ui5_input_error_warning_border_style:dashed;--_ui5_input_error_warning_font_style:italic;--_ui5_input_error_font_weight:bold;--_ui5_input_disabled_color:var(--sapContent_DisabledTextColor);--_ui5_input_disabled_font_weight:normal;--_ui5_input_disabled_border_color:var(--sapField_ReadOnly_BorderColor);--_ui5_input_disabled_background:var(--sapField_ReadOnly_Background);--_ui5_input_icon_padding:0.6875rem .6875rem;--_ui5_link_opacity:0.4;--_ui5_link_text_decoration:underline;--_ui5_link_hover_text_decoration:none;--ui5_list_footer_text_color:var(--sapPageFooter_TextColor);--ui5-listitem-background-color:var(--sapList_Background);--ui5-listitem-border-bottom:1px solid var(--sapList_BorderColor);--ui5-listitem-selected-border-bottom:1px solid var(--sapList_SelectionBorderColor);--_ui5_product_switch_item_border:none;--_ui5_listitembase_focus_width:0.125rem;--_ui5_monthpicker_item_border:1px solid #000;--_ui5_monthpicker_item_border_radius:0.25rem;--_ui5_monthpicker_item_margin:0;--_ui5_monthpicker_item_focus_after_width:calc(100% - 0.25rem);--_ui5_monthpicker_item_focus_after_height:calc(100% - 0.25rem);--_ui5_monthpicker_item_focus_after_border:2px dotted var(--sapContent_FocusColor);--_ui5_monthpicker_item_focus_after_offset:0;--_ui5_messagestrip_icon_width:2.5rem;--_ui5_messagestrip_border_radius:0.1875rem;--_ui5_messagestrip_button_border_width:0;--_ui5_messagestrip_button_border_style:none;--_ui5_messagestrip_button_border_color:transparent;--_ui5_messagestrip_button_border_radius:0;--_ui5_messagestrip_padding:0.125rem .125rem;--_ui5_messagestrip_button_height:1.625rem;--_ui5_messagestrip_close_button_size:1.5rem;--_ui5_messagestrip_close_button_border:1px solid var(--sapButton_BorderColor);--_ui5_messagestrip_border_width:0.125rem;--_ui5_messagestrip_icon_top:0.375rem;--_ui5_messagestrip_focus_width:0.125rem;--_ui5_messagestrip_focus_offset:-4px;--_ui5_panel_header_height:3rem;--_ui5_panel_button_root_width:3rem;--_ui5_panel_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_popup_content_padding:.4375em;--_ui5_progress_indicator_color:var(--sapTextColor);--_ui5_progress_indicator_bar_color:var(--sapContent_ContrastTextColor);--_ui5_progress_indicator_border:0.0625rem solid var(--sapField_BorderColor);--_ui5_progress_indicator_value_state_none:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_error:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_warning:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_success:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_information:var(--sapHighlightColor);--_ui5_progress_indicator_bar_border_max:var(--_ui5_progress_indicator_border);--_ui5_progress_indicator_icon_visibility:inline-block;--_ui5_radiobutton_min_width:2.75rem;--_ui5_radiobutton_min_width_compact:2rem;--_ui5_radiobutton_selected_fill:var(--sapContent_IconColor);--_ui5_radiobutton_selected_warning_fill:var(--sapContent_IconColor);--_ui5_radiobutton_selected_error_fill:var(--sapContent_IconColor);--_ui5_radiobutton_hover_fill:var(--sapSelectedColor);--_ui5_radiobutton_border_width:0.125rem;--_ui5_radiobutton_warning_error_border_dash:5;--_ui5_select_disabled_background:var(--sapHC_ReducedBackground);--_ui5_select_disabled_border_color:var(--sapHC_ReducedForeground);--_ui5_select_state_error_warning_border_style:dashed;--_ui5_select_state_error_warning_border_width:1px;--_ui5_select_hover_icon_left_border:0.0625rem solid var(--sapField_Hover_BorderColor);--_ui5_select_rtl_hover_icon_left_border:none;--_ui5_select_rtl_hover_icon_right_border:0.0625rem solid var(--sapField_Hover_BorderColor);--_ui5_select_focus_width:0.125rem;--_ui5_switch_height:2.75rem;--_ui5_switch_width:3.875rem;--_ui5_switch_no_label_width:3.25rem;--_ui5_switch_compact_height:2rem;--_ui5_switch_compact_width:3.5rem;--_ui5_switch_compact_no_label_width:2.5rem;--_ui5_switch_track_height:1.375rem;--_ui5_switch_track_no_label_height:1.25rem;--_ui5_switch_track_compact_no_label_height:1rem;--_ui5_switch_track_border_radius:0.75rem;--_ui5_switch_handle_width:2rem;--_ui5_switch_handle_height:2rem;--_ui5_switch_handle_border_radius:1rem;--_ui5_switch_handle_checked_bg:var(--sapButton_Selected_Background);--_ui5_switch_handle_checked_border_color:var(--sapButton_Selected_BorderColor);--_ui5_switch_handle_compact_width:1.625rem;--_ui5_switch_handle_compact_height:1.625rem;--_ui5_switch_outline:0.125rem;--_ui5_switch_track_hover_border_color:var(--sapTextColor);--_ui5_switch_track_border_color:var(--sapButton_Background);--_ui5_switch_track_hover_background_color:var(--sapButton_Background);--_ui5_switch_track_hover_checked_background_color:var(--sapButton_Background);--_ui5_switch_track_disabled_checked_bg:var(--sapHC_ReducedBackground);--_ui5_switch_track_disabled_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_track_disabled_semantic_checked_bg:var(--sapHC_ReducedBackground);--_ui5_switch_track_disabled_semantic_checked_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_track_disabled_semantic_bg:var(--sapButton_Background);--_ui5_switch_track_disabled_semantic_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_handle_bg:var(--sapButton_Background);--_ui5_switch_handle_semantic_hover_bg:var(--sapButton_Hover_Background);--_ui5_switch_handle_semantic_checked_hover_bg:var(--sapButton_Hover_Background);--_ui5_switch_handle_semantic_hover_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_handle_semantic_checked_hover_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_handle_border_width:0.125rem;--_ui5_switch_handle_disabled_bg:var(--sapButton_Background);--_ui5_switch_handle_disabled_checked_bg:var(--_ui5_switch_handle_disabled_bg);--_ui5_switch_handle_disabled_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_handle_disabled_semantic_checked_bg:var(--_ui5_switch_handle_disabled_bg);--_ui5_switch_handle_disabled_semantic_checked_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_handle_disabled_semantic_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_text_on_semantic_color:var(--sapTextColor);--_ui5_switch_text_off_semantic_color:var(--sapTextColor);--_ui5_switch_text_disabled_color:var(--sapHC_ReducedAltForeground);--_ui5_tc_header_height:4.6875rem;--_ui5_tc_header_height_compact:3.6875rem;--_ui5_tc_header_height_text_only:3rem;--_ui5_tc_header_height_text_only_compact:2rem;--_ui5_tc_header_box_shadow:inset 0 -0.25rem 0 -0.125rem var(--sapObjectHeader_BorderColor);--_ui5_tc_headerItem_color:var(--sapGroup_TitleTextColor);--_ui5_tc_content_border_bottom:0.125rem solid var(--sapObjectHeader_BorderColor);--_ui5_tc_header_border_bottom:0.125rem solid var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemContent_border_bottom:0.25rem solid var(--sapPageHeader_BorderColor);--_ui5_tc_headerItem_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_tc_headerItem_neutral_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_positive_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_negative_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_critical_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_neutral_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItem_neutral_selected_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_selected_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_selected_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_selected_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItemSemanticIcon_display:inline-block;--_ui5_tc_headerItemIcon_border:1px solid var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemIcon_color:var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemIcon_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_selected_color:var(--sapContent_IconColor);--_ui5_tc_headeritem_text_selected_color:var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemIcon_positive_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_negative_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_critical_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_neutral_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_semantic_selected_color:var(--sapContent_IconColor);--_ui5_tc_overflowItem_neutral_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_positive_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_negative_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_critical_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_default_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_current_color:var(--_ui5_tc_overflowItem_default_color);--ui5_table_header_row_outline_width:0.125rem;--ui5_table_row_outline_width:0.125rem;--_ui5_textarea_warning_border_width:2px;--_ui5_textarea_focus_after_width:2px;--_ui5_textarea_warning_border_style:dashed;--_ui5_textarea_error_warning_border_width:2 * var(--sapField_BorderWidth);--_ui5_textarea_information_border_width:0.0625rem;--_ui5_TimelineItem_arrow_size:1.625rem;--_ui5_TimelineItem_bubble_outline_width:0.125rem;--_ui5_TimelineItem_bubble_outline_top:-0.1875rem;--_ui5_TimelineItem_bubble_outline_right:-0.1875rem;--_ui5_TimelineItem_bubble_outline_bottom:-0.1875rem;--_ui5_TimelineItem_bubble_outline_left:-0.6875rem;--_ui5_TimelineItem_bubble_rtl_left_offset:-0.1875rem;--_ui5_TimelineItem_bubble_rtl_right_offset:-0.6875rem;--_ui5_time_picker_border:0.0625rem solid var(--sapField_Hover_BorderColor);--ui5_title_level_1Size:1.625rem;--ui5_title_level_2Size:1.375rem;--ui5_title_level_3Size:1.250rem;--ui5_title_level_4Size:1.125rem;--ui5_title_level_5Size:1rem;--ui5_title_level_6Size:0.875rem;--_ui5_toast_vertical_offset:3rem;--_ui5_toast_horizontal_offset:2rem;--_ui5_toast_background:var(--sapList_Background);--_ui5_toast_shadow:var(--sapContent_Shadow2);--_ui5_toggle_button_pressed_focussed:transparent;--_ui5_toggle_button_pressed_focussed_hovered:transparent;--_ui5_wheelslider_item_text_size:var(--sapFontSize);--_ui5_wheelslider_label_text_size:var(--sapFontSmallSize);--_ui5_wheelslider_mobile_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*4);--_ui5_wheelslider_label_text_color:var(--sapContent_LabelColor);--_ui5_wheelslider_height:15rem;--_ui5_wheelslider_mobile_height:27rem;--_ui5_wheelslider_arrows_visibility:hidden;--_ui5_wheelslider_item_background_color:var(--sapLegend_WorkingBackground);--_ui5_wheelslider_item_text_color:var(--sapTextColor);--_ui_wheelslider_item_hover_color:var(--sapList_Hover_Background);--_ui_wheelslider_item_hovered_color:var(--sapList_Hover_Background);--_ui5_wheelslider_item_border_color:var(--sapList_Background);--_ui5_wheelslider_item_hovered_border_color:var(--sapField_BorderColor);--_ui5_wheelslider_collapsed_item_text_color:var(--sapField_BorderColor);--_ui5_wheelslider_selected_item_background_color:var(--sapContent_Selected_Background);--_ui5_wheelslider_selected_item_hover_background_color:var(--sapButton_Emphasized_Hover_BorderColor);--_ui5_wheelslider_active_item_background_color:var(--sapContent_Selected_Background);--_ui5_wheelslider_active_item_text_color:var(--sapContent_Selected_TextColor);--_ui5_wheelslider_item_width:3rem;--_ui5_wheelslider_item_height:2.875rem;--_ui5_wheelslider_selection_frame_color:var(--sapList_SelectionBorderColor);--_ui_wheelslider_item_border_radius:var(--_ui5_button_border_radius);--_ui5_yearpicker_item_selected_focus:var(--sapContent_Selected_Background);--_ui5_yearpicker_item_border:1px solid #000;--_ui5_yearpicker_item_border_radius:0.25rem;--_ui5_yearpicker_item_margin:0;--_ui5_yearpicker_item_focus_after_width:calc(100% - 0.25rem);--_ui5_yearpicker_item_focus_after_height:calc(100% - 0.25rem);--_ui5_yearpicker_item_focus_after_border:2px dotted var(--sapContent_FocusColor);--_ui5_yearpicker_item_focus_after_offset:0;--_ui5_token_border_radius:0.125rem;--_ui5_token_focus_outline_width:0.125rem;--_ui5_value_state_message_border:2px solid var(--sapField_BorderColor);--_ui5-multi_combobox_token_margin_top:3px}.sapUiSizeCompact,.ui5-content-density-compact,:root,[data-ui5-compact-size]{--_ui5_datetime_timeview_width:17rem;--_ui5_token_wrapper_left_padding:0;--_ui5_daypicker_weeknumbers_container_padding_top:2rem;--_ui5_wheelslider_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*2)}.sapUiSizeCompact,.ui5-content-density-compact,[data-ui5-compact-size]{--_ui5_button_base_height:1.625rem;--_ui5_button_base_padding:0.4375rem;--_ui5_button_base_min_width:2rem;--_ui5_button_icon_font_size:1rem;--_ui5_calendar_header_height:2rem;--_ui5_calendar_header_padding:0;--_ui5_calendar_header_arrow_button_width:2rem;--_ui5_checkbox_root_side_padding:var(--_ui5_checkbox_wrapped_focus_padding);--_ui5_checkbox_wrapped_content_margin_top:var(--_ui5_checkbox_compact_wrapped_label_margin_top);--_ui5_checkbox_wrapped_focus_left_top_bottom_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_width_height:var(--_ui5_checkbox_compact_width_height);--_ui5_checkbox_wrapper_padding:var(--_ui5_checkbox_compact_wrapper_padding);--_ui5_checkbox_focus_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_inner_width_height:var(--_ui5_checkbox_compact_inner_size);--_ui5_checkbox_icon_size:.75rem;--_ui5_custom_list_item_height:2rem;--_ui5_custom_list_item_rb_min_width:2rem;--_ui5_day_picker_item_width:2rem;--_ui5_day_picker_item_height:2rem;--_ui5_day_picker_empty_height:2.125rem;--_ui5_datetime_picker_height:17rem;--_ui5_datetime_picker_width:34.0625rem;--_ui5_datetime_timeview_phonemode_width:18.5rem;--_ui5_datetime_timeview_padding:0.5rem;--_ui5_input_height:var(--_ui5_input_compact_height);--_ui5_input_inner_padding:0 0.5rem;--_ui5_input_icon_min_width:var(--_ui5_input_compact_min_width);--_ui5_input_icon_padding:.25rem .5rem;--_ui5_input_value_state_icon_padding:.1875rem .5rem;--_ui5_textarea_padding:.1875rem .5rem;--_ui5_list_no_data_height:2rem;--_ui5_list_item_cb_margin_right:.5rem;--_ui5_list_item_title_size:var(--sapFontSize);--_ui5_list_item_img_size:1.75rem;--_ui5_list_item_img_margin:0.55rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:2rem;--_ui5_list_busy_row_height:2rem;--_ui5_month_picker_item_height:2rem;--_ui5_panel_header_height:2rem;--_ui5_year_picker_item_height:2rem;--_ui5_tokenizer_root_padding:0.125rem;--_ui5_token_height:1.125rem;--_ui5_token_icon_size:.75rem;--_ui5_token_icon_padding:0.1rem 0.25rem;--_ui5_token_wrapper_right_padding:0.25rem;--_ui5_tl_bubble_padding:.5rem;--_ui5_tl_indicator_before_bottom:-.5rem;--_ui5_tl_padding:.5rem;--_ui5_tl_li_margin_bottom:.5rem;--_ui5_rb_height:2rem;--_ui5_rb_label_side_padding:.5rem;--_ui5_rb_focus_dist:.375rem;--_ui5_rb_inner_size:2rem;--_ui5_rb_svg_size:1rem;--_ui5_rb_label_width:calc(100% - 2rem + 1px);--_ui5_rb_rtl_focus_right:0.375rem;--_ui5_wheelslider_item_width:4rem;--_ui5_wheelslider_item_height:2rem;--_ui5_wheelslider_height:14rem;--_ui5_wheelslider_arrows_visibility:visible;--_ui5_switch_height:var(--_ui5_switch_compact_height);--_ui5_switch_width:var(--_ui5_switch_compact_width);--_ui5_switch_handle_height:var(--_ui5_switch_handle_compact_height);--_ui5_switch_handle_width:var(--_ui5_switch_handle_compact_width);--_ui5_switch_text_on_left:calc(-100% + 1.5625rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.5rem);--_ui5_switch_no_label_width:var(--_ui5_switch_compact_no_label_width);--_ui5_switch_track_no_label_height:var(--_ui5_switch_track_compact_no_label_height);--_ui5_switch_rtl_transform:translateX(-100%) translateX(1.5rem);--_ui5_switch_text_right:calc(-100% + 1.5625rem);--_ui5_tc_item_text:2rem;--_ui5_tc_item_text_line_height:1.325rem;--_ui5_tc_item_icon_size:1rem;--_ui5_tc_item_add_text_margin_top:0.3125rem;--_ui5_tc_header_height:var(--_ui5_tc_header_height_compact);--_ui5_radiobutton_min_width:var(--_ui5_radiobutton_min_width_compact);--_ui5-responnsive_popover_header_height:2.5rem;--ui5_side_navigation_item_height:2rem;--_ui5-tree-indent-step:0.5rem;--_ui5-tree-toggle-box-width:2rem;--_ui5-tree-toggle-box-height:1.5rem;--_ui5-tree-toggle-icon-size:0.8125rem}"}
|
package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.d164773ecb392b28.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_":":root{--_ui5_calendar_header_height:3rem;--_ui5_calendar_header_arrow_button_width:2.5rem;--_ui5_calendar_header_padding:0.25rem 0;--_ui5_checkbox_root_side_padding:.6875rem;--_ui5_checkbox_icon_size:1rem;--_ui5_custom_list_item_height:3rem;--_ui5_custom_list_item_rb_min_width:3rem;--_ui5_day_picker_item_width:2.25rem;--_ui5_day_picker_item_height:2.875rem;--_ui5_day_picker_empty_height:3rem;--_ui5_datetime_picker_width:40.0625rem;--_ui5_datetime_picker_height:25rem;--_ui5_datetime_timeview_phonemode_width:19.5rem;--_ui5_datetime_timeview_padding:1rem;--_ui5_input_inner_padding:0 0.75rem;--_ui5_input_value_state_icon_padding:var(--_ui5-input-icon-padding);--_ui5_list_no_data_height:3rem;--_ui5_list_item_cb_margin_right:0;--_ui5_list_item_title_size:var(--sapMFontLargeSize);--_ui5_list_item_img_size:2rem;--_ui5_list_item_img_margin:0.5rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:3rem;--_ui5_list_busy_row_height:3rem;--_ui5_month_picker_item_height:3rem;--_ui5_year_picker_item_height:3rem;--_ui5_tokenizer_root_padding:0.1875rem;--_ui5_token_height:1.625rem;--_ui5_token_icon_size:1rem;--_ui5_token_icon_padding:0.25rem 0.5rem;--_ui5_token_wrapper_right_padding:0.3125rem;--_ui5_tl_bubble_padding:1rem;--_ui5_tl_indicator_before_bottom:-1.625rem;--_ui5_tl_padding:1rem 1rem 1rem .5rem;--_ui5_tl_li_margin_bottom:1.625rem;--_ui5_rb_height:2.75rem;--_ui5_rb_label_side_padding:.875rem;--_ui5_rb_focus_dist:.5rem;--_ui5_rb_inner_size:2.75rem;--_ui5_rb_svg_size:1.375rem;--_ui5_rb_label_width:calc(100% - 2.75rem);--_ui5_rb_rtl_focus_right:0.5rem;--_ui5_switch_text_on_left:calc(-100% + 1.9125rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.875rem);--_ui5_switch_rtl_transform:translateX(1.875rem) translateX(-100%);--_ui5_switch_text_right:calc(-100% + 1.9125rem);--_ui5_tc_item_text:3rem;--_ui5_tc_item_text_text_only:3rem;--_ui5_tc_item_text_line_height:normal;--_ui5_tc_item_icon_size:1.5rem;--_ui5_tc_item_add_text_margin_top:0.625rem;--_ui5_textarea_padding:0.5625rem 0.6875rem;--_ui5-responnsive_popover_header_height:2.75rem;--ui5_side_navigation_item_height:2.75rem;--_ui5-tree-indent-step:1.5rem;--_ui5-tree-toggle-box-width:2.75rem;--_ui5-tree-toggle-box-height:2.25rem;--_ui5-tree-toggle-icon-size:1.0625rem;--_ui5_segmented_btn_border_radius:0.375rem;--ui5-avatar-initials-color:var(--sapTextColor);--ui5-avatar-initials-border:.0625rem solid var(--sapField_BorderColor);--ui5-avatar-accent1:var(--sapBackgroundColor);--ui5-avatar-accent2:var(--sapBackgroundColor);--ui5-avatar-accent3:var(--sapBackgroundColor);--ui5-avatar-accent4:var(--sapBackgroundColor);--ui5-avatar-accent5:var(--sapBackgroundColor);--ui5-avatar-accent6:var(--sapBackgroundColor);--ui5-avatar-accent7:var(--sapBackgroundColor);--ui5-avatar-accent8:var(--sapBackgroundColor);--ui5-avatar-accent9:var(--sapBackgroundColor);--ui5-avatar-accent10:var(--sapBackgroundColor);--ui5-avatar-placeholder:var(--sapBackgroundColor);--ui5-badge-font-size:0.75em;--_ui5_button_base_min_width:2.5rem;--_ui5_button_base_min_compact_width:2rem;--_ui5_button_base_height:2.5rem;--_ui5_button_compact_height:1.625rem;--_ui5_button_base_padding:0.6875rem;--_ui5_button_compact_padding:0.4375rem;--_ui5_button_base_icon_only_padding:0.5625rem;--_ui5_button_base_icon_margin:0.563rem;--_ui5_button_icon_font_size:1.375rem;--_ui5_button_emphasized_font_weight:normal;--_ui5_button_text_shadow:var(--sapContent_TextShadow);--_ui5_button_focus_offset:1px;--_ui5_button_transparent_hover_border_color:var(--sapButton_BorderColor);--_ui5_button_positive_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_positive_border_hover_color:var(--sapButton_Accept_Hover_BorderColor);--_ui5_button_positive_border_focus_hover_color:var(--sapContent_FocusColor);--_ui5_button_positive_focus_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_negative_focus_border_color:var(--sapButton_Reject_BorderColor);--_ui5_button_emphasized_focused_border_color:var(--sapButton_Emphasized_BorderColor);--_ui5_button_border_radius:0.375rem;--_ui5_button_outline_offset:-0.25rem;--_ui5_button_outline:0.125rem dotted var(--sapContent_FocusColor);--_ui5_button_positive_border_active_color:var(--sapButton_Emphasized_Active_Background);--_ui5_button_active_border_color:var(--sapButton_Accept_Active_BorderColor);--_ui5_button_negative_active_border_color:var(--sapButton_Reject_Active_Background);--_ui5_button_transparent_border_color:var(--sapButton_BorderColor);--_ui5_button_focus_width:1px;--_ui5_button_focus_color:var(--sapContent_FocusColor);--_ui5_button_focussed_border_color:transparent;--_ui5_calendar_header_middle_button_focus_after_width:calc(100% - 0.25rem);--_ui5_calendar_header_middle_button_focus_after_height:calc(100% - 0.25rem);--_ui5_calendar_header_middle_button_focus_after_top_offset:1px;--_ui5_calendar_header_middle_button_focus_after_left_offset:1px;--_ui5_calendar_header_arrow_button_border:1px solid var(--sapButton_BorderColor);--_ui5_calendar_header_arrow_button_border_radius:0.375rem;--_ui5_calendar_header_middle_button_width:5.75rem;--_ui5_calendar_header_middle_button_flex:auto;--_ui5_calendar_header_middle_button_focus_border_radius:0;--_ui5_calendar_header_middle_button_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_calendar_header_middle_button_focus_after_display:none;--ui5_carousel_button_size:2.5rem;--ui5_carousel_height:0.5rem;--ui5_carousel_width:0.5rem;--ui5_carousel_margin:0 0.25rem;--ui5_carousel_border:1px solid #fff;--ui5_carousel_dot_border:1px solid var(--sapContent_ForegroundBorderColor);--ui5_carousel_dot_background:none;--_ui5_card_content_padding:1rem;--_ui5_card_header_hover_bg:var(--sapList_Hover_Background);--_ui5_card_header_active_bg:var(--_ui5_card_header_hover_bg);--_ui5_card_header_border_color:var(--_ui5_card_border_color);--_ui5_card_border_color:var(--sapTile_BorderColor);--_ui5_card_header_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_checkbox_wrapper_padding:.8125rem;--_ui5_checkbox_width_height:3rem;--_ui5_checkbox_inner_width_height:1.375rem;--_ui5_checkbox_inner_border:solid .125rem var(--sapField_BorderColor);--_ui5_checkbox_inner_readonly_border:0.125rem solid var(--sapField_ReadOnly_BorderColor);--_ui5_checkbox_wrapped_focus_padding:.375rem;--_ui5_checkbox_wrapped_content_margin_top:.125rem;--_ui5_checkbox_wrapped_focus_left_top_bottom_position:.5625rem;--_ui5_checkbox_focus_position:.6875rem;--_ui5_checkbox_compact_wrapper_padding:.5rem;--_ui5_checkbox_compact_width_height:2rem;--_ui5_checkbox_compact_inner_size:1rem;--_ui5_checkbox_compact_focus_position:.375rem;--_ui5_checkbox_compact_wrapped_label_margin_top:-1px;--_ui5_checkbox_inner_border_radius:0;--_ui5_checkbox_checkmark_color:var(--sapContent_IconColor);--_ui5_checkbox_inner_error_border:0.125rem dashed var(--sapField_InvalidColor);--_ui5_checkbox_inner_warning_border:0.125rem dashed var(--sapField_WarningColor);--_ui5_checkbox_inner_information_border:var(--sapField_BorderWidth) dashed var(--sapField_InformationColor);--_ui5_checkbox_checkmark_warning_color:var(--sapField_WarningColor);--_ui5_checkbox_hover_background:var(--sapSelectedColor);--_ui5_checkbox_focus_outline:0.125rem dotted var(--sapContent_FocusColor);--_ui5_datepicker_icon_border:1px solid transparent;--_ui5_daypicker_daynames_container_height:2rem;--_ui5_daypicker_item_selected_hover_background_color:var(--sapContent_Selected_Background);--_ui5_daypicker_item_othermonth_background_color:var(--sapList_Background);--_ui5_daypicker_item_othermonth_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_othermonth_hover_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_now_inner_border_radius:0;--_ui5_daypicker_item_margin:0;--_ui5_daypicker_item_border:1px solid #000;--_ui5_daypicker_item_border_radius:0.25rem;--_ui5_daypicker_item_outline_width:0.125rem;--_ui5_daypicker_item_outline_offset:0;--_ui5_daypicker_dayname_color:var(--sapTextColor);--_ui5_daypicker_weekname_color:var(--sapTextColor);--_ui5_daypicker_item_now_selected_focus_after_width:calc(100% - 0.25rem);--_ui5_daypicker_item_now_selected_focus_after_height:calc(100% - 0.25rem);--ui5-group-header-listitem-background-color:var(--sapList_GroupHeaderBackground);--_ui5_input_width:13.125rem;--_ui5_input_height:2.5rem;--_ui5_input_compact_height:1.625rem;--_ui5_input_wrapper_border_radius:0;--_ui5_input_disabled_opacity:0.5;--_ui5_input_icon_min_width:2.375rem;--_ui5_input_compact_min_width:2rem;--_ui5_input_focus_border_width:0.125rem;--_ui5_input_state_border_width:0.125rem;--_ui5-input-information_border_width:var(--sapField_BorderWidth);--_ui5_input_error_warning_border_style:dashed;--_ui5_input_error_warning_font_style:italic;--_ui5_input_error_font_weight:bold;--_ui5_input_disabled_color:var(--sapContent_DisabledTextColor);--_ui5_input_disabled_font_weight:normal;--_ui5_input_disabled_border_color:var(--sapField_ReadOnly_BorderColor);--_ui5_input_disabled_background:var(--sapField_ReadOnly_Background);--_ui5_input_icon_padding:0.6875rem .6875rem;--_ui5_link_opacity:0.4;--_ui5_link_text_decoration:underline;--_ui5_link_hover_text_decoration:none;--ui5_list_footer_text_color:var(--sapPageFooter_TextColor);--ui5-listitem-background-color:var(--sapList_Background);--ui5-listitem-border-bottom:1px solid var(--sapList_BorderColor);--ui5-listitem-selected-border-bottom:1px solid var(--sapList_SelectionBorderColor);--_ui5_product_switch_item_border:none;--_ui5_listitembase_focus_width:0.125rem;--_ui5_monthpicker_item_border:1px solid #000;--_ui5_monthpicker_item_border_radius:0.25rem;--_ui5_monthpicker_item_margin:0;--_ui5_monthpicker_item_focus_after_width:calc(100% - 0.25rem);--_ui5_monthpicker_item_focus_after_height:calc(100% - 0.25rem);--_ui5_monthpicker_item_focus_after_border:2px dotted var(--sapContent_FocusColor);--_ui5_monthpicker_item_focus_after_offset:0;--_ui5_messagestrip_icon_width:2.5rem;--_ui5_messagestrip_border_radius:0.1875rem;--_ui5_messagestrip_button_border_width:0;--_ui5_messagestrip_button_border_style:none;--_ui5_messagestrip_button_border_color:transparent;--_ui5_messagestrip_button_border_radius:0;--_ui5_messagestrip_padding:0.125rem .125rem;--_ui5_messagestrip_button_height:1.625rem;--_ui5_messagestrip_close_button_size:1.5rem;--_ui5_messagestrip_close_button_border:1px solid var(--sapButton_BorderColor);--_ui5_messagestrip_border_width:0.125rem;--_ui5_messagestrip_icon_top:0.375rem;--_ui5_messagestrip_focus_width:0.125rem;--_ui5_messagestrip_focus_offset:-4px;--_ui5_panel_header_height:3rem;--_ui5_panel_button_root_width:3rem;--_ui5_panel_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_popup_content_padding:.4375em;--_ui5_progress_indicator_color:var(--sapTextColor);--_ui5_progress_indicator_bar_color:var(--sapContent_ContrastTextColor);--_ui5_progress_indicator_border:0.0625rem solid var(--sapField_BorderColor);--_ui5_progress_indicator_value_state_none:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_error:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_warning:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_success:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_information:var(--sapHighlightColor);--_ui5_progress_indicator_bar_border_max:var(--_ui5_progress_indicator_border);--_ui5_progress_indicator_icon_visibility:inline-block;--_ui5_radiobutton_min_width:2.75rem;--_ui5_radiobutton_min_width_compact:2rem;--_ui5_radiobutton_selected_fill:var(--sapContent_IconColor);--_ui5_radiobutton_selected_warning_fill:var(--sapContent_IconColor);--_ui5_radiobutton_selected_error_fill:var(--sapContent_IconColor);--_ui5_radiobutton_hover_fill:var(--sapSelectedColor);--_ui5_radiobutton_border_width:0.125rem;--_ui5_radiobutton_warning_error_border_dash:5;--_ui5_select_disabled_background:var(--sapHC_ReducedBackground);--_ui5_select_disabled_border_color:var(--sapHC_ReducedForeground);--_ui5_select_state_error_warning_border_style:dashed;--_ui5_select_state_error_warning_border_width:1px;--_ui5_select_hover_icon_left_border:0.0625rem solid var(--sapField_Hover_BorderColor);--_ui5_select_rtl_hover_icon_left_border:none;--_ui5_select_rtl_hover_icon_right_border:0.0625rem solid var(--sapField_Hover_BorderColor);--_ui5_select_focus_width:0.125rem;--_ui5_switch_height:2.75rem;--_ui5_switch_width:3.875rem;--_ui5_switch_no_label_width:3.25rem;--_ui5_switch_compact_height:2rem;--_ui5_switch_compact_width:3.5rem;--_ui5_switch_compact_no_label_width:2.5rem;--_ui5_switch_track_height:1.375rem;--_ui5_switch_track_no_label_height:1.25rem;--_ui5_switch_track_compact_no_label_height:1rem;--_ui5_switch_track_border_radius:0.75rem;--_ui5_switch_handle_width:2rem;--_ui5_switch_handle_height:2rem;--_ui5_switch_handle_border_radius:1rem;--_ui5_switch_handle_checked_bg:var(--sapButton_Selected_Background);--_ui5_switch_handle_checked_border_color:var(--sapButton_Selected_BorderColor);--_ui5_switch_handle_compact_width:1.625rem;--_ui5_switch_handle_compact_height:1.625rem;--_ui5_switch_outline:0.125rem;--_ui5_switch_track_hover_border_color:var(--sapTextColor);--_ui5_switch_track_border_color:var(--sapButton_Background);--_ui5_switch_track_hover_background_color:var(--sapButton_Background);--_ui5_switch_track_hover_checked_background_color:var(--sapButton_Background);--_ui5_switch_track_disabled_checked_bg:var(--sapHC_ReducedBackground);--_ui5_switch_track_disabled_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_track_disabled_semantic_checked_bg:var(--sapHC_ReducedBackground);--_ui5_switch_track_disabled_semantic_checked_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_track_disabled_semantic_bg:var(--sapButton_Background);--_ui5_switch_track_disabled_semantic_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_handle_bg:var(--sapButton_Background);--_ui5_switch_handle_semantic_hover_bg:var(--sapButton_Hover_Background);--_ui5_switch_handle_semantic_checked_hover_bg:var(--sapButton_Hover_Background);--_ui5_switch_handle_semantic_hover_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_handle_semantic_checked_hover_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_handle_border_width:0.125rem;--_ui5_switch_handle_disabled_bg:var(--sapButton_Background);--_ui5_switch_handle_disabled_checked_bg:var(--_ui5_switch_handle_disabled_bg);--_ui5_switch_handle_disabled_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_handle_disabled_semantic_checked_bg:var(--_ui5_switch_handle_disabled_bg);--_ui5_switch_handle_disabled_semantic_checked_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_handle_disabled_semantic_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_text_on_semantic_color:var(--sapTextColor);--_ui5_switch_text_off_semantic_color:var(--sapTextColor);--_ui5_switch_text_disabled_color:var(--sapHC_ReducedAltForeground);--_ui5_tc_header_height:4.6875rem;--_ui5_tc_header_height_compact:3.6875rem;--_ui5_tc_header_height_text_only:3rem;--_ui5_tc_header_height_text_only_compact:2rem;--_ui5_tc_header_box_shadow:inset 0 -0.25rem 0 -0.125rem var(--sapObjectHeader_BorderColor);--_ui5_tc_headerItem_color:var(--sapGroup_TitleTextColor);--_ui5_tc_content_border_bottom:0.125rem solid var(--sapObjectHeader_BorderColor);--_ui5_tc_header_border_bottom:0.125rem solid var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemContent_border_bottom:0.25rem solid var(--sapPageHeader_BorderColor);--_ui5_tc_headerItem_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_tc_headerItem_neutral_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_positive_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_negative_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_critical_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_neutral_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItem_neutral_selected_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_selected_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_selected_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_selected_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItemSemanticIcon_display:inline-block;--_ui5_tc_headerItemIcon_border:1px solid var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemIcon_color:var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemIcon_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_selected_color:var(--sapContent_IconColor);--_ui5_tc_headeritem_text_selected_color:var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemIcon_positive_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_negative_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_critical_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_neutral_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_semantic_selected_color:var(--sapContent_IconColor);--_ui5_tc_overflowItem_neutral_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_positive_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_negative_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_critical_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_default_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_current_color:var(--_ui5_tc_overflowItem_default_color);--ui5_table_header_row_outline_width:0.125rem;--ui5_table_row_outline_width:0.125rem;--_ui5_textarea_warning_border_width:2px;--_ui5_textarea_focus_after_width:2px;--_ui5_textarea_warning_border_style:dashed;--_ui5_textarea_error_warning_border_width:2 * var(--sapField_BorderWidth);--_ui5_textarea_information_border_width:0.0625rem;--_ui5_TimelineItem_arrow_size:1.625rem;--_ui5_TimelineItem_bubble_outline_width:0.125rem;--_ui5_TimelineItem_bubble_outline_top:-0.1875rem;--_ui5_TimelineItem_bubble_outline_right:-0.1875rem;--_ui5_TimelineItem_bubble_outline_bottom:-0.1875rem;--_ui5_TimelineItem_bubble_outline_left:-0.6875rem;--_ui5_TimelineItem_bubble_rtl_left_offset:-0.1875rem;--_ui5_TimelineItem_bubble_rtl_right_offset:-0.6875rem;--_ui5_time_picker_border:0.0625rem solid var(--sapField_Hover_BorderColor);--ui5_title_level_1Size:1.625rem;--ui5_title_level_2Size:1.375rem;--ui5_title_level_3Size:1.250rem;--ui5_title_level_4Size:1.125rem;--ui5_title_level_5Size:1rem;--ui5_title_level_6Size:0.875rem;--_ui5_toast_vertical_offset:3rem;--_ui5_toast_horizontal_offset:2rem;--_ui5_toast_background:var(--sapList_Background);--_ui5_toast_shadow:var(--sapContent_Shadow2);--_ui5_toggle_button_pressed_focussed:transparent;--_ui5_toggle_button_pressed_focussed_hovered:transparent;--_ui5_wheelslider_item_text_size:var(--sapFontSize);--_ui5_wheelslider_label_text_size:var(--sapFontSmallSize);--_ui5_wheelslider_mobile_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*4);--_ui5_wheelslider_label_text_color:var(--sapContent_LabelColor);--_ui5_wheelslider_height:15rem;--_ui5_wheelslider_mobile_height:27rem;--_ui5_wheelslider_arrows_visibility:hidden;--_ui5_wheelslider_item_background_color:var(--sapLegend_WorkingBackground);--_ui5_wheelslider_item_text_color:var(--sapTextColor);--_ui_wheelslider_item_hover_color:var(--sapList_Hover_Background);--_ui_wheelslider_item_hovered_color:var(--sapList_Hover_Background);--_ui5_wheelslider_item_border_color:var(--sapList_Background);--_ui5_wheelslider_item_hovered_border_color:var(--sapField_BorderColor);--_ui5_wheelslider_collapsed_item_text_color:var(--sapField_BorderColor);--_ui5_wheelslider_selected_item_background_color:var(--sapContent_Selected_Background);--_ui5_wheelslider_selected_item_hover_background_color:var(--sapButton_Emphasized_Hover_BorderColor);--_ui5_wheelslider_active_item_background_color:var(--sapContent_Selected_Background);--_ui5_wheelslider_active_item_text_color:var(--sapContent_Selected_TextColor);--_ui5_wheelslider_item_width:3rem;--_ui5_wheelslider_item_height:2.875rem;--_ui5_wheelslider_selection_frame_color:var(--sapList_SelectionBorderColor);--_ui_wheelslider_item_border_radius:var(--_ui5_button_border_radius);--_ui5_yearpicker_item_selected_focus:var(--sapContent_Selected_Background);--_ui5_yearpicker_item_border:1px solid #000;--_ui5_yearpicker_item_border_radius:0.25rem;--_ui5_yearpicker_item_margin:0;--_ui5_yearpicker_item_focus_after_width:calc(100% - 0.25rem);--_ui5_yearpicker_item_focus_after_height:calc(100% - 0.25rem);--_ui5_yearpicker_item_focus_after_border:2px dotted var(--sapContent_FocusColor);--_ui5_yearpicker_item_focus_after_offset:0;--_ui5_token_border_radius:0.125rem;--_ui5_token_focus_outline_width:0.125rem;--_ui5_value_state_message_border:2px solid var(--sapField_BorderColor);--_ui5-multi_combobox_token_margin_top:3px}.sapUiSizeCompact,.ui5-content-density-compact,:root,[data-ui5-compact-size]{--_ui5_datetime_timeview_width:17rem;--_ui5_token_wrapper_left_padding:0;--_ui5_daypicker_weeknumbers_container_padding_top:2rem;--_ui5_wheelslider_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*2)}.sapUiSizeCompact,.ui5-content-density-compact,[data-ui5-compact-size]{--_ui5_button_base_height:1.625rem;--_ui5_button_base_padding:0.4375rem;--_ui5_button_base_min_width:2rem;--_ui5_button_icon_font_size:1rem;--_ui5_calendar_header_height:2rem;--_ui5_calendar_header_padding:0;--_ui5_calendar_header_arrow_button_width:2rem;--_ui5_checkbox_root_side_padding:var(--_ui5_checkbox_wrapped_focus_padding);--_ui5_checkbox_wrapped_content_margin_top:var(--_ui5_checkbox_compact_wrapped_label_margin_top);--_ui5_checkbox_wrapped_focus_left_top_bottom_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_width_height:var(--_ui5_checkbox_compact_width_height);--_ui5_checkbox_wrapper_padding:var(--_ui5_checkbox_compact_wrapper_padding);--_ui5_checkbox_focus_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_inner_width_height:var(--_ui5_checkbox_compact_inner_size);--_ui5_checkbox_icon_size:.75rem;--_ui5_custom_list_item_height:2rem;--_ui5_custom_list_item_rb_min_width:2rem;--_ui5_day_picker_item_width:2rem;--_ui5_day_picker_item_height:2rem;--_ui5_day_picker_empty_height:2.125rem;--_ui5_datetime_picker_height:17rem;--_ui5_datetime_picker_width:34.0625rem;--_ui5_datetime_timeview_phonemode_width:18.5rem;--_ui5_datetime_timeview_padding:0.5rem;--_ui5_input_height:var(--_ui5_input_compact_height);--_ui5_input_inner_padding:0 0.5rem;--_ui5_input_icon_min_width:var(--_ui5_input_compact_min_width);--_ui5_input_icon_padding:.25rem .5rem;--_ui5_input_value_state_icon_padding:.1875rem .5rem;--_ui5_textarea_padding:.1875rem .5rem;--_ui5_list_no_data_height:2rem;--_ui5_list_item_cb_margin_right:.5rem;--_ui5_list_item_title_size:var(--sapFontSize);--_ui5_list_item_img_size:1.75rem;--_ui5_list_item_img_margin:0.55rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:2rem;--_ui5_list_busy_row_height:2rem;--_ui5_month_picker_item_height:2rem;--_ui5_panel_header_height:2rem;--_ui5_year_picker_item_height:2rem;--_ui5_tokenizer_root_padding:0.125rem;--_ui5_token_height:1.125rem;--_ui5_token_icon_size:.75rem;--_ui5_token_icon_padding:0.1rem 0.25rem;--_ui5_token_wrapper_right_padding:0.25rem;--_ui5_tl_bubble_padding:.5rem;--_ui5_tl_indicator_before_bottom:-.5rem;--_ui5_tl_padding:.5rem;--_ui5_tl_li_margin_bottom:.5rem;--_ui5_rb_height:2rem;--_ui5_rb_label_side_padding:.5rem;--_ui5_rb_focus_dist:.375rem;--_ui5_rb_inner_size:2rem;--_ui5_rb_svg_size:1rem;--_ui5_rb_label_width:calc(100% - 2rem + 1px);--_ui5_rb_rtl_focus_right:0.375rem;--_ui5_wheelslider_item_width:4rem;--_ui5_wheelslider_item_height:2rem;--_ui5_wheelslider_height:14rem;--_ui5_wheelslider_arrows_visibility:visible;--_ui5_switch_height:var(--_ui5_switch_compact_height);--_ui5_switch_width:var(--_ui5_switch_compact_width);--_ui5_switch_handle_height:var(--_ui5_switch_handle_compact_height);--_ui5_switch_handle_width:var(--_ui5_switch_handle_compact_width);--_ui5_switch_text_on_left:calc(-100% + 1.5625rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.5rem);--_ui5_switch_no_label_width:var(--_ui5_switch_compact_no_label_width);--_ui5_switch_track_no_label_height:var(--_ui5_switch_track_compact_no_label_height);--_ui5_switch_rtl_transform:translateX(-100%) translateX(1.5rem);--_ui5_switch_text_right:calc(-100% + 1.5625rem);--_ui5_tc_item_text:2rem;--_ui5_tc_item_text_line_height:1.325rem;--_ui5_tc_item_icon_size:1rem;--_ui5_tc_item_add_text_margin_top:0.3125rem;--_ui5_tc_header_height:var(--_ui5_tc_header_height_compact);--_ui5_radiobutton_min_width:var(--_ui5_radiobutton_min_width_compact);--_ui5-responnsive_popover_header_height:2.5rem;--ui5_side_navigation_item_height:2rem;--_ui5-tree-indent-step:0.5rem;--_ui5-tree-toggle-box-width:2rem;--_ui5-tree-toggle-box-height:1.5rem;--_ui5-tree-toggle-icon-size:0.8125rem}"}
|
package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.def3978aa5de7b11.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_":":root{--_ui5_calendar_header_height:3rem;--_ui5_calendar_header_arrow_button_width:2.5rem;--_ui5_calendar_header_padding:0.25rem 0;--_ui5_checkbox_root_side_padding:.6875rem;--_ui5_checkbox_icon_size:1rem;--_ui5_custom_list_item_height:3rem;--_ui5_custom_list_item_rb_min_width:3rem;--_ui5_day_picker_item_width:2.25rem;--_ui5_day_picker_item_height:2.875rem;--_ui5_day_picker_empty_height:3rem;--_ui5_datetime_picker_width:40.0625rem;--_ui5_datetime_picker_height:25rem;--_ui5_datetime_timeview_phonemode_width:19.5rem;--_ui5_datetime_timeview_padding:1rem;--_ui5_input_inner_padding:0 0.75rem;--_ui5_input_value_state_icon_padding:var(--_ui5-input-icon-padding);--_ui5_list_no_data_height:3rem;--_ui5_list_item_cb_margin_right:0;--_ui5_list_item_title_size:var(--sapMFontLargeSize);--_ui5_list_item_img_size:2rem;--_ui5_list_item_img_margin:0.5rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:3rem;--_ui5_list_busy_row_height:3rem;--_ui5_month_picker_item_height:3rem;--_ui5_year_picker_item_height:3rem;--_ui5_tokenizer_root_padding:0.1875rem;--_ui5_token_height:1.625rem;--_ui5_token_icon_size:1rem;--_ui5_token_icon_padding:0.25rem 0.5rem;--_ui5_token_wrapper_right_padding:0.3125rem;--_ui5_tl_bubble_padding:1rem;--_ui5_tl_indicator_before_bottom:-1.625rem;--_ui5_tl_padding:1rem 1rem 1rem .5rem;--_ui5_tl_li_margin_bottom:1.625rem;--_ui5_rb_height:2.75rem;--_ui5_rb_label_side_padding:.875rem;--_ui5_rb_focus_dist:.5rem;--_ui5_rb_inner_size:2.75rem;--_ui5_rb_svg_size:1.375rem;--_ui5_rb_label_width:calc(100% - 2.75rem);--_ui5_rb_rtl_focus_right:0.5rem;--_ui5_switch_text_on_left:calc(-100% + 1.9125rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.875rem);--_ui5_switch_rtl_transform:translateX(1.875rem) translateX(-100%);--_ui5_switch_text_right:calc(-100% + 1.9125rem);--_ui5_tc_item_text:3rem;--_ui5_tc_item_text_text_only:3rem;--_ui5_tc_item_text_line_height:normal;--_ui5_tc_item_icon_size:1.5rem;--_ui5_tc_item_add_text_margin_top:0.625rem;--_ui5_textarea_padding:0.5625rem 0.6875rem;--_ui5-responnsive_popover_header_height:2.75rem;--ui5_side_navigation_item_height:2.75rem;--_ui5-tree-indent-step:1.5rem;--_ui5-tree-toggle-box-width:2.75rem;--_ui5-tree-toggle-box-height:2.25rem;--_ui5-tree-toggle-icon-size:1.0625rem;--_ui5_segmented_btn_border_radius:0.375rem;--ui5-avatar-initials-color:#000;--ui5-avatar-initials-border:.0625rem solid #000;--ui5-avatar-accent1:#fff;--ui5-avatar-accent2:#fff;--ui5-avatar-accent3:#fff;--ui5-avatar-accent4:#fff;--ui5-avatar-accent5:#fff;--ui5-avatar-accent6:#fff;--ui5-avatar-accent7:#fff;--ui5-avatar-accent8:#fff;--ui5-avatar-accent9:#fff;--ui5-avatar-accent10:#fff;--ui5-avatar-placeholder:#fff;--ui5-badge-font-size:0.75em;--_ui5_button_base_min_width:2.5rem;--_ui5_button_base_min_compact_width:2rem;--_ui5_button_base_height:2.5rem;--_ui5_button_compact_height:1.625rem;--_ui5_button_base_padding:0.6875rem;--_ui5_button_compact_padding:0.4375rem;--_ui5_button_base_icon_only_padding:0.5625rem;--_ui5_button_base_icon_margin:0.563rem;--_ui5_button_icon_font_size:1.375rem;--_ui5_button_emphasized_font_weight:normal;--_ui5_button_text_shadow:var(--sapContent_TextShadow);--_ui5_button_focus_offset:1px;--_ui5_button_transparent_hover_border_color:var(--sapButton_BorderColor);--_ui5_button_positive_border_color:var(--sapButton_Accept_BorderColor);--_ui5_button_positive_border_hover_color:var(--sapButton_Accept_Hover_BorderColor);--_ui5_button_positive_border_focus_hover_color:var(--sapContent_FocusColor);--_ui5_button_emphasized_focused_border_color:var(--sapButton_Emphasized_BorderColor);--_ui5_button_border_radius:0.375rem;--_ui5_button_outline_offset:-0.125rem;--_ui5_button_outline:0.125rem dotted var(--sapContent_FocusColor);--_ui5_button_positive_border_active_color:transparent;--_ui5_button_active_border_color:transparent;--_ui5_button_positive_focus_border_color:transparent;--_ui5_button_negative_focus_border_color:transparent;--_ui5_button_negative_active_border_color:transparent;--_ui5_button_transparent_border_color:var(--sapButton_BorderColor);--_ui5_button_focus_width:1px;--_ui5_button_focus_color:var(--sapContent_FocusColor);--_ui5_button_focussed_border_color:transparent;--_ui5_calendar_header_middle_button_focus_after_width:calc(100% - 0.25rem);--_ui5_calendar_header_middle_button_focus_after_height:calc(100% - 0.25rem);--_ui5_calendar_header_middle_button_focus_after_top_offset:1px;--_ui5_calendar_header_middle_button_focus_after_left_offset:1px;--_ui5_calendar_header_arrow_button_border:1px solid var(--sapButton_BorderColor);--_ui5_calendar_header_arrow_button_border_radius:0.375rem;--_ui5_calendar_header_middle_button_width:5.75rem;--_ui5_calendar_header_middle_button_flex:auto;--_ui5_calendar_header_middle_button_focus_border_radius:0;--_ui5_calendar_header_middle_button_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_calendar_header_middle_button_focus_after_display:none;--ui5_carousel_button_size:2.5rem;--ui5_carousel_height:0.25rem;--ui5_carousel_width:0.25rem;--ui5_carousel_margin:0 0.375rem;--ui5_carousel_border:1px solid var(--sapContent_ForegroundBorderColor);--ui5_carousel_dot_border:1px solid var(--sapContent_ForegroundBorderColor);--ui5_carousel_dot_background:var(--sapContent_NonInteractiveIconColor);--_ui5_card_content_padding:1rem;--_ui5_card_header_hover_bg:var(--sapList_Hover_Background);--_ui5_card_header_active_bg:var(--_ui5_card_header_hover_bg);--_ui5_card_header_border_color:var(--_ui5_card_border_color);--_ui5_card_border_color:var(--sapTile_BorderColor);--_ui5_card_header_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_checkbox_wrapper_padding:.8125rem;--_ui5_checkbox_width_height:3rem;--_ui5_checkbox_inner_width_height:1.375rem;--_ui5_checkbox_inner_border:solid .125rem var(--sapField_BorderColor);--_ui5_checkbox_inner_information_border:0.125rem solid var(--sapField_InformationColor);--_ui5_checkbox_inner_readonly_border:0.125rem solid var(--sapField_ReadOnly_BorderColor);--_ui5_checkbox_wrapped_focus_padding:.375rem;--_ui5_checkbox_wrapped_content_margin_top:.125rem;--_ui5_checkbox_wrapped_focus_left_top_bottom_position:.5625rem;--_ui5_checkbox_focus_position:.6875rem;--_ui5_checkbox_compact_wrapper_padding:.5rem;--_ui5_checkbox_compact_width_height:2rem;--_ui5_checkbox_compact_inner_size:1rem;--_ui5_checkbox_compact_focus_position:.375rem;--_ui5_checkbox_compact_wrapped_label_margin_top:-1px;--_ui5_checkbox_inner_border_radius:0;--_ui5_checkbox_checkmark_color:var(--sapContent_IconColor);--_ui5_checkbox_inner_error_border:0.125rem dashed var(--sapField_InvalidColor);--_ui5_checkbox_inner_warning_border:0.125rem dashed var(--sapField_WarningColor);--_ui5_checkbox_checkmark_warning_color:var(--sapField_WarningColor);--_ui5_checkbox_hover_background:var(--sapSelectedColor);--_ui5_checkbox_focus_outline:0.125rem dotted var(--sapContent_FocusColor);--_ui5_datepicker_icon_border:1px solid transparent;--_ui5_daypicker_daynames_container_height:2rem;--_ui5_daypicker_item_selected_hover_background_color:var(--sapContent_Selected_Background);--_ui5_daypicker_item_othermonth_background_color:var(--sapList_Background);--_ui5_daypicker_item_othermonth_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_othermonth_hover_color:var(--sapContent_LabelColor);--_ui5_daypicker_item_border_radius:0;--_ui5_daypicker_item_now_inner_border_radius:0;--_ui5_daypicker_item_margin:0;--_ui5_daypicker_item_border:1px solid var(--sapList_BorderColor);--_ui5_daypicker_item_outline_width:0.125rem;--_ui5_daypicker_item_outline_offset:0;--_ui5_daypicker_dayname_color:var(--sapHC_ReducedForeground);--_ui5_daypicker_weekname_color:var(--sapHC_ReducedForeground);--_ui5_daypicker_item_now_selected_focus_after_width:calc(100% - 0.25rem);--_ui5_daypicker_item_now_selected_focus_after_height:calc(100% - 0.25rem);--ui5-group-header-listitem-background-color:var(--sapList_GroupHeaderBackground);--_ui5_input_width:13.125rem;--_ui5_input_height:2.5rem;--_ui5_input_compact_height:1.625rem;--_ui5_input_wrapper_border_radius:0;--_ui5-input-information_border_width:0.125rem;--_ui5_input_disabled_opacity:0.5;--_ui5_input_icon_min_width:2.375rem;--_ui5_input_compact_min_width:2rem;--_ui5_input_focus_border_width:0.125rem;--_ui5_input_state_border_width:1px;--_ui5_input_error_warning_border_style:dashed;--_ui5_input_error_warning_font_style:italic;--_ui5_input_error_font_weight:bold;--_ui5_input_disabled_color:var(--sapContent_DisabledTextColor);--_ui5_input_disabled_font_weight:normal;--_ui5_input_disabled_border_color:var(--sapField_ReadOnly_BorderColor);--_ui5_input_disabled_background:var(--sapField_ReadOnly_Background);--_ui5_input_icon_padding:0.6875rem .6875rem;--_ui5_link_opacity:0.5;--_ui5_link_text_decoration:none;--_ui5_link_hover_text_decoration:underline;--ui5_list_footer_text_color:var(--sapPageFooter_TextColor);--ui5-listitem-background-color:var(--sapList_Background);--ui5-listitem-border-bottom:1px solid var(--sapList_BorderColor);--ui5-listitem-selected-border-bottom:1px solid var(--sapList_SelectionBorderColor);--_ui5_product_switch_item_border:none;--_ui5_listitembase_focus_width:0.125rem;--_ui5_monthpicker_item_border_radius:0;--_ui5_monthpicker_item_border:1px solid var(--sapList_BorderColor);--_ui5_monthpicker_item_margin:0;--_ui5_monthpicker_item_focus_after_width:calc(100% - 0.25rem);--_ui5_monthpicker_item_focus_after_height:calc(100% - 0.25rem);--_ui5_monthpicker_item_focus_after_border:2px dotted var(--sapContent_FocusColor);--_ui5_monthpicker_item_focus_after_offset:0;--_ui5_messagestrip_icon_width:2.5rem;--_ui5_messagestrip_border_radius:0.1875rem;--_ui5_messagestrip_button_border_width:0;--_ui5_messagestrip_button_border_style:none;--_ui5_messagestrip_button_border_color:transparent;--_ui5_messagestrip_button_border_radius:0;--_ui5_messagestrip_padding:0.125rem .125rem;--_ui5_messagestrip_button_height:1.625rem;--_ui5_messagestrip_close_button_size:1.5rem;--_ui5_messagestrip_close_button_border:1px solid var(--sapButton_BorderColor);--_ui5_messagestrip_border_width:0.125rem;--_ui5_messagestrip_icon_top:0.375rem;--_ui5_messagestrip_focus_width:0.125rem;--_ui5_messagestrip_focus_offset:-2px;--_ui5_panel_header_height:3rem;--_ui5_panel_button_root_width:3rem;--_ui5_panel_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_popup_content_padding:.4375em;--_ui5_progress_indicator_color:var(--sapTextColor);--_ui5_progress_indicator_bar_color:var(--sapContent_ContrastTextColor);--_ui5_progress_indicator_border:0.0625rem solid var(--sapField_BorderColor);--_ui5_progress_indicator_value_state_none:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_error:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_warning:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_success:var(--sapHighlightColor);--_ui5_progress_indicator_value_state_information:var(--sapHighlightColor);--_ui5_progress_indicator_bar_border_max:var(--_ui5_progress_indicator_border);--_ui5_progress_indicator_icon_visibility:inline-block;--_ui5_radiobutton_min_width:2.75rem;--_ui5_radiobutton_min_width_compact:2rem;--_ui5_radiobutton_selected_fill:var(--sapContent_IconColor);--_ui5_radiobutton_selected_warning_fill:var(--sapContent_IconColor);--_ui5_radiobutton_selected_error_fill:var(--sapContent_IconColor);--_ui5_radiobutton_hover_fill:var(--sapSelectedColor);--_ui5_radiobutton_border_width:0.125rem;--_ui5_radiobutton_warning_error_border_dash:5;--_ui5_select_disabled_background:var(--sapHC_ReducedBackground);--_ui5_select_disabled_border_color:var(--sapHC_ReducedForeground);--_ui5_select_state_error_warning_border_style:dashed;--_ui5_select_state_error_warning_border_width:1px;--_ui5_select_hover_icon_left_border:0.0625rem solid var(--sapField_Hover_BorderColor);--_ui5_select_rtl_hover_icon_left_border:none;--_ui5_select_rtl_hover_icon_right_border:0.0625rem solid var(--sapField_Hover_BorderColor);--_ui5_select_focus_width:0.125rem;--_ui5_switch_height:2.75rem;--_ui5_switch_width:3.875rem;--_ui5_switch_no_label_width:3.25rem;--_ui5_switch_compact_height:2rem;--_ui5_switch_compact_width:3.5rem;--_ui5_switch_compact_no_label_width:2.5rem;--_ui5_switch_track_height:1.375rem;--_ui5_switch_track_no_label_height:1.25rem;--_ui5_switch_track_compact_no_label_height:1rem;--_ui5_switch_track_border_radius:0.75rem;--_ui5_switch_handle_width:2rem;--_ui5_switch_handle_height:2rem;--_ui5_switch_handle_border_radius:1rem;--_ui5_switch_handle_checked_bg:var(--sapButton_Selected_Background);--_ui5_switch_handle_checked_border_color:var(--sapButton_Selected_BorderColor);--_ui5_switch_handle_compact_width:1.625rem;--_ui5_switch_handle_compact_height:1.625rem;--_ui5_switch_outline:0.125rem;--_ui5_switch_track_hover_border_color:var(--sapTextColor);--_ui5_switch_track_border_color:var(--sapButton_Background);--_ui5_switch_track_hover_background_color:var(--sapButton_Background);--_ui5_switch_track_hover_checked_background_color:var(--sapButton_Background);--_ui5_switch_track_disabled_checked_bg:var(--sapHC_ReducedBackground);--_ui5_switch_track_disabled_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_track_disabled_semantic_checked_bg:var(--sapHC_ReducedBackground);--_ui5_switch_track_disabled_semantic_checked_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_track_disabled_semantic_bg:var(--sapButton_Background);--_ui5_switch_track_disabled_semantic_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_handle_bg:var(--sapButton_Background);--_ui5_switch_handle_semantic_hover_bg:var(--sapButton_Hover_Background);--_ui5_switch_handle_semantic_checked_hover_bg:var(--sapButton_Hover_Background);--_ui5_switch_handle_semantic_hover_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_handle_semantic_checked_hover_border_color:var(--sapContent_ForegroundBorderColor);--_ui5_switch_handle_border_width:0.125rem;--_ui5_switch_handle_disabled_bg:var(--sapButton_Background);--_ui5_switch_handle_disabled_checked_bg:var(--_ui5_switch_handle_disabled_bg);--_ui5_switch_handle_disabled_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_handle_disabled_semantic_checked_bg:var(--_ui5_switch_handle_disabled_bg);--_ui5_switch_handle_disabled_semantic_checked_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_handle_disabled_semantic_border_color:var(--sapHC_ReducedForeground);--_ui5_switch_text_on_semantic_color:var(--sapTextColor);--_ui5_switch_text_off_semantic_color:var(--sapTextColor);--_ui5_switch_text_disabled_color:var(--sapHC_ReducedAltForeground);--_ui5_tc_header_height:4.6875rem;--_ui5_tc_header_height_compact:3.6875rem;--_ui5_tc_header_height_text_only:3rem;--_ui5_tc_header_height_text_only_compact:2rem;--_ui5_tc_header_box_shadow:inset 0 -0.25rem 0 -0.125rem var(--sapObjectHeader_BorderColor);--_ui5_tc_headerItem_color:var(--sapGroup_TitleTextColor);--_ui5_tc_content_border_bottom:0.125rem solid var(--sapObjectHeader_BorderColor);--_ui5_tc_header_border_bottom:0.125rem solid var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemContent_border_bottom:0.25rem solid var(--sapPageHeader_BorderColor);--_ui5_tc_headerItem_focus_border:0.125rem dotted var(--sapContent_FocusColor);--_ui5_tc_headerItem_neutral_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_positive_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_negative_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_critical_color:var(--sapGroup_TitleTextColor);--_ui5_tc_headerItem_neutral_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItem_neutral_selected_border_color:var(--_ui5_tc_headerItem_neutral_color);--_ui5_tc_headerItem_positive_selected_border_color:var(--_ui5_tc_headerItem_positive_color);--_ui5_tc_headerItem_negative_selected_border_color:var(--_ui5_tc_headerItem_negative_color);--_ui5_tc_headerItem_critical_selected_border_color:var(--_ui5_tc_headerItem_critical_color);--_ui5_tc_headerItemSemanticIcon_display:inline-block;--_ui5_tc_headerItemIcon_border:1px solid var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemIcon_color:var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemIcon_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_selected_color:var(--sapContent_IconColor);--_ui5_tc_headeritem_text_selected_color:var(--sapPageHeader_BorderColor);--_ui5_tc_headerItemIcon_positive_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_negative_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_critical_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_neutral_selected_background:var(--sapSelectedColor);--_ui5_tc_headerItemIcon_semantic_selected_color:var(--sapContent_IconColor);--_ui5_tc_overflowItem_neutral_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_positive_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_negative_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_critical_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_default_color:var(--sapGroup_TitleTextColor);--_ui5_tc_overflowItem_current_color:var(--_ui5_tc_overflowItem_default_color);--ui5_table_header_row_outline_width:0.125rem;--ui5_table_row_outline_width:0.125rem;--_ui5_textarea_focus_after_width:2px;--_ui5_textarea_warning_border_style:dashed;--_ui5_textarea_warning_border_width:1px;--_ui5_TimelineItem_arrow_size:1.625rem;--_ui5_TimelineItem_bubble_outline_width:0.125rem;--_ui5_TimelineItem_bubble_outline_top:-0.1875rem;--_ui5_TimelineItem_bubble_outline_right:-0.1875rem;--_ui5_TimelineItem_bubble_outline_bottom:-0.1875rem;--_ui5_TimelineItem_bubble_outline_left:-0.6875rem;--_ui5_TimelineItem_bubble_rtl_left_offset:-0.1875rem;--_ui5_TimelineItem_bubble_rtl_right_offset:-0.6875rem;--ui5_title_level_1Size:1.625rem;--ui5_title_level_2Size:1.375rem;--ui5_title_level_3Size:1.250rem;--ui5_title_level_4Size:1.125rem;--ui5_title_level_5Size:1rem;--ui5_title_level_6Size:0.875rem;--_ui5_toast_vertical_offset:3rem;--_ui5_toast_horizontal_offset:2rem;--_ui5_toast_background:var(--sapList_Background);--_ui5_toast_shadow:var(--sapContent_Shadow2);--_ui5_toggle_button_pressed_focussed:var(--sapButton_Selected_BorderColor);--_ui5_toggle_button_pressed_focussed_hovered:var(--sapButton_Selected_BorderColor);--_ui5_yearpicker_item_selected_focus:var(--sapContent_Selected_Background);--_ui5_yearpicker_item_border_radius:0;--_ui5_yearpicker_item_border:1px solid var(--sapList_BorderColor);--_ui5_yearpicker_item_margin:0;--_ui5_yearpicker_item_focus_after_width:calc(100% - 0.25rem);--_ui5_yearpicker_item_focus_after_height:calc(100% - 0.25rem);--_ui5_yearpicker_item_focus_after_border:2px dotted var(--sapContent_FocusColor);--_ui5_yearpicker_item_focus_after_offset:0;--_ui5_wheelslider_item_text_size:var(--sapFontSize);--_ui5_wheelslider_label_text_size:var(--sapFontSmallSize);--_ui5_wheelslider_mobile_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*4);--_ui5_wheelslider_label_text_color:var(--sapContent_LabelColor);--_ui5_wheelslider_height:15rem;--_ui5_wheelslider_mobile_height:27rem;--_ui5_wheelslider_arrows_visibility:hidden;--_ui5_wheelslider_item_background_color:var(--sapList_Background);--_ui5_wheelslider_item_text_color:var(--sapTextColor);--_ui_wheelslider_item_hover_color:var(--sapHighlightColor);--_ui5_wheelslider_item_border_color:var(--sapList_BorderColor);--_ui5_wheelslider_collapsed_item_text_color:var(--sapContent_ContrastTextColor);--_ui5_wheelslider_selected_item_background_color:var(--sapSelectedColor);--_ui5_wheelslider_selected_item_hover_background_color:var(--sapHighlightColor);--_ui5_wheelslider_active_item_background_color:var(--sapHighlightColor);--_ui5_wheelslider_active_item_text_color:var(--sapTextColor);--_ui5_wheelslider_item_width:4.5rem;--_ui5_wheelslider_item_height:3rem;--_ui5_wheelslider_selection_frame_color:var(--sapContent_ForegroundBorderColor);--_ui_wheelslider_item_border_radius:0;--_ui5_token_border_radius:0.125rem;--_ui5_value_state_message_border:2px solid var(--sapField_BorderColor);--_ui5-multi_combobox_token_margin_top:3px}.sapUiSizeCompact,.ui5-content-density-compact,:root,[data-ui5-compact-size]{--_ui5_datetime_timeview_width:17rem;--_ui5_token_wrapper_left_padding:0;--_ui5_daypicker_weeknumbers_container_padding_top:2rem;--_ui5_wheelslider_selection_frame_margin_top:calc(var(--_ui5_wheelslider_item_height)*2)}.sapUiSizeCompact,.ui5-content-density-compact,[data-ui5-compact-size]{--_ui5_button_base_height:1.625rem;--_ui5_button_base_padding:0.4375rem;--_ui5_button_base_min_width:2rem;--_ui5_button_icon_font_size:1rem;--_ui5_calendar_header_height:2rem;--_ui5_calendar_header_padding:0;--_ui5_calendar_header_arrow_button_width:2rem;--_ui5_checkbox_root_side_padding:var(--_ui5_checkbox_wrapped_focus_padding);--_ui5_checkbox_wrapped_content_margin_top:var(--_ui5_checkbox_compact_wrapped_label_margin_top);--_ui5_checkbox_wrapped_focus_left_top_bottom_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_width_height:var(--_ui5_checkbox_compact_width_height);--_ui5_checkbox_wrapper_padding:var(--_ui5_checkbox_compact_wrapper_padding);--_ui5_checkbox_focus_position:var(--_ui5_checkbox_compact_focus_position);--_ui5_checkbox_inner_width_height:var(--_ui5_checkbox_compact_inner_size);--_ui5_checkbox_icon_size:.75rem;--_ui5_custom_list_item_height:2rem;--_ui5_custom_list_item_rb_min_width:2rem;--_ui5_day_picker_item_width:2rem;--_ui5_day_picker_item_height:2rem;--_ui5_day_picker_empty_height:2.125rem;--_ui5_datetime_picker_height:17rem;--_ui5_datetime_picker_width:34.0625rem;--_ui5_datetime_timeview_phonemode_width:18.5rem;--_ui5_datetime_timeview_padding:0.5rem;--_ui5_input_height:var(--_ui5_input_compact_height);--_ui5_input_inner_padding:0 0.5rem;--_ui5_input_icon_min_width:var(--_ui5_input_compact_min_width);--_ui5_input_icon_padding:.25rem .5rem;--_ui5_input_value_state_icon_padding:.1875rem .5rem;--_ui5_textarea_padding:.1875rem .5rem;--_ui5_list_no_data_height:2rem;--_ui5_list_item_cb_margin_right:.5rem;--_ui5_list_item_title_size:var(--sapFontSize);--_ui5_list_item_img_size:1.75rem;--_ui5_list_item_img_margin:0.55rem 0.75rem 0.5rem 0rem;--_ui5_list_item_base_height:2rem;--_ui5_list_busy_row_height:2rem;--_ui5_month_picker_item_height:2rem;--_ui5_panel_header_height:2rem;--_ui5_year_picker_item_height:2rem;--_ui5_tokenizer_root_padding:0.125rem;--_ui5_token_height:1.125rem;--_ui5_token_icon_size:.75rem;--_ui5_token_icon_padding:0.1rem 0.25rem;--_ui5_token_wrapper_right_padding:0.25rem;--_ui5_tl_bubble_padding:.5rem;--_ui5_tl_indicator_before_bottom:-.5rem;--_ui5_tl_padding:.5rem;--_ui5_tl_li_margin_bottom:.5rem;--_ui5_rb_height:2rem;--_ui5_rb_label_side_padding:.5rem;--_ui5_rb_focus_dist:.375rem;--_ui5_rb_inner_size:2rem;--_ui5_rb_svg_size:1rem;--_ui5_rb_label_width:calc(100% - 2rem + 1px);--_ui5_rb_rtl_focus_right:0.375rem;--_ui5_wheelslider_item_width:4rem;--_ui5_wheelslider_item_height:2rem;--_ui5_wheelslider_height:14rem;--_ui5_wheelslider_arrows_visibility:visible;--_ui5_switch_height:var(--_ui5_switch_compact_height);--_ui5_switch_width:var(--_ui5_switch_compact_width);--_ui5_switch_handle_height:var(--_ui5_switch_handle_compact_height);--_ui5_switch_handle_width:var(--_ui5_switch_handle_compact_width);--_ui5_switch_text_on_left:calc(-100% + 1.5625rem);--_ui5_switch_slide_transform:translateX(100%) translateX(-1.5rem);--_ui5_switch_no_label_width:var(--_ui5_switch_compact_no_label_width);--_ui5_switch_track_no_label_height:var(--_ui5_switch_track_compact_no_label_height);--_ui5_switch_rtl_transform:translateX(-100%) translateX(1.5rem);--_ui5_switch_text_right:calc(-100% + 1.5625rem);--_ui5_tc_item_text:2rem;--_ui5_tc_item_text_line_height:1.325rem;--_ui5_tc_item_icon_size:1rem;--_ui5_tc_item_add_text_margin_top:0.3125rem;--_ui5_tc_header_height:var(--_ui5_tc_header_height_compact);--_ui5_radiobutton_min_width:var(--_ui5_radiobutton_min_width_compact);--_ui5-responnsive_popover_header_height:2.5rem;--ui5_side_navigation_item_height:2rem;--_ui5-tree-indent-step:0.5rem;--_ui5-tree-toggle-box-width:2rem;--_ui5-tree-toggle-box-height:1.5rem;--_ui5-tree-toggle-icon-size:0.8125rem}"}
|
package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.dfd19a1252497415.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_":":root{--sapBrandColor:#7a5100;--sapHighlightColor:#7a5100;--sapBaseColor:#000;--sapShellColor:#000;--sapBackgroundColor:#000;--sapFontFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontLightFamily:\"72-Light\",\"72-Lightfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontBoldFamily:\"72-Bold\",\"72-Boldfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontHeaderFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontSize:.875rem;--sapFontSmallSize:.75rem;--sapFontLargeSize:1rem;--sapFontHeader1Size:1.625rem;--sapFontHeader2Size:1.375rem;--sapFontHeader3Size:1.25rem;--sapFontHeader4Size:1.125rem;--sapFontHeader5Size:1rem;--sapFontHeader6Size:.875rem;--sapTextColor:#fff;--sapLinkColor:#fff;--sapLink_Hover_Color:#fff;--sapLink_Active_Color:#fff;--sapLink_Visited_Color:#fff;--sapLink_InvertedColor:#fff;--sapLink_SubtleColor:#fff;--sapCompanyLogo:none;--sapBackgroundImage:none;--sapBackgroundImageOpacity:1.0;--sapBackgroundImageRepeat:false;--sapSelectedColor:#0f5d94;--sapActiveColor:#7a5100;--sapHighlightTextColor:#fff;--sapTitleColor:#fff;--sapNegativeColor:#ff5e5e;--sapCriticalColor:#ffab1d;--sapPositiveColor:#9c9;--sapInformativeColor:#fff;--sapNeutralColor:#fff;--sapNegativeElementColor:#ff5e5e;--sapCriticalElementColor:#ffab1d;--sapPositiveElementColor:#9c9;--sapInformativeElementColor:#fff;--sapNeutralElementColor:#fff;--sapNegativeTextColor:#ff5e5e;--sapPositiveTextColor:#9c9;--sapCriticalTextColor:#ffab1d;--sapInformativeTextColor:#fff;--sapNeutralTextColor:#fff;--sapNeutralBorderColor:#fff;--sapErrorColor:#ff5e5e;--sapErrorBorderColor:#ff5e5e;--sapWarningColor:#ffab1d;--sapWarningBorderColor:#ffab1d;--sapSuccessColor:#9c9;--sapSuccessBorderColor:#9c9;--sapInformationColor:#fff;--sapInformationBorderColor:#fff;--sapErrorBackground:#000;--sapWarningBackground:#000;--sapSuccessBackground:#000;--sapInformationBackground:#000;--sapNeutralBackground:#000;--sapIndicationColor_1:#ff5e5e;--sapIndicationColor_1_Hover_Background:#7a5100;--sapIndicationColor_1_Active_Background:#7a5100;--sapIndicationColor_1_TextColor:#fff;--sapIndicationColor_2:#ff9191;--sapIndicationColor_2_Hover_Background:#7a5100;--sapIndicationColor_2_Active_Background:#7a5100;--sapIndicationColor_2_TextColor:#fff;--sapIndicationColor_3:#ffab1d;--sapIndicationColor_3_Hover_Background:#7a5100;--sapIndicationColor_3_Active_Background:#7a5100;--sapIndicationColor_3_TextColor:#fff;--sapIndicationColor_4:#9c9;--sapIndicationColor_4_Hover_Background:#7a5100;--sapIndicationColor_4_Active_Background:#7a5100;--sapIndicationColor_4_TextColor:#fff;--sapIndicationColor_5:#6bd3ff;--sapIndicationColor_5_Hover_Background:#7a5100;--sapIndicationColor_5_Active_Background:#7a5100;--sapIndicationColor_5_TextColor:#fff;--sapIndicationColor_6:#7fc6c6;--sapIndicationColor_6_Hover_Background:#7a5100;--sapIndicationColor_6_Active_Background:#7a5100;--sapIndicationColor_6_TextColor:#fff;--sapIndicationColor_7:#b995e0;--sapIndicationColor_7_Hover_Background:#7a5100;--sapIndicationColor_7_Active_Background:#7a5100;--sapIndicationColor_7_TextColor:#fff;--sapIndicationColor_8:#e269c9;--sapIndicationColor_8_Hover_Background:#7a5100;--sapIndicationColor_8_Active_Background:#7a5100;--sapIndicationColor_8_TextColor:#fff;--sapElement_LineHeight:3rem;--sapElement_Height:2.5rem;--sapElement_BorderWidth:.0625rem;--sapElement_BorderCornerRadius:.25rem;--sapElement_Compact_LineHeight:2rem;--sapElement_Compact_Height:1.625rem;--sapElement_Condensed_LineHeight:1.5rem;--sapElement_Condensed_Height:1.375rem;--sapContent_LineHeight:1.4;--sapContent_IconHeight:1rem;--sapContent_IconColor:#fff;--sapContent_ContrastIconColor:#fff;--sapContent_NonInteractiveIconColor:#fff;--sapContent_MarkerIconColor:#fff;--sapContent_MarkerTextColor:#fff;--sapContent_ImagePlaceholderBackground:#000;--sapContent_ImagePlaceholderForegroundColor:#999;--sapContent_RatedColor:#fff;--sapContent_UnratedColor:#666;--sapContent_FocusColor:#fff;--sapContent_FocusStyle:dotted;--sapContent_FocusWidth:.125rem;--sapContent_ContrastFocusColor:#fff;--sapContent_ShadowColor:#fff;--sapContent_ContrastShadowColor:#fff;--sapContent_Shadow0:0 0 1rem 0 hsla(0,0%,100%,0.5),0 0 0 2px #fff;--sapContent_Shadow1:0 0.125rem 0.5rem 0 hsla(0,0%,100%,0.2),0 0 1rem 0 hsla(0,0%,100%,0.5),0 0 0 2px #fff;--sapContent_Shadow2:0 0.25rem 2rem 0 hsla(0,0%,100%,0.6),0 0 0 2px #fff;--sapContent_Shadow3:0 0.625rem 4rem 0 hsla(0,0%,100%,0.8),0 0 0 2px #fff;--sapContent_TextShadow:none;--sapContent_HeaderShadow:inset 0 -0.125rem #fff;--sapContent_SearchHighlightColor:#7a5100;--sapContent_HelpColor:#03b803;--sapContent_LabelColor:#fff;--sapContent_MonospaceFontFamily:lucida console,monospace;--sapContent_DisabledTextColor:#666;--sapContent_DisabledOpacity:0.5;--sapContent_ContrastTextThreshold:0.65;--sapContent_ContrastTextColor:#fff;--sapContent_ForegroundColor:#000;--sapContent_ForegroundBorderColor:#fff;--sapContent_ForegroundTextColor:#fff;--sapContent_BadgeBackground:#000;--sapContent_BadgeTextColor:#fff;--sapContent_Placeholderloading_Background:#666;--sapContent_Placeholderloading_Gradient:linear-gradient(90deg,#666 0%,#666 35%,#999 50%,#666 65%,#666);--sapContent_DragAndDropActiveColor:#03b803;--sapContent_Selected_Background:#0f5d94;--sapContent_Selected_TextColor:#fff;--sapContent_Selected_Hover_Background:#7a5100;--sapContent_Illustrative_Color1:#212628;--sapContent_Illustrative_Color2:#62737c;--sapContent_Illustrative_Color3:#62737c;--sapContent_Illustrative_Color4:#030303;--sapContent_Illustrative_Color5:#88979e;--sapContent_Illustrative_Color6:#88979e;--sapContent_Illustrative_Color7:#212628;--sapContent_Illustrative_Color8:#dbdbdb;--sapShell_Background:#000;--sapShell_BackgroundImage:#000;--sapShell_BackgroundGradient:#000;--sapShell_BackgroundImageOpacity:1.0;--sapShell_BackgroundImageRepeat:false;--sapShell_BorderColor:#fff;--sapShell_TextColor:#fff;--sapShell_InteractiveTextColor:#fff;--sapShell_InteractiveBorderColor:#fff;--sapShell_GroupTitleTextColor:#fff;--sapShell_Hover_Background:#7a5100;--sapShell_Active_Background:#7a5100;--sapShell_Active_TextColor:#fff;--sapShell_Selected_Background:#0f5d94;--sapShell_Selected_TextColor:#fff;--sapShell_Selected_Hover_Background:#0f5d94;--sapShell_Favicon:none;--sapShell_Navigation_Background:#000;--sapShell_Navigation_SelectedColor:#fff;--sapShell_Navigation_Selected_TextColor:#fff;--sapShell_Navigation_TextColor:#fff;--sapShell_Shadow:0 0.125rem 0 0 #fff;--sapButton_BorderWidth:.0625rem;--sapButton_BorderCornerRadius:.375rem;--sapButton_Background:#000;--sapButton_BorderColor:#fff;--sapButton_TextColor:#fff;--sapButton_Hover_Background:#7a5100;--sapButton_Hover_BorderColor:#fff;--sapButton_Hover_TextColor:#fff;--sapButton_IconColor:#fff;--sapButton_Active_Background:#7a5100;--sapButton_Active_BorderColor:#fff;--sapButton_Active_TextColor:#fff;--sapButton_Emphasized_Background:#000;--sapButton_Emphasized_BorderColor:#fff;--sapButton_Emphasized_TextColor:#fff;--sapButton_Emphasized_Hover_Background:#7a5100;--sapButton_Emphasized_Hover_BorderColor:#fff;--sapButton_Emphasized_Hover_TextColor:#fff;--sapButton_Emphasized_Active_Background:#7a5100;--sapButton_Emphasized_Active_BorderColor:#fff;--sapButton_Emphasized_TextShadow:transparent;--sapButton_Accept_Background:#000;--sapButton_Accept_BorderColor:#fff;--sapButton_Accept_Hover_Background:#7a5100;--sapButton_Accept_Hover_BorderColor:#fff;--sapButton_Accept_Hover_TextColor:#fff;--sapButton_Accept_Active_Background:#7a5100;--sapButton_Accept_Active_BorderColor:#fff;--sapButton_Accept_TextColor:#fff;--sapButton_Accept_Selected_Background:#0f5d94;--sapButton_Accept_Selected_BorderColor:#fff;--sapButton_Accept_Selected_TextColor:#fff;--sapButton_Accept_Selected_Hover_Background:#7a5100;--sapButton_Accept_Selected_Hover_BorderColor:#fff;--sapButton_Reject_Background:#000;--sapButton_Reject_BorderColor:#fff;--sapButton_Reject_Hover_Background:#7a5100;--sapButton_Reject_Hover_BorderColor:#fff;--sapButton_Reject_Hover_TextColor:#fff;--sapButton_Reject_Active_Background:#7a5100;--sapButton_Reject_Active_BorderColor:#fff;--sapButton_Reject_TextColor:#fff;--sapButton_Reject_Selected_Background:#0f5d94;--sapButton_Reject_Selected_BorderColor:#fff;--sapButton_Reject_Selected_TextColor:#fff;--sapButton_Reject_Selected_Hover_Background:#7a5100;--sapButton_Reject_Selected_Hover_BorderColor:#fff;--sapButton_Lite_Background:#000;--sapButton_Lite_BorderColor:#fff;--sapButton_Lite_TextColor:#fff;--sapButton_Lite_Hover_Background:#7a5100;--sapButton_Lite_Hover_BorderColor:#fff;--sapButton_Lite_Hover_TextColor:#fff;--sapButton_Lite_Active_Background:#7a5100;--sapButton_Lite_Active_BorderColor:#fff;--sapButton_Selected_Background:#0f5d94;--sapButton_Selected_BorderColor:#fff;--sapButton_Selected_TextColor:#fff;--sapButton_Selected_Hover_Background:#7a5100;--sapButton_Selected_Hover_BorderColor:#fff;--sapButton_Attention_Background:#000;--sapButton_Attention_BorderColor:#fff;--sapButton_Attention_TextColor:#fff;--sapButton_Attention_Hover_Background:#7a5100;--sapButton_Attention_Hover_BorderColor:#fff;--sapButton_Attention_Hover_TextColor:#fff;--sapButton_Attention_Active_Background:#7a5100;--sapButton_Attention_Active_BorderColor:#fff;--sapButton_Attention_Selected_Background:#0f5d94;--sapButton_Attention_Selected_BorderColor:#fff;--sapButton_Attention_Selected_TextColor:#fff;--sapButton_Attention_Selected_Hover_Background:#7a5100;--sapButton_Attention_Selected_Hover_BorderColor:#fff;--sapButton_Negative_Background:#000;--sapButton_Negative_BorderColor:#fff;--sapButton_Negative_TextColor:#fff;--sapButton_Negative_Hover_Background:#7a5100;--sapButton_Negative_Hover_BorderColor:#fff;--sapButton_Negative_Hover_TextColor:#fff;--sapButton_Negative_Active_Background:#7a5100;--sapButton_Negative_Active_BorderColor:#fff;--sapButton_Critical_Background:#000;--sapButton_Critical_BorderColor:#fff;--sapButton_Critical_TextColor:#fff;--sapButton_Critical_Hover_Background:#7a5100;--sapButton_Critical_Hover_BorderColor:#fff;--sapButton_Critical_Hover_TextColor:#fff;--sapButton_Critical_Active_Background:#7a5100;--sapButton_Critical_Active_BorderColor:#fff;--sapButton_Success_Background:#000;--sapButton_Success_BorderColor:#fff;--sapButton_Success_TextColor:#fff;--sapButton_Success_Hover_Background:#7a5100;--sapButton_Success_Hover_BorderColor:#fff;--sapButton_Success_Hover_TextColor:#fff;--sapButton_Success_Active_Background:#7a5100;--sapButton_Success_Active_BorderColor:#fff;--sapButton_Information_Background:#000;--sapButton_Information_BorderColor:#fff;--sapButton_Information_TextColor:#fff;--sapButton_Information_Hover_Background:#7a5100;--sapButton_Information_Hover_BorderColor:#fff;--sapButton_Information_Hover_TextColor:#fff;--sapButton_Information_Active_Background:#7a5100;--sapButton_Information_Active_BorderColor:#fff;--sapButton_Neutral_Background:#000;--sapButton_Neutral_BorderColor:#fff;--sapButton_Neutral_TextColor:#fff;--sapButton_Neutral_Hover_Background:#7a5100;--sapButton_Neutral_Hover_BorderColor:#fff;--sapButton_Neutral_Hover_TextColor:#fff;--sapButton_Neutral_Active_Background:#7a5100;--sapButton_Neutral_Active_BorderColor:#fff;--sapButton_Track_Selected_Background:#0f5d94;--sapButton_Track_Selected_TextColor:#fff;--sapButton_Track_Background:#000;--sapButton_Track_TextColor:#fff;--sapButton_TokenBackground:#000;--sapButton_TokenBorderColor:#fff;--sapField_Background:#000;--sapField_TextColor:#fff;--sapField_PlaceholderTextColor:#fff;--sapField_BorderColor:#fff;--sapField_HelpBackground:#000;--sapField_BorderWidth:.0625rem;--sapField_BorderCornerRadius:0;--sapField_Hover_Background:#000;--sapField_Hover_BorderColor:#fff;--sapField_Hover_HelpBackground:#000;--sapField_Active_BorderColor:#fff;--sapField_Focus_Background:#000;--sapField_Focus_BorderColor:#fff;--sapField_Focus_HelpBackground:#000;--sapField_ReadOnly_Background:#585858;--sapField_ReadOnly_BorderColor:#999;--sapField_ReadOnly_HelpBackground:#585858;--sapField_RequiredColor:#fff;--sapField_InvalidColor:#fff;--sapField_InvalidBackground:#7a5100;--sapField_WarningColor:#fff;--sapField_WarningBackground:#000;--sapField_SuccessColor:#fff;--sapField_SuccessBackground:#000;--sapField_InformationColor:#fff;--sapField_InformationBackground:#000;--sapGroup_TitleBackground:#000;--sapGroup_TitleBorderColor:#fff;--sapGroup_TitleTextColor:#fff;--sapGroup_ContentBackground:#000;--sapGroup_ContentBorderColor:#fff;--sapGroup_BorderWidth:.0625rem;--sapGroup_BorderCornerRadius:0;--sapGroup_FooterBackground:#000;--sapToolbar_Background:#000;--sapToolbar_SeparatorColor:#fff;--sapList_HeaderBackground:#000;--sapList_HeaderBorderColor:#fff;--sapList_HeaderTextColor:#fff;--sapList_BorderColor:#999;--sapList_TextColor:#fff;--sapList_Active_TextColor:#fff;--sapList_BorderWidth:.0625rem;--sapList_SelectionBackgroundColor:#0f5d94;--sapList_SelectionBorderColor:#999;--sapList_Hover_SelectionBackground:#7a5100;--sapList_Background:#000;--sapList_Hover_Background:#7a5100;--sapList_AlternatingBackground:#262626;--sapList_GroupHeaderBackground:#585858;--sapList_GroupHeaderBorderColor:#fff;--sapList_GroupHeaderTextColor:#fff;--sapList_FooterBackground:#000;--sapList_FooterTextColor:#fff;--sapList_TableGroupHeaderBackground:#000;--sapList_TableGroupHeaderBorderColor:#fff;--sapList_TableGroupHeaderTextColor:#fff;--sapList_TableFooterBorder:#fff;--sapList_TableFixedBorderColor:#fff;--sapList_Active_Background:#7a5100;--sapScrollBar_FaceColor:#999;--sapScrollBar_TrackColor:#000;--sapScrollBar_BorderColor:#999;--sapScrollBar_SymbolColor:#fff;--sapScrollBar_Dimension:.7rem;--sapScrollBar_Hover_FaceColor:#fff;--sapPageHeader_Background:#000;--sapPageHeader_BorderColor:#fff;--sapPageHeader_TextColor:#fff;--sapPageFooter_Background:#000;--sapPageFooter_BorderColor:#fff;--sapPageFooter_TextColor:#fff;--sapInfobar_Background:#000;--sapInfobar_Hover_Background:#7a5100;--sapInfobar_Active_Background:#7a5100;--sapObjectHeader_Background:#000;--sapObjectHeader_BorderColor:#fff;--sapBlockLayer_Background:#000;--sapTile_Background:#000;--sapTile_Hover_Background:#7a5100;--sapTile_Active_Background:#7a5100;--sapTile_BorderColor:#fff;--sapTile_TitleTextColor:#fff;--sapTile_TextColor:#fff;--sapTile_IconColor:#fff;--sapTile_SeparatorColor:#fff;--sapAccentColor1:#ffc847;--sapAccentColor2:#ed884a;--sapAccentColor3:#db9292;--sapAccentColor4:#e269c9;--sapAccentColor5:#8ca7d5;--sapAccentColor6:#6bd3ff;--sapAccentColor7:#7fc6c6;--sapAccentColor8:#b2e484;--sapAccentColor9:#b995e0;--sapAccentColor10:#b0bcc5;--sapLegend_WorkingBackground:#2e2e2e;--sapLegend_NonWorkingBackground:#4d4d4d;--sapLegend_CurrentDateTime:#e269c9;--sapLegendColor1:#ffc847;--sapLegendColor2:#ed884a;--sapLegendColor3:#db9292;--sapLegendColor4:#ff741f;--sapLegendColor5:#e269c9;--sapLegendColor6:#6bd3ff;--sapLegendColor7:#7fc6c6;--sapLegendColor8:#b2e484;--sapLegendColor9:#1fbcff;--sapLegendColor10:#bb86b0;--sapLegendColor11:#ffe6ad;--sapLegendColor12:#cdaf9d;--sapLegendColor13:#ff8787;--sapLegendColor14:#ffb385;--sapLegendColor15:#ffb2ef;--sapLegendColor16:#9cabc5;--sapLegendColor17:#a4eeee;--sapLegendColor18:#8d9e7e;--sapLegendColor19:#addcf0;--sapLegendColor20:#629cff;--sapLegendBackgroundColor1:#000;--sapLegendBackgroundColor2:#000;--sapLegendBackgroundColor3:#000;--sapLegendBackgroundColor4:#000;--sapLegendBackgroundColor5:#000;--sapLegendBackgroundColor6:#000;--sapLegendBackgroundColor7:#000;--sapLegendBackgroundColor8:#000;--sapLegendBackgroundColor9:#000;--sapLegendBackgroundColor10:#000;--sapLegendBackgroundColor11:#000;--sapLegendBackgroundColor12:#000;--sapLegendBackgroundColor13:#000;--sapLegendBackgroundColor14:#000;--sapLegendBackgroundColor15:#000;--sapLegendBackgroundColor16:#000;--sapLegendBackgroundColor17:#000;--sapLegendBackgroundColor18:#000;--sapLegendBackgroundColor19:#000;--sapLegendBackgroundColor20:#000;--sapChart_OrderedColor_1:#4da2f6;--sapChart_OrderedColor_2:#e8743b;--sapChart_OrderedColor_3:#19a979;--sapChart_OrderedColor_4:#ed4a7b;--sapChart_OrderedColor_5:#945ecf;--sapChart_OrderedColor_6:#13a4b4;--sapChart_OrderedColor_7:#5c66f5;--sapChart_OrderedColor_8:#c63fa4;--sapChart_OrderedColor_9:#6c8893;--sapChart_OrderedColor_10:#ee6868;--sapChart_OrderedColor_11:#387bb7;--sapChart_Bad:#ff5e5e;--sapChart_Critical:#ffab1d;--sapChart_Good:#9c9;--sapChart_Neutral:#fff;--sapChart_Sequence_1:#4da2f6;--sapChart_Sequence_2:#e8743b;--sapChart_Sequence_3:#19a979;--sapChart_Sequence_4:#ed4a7b;--sapChart_Sequence_5:#945ecf;--sapChart_Sequence_6:#13a4b4;--sapChart_Sequence_7:#5c66f5;--sapChart_Sequence_8:#c63fa4;--sapChart_Sequence_9:#6c8893;--sapChart_Sequence_10:#ee6868;--sapChart_Sequence_11:#387bb7;--sapChart_Sequence_Neutral:#fff;}"}
|
package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e19065174fdd4592.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_":":root{--sapBrandColor:#91c8f6;--sapHighlightColor:#91c8f6;--sapBaseColor:#29313a;--sapShellColor:#354a5f;--sapBackgroundColor:#1c2228;--sapFontFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontLightFamily:\"72-Light\",\"72-Lightfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontBoldFamily:\"72-Bold\",\"72-Boldfull\",\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontHeaderFamily:\"72\",\"72full\",Arial,Helvetica,sans-serif;--sapFontSize:.875rem;--sapFontSmallSize:.75rem;--sapFontLargeSize:1rem;--sapFontHeader1Size:2.25rem;--sapFontHeader2Size:1.5rem;--sapFontHeader3Size:1.25rem;--sapFontHeader4Size:1.125rem;--sapFontHeader5Size:1rem;--sapFontHeader6Size:.875rem;--sapTextColor:#fafafa;--sapLinkColor:#91c8f6;--sapLink_Hover_Color:#62b0f2;--sapLink_Active_Color:#91c8f6;--sapLink_Visited_Color:#91c8f6;--sapLink_InvertedColor:#d3e9fb;--sapLink_SubtleColor:#eff7fe;--sapCompanyLogo:none;--sapBackgroundImage:none;--sapBackgroundImageOpacity:1.0;--sapBackgroundImageRepeat:false;--sapSelectedColor:#91c8f6;--sapActiveColor:#91c8f6;--sapHighlightTextColor:#29313a;--sapTitleColor:#fafafa;--sapNegativeColor:#f88;--sapCriticalColor:#fabd64;--sapPositiveColor:#abe2ab;--sapInformativeColor:#91c8f6;--sapNeutralColor:#d3d7d9;--sapNegativeElementColor:#f88;--sapCriticalElementColor:#fabd64;--sapPositiveElementColor:#abe2ab;--sapInformativeElementColor:#91c8f6;--sapNeutralElementColor:#d3d7d9;--sapNegativeTextColor:#f88;--sapPositiveTextColor:#abe2ab;--sapCriticalTextColor:#fabd64;--sapInformativeTextColor:#c0e0fa;--sapNeutralTextColor:#d3d7d9;--sapNeutralBorderColor:#d3d7d9;--sapErrorColor:#f88;--sapErrorBorderColor:#f88;--sapWarningColor:#fabd64;--sapWarningBorderColor:#fabd64;--sapSuccessColor:#abe2ab;--sapSuccessBorderColor:#abe2ab;--sapInformationColor:#91c8f6;--sapInformationBorderColor:#91c8f6;--sapErrorBackground:#3b0000;--sapWarningBackground:#2b1a01;--sapSuccessBackground:#153c15;--sapInformationBackground:#062e4f;--sapNeutralBackground:#5c666b;--sapIndicationColor_1:#f55;--sapIndicationColor_1_Hover_Background:#ff6f6f;--sapIndicationColor_1_Active_Background:#f88;--sapIndicationColor_1_TextColor:#fafafa;--sapIndicationColor_2:#f88;--sapIndicationColor_2_Hover_Background:#ffa2a2;--sapIndicationColor_2_Active_Background:#fbb;--sapIndicationColor_2_TextColor:#29313a;--sapIndicationColor_3:#fabd64;--sapIndicationColor_3_Hover_Background:#fac373;--sapIndicationColor_3_Active_Background:#fbca82;--sapIndicationColor_3_TextColor:#29313a;--sapIndicationColor_4:#abe2ab;--sapIndicationColor_4_Hover_Background:#bee9be;--sapIndicationColor_4_Active_Background:#d1efd1;--sapIndicationColor_4_TextColor:#29313a;--sapIndicationColor_5:#91c8f6;--sapIndicationColor_5_Hover_Background:#a9d4f8;--sapIndicationColor_5_Active_Background:#c0e0fa;--sapIndicationColor_5_TextColor:#29313a;--sapIndicationColor_6:#7fc6c6;--sapIndicationColor_6_Hover_Background:#91cece;--sapIndicationColor_6_Active_Background:#a2d6d6;--sapIndicationColor_6_TextColor:#29313a;--sapIndicationColor_7:#b995e0;--sapIndicationColor_7_Hover_Background:#c6a9e6;--sapIndicationColor_7_Active_Background:#d3bcec;--sapIndicationColor_7_TextColor:#29313a;--sapIndicationColor_8:#e269c9;--sapIndicationColor_8_Hover_Background:#e67ed1;--sapIndicationColor_8_Active_Background:#ea94d8;--sapIndicationColor_8_TextColor:#29313a;--sapElement_LineHeight:2.75rem;--sapElement_Height:2.25rem;--sapElement_BorderWidth:.0625rem;--sapElement_BorderCornerRadius:.25rem;--sapElement_Compact_LineHeight:2rem;--sapElement_Compact_Height:1.625rem;--sapElement_Condensed_LineHeight:1.5rem;--sapElement_Condensed_Height:1.375rem;--sapContent_LineHeight:1.4;--sapContent_IconHeight:1rem;--sapContent_IconColor:#91c8f6;--sapContent_ContrastIconColor:#29313a;--sapContent_NonInteractiveIconColor:#d3d7d9;--sapContent_MarkerIconColor:#6bd3ff;--sapContent_MarkerTextColor:#7fc6c6;--sapContent_ImagePlaceholderBackground:#687d94;--sapContent_ImagePlaceholderForegroundColor:#29313a;--sapContent_RatedColor:#ffc847;--sapContent_UnratedColor:#8696a9;--sapContent_FocusColor:#fff;--sapContent_FocusStyle:dotted;--sapContent_FocusWidth:.0625rem;--sapContent_ContrastFocusColor:#000;--sapContent_ShadowColor:#000;--sapContent_ContrastShadowColor:#fff;--sapContent_Shadow0:0 0 0 0.0625rem hsla(0,0%,100%,0.2),0 0.125rem 0.5rem 0 rgba(0,0,0,0.3);--sapContent_Shadow1:0 0 0 0.0625rem hsla(0,0%,100%,0.5),0 0.125rem 0.5rem 0 rgba(0,0,0,0.6);--sapContent_Shadow2:0 0 0 0.0625rem hsla(0,0%,100%,0.5),0 0.625rem 1.875rem 0 rgba(0,0,0,0.6);--sapContent_Shadow3:0 0 0 0.0625rem hsla(0,0%,100%,0.5),0 1.25rem 5rem 0 rgba(0,0,0,0.6);--sapContent_TextShadow:0 0 0.125rem #000;--sapContent_HeaderShadow:0 0 0.25rem 0 rgba(0,0,0,0.8),inset 0 -0.0625rem 0 0 #3a4552;--sapContent_SearchHighlightColor:#058088;--sapContent_HelpColor:#57b900;--sapContent_LabelColor:#d3d7d9;--sapContent_MonospaceFontFamily:lucida console,monospace;--sapContent_DisabledTextColor:hsla(0,0%,98%,0.6);--sapContent_DisabledOpacity:0.4;--sapContent_ContrastTextThreshold:0.5;--sapContent_ContrastTextColor:#29313a;--sapContent_ForegroundColor:#1c2228;--sapContent_ForegroundBorderColor:#8696a9;--sapContent_ForegroundTextColor:#fafafa;--sapContent_BadgeBackground:#d14242;--sapContent_BadgeTextColor:#fff;--sapContent_Placeholderloading_Background:#424f5e;--sapContent_Placeholderloading_Gradient:linear-gradient(90deg,#424f5e 0%,#424f5e 35%,#4d5c6d 50%,#424f5e 65%,#424f5e);--sapContent_DragAndDropActiveColor:#91c8f6;--sapContent_Selected_Background:#91c8f6;--sapContent_Selected_TextColor:#29313a;--sapContent_Selected_Hover_Background:#83c1f5;--sapContent_Illustrative_Color1:#0a6ed1;--sapContent_Illustrative_Color2:#3793d1;--sapContent_Illustrative_Color3:#d69522;--sapContent_Illustrative_Color4:#030303;--sapContent_Illustrative_Color5:#727f87;--sapContent_Illustrative_Color6:#9ba4aa;--sapContent_Illustrative_Color7:#43494b;--sapContent_Illustrative_Color8:#c2c8cc;--sapShell_Background:#232a31;--sapShell_BackgroundImage:linear-gradient(180deg,#181d22,#272f37);--sapShell_BackgroundGradient:linear-gradient(180deg,#181d22,#272f37);--sapShell_BackgroundImageOpacity:1.0;--sapShell_BackgroundImageRepeat:false;--sapShell_BorderColor:#354a5f;--sapShell_TextColor:#fafafa;--sapShell_InteractiveTextColor:#d1e8ff;--sapShell_InteractiveBorderColor:#7996b4;--sapShell_GroupTitleTextColor:#fafafa;--sapShell_Hover_Background:#283848;--sapShell_Active_Background:#23303e;--sapShell_Active_TextColor:#fafafa;--sapShell_Selected_Background:#23303e;--sapShell_Selected_TextColor:#fafafa;--sapShell_Selected_Hover_Background:#23303e;--sapShell_Favicon:none;--sapShell_Navigation_Background:#29313a;--sapShell_Navigation_SelectedColor:#91c8f6;--sapShell_Navigation_Selected_TextColor:#91c8f6;--sapShell_Navigation_TextColor:#fafafa;--sapShell_Shadow:0 0 0.5rem 0 rgba(0,0,0,0.8),inset 0 -0.0625rem 0 0 hsla(0,0%,100%,0.2);--sapButton_BorderWidth:.0625rem;--sapButton_BorderCornerRadius:.25rem;--sapButton_Background:#29313a;--sapButton_BorderColor:#91c8f6;--sapButton_TextColor:#91c8f6;--sapButton_Hover_Background:#062e4f;--sapButton_Hover_BorderColor:#91c8f6;--sapButton_Hover_TextColor:#91c8f6;--sapButton_IconColor:#91c8f6;--sapButton_Active_Background:#91c8f6;--sapButton_Active_BorderColor:#91c8f6;--sapButton_Active_TextColor:#29313a;--sapButton_Emphasized_Background:#1b8dec;--sapButton_Emphasized_BorderColor:#1b8dec;--sapButton_Emphasized_TextColor:#fff;--sapButton_Emphasized_Hover_Background:#2e96ee;--sapButton_Emphasized_Hover_BorderColor:#2e96ee;--sapButton_Emphasized_Hover_TextColor:#29313a;--sapButton_Emphasized_Active_Background:#91c8f6;--sapButton_Emphasized_Active_BorderColor:#91c8f6;--sapButton_Emphasized_TextShadow:transparent;--sapButton_Accept_Background:#29313a;--sapButton_Accept_BorderColor:#abe2ab;--sapButton_Accept_Hover_Background:#153c15;--sapButton_Accept_Hover_BorderColor:#abe2ab;--sapButton_Accept_Hover_TextColor:#abe2ab;--sapButton_Accept_Active_Background:#98db98;--sapButton_Accept_Active_BorderColor:#98db98;--sapButton_Accept_TextColor:#abe2ab;--sapButton_Accept_Selected_Background:#98db98;--sapButton_Accept_Selected_BorderColor:#98db98;--sapButton_Accept_Selected_TextColor:#29313a;--sapButton_Accept_Selected_Hover_Background:#abe2ab;--sapButton_Accept_Selected_Hover_BorderColor:#abe2ab;--sapButton_Reject_Background:#29313a;--sapButton_Reject_BorderColor:#f88;--sapButton_Reject_Hover_Background:#3b0000;--sapButton_Reject_Hover_BorderColor:#f88;--sapButton_Reject_Hover_TextColor:#f88;--sapButton_Reject_Active_Background:#ff6e6e;--sapButton_Reject_Active_BorderColor:#ff6e6e;--sapButton_Reject_TextColor:#f88;--sapButton_Reject_Selected_Background:#ff6e6e;--sapButton_Reject_Selected_BorderColor:#ff6e6e;--sapButton_Reject_Selected_TextColor:#29313a;--sapButton_Reject_Selected_Hover_Background:#f88;--sapButton_Reject_Selected_Hover_BorderColor:#f88;--sapButton_Lite_Background:transparent;--sapButton_Lite_BorderColor:transparent;--sapButton_Lite_TextColor:#91c8f6;--sapButton_Lite_Hover_Background:#062e4f;--sapButton_Lite_Hover_BorderColor:#91c8f6;--sapButton_Lite_Hover_TextColor:#91c8f6;--sapButton_Lite_Active_Background:#91c8f6;--sapButton_Lite_Active_BorderColor:#91c8f6;--sapButton_Selected_Background:#91c8f6;--sapButton_Selected_BorderColor:#91c8f6;--sapButton_Selected_TextColor:#29313a;--sapButton_Selected_Hover_Background:#83c1f5;--sapButton_Selected_Hover_BorderColor:#83c1f5;--sapButton_Attention_Background:#29313a;--sapButton_Attention_BorderColor:#fabd64;--sapButton_Attention_TextColor:#fabd64;--sapButton_Attention_Hover_Background:#2b1a01;--sapButton_Attention_Hover_BorderColor:#fabd64;--sapButton_Attention_Hover_TextColor:#fabd64;--sapButton_Attention_Active_Background:#f9b24b;--sapButton_Attention_Active_BorderColor:#f9b24b;--sapButton_Attention_Selected_Background:#f9b24b;--sapButton_Attention_Selected_BorderColor:#f9b24b;--sapButton_Attention_Selected_TextColor:#29313a;--sapButton_Attention_Selected_Hover_Background:#fabd64;--sapButton_Attention_Selected_Hover_BorderColor:#fabd64;--sapButton_Negative_Background:#f88;--sapButton_Negative_BorderColor:#f88;--sapButton_Negative_TextColor:#29313a;--sapButton_Negative_Hover_Background:#ffa2a2;--sapButton_Negative_Hover_BorderColor:#ffa2a2;--sapButton_Negative_Hover_TextColor:#29313a;--sapButton_Negative_Active_Background:#fbb;--sapButton_Negative_Active_BorderColor:#fbb;--sapButton_Critical_Background:#fabd64;--sapButton_Critical_BorderColor:#fabd64;--sapButton_Critical_TextColor:#29313a;--sapButton_Critical_Hover_Background:#fbc87d;--sapButton_Critical_Hover_BorderColor:#fbc87d;--sapButton_Critical_Hover_TextColor:#29313a;--sapButton_Critical_Active_Background:#fcd295;--sapButton_Critical_Active_BorderColor:#fcd295;--sapButton_Success_Background:#abe2ab;--sapButton_Success_BorderColor:#abe2ab;--sapButton_Success_TextColor:#29313a;--sapButton_Success_Hover_Background:#bee9be;--sapButton_Success_Hover_BorderColor:#bee9be;--sapButton_Success_Hover_TextColor:#29313a;--sapButton_Success_Active_Background:#d1efd1;--sapButton_Success_Active_BorderColor:#d1efd1;--sapButton_Information_Background:#91c8f6;--sapButton_Information_BorderColor:#91c8f6;--sapButton_Information_TextColor:#29313a;--sapButton_Information_Hover_Background:#a9d4f8;--sapButton_Information_Hover_BorderColor:#a9d4f8;--sapButton_Information_Hover_TextColor:#29313a;--sapButton_Information_Active_Background:#c0e0fa;--sapButton_Information_Active_BorderColor:#c0e0fa;--sapButton_Neutral_Background:#d3d7d9;--sapButton_Neutral_BorderColor:#d3d7d9;--sapButton_Neutral_TextColor:#29313a;--sapButton_Neutral_Hover_Background:#e1e3e5;--sapButton_Neutral_Hover_BorderColor:#e1e3e5;--sapButton_Neutral_Hover_TextColor:#29313a;--sapButton_Neutral_Active_Background:#eef0f1;--sapButton_Neutral_Active_BorderColor:#eef0f1;--sapButton_Track_Selected_Background:#062e4f;--sapButton_Track_Selected_TextColor:#fafafa;--sapButton_Track_Background:#38434f;--sapButton_Track_TextColor:#fafafa;--sapButton_TokenBackground:#29313a;--sapButton_TokenBorderColor:#687d94;--sapField_Background:#29313a;--sapField_TextColor:#fafafa;--sapField_PlaceholderTextColor:#b8bec1;--sapField_BorderColor:#8696a9;--sapField_HelpBackground:#29313a;--sapField_BorderWidth:.0625rem;--sapField_BorderCornerRadius:.125rem;--sapField_Hover_Background:#29313a;--sapField_Hover_BorderColor:#91c8f6;--sapField_Hover_HelpBackground:#062e4f;--sapField_Active_BorderColor:#91c8f6;--sapField_Focus_Background:#29313a;--sapField_Focus_BorderColor:#8696a9;--sapField_Focus_HelpBackground:#29313a;--sapField_ReadOnly_Background:rgba(58,69,82,0.5);--sapField_ReadOnly_BorderColor:#546375;--sapField_ReadOnly_HelpBackground:rgba(58,69,82,0.5);--sapField_RequiredColor:#e7a1a1;--sapField_InvalidColor:#f88;--sapField_InvalidBackground:#29313a;--sapField_WarningColor:#fabd64;--sapField_WarningBackground:#29313a;--sapField_SuccessColor:#abe2ab;--sapField_SuccessBackground:#29313a;--sapField_InformationColor:#91c8f6;--sapField_InformationBackground:#29313a;--sapGroup_TitleBackground:transparent;--sapGroup_TitleBorderColor:#495767;--sapGroup_TitleTextColor:#fafafa;--sapGroup_ContentBackground:#29313a;--sapGroup_ContentBorderColor:#3e4a58;--sapGroup_BorderWidth:.0625rem;--sapGroup_BorderCornerRadius:0;--sapGroup_FooterBackground:transparent;--sapToolbar_Background:transparent;--sapToolbar_SeparatorColor:#495767;--sapList_HeaderBackground:#232931;--sapList_HeaderBorderColor:#3a4552;--sapList_HeaderTextColor:#fafafa;--sapList_BorderColor:#3a4552;--sapList_TextColor:#fafafa;--sapList_Active_TextColor:#29313a;--sapList_BorderWidth:.0625rem;--sapList_SelectionBackgroundColor:#344b5f;--sapList_SelectionBorderColor:#91c8f6;--sapList_Hover_SelectionBackground:#395369;--sapList_Background:#29313a;--sapList_Hover_Background:#2f3943;--sapList_AlternatingBackground:#2d3640;--sapList_GroupHeaderBackground:#29313a;--sapList_GroupHeaderBorderColor:#64778e;--sapList_GroupHeaderTextColor:#fafafa;--sapList_FooterBackground:#252c34;--sapList_FooterTextColor:#fafafa;--sapList_TableGroupHeaderBackground:#1c2228;--sapList_TableGroupHeaderBorderColor:#5a6b7f;--sapList_TableGroupHeaderTextColor:#fafafa;--sapList_TableFooterBorder:#4b596a;--sapList_TableFixedBorderColor:#8091a5;--sapList_Active_Background:#91c8f6;--sapScrollBar_FaceColor:#506273;--sapScrollBar_TrackColor:#090b0d;--sapScrollBar_BorderColor:#506273;--sapScrollBar_SymbolColor:#91c8f6;--sapScrollBar_Dimension:.75rem;--sapScrollBar_Hover_FaceColor:#4a5a6a;--sapPageHeader_Background:#29313a;--sapPageHeader_BorderColor:#3a4552;--sapPageHeader_TextColor:#fafafa;--sapPageFooter_Background:#2c3d50;--sapPageFooter_BorderColor:#3a516a;--sapPageFooter_TextColor:#fafafa;--sapInfobar_Background:#7fc6c6;--sapInfobar_Hover_Background:#74c1c1;--sapInfobar_Active_Background:#58b5b5;--sapObjectHeader_Background:#29313a;--sapObjectHeader_BorderColor:#3a4552;--sapBlockLayer_Background:#000;--sapTile_Background:#29313a;--sapTile_Hover_Background:#21272e;--sapTile_Active_Background:#21272e;--sapTile_BorderColor:transparent;--sapTile_TitleTextColor:#fafafa;--sapTile_TextColor:#d3d7d9;--sapTile_IconColor:#89a3bd;--sapTile_SeparatorColor:#424f5e;--sapAccentColor1:#ffc847;--sapAccentColor2:#e7a1a1;--sapAccentColor3:#f37aa2;--sapAccentColor4:#e269c9;--sapAccentColor5:#8ca7d5;--sapAccentColor6:#6bd3ff;--sapAccentColor7:#7fc6c6;--sapAccentColor8:#b2e484;--sapAccentColor9:#b995e0;--sapAccentColor10:#b0bcc5;--sapLegend_WorkingBackground:#2d3640;--sapLegend_NonWorkingBackground:#445261;--sapLegend_CurrentDateTime:#e269c9;--sapLegendColor1:#f0b25f;--sapLegendColor2:#f58c4b;--sapLegendColor3:#d88b8b;--sapLegendColor4:#bd8969;--sapLegendColor5:#de54c1;--sapLegendColor6:#6bd3ff;--sapLegendColor7:#21c4c4;--sapLegendColor8:#afd645;--sapLegendColor9:#b0bcc5;--sapLegendColor10:#bb8aaf;--sapLegendColor11:#d1b575;--sapLegendColor12:#ffb98d;--sapLegendColor13:#ffa1a1;--sapLegendColor14:#d5b39e;--sapLegendColor15:#b7a8b3;--sapLegendColor16:#bbbcd2;--sapLegendColor17:#a2c2c2;--sapLegendColor18:#aabc78;--sapLegendColor19:#a9d4ff;--sapLegendColor20:#c3c5fd;--sapLegendBackgroundColor1:#402706;--sapLegendBackgroundColor2:#421c04;--sapLegendBackgroundColor3:#341111;--sapLegendBackgroundColor4:#302015;--sapLegendBackgroundColor5:#3c0c32;--sapLegendBackgroundColor6:#003247;--sapLegendBackgroundColor7:#0a3d3d;--sapLegendBackgroundColor8:#303d0d;--sapLegendBackgroundColor9:#1f252a;--sapLegendBackgroundColor10:#2c1a28;--sapLegendBackgroundColor11:#352a12;--sapLegendBackgroundColor12:#461b00;--sapLegendBackgroundColor13:#450000;--sapLegendBackgroundColor14:#312015;--sapLegendBackgroundColor15:#272025;--sapLegendBackgroundColor16:#1c1d2a;--sapLegendBackgroundColor17:#1c2b2b;--sapLegendBackgroundColor18:#2b3118;--sapLegendBackgroundColor19:#002448;--sapLegendBackgroundColor20:#020544;--sapChart_OrderedColor_1:#5899da;--sapChart_OrderedColor_2:#e8743b;--sapChart_OrderedColor_3:#19a979;--sapChart_OrderedColor_4:#ed4a7b;--sapChart_OrderedColor_5:#945ecf;--sapChart_OrderedColor_6:#13a4b4;--sapChart_OrderedColor_7:#525df4;--sapChart_OrderedColor_8:#bf399e;--sapChart_OrderedColor_9:#6c8893;--sapChart_OrderedColor_10:#ee6868;--sapChart_OrderedColor_11:#2f6497;--sapChart_Bad:#dc0d0e;--sapChart_Critical:#de890d;--sapChart_Good:#3fa45b;--sapChart_Neutral:#848f94;--sapChart_Sequence_1:#5899da;--sapChart_Sequence_2:#e8743b;--sapChart_Sequence_3:#19a979;--sapChart_Sequence_4:#ed4a7b;--sapChart_Sequence_5:#945ecf;--sapChart_Sequence_6:#13a4b4;--sapChart_Sequence_7:#525df4;--sapChart_Sequence_8:#bf399e;--sapChart_Sequence_9:#6c8893;--sapChart_Sequence_10:#ee6868;--sapChart_Sequence_11:#2f6497;--sapChart_Sequence_Neutral:#848f94;}"}
|