@openui5/sap.ui.integration 1.97.1 → 1.99.1
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 +14 -21
- 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 +19 -73
- 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 +82 -7
- package/src/sap/ui/integration/cards/BaseContentRenderer.js +8 -3
- package/src/sap/ui/integration/cards/BaseListContent.js +72 -66
- 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 +25 -8
- package/src/sap/ui/integration/cards/Header.js +2 -2
- package/src/sap/ui/integration/cards/ListContent.js +47 -27
- package/src/sap/ui/integration/cards/ListContentRenderer.js +9 -5
- 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 +3 -3
- package/src/sap/ui/integration/cards/TableContentRenderer.js +5 -4
- package/src/sap/ui/integration/cards/TimelineContent.js +5 -6
- package/src/sap/ui/integration/cards/TimelineContentRenderer.js +4 -7
- 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 +52 -10
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +39 -4
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +41 -13
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +41 -4
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputTime.js +27 -116
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +37 -3
- package/src/sap/ui/integration/cards/adaptivecards/overwrites/ActionRender.js +6 -0
- package/src/sap/ui/integration/cards/adaptivecards/overwrites/inputsGeneralOverwrites.js +115 -0
- package/src/sap/ui/integration/cards/filters/BaseFilter.js +19 -2
- package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +54 -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 +104 -0
- package/src/sap/ui/integration/cards/filters/SelectFilter.js +7 -2
- package/src/sap/ui/integration/controls/ActionsStrip.js +6 -2
- package/src/sap/ui/integration/controls/ActionsToolbar.js +3 -4
- package/src/sap/ui/integration/controls/ActionsToolbarRenderer.js +1 -1
- package/src/sap/ui/integration/controls/ListContentItem.js +1 -1
- package/src/sap/ui/integration/controls/ListContentItemRenderer.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/controls/Paginator.js +171 -0
- package/src/sap/ui/integration/controls/PaginatorRenderer.js +113 -0
- 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/CardEditor.js +4 -4
- package/src/sap/ui/integration/designtime/cardEditor/config/index.js +12 -1
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n.properties +60 -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 +21 -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 +516 -252
- 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 +59 -7
- package/src/sap/ui/integration/editor/fields/BaseField.js +13 -13
- 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 +21 -4
- package/src/sap/ui/integration/messagebundle.properties +15 -0
- package/src/sap/ui/integration/messagebundle_ar.properties +10 -0
- package/src/sap/ui/integration/messagebundle_bg.properties +12 -2
- package/src/sap/ui/integration/messagebundle_ca.properties +10 -0
- package/src/sap/ui/integration/messagebundle_cs.properties +10 -0
- package/src/sap/ui/integration/messagebundle_cy.properties +10 -0
- package/src/sap/ui/integration/messagebundle_da.properties +10 -0
- package/src/sap/ui/integration/messagebundle_de.properties +10 -0
- package/src/sap/ui/integration/messagebundle_el.properties +10 -0
- package/src/sap/ui/integration/messagebundle_en.properties +10 -0
- package/src/sap/ui/integration/messagebundle_en_GB.properties +10 -0
- package/src/sap/ui/integration/messagebundle_en_US_sappsd.properties +10 -0
- package/src/sap/ui/integration/messagebundle_en_US_saptrc.properties +10 -0
- package/src/sap/ui/integration/messagebundle_es.properties +10 -0
- package/src/sap/ui/integration/messagebundle_es_MX.properties +10 -0
- package/src/sap/ui/integration/messagebundle_et.properties +10 -0
- package/src/sap/ui/integration/messagebundle_fi.properties +10 -0
- package/src/sap/ui/integration/messagebundle_fr.properties +10 -0
- package/src/sap/ui/integration/messagebundle_fr_CA.properties +10 -0
- package/src/sap/ui/integration/messagebundle_hi.properties +10 -0
- package/src/sap/ui/integration/messagebundle_hr.properties +10 -0
- package/src/sap/ui/integration/messagebundle_hu.properties +10 -0
- package/src/sap/ui/integration/messagebundle_id.properties +10 -0
- package/src/sap/ui/integration/messagebundle_it.properties +10 -0
- package/src/sap/ui/integration/messagebundle_iw.properties +10 -0
- package/src/sap/ui/integration/messagebundle_ja.properties +10 -0
- package/src/sap/ui/integration/messagebundle_kk.properties +10 -0
- package/src/sap/ui/integration/messagebundle_ko.properties +10 -0
- package/src/sap/ui/integration/messagebundle_lt.properties +10 -0
- package/src/sap/ui/integration/messagebundle_lv.properties +10 -0
- package/src/sap/ui/integration/messagebundle_ms.properties +10 -0
- package/src/sap/ui/integration/messagebundle_nl.properties +10 -0
- package/src/sap/ui/integration/messagebundle_no.properties +10 -0
- package/src/sap/ui/integration/messagebundle_pl.properties +10 -0
- package/src/sap/ui/integration/messagebundle_pt.properties +10 -0
- package/src/sap/ui/integration/messagebundle_pt_PT.properties +10 -0
- package/src/sap/ui/integration/messagebundle_ro.properties +10 -0
- package/src/sap/ui/integration/messagebundle_ru.properties +10 -0
- package/src/sap/ui/integration/messagebundle_sh.properties +10 -0
- package/src/sap/ui/integration/messagebundle_sk.properties +10 -0
- package/src/sap/ui/integration/messagebundle_sl.properties +10 -0
- package/src/sap/ui/integration/messagebundle_sv.properties +10 -0
- package/src/sap/ui/integration/messagebundle_th.properties +10 -0
- package/src/sap/ui/integration/messagebundle_tr.properties +10 -0
- package/src/sap/ui/integration/messagebundle_uk.properties +13 -3
- package/src/sap/ui/integration/messagebundle_vi.properties +10 -0
- package/src/sap/ui/integration/messagebundle_zh_CN.properties +10 -0
- package/src/sap/ui/integration/messagebundle_zh_TW.properties +10 -0
- package/src/sap/ui/integration/model/ContextModel.js +2 -2
- package/src/sap/ui/integration/model/ObservableModel.js +14 -5
- package/src/sap/ui/integration/model/PagingModelListBinding.js +40 -0
- package/src/sap/ui/integration/schemas/sap-card.json +226 -16
- package/src/sap/ui/integration/themes/base/ActionsStrip.less +15 -0
- package/src/sap/ui/integration/themes/base/Footer.less +9 -0
- package/src/sap/ui/integration/themes/base/ObjectContent.less +57 -9
- package/src/sap/ui/integration/themes/base/Paginator.less +36 -0
- package/src/sap/ui/integration/themes/base/library.source.less +3 -0
- 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 +14 -4
- package/src/sap/ui/integration/util/Manifest.js +2 -2
- package/src/sap/ui/integration/{ManifestResolver.js → util/ManifestResolver.js} +17 -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 +48 -4
- package/src/sap/ui/integration/widgets/Card.js +224 -79
- 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
|
@@ -8,27 +8,38 @@
|
|
|
8
8
|
|
|
9
9
|
sap.ui.define([
|
|
10
10
|
"./BaseContentRenderer",
|
|
11
|
+
"sap/m/MessageStrip",
|
|
12
|
+
"sap/m/VBox",
|
|
13
|
+
"sap/m/library",
|
|
11
14
|
"sap/ui/core/Core",
|
|
12
15
|
"sap/ui/core/Control",
|
|
16
|
+
"sap/ui/core/InvisibleMessage",
|
|
17
|
+
"sap/ui/core/library",
|
|
13
18
|
"sap/ui/integration/model/ObservableModel",
|
|
14
19
|
"sap/ui/base/ManagedObjectObserver",
|
|
15
|
-
"sap/ui/integration/util/BindingResolver",
|
|
16
20
|
"sap/ui/integration/util/LoadingProvider",
|
|
17
21
|
"sap/ui/integration/util/BindingHelper",
|
|
18
22
|
"sap/base/util/merge"
|
|
19
23
|
], function (
|
|
20
24
|
BaseContentRenderer,
|
|
25
|
+
MessageStrip,
|
|
26
|
+
VBox,
|
|
27
|
+
mLibrary,
|
|
21
28
|
Core,
|
|
22
29
|
Control,
|
|
30
|
+
InvisibleMessage,
|
|
31
|
+
coreLibrary,
|
|
23
32
|
ObservableModel,
|
|
24
33
|
ManagedObjectObserver,
|
|
25
|
-
BindingResolver,
|
|
26
34
|
LoadingProvider,
|
|
27
35
|
BindingHelper,
|
|
28
36
|
merge
|
|
29
37
|
) {
|
|
30
38
|
"use strict";
|
|
31
39
|
|
|
40
|
+
// shortcut for sap.ui.core.InvisibleMessageMode
|
|
41
|
+
var InvisibleMessageMode = coreLibrary.InvisibleMessageMode;
|
|
42
|
+
|
|
32
43
|
/**
|
|
33
44
|
* Constructor for a new <code>BaseContent</code>.
|
|
34
45
|
*
|
|
@@ -41,7 +52,7 @@ sap.ui.define([
|
|
|
41
52
|
* @extends sap.ui.core.Control
|
|
42
53
|
*
|
|
43
54
|
* @author SAP SE
|
|
44
|
-
* @version 1.
|
|
55
|
+
* @version 1.99.1
|
|
45
56
|
*
|
|
46
57
|
* @constructor
|
|
47
58
|
* @private
|
|
@@ -68,6 +79,12 @@ sap.ui.define([
|
|
|
68
79
|
type: "sap.ui.core.Element",
|
|
69
80
|
multiple: false,
|
|
70
81
|
visibility: "hidden"
|
|
82
|
+
},
|
|
83
|
+
|
|
84
|
+
_messageContainer: {
|
|
85
|
+
type: "sap.m.VBox",
|
|
86
|
+
multiple: false,
|
|
87
|
+
visibility: "hidden"
|
|
71
88
|
}
|
|
72
89
|
},
|
|
73
90
|
associations: {
|
|
@@ -250,6 +267,36 @@ sap.ui.define([
|
|
|
250
267
|
return this.getConfiguration();
|
|
251
268
|
};
|
|
252
269
|
|
|
270
|
+
/**
|
|
271
|
+
* Displays a message strip above the content.
|
|
272
|
+
*
|
|
273
|
+
* @param {string} sMessage The message.
|
|
274
|
+
* @param {sap.ui.core.MessageType} sType Type of the message.
|
|
275
|
+
* @private
|
|
276
|
+
* @ui5-restricted
|
|
277
|
+
*/
|
|
278
|
+
BaseContent.prototype.showMessage = function (sMessage, sType) {
|
|
279
|
+
var oMessagePopup = this._getMessageContainer();
|
|
280
|
+
var oMessage = new MessageStrip({
|
|
281
|
+
text: sMessage,
|
|
282
|
+
type: sType,
|
|
283
|
+
showCloseButton: true,
|
|
284
|
+
showIcon: true,
|
|
285
|
+
close: function () {
|
|
286
|
+
this._getMessageContainer().destroy();
|
|
287
|
+
}.bind(this)
|
|
288
|
+
}).addStyleClass("sapFCardContentMessage");
|
|
289
|
+
|
|
290
|
+
oMessagePopup.destroyItems();
|
|
291
|
+
oMessagePopup.addItem(oMessage);
|
|
292
|
+
|
|
293
|
+
if (this.getDomRef().contains(document.activeElement)) {
|
|
294
|
+
InvisibleMessage.getInstance().announce(sMessage, InvisibleMessageMode.Assertive);
|
|
295
|
+
} else {
|
|
296
|
+
InvisibleMessage.getInstance().announce(sMessage, InvisibleMessageMode.Polite);
|
|
297
|
+
}
|
|
298
|
+
};
|
|
299
|
+
|
|
253
300
|
/**
|
|
254
301
|
* Requests data and bind it to the item template.
|
|
255
302
|
*
|
|
@@ -328,6 +375,11 @@ sap.ui.define([
|
|
|
328
375
|
* @protected
|
|
329
376
|
*/
|
|
330
377
|
BaseContent.prototype.onDataRequestComplete = function () {
|
|
378
|
+
var oCard = this.getCardInstance();
|
|
379
|
+
if (oCard) {
|
|
380
|
+
oCard._fireContentDataChange();
|
|
381
|
+
}
|
|
382
|
+
|
|
331
383
|
this.fireEvent("_dataReady");
|
|
332
384
|
};
|
|
333
385
|
|
|
@@ -459,12 +511,10 @@ sap.ui.define([
|
|
|
459
511
|
/**
|
|
460
512
|
* @protected
|
|
461
513
|
* @param {string} sLogMessage Message that will be logged.
|
|
462
|
-
* @param {string} [sDisplayMessage] Message that will be displayed in the card's content. If not provided, a default message is displayed.
|
|
463
514
|
*/
|
|
464
|
-
BaseContent.prototype.handleError = function (sLogMessage
|
|
515
|
+
BaseContent.prototype.handleError = function (sLogMessage) {
|
|
465
516
|
this.fireEvent("_error", {
|
|
466
|
-
logMessage: sLogMessage
|
|
467
|
-
displayMessage: sDisplayMessage
|
|
517
|
+
logMessage: sLogMessage
|
|
468
518
|
});
|
|
469
519
|
};
|
|
470
520
|
|
|
@@ -537,5 +587,30 @@ sap.ui.define([
|
|
|
537
587
|
return Core.byId(this.getCard());
|
|
538
588
|
};
|
|
539
589
|
|
|
590
|
+
BaseContent.prototype.isSkeleton = function () {
|
|
591
|
+
var oCard = this.getCardInstance();
|
|
592
|
+
return oCard && oCard.isSkeleton();
|
|
593
|
+
};
|
|
594
|
+
|
|
595
|
+
BaseContent.prototype.sliceData = function (iStartIndex, iEndIndex) { };
|
|
596
|
+
|
|
597
|
+
BaseContent.prototype.getDataLength = function () {
|
|
598
|
+
return 0;
|
|
599
|
+
};
|
|
600
|
+
|
|
601
|
+
BaseContent.prototype._getMessageContainer = function () {
|
|
602
|
+
var oMessageContainer = this.getAggregation("_messageContainer");
|
|
603
|
+
|
|
604
|
+
if (!oMessageContainer) {
|
|
605
|
+
oMessageContainer = new VBox({
|
|
606
|
+
renderType: mLibrary.FlexRendertype.Bare,
|
|
607
|
+
alignItems: mLibrary.FlexAlignItems.Center
|
|
608
|
+
}).addStyleClass("sapFCardContentMessageContainer");
|
|
609
|
+
this.setAggregation("_messageContainer", oMessageContainer);
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
return oMessageContainer;
|
|
613
|
+
};
|
|
614
|
+
|
|
540
615
|
return BaseContent;
|
|
541
616
|
});
|
|
@@ -34,7 +34,8 @@ sap.ui.define(["sap/ui/core/Renderer"], function (Renderer) {
|
|
|
34
34
|
sType = sName.slice(sName.lastIndexOf(".") + 1),
|
|
35
35
|
oCard = oCardContent.getParent(),
|
|
36
36
|
bIsCardValid = oCard && oCard.isA("sap.f.ICard"),
|
|
37
|
-
bLoading = sType !== "AdaptiveContent" && bIsCardValid && oCardContent.isLoading()
|
|
37
|
+
bLoading = sType !== "AdaptiveContent" && bIsCardValid && oCardContent.isLoading(),
|
|
38
|
+
oMessageContainer = oCardContent.getAggregation("_messageContainer");
|
|
38
39
|
|
|
39
40
|
sClass += sType;
|
|
40
41
|
|
|
@@ -47,7 +48,7 @@ sap.ui.define(["sap/ui/core/Renderer"], function (Renderer) {
|
|
|
47
48
|
}
|
|
48
49
|
|
|
49
50
|
if (bIsCardValid && oCard.getHeight() === "auto") { // if there is no height specified the default value is "auto"
|
|
50
|
-
var sHeight = this.getMinHeight(oCardContent.getParsedConfiguration(), oCardContent);
|
|
51
|
+
var sHeight = this.getMinHeight(oCardContent.getParsedConfiguration(), oCardContent, oCard);
|
|
51
52
|
oRm.style("min-height", sHeight);
|
|
52
53
|
}
|
|
53
54
|
|
|
@@ -61,6 +62,10 @@ sap.ui.define(["sap/ui/core/Renderer"], function (Renderer) {
|
|
|
61
62
|
oRm.renderControl(oCardContent._oLoadingPlaceholder);
|
|
62
63
|
}
|
|
63
64
|
|
|
65
|
+
if (oMessageContainer) {
|
|
66
|
+
oRm.renderControl(oMessageContainer);
|
|
67
|
+
}
|
|
68
|
+
|
|
64
69
|
this.renderContent(oRm, oCardContent);
|
|
65
70
|
|
|
66
71
|
oRm.close("div");
|
|
@@ -78,7 +83,7 @@ sap.ui.define(["sap/ui/core/Renderer"], function (Renderer) {
|
|
|
78
83
|
/**
|
|
79
84
|
* @protected
|
|
80
85
|
* @param {object} oConfiguration The manifest configuration of the content
|
|
81
|
-
* @param {sap.ui.
|
|
86
|
+
* @param {sap.ui.integration.cards.BaseContent} oContent The content
|
|
82
87
|
* @returns {string} Min height in Rems.
|
|
83
88
|
*/
|
|
84
89
|
BaseContentRenderer.getMinHeight = function (oConfiguration, oContent) {
|
|
@@ -35,7 +35,7 @@ sap.ui.define([
|
|
|
35
35
|
* @extends sap.ui.integration.cards.BaseContent
|
|
36
36
|
*
|
|
37
37
|
* @author SAP SE
|
|
38
|
-
* @version 1.
|
|
38
|
+
* @version 1.99.1
|
|
39
39
|
*
|
|
40
40
|
* @constructor
|
|
41
41
|
* @private
|
|
@@ -80,9 +80,10 @@ sap.ui.define([
|
|
|
80
80
|
}
|
|
81
81
|
|
|
82
82
|
var oList = this.getInnerList(),
|
|
83
|
+
bHasPaginator = this.getCard() ? this.getCardInstance().hasPaginator() : false,
|
|
83
84
|
maxItems = oConfiguration.maxItems;
|
|
84
85
|
|
|
85
|
-
if (oList && maxItems) {
|
|
86
|
+
if (oList && maxItems && !bHasPaginator) {
|
|
86
87
|
oList.setGrowing(true);
|
|
87
88
|
//If pass trough parameters maxItems is a string
|
|
88
89
|
oList.setGrowingThreshold(parseInt(maxItems));
|
|
@@ -103,26 +104,6 @@ sap.ui.define([
|
|
|
103
104
|
return null;
|
|
104
105
|
};
|
|
105
106
|
|
|
106
|
-
/**
|
|
107
|
-
* Used to filter the content items that are to be hidden.
|
|
108
|
-
*
|
|
109
|
-
* @protected
|
|
110
|
-
* @param {Object} mItemConfig The item template.
|
|
111
|
-
* @param {Object} oBindingInfo The binding info on which to attach the filter.
|
|
112
|
-
*/
|
|
113
|
-
BaseListContent.prototype._filterHiddenNavigationItems = function (mItemConfig, oBindingInfo) {
|
|
114
|
-
if (!mItemConfig.actions) {
|
|
115
|
-
return;
|
|
116
|
-
}
|
|
117
|
-
var oAction = mItemConfig.actions[0];
|
|
118
|
-
if (!(oAction && oAction.service && oAction.type === "Navigation")) {
|
|
119
|
-
return;
|
|
120
|
-
}
|
|
121
|
-
var oFilter = new Filter("_card_item_hidden", FilterOperator.EQ, false);
|
|
122
|
-
this.awaitEvent("_filterNavItemsReady");
|
|
123
|
-
oBindingInfo.filters = [oFilter];
|
|
124
|
-
};
|
|
125
|
-
|
|
126
107
|
/**
|
|
127
108
|
* Used to check which content items should be hidden based on the Navigation Service.
|
|
128
109
|
*
|
|
@@ -139,16 +120,13 @@ sap.ui.define([
|
|
|
139
120
|
}
|
|
140
121
|
|
|
141
122
|
var oInnerList = this.getInnerList(),
|
|
142
|
-
|
|
143
|
-
oModel = oBindingInfo.getModel(),
|
|
144
|
-
sPath = oBindingInfo.getPath(),
|
|
145
|
-
aItems = oModel.getProperty(sPath),
|
|
123
|
+
aItems = this.isA("sap.ui.integration.cards.TimelineContent") ? oInnerList.getContent() : oInnerList.getItems(),
|
|
146
124
|
aPromises = [],
|
|
147
125
|
oAction = mItemConfig.actions[0],
|
|
148
|
-
|
|
149
|
-
|
|
126
|
+
sActionName,
|
|
127
|
+
iVisibleItems = 0;
|
|
150
128
|
|
|
151
|
-
if (!
|
|
129
|
+
if (!oAction || !oAction.service || oAction.type !== "Navigation") {
|
|
152
130
|
return;
|
|
153
131
|
}
|
|
154
132
|
|
|
@@ -159,54 +137,68 @@ sap.ui.define([
|
|
|
159
137
|
}
|
|
160
138
|
|
|
161
139
|
// create new promises
|
|
162
|
-
aItems.forEach(function (oItem
|
|
140
|
+
aItems.forEach(function (oItem) {
|
|
163
141
|
var mParameters = BindingResolver.resolveValue(
|
|
164
142
|
oAction.parameters,
|
|
165
143
|
this,
|
|
166
|
-
|
|
144
|
+
oItem.getBindingContext().getPath()
|
|
167
145
|
);
|
|
168
146
|
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
.
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
Log.error(sMessage);
|
|
189
|
-
})
|
|
190
|
-
);
|
|
147
|
+
aPromises.push(this._oServiceManager
|
|
148
|
+
.getService(sActionName)
|
|
149
|
+
.then(function (oNavigationService) {
|
|
150
|
+
if (!oNavigationService.hidden) {
|
|
151
|
+
return false;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
return oNavigationService.hidden({parameters: mParameters});
|
|
155
|
+
})
|
|
156
|
+
.then(function (bHidden) {
|
|
157
|
+
oItem.setVisible(!bHidden);
|
|
158
|
+
if (!bHidden) {
|
|
159
|
+
iVisibleItems++;
|
|
160
|
+
}
|
|
161
|
+
})
|
|
162
|
+
.catch(function (sMessage) {
|
|
163
|
+
Log.error(sMessage);
|
|
164
|
+
}));
|
|
165
|
+
|
|
191
166
|
}.bind(this));
|
|
192
167
|
|
|
193
|
-
|
|
194
|
-
|
|
168
|
+
this.awaitEvent("_filterNavItemsReady");
|
|
169
|
+
|
|
170
|
+
var pCurrent = this._oAwaitingPromise = Promise.all(aPromises)
|
|
171
|
+
.then(function () {
|
|
172
|
+
if (this._oAwaitingPromise === pCurrent) {
|
|
173
|
+
if (this.getModel("parameters")) {
|
|
174
|
+
this.getModel("parameters").setProperty("/visibleItems", iVisibleItems);
|
|
175
|
+
}
|
|
176
|
+
this.fireEvent("_filterNavItemsReady");
|
|
177
|
+
}
|
|
178
|
+
}.bind(this));
|
|
195
179
|
};
|
|
196
180
|
|
|
197
181
|
/**
|
|
198
|
-
*
|
|
199
|
-
*
|
|
182
|
+
* Used to show the illustrated message for no data retrived from server.
|
|
183
|
+
*
|
|
184
|
+
* @protected
|
|
185
|
+
* @param {Object} mItemConfig The item template.
|
|
200
186
|
*/
|
|
201
|
-
BaseListContent.prototype.
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
187
|
+
BaseListContent.prototype._handleNoItemsError = function (mItemConfig) {
|
|
188
|
+
|
|
189
|
+
if (!this.getInnerList()) {
|
|
190
|
+
return;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
var oInnerList = this.getInnerList(),
|
|
194
|
+
oBindingInfo = oInnerList.getBinding(oInnerList.getMetadata().getDefaultAggregationName()),
|
|
195
|
+
oModel = oBindingInfo.getModel(),
|
|
196
|
+
sPath = oBindingInfo.getPath(),
|
|
197
|
+
aItems = oModel.getProperty(sPath);
|
|
198
|
+
|
|
199
|
+
if (aItems && aItems.length === 0){
|
|
200
|
+
this.getParent()._handleError("No items available", true);
|
|
201
|
+
}
|
|
210
202
|
};
|
|
211
203
|
|
|
212
204
|
/**
|
|
@@ -227,5 +219,19 @@ sap.ui.define([
|
|
|
227
219
|
return oSorter;
|
|
228
220
|
};
|
|
229
221
|
|
|
222
|
+
BaseListContent.prototype.sliceData = function (iStartIndex, iEndIndex) {
|
|
223
|
+
this.getModel().sliceData(iStartIndex, iEndIndex);
|
|
224
|
+
};
|
|
225
|
+
|
|
226
|
+
BaseListContent.prototype.getDataLength = function () {
|
|
227
|
+
var oData = this.getModel().getProperty(this.getInnerList().getBindingContext().getPath());
|
|
228
|
+
|
|
229
|
+
if (Array.isArray(oData)) {
|
|
230
|
+
return oData.length;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
return Object.getOwnPropertyNames(oData).length;
|
|
234
|
+
};
|
|
235
|
+
|
|
230
236
|
return BaseListContent;
|
|
231
237
|
});
|
|
@@ -64,7 +64,7 @@ sap.ui.define([
|
|
|
64
64
|
* @extends sap.ui.integration.cards.BaseContent
|
|
65
65
|
*
|
|
66
66
|
* @author SAP SE
|
|
67
|
-
* @version 1.
|
|
67
|
+
* @version 1.99.1
|
|
68
68
|
*
|
|
69
69
|
* @constructor
|
|
70
70
|
* @private
|
|
@@ -172,7 +172,11 @@ sap.ui.define([
|
|
|
172
172
|
};
|
|
173
173
|
|
|
174
174
|
CalendarContent.prototype.onDataChanged = function () {
|
|
175
|
-
var oSelectedDate = this._oCalendar.getSelectedDates()[0].getStartDate();
|
|
175
|
+
var oSelectedDate = this._oCalendar.getSelectedDates()[0] && this._oCalendar.getSelectedDates()[0].getStartDate();
|
|
176
|
+
|
|
177
|
+
if (!oSelectedDate) {
|
|
178
|
+
return;
|
|
179
|
+
}
|
|
176
180
|
|
|
177
181
|
if (!this._bDataInitiallyLoaded) {
|
|
178
182
|
this._handleSelect(oSelectedDate);
|
|
@@ -276,8 +280,8 @@ sap.ui.define([
|
|
|
276
280
|
*/
|
|
277
281
|
CalendarContent.prototype._setParameters = function (oEvent, oDate) {
|
|
278
282
|
var oCurrentDate,
|
|
279
|
-
|
|
280
|
-
|
|
283
|
+
iStartOfDay,
|
|
284
|
+
iEndOfDay,
|
|
281
285
|
aBoundAppointments,
|
|
282
286
|
aAppointmentsCurrentDay;
|
|
283
287
|
|
|
@@ -289,19 +293,17 @@ sap.ui.define([
|
|
|
289
293
|
oCurrentDate = this._oCalendar.getStartDate();
|
|
290
294
|
}
|
|
291
295
|
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
oEndOfDay.setDate(oEndOfDay.getDate() + 1);
|
|
296
|
+
iStartOfDay = new Date(oCurrentDate.getFullYear(), oCurrentDate.getMonth(), oCurrentDate.getDate()).getTime();
|
|
297
|
+
iEndOfDay = new Date(oCurrentDate.getFullYear(), oCurrentDate.getMonth(), oCurrentDate.getDate() + 1).getTime();
|
|
296
298
|
|
|
297
299
|
aBoundAppointments = this.getAppointments();
|
|
298
300
|
if (aBoundAppointments) {
|
|
299
301
|
aAppointmentsCurrentDay = aBoundAppointments.filter(function (oApp) {
|
|
300
302
|
var iStart = oApp.getStartDate().getTime(),
|
|
301
303
|
iEnd = oApp.getEndDate().getTime();
|
|
302
|
-
if ((iStart >=
|
|
303
|
-
(iEnd
|
|
304
|
-
(iStart
|
|
304
|
+
if ((iStart >= iStartOfDay && iStart < iEndOfDay) ||
|
|
305
|
+
(iEnd > iStartOfDay && iEnd <= iEndOfDay) ||
|
|
306
|
+
(iStart < iStartOfDay && iEnd > iEndOfDay)) {
|
|
305
307
|
return oApp;
|
|
306
308
|
}
|
|
307
309
|
});
|
|
@@ -7,12 +7,14 @@ sap.ui.define([
|
|
|
7
7
|
"sap/ui/core/Control",
|
|
8
8
|
"sap/ui/core/Core",
|
|
9
9
|
"sap/ui/integration/controls/ActionsStrip",
|
|
10
|
+
"sap/ui/integration/controls/Paginator",
|
|
10
11
|
"sap/ui/integration/util/BindingHelper",
|
|
11
12
|
"sap/ui/integration/util/BindingResolver"
|
|
12
13
|
], function (
|
|
13
14
|
Control,
|
|
14
15
|
Core,
|
|
15
16
|
ActionsStrip,
|
|
17
|
+
Paginator,
|
|
16
18
|
BindingHelper,
|
|
17
19
|
BindingResolver
|
|
18
20
|
) {
|
|
@@ -29,7 +31,7 @@ sap.ui.define([
|
|
|
29
31
|
* @extends sap.ui.core.Control
|
|
30
32
|
*
|
|
31
33
|
* @author SAP SE
|
|
32
|
-
* @version 1.
|
|
34
|
+
* @version 1.99.1
|
|
33
35
|
*
|
|
34
36
|
* @constructor
|
|
35
37
|
* @private
|
|
@@ -51,6 +53,11 @@ sap.ui.define([
|
|
|
51
53
|
actionsStrip: {
|
|
52
54
|
type: "sap.ui.integration.controls.ActionsStrip",
|
|
53
55
|
multiple: false
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
paginator: {
|
|
59
|
+
type: "sap.ui.integration.controls.Paginator",
|
|
60
|
+
multiple: false
|
|
54
61
|
}
|
|
55
62
|
},
|
|
56
63
|
|
|
@@ -70,15 +77,28 @@ sap.ui.define([
|
|
|
70
77
|
renderer: {
|
|
71
78
|
apiVersion: 2,
|
|
72
79
|
render: function (oRM, oFooter) {
|
|
80
|
+
var oActionsStrip = oFooter.getActionsStrip(),
|
|
81
|
+
oPaginator = oFooter.getPaginator();
|
|
82
|
+
|
|
73
83
|
oRM.openStart("div", oFooter).class("sapFCardFooter");
|
|
74
84
|
|
|
85
|
+
if (oActionsStrip) {
|
|
86
|
+
oRM.class("sapFCardFooterWithActionsStrip");
|
|
87
|
+
}
|
|
88
|
+
|
|
75
89
|
if (oFooter.getCardInstance().isLoading() && oFooter._hasBinding()) {
|
|
76
90
|
oRM.class("sapFCardFooterLoading");
|
|
77
91
|
}
|
|
78
92
|
|
|
79
93
|
oRM.openEnd();
|
|
80
94
|
|
|
81
|
-
|
|
95
|
+
if (oPaginator) {
|
|
96
|
+
oRM.renderControl(oPaginator);
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
if (oActionsStrip) {
|
|
100
|
+
oRM.renderControl(oActionsStrip);
|
|
101
|
+
}
|
|
82
102
|
|
|
83
103
|
oRM.close("div");
|
|
84
104
|
}
|
|
@@ -89,7 +109,7 @@ sap.ui.define([
|
|
|
89
109
|
var oConfiguration = BindingHelper.createBindingInfos(this.getConfiguration(), this.getCardInstance().getBindingNamespaces());
|
|
90
110
|
|
|
91
111
|
// to do: if more precise check is needed search recursively
|
|
92
|
-
return oConfiguration.actionsStrip.some(function (oButtonConfig) {
|
|
112
|
+
return (oConfiguration.actionsStrip || []).some(function (oButtonConfig) {
|
|
93
113
|
for (var sKey in oButtonConfig) {
|
|
94
114
|
if (BindingResolver.isBindingInfo(oButtonConfig[sKey])) {
|
|
95
115
|
return true;
|
|
@@ -111,14 +131,11 @@ sap.ui.define([
|
|
|
111
131
|
};
|
|
112
132
|
|
|
113
133
|
Footer.create = function (oCard, oConfiguration) {
|
|
114
|
-
if (!oConfiguration.actionsStrip) {
|
|
115
|
-
return null;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
134
|
return new Footer({
|
|
119
135
|
configuration: oConfiguration,
|
|
120
136
|
card: oCard,
|
|
121
|
-
actionsStrip: ActionsStrip.create(oCard, oConfiguration.actionsStrip)
|
|
137
|
+
actionsStrip: ActionsStrip.create(oCard, oConfiguration.actionsStrip),
|
|
138
|
+
paginator: Paginator.create(oCard, oConfiguration.paginator)
|
|
122
139
|
});
|
|
123
140
|
};
|
|
124
141
|
|
|
@@ -35,10 +35,10 @@ sap.ui.define([
|
|
|
35
35
|
*
|
|
36
36
|
* @class
|
|
37
37
|
* Displays general information in the header of the {@link sap.ui.integration.widgets.Card}.
|
|
38
|
-
* @extends sap.f.Header
|
|
38
|
+
* @extends sap.f.cards.Header
|
|
39
39
|
*
|
|
40
40
|
* @author SAP SE
|
|
41
|
-
* @version 1.
|
|
41
|
+
* @version 1.99.1
|
|
42
42
|
*
|
|
43
43
|
* @constructor
|
|
44
44
|
* @private
|
|
@@ -66,7 +66,7 @@ sap.ui.define([
|
|
|
66
66
|
* @extends sap.ui.integration.cards.BaseListContent
|
|
67
67
|
*
|
|
68
68
|
* @author SAP SE
|
|
69
|
-
* @version 1.
|
|
69
|
+
* @version 1.99.1
|
|
70
70
|
*
|
|
71
71
|
* @constructor
|
|
72
72
|
* @private
|
|
@@ -127,7 +127,7 @@ sap.ui.define([
|
|
|
127
127
|
* @override
|
|
128
128
|
*/
|
|
129
129
|
ListContent.prototype.loadDependencies = function (oCardManifest) {
|
|
130
|
-
if (oCardManifest.get("/sap.card/content/item/chart")) {
|
|
130
|
+
if (!this.isSkeleton() && oCardManifest.get("/sap.card/content/item/chart")) {
|
|
131
131
|
return Microchart.loadDependencies();
|
|
132
132
|
}
|
|
133
133
|
|
|
@@ -161,23 +161,40 @@ sap.ui.define([
|
|
|
161
161
|
* @override
|
|
162
162
|
*/
|
|
163
163
|
ListContent.prototype.getStaticConfiguration = function () {
|
|
164
|
-
var
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
164
|
+
var aListItems = this.getInnerList().getItems(),
|
|
165
|
+
oConfiguration = this.getParsedConfiguration(),
|
|
166
|
+
bHasGroups = aListItems[0] && aListItems[0].isA("sap.m.GroupHeaderListItem"),
|
|
167
|
+
aResolvedItems = [],
|
|
168
|
+
aResolvedGroups = [],
|
|
169
|
+
oResolvedGroup;
|
|
170
|
+
|
|
171
|
+
aListItems.forEach(function (oItem) {
|
|
172
|
+
if (oItem.isA("sap.m.GroupHeaderListItem")) {
|
|
173
|
+
if (oResolvedGroup) {
|
|
174
|
+
aResolvedGroups.push(oResolvedGroup);
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
aResolvedItems = [];
|
|
178
|
+
oResolvedGroup = {
|
|
179
|
+
title: oItem.getTitle(),
|
|
180
|
+
items: aResolvedItems
|
|
181
|
+
};
|
|
173
182
|
} else {
|
|
174
|
-
aResolvedItems.push(BindingResolver.resolveValue(oConfiguration.item, this,
|
|
183
|
+
aResolvedItems.push(BindingResolver.resolveValue(oConfiguration.item, this, oItem.getBindingContext().getPath()));
|
|
175
184
|
}
|
|
185
|
+
}.bind(this));
|
|
186
|
+
|
|
187
|
+
if (oResolvedGroup) {
|
|
188
|
+
aResolvedGroups.push(oResolvedGroup);
|
|
176
189
|
}
|
|
177
190
|
|
|
178
|
-
var oStaticConfiguration =
|
|
179
|
-
|
|
180
|
-
|
|
191
|
+
var oStaticConfiguration = {};
|
|
192
|
+
|
|
193
|
+
if (bHasGroups) {
|
|
194
|
+
oStaticConfiguration.groups = aResolvedGroups;
|
|
195
|
+
} else {
|
|
196
|
+
oStaticConfiguration.items = aResolvedItems;
|
|
197
|
+
}
|
|
181
198
|
|
|
182
199
|
return oStaticConfiguration;
|
|
183
200
|
};
|
|
@@ -186,6 +203,7 @@ sap.ui.define([
|
|
|
186
203
|
* Handler for when data is changed.
|
|
187
204
|
*/
|
|
188
205
|
ListContent.prototype.onDataChanged = function () {
|
|
206
|
+
this._handleNoItemsError(this.getParsedConfiguration().item);
|
|
189
207
|
this._checkHiddenNavigationItems(this.getParsedConfiguration().item);
|
|
190
208
|
};
|
|
191
209
|
|
|
@@ -219,8 +237,9 @@ sap.ui.define([
|
|
|
219
237
|
* @param {Object} oConfiguration Parsed configuration object.
|
|
220
238
|
*/
|
|
221
239
|
ListContent.prototype._setItem = function (oConfiguration) {
|
|
222
|
-
var mItem = oConfiguration.item
|
|
223
|
-
|
|
240
|
+
var mItem = oConfiguration.item,
|
|
241
|
+
oList = this._getList(),
|
|
242
|
+
bIsSkeleton = this.isSkeleton(),
|
|
224
243
|
mSettings = {
|
|
225
244
|
iconDensityAware: false,
|
|
226
245
|
title: mItem.title && (mItem.title.value || mItem.title),
|
|
@@ -263,15 +282,17 @@ sap.ui.define([
|
|
|
263
282
|
});
|
|
264
283
|
}
|
|
265
284
|
|
|
266
|
-
if (
|
|
267
|
-
|
|
268
|
-
|
|
285
|
+
if (!bIsSkeleton) {
|
|
286
|
+
if (mItem.chart) {
|
|
287
|
+
mSettings.microchart = this._createChartAndAddLegend(mItem.chart);
|
|
288
|
+
}
|
|
269
289
|
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
290
|
+
if (mItem.actionsStrip) {
|
|
291
|
+
mSettings.actionsStrip = ActionsStrip.create(this.getCardInstance(), mItem.actionsStrip);
|
|
292
|
+
oList.setShowSeparators(ListSeparators.All);
|
|
293
|
+
} else {
|
|
294
|
+
oList.setShowSeparators(ListSeparators.None);
|
|
295
|
+
}
|
|
275
296
|
}
|
|
276
297
|
|
|
277
298
|
this._oItemTemplate = new ListContentItem(mSettings);
|
|
@@ -295,7 +316,6 @@ sap.ui.define([
|
|
|
295
316
|
sorter: this._oSorter
|
|
296
317
|
};
|
|
297
318
|
|
|
298
|
-
this._filterHiddenNavigationItems(mItem, oBindingInfo);
|
|
299
319
|
this._bindAggregationToControl("items", oList, oBindingInfo);
|
|
300
320
|
};
|
|
301
321
|
|
|
@@ -359,7 +379,7 @@ sap.ui.define([
|
|
|
359
379
|
};
|
|
360
380
|
|
|
361
381
|
/**
|
|
362
|
-
* @
|
|
382
|
+
* @override
|
|
363
383
|
* @returns {sap.m.List} The inner list.
|
|
364
384
|
*/
|
|
365
385
|
ListContent.prototype.getInnerList = function () {
|