@openui5/sap.ui.integration 1.96.2 → 1.98.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.reuse/dep5 +26 -31
- package/THIRDPARTY.txt +15 -21
- package/package.json +3 -3
- package/src/sap/ui/integration/.library +16 -22
- package/src/sap/ui/integration/ActionDefinition.js +2 -2
- package/src/sap/ui/integration/Designtime.js +2 -2
- package/src/sap/ui/integration/Extension.js +2 -2
- package/src/sap/ui/integration/Host.js +38 -2
- package/src/sap/ui/integration/bindingFeatures/DateRange.js +1 -1
- package/src/sap/ui/integration/cards/AdaptiveContent.js +16 -50
- package/src/sap/ui/integration/cards/AnalyticalContent.js +8 -9
- package/src/sap/ui/integration/cards/AnalyticalContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +5 -3
- package/src/sap/ui/integration/cards/AnalyticsCloudContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/BaseContent.js +56 -6
- package/src/sap/ui/integration/cards/BaseContentRenderer.js +2 -2
- package/src/sap/ui/integration/cards/BaseListContent.js +39 -69
- package/src/sap/ui/integration/cards/CalendarContent.js +16 -12
- package/src/sap/ui/integration/cards/CalendarContentRenderer.js +2 -1
- package/src/sap/ui/integration/cards/ComponentContent.js +3 -2
- package/src/sap/ui/integration/cards/ComponentContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/Footer.js +2 -2
- package/src/sap/ui/integration/cards/Header.js +3 -3
- package/src/sap/ui/integration/cards/ListContent.js +67 -23
- package/src/sap/ui/integration/cards/ListContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/NumericHeader.js +3 -3
- package/src/sap/ui/integration/cards/ObjectContent.js +353 -228
- package/src/sap/ui/integration/cards/ObjectContentRenderer.js +28 -0
- package/src/sap/ui/integration/cards/TableContent.js +6 -10
- package/src/sap/ui/integration/cards/TableContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/TimelineContent.js +10 -14
- package/src/sap/ui/integration/cards/TimelineContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/WebPageContent.js +6 -2
- package/src/sap/ui/integration/cards/WebPageContentRenderer.js +1 -1
- package/src/sap/ui/integration/cards/actions/BaseAction.js +89 -0
- package/src/sap/ui/integration/cards/actions/CardActions.js +472 -0
- package/src/sap/ui/integration/cards/actions/CustomAction.js +31 -0
- package/src/sap/ui/integration/cards/actions/DateChangeAction.js +20 -0
- package/src/sap/ui/integration/cards/actions/MonthChangeAction.js +20 -0
- package/src/sap/ui/integration/cards/actions/NavigationAction.js +63 -0
- package/src/sap/ui/integration/cards/actions/SubmitAction.js +89 -0
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +10 -10
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +3 -3
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +7 -12
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +2 -2
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputTime.js +2 -2
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +3 -3
- package/src/sap/ui/integration/cards/adaptivecards/elements/hostConfig.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/overwrites/ActionRender.js +1 -1
- package/src/sap/ui/integration/cards/filters/BaseFilter.js +2 -2
- package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +63 -58
- package/src/sap/ui/integration/cards/filters/FilterBar.js +91 -0
- package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +34 -13
- package/src/sap/ui/integration/cards/filters/SearchFilter.js +95 -0
- package/src/sap/ui/integration/cards/filters/SelectFilter.js +34 -4
- package/src/sap/ui/integration/controls/ActionsStrip.js +3 -3
- package/src/sap/ui/integration/controls/ActionsToolbar.js +4 -5
- package/src/sap/ui/integration/controls/ActionsToolbarRenderer.js +1 -1
- package/src/sap/ui/integration/controls/ListContentItem.js +2 -2
- package/src/sap/ui/integration/controls/ListContentItemRenderer.js +1 -1
- package/src/sap/ui/integration/controls/Microchart.js +2 -2
- package/src/sap/ui/integration/controls/MicrochartLegend.js +2 -2
- package/src/sap/ui/integration/controls/MicrochartLegendRenderer.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementBase.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementCard.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementCardEditor.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_sappsd.properties +15 -11
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saprigi.properties +13 -19
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saptrc.properties +16 -12
- package/src/sap/ui/integration/designtime/baseEditor/layout/Form.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.fragment.xml +1 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +7 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.fragment.xml +15 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +116 -0
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/util/BaseDefaultValidatorModules.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/StylesheetManager.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/util/binding/resolveBinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/cleanupDesigntimeMetadata.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/createPromise.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/escapeParameter.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/findClosestInstance.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/hasTag.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/isTemplate.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/isValidBindingString.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsPatternMatch.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +18 -3
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/BASEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/CardEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/PropertyEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/PropertyEditors.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/AppConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/HeaderConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/ListCardConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/ObjectCardConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/TableCardConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/generateActionConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/generateDataConfig.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/config/index.js +13 -2
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n.properties +57 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ar.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_bg.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ca.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cs.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cy.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_da.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_de.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_el.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_GB.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_sappsd.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saprigi.properties +0 -4
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saptrc.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es_MX.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_et.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fi.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr_CA.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hi.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hr.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hu.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_id.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_it.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_iw.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ja.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_kk.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ko.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lt.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lv.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ms.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_nl.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_no.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pl.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt_PT.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ro.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ru.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sh.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sk.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sl.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sv.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_th.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_tr.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_uk.properties +41 -1
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_vi.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_CN.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_TW.properties +40 -0
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +62 -4
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js +218 -0
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +2 -2
- package/src/sap/ui/integration/designtime/cardEditor/util/CommonPatterns.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/validator/IsPatternMatchList.js +1 -1
- package/src/sap/ui/integration/designtime/editor/CardEditor.js +53 -4
- package/src/sap/ui/integration/designtime/editor/CardPreview.js +31 -11
- package/src/sap/ui/integration/designtime/editor/css/CardPreview.css +18 -1
- package/src/sap/ui/integration/editor/Editor.js +219 -209
- package/src/sap/ui/integration/editor/EditorResourceBundles.js +43 -32
- package/src/sap/ui/integration/editor/Extension.js +2 -2
- package/src/sap/ui/integration/editor/Manifest.js +3 -3
- package/src/sap/ui/integration/editor/Merger.js +1 -19
- package/src/sap/ui/integration/editor/Settings.js +10 -6
- package/src/sap/ui/integration/editor/css/Editor.css +22 -0
- package/src/sap/ui/integration/editor/fields/BaseField.js +9 -12
- package/src/sap/ui/integration/editor/fields/BooleanField.js +4 -2
- package/src/sap/ui/integration/editor/fields/DateField.js +2 -2
- package/src/sap/ui/integration/editor/fields/DateTimeField.js +2 -2
- package/src/sap/ui/integration/editor/fields/DestinationField.js +2 -2
- package/src/sap/ui/integration/editor/fields/IntegerField.js +5 -2
- package/src/sap/ui/integration/editor/fields/ListField.js +274 -62
- package/src/sap/ui/integration/editor/fields/NumberField.js +2 -2
- package/src/sap/ui/integration/editor/fields/StringField.js +85 -53
- package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +10 -30
- package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +2 -4
- package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +2 -4
- package/src/sap/ui/integration/editor/languages.json +2 -2
- package/src/sap/ui/integration/formatters/DateTimeFormatter.js +1 -1
- package/src/sap/ui/integration/formatters/IconFormatter.js +1 -1
- package/src/sap/ui/integration/formatters/NumberFormatter.js +1 -1
- package/src/sap/ui/integration/formatters/TextFormatter.js +1 -1
- package/src/sap/ui/integration/library-bootstrap.js +1 -1
- package/src/sap/ui/integration/library.js +21 -4
- package/src/sap/ui/integration/messagebundle_ar.properties +4 -0
- package/src/sap/ui/integration/messagebundle_bg.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ca.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cs.properties +4 -0
- package/src/sap/ui/integration/messagebundle_cy.properties +4 -0
- package/src/sap/ui/integration/messagebundle_da.properties +4 -0
- package/src/sap/ui/integration/messagebundle_de.properties +4 -0
- package/src/sap/ui/integration/messagebundle_el.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_GB.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_US_sappsd.properties +4 -0
- package/src/sap/ui/integration/messagebundle_en_US_saprigi.properties +55 -81
- package/src/sap/ui/integration/messagebundle_en_US_saptrc.properties +4 -0
- package/src/sap/ui/integration/messagebundle_es.properties +4 -0
- package/src/sap/ui/integration/messagebundle_es_MX.properties +4 -0
- package/src/sap/ui/integration/messagebundle_et.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_fr_CA.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_hu.properties +4 -0
- package/src/sap/ui/integration/messagebundle_id.properties +4 -0
- package/src/sap/ui/integration/messagebundle_it.properties +4 -0
- package/src/sap/ui/integration/messagebundle_iw.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ja.properties +4 -0
- package/src/sap/ui/integration/messagebundle_kk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ko.properties +4 -0
- package/src/sap/ui/integration/messagebundle_lt.properties +4 -0
- package/src/sap/ui/integration/messagebundle_lv.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ms.properties +4 -0
- package/src/sap/ui/integration/messagebundle_nl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_no.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pt.properties +4 -0
- package/src/sap/ui/integration/messagebundle_pt_PT.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ro.properties +4 -0
- package/src/sap/ui/integration/messagebundle_ru.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sh.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sl.properties +4 -0
- package/src/sap/ui/integration/messagebundle_sv.properties +4 -0
- package/src/sap/ui/integration/messagebundle_th.properties +4 -0
- package/src/sap/ui/integration/messagebundle_tr.properties +4 -0
- package/src/sap/ui/integration/messagebundle_uk.properties +4 -0
- package/src/sap/ui/integration/messagebundle_vi.properties +4 -0
- package/src/sap/ui/integration/messagebundle_zh_CN.properties +4 -0
- package/src/sap/ui/integration/messagebundle_zh_TW.properties +4 -0
- package/src/sap/ui/integration/model/ContextModel.js +3 -3
- package/src/sap/ui/integration/model/ObservableModel.js +2 -2
- package/src/sap/ui/integration/sap-ui-integration-config.js +1 -1
- package/src/sap/ui/integration/sap-ui-integration-define-nojQuery.js +1 -1
- package/src/sap/ui/integration/schemas/sap-card.json +195 -8
- package/src/sap/ui/integration/services/Data.js +1 -1
- package/src/sap/ui/integration/services/Navigation.js +1 -1
- package/src/sap/ui/integration/services/Service.js +1 -1
- package/src/sap/ui/integration/themes/base/CalendarContent.less +31 -4
- package/src/sap/ui/integration/themes/base/ObjectContent.less +57 -9
- package/src/sap/ui/integration/themes/base/library.source.less +1 -1
- package/src/sap/ui/integration/themes/sap_hcb/library.source.less +1 -1
- package/src/sap/ui/integration/thirdparty/adaptive-expressions.js +1 -0
- package/src/sap/ui/integration/thirdparty/adaptivecards-templating.js +660 -952
- package/src/sap/ui/integration/thirdparty/markdown-it.js +8340 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js +27 -102
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-8f9ad94e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-8f9ad94e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-39f4bd50.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-39f4bd50.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-d12c1ceb.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-d12c1ceb.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-307b7f69.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-307b7f69.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-0f578e7e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-0f578e7e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-6bb7d77b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-6bb7d77b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-0376c479.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-0376c479.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-e1955d32.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-e1955d32.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-e41c44ec.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-e41c44ec.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-963f5beb.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-963f5beb.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-10d3b264.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-10d3b264.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-8a51ede2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-8a51ede2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ac48007a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ac48007a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-1fe90167.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-1fe90167.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-b984b6dc.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-b984b6dc.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-c96b504c.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-c96b504c.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-c943134b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-c943134b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-16c1c577.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-16c1c577.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-60f6fce4.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-60f6fce4.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-3c753818.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-3c753818.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-f5eadd90.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-f5eadd90.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d57d2bfc.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d57d2bfc.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-51d189db.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-51d189db.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-71f66463.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-71f66463.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-5b3dd502.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-5b3dd502.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-c393c4a9.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-c393c4a9.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-632e4f9f.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-632e4f9f.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-56b41ac8.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-56b41ac8.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-c58db769.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-c58db769.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-54fe878e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-54fe878e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-71b1c190.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-71b1c190.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-5ae816d9.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-5ae816d9.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-dd8107e1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-dd8107e1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-9e9f924f.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-9e9f924f.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-2c6cce63.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-2c6cce63.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-767b0e99.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-767b0e99.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-b3537542.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-b3537542.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-806e8ca0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-806e8ca0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-57daf6b1.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-57daf6b1.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-71a84189.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-71a84189.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-d6d000eb.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-d6d000eb.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-79715cf0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-79715cf0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-c378e505.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-c378e505.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-99b5589a.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-99b5589a.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-c9a9277d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-c9a9277d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-748178a2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-748178a2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-ffef9f6e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-ffef9f6e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0c3377c5.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0c3377c5.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-16ed5ab0.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-16ed5ab0.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-2b80e11c.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-2b80e11c.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-324b2fcc.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-324b2fcc.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-4809f843.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-4809f843.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5338149e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5338149e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55dcf53d.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55dcf53d.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55e683ed.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-55e683ed.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5bc2c0de.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5bc2c0de.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7bc1fa16.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7bc1fa16.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7f593c6e.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7f593c6e.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-826107f5.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-826107f5.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-8b95ce95.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-8b95ce95.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-a003a2e2.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-a003a2e2.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-ab3e8649.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-ab3e8649.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bfa33d93.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bfa33d93.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dec4feca.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dec4feca.js.map +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fb5a25ab.js +2 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fb5a25ab.js.map +1 -0
- package/src/sap/ui/integration/util/BaseFactory.js +2 -2
- package/src/sap/ui/integration/util/BindingHelper.js +6 -4
- package/src/sap/ui/integration/util/BindingResolver.js +6 -5
- package/src/sap/ui/integration/util/CacheAndRequestDataProvider.js +1 -1
- package/src/sap/ui/integration/util/CardMerger.js +7 -18
- package/src/sap/ui/integration/util/CardObserver.js +2 -2
- package/src/sap/ui/integration/util/ContentFactory.js +5 -9
- package/src/sap/ui/integration/util/CsrfTokenHandler.js +296 -0
- package/src/sap/ui/integration/util/DataProvider.js +11 -2
- package/src/sap/ui/integration/util/DataProviderFactory.js +49 -12
- package/src/sap/ui/integration/util/Destinations.js +2 -2
- package/src/sap/ui/integration/util/ExtensionDataProvider.js +2 -2
- package/src/sap/ui/integration/util/HeaderFactory.js +3 -3
- package/src/sap/ui/integration/util/JSONBindingHelper.js +3 -3
- package/src/sap/ui/integration/util/LoadingProvider.js +2 -2
- package/src/sap/ui/integration/util/Manifest.js +4 -4
- package/src/sap/ui/integration/util/ManifestResolver.js +99 -0
- package/src/sap/ui/integration/util/ParameterMap.js +1 -1
- package/src/sap/ui/integration/util/RequestDataProvider.js +88 -50
- package/src/sap/ui/integration/util/ServiceDataProvider.js +2 -2
- package/src/sap/ui/integration/util/ServiceManager.js +2 -2
- package/src/sap/ui/integration/util/SkeletonCard.js +50 -0
- package/src/sap/ui/integration/util/Utils.js +74 -2
- package/src/sap/ui/integration/util/loadCardEditor.js +1 -1
- package/src/sap/ui/integration/widgets/Card.js +67 -20
- package/src/sap/ui/integration/widgets/CardRenderer.js +1 -7
- package/src/sap-ui-integration-card-editor.js +1 -1
- package/src/sap-ui-integration-editor.js +1 -1
- package/src/sap-ui-integration.js +1 -1
- package/ui5.yaml +288 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/Unicode-Data-Files-LICENSE.txt +0 -27
- package/src/sap/ui/integration/thirdparty/webcomponents/ar.43441c1da168c24d.json +0 -5906
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_EG.2c9d7bc8c6cc480e.json +0 -5906
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_SA.5a58dac7851f3491.json +0 -5906
- package/src/sap/ui/integration/thirdparty/webcomponents/bg.ed8d32010cf321a6.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.es5.js +0 -212
- package/src/sap/ui/integration/thirdparty/webcomponents/ca.e7ad42298985cd11.json +0 -4996
- package/src/sap/ui/integration/thirdparty/webcomponents/cs.9c679acdc4b03e38.json +0 -5498
- package/src/sap/ui/integration/thirdparty/webcomponents/da.ba9951ef39b201a6.json +0 -4888
- package/src/sap/ui/integration/thirdparty/webcomponents/de.6caccc36abcd1ecf.json +0 -4916
- package/src/sap/ui/integration/thirdparty/webcomponents/de_AT.0f4ffe37737725a0.json +0 -4917
- package/src/sap/ui/integration/thirdparty/webcomponents/de_CH.c148cbc7ceb1a7a5.json +0 -4915
- package/src/sap/ui/integration/thirdparty/webcomponents/el.11c4c67dcb9fadcc.json +0 -4883
- package/src/sap/ui/integration/thirdparty/webcomponents/el_CY.ed3bddd6e79dc343.json +0 -4883
- package/src/sap/ui/integration/thirdparty/webcomponents/en.c4465af466100b5b.json +0 -4970
- package/src/sap/ui/integration/thirdparty/webcomponents/en_AU.5cb9fccc9ce24663.json +0 -4962
- package/src/sap/ui/integration/thirdparty/webcomponents/en_GB.e31daeeb57c2f1d1.json +0 -4971
- package/src/sap/ui/integration/thirdparty/webcomponents/en_HK.0a22405bb092bec2.json +0 -4977
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IE.6a062df10dabdb1c.json +0 -4971
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IN.bfd20b07e9079267.json +0 -4972
- package/src/sap/ui/integration/thirdparty/webcomponents/en_NZ.18303e8298e4752a.json +0 -4971
- package/src/sap/ui/integration/thirdparty/webcomponents/en_PG.9f604c968f3ab77e.json +0 -4972
- package/src/sap/ui/integration/thirdparty/webcomponents/en_SG.cc59a6a409e1617e.json +0 -4973
- package/src/sap/ui/integration/thirdparty/webcomponents/en_ZA.198f9641a502d660.json +0 -4972
- package/src/sap/ui/integration/thirdparty/webcomponents/es.c10bf80f473caf30.json +0 -4912
- package/src/sap/ui/integration/thirdparty/webcomponents/es_AR.7708d7dd7a6d2a15.json +0 -4914
- package/src/sap/ui/integration/thirdparty/webcomponents/es_BO.4a1616d9f3425fba.json +0 -4913
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CL.5637126713317a15.json +0 -4914
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CO.c9436572ca8f4da8.json +0 -4913
- package/src/sap/ui/integration/thirdparty/webcomponents/es_MX.b4bce7dc951eb8f4.json +0 -4915
- package/src/sap/ui/integration/thirdparty/webcomponents/es_PE.65f448fde1f0de13.json +0 -4913
- package/src/sap/ui/integration/thirdparty/webcomponents/es_UY.9ec44031491e9b95.json +0 -4915
- package/src/sap/ui/integration/thirdparty/webcomponents/es_VE.152233c7f57ecdab.json +0 -4914
- package/src/sap/ui/integration/thirdparty/webcomponents/et.bbc93e8a17832e8f.json +0 -4967
- package/src/sap/ui/integration/thirdparty/webcomponents/fa.083b927b3586b3a3.json +0 -4883
- package/src/sap/ui/integration/thirdparty/webcomponents/fi.1b4c89f38783556e.json +0 -5008
- package/src/sap/ui/integration/thirdparty/webcomponents/fr.ddbb9df1e0bdb6ac.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_BE.bf3609280b7b93ee.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CA.b64d0bcd23a5cd3e.json +0 -4973
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CH.349b221a02887244.json +0 -4997
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_LU.ef7d7c8bb3328d28.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/he.d628e8bf13a8a2c8.json +0 -5378
- package/src/sap/ui/integration/thirdparty/webcomponents/hi.cc34df8229f656f5.json +0 -4829
- package/src/sap/ui/integration/thirdparty/webcomponents/hr.c920290f50173516.json +0 -4919
- package/src/sap/ui/integration/thirdparty/webcomponents/hu.2d9fa4a9163cd7c0.json +0 -4856
- package/src/sap/ui/integration/thirdparty/webcomponents/id.163fdd2a7dbd1dd3.json +0 -4658
- package/src/sap/ui/integration/thirdparty/webcomponents/it.b5acbefdd6794dfc.json +0 -4950
- package/src/sap/ui/integration/thirdparty/webcomponents/it_CH.ade4cbfb2e49424a.json +0 -4950
- package/src/sap/ui/integration/thirdparty/webcomponents/ja.d882fade5c3e04b5.json +0 -4830
- package/src/sap/ui/integration/thirdparty/webcomponents/kk.ab96b18c66676a99.json +0 -4725
- package/src/sap/ui/integration/thirdparty/webcomponents/ko.a0d63a1580dcbefd.json +0 -4738
- package/src/sap/ui/integration/thirdparty/webcomponents/lt.93bb00f91a74d613.json +0 -5481
- package/src/sap/ui/integration/thirdparty/webcomponents/lv.3c272216d7d4d61c.json +0 -5112
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar.d20c665dc46a6f9b.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg.38428028ff3b1869.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca.c46423cc94896604.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs.d9d68b2690954b4e.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy.facf33e921a1a902.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da.1189e997523b89f6.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de.1edf86f620dd657a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el.b0d02877b9366e9a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es.43fc364a8be37449.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX.ebf2828c83c4821a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et.8f9abcfab5eb10c2.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi.6fc14fd0d16cc223.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr.c686ab9036b91d78.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA.fb1250c736f2ac8c.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi.8b8cbc4fb282adf6.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr.bb811aa76359724a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu.18417ced7dce8cf7.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in.e3c5681fc8917143.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it.554f904c106ab069.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw.487febe0c5c504ff.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja.68cf1fa9f03cd6c3.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk.36e63b8f9e1fd98f.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko.fb000c7a35009d21.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt.6acd357e3eb3f54e.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv.3ffdda1a20bc15ec.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms.218aa30a3e8f58fa.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl.f753744c7e08b3a5.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no.385f0fc9f2e49ab5.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl.6c42672479ad9687.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt.ede162cbf79f7fca.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT.dcaa871d6b8eec75.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro.d3f32654c57588ea.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru.0ec083b64484a12d.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh.98cd3e4299919a30.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk.fddb8b9e7b70fc1d.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl.c55d5f817482ea06.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv.6d855a11d20b4335.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th.e791b9a81f16120c.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr.ce83741e39606b55.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk.e1ea822764025a5a.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi.7ee7339211750379.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN.0cfd71faba640211.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW.bc718e0187728a16.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ms.e26b54937e5d1516.json +0 -4515
- package/src/sap/ui/integration/thirdparty/webcomponents/nb.a6e9993590a73989.json +0 -4977
- package/src/sap/ui/integration/thirdparty/webcomponents/nl.cac914c3529b7b01.json +0 -4884
- package/src/sap/ui/integration/thirdparty/webcomponents/nl_BE.a3ac6f9f99feba7b.json +0 -4884
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.34f9ef46a8f6a852.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.52d78e00faad9126.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.6c6e759e0d3534d0.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.8cc66e917327b7a4.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.966b2e43c0966351.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.97725b2cf4e77494.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.b1bf75f0b850363c.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.d164773ecb392b28.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.def3978aa5de7b11.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.dfd19a1252497415.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e19065174fdd4592.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css.e2ac94de83159e1e.json +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/pl.2cc1c94da23f8c37.json +0 -5176
- package/src/sap/ui/integration/thirdparty/webcomponents/pt.fc8dd9656bc363a4.json +0 -4805
- package/src/sap/ui/integration/thirdparty/webcomponents/pt_PT.be31b641eedfdb48.json +0 -4940
- package/src/sap/ui/integration/thirdparty/webcomponents/ro.fc6a48bc63cf435e.json +0 -5090
- package/src/sap/ui/integration/thirdparty/webcomponents/ru.77f0de46b3b490b1.json +0 -5407
- package/src/sap/ui/integration/thirdparty/webcomponents/ru_UA.4c4e0034fbd799c6.json +0 -5407
- package/src/sap/ui/integration/thirdparty/webcomponents/sk.0d62a8cca83c1dec.json +0 -5370
- package/src/sap/ui/integration/thirdparty/webcomponents/sl.7b303551cc238560.json +0 -5340
- package/src/sap/ui/integration/thirdparty/webcomponents/sr.7fb9ac6ed054ff7d.json +0 -5126
- package/src/sap/ui/integration/thirdparty/webcomponents/sv.6ea04dfd8d1c331b.json +0 -5011
- package/src/sap/ui/integration/thirdparty/webcomponents/th.8e8d734a66ed1c51.json +0 -4797
- package/src/sap/ui/integration/thirdparty/webcomponents/tr.dbb9aa836fc4e3f5.json +0 -4979
- package/src/sap/ui/integration/thirdparty/webcomponents/uk.4854089f0c12f77c.json +0 -5353
- package/src/sap/ui/integration/thirdparty/webcomponents/vi.e6ffbde0643d7d75.json +0 -4673
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-ce.js +0 -73
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -336
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -221
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd.js +0 -169
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/webcomponentsjs/webcomponents-loader.js +0 -185
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_CN.6607a3e9e0901e53.json +0 -4632
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_HK.1c2563d3e4dad56e.json +0 -4640
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_SG.db7f1334eecf894d.json +0 -4640
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_TW.a1d00dd87c58d8f0.json +0 -4728
- package/src/sap/ui/integration/util/CardActions.js +0 -551
|
@@ -203,6 +203,8 @@ CARD_EDITOR.PARAMETERS.REQUIRED=Gerekli
|
|
|
203
203
|
|
|
204
204
|
CARD_EDITOR.PARAMETERS.EXPANDED=Geni\u015Fletildi
|
|
205
205
|
|
|
206
|
+
CARD_EDITOR.PARAMETERS.LEVEL=Level
|
|
207
|
+
|
|
206
208
|
CARD_EDITOR.PARAMETERS.TRANSLATABLE=\u00C7evrilebilir
|
|
207
209
|
|
|
208
210
|
CARD_EDITOR.PARAMETERS.ALLOWDYNAMICVALUES=Dinamik de\u011Ferlere izin ver
|
|
@@ -235,6 +237,44 @@ CARD_EDITOR.DESTINATION.NAME=Ad
|
|
|
235
237
|
|
|
236
238
|
CARD_EDITOR.DESTINATION.DEFAULT_URL=Varsay\u0131lan URL
|
|
237
239
|
|
|
240
|
+
CARD_EDITOR.FILTERS=Filtreler
|
|
241
|
+
|
|
242
|
+
CARD_EDITOR.FILTER=Filtre
|
|
243
|
+
|
|
244
|
+
CARD_EDITOR.FILTER.ITEM=Kalem
|
|
245
|
+
|
|
246
|
+
CARD_EDITOR.FILTER.KEY=Ad
|
|
247
|
+
|
|
248
|
+
CARD_EDITOR.FILTER.TYPE=Tip
|
|
249
|
+
|
|
250
|
+
CARD_EDITOR.FILTER.DESCRIPTION=Tan\u0131m
|
|
251
|
+
|
|
252
|
+
CARD_EDITOR.FILTER.LABEL=Etiket
|
|
253
|
+
|
|
254
|
+
CARD_EDITOR.FILTER.TYPE.SELECT=Se\u00E7
|
|
255
|
+
|
|
256
|
+
CARD_EDITOR.FILTER.TYPE.DATERANGE=Tarih aral\u0131\u011F\u0131
|
|
257
|
+
|
|
258
|
+
CARD_EDITOR.FILTER.ITEM_LABEL=Filtre
|
|
259
|
+
|
|
260
|
+
CARD_EDITOR.FILTER.VALUE=Ba\u015Flang\u0131\u00E7 de\u011Feri
|
|
261
|
+
|
|
262
|
+
CARD_EDITOR.FILTER.ITEM.PATH=JSON k\u00F6k\u00FC i\u00E7in veri yolu
|
|
263
|
+
|
|
264
|
+
CARD_EDITOR.FILTER.ITEM.TEMPLATE.TITLE=Kalem ba\u011Flama \u015Fablon ba\u015Fl\u0131\u011F\u0131
|
|
265
|
+
|
|
266
|
+
CARD_EDITOR.FILTER.ITEM.TEMPLATE.KEY=Kalem ba\u011Flama \u015Fablon anahtar\u0131
|
|
267
|
+
|
|
268
|
+
CARD_EDITOR.FILTER.ITEM.DATA=Veri konfig\u00FCrasyonu
|
|
269
|
+
|
|
270
|
+
CARD_EDITOR.FILTER.ITEMS=Statik kalem listesi
|
|
271
|
+
|
|
272
|
+
CARD_EDITOR.FILTER.VALUE.OPTION=Se\u00E7ilen se\u00E7enek
|
|
273
|
+
|
|
274
|
+
CARD_EDITOR.FILTER.VALUE.VALUES=Se\u00E7enek de\u011Feri
|
|
275
|
+
|
|
276
|
+
CARD_EDITOR.FILTER.OPTIONS=Kullan\u0131labilir se\u00E7enekler
|
|
277
|
+
|
|
238
278
|
CARD_EDITOR.GROUP.METADATA=Kart meta verileri
|
|
239
279
|
|
|
240
280
|
CARD_EDITOR.GROUP.GENERALCONFIGURATION=Genel konfig\u00FCrasyon
|
|
@@ -203,6 +203,8 @@ CARD_EDITOR.PARAMETERS.REQUIRED=\u041D\u0435\u043E\u0431\u0445\u0456\u0434\u043D
|
|
|
203
203
|
|
|
204
204
|
CARD_EDITOR.PARAMETERS.EXPANDED=\u0420\u043E\u0437\u0433\u043E\u0440\u043D\u0443\u0442\u043E
|
|
205
205
|
|
|
206
|
+
CARD_EDITOR.PARAMETERS.LEVEL=Level
|
|
207
|
+
|
|
206
208
|
CARD_EDITOR.PARAMETERS.TRANSLATABLE=\u0417 \u043C\u043E\u0436\u043B\u0438\u0432\u0456\u0441\u0442\u044E \u043F\u0435\u0440\u0435\u043A\u043B\u0430\u0434\u0443
|
|
207
209
|
|
|
208
210
|
CARD_EDITOR.PARAMETERS.ALLOWDYNAMICVALUES=\u0414\u043E\u0437\u0432\u043E\u043B\u0438\u0442\u0438 \u0434\u0438\u043D\u0430\u043C\u0456\u0447\u043D\u0456 \u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044F
|
|
@@ -233,7 +235,45 @@ CARD_EDITOR.DESTINATION=\u041C\u0456\u0441\u0446\u0435 \u043F\u0440\u0438\u0437\
|
|
|
233
235
|
|
|
234
236
|
CARD_EDITOR.DESTINATION.NAME=\u0406\u043C'\u044F
|
|
235
237
|
|
|
236
|
-
CARD_EDITOR.DESTINATION.DEFAULT_URL=\u0423\u0441\u0442\u0430\u043B\u0435\u043D\
|
|
238
|
+
CARD_EDITOR.DESTINATION.DEFAULT_URL=\u0423\u0441\u0442\u0430\u043B\u0435\u043D\u0430 URL-\u0430\u0434\u0440\u0435\u0441\u0430
|
|
239
|
+
|
|
240
|
+
CARD_EDITOR.FILTERS=\u0424\u0456\u043B\u044C\u0442\u0440\u0438
|
|
241
|
+
|
|
242
|
+
CARD_EDITOR.FILTER=\u0424\u0456\u043B\u044C\u0442\u0440
|
|
243
|
+
|
|
244
|
+
CARD_EDITOR.FILTER.ITEM=\u041F\u043E\u0437\u0438\u0446\u0456\u044F
|
|
245
|
+
|
|
246
|
+
CARD_EDITOR.FILTER.KEY=\u0406\u043C'\u044F
|
|
247
|
+
|
|
248
|
+
CARD_EDITOR.FILTER.TYPE=\u0422\u0438\u043F
|
|
249
|
+
|
|
250
|
+
CARD_EDITOR.FILTER.DESCRIPTION=\u041E\u043F\u0438\u0441
|
|
251
|
+
|
|
252
|
+
CARD_EDITOR.FILTER.LABEL=\u041F\u043E\u0437\u043D\u0430\u0447\u043A\u0430
|
|
253
|
+
|
|
254
|
+
CARD_EDITOR.FILTER.TYPE.SELECT=\u0412\u0438\u0431\u0440\u0430\u0442\u0438
|
|
255
|
+
|
|
256
|
+
CARD_EDITOR.FILTER.TYPE.DATERANGE=\u0414\u0456\u0430\u043F\u0430\u0437\u043E\u043D \u0434\u0430\u0442
|
|
257
|
+
|
|
258
|
+
CARD_EDITOR.FILTER.ITEM_LABEL=\u0424\u0456\u043B\u044C\u0442\u0440
|
|
259
|
+
|
|
260
|
+
CARD_EDITOR.FILTER.VALUE=\u0412\u0438\u0445\u0456\u0434\u043D\u0435 \u0437\u043D\u0430\u0447\u0435\u043D\u043D\u044F
|
|
261
|
+
|
|
262
|
+
CARD_EDITOR.FILTER.ITEM.PATH=\u0428\u043B\u044F\u0445 \u0434\u0430\u043D\u0438\u0445 \u0434\u043B\u044F \u043A\u043E\u0440\u0435\u043D\u044F JSON
|
|
263
|
+
|
|
264
|
+
CARD_EDITOR.FILTER.ITEM.TEMPLATE.TITLE=\u0417\u0430\u0433\u043E\u043B\u043E\u0432\u043E\u043A \u0448\u0430\u0431\u043B\u043E\u043D\u0443 \u043F\u0440\u0438\u0432'\u044F\u0437\u043A\u0438 \u043F\u043E\u0437\u0438\u0446\u0456\u0457
|
|
265
|
+
|
|
266
|
+
CARD_EDITOR.FILTER.ITEM.TEMPLATE.KEY=\u041A\u043B\u044E\u0447 \u0448\u0430\u0431\u043B\u043E\u043D\u0443 \u043F\u0440\u0438\u0432'\u044F\u0437\u043A\u0438 \u043F\u043E\u0437\u0438\u0446\u0456\u0457
|
|
267
|
+
|
|
268
|
+
CARD_EDITOR.FILTER.ITEM.DATA=\u041A\u043E\u043D\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u044F \u0434\u0430\u043D\u0438\u0445
|
|
269
|
+
|
|
270
|
+
CARD_EDITOR.FILTER.ITEMS=\u0421\u043F\u0438\u0441\u043E\u043A \u0441\u0442\u0430\u0442\u0438\u0447\u043D\u0438\u0445 \u043F\u043E\u0437\u0438\u0446\u0456\u0439
|
|
271
|
+
|
|
272
|
+
CARD_EDITOR.FILTER.VALUE.OPTION=\u0412\u0438\u0431\u0440\u0430\u043D\u0430 \u043E\u043F\u0446\u0456\u044F
|
|
273
|
+
|
|
274
|
+
CARD_EDITOR.FILTER.VALUE.VALUES=\u0417\u043D\u0430\u0447\u0435\u043D\u043D\u044F \u043E\u043F\u0446\u0456\u0457
|
|
275
|
+
|
|
276
|
+
CARD_EDITOR.FILTER.OPTIONS=\u0414\u043E\u0441\u0442\u0443\u043F\u043D\u0456 \u043E\u043F\u0446\u0456\u0457
|
|
237
277
|
|
|
238
278
|
CARD_EDITOR.GROUP.METADATA=\u041C\u0435\u0442\u0430\u0434\u0430\u043D\u0456 \u043A\u0430\u0440\u0442\u043A\u0438
|
|
239
279
|
|
|
@@ -203,6 +203,8 @@ CARD_EDITOR.PARAMETERS.REQUIRED=\u0110\u01B0\u01A1\u0323c y\u00EAu c\u00E2\u0300
|
|
|
203
203
|
|
|
204
204
|
CARD_EDITOR.PARAMETERS.EXPANDED=\u0110\u01B0\u01A1\u0323c m\u01A1\u0309 r\u00F4\u0323ng
|
|
205
205
|
|
|
206
|
+
CARD_EDITOR.PARAMETERS.LEVEL=Level
|
|
207
|
+
|
|
206
208
|
CARD_EDITOR.PARAMETERS.TRANSLATABLE=Co\u0301 th\u00EA\u0309 di\u0323ch
|
|
207
209
|
|
|
208
210
|
CARD_EDITOR.PARAMETERS.ALLOWDYNAMICVALUES=Cho ph\u00E9p gi\u00E1 tr\u1ECB \u0111\u1ED9ng
|
|
@@ -235,6 +237,44 @@ CARD_EDITOR.DESTINATION.NAME=T\u00EAn
|
|
|
235
237
|
|
|
236
238
|
CARD_EDITOR.DESTINATION.DEFAULT_URL=URL m\u0103\u0323c \u0111i\u0323nh
|
|
237
239
|
|
|
240
|
+
CARD_EDITOR.FILTERS=B\u00F4\u0323 lo\u0323c
|
|
241
|
+
|
|
242
|
+
CARD_EDITOR.FILTER=Lo\u0323c
|
|
243
|
+
|
|
244
|
+
CARD_EDITOR.FILTER.ITEM=Mu\u0323c
|
|
245
|
+
|
|
246
|
+
CARD_EDITOR.FILTER.KEY=T\u00EAn
|
|
247
|
+
|
|
248
|
+
CARD_EDITOR.FILTER.TYPE=Ki\u00EA\u0309u
|
|
249
|
+
|
|
250
|
+
CARD_EDITOR.FILTER.DESCRIPTION=M\u00F4 ta\u0309
|
|
251
|
+
|
|
252
|
+
CARD_EDITOR.FILTER.LABEL=Nha\u0303n
|
|
253
|
+
|
|
254
|
+
CARD_EDITOR.FILTER.TYPE.SELECT=Cho\u0323n
|
|
255
|
+
|
|
256
|
+
CARD_EDITOR.FILTER.TYPE.DATERANGE=Pha\u0323m vi nga\u0300y
|
|
257
|
+
|
|
258
|
+
CARD_EDITOR.FILTER.ITEM_LABEL=Lo\u0323c
|
|
259
|
+
|
|
260
|
+
CARD_EDITOR.FILTER.VALUE=Gia\u0301 tri\u0323 ban \u0111\u00E2\u0300u
|
|
261
|
+
|
|
262
|
+
CARD_EDITOR.FILTER.ITEM.PATH=\u0110\u01B0\u01A1\u0300ng d\u00E2\u0303n d\u01B0\u0303 li\u00EA\u0323u cho g\u00F4\u0301c JSON
|
|
263
|
+
|
|
264
|
+
CARD_EDITOR.FILTER.ITEM.TEMPLATE.TITLE=Ti\u00EAu \u0111\u00EA\u0300 m\u00E2\u0303u li\u00EAn k\u00EA\u0301t mu\u0323c
|
|
265
|
+
|
|
266
|
+
CARD_EDITOR.FILTER.ITEM.TEMPLATE.KEY=Kho\u0301a m\u00E2\u0303u li\u00EAn k\u00EA\u0301t mu\u0323c
|
|
267
|
+
|
|
268
|
+
CARD_EDITOR.FILTER.ITEM.DATA=C\u1EA5u h\u00ECnh d\u1EEF li\u1EC7u
|
|
269
|
+
|
|
270
|
+
CARD_EDITOR.FILTER.ITEMS=Danh sa\u0301ch mu\u0323c ti\u0303nh
|
|
271
|
+
|
|
272
|
+
CARD_EDITOR.FILTER.VALUE.OPTION=Tu\u0300y cho\u0323n \u0111\u01B0\u01A1\u0323c cho\u0323n
|
|
273
|
+
|
|
274
|
+
CARD_EDITOR.FILTER.VALUE.VALUES=Gia\u0301 tri\u0323 tu\u0300y cho\u0323n
|
|
275
|
+
|
|
276
|
+
CARD_EDITOR.FILTER.OPTIONS=Tu\u0300y cho\u0323n co\u0301 s\u0103\u0303n
|
|
277
|
+
|
|
238
278
|
CARD_EDITOR.GROUP.METADATA=Th\u1EBB si\u00EAu d\u1EEF li\u1EC7u
|
|
239
279
|
|
|
240
280
|
CARD_EDITOR.GROUP.GENERALCONFIGURATION=C\u1EA5u h\u00ECnh chung
|
|
@@ -203,6 +203,8 @@ CARD_EDITOR.PARAMETERS.REQUIRED=\u5FC5\u9700
|
|
|
203
203
|
|
|
204
204
|
CARD_EDITOR.PARAMETERS.EXPANDED=\u5DF2\u5C55\u5F00
|
|
205
205
|
|
|
206
|
+
CARD_EDITOR.PARAMETERS.LEVEL=Level
|
|
207
|
+
|
|
206
208
|
CARD_EDITOR.PARAMETERS.TRANSLATABLE=\u53EF\u7FFB\u8BD1
|
|
207
209
|
|
|
208
210
|
CARD_EDITOR.PARAMETERS.ALLOWDYNAMICVALUES=\u5141\u8BB8\u52A8\u6001\u503C
|
|
@@ -235,6 +237,44 @@ CARD_EDITOR.DESTINATION.NAME=\u540D\u79F0
|
|
|
235
237
|
|
|
236
238
|
CARD_EDITOR.DESTINATION.DEFAULT_URL=\u7F3A\u7701 URL
|
|
237
239
|
|
|
240
|
+
CARD_EDITOR.FILTERS=\u8FC7\u6EE4\u5668
|
|
241
|
+
|
|
242
|
+
CARD_EDITOR.FILTER=\u8FC7\u6EE4\u5668
|
|
243
|
+
|
|
244
|
+
CARD_EDITOR.FILTER.ITEM=\u9879\u76EE
|
|
245
|
+
|
|
246
|
+
CARD_EDITOR.FILTER.KEY=\u540D\u79F0
|
|
247
|
+
|
|
248
|
+
CARD_EDITOR.FILTER.TYPE=\u7C7B\u578B
|
|
249
|
+
|
|
250
|
+
CARD_EDITOR.FILTER.DESCRIPTION=\u63CF\u8FF0
|
|
251
|
+
|
|
252
|
+
CARD_EDITOR.FILTER.LABEL=\u6807\u7B7E
|
|
253
|
+
|
|
254
|
+
CARD_EDITOR.FILTER.TYPE.SELECT=\u9009\u62E9
|
|
255
|
+
|
|
256
|
+
CARD_EDITOR.FILTER.TYPE.DATERANGE=\u65E5\u671F\u8303\u56F4
|
|
257
|
+
|
|
258
|
+
CARD_EDITOR.FILTER.ITEM_LABEL=\u8FC7\u6EE4\u5668
|
|
259
|
+
|
|
260
|
+
CARD_EDITOR.FILTER.VALUE=\u521D\u59CB\u503C
|
|
261
|
+
|
|
262
|
+
CARD_EDITOR.FILTER.ITEM.PATH=JSON \u6839\u7684\u6570\u636E\u8DEF\u5F84
|
|
263
|
+
|
|
264
|
+
CARD_EDITOR.FILTER.ITEM.TEMPLATE.TITLE=\u9879\u76EE\u7ED1\u5B9A\u6A21\u677F\u6807\u9898
|
|
265
|
+
|
|
266
|
+
CARD_EDITOR.FILTER.ITEM.TEMPLATE.KEY=\u9879\u76EE\u7ED1\u5B9A\u6A21\u677F\u952E\u503C
|
|
267
|
+
|
|
268
|
+
CARD_EDITOR.FILTER.ITEM.DATA=\u6570\u636E\u914D\u7F6E
|
|
269
|
+
|
|
270
|
+
CARD_EDITOR.FILTER.ITEMS=\u9759\u6001\u9879\u76EE\u5217\u8868
|
|
271
|
+
|
|
272
|
+
CARD_EDITOR.FILTER.VALUE.OPTION=\u6240\u9009\u9009\u9879
|
|
273
|
+
|
|
274
|
+
CARD_EDITOR.FILTER.VALUE.VALUES=\u9009\u9879\u503C
|
|
275
|
+
|
|
276
|
+
CARD_EDITOR.FILTER.OPTIONS=\u53EF\u7528\u9009\u9879
|
|
277
|
+
|
|
238
278
|
CARD_EDITOR.GROUP.METADATA=\u5361\u5143\u6570\u636E
|
|
239
279
|
|
|
240
280
|
CARD_EDITOR.GROUP.GENERALCONFIGURATION=\u5E38\u89C4\u914D\u7F6E
|
|
@@ -203,6 +203,8 @@ CARD_EDITOR.PARAMETERS.REQUIRED=\u5FC5\u8981
|
|
|
203
203
|
|
|
204
204
|
CARD_EDITOR.PARAMETERS.EXPANDED=\u5DF2\u5C55\u958B
|
|
205
205
|
|
|
206
|
+
CARD_EDITOR.PARAMETERS.LEVEL=Level
|
|
207
|
+
|
|
206
208
|
CARD_EDITOR.PARAMETERS.TRANSLATABLE=\u53EF\u8F49\u63DB
|
|
207
209
|
|
|
208
210
|
CARD_EDITOR.PARAMETERS.ALLOWDYNAMICVALUES=\u5141\u8A31\u52D5\u614B\u503C
|
|
@@ -235,6 +237,44 @@ CARD_EDITOR.DESTINATION.NAME=\u540D\u7A31
|
|
|
235
237
|
|
|
236
238
|
CARD_EDITOR.DESTINATION.DEFAULT_URL=\u9810\u8A2D URL
|
|
237
239
|
|
|
240
|
+
CARD_EDITOR.FILTERS=\u7BE9\u9078\u5668
|
|
241
|
+
|
|
242
|
+
CARD_EDITOR.FILTER=\u7BE9\u9078
|
|
243
|
+
|
|
244
|
+
CARD_EDITOR.FILTER.ITEM=\u9805\u76EE
|
|
245
|
+
|
|
246
|
+
CARD_EDITOR.FILTER.KEY=\u540D\u7A31
|
|
247
|
+
|
|
248
|
+
CARD_EDITOR.FILTER.TYPE=\u985E\u578B
|
|
249
|
+
|
|
250
|
+
CARD_EDITOR.FILTER.DESCRIPTION=\u8AAA\u660E
|
|
251
|
+
|
|
252
|
+
CARD_EDITOR.FILTER.LABEL=\u6A19\u7C64
|
|
253
|
+
|
|
254
|
+
CARD_EDITOR.FILTER.TYPE.SELECT=\u9078\u64C7
|
|
255
|
+
|
|
256
|
+
CARD_EDITOR.FILTER.TYPE.DATERANGE=\u65E5\u671F\u7BC4\u570D
|
|
257
|
+
|
|
258
|
+
CARD_EDITOR.FILTER.ITEM_LABEL=\u7BE9\u9078
|
|
259
|
+
|
|
260
|
+
CARD_EDITOR.FILTER.VALUE=\u521D\u59CB\u503C
|
|
261
|
+
|
|
262
|
+
CARD_EDITOR.FILTER.ITEM.PATH=JSON \u6839\u7BC0\u9EDE\u7684\u8CC7\u6599\u8DEF\u5F91
|
|
263
|
+
|
|
264
|
+
CARD_EDITOR.FILTER.ITEM.TEMPLATE.TITLE=\u9805\u76EE\u9023\u7D50\u7BC4\u672C\u6A19\u984C
|
|
265
|
+
|
|
266
|
+
CARD_EDITOR.FILTER.ITEM.TEMPLATE.KEY=\u9805\u76EE\u9023\u7D50\u7BC4\u672C\u9375\u503C
|
|
267
|
+
|
|
268
|
+
CARD_EDITOR.FILTER.ITEM.DATA=\u8CC7\u6599\u7D44\u614B
|
|
269
|
+
|
|
270
|
+
CARD_EDITOR.FILTER.ITEMS=\u975C\u614B\u9805\u76EE\u6E05\u55AE
|
|
271
|
+
|
|
272
|
+
CARD_EDITOR.FILTER.VALUE.OPTION=\u5DF2\u9078\u64C7\u9078\u9805
|
|
273
|
+
|
|
274
|
+
CARD_EDITOR.FILTER.VALUE.VALUES=\u9078\u9805\u503C
|
|
275
|
+
|
|
276
|
+
CARD_EDITOR.FILTER.OPTIONS=\u53EF\u7528\u9078\u9805
|
|
277
|
+
|
|
238
278
|
CARD_EDITOR.GROUP.METADATA=\u5361\u7247\u4E2D\u7E7C\u8CC7\u6599
|
|
239
279
|
|
|
240
280
|
CARD_EDITOR.GROUP.GENERALCONFIGURATION=\u4E00\u822C\u7D44\u614B
|
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
7
7
|
"sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor",
|
|
8
8
|
"sap/base/util/restricted/_omit",
|
|
9
9
|
"sap/base/util/restricted/_merge",
|
|
10
|
-
"sap/base/util/deepClone"
|
|
10
|
+
"sap/base/util/deepClone",
|
|
11
|
+
"sap/ui/integration/cards/filters/DateRangeFilter"
|
|
11
12
|
], function (
|
|
12
13
|
BasePropertyEditor,
|
|
13
14
|
_omit,
|
|
14
15
|
_merge,
|
|
15
|
-
deepClone
|
|
16
|
+
deepClone,
|
|
17
|
+
DateRangeFilter
|
|
16
18
|
) {
|
|
17
19
|
"use strict";
|
|
18
20
|
|
|
@@ -53,7 +55,7 @@ sap.ui.define([
|
|
|
53
55
|
* @alias sap.ui.integration.designtime.cardEditor.propertyEditor.complexMapEditor.ComplexMapEditor
|
|
54
56
|
* @author SAP SE
|
|
55
57
|
* @since 1.76
|
|
56
|
-
* @version 1.
|
|
58
|
+
* @version 1.98.0
|
|
57
59
|
*
|
|
58
60
|
* @private
|
|
59
61
|
* @experimental 1.76
|
|
@@ -155,6 +157,43 @@ sap.ui.define([
|
|
|
155
157
|
|
|
156
158
|
return oFormattedValue;
|
|
157
159
|
}.bind(this));
|
|
160
|
+
|
|
161
|
+
//handle card filters input data
|
|
162
|
+
if (this.getConfig().type === "filters") {
|
|
163
|
+
for (var i = 0; i < aFormattedValues.length; i++) {
|
|
164
|
+
if (!aFormattedValues[i].options) {
|
|
165
|
+
var oDefaultOptions = this._getDefaultFilterOptions();
|
|
166
|
+
aFormattedValues[i].options = oDefaultOptions;
|
|
167
|
+
}
|
|
168
|
+
if (aFormattedValues[i].type === undefined) {
|
|
169
|
+
aFormattedValues[i].selectedOptions = [];
|
|
170
|
+
}
|
|
171
|
+
if (aFormattedValues[i].type === "Select") {
|
|
172
|
+
aFormattedValues[i].sValue = aFormattedValues[i].value;
|
|
173
|
+
delete aFormattedValues[i].value;
|
|
174
|
+
aFormattedValues[i].selectedOptions = [];
|
|
175
|
+
} else if (aFormattedValues[i].type === "DateRange") {
|
|
176
|
+
// aFormattedValues[i].dValue = aFormattedValues[i].value;
|
|
177
|
+
// delete aFormattedValues[i].value;
|
|
178
|
+
//add required properties for new filter
|
|
179
|
+
if (!aFormattedValues[i].value) {
|
|
180
|
+
aFormattedValues[i].value = {option: 'today', values: []};
|
|
181
|
+
}
|
|
182
|
+
aFormattedValues[i].dValue = aFormattedValues[i].value;
|
|
183
|
+
delete aFormattedValues[i].value;
|
|
184
|
+
//construct values for selected date range option
|
|
185
|
+
var oSelectedOptions = [];
|
|
186
|
+
for (var j = 0; j < aFormattedValues[i].options.length; j++) {
|
|
187
|
+
oSelectedOptions.push({
|
|
188
|
+
key: aFormattedValues[i].options[j],
|
|
189
|
+
title: aFormattedValues[i].options[j]
|
|
190
|
+
});
|
|
191
|
+
}
|
|
192
|
+
aFormattedValues[i].selectedOptions = oSelectedOptions;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
|
|
158
197
|
return aFormattedValues;
|
|
159
198
|
};
|
|
160
199
|
|
|
@@ -225,6 +264,19 @@ sap.ui.define([
|
|
|
225
264
|
};
|
|
226
265
|
|
|
227
266
|
ComplexMapEditor.prototype._processOutputValue = function(aValue) {
|
|
267
|
+
//handle filters value path conflict issue
|
|
268
|
+
if (this.getConfig().type === "filters") {
|
|
269
|
+
for (var i = 0; i < aValue.length; i++) {
|
|
270
|
+
if (aValue[i].type === "Select") {
|
|
271
|
+
aValue[i].value = aValue[i].sValue;
|
|
272
|
+
delete aValue[i].sValue;
|
|
273
|
+
} else if (aValue[i].type === "DateRange" && aValue[i].selectedOptions) {
|
|
274
|
+
aValue[i].value = aValue[i].dValue;
|
|
275
|
+
delete aValue[i].dValue;
|
|
276
|
+
delete aValue[i].selectedOptions;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
228
280
|
var oFormattedValue = {};
|
|
229
281
|
aValue.forEach(function (oValue) {
|
|
230
282
|
oFormattedValue[oValue.key] = _omit(oValue, "key");
|
|
@@ -232,5 +284,11 @@ sap.ui.define([
|
|
|
232
284
|
return oFormattedValue;
|
|
233
285
|
};
|
|
234
286
|
|
|
287
|
+
ComplexMapEditor.prototype._getDefaultFilterOptions = function() {
|
|
288
|
+
var dateRangeFilter = new DateRangeFilter();
|
|
289
|
+
var oDefaultFilterOptions = dateRangeFilter._getDefaultOptions();
|
|
290
|
+
return oDefaultFilterOptions;
|
|
291
|
+
};
|
|
292
|
+
|
|
235
293
|
return ComplexMapEditor;
|
|
236
294
|
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -41,7 +41,7 @@ sap.ui.define([
|
|
|
41
41
|
* @alias sap.ui.integration.designtime.cardEditor.propertyEditor.destinationsEditor.DestinationsEditor
|
|
42
42
|
* @author SAP SE
|
|
43
43
|
* @since 1.77
|
|
44
|
-
* @version 1.
|
|
44
|
+
* @version 1.98.0
|
|
45
45
|
*
|
|
46
46
|
* @private
|
|
47
47
|
* @experimental 1.77
|
package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/filtersEditor/FiltersEditor.js
ADDED
|
@@ -0,0 +1,218 @@
|
|
|
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
|
+
sap.ui.define([
|
|
7
|
+
"sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor",
|
|
8
|
+
"sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor",
|
|
9
|
+
"sap/base/util/restricted/_merge",
|
|
10
|
+
"sap/ui/integration/cards/filters/DateRangeFilter"
|
|
11
|
+
], function (
|
|
12
|
+
BasePropertyEditor,
|
|
13
|
+
ComplexMapEditor,
|
|
14
|
+
_merge,
|
|
15
|
+
DateRangeFilter
|
|
16
|
+
) {
|
|
17
|
+
"use strict";
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* @class
|
|
21
|
+
* Constructor for a new <code>FiltersEditor</code>.
|
|
22
|
+
*
|
|
23
|
+
* <h3>Configuration</h3>
|
|
24
|
+
*
|
|
25
|
+
* Configuration is inherited from {@link sap.ui.integration.designtime.cardEditor.propertyEditor.complexMapEditor.ComplexMapEditor}
|
|
26
|
+
*
|
|
27
|
+
* <table style="width:100%;">
|
|
28
|
+
* <tr style="text-align:left">
|
|
29
|
+
* <th>Option</th>
|
|
30
|
+
* <th>Type</th>
|
|
31
|
+
* <th>Default</th>
|
|
32
|
+
* <th>Description</th>
|
|
33
|
+
* </tr>
|
|
34
|
+
* <tr>
|
|
35
|
+
* <td><code>allowedTypes</code></td>
|
|
36
|
+
* <td><code>string[]</code></td>
|
|
37
|
+
* <td><code>[]</code></td>
|
|
38
|
+
* <td>Allowed filter types</td>
|
|
39
|
+
* </tr>
|
|
40
|
+
* </table>
|
|
41
|
+
*
|
|
42
|
+
* @extends sap.ui.integration.designtime.cardEditor.propertyEditor.complexMapEditor.ComplexMapEditor
|
|
43
|
+
* @alias sap.ui.integration.designtime.cardEditor.propertyEditor.filtersEditor.FiltersEditor
|
|
44
|
+
* @author SAP SE
|
|
45
|
+
* @since 1.98
|
|
46
|
+
* @version 1.98.0
|
|
47
|
+
*
|
|
48
|
+
* @private
|
|
49
|
+
* @experimental 1.97
|
|
50
|
+
* @ui5-restricted
|
|
51
|
+
*/
|
|
52
|
+
var FiltersEditor = ComplexMapEditor.extend("sap.ui.integration.designtime.cardEditor.propertyEditor.filtersEditor.FiltersEditor", {
|
|
53
|
+
metadata: {
|
|
54
|
+
library: "sap.ui.integration"
|
|
55
|
+
},
|
|
56
|
+
renderer: BasePropertyEditor.getMetadata().getRenderer().render
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
FiltersEditor.configMetadata = Object.assign({}, ComplexMapEditor.configMetadata, {
|
|
60
|
+
allowedValues: {
|
|
61
|
+
defaultValue: [],
|
|
62
|
+
mergeStrategy: "intersection"
|
|
63
|
+
}
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
FiltersEditor.prototype.onBeforeConfigChange = function (oConfig) {
|
|
67
|
+
var oCustomConfig = {};
|
|
68
|
+
|
|
69
|
+
if (oConfig["allowKeyChange"]) {
|
|
70
|
+
// Filter-specific developer scenario
|
|
71
|
+
oCustomConfig = {
|
|
72
|
+
template: {
|
|
73
|
+
key: {
|
|
74
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.KEY"),
|
|
75
|
+
path: "key",
|
|
76
|
+
type: "string",
|
|
77
|
+
enabled: oConfig.allowKeyChange,
|
|
78
|
+
allowBindings: false,
|
|
79
|
+
validators: [
|
|
80
|
+
{
|
|
81
|
+
type: "isUniqueKey",
|
|
82
|
+
config: {
|
|
83
|
+
keys: function () {
|
|
84
|
+
return Object.keys(this.getValue());
|
|
85
|
+
}.bind(this),
|
|
86
|
+
currentKey: function (oPropertyEditor) {
|
|
87
|
+
return oPropertyEditor.getValue();
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
type: {
|
|
94
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.TYPE"),
|
|
95
|
+
path: "type",
|
|
96
|
+
type: "select",
|
|
97
|
+
items: (oConfig["allowedTypes"] || []).map(function(sKey){ return { key: sKey }; }),
|
|
98
|
+
allowCustomValues: true,
|
|
99
|
+
allowBindings: false
|
|
100
|
+
},
|
|
101
|
+
label: {
|
|
102
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.LABEL"),
|
|
103
|
+
path: "label",
|
|
104
|
+
type: "string"
|
|
105
|
+
},
|
|
106
|
+
description: {
|
|
107
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.DESCRIPTION"),
|
|
108
|
+
type: "string",
|
|
109
|
+
path: "description",
|
|
110
|
+
allowCustomValues: true,
|
|
111
|
+
allowBindings: false
|
|
112
|
+
},
|
|
113
|
+
value: {
|
|
114
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.VALUE"),
|
|
115
|
+
path: "sValue",
|
|
116
|
+
type: "string",
|
|
117
|
+
visible: "{= ${type} === 'Select'}"
|
|
118
|
+
},
|
|
119
|
+
itemPath: {
|
|
120
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.ITEM.PATH"),
|
|
121
|
+
path: "item/path",
|
|
122
|
+
type: "string",
|
|
123
|
+
visible: "{= ${type} === 'Select'}",
|
|
124
|
+
enabled: "{= ${items} === undefined || ${items} === null}"
|
|
125
|
+
},
|
|
126
|
+
itemTemplateKey: {
|
|
127
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.ITEM.TEMPLATE.KEY"),
|
|
128
|
+
path: "item/template/key",
|
|
129
|
+
type: "string",
|
|
130
|
+
visible: "{= ${type} === 'Select'}",
|
|
131
|
+
enabled: "{= ${items} === undefined || ${items} === null}"
|
|
132
|
+
},
|
|
133
|
+
itemTemplateTitle: {
|
|
134
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.ITEM.TEMPLATE.TITLE"),
|
|
135
|
+
path: "item/template/title",
|
|
136
|
+
type: "string",
|
|
137
|
+
visible: "{= ${type} === 'Select'}",
|
|
138
|
+
enabled: "{= ${items} === undefined || ${items} === null}"
|
|
139
|
+
},
|
|
140
|
+
itemData: {
|
|
141
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.ITEM.DATA"),
|
|
142
|
+
path: "data",
|
|
143
|
+
type: "json",
|
|
144
|
+
visible: "{= ${type} === 'Select'}",
|
|
145
|
+
enabled: "{= ${items} === undefined || ${items} === null}"
|
|
146
|
+
},
|
|
147
|
+
items: {
|
|
148
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.ITEMS"),
|
|
149
|
+
path: "items",
|
|
150
|
+
type: "json",
|
|
151
|
+
visible: "{= ${type} === 'Select'}",
|
|
152
|
+
enabled: "{= ${item/template/key} === undefined || ${item/template/key} === ''}"
|
|
153
|
+
},
|
|
154
|
+
dateRangeOptions: {
|
|
155
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.OPTIONS"),
|
|
156
|
+
path: "options",
|
|
157
|
+
type: "multiSelect",
|
|
158
|
+
items: this.getAllDateRangeOptions(),
|
|
159
|
+
visible: "{= ${type} === 'DateRange'}"
|
|
160
|
+
},
|
|
161
|
+
dateRangeValueOption: {
|
|
162
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.VALUE.OPTION"),
|
|
163
|
+
path: "dValue/option",
|
|
164
|
+
type: "select",
|
|
165
|
+
items: "{selectedOptions}",
|
|
166
|
+
visible: "{= ${type} === 'DateRange'}"
|
|
167
|
+
},
|
|
168
|
+
dateRangeValues: {
|
|
169
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.VALUE.VALUES"),
|
|
170
|
+
path: "dValue/values",
|
|
171
|
+
type: "textArea",
|
|
172
|
+
visible: "{= ${type} === 'DateRange'}"
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
};
|
|
176
|
+
} else {
|
|
177
|
+
// Config scenario
|
|
178
|
+
oCustomConfig = {
|
|
179
|
+
collapsibleItems: false,
|
|
180
|
+
showItemLabel: false,
|
|
181
|
+
template: {
|
|
182
|
+
type: {
|
|
183
|
+
label: this.getI18nProperty("CARD_EDITOR.FILTER.TYPE"),
|
|
184
|
+
type: "select",
|
|
185
|
+
path: "type",
|
|
186
|
+
items: (oConfig["allowedTypes"] || []).map(function(sKey){ return { key: sKey }; }),
|
|
187
|
+
allowCustomValues: false,
|
|
188
|
+
allowBindings: false
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
};
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
var oComplexMapConfig = _merge(
|
|
195
|
+
{},
|
|
196
|
+
oCustomConfig,
|
|
197
|
+
oConfig
|
|
198
|
+
);
|
|
199
|
+
return ComplexMapEditor.prototype.onBeforeConfigChange.call(this, oComplexMapConfig);
|
|
200
|
+
};
|
|
201
|
+
|
|
202
|
+
FiltersEditor.prototype.getAllDateRangeOptions = function() {
|
|
203
|
+
var dateRangeFilter = new DateRangeFilter();
|
|
204
|
+
var oOptions = dateRangeFilter.getOptions();
|
|
205
|
+
var optionsArray = [];
|
|
206
|
+
for (var key in oOptions) {
|
|
207
|
+
if (oOptions.hasOwnProperty(key)) {
|
|
208
|
+
optionsArray.push({
|
|
209
|
+
key: oOptions[key],
|
|
210
|
+
title: oOptions[key]
|
|
211
|
+
});
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
return optionsArray;
|
|
215
|
+
};
|
|
216
|
+
|
|
217
|
+
return FiltersEditor;
|
|
218
|
+
});
|
package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -40,7 +40,7 @@ sap.ui.define([
|
|
|
40
40
|
* @alias sap.ui.integration.designtime.cardEditor.propertyEditor.iconEditor.IconEditor
|
|
41
41
|
* @author SAP SE
|
|
42
42
|
* @since 1.81
|
|
43
|
-
* @version 1.
|
|
43
|
+
* @version 1.98.0
|
|
44
44
|
*
|
|
45
45
|
* @private
|
|
46
46
|
* @experimental 1.81
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright 2009-
|
|
3
|
+
* (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -45,7 +45,7 @@ sap.ui.define([
|
|
|
45
45
|
* @alias sap.ui.integration.designtime.cardEditor.propertyEditor.parametersEditor.ParametersEditor
|
|
46
46
|
* @author SAP SE
|
|
47
47
|
* @since 1.70
|
|
48
|
-
* @version 1.
|
|
48
|
+
* @version 1.98.0
|
|
49
49
|
*
|
|
50
50
|
* @private
|
|
51
51
|
* @experimental 1.70
|