@openui5/sap.ui.integration 1.124.2 → 1.126.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 +9 -4
- package/THIRDPARTY.txt +13 -6
- package/package.json +7 -7
- package/src/sap/ui/integration/.library +3 -3
- package/src/sap/ui/integration/ActionDefinition.js +1 -1
- package/src/sap/ui/integration/Designtime.js +1 -1
- package/src/sap/ui/integration/Extension.js +1 -1
- package/src/sap/ui/integration/Host.js +9 -1
- package/src/sap/ui/integration/cards/AdaptiveContent.js +1 -1
- package/src/sap/ui/integration/cards/AnalyticalContent.js +1 -1
- package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +136 -207
- package/src/sap/ui/integration/cards/BaseContent.js +2 -1
- package/src/sap/ui/integration/cards/BaseListContent.js +1 -1
- package/src/sap/ui/integration/cards/CalendarContent.js +1 -1
- package/src/sap/ui/integration/cards/ComponentContent.js +1 -1
- package/src/sap/ui/integration/cards/Footer.js +1 -1
- package/src/sap/ui/integration/cards/Header.js +1 -1
- package/src/sap/ui/integration/cards/ListContent.js +2 -7
- package/src/sap/ui/integration/cards/NumericHeader.js +7 -1
- package/src/sap/ui/integration/cards/ObjectContent.js +1 -1
- package/src/sap/ui/integration/cards/TableContent.js +2 -2
- package/src/sap/ui/integration/cards/TimelineContent.js +33 -3
- package/src/sap/ui/integration/cards/WebPageContent.js +39 -14
- package/src/sap/ui/integration/cards/WebPageContentRenderer.js +15 -3
- package/src/sap/ui/integration/cards/actions/CardActions.js +1 -1
- package/src/sap/ui/integration/cards/actions/ShowCardAction.js +4 -0
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +1 -1
- package/src/sap/ui/integration/cards/filters/BaseFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/ComboBoxFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/FilterBar.js +1 -1
- package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +1 -1
- package/src/sap/ui/integration/cards/filters/SearchFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/SelectFilter.js +1 -1
- package/src/sap/ui/integration/cards/list/MicrochartsResizeHelper.js +1 -1
- package/src/sap/ui/integration/controls/ActionsStrip.js +2 -1
- package/src/sap/ui/integration/controls/ActionsToolbar.js +9 -1
- package/src/sap/ui/integration/controls/BlockingMessage.js +35 -1
- package/src/sap/ui/integration/controls/ImageWithOverlay.js +1 -1
- package/src/sap/ui/integration/controls/LinkWithIcon.js +1 -1
- package/src/sap/ui/integration/controls/ListContentItem.js +23 -6
- package/src/sap/ui/integration/controls/Microchart.js +3 -2
- package/src/sap/ui/integration/controls/MicrochartLegend.js +1 -1
- package/src/sap/ui/integration/controls/ObjectStatus.js +1 -1
- package/src/sap/ui/integration/controls/Paginator.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_sh.properties +17 -17
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/codeEditor/CodeEditor.js +18 -5
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/objectArrayEditor/ObjectArrayEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/EvalUtils.js +42 -0
- package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sh.properties +30 -30
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +1 -1
- package/src/sap/ui/integration/designtime/editor/Card.js +3 -1
- package/src/sap/ui/integration/designtime/editor/CardEditor.js +1 -1
- package/src/sap/ui/integration/designtime/editor/CardPreview.js +35 -1
- package/src/sap/ui/integration/designtime/editor/css/CardPreview.css +27 -1
- package/src/sap/ui/integration/editor/Editor.js +8 -4
- package/src/sap/ui/integration/editor/EditorResourceBundles.js +1 -1
- package/src/sap/ui/integration/editor/Extension.js +1 -1
- package/src/sap/ui/integration/editor/Manifest.js +1 -1
- package/src/sap/ui/integration/editor/Settings.js +1 -1
- package/src/sap/ui/integration/editor/fields/BaseField.js +1 -1
- package/src/sap/ui/integration/editor/fields/BooleanField.js +1 -1
- package/src/sap/ui/integration/editor/fields/DateField.js +1 -1
- package/src/sap/ui/integration/editor/fields/DateTimeField.js +1 -1
- package/src/sap/ui/integration/editor/fields/DestinationField.js +1 -1
- package/src/sap/ui/integration/editor/fields/GroupField.js +1 -1
- package/src/sap/ui/integration/editor/fields/IntegerField.js +1 -1
- package/src/sap/ui/integration/editor/fields/NumberField.js +1 -1
- package/src/sap/ui/integration/editor/fields/ObjectField.js +1 -1
- package/src/sap/ui/integration/editor/fields/ObjectListField.js +1 -1
- package/src/sap/ui/integration/editor/fields/StringField.js +1 -1
- package/src/sap/ui/integration/editor/fields/StringListField.js +1 -1
- package/src/sap/ui/integration/editor/fields/fragment/Controller.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/ImageSelect.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/VizBase.js +1 -1
- package/src/sap/ui/integration/extensions/OAuth3LO.js +2 -1
- package/src/sap/ui/integration/library.js +27 -2
- package/src/sap/ui/integration/messagebundle.properties +6 -0
- package/src/sap/ui/integration/messagebundle_ar.properties +5 -1
- 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_cnr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cs.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cy.properties +5 -1
- 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_saprigi.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 +5 -1
- package/src/sap/ui/integration/messagebundle_mk.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_sr.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 +1 -1
- package/src/sap/ui/integration/model/ObservableModel.js +1 -1
- package/src/sap/ui/integration/model/PagingModelListBinding.js +1 -1
- package/src/sap/ui/integration/schemas/sap-card.json +59 -28
- package/src/sap/ui/integration/themes/base/AnalyticsCloudContent.less +11 -85
- package/src/sap/ui/integration/themes/base/Card.less +43 -0
- package/src/sap/ui/integration/themes/base/CardVariants.less +246 -0
- package/src/sap/ui/integration/themes/base/library.source.less +1 -1
- package/src/sap/ui/integration/themes/sap_hcb/base_ActionsStrip.less +26 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_AdaptiveCard.less +8 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_AnalyticsCloudContent.less +21 -0
- package/src/sap/ui/integration/themes/sap_hcb/{ListContentItem.less → base_BlockingMessage.less} +7 -2
- package/src/sap/ui/integration/themes/sap_hcb/base_CalendarContent.less +247 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_Card.less +77 -0
- package/src/sap/ui/integration/themes/{base/CardTileVariant.less → sap_hcb/base_CardVariants.less} +84 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_CustomElementBase.less +14 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_CustomElementCard.less +10 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_Footer.less +10 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_ImageWithOverlay.less +69 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_LinkWithIcon.less +11 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_ListContentItem.less +164 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_Microchart.less +62 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_MicrochartLegend.less +52 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_ObjectContent.less +181 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_ObjectStatus.less +58 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_Paginator.less +125 -0
- package/src/sap/ui/integration/themes/sap_hcb/base_WebPageContent.less +16 -0
- package/src/sap/ui/integration/themes/sap_hcb/library.source.less +31 -1
- package/src/sap/ui/integration/util/AnalyticsCloudHelper.js +103 -0
- package/src/sap/ui/integration/util/BaseFactory.js +1 -1
- package/src/sap/ui/integration/util/BindingHelper.js +1 -1
- package/src/sap/ui/integration/util/BindingResolver.js +1 -1
- package/src/sap/ui/integration/util/CardMerger.js +16 -1
- package/src/sap/ui/integration/util/CardObserver.js +1 -1
- package/src/sap/ui/integration/util/ComboBoxHelper.js +1 -1
- package/src/sap/ui/integration/util/ContentFactory.js +4 -1
- package/src/sap/ui/integration/util/CsrfTokenHandler.js +1 -1
- package/src/sap/ui/integration/util/DataProvider.js +1 -1
- package/src/sap/ui/integration/util/DataProviderFactory.js +1 -1
- package/src/sap/ui/integration/util/Destinations.js +1 -1
- package/src/sap/ui/integration/util/DisplayVariants.js +132 -0
- package/src/sap/ui/integration/util/ErrorHandler.js +1 -1
- package/src/sap/ui/integration/util/ExtensionDataProvider.js +1 -1
- package/src/sap/ui/integration/util/Form.js +1 -1
- package/src/sap/ui/integration/util/HeaderFactory.js +46 -3
- package/src/sap/ui/integration/util/JSONBindingHelper.js +1 -1
- package/src/sap/ui/integration/util/LoadingProvider.js +1 -1
- package/src/sap/ui/integration/util/Manifest.js +1 -1
- package/src/sap/ui/integration/util/OAuth3LOHelper.js +1 -1
- package/src/sap/ui/integration/util/RequestDataProvider.js +1 -1
- package/src/sap/ui/integration/util/ServiceDataProvider.js +1 -1
- package/src/sap/ui/integration/util/ServiceManager.js +1 -1
- package/src/sap/ui/integration/util/SkeletonCard.js +1 -1
- package/src/sap/ui/integration/util/Utils.js +22 -3
- package/src/sap/ui/integration/util/Validators.js +1 -1
- package/src/sap/ui/integration/widgets/Card.js +85 -10
|
@@ -47,6 +47,10 @@ CARD_ERROR_REQUEST_DETAILS=Ett fel intr\u00E4ffade vid beg\u00E4ran av "{0}". Ko
|
|
|
47
47
|
|
|
48
48
|
CARD_ERROR_REQUEST_TIMEOUT_DETAILS=Timeout intr\u00E4ffade vid beg\u00E4ran av "{0}". Kontakta systemadministrat\u00F6ren.
|
|
49
49
|
|
|
50
|
+
CARD_ERROR_ANALYTICS_CLOUD_TITLE=Widget kan inte initialiseras
|
|
51
|
+
|
|
52
|
+
CARD_ERROR_ANALYTICS_CLOUD_DESCRIPTION=Kontakta teknisk support
|
|
53
|
+
|
|
50
54
|
CARD_LOG_MSG=Protokollmeddelande\:
|
|
51
55
|
|
|
52
56
|
CARD_REQUEST_SETTINGS=Inst\u00E4llningar f\u00F6r beg\u00E4ran\:
|
|
@@ -47,6 +47,10 @@ CARD_ERROR_REQUEST_DETAILS=\u0E21\u0E35\u0E02\u0E49\u0E2D\u0E1C\u0E34\u0E14\u0E1
|
|
|
47
47
|
|
|
48
48
|
CARD_ERROR_REQUEST_TIMEOUT_DETAILS=\u0E21\u0E35\u0E01\u0E32\u0E23\u0E2B\u0E21\u0E14\u0E40\u0E27\u0E25\u0E32\u0E40\u0E01\u0E34\u0E14\u0E02\u0E36\u0E49\u0E19\u0E02\u0E13\u0E30\u0E02\u0E2D "{0}" \u0E01\u0E23\u0E38\u0E13\u0E32\u0E15\u0E34\u0E14\u0E15\u0E48\u0E2D\u0E1C\u0E39\u0E49\u0E14\u0E39\u0E41\u0E25\u0E23\u0E30\u0E1A\u0E1A\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13
|
|
49
49
|
|
|
50
|
+
CARD_ERROR_ANALYTICS_CLOUD_TITLE=\u0E44\u0E21\u0E48\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E40\u0E23\u0E34\u0E48\u0E21\u0E15\u0E49\u0E19\u0E02\u0E2D\u0E07 Widget
|
|
51
|
+
|
|
52
|
+
CARD_ERROR_ANALYTICS_CLOUD_DESCRIPTION=\u0E15\u0E34\u0E14\u0E15\u0E48\u0E2D\u0E1D\u0E48\u0E32\u0E22\u0E2A\u0E19\u0E31\u0E1A\u0E2A\u0E19\u0E38\u0E19\u0E17\u0E32\u0E07\u0E40\u0E17\u0E04\u0E19\u0E34\u0E04
|
|
53
|
+
|
|
50
54
|
CARD_LOG_MSG=\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E25\u0E47\u0E2D\u0E01\:
|
|
51
55
|
|
|
52
56
|
CARD_REQUEST_SETTINGS=\u0E01\u0E32\u0E23\u0E01\u0E33\u0E2B\u0E19\u0E14\u0E04\u0E48\u0E32\u0E04\u0E33\u0E02\u0E2D\:
|
|
@@ -47,6 +47,10 @@ CARD_ERROR_REQUEST_DETAILS="{0}" talep edilirken hata olu\u015Ftu. Sistem y\u00F
|
|
|
47
47
|
|
|
48
48
|
CARD_ERROR_REQUEST_TIMEOUT_DETAILS="{0}" talep edilirken zaman a\u015F\u0131m\u0131 olu\u015Ftu. Sistem y\u00F6neticisiyle irtibata ge\u00E7in.
|
|
49
49
|
|
|
50
|
+
CARD_ERROR_ANALYTICS_CLOUD_TITLE=Widget ba\u015Flat\u0131lam\u0131yor
|
|
51
|
+
|
|
52
|
+
CARD_ERROR_ANALYTICS_CLOUD_DESCRIPTION=Teknik destekle irtibata ge\u00E7in
|
|
53
|
+
|
|
50
54
|
CARD_LOG_MSG=G\u00FCnl\u00FCk iletisi\:
|
|
51
55
|
|
|
52
56
|
CARD_REQUEST_SETTINGS=Talep ayarlar\u0131\:
|
|
@@ -47,6 +47,10 @@ CARD_ERROR_REQUEST_DETAILS=\u0421\u0442\u0430\u043B\u0430\u0441\u044F \u043F\u04
|
|
|
47
47
|
|
|
48
48
|
CARD_ERROR_REQUEST_TIMEOUT_DETAILS=\u041F\u0440\u0438 \u0437\u0430\u043F\u0438\u0442\u0456 "{0}" \u0447\u0430\u0441 \u043E\u0447\u0456\u043A\u0443\u0432\u0430\u043D\u043D\u044F \u0432\u0438\u0447\u0435\u0440\u043F\u0430\u043D\u043E. \u0417\u0432\u0435\u0440\u043D\u0456\u0442\u044C\u0441\u044F \u0434\u043E \u0441\u0438\u0441\u0442\u0435\u043C\u043D\u043E\u0433\u043E \u0430\u0434\u043C\u0456\u043D\u0456\u0441\u0442\u0440\u0430\u0442\u043E\u0440\u0430.
|
|
49
49
|
|
|
50
|
+
CARD_ERROR_ANALYTICS_CLOUD_TITLE=\u041D\u0435 \u0432\u0434\u0430\u0454\u0442\u044C\u0441\u044F \u0456\u043D\u0456\u0446\u0456\u0430\u043B\u0456\u0437\u0443\u0432\u0430\u0442\u0438 \u0432\u0456\u0434\u0436\u0435\u0442
|
|
51
|
+
|
|
52
|
+
CARD_ERROR_ANALYTICS_CLOUD_DESCRIPTION=\u0417\u0432\u0435\u0440\u043D\u0456\u0442\u044C\u0441\u044F \u0434\u043E \u0441\u043B\u0443\u0436\u0431\u0438 \u0442\u0435\u0445\u043D\u0456\u0447\u043D\u043E\u0457 \u043F\u0456\u0434\u0442\u0440\u0438\u043C\u043A\u0438
|
|
53
|
+
|
|
50
54
|
CARD_LOG_MSG=\u041F\u043E\u0432\u0456\u0434\u043E\u043C\u043B\u0435\u043D\u043D\u044F \u0436\u0443\u0440\u043D\u0430\u043B\u0443\:
|
|
51
55
|
|
|
52
56
|
CARD_REQUEST_SETTINGS=\u041D\u0430\u0441\u0442\u0440\u043E\u0439\u043A\u0438 \u0437\u0430\u043F\u0438\u0442\u0443\:
|
|
@@ -47,6 +47,10 @@ CARD_ERROR_REQUEST_DETAILS=\u0110a\u0303 xa\u0309y ra l\u00F4\u0303i trong khi y
|
|
|
47
47
|
|
|
48
48
|
CARD_ERROR_REQUEST_TIMEOUT_DETAILS=\u0110a\u0303 xa\u0309y ra h\u1EBFt gi\u1EDD trong khi y\u00EAu c\u1EA7u "{0}". Vui lo\u0300ng li\u00EAn h\u00EA\u0323 ng\u01B0\u01A1\u0300i qua\u0309n tri\u0323 h\u00EA\u0323 th\u00F4\u0301ng.
|
|
49
49
|
|
|
50
|
+
CARD_ERROR_ANALYTICS_CLOUD_TITLE=Kh\u00F4ng th\u00EA\u0309 kh\u01A1\u0309i ta\u0323o widget
|
|
51
|
+
|
|
52
|
+
CARD_ERROR_ANALYTICS_CLOUD_DESCRIPTION=Li\u00EAn h\u1EC7 h\u1ED7 tr\u1EE3 k\u1EF9 thu\u1EADt
|
|
53
|
+
|
|
50
54
|
CARD_LOG_MSG=Th\u00F4ng ba\u0301o nh\u00E2\u0323t ky\u0301\:
|
|
51
55
|
|
|
52
56
|
CARD_REQUEST_SETTINGS=Thi\u1EBFt l\u00E2\u0323p y\u00EAu c\u1EA7u\:
|
|
@@ -47,6 +47,10 @@ CARD_ERROR_REQUEST_DETAILS=\u8BF7\u6C42 "{0}" \u65F6\u51FA\u9519\u3002\u8BF7\u4E
|
|
|
47
47
|
|
|
48
48
|
CARD_ERROR_REQUEST_TIMEOUT_DETAILS=\u8BF7\u6C42 "{0}" \u65F6\u53D1\u751F\u8D85\u65F6\u3002\u8BF7\u4E0E\u7CFB\u7EDF\u7BA1\u7406\u5458\u8054\u7CFB\u3002
|
|
49
49
|
|
|
50
|
+
CARD_ERROR_ANALYTICS_CLOUD_TITLE=\u65E0\u6CD5\u521D\u59CB\u5316\u7A97\u53E3\u5C0F\u90E8\u4EF6
|
|
51
|
+
|
|
52
|
+
CARD_ERROR_ANALYTICS_CLOUD_DESCRIPTION=\u4E0E\u6280\u672F\u652F\u6301\u8054\u7CFB
|
|
53
|
+
|
|
50
54
|
CARD_LOG_MSG=\u65E5\u5FD7\u6D88\u606F\uFF1A
|
|
51
55
|
|
|
52
56
|
CARD_REQUEST_SETTINGS=\u8BF7\u6C42\u8BBE\u7F6E\uFF1A
|
|
@@ -47,6 +47,10 @@ CARD_ERROR_REQUEST_DETAILS=\u8ACB\u6C42 "{0}" \u6642\u767C\u751F\u932F\u8AA4\uFF
|
|
|
47
47
|
|
|
48
48
|
CARD_ERROR_REQUEST_TIMEOUT_DETAILS=\u8ACB\u6C42 "{0}" \u6642\u767C\u751F\u903E\u6642\uFF0C\u8ACB\u806F\u7D61\u7CFB\u7D71\u7BA1\u7406\u54E1\u3002
|
|
49
49
|
|
|
50
|
+
CARD_ERROR_ANALYTICS_CLOUD_TITLE=\u7121\u6CD5\u521D\u59CB\u5316\u5C0F\u5DE5\u5177
|
|
51
|
+
|
|
52
|
+
CARD_ERROR_ANALYTICS_CLOUD_DESCRIPTION=\u806F\u7D61\u6280\u8853\u652F\u63F4
|
|
53
|
+
|
|
50
54
|
CARD_LOG_MSG=\u65E5\u8A8C\u8A0A\u606F\uFF1A
|
|
51
55
|
|
|
52
56
|
CARD_REQUEST_SETTINGS=\u8ACB\u6C42\u8A2D\u5B9A\uFF1A
|
|
@@ -54,7 +54,9 @@
|
|
|
54
54
|
"1.41.0",
|
|
55
55
|
"1.42.0",
|
|
56
56
|
"1.43.0",
|
|
57
|
-
"1.44.0"
|
|
57
|
+
"1.44.0",
|
|
58
|
+
"1.45.0",
|
|
59
|
+
"1.46.0"
|
|
58
60
|
]
|
|
59
61
|
},
|
|
60
62
|
"designtime": {
|
|
@@ -1272,33 +1274,7 @@
|
|
|
1272
1274
|
"ContentType.AnalyticsCloud": {
|
|
1273
1275
|
"description": "Represents SAP Analytics Cloud content attributes",
|
|
1274
1276
|
"type": "object",
|
|
1275
|
-
"additionalProperties":
|
|
1276
|
-
"properties": {
|
|
1277
|
-
"data": {
|
|
1278
|
-
"$ref": "#/definitions/data"
|
|
1279
|
-
},
|
|
1280
|
-
"minHeight": {
|
|
1281
|
-
"$ref": "#/definitions/minHeight"
|
|
1282
|
-
},
|
|
1283
|
-
"actions": {
|
|
1284
|
-
"description": "Defines actions that can be applied on the content",
|
|
1285
|
-
"type": "array",
|
|
1286
|
-
"items": {
|
|
1287
|
-
"$ref": "#/definitions/action"
|
|
1288
|
-
}
|
|
1289
|
-
},
|
|
1290
|
-
"options": {
|
|
1291
|
-
"description": "Options of the chart",
|
|
1292
|
-
"oneOf": [
|
|
1293
|
-
{
|
|
1294
|
-
"type": "object"
|
|
1295
|
-
},
|
|
1296
|
-
{
|
|
1297
|
-
"$ref": "#/definitions/simpleBinding"
|
|
1298
|
-
}
|
|
1299
|
-
]
|
|
1300
|
-
}
|
|
1301
|
-
}
|
|
1277
|
+
"additionalProperties": true
|
|
1302
1278
|
},
|
|
1303
1279
|
"ContentType.Timeline": {
|
|
1304
1280
|
"description": "Represents time related content",
|
|
@@ -2507,6 +2483,34 @@
|
|
|
2507
2483
|
"sandbox": {
|
|
2508
2484
|
"description": "Sandbox attribute of the iframe",
|
|
2509
2485
|
"type": "string"
|
|
2486
|
+
},
|
|
2487
|
+
"allow": {
|
|
2488
|
+
"description": "Allow attribute of the iframe",
|
|
2489
|
+
"type": "string"
|
|
2490
|
+
},
|
|
2491
|
+
"allowfullscreen": {
|
|
2492
|
+
"description": "Allowfullscreen attribute of the iframe",
|
|
2493
|
+
"oneOf": [
|
|
2494
|
+
{
|
|
2495
|
+
"type": "boolean",
|
|
2496
|
+
"default": false
|
|
2497
|
+
},
|
|
2498
|
+
{
|
|
2499
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2500
|
+
}
|
|
2501
|
+
]
|
|
2502
|
+
},
|
|
2503
|
+
"omitSandbox": {
|
|
2504
|
+
"description": "If set to 'true' the 'sandbox' attribute will not be added to the iframe.",
|
|
2505
|
+
"oneOf": [
|
|
2506
|
+
{
|
|
2507
|
+
"type": "boolean",
|
|
2508
|
+
"default": false
|
|
2509
|
+
},
|
|
2510
|
+
{
|
|
2511
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2512
|
+
}
|
|
2513
|
+
]
|
|
2510
2514
|
}
|
|
2511
2515
|
}
|
|
2512
2516
|
},
|
|
@@ -2645,6 +2649,21 @@
|
|
|
2645
2649
|
}
|
|
2646
2650
|
]
|
|
2647
2651
|
},
|
|
2652
|
+
"fitType": {
|
|
2653
|
+
"description": "Defines how the image fits in the icon area",
|
|
2654
|
+
"oneOf": [
|
|
2655
|
+
{
|
|
2656
|
+
"enum": [
|
|
2657
|
+
"Cover",
|
|
2658
|
+
"Contain"
|
|
2659
|
+
],
|
|
2660
|
+
"default": "Cover"
|
|
2661
|
+
},
|
|
2662
|
+
{
|
|
2663
|
+
"$ref": "#/definitions/simpleBinding"
|
|
2664
|
+
}
|
|
2665
|
+
]
|
|
2666
|
+
},
|
|
2648
2667
|
"backgroundColor": {
|
|
2649
2668
|
"$ref": "#/definitions/iconBackgroundColor"
|
|
2650
2669
|
},
|
|
@@ -3896,6 +3915,18 @@
|
|
|
3896
3915
|
"description": "The value, which will be displayed as a text next to the bar",
|
|
3897
3916
|
"type": "string"
|
|
3898
3917
|
},
|
|
3918
|
+
"displayZeroValue": {
|
|
3919
|
+
"description": "Defines whether bars with zero values are displayed",
|
|
3920
|
+
"oneOf": [
|
|
3921
|
+
{
|
|
3922
|
+
"type": "boolean",
|
|
3923
|
+
"default": true
|
|
3924
|
+
},
|
|
3925
|
+
{
|
|
3926
|
+
"$ref": "#/definitions/simpleBinding"
|
|
3927
|
+
}
|
|
3928
|
+
]
|
|
3929
|
+
},
|
|
3899
3930
|
"bars": {
|
|
3900
3931
|
"description": "The bars of the chart",
|
|
3901
3932
|
"type": "array",
|
|
@@ -3,92 +3,18 @@
|
|
|
3
3
|
/* Base theme */
|
|
4
4
|
/* =========================================================== */
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
.sapFCardContent {
|
|
6
|
+
.sapFCard {
|
|
7
|
+
.sapFCardContent:has(.sapFCardAnalyticsCloudContent),
|
|
9
8
|
.sapFCardAnalyticsCloudContent {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
font-family: @sapUiFontFamily !important;
|
|
13
|
-
font-size: @sapMFontSmallSize !important;
|
|
14
|
-
fill: @sapUiTileTextColor !important;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
.highcharts-text-outline[stroke-width="2px"] {
|
|
18
|
-
fill: @sapUiContentFocusColor !important;
|
|
19
|
-
stroke: @sapUiBaseColor !important;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
.highcharts-text-outline[stroke-width="2px"] + tspan {
|
|
23
|
-
fill: @sapUiContentFocusColor !important;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.highcharts-title {
|
|
27
|
-
font-family: @sapUiFontHeaderFamily !important;
|
|
28
|
-
font-size: @sapMFontHeader5Size !important;
|
|
29
|
-
font-weight: @sapUiFontHeaderWeight !important;
|
|
30
|
-
fill: @sapUiTileTitleTextColor !important;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.highcharts-subtitle {
|
|
34
|
-
font-family: @sapUiFontFamily !important;
|
|
35
|
-
font-size: @sapMFontMediumSize !important;
|
|
36
|
-
font-weight: normal !important;
|
|
37
|
-
fill: @sapUiTileTextColor !important;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.highcharts-axis {
|
|
41
|
-
path[stroke] {
|
|
42
|
-
stroke: @sapUiText !important;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
.highcharts-legend {
|
|
47
|
-
> rect[fill] {
|
|
48
|
-
fill: @sapUiTileBackground !important;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
> rect[stroke] {
|
|
52
|
-
stroke: @sapUiTileBorderColor !important;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.highcharts-tooltip-box {
|
|
57
|
-
color: @sapUiTileTitleTextColor !important;
|
|
58
|
-
fill: @sapUiTileBackground;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.highcharts-background {
|
|
62
|
-
fill: @sapUiTileBackground;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
.highcharts-scrollbar * {
|
|
66
|
-
fill: transparent;
|
|
67
|
-
stroke: transparent;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
&:hover .highcharts-scrollbar {
|
|
71
|
-
.highcharts-scrollbar-thumb {
|
|
72
|
-
fill: @sapUiScrollBarFaceColor;
|
|
73
|
-
width: 6px;
|
|
74
|
-
}
|
|
9
|
+
overflow: visible;
|
|
10
|
+
}
|
|
75
11
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
}
|
|
12
|
+
.sapFCardContent:has(.sapFCardAnalyticsCloudContent) {
|
|
13
|
+
padding-bottom: 0.8rem;
|
|
14
|
+
}
|
|
80
15
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
width: 6px;
|
|
85
|
-
transform: translateX(-0.5px);
|
|
86
|
-
}
|
|
87
|
-
}
|
|
88
|
-
}
|
|
89
|
-
.sapFCardAnalyticsCloudContentHCC {
|
|
90
|
-
height: 100%;
|
|
91
|
-
width: 100%;
|
|
92
|
-
}
|
|
16
|
+
.sapUiIntAnalyticsCloudContentContainer {
|
|
17
|
+
height: 100%;
|
|
18
|
+
width: 100%;
|
|
93
19
|
}
|
|
94
|
-
}
|
|
20
|
+
}
|
|
@@ -8,12 +8,43 @@
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.sapUiIntCardDialog {
|
|
11
|
+
.sapMDialogSection,
|
|
12
|
+
.sapMDialogScroll,
|
|
13
|
+
.sapMDialogScrollCont,
|
|
14
|
+
.sapUiIntCard {
|
|
15
|
+
/* allows scrolling inside the card content instead of dialog content */
|
|
16
|
+
max-height: inherit;
|
|
17
|
+
}
|
|
18
|
+
|
|
11
19
|
.sapUiIntCard {
|
|
12
20
|
border-radius: @sapUiElementBorderCornerRadius;
|
|
13
21
|
|
|
22
|
+
.sapFCardHeader {
|
|
23
|
+
box-shadow: @sapUiContentHeaderShadow;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&:has(.sapFCardFilterBar) .sapFCardHeader {
|
|
27
|
+
box-shadow: unset;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.sapFCardFilterBar {
|
|
31
|
+
border-bottom: none;
|
|
32
|
+
box-shadow: @sapUiContentHeaderShadow;
|
|
33
|
+
}
|
|
34
|
+
|
|
14
35
|
.sapFCardContent {
|
|
15
36
|
overflow: auto;
|
|
16
37
|
}
|
|
38
|
+
|
|
39
|
+
.sapFCardObjectContent>.sapMVBox {
|
|
40
|
+
padding-bottom: 1rem;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.sapFCardFooter {
|
|
44
|
+
border-top: 1px solid @sapUiPageFooterBorderColor;
|
|
45
|
+
padding-top: 0.25rem;
|
|
46
|
+
padding-bottom: 0.25rem;
|
|
47
|
+
}
|
|
17
48
|
}
|
|
18
49
|
|
|
19
50
|
&.sapMDialog:not(.sapUiResponsiveContentPadding):not(.sapUiContentPadding) .sapMDialogScroll {
|
|
@@ -32,3 +63,15 @@
|
|
|
32
63
|
display: none!important;
|
|
33
64
|
}
|
|
34
65
|
|
|
66
|
+
.sapUiIntCardCustomImage {
|
|
67
|
+
background-size: contain;
|
|
68
|
+
background-repeat: no-repeat;
|
|
69
|
+
background-position: center center;
|
|
70
|
+
position: absolute;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.sapMIllustratedMessageMainContent:has(.sapUiIntCardCustomImage) svg {
|
|
74
|
+
visibility: hidden;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
|
|
@@ -0,0 +1,246 @@
|
|
|
1
|
+
/* =============================================================== */
|
|
2
|
+
/* CSS for control sap.ui.integration.widgets/Card in Tile Variant */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ================================================================*/
|
|
5
|
+
.sapFCard.sapUiIntCardTileStandard,
|
|
6
|
+
.sapFCard.sapUiIntCardTileStandardWide,
|
|
7
|
+
.sapFCard.sapUiIntCardTileFlat,
|
|
8
|
+
.sapFCard.sapUiIntCardTileFlatWide {
|
|
9
|
+
.sapFCardHeader {
|
|
10
|
+
height: 100%;
|
|
11
|
+
position: relative;
|
|
12
|
+
padding: 0;
|
|
13
|
+
|
|
14
|
+
&.sapFCardHeaderHasToolbar {
|
|
15
|
+
// Always hide toolbar for tiles
|
|
16
|
+
.sapFCardHeaderToolbarCont {
|
|
17
|
+
display: none;
|
|
18
|
+
}
|
|
19
|
+
.sapFCardHeaderText {
|
|
20
|
+
margin-inline-end: 0;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.sapFCardDataTimestamp,
|
|
25
|
+
.sapFCardStatus {
|
|
26
|
+
display: none;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.sapFCardHeaderWrapper {
|
|
30
|
+
padding: 1rem;
|
|
31
|
+
box-sizing: border-box;
|
|
32
|
+
flex-direction: column;
|
|
33
|
+
justify-content: space-between;
|
|
34
|
+
height: 100%;
|
|
35
|
+
text-decoration: none;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.sapFCardHeaderText {
|
|
39
|
+
justify-content: flex-start;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&.sapFCardNumericHeader {
|
|
43
|
+
.sapFCardHeaderContent {
|
|
44
|
+
padding: 1rem;
|
|
45
|
+
box-sizing: border-box;
|
|
46
|
+
display: flex;
|
|
47
|
+
flex-direction: column;
|
|
48
|
+
text-decoration: none;
|
|
49
|
+
|
|
50
|
+
.sapFCardSubtitle {
|
|
51
|
+
align-items: flex-start;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.sapFCard.sapUiIntCardTileFlat,
|
|
59
|
+
.sapFCard.sapUiIntCardTileFlatWide {
|
|
60
|
+
.sapFCardHeader {
|
|
61
|
+
|
|
62
|
+
.sapFCardHeaderWrapper {
|
|
63
|
+
padding: 1rem 1rem 0.75rem;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.sapFCardHeaderText {
|
|
67
|
+
justify-content: flex-start;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.sapFCardIcon.sapFAvatar {
|
|
71
|
+
margin: 0;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.sapFCardIcon.sapFAvatarXS.sapFAvatarColorTransparent .sapUiIcon {
|
|
75
|
+
font-size: 1.75rem;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
&.sapFCardHeaderHasIcon,
|
|
79
|
+
&.sapFCardHeaderHasNumber {
|
|
80
|
+
.sapFCardSubtitle,
|
|
81
|
+
.sapFCardUnitOfMeasurement {
|
|
82
|
+
display: none;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&.sapFCardNumericHeader {
|
|
87
|
+
.sapFCardHeaderContent {
|
|
88
|
+
padding: 1rem 1rem 0.75rem;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.sapFCardHeaderDetailsWrapper {
|
|
92
|
+
display: none;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.sapFCardAvatarAndIndicatorsLine {
|
|
96
|
+
.sapFCardIcon.sapFAvatar {
|
|
97
|
+
margin: 0;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.sapFCardNumericIndicators {
|
|
101
|
+
margin: 0;
|
|
102
|
+
align-items: center;
|
|
103
|
+
|
|
104
|
+
.sapMNC {
|
|
105
|
+
margin: 0;
|
|
106
|
+
|
|
107
|
+
.sapMNCValue > .sapMNCLargeFontSize {
|
|
108
|
+
padding: 0;
|
|
109
|
+
height: 1.75rem;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.sapMNCValue.WithoutMargin {
|
|
113
|
+
justify-content: start;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.sapMNCIndScale {
|
|
117
|
+
margin-left: 0.125rem;
|
|
118
|
+
padding: 0rem;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.sapFCardNumericIndicatorsSide {
|
|
123
|
+
margin: 0;
|
|
124
|
+
padding: 0;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
&.sapFCardHeaderHasNumber .sapFCardIcon.sapFAvatarXS.sapFAvatarColorTransparent .sapUiIcon {
|
|
130
|
+
font-size: 1.5rem;
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.sapFCardHeaderBanner {
|
|
135
|
+
position: absolute;
|
|
136
|
+
bottom: 0.75rem;;
|
|
137
|
+
right: 1.125rem;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.sapMIllustratedMessage {
|
|
141
|
+
padding: 0;
|
|
142
|
+
.sapMTitle {
|
|
143
|
+
font-size: 0.875rem;
|
|
144
|
+
}
|
|
145
|
+
.sapMIllustratedMessageDescription {
|
|
146
|
+
font-size: 0.75rem;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.sapFCard.sapUiIntCardTileStandard,
|
|
153
|
+
.sapFCard.sapUiIntCardTileFlat {
|
|
154
|
+
.sapFCardHeader .sapFCardNumericIndicatorsSide {
|
|
155
|
+
display: none;
|
|
156
|
+
}
|
|
157
|
+
.sapFCardHeader .sapUiIntMicrochartChartWrapper {
|
|
158
|
+
display: none;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
.sapFCard.sapUiIntCardSmallHeader,
|
|
162
|
+
.sapFCard.sapUiIntCardTileFlatWide {
|
|
163
|
+
|
|
164
|
+
.sapFCardHeader .sapFCardNumericIndicatorsSide {
|
|
165
|
+
flex-wrap: nowrap;
|
|
166
|
+
}
|
|
167
|
+
.sapFCardHeader.sapFCardNumericHeaderSIMC .sapFCardNumericIndicatorsSide {
|
|
168
|
+
display: none;
|
|
169
|
+
}
|
|
170
|
+
.sapFCardHeader .sapUiIntMicrochartChartWrapper .sapUiIntMicrochartChart {
|
|
171
|
+
max-height: 2.2rem;
|
|
172
|
+
min-height: 2rem;
|
|
173
|
+
}
|
|
174
|
+
.sapFCardHeader .sapUiIntMicrochartChartWrapper .sapUiIntMicrochartChart .sapUiIntMicrochartChartInner {
|
|
175
|
+
height: 2rem;
|
|
176
|
+
}
|
|
177
|
+
.sapMNCValue.WithoutMargin {
|
|
178
|
+
justify-content: start;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.sapFCard.sapUiIntCardTileStandardWide .sapFCardNumericHeader {
|
|
183
|
+
&.sapFCardHeader .sapFCardNumericIndicatorsSide {
|
|
184
|
+
flex-wrap: nowrap;
|
|
185
|
+
}
|
|
186
|
+
&.sapFCardNumericHeaderSIMC .sapUiIntMicrochartChartWrapper {
|
|
187
|
+
position: absolute;
|
|
188
|
+
top: 2.5rem;
|
|
189
|
+
right: 1rem;
|
|
190
|
+
width: 38%;
|
|
191
|
+
}
|
|
192
|
+
&.sapFCardNumericHeaderSIMC .sapFCardHeaderText {
|
|
193
|
+
max-width: 58%;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
&.sapFCardNumericHeaderMC .sapFCardAvatarAndIndicatorsLine .sapUiIntMicrochartChartWrapper {
|
|
197
|
+
margin-top: -0.5rem;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.sapFCard.sapUiIntCardTileFlat .sapFCardHeaderBanner {
|
|
202
|
+
/* there is no space for banner in 2x1 tile */
|
|
203
|
+
display: none;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.sapFCard.sapUiIntCardStandard .sapFCardHeaderBanner {
|
|
207
|
+
/* the banner feature is not yet available for standard card variant */
|
|
208
|
+
display: none!important;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.sapFCard.sapUiIntCardCompactHeader {
|
|
212
|
+
height: 3rem;
|
|
213
|
+
min-height: 3rem;
|
|
214
|
+
|
|
215
|
+
.sapFCardHeader {
|
|
216
|
+
padding: 0.5rem 0.75rem;
|
|
217
|
+
|
|
218
|
+
.sapFCardIcon.sapFAvatar {
|
|
219
|
+
height: 1.9rem;
|
|
220
|
+
width: 1.9rem;
|
|
221
|
+
font-size: 0.9rem;
|
|
222
|
+
letter-spacing: -1px;
|
|
223
|
+
&.sapFAvatarColorTransparent .sapUiIcon {
|
|
224
|
+
font-size: 1.25rem;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
.sapFCardHeaderText {
|
|
228
|
+
height: 2rem;
|
|
229
|
+
}
|
|
230
|
+
.sapFCardHeaderTextSecondLine {
|
|
231
|
+
display: inline-block;
|
|
232
|
+
margin-top: 0;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.sapFCardHeaderToolbarCont .sapFCardHeaderToolbar {
|
|
236
|
+
margin: -0.4rem 0 -0.25rem -1.8rem;
|
|
237
|
+
height: 2rem;
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.sapUiSizeCompact .sapFCard.sapUiIntCardCompactHeader {
|
|
243
|
+
.sapFCardHeaderToolbarCont {
|
|
244
|
+
padding-top: 0.25rem;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
@import "BlockingMessage.less";
|
|
14
14
|
@import "CalendarContent.less";
|
|
15
15
|
@import "Card.less";
|
|
16
|
-
@import "
|
|
16
|
+
@import "CardVariants.less";
|
|
17
17
|
@import "CustomElementBase.less";
|
|
18
18
|
@import "CustomElementCard.less";
|
|
19
19
|
@import "Paginator.less";
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/* ====================================================== */
|
|
2
|
+
/* CSS for control sap.ui.integration.controls/ActionsStrip */
|
|
3
|
+
/* Base theme */
|
|
4
|
+
/* ====================================================== */
|
|
5
|
+
|
|
6
|
+
.sapUiIntActionsStrip {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
flex: 1;
|
|
10
|
+
min-width: 0;
|
|
11
|
+
|
|
12
|
+
.sapMIBar {
|
|
13
|
+
flex: 1;
|
|
14
|
+
padding: 0;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.sapMBarChild:first-child {
|
|
18
|
+
margin-left: 0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.sapMLabel {
|
|
22
|
+
font-weight: normal;
|
|
23
|
+
font-family: @sapUiFontFamily;
|
|
24
|
+
color: @sapUiContentLabelColor;
|
|
25
|
+
}
|
|
26
|
+
}
|