@openui5/sap.ui.integration 1.97.1 → 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 +25 -30
- package/THIRDPARTY.txt +13 -20
- package/package.json +3 -3
- package/src/sap/ui/integration/.library +15 -21
- 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 +1 -1
- package/src/sap/ui/integration/cards/AdaptiveContent.js +15 -49
- package/src/sap/ui/integration/cards/AnalyticalContent.js +1 -1
- package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +1 -1
- package/src/sap/ui/integration/cards/BaseContent.js +6 -1
- package/src/sap/ui/integration/cards/BaseListContent.js +36 -68
- package/src/sap/ui/integration/cards/CalendarContent.js +13 -11
- 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 +2 -2
- package/src/sap/ui/integration/cards/ListContent.js +45 -26
- package/src/sap/ui/integration/cards/NumericHeader.js +2 -2
- package/src/sap/ui/integration/cards/ObjectContent.js +303 -192
- package/src/sap/ui/integration/cards/ObjectContentRenderer.js +28 -0
- package/src/sap/ui/integration/cards/TableContent.js +1 -2
- package/src/sap/ui/integration/cards/TimelineContent.js +3 -5
- package/src/sap/ui/integration/cards/WebPageContent.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 +9 -9
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +2 -2
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +6 -11
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputTime.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +2 -2
- package/src/sap/ui/integration/cards/filters/BaseFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +49 -46
- package/src/sap/ui/integration/cards/filters/FilterBar.js +91 -0
- package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +33 -12
- package/src/sap/ui/integration/cards/filters/SearchFilter.js +95 -0
- package/src/sap/ui/integration/cards/filters/SelectFilter.js +1 -1
- package/src/sap/ui/integration/controls/ActionsStrip.js +2 -2
- package/src/sap/ui/integration/controls/ActionsToolbar.js +3 -4
- package/src/sap/ui/integration/controls/ListContentItem.js +1 -1
- package/src/sap/ui/integration/controls/Microchart.js +1 -1
- package/src/sap/ui/integration/controls/MicrochartLegend.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/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/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.fragment.xml +1 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +6 -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.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 +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/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 +17 -2
- 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/config/index.js +12 -1
- 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_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 +61 -3
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +218 -0
- 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/CardEditor.js +52 -3
- package/src/sap/ui/integration/designtime/editor/CardPreview.js +5 -7
- package/src/sap/ui/integration/editor/Editor.js +163 -177
- package/src/sap/ui/integration/editor/EditorResourceBundles.js +42 -31
- package/src/sap/ui/integration/editor/Extension.js +1 -1
- package/src/sap/ui/integration/editor/Manifest.js +2 -2
- package/src/sap/ui/integration/editor/Merger.js +0 -18
- package/src/sap/ui/integration/editor/Settings.js +9 -5
- package/src/sap/ui/integration/editor/css/Editor.css +22 -0
- package/src/sap/ui/integration/editor/fields/BaseField.js +1 -10
- 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/IntegerField.js +1 -1
- package/src/sap/ui/integration/editor/fields/ListField.js +21 -6
- package/src/sap/ui/integration/editor/fields/NumberField.js +1 -1
- package/src/sap/ui/integration/editor/fields/StringField.js +84 -51
- package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +9 -29
- package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +1 -3
- package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +1 -3
- package/src/sap/ui/integration/editor/languages.json +2 -2
- package/src/sap/ui/integration/library.js +20 -3
- 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_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 +2 -2
- package/src/sap/ui/integration/model/ObservableModel.js +1 -1
- package/src/sap/ui/integration/schemas/sap-card.json +166 -4
- package/src/sap/ui/integration/themes/base/ObjectContent.less +57 -9
- 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 +1 -1
- package/src/sap/ui/integration/util/BindingHelper.js +4 -2
- package/src/sap/ui/integration/util/BindingResolver.js +5 -4
- package/src/sap/ui/integration/util/CardMerger.js +6 -17
- package/src/sap/ui/integration/util/CardObserver.js +1 -1
- package/src/sap/ui/integration/util/ContentFactory.js +2 -2
- package/src/sap/ui/integration/util/CsrfTokenHandler.js +62 -78
- 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/ExtensionDataProvider.js +1 -1
- package/src/sap/ui/integration/util/HeaderFactory.js +2 -2
- 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 +2 -2
- package/src/sap/ui/integration/{ManifestResolver.js → util/ManifestResolver.js} +15 -18
- package/src/sap/ui/integration/util/RequestDataProvider.js +3 -3
- 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 +50 -0
- package/src/sap/ui/integration/util/Utils.js +33 -1
- package/src/sap/ui/integration/widgets/Card.js +51 -18
- package/src/sap/ui/integration/widgets/CardRenderer.js +0 -6
- package/ui5.yaml +2 -0
- 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
|
@@ -4,9 +4,11 @@
|
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
7
|
+
"./BaseContent",
|
|
8
|
+
"./ObjectContentRenderer",
|
|
7
9
|
"sap/ui/integration/library",
|
|
8
|
-
"sap/ui/integration/cards/BaseContent",
|
|
9
10
|
"sap/m/library",
|
|
11
|
+
"sap/m/FlexItemData",
|
|
10
12
|
"sap/m/HBox",
|
|
11
13
|
"sap/m/VBox",
|
|
12
14
|
"sap/m/Text",
|
|
@@ -14,16 +16,21 @@ sap.ui.define([
|
|
|
14
16
|
"sap/m/Avatar",
|
|
15
17
|
"sap/m/Link",
|
|
16
18
|
"sap/m/Label",
|
|
19
|
+
"sap/m/ObjectStatus",
|
|
17
20
|
"sap/base/Log",
|
|
18
21
|
"sap/ui/core/ResizeHandler",
|
|
19
22
|
"sap/ui/layout/AlignedFlowLayout",
|
|
20
23
|
"sap/ui/dom/units/Rem",
|
|
21
24
|
"sap/ui/integration/util/BindingHelper",
|
|
22
|
-
"sap/ui/integration/util/Utils"
|
|
25
|
+
"sap/ui/integration/util/Utils",
|
|
26
|
+
"sap/f/cards/NumericIndicators",
|
|
27
|
+
"sap/f/cards/NumericSideIndicator"
|
|
23
28
|
], function (
|
|
24
|
-
library,
|
|
25
29
|
BaseContent,
|
|
30
|
+
ObjectContentRenderer,
|
|
31
|
+
library,
|
|
26
32
|
mLibrary,
|
|
33
|
+
FlexItemData,
|
|
27
34
|
HBox,
|
|
28
35
|
VBox,
|
|
29
36
|
Text,
|
|
@@ -31,12 +38,15 @@ sap.ui.define([
|
|
|
31
38
|
Avatar,
|
|
32
39
|
Link,
|
|
33
40
|
Label,
|
|
41
|
+
ObjectStatus,
|
|
34
42
|
Log,
|
|
35
43
|
ResizeHandler,
|
|
36
44
|
AlignedFlowLayout,
|
|
37
45
|
Rem,
|
|
38
46
|
BindingHelper,
|
|
39
|
-
Utils
|
|
47
|
+
Utils,
|
|
48
|
+
NumericIndicators,
|
|
49
|
+
NumericSideIndicator
|
|
40
50
|
) {
|
|
41
51
|
"use strict";
|
|
42
52
|
|
|
@@ -62,104 +72,20 @@ sap.ui.define([
|
|
|
62
72
|
*
|
|
63
73
|
* @extends sap.ui.integration.cards.BaseContent
|
|
64
74
|
* @author SAP SE
|
|
65
|
-
* @version 1.
|
|
75
|
+
* @version 1.98.0
|
|
66
76
|
*
|
|
67
77
|
* @constructor
|
|
68
78
|
* @experimental
|
|
69
79
|
* @since 1.64
|
|
70
|
-
* @see {@link TODO Card}
|
|
71
80
|
* @alias sap.ui.integration.cards.ObjectContent
|
|
72
81
|
*/
|
|
73
82
|
var ObjectContent = BaseContent.extend("sap.ui.integration.cards.ObjectContent", {
|
|
74
83
|
metadata: {
|
|
75
84
|
library: "sap.ui.integration"
|
|
76
85
|
},
|
|
77
|
-
renderer:
|
|
78
|
-
apiVersion: 2
|
|
79
|
-
}
|
|
86
|
+
renderer: ObjectContentRenderer
|
|
80
87
|
});
|
|
81
88
|
|
|
82
|
-
ObjectContent.prototype._getRootContainer = function () {
|
|
83
|
-
if (this._bIsBeingDestroyed) {
|
|
84
|
-
return null;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
var oAlignedFlowLayout = this.getAggregation("_content");
|
|
88
|
-
if (!oAlignedFlowLayout) {
|
|
89
|
-
oAlignedFlowLayout = new AlignedFlowLayout();
|
|
90
|
-
this.setAggregation("_content", oAlignedFlowLayout);
|
|
91
|
-
}
|
|
92
|
-
// registration ID used for deregistering the resize handler
|
|
93
|
-
this._sResizeListenerId = ResizeHandler.register(oAlignedFlowLayout, this.onAlignedFlowLayoutResize.bind(this));
|
|
94
|
-
|
|
95
|
-
oAlignedFlowLayout.addEventDelegate({
|
|
96
|
-
"onAfterRendering": function() {
|
|
97
|
-
this.getContent().forEach(function(oElement){
|
|
98
|
-
if (!oElement.getVisible()) {
|
|
99
|
-
document.getElementById("sap-ui-invisible-" + oElement.getId()).parentElement.classList.add("sapFCardInvisibleContent");
|
|
100
|
-
}
|
|
101
|
-
});
|
|
102
|
-
}
|
|
103
|
-
}, oAlignedFlowLayout);
|
|
104
|
-
|
|
105
|
-
return oAlignedFlowLayout;
|
|
106
|
-
};
|
|
107
|
-
|
|
108
|
-
ObjectContent.prototype.onAlignedFlowLayoutResize = function (oEvent) {
|
|
109
|
-
if (oEvent && (oEvent.size.width === oEvent.oldSize.width) && !oEvent.control) {
|
|
110
|
-
return;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
var oControl = oEvent.control,
|
|
114
|
-
sMinItemWidth = oControl.getMinItemWidth(),
|
|
115
|
-
iNumberOfGroups = oControl.getContent().length,
|
|
116
|
-
iMinItemWidth;
|
|
117
|
-
|
|
118
|
-
// the CSS unit of the minItemWidth control property is in rem
|
|
119
|
-
if (sMinItemWidth.lastIndexOf("rem") !== -1) {
|
|
120
|
-
iMinItemWidth = Rem.toPx(sMinItemWidth);
|
|
121
|
-
// the CSS unit of the minItemWidth control property is in px
|
|
122
|
-
} else if (sMinItemWidth.lastIndexOf("px") !== -1) {
|
|
123
|
-
iMinItemWidth = parseFloat(sMinItemWidth);
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
var iColumns = Math.floor(oEvent.size.width / iMinItemWidth);
|
|
127
|
-
|
|
128
|
-
// This check is to catch the case when the width of the card is bigger and
|
|
129
|
-
// can have more columns than groups
|
|
130
|
-
if (iColumns > iNumberOfGroups) {
|
|
131
|
-
iColumns = iNumberOfGroups;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
//Optimization
|
|
135
|
-
if (this._iColsOld === iColumns) {
|
|
136
|
-
return;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
this._iColsOld = iColumns;
|
|
140
|
-
|
|
141
|
-
var lastColIndex = iColumns - 1,
|
|
142
|
-
iRows = Math.ceil(iNumberOfGroups / iColumns);
|
|
143
|
-
|
|
144
|
-
oControl.getContent().forEach(function (oItem, iIndex) {
|
|
145
|
-
// Add spacing on every group
|
|
146
|
-
oItem.addStyleClass("sapFCardObjectSpaceBetweenGroup");
|
|
147
|
-
|
|
148
|
-
// remove the class only when the group is last on its row
|
|
149
|
-
if (lastColIndex === iIndex && lastColIndex < iNumberOfGroups) {
|
|
150
|
-
oItem.removeStyleClass("sapFCardObjectSpaceBetweenGroup");
|
|
151
|
-
lastColIndex += iColumns;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
// change bottom padding of the last item in each column
|
|
155
|
-
if (iIndex + 1 > (iRows - 1) * iColumns) {
|
|
156
|
-
oItem.addStyleClass("sapFCardObjectGroupLastInColumn");
|
|
157
|
-
} else {
|
|
158
|
-
oItem.removeStyleClass("sapFCardObjectGroupLastInColumn");
|
|
159
|
-
}
|
|
160
|
-
});
|
|
161
|
-
};
|
|
162
|
-
|
|
163
89
|
ObjectContent.prototype.exit = function() {
|
|
164
90
|
BaseContent.prototype.exit.apply(this, arguments);
|
|
165
91
|
|
|
@@ -184,36 +110,50 @@ sap.ui.define([
|
|
|
184
110
|
return this;
|
|
185
111
|
};
|
|
186
112
|
|
|
113
|
+
ObjectContent.prototype._getRootContainer = function () {
|
|
114
|
+
var oRootContainer = this.getAggregation("_content");
|
|
115
|
+
|
|
116
|
+
if (!oRootContainer) {
|
|
117
|
+
oRootContainer = new VBox({
|
|
118
|
+
renderType: FlexRendertype.Bare
|
|
119
|
+
});
|
|
120
|
+
this.setAggregation("_content", oRootContainer);
|
|
121
|
+
// registration ID used for deregistering the resize handler
|
|
122
|
+
this._sResizeListenerId = ResizeHandler.register(oRootContainer, this._onResize.bind(this));
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
return oRootContainer;
|
|
126
|
+
};
|
|
127
|
+
|
|
187
128
|
ObjectContent.prototype._addGroups = function (oConfiguration) {
|
|
188
129
|
var oContainer = this._getRootContainer(),
|
|
130
|
+
oAFLayout,
|
|
131
|
+
bNextAFLayout = true,
|
|
189
132
|
aGroups = oConfiguration.groups || [];
|
|
190
133
|
|
|
191
|
-
aGroups.forEach(function (
|
|
192
|
-
var
|
|
193
|
-
|
|
194
|
-
if (typeof oGroup.visible == "string") {
|
|
195
|
-
vVisible = !Utils.hasFalsyValueAsString(oGroup.visible);
|
|
196
|
-
} else {
|
|
197
|
-
vVisible = oGroup.visible;
|
|
198
|
-
}
|
|
134
|
+
aGroups.forEach(function (oGroupConfiguration, i) {
|
|
135
|
+
var oGroup = this._createGroup(oGroupConfiguration);
|
|
199
136
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
137
|
+
if (oGroupConfiguration.alignment === "Stretch") {
|
|
138
|
+
oGroup.setLayoutData(new FlexItemData({
|
|
139
|
+
growFactor: 1
|
|
140
|
+
}));
|
|
204
141
|
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
}).addStyleClass("sapFCardObjectItemTitle"));
|
|
142
|
+
if (i === aGroups.length - 1) {
|
|
143
|
+
oGroup.addStyleClass("sapFCardObjectGroupLastInColumn");
|
|
144
|
+
}
|
|
209
145
|
|
|
210
|
-
|
|
146
|
+
oContainer.addItem(oGroup);
|
|
147
|
+
bNextAFLayout = true;
|
|
148
|
+
} else {
|
|
149
|
+
if (bNextAFLayout) {
|
|
150
|
+
oAFLayout = this._createAFLayout();
|
|
151
|
+
oContainer.addItem(oAFLayout);
|
|
152
|
+
bNextAFLayout = false;
|
|
153
|
+
}
|
|
154
|
+
oAFLayout.addContent(oGroup);
|
|
211
155
|
}
|
|
212
156
|
|
|
213
|
-
oGroup.items.forEach(function (oItem) {
|
|
214
|
-
this._createGroupItems(oItem).forEach(oGroupContainer.addItem, oGroupContainer);
|
|
215
|
-
}, this);
|
|
216
|
-
oContainer.addContent(oGroupContainer);
|
|
217
157
|
}, this);
|
|
218
158
|
|
|
219
159
|
this._oActions.attach({
|
|
@@ -223,14 +163,40 @@ sap.ui.define([
|
|
|
223
163
|
});
|
|
224
164
|
};
|
|
225
165
|
|
|
166
|
+
ObjectContent.prototype._createGroup = function (oGroupConfiguration) {
|
|
167
|
+
var vVisible;
|
|
168
|
+
|
|
169
|
+
if (typeof oGroupConfiguration.visible == "string") {
|
|
170
|
+
vVisible = !Utils.hasFalsyValueAsString(oGroupConfiguration.visible);
|
|
171
|
+
} else {
|
|
172
|
+
vVisible = oGroupConfiguration.visible;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
var oGroup = new VBox({
|
|
176
|
+
visible: vVisible,
|
|
177
|
+
renderType: FlexRendertype.Bare
|
|
178
|
+
}).addStyleClass("sapFCardObjectGroup");
|
|
179
|
+
|
|
180
|
+
if (oGroupConfiguration.title) {
|
|
181
|
+
oGroup.addItem(new Title({
|
|
182
|
+
text: oGroupConfiguration.title
|
|
183
|
+
}).addStyleClass("sapFCardObjectItemTitle"));
|
|
184
|
+
|
|
185
|
+
oGroup.addStyleClass("sapFCardObjectGroupWithTitle");
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
oGroupConfiguration.items.forEach(function (oItem) {
|
|
189
|
+
this._createGroupItems(oItem).forEach(oGroup.addItem, oGroup);
|
|
190
|
+
}, this);
|
|
191
|
+
|
|
192
|
+
return oGroup;
|
|
193
|
+
};
|
|
194
|
+
|
|
226
195
|
ObjectContent.prototype._createGroupItems = function (oItem) {
|
|
227
196
|
var vLabel = oItem.label,
|
|
228
|
-
vValue = oItem.value,
|
|
229
197
|
oLabel,
|
|
230
198
|
vVisible,
|
|
231
|
-
oControl
|
|
232
|
-
vHref,
|
|
233
|
-
aBindingParts = [];
|
|
199
|
+
oControl;
|
|
234
200
|
|
|
235
201
|
if (typeof oItem.visible == "string") {
|
|
236
202
|
vVisible = !Utils.hasFalsyValueAsString(oItem.visible);
|
|
@@ -249,85 +215,10 @@ sap.ui.define([
|
|
|
249
215
|
}).addStyleClass("sapFCardObjectItemLabel");
|
|
250
216
|
}
|
|
251
217
|
|
|
252
|
-
|
|
253
|
-
oControl = new Link({
|
|
254
|
-
text: vValue,
|
|
255
|
-
visible: BindingHelper.reuse(vVisible)
|
|
256
|
-
});
|
|
257
|
-
|
|
258
|
-
if (oLabel) {
|
|
259
|
-
oControl.addAriaLabelledBy(oLabel);
|
|
260
|
-
} else {
|
|
261
|
-
Log.warning("Missing label for Object group item with actions.", null, "sap.ui.integration.widgets.Card");
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
this._oActions.attach({
|
|
265
|
-
area: ActionArea.ContentItemDetail,
|
|
266
|
-
actions: oItem.actions,
|
|
267
|
-
control: this,
|
|
268
|
-
actionControl: oControl,
|
|
269
|
-
enabledPropertyName: "enabled"
|
|
270
|
-
});
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
// deprecated "type" property
|
|
274
|
-
if (vValue && !oItem.actions && oItem.type) {
|
|
275
|
-
Log.warning("Usage of Object Group Item property 'type' is deprecated. Use Card Actions for navigation.", null, "sap.ui.integration.widgets.Card");
|
|
276
|
-
|
|
277
|
-
switch (oItem.type) {
|
|
278
|
-
case 'link':
|
|
279
|
-
oControl = new Link({
|
|
280
|
-
href: oItem.url || vValue,
|
|
281
|
-
text: vValue,
|
|
282
|
-
target: oItem.target || '_blank',
|
|
283
|
-
visible: BindingHelper.reuse(vVisible)
|
|
284
|
-
});
|
|
285
|
-
break;
|
|
286
|
-
case 'email':
|
|
287
|
-
if (oItem.value) {
|
|
288
|
-
aBindingParts.push(oItem.value);
|
|
289
|
-
}
|
|
290
|
-
if (oItem.emailSubject) {
|
|
291
|
-
aBindingParts.push(oItem.emailSubject);
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
vHref = BindingHelper.formattedProperty(aBindingParts, function (sValue, sEmailSubject) {
|
|
295
|
-
if (sEmailSubject) {
|
|
296
|
-
return "mailto:" + sValue + "?subject=" + sEmailSubject;
|
|
297
|
-
} else {
|
|
298
|
-
return "mailto:" + sValue;
|
|
299
|
-
}
|
|
300
|
-
});
|
|
301
|
-
|
|
302
|
-
oControl = new Link({
|
|
303
|
-
href: vHref,
|
|
304
|
-
text: vValue,
|
|
305
|
-
visible: BindingHelper.reuse(vVisible)
|
|
306
|
-
});
|
|
307
|
-
break;
|
|
308
|
-
case 'phone':
|
|
309
|
-
vHref = BindingHelper.formattedProperty(vValue, function (sValue) {
|
|
310
|
-
return "tel:" + sValue;
|
|
311
|
-
});
|
|
312
|
-
oControl = new Link({
|
|
313
|
-
href: vHref,
|
|
314
|
-
text: vValue,
|
|
315
|
-
visible: BindingHelper.reuse(vVisible)
|
|
316
|
-
});
|
|
317
|
-
break;
|
|
318
|
-
default:
|
|
319
|
-
}
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
if (vValue && !oControl) {
|
|
323
|
-
oControl = new Text({
|
|
324
|
-
text: vValue,
|
|
325
|
-
visible: BindingHelper.reuse(vVisible)
|
|
326
|
-
});
|
|
327
|
-
}
|
|
218
|
+
oControl = this._createItem(oItem, vVisible, oLabel);
|
|
328
219
|
|
|
329
220
|
if (oControl) {
|
|
330
|
-
oControl.addStyleClass("
|
|
221
|
+
oControl.addStyleClass("sapFCardObjectItemValue");
|
|
331
222
|
}
|
|
332
223
|
|
|
333
224
|
if (oItem.icon) {
|
|
@@ -369,5 +260,225 @@ sap.ui.define([
|
|
|
369
260
|
return oAvatar;
|
|
370
261
|
};
|
|
371
262
|
|
|
263
|
+
ObjectContent.prototype._createItem = function (oItem, vVisible, oLabel) {
|
|
264
|
+
var oControl,
|
|
265
|
+
vValue = oItem.value,
|
|
266
|
+
vHref;
|
|
267
|
+
|
|
268
|
+
switch (oItem.type) {
|
|
269
|
+
case "NumericData":
|
|
270
|
+
oControl = this._createNumericDataItem(oItem);
|
|
271
|
+
break;
|
|
272
|
+
case "Status":
|
|
273
|
+
oControl = this._createStatusItem(oItem, vVisible);
|
|
274
|
+
break;
|
|
275
|
+
|
|
276
|
+
// deprecated types
|
|
277
|
+
case "link":
|
|
278
|
+
Log.warning("Usage of Object Group Item property 'type' with value 'link' is deprecated. Use Card Actions for navigation instead.", null, "sap.ui.integration.widgets.Card");
|
|
279
|
+
oControl = new Link({
|
|
280
|
+
href: oItem.url || vValue,
|
|
281
|
+
text: vValue,
|
|
282
|
+
target: oItem.target || '_blank',
|
|
283
|
+
visible: BindingHelper.reuse(vVisible)
|
|
284
|
+
});
|
|
285
|
+
break;
|
|
286
|
+
case "email":
|
|
287
|
+
Log.warning("Usage of Object Group Item property 'type' with value 'email' is deprecated. Use Card Actions for navigation instead.", null, "sap.ui.integration.widgets.Card");
|
|
288
|
+
var aBindingParts = [];
|
|
289
|
+
if (oItem.value) {
|
|
290
|
+
aBindingParts.push(oItem.value);
|
|
291
|
+
}
|
|
292
|
+
if (oItem.emailSubject) {
|
|
293
|
+
aBindingParts.push(oItem.emailSubject);
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
vHref = BindingHelper.formattedProperty(aBindingParts, function (sValue, sEmailSubject) {
|
|
297
|
+
if (sEmailSubject) {
|
|
298
|
+
return "mailto:" + sValue + "?subject=" + sEmailSubject;
|
|
299
|
+
} else {
|
|
300
|
+
return "mailto:" + sValue;
|
|
301
|
+
}
|
|
302
|
+
});
|
|
303
|
+
|
|
304
|
+
oControl = new Link({
|
|
305
|
+
href: vHref,
|
|
306
|
+
text: vValue,
|
|
307
|
+
visible: BindingHelper.reuse(vVisible)
|
|
308
|
+
});
|
|
309
|
+
break;
|
|
310
|
+
case "phone":
|
|
311
|
+
Log.warning("Usage of Object Group Item property 'type' with value 'phone' is deprecated. Use Card Actions for navigation instead.", null, "sap.ui.integration.widgets.Card");
|
|
312
|
+
vHref = BindingHelper.formattedProperty(vValue, function (sValue) {
|
|
313
|
+
return "tel:" + sValue;
|
|
314
|
+
});
|
|
315
|
+
oControl = new Link({
|
|
316
|
+
href: vHref,
|
|
317
|
+
text: vValue,
|
|
318
|
+
visible: BindingHelper.reuse(vVisible)
|
|
319
|
+
});
|
|
320
|
+
break;
|
|
321
|
+
|
|
322
|
+
default:
|
|
323
|
+
oControl = this._createTextItem(oItem, vVisible, oLabel);
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
return oControl;
|
|
327
|
+
};
|
|
328
|
+
|
|
329
|
+
ObjectContent.prototype._createNumericDataItem = function (oItem) {
|
|
330
|
+
var oVbox = new VBox();
|
|
331
|
+
var oNumericIndicators = new NumericIndicators({
|
|
332
|
+
number: oItem.mainIndicator.number,
|
|
333
|
+
numberSize: oItem.mainIndicator.size,
|
|
334
|
+
scale: oItem.mainIndicator.unit,
|
|
335
|
+
trend: oItem.mainIndicator.trend,
|
|
336
|
+
state: oItem.mainIndicator.state
|
|
337
|
+
}).addStyleClass("sapUiIntOCNumericIndicators");
|
|
338
|
+
|
|
339
|
+
oVbox.addItem(oNumericIndicators);
|
|
340
|
+
|
|
341
|
+
if (oItem.sideIndicators) {
|
|
342
|
+
oItem.sideIndicators.forEach(function (oIndicator) {
|
|
343
|
+
oNumericIndicators.addSideIndicator(
|
|
344
|
+
new NumericSideIndicator({
|
|
345
|
+
title: oIndicator.title,
|
|
346
|
+
number: oIndicator.number,
|
|
347
|
+
unit: oIndicator.unit,
|
|
348
|
+
state: oIndicator.state
|
|
349
|
+
})
|
|
350
|
+
);
|
|
351
|
+
});
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
if (oItem.details) {
|
|
355
|
+
oVbox.addItem(new Text({
|
|
356
|
+
text: oItem.details,
|
|
357
|
+
maxLines: 1
|
|
358
|
+
}).addStyleClass("sapUiIntOCNumericIndicatorsDetails"));
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
return oVbox;
|
|
362
|
+
};
|
|
363
|
+
|
|
364
|
+
ObjectContent.prototype._createStatusItem = function (oItem, vVisible) {
|
|
365
|
+
var oControl = new ObjectStatus({
|
|
366
|
+
text: oItem.value,
|
|
367
|
+
visible: BindingHelper.reuse(vVisible),
|
|
368
|
+
state: oItem.state
|
|
369
|
+
});
|
|
370
|
+
|
|
371
|
+
return oControl;
|
|
372
|
+
};
|
|
373
|
+
|
|
374
|
+
ObjectContent.prototype._createTextItem = function (oItem, vVisible, oLabel) {
|
|
375
|
+
var vValue = oItem.value,
|
|
376
|
+
oControl;
|
|
377
|
+
|
|
378
|
+
if (vValue && oItem.actions) {
|
|
379
|
+
oControl = new Link({
|
|
380
|
+
text: vValue,
|
|
381
|
+
visible: BindingHelper.reuse(vVisible)
|
|
382
|
+
});
|
|
383
|
+
|
|
384
|
+
if (oLabel) {
|
|
385
|
+
oControl.addAriaLabelledBy(oLabel);
|
|
386
|
+
} else {
|
|
387
|
+
Log.warning("Missing label for Object group item with actions.", null, "sap.ui.integration.widgets.Card");
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
this._oActions.attach({
|
|
391
|
+
area: ActionArea.ContentItemDetail,
|
|
392
|
+
actions: oItem.actions,
|
|
393
|
+
control: this,
|
|
394
|
+
actionControl: oControl,
|
|
395
|
+
enabledPropertyName: "enabled"
|
|
396
|
+
});
|
|
397
|
+
} else if (vValue) {
|
|
398
|
+
oControl = new Text({
|
|
399
|
+
text: vValue,
|
|
400
|
+
visible: BindingHelper.reuse(vVisible),
|
|
401
|
+
maxLines: oItem.maxLines
|
|
402
|
+
});
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
return oControl;
|
|
406
|
+
};
|
|
407
|
+
|
|
408
|
+
ObjectContent.prototype._createAFLayout = function () {
|
|
409
|
+
var oAlignedFlowLayout = new AlignedFlowLayout();
|
|
410
|
+
|
|
411
|
+
oAlignedFlowLayout.addEventDelegate({
|
|
412
|
+
"onAfterRendering": function() {
|
|
413
|
+
this.getContent().forEach(function(oElement){
|
|
414
|
+
if (!oElement.getVisible()) {
|
|
415
|
+
document.getElementById("sap-ui-invisible-" + oElement.getId()).parentElement.classList.add("sapFCardInvisibleContent");
|
|
416
|
+
}
|
|
417
|
+
});
|
|
418
|
+
}
|
|
419
|
+
}, oAlignedFlowLayout);
|
|
420
|
+
|
|
421
|
+
return oAlignedFlowLayout;
|
|
422
|
+
};
|
|
423
|
+
|
|
424
|
+
ObjectContent.prototype._onResize = function (oEvent) {
|
|
425
|
+
if (oEvent.size.width === oEvent.oldSize.width) {
|
|
426
|
+
return;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
var aItems = this._getRootContainer().getItems();
|
|
430
|
+
|
|
431
|
+
aItems.forEach(function (oItem, i) {
|
|
432
|
+
if (oItem.isA("sap.ui.layout.AlignedFlowLayout")) {
|
|
433
|
+
this._onAlignedFlowLayoutResize(oItem, oEvent, i === aItems.length - 1);
|
|
434
|
+
}
|
|
435
|
+
}.bind(this));
|
|
436
|
+
};
|
|
437
|
+
|
|
438
|
+
ObjectContent.prototype._onAlignedFlowLayoutResize = function (oAFLayout, oEvent, bLast) {
|
|
439
|
+
var sMinItemWidth = oAFLayout.getMinItemWidth(),
|
|
440
|
+
iMinItemWidth,
|
|
441
|
+
iNumberOfGroups = oAFLayout.getContent().filter(function (oContent) {
|
|
442
|
+
return oContent.getVisible();
|
|
443
|
+
}).length;
|
|
444
|
+
|
|
445
|
+
// the CSS unit of the minItemWidth control property is in rem
|
|
446
|
+
if (sMinItemWidth.lastIndexOf("rem") !== -1) {
|
|
447
|
+
iMinItemWidth = Rem.toPx(sMinItemWidth);
|
|
448
|
+
// the CSS unit of the minItemWidth control property is in px
|
|
449
|
+
} else if (sMinItemWidth.lastIndexOf("px") !== -1) {
|
|
450
|
+
iMinItemWidth = parseFloat(sMinItemWidth);
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
var iColumns = Math.floor(oEvent.size.width / iMinItemWidth);
|
|
454
|
+
|
|
455
|
+
// This check is to catch the case when the width of the card is bigger and
|
|
456
|
+
// can have more columns than groups
|
|
457
|
+
if (iColumns > iNumberOfGroups) {
|
|
458
|
+
iColumns = iNumberOfGroups;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
var lastColIndex = iColumns - 1,
|
|
462
|
+
iRows = Math.ceil(iNumberOfGroups / iColumns);
|
|
463
|
+
|
|
464
|
+
oAFLayout.getContent().forEach(function (oItem, iIndex) {
|
|
465
|
+
// Add spacing on every group
|
|
466
|
+
oItem.addStyleClass("sapFCardObjectSpaceBetweenGroup");
|
|
467
|
+
|
|
468
|
+
// remove the class only when the group is last on its row
|
|
469
|
+
if (lastColIndex === iIndex && lastColIndex < iNumberOfGroups) {
|
|
470
|
+
oItem.removeStyleClass("sapFCardObjectSpaceBetweenGroup");
|
|
471
|
+
lastColIndex += iColumns;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
// change bottom padding of the last item in each column
|
|
475
|
+
if (bLast && iIndex + 1 > (iRows - 1) * iColumns) {
|
|
476
|
+
oItem.addStyleClass("sapFCardObjectGroupLastInColumn");
|
|
477
|
+
} else {
|
|
478
|
+
oItem.removeStyleClass("sapFCardObjectGroupLastInColumn");
|
|
479
|
+
}
|
|
480
|
+
});
|
|
481
|
+
};
|
|
482
|
+
|
|
372
483
|
return ObjectContent;
|
|
373
484
|
});
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
sap.ui.define(["./BaseContentRenderer"], function (BaseContentRenderer) {
|
|
8
|
+
"use strict";
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* ObjectContentRenderer renderer.
|
|
12
|
+
* @author SAP SE
|
|
13
|
+
* @namespace
|
|
14
|
+
*/
|
|
15
|
+
var ObjectContentRenderer = BaseContentRenderer.extend("sap.ui.integration.cards.ObjectContentRenderer", {
|
|
16
|
+
apiVersion: 2,
|
|
17
|
+
MIN_OBJECT_CONTENT_HEIGHT: "3rem" // assuming 1 line of text and content padding
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @override
|
|
22
|
+
*/
|
|
23
|
+
ObjectContentRenderer.getMinHeight = function (oConfiguration, oContent) {
|
|
24
|
+
return ObjectContentRenderer.MIN_OBJECT_CONTENT_HEIGHT;
|
|
25
|
+
};
|
|
26
|
+
|
|
27
|
+
return ObjectContentRenderer;
|
|
28
|
+
});
|
|
@@ -77,7 +77,7 @@ sap.ui.define([
|
|
|
77
77
|
* @extends sap.ui.integration.cards.BaseListContent
|
|
78
78
|
*
|
|
79
79
|
* @author SAP SE
|
|
80
|
-
* @version 1.
|
|
80
|
+
* @version 1.98.0
|
|
81
81
|
*
|
|
82
82
|
* @constructor
|
|
83
83
|
* @private
|
|
@@ -196,7 +196,6 @@ sap.ui.define([
|
|
|
196
196
|
template: this._oItemTemplate,
|
|
197
197
|
sorter: this._oSorter
|
|
198
198
|
};
|
|
199
|
-
this._filterHiddenNavigationItems(oRow, oBindingInfo);
|
|
200
199
|
this._bindAggregationToControl("items", oTable, oBindingInfo);
|
|
201
200
|
};
|
|
202
201
|
|
|
@@ -7,14 +7,12 @@ sap.ui.define([
|
|
|
7
7
|
"./BaseListContent",
|
|
8
8
|
"./TimelineContentRenderer",
|
|
9
9
|
"sap/ui/integration/library",
|
|
10
|
-
"sap/m/library",
|
|
11
10
|
"sap/ui/core/Core",
|
|
12
11
|
"sap/ui/integration/util/BindingHelper"
|
|
13
12
|
], function (
|
|
14
13
|
BaseListContent,
|
|
15
14
|
TimelineContentRenderer,
|
|
16
15
|
library,
|
|
17
|
-
mLibrary,
|
|
18
16
|
Core,
|
|
19
17
|
BindingHelper
|
|
20
18
|
) {
|
|
@@ -38,7 +36,7 @@ sap.ui.define([
|
|
|
38
36
|
* @extends sap.ui.integration.cards.BaseListContent
|
|
39
37
|
*
|
|
40
38
|
* @author SAP SE
|
|
41
|
-
* @version 1.
|
|
39
|
+
* @version 1.98.0
|
|
42
40
|
*
|
|
43
41
|
* @constructor
|
|
44
42
|
* @experimental
|
|
@@ -108,7 +106,8 @@ sap.ui.define([
|
|
|
108
106
|
oTimeline = new Timeline({
|
|
109
107
|
id: this.getId() + "-Timeline",
|
|
110
108
|
showHeaderBar: false,
|
|
111
|
-
enableScroll: false
|
|
109
|
+
enableScroll: false,
|
|
110
|
+
growingThreshold: 0
|
|
112
111
|
});
|
|
113
112
|
this.setAggregation("_content", oTimeline);
|
|
114
113
|
}
|
|
@@ -184,7 +183,6 @@ sap.ui.define([
|
|
|
184
183
|
template: this._oTimeLineItemTemplate
|
|
185
184
|
};
|
|
186
185
|
|
|
187
|
-
this._filterHiddenNavigationItems(mItem, oBindingInfo);
|
|
188
186
|
this._bindAggregationToControl("content", this._getTimeline(), oBindingInfo);
|
|
189
187
|
|
|
190
188
|
return this;
|