@openui5/sap.ui.integration 1.93.3 → 1.96.2
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 +6 -11
- package/THIRDPARTY.txt +10 -16
- package/package.json +3 -3
- package/src/sap/ui/integration/.library +7 -2
- 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 +71 -8
- package/src/sap/ui/integration/cards/AdaptiveContent.js +18 -25
- package/src/sap/ui/integration/cards/AnalyticalContent.js +178 -147
- package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +3 -2
- package/src/sap/ui/integration/cards/BaseContent.js +11 -2
- package/src/sap/ui/integration/cards/BaseListContent.js +23 -3
- package/src/sap/ui/integration/cards/CalendarContent.js +2 -2
- package/src/sap/ui/integration/cards/CalendarContentRenderer.js +8 -3
- package/src/sap/ui/integration/cards/ComponentContent.js +1 -1
- package/src/sap/ui/integration/cards/Footer.js +1 -1
- package/src/sap/ui/integration/cards/Header.js +7 -1
- package/src/sap/ui/integration/cards/ListContent.js +37 -13
- package/src/sap/ui/integration/cards/ListContentRenderer.js +38 -7
- package/src/sap/ui/integration/cards/NumericHeader.js +9 -2
- package/src/sap/ui/integration/cards/ObjectContent.js +1 -1
- package/src/sap/ui/integration/cards/TableContent.js +9 -2
- package/src/sap/ui/integration/cards/TimelineContent.js +1 -1
- package/src/sap/ui/integration/cards/WebPageContent.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputChoiceSet.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputDate.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputNumber.js +12 -5
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputTime.js +4 -4
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/overwrites/ActionRender.js +2 -2
- package/src/sap/ui/integration/cards/{Filter.js → filters/BaseFilter.js} +56 -128
- package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +232 -0
- package/src/sap/ui/integration/{util → cards/filters}/FilterBarFactory.js +37 -12
- package/src/sap/ui/integration/cards/filters/SelectFilter.js +157 -0
- package/src/sap/ui/integration/controls/ActionsStrip.js +1 -3
- package/src/sap/ui/integration/controls/ActionsToolbar.js +1 -1
- package/src/sap/ui/integration/controls/ListContentItem.js +13 -2
- package/src/sap/ui/integration/controls/ListContentItemRenderer.js +65 -2
- 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/customElements/CustomElementEditor.js +29 -0
- package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +26 -1
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +44 -2
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +27 -1
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n.properties +34 -25
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_ar.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_bg.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_ca.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_cs.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_cy.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_da.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_de.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_el.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_GB.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_sappsd.properties +4 -2
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saprigi.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saptrc.properties +4 -2
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_es.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_es_MX.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_et.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_fi.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_fr.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_fr_CA.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_hi.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_hr.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_hu.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_id.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_it.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_iw.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_ja.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_kk.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_ko.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_lt.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_lv.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_ms.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_nl.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_no.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_pl.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_pt.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_pt_PT.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_ro.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_ru.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_sh.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_sk.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_sl.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_sv.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_th.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_tr.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_uk.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_vi.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_zh_CN.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_zh_TW.properties +19 -13
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +48 -3
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +2 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +4 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +4 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.fragment.xml +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +65 -17
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.fragment.xml +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +17 -4
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +4 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +10 -2
- 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 +10 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +11 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.fragment.xml +8 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +62 -35
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +10 -2
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +4 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +4 -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 +5 -4
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +1 -5
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsStringList.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueKey.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsUniqueList.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsValidBinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/MaxLength.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/NotABinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/ValidatorRegistry.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/BASEditor.js +7 -1
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n.properties +6 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ar.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_bg.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ca.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cs.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_cy.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_da.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_de.properties +6 -2
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_el.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_GB.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_sappsd.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saprigi.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saptrc.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_es_MX.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_et.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fi.properties +7 -3
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_fr_CA.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hi.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hr.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_hu.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_id.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_it.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_iw.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ja.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_kk.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ko.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lt.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_lv.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ms.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_nl.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_no.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pl.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_pt_PT.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ro.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_ru.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sh.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sk.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sl.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_sv.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_th.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_tr.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_uk.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_vi.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_CN.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_zh_TW.properties +4 -0
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/complexMapEditor/ComplexMapEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/destinationsEditor/DestinationsEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +11 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +12 -1
- package/src/sap/ui/integration/designtime/editor/CardEditor.js +39 -1904
- package/src/sap/ui/integration/designtime/editor/CardPreview.js +22 -1
- package/src/sap/ui/integration/designtime/editor/css/CardPreview.css +4 -0
- package/src/sap/ui/integration/editor/Editor.js +2883 -0
- package/src/sap/ui/integration/{designtime/editor/CardResourceBundles.js → editor/EditorResourceBundles.js} +16 -16
- package/src/sap/ui/integration/editor/Extension.js +103 -0
- package/src/sap/ui/integration/editor/Manifest.js +35 -0
- package/src/sap/ui/integration/editor/Merger.js +102 -0
- package/src/sap/ui/integration/editor/Settings.js +894 -0
- package/src/sap/ui/integration/{designtime/editor/css/CardEditor.css → editor/css/Editor.css} +135 -119
- package/src/sap/ui/integration/{designtime/editor → editor}/fields/BaseField.js +91 -149
- package/src/sap/ui/integration/{designtime/editor → editor}/fields/BooleanField.js +5 -5
- package/src/sap/ui/integration/{designtime/editor → editor}/fields/DateField.js +7 -6
- package/src/sap/ui/integration/{designtime/editor → editor}/fields/DateTimeField.js +7 -6
- package/src/sap/ui/integration/{designtime/editor → editor}/fields/DestinationField.js +5 -5
- package/src/sap/ui/integration/{designtime/editor → editor}/fields/IntegerField.js +5 -10
- package/src/sap/ui/integration/{designtime/editor → editor}/fields/ListField.js +43 -45
- package/src/sap/ui/integration/{designtime/editor → editor}/fields/NumberField.js +5 -10
- package/src/sap/ui/integration/{designtime/editor → editor}/fields/StringField.js +183 -124
- package/src/sap/ui/integration/{designtime/editor → editor}/fields/viz/ColorSelect.js +3 -3
- package/src/sap/ui/integration/{designtime/editor → editor}/fields/viz/IconSelect.js +28 -25
- package/src/sap/ui/integration/{designtime/editor → editor}/fields/viz/ShapeSelect.js +3 -3
- package/src/sap/ui/integration/editor/languages.json +51 -0
- package/src/sap/ui/integration/{designtime/editor → editor}/themes/base/CardEditor.less +0 -0
- package/src/sap/ui/integration/library.js +22 -2
- package/src/sap/ui/integration/messagebundle.properties +99 -60
- package/src/sap/ui/integration/messagebundle_ar.properties +67 -55
- package/src/sap/ui/integration/messagebundle_bg.properties +66 -54
- package/src/sap/ui/integration/messagebundle_ca.properties +67 -55
- package/src/sap/ui/integration/messagebundle_cs.properties +65 -53
- package/src/sap/ui/integration/messagebundle_cy.properties +67 -55
- package/src/sap/ui/integration/messagebundle_da.properties +66 -54
- package/src/sap/ui/integration/messagebundle_de.properties +66 -54
- package/src/sap/ui/integration/messagebundle_el.properties +67 -55
- package/src/sap/ui/integration/messagebundle_en.properties +16 -4
- package/src/sap/ui/integration/messagebundle_en_GB.properties +42 -30
- package/src/sap/ui/integration/messagebundle_en_US_sappsd.properties +16 -4
- package/src/sap/ui/integration/messagebundle_en_US_saprigi.properties +81 -55
- package/src/sap/ui/integration/messagebundle_en_US_saptrc.properties +16 -4
- package/src/sap/ui/integration/messagebundle_es.properties +66 -54
- package/src/sap/ui/integration/messagebundle_es_MX.properties +66 -54
- package/src/sap/ui/integration/messagebundle_et.properties +65 -53
- package/src/sap/ui/integration/messagebundle_fi.properties +66 -54
- package/src/sap/ui/integration/messagebundle_fr.properties +65 -53
- package/src/sap/ui/integration/messagebundle_fr_CA.properties +65 -53
- package/src/sap/ui/integration/messagebundle_hi.properties +67 -55
- package/src/sap/ui/integration/messagebundle_hr.properties +66 -54
- package/src/sap/ui/integration/messagebundle_hu.properties +66 -54
- package/src/sap/ui/integration/messagebundle_id.properties +68 -56
- package/src/sap/ui/integration/messagebundle_it.properties +66 -54
- package/src/sap/ui/integration/messagebundle_iw.properties +66 -54
- package/src/sap/ui/integration/messagebundle_ja.properties +65 -53
- package/src/sap/ui/integration/messagebundle_kk.properties +66 -54
- package/src/sap/ui/integration/messagebundle_ko.properties +67 -55
- package/src/sap/ui/integration/messagebundle_lt.properties +67 -55
- package/src/sap/ui/integration/messagebundle_lv.properties +67 -55
- package/src/sap/ui/integration/messagebundle_ms.properties +66 -54
- package/src/sap/ui/integration/messagebundle_nl.properties +65 -53
- package/src/sap/ui/integration/messagebundle_no.properties +66 -54
- package/src/sap/ui/integration/messagebundle_pl.properties +66 -54
- package/src/sap/ui/integration/messagebundle_pt.properties +66 -54
- package/src/sap/ui/integration/messagebundle_pt_PT.properties +66 -54
- package/src/sap/ui/integration/messagebundle_ro.properties +66 -54
- package/src/sap/ui/integration/messagebundle_ru.properties +67 -55
- package/src/sap/ui/integration/messagebundle_sh.properties +66 -54
- package/src/sap/ui/integration/messagebundle_sk.properties +66 -54
- package/src/sap/ui/integration/messagebundle_sl.properties +67 -55
- package/src/sap/ui/integration/messagebundle_sv.properties +66 -54
- package/src/sap/ui/integration/messagebundle_th.properties +67 -55
- package/src/sap/ui/integration/messagebundle_tr.properties +67 -55
- package/src/sap/ui/integration/messagebundle_uk.properties +66 -54
- package/src/sap/ui/integration/messagebundle_vi.properties +66 -54
- package/src/sap/ui/integration/messagebundle_zh_CN.properties +67 -55
- package/src/sap/ui/integration/messagebundle_zh_TW.properties +67 -55
- package/src/sap/ui/integration/model/ContextModel.js +1 -1
- package/src/sap/ui/integration/model/ObservableModel.js +2 -14
- package/src/sap/ui/integration/schemas/adaptive-card.json +2399 -1010
- package/src/sap/ui/integration/schemas/sap-card.json +359 -53
- package/src/sap/ui/integration/themes/base/AnalyticsCloudContent.less +4 -0
- package/src/sap/ui/integration/themes/base/ListContentItem.less +111 -64
- package/src/sap/ui/integration/themes/base/Microchart.less +0 -1
- package/src/sap/ui/integration/thirdparty/adaptivecards.js +9724 -7530
- package/src/sap/ui/integration/util/BaseFactory.js +1 -1
- package/src/sap/ui/integration/util/BindingHelper.js +1 -1
- package/src/sap/ui/integration/util/BindingResolver.js +1 -1
- package/src/sap/ui/integration/util/CacheAndRequestDataProvider.js +75 -24
- package/src/sap/ui/integration/util/CardActions.js +1 -1
- package/src/sap/ui/integration/util/CardMerger.js +5 -3
- package/src/sap/ui/integration/util/CardObserver.js +1 -1
- package/src/sap/ui/integration/util/ContentFactory.js +1 -1
- package/src/sap/ui/integration/util/DataProvider.js +28 -14
- package/src/sap/ui/integration/util/DataProviderFactory.js +39 -8
- 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 +8 -7
- package/src/sap/ui/integration/util/JSONBindingHelper.js +4 -1
- package/src/sap/ui/integration/util/LoadingProvider.js +1 -1
- package/src/sap/ui/integration/util/Manifest.js +14 -3
- package/src/sap/ui/integration/util/RequestDataProvider.js +6 -4
- 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/Utils.js +1 -1
- package/src/sap/ui/integration/widgets/Card.js +164 -71
- package/src/sap-ui-integration-card-editor.js +15 -0
- package/src/sap-ui-integration-editor.js +4 -2
- package/ui5.yaml +4 -1
- package/src/sap/ui/integration/designtime/editor/fields/Settings.js +0 -629
- package/src/sap/ui/integration/designtime/editor/languages.json +0 -51
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=Typ customizingu
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=\u017Diadne z\u00E1znamy
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=K\u013E\u00FA\u010D
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=Hodnota
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=Typ
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=Odstr\u00E1ni\u0165
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=Zadajte jedine\u010Dn\u00FD k\u013E\u00FA\u010D.
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=Prida\u0165\: {0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=Parameter
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=Re\u0165azec
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=Boolovsk\u00E9
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=\u010C\u00EDslo
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=Cel\u00E9 \u010D\u00EDslo
|
|
20
26
|
|
|
21
|
-
BASE_EDITOR.
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=D\u00E1tum
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=D\u00E1tum/\u010Das
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=Skupina
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=Odde\u013Eova\u010D
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=Ikona
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=Jednoduch\u00E1 ikona
|
|
32
38
|
|
|
33
|
-
BASE_EDITOR.
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=Pole
|
|
34
40
|
|
|
35
|
-
BASE_EDITOR.
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
36
42
|
|
|
37
43
|
BASE_EDITOR.STRING.INVALID_BINDING=Zadajte platn\u00FD re\u0165azec v\u00E4zby.
|
|
38
44
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=Uporabni\u0161ko definiran tip
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=Ni vnosov.
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=Klju\u010D
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=Vrednost
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=Vrsta
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=Odstranitev
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=Prosim, vnesite enozna\u010Dni klju\u010D.
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=Dodajanje\: {0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=Parameter
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=Niz
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=Logi\u010Dna vrednost
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=\u0160tevilka
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=Celo \u0161tevilo
|
|
20
26
|
|
|
21
|
-
BASE_EDITOR.
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=Datum
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=Datum/\u010Das
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=Skupina
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=Lo\u010Dilo
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=Ikona
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=Preprosta ikona
|
|
32
38
|
|
|
33
|
-
BASE_EDITOR.
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=Matrika
|
|
34
40
|
|
|
35
|
-
BASE_EDITOR.
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
36
42
|
|
|
37
43
|
BASE_EDITOR.STRING.INVALID_BINDING=Vnesite veljaven niz povezav.
|
|
38
44
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=Anv\u00E4ndardefinierad typ
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=Inga uppgifter
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=Nyckel
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=V\u00E4rde
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=Typ
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=Ta bort
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=Ange en unik nyckel.
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=L\u00E4gg till\: {0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=Parameter
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=Str\u00E4ng
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=Boolesk
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=Tal
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=Heltal
|
|
20
26
|
|
|
21
|
-
BASE_EDITOR.
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=Datum
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=Tidpunkt
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=Grupp
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=Avgr\u00E4nsare
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=Ikon
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=Enkel ikon
|
|
32
38
|
|
|
33
|
-
BASE_EDITOR.
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=Vektor
|
|
34
40
|
|
|
35
|
-
BASE_EDITOR.
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
36
42
|
|
|
37
43
|
BASE_EDITOR.STRING.INVALID_BINDING=Ange en giltig bindningsstr\u00E4ng.
|
|
38
44
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17\u0E17\u0E35\u0E48\u0E1B\u0E23\u0E31\u0E1A\u0E41\u0E15\u0E48\u0E07\u0E44\u0E14\u0E49
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=\u0E44\u0E21\u0E48\u0E21\u0E35\u0E23\u0E32\u0E22\u0E01\u0E32\u0E23
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=\u0E04\u0E35\u0E22\u0E4C
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=\u0E04\u0E48\u0E32
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=\u0E1B\u0E23\u0E30\u0E40\u0E20\u0E17
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=\u0E22\u0E49\u0E32\u0E22\u0E2D\u0E2D\u0E01
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=\u0E01\u0E23\u0E38\u0E13\u0E32\u0E1B\u0E49\u0E2D\u0E19\u0E04\u0E35\u0E22\u0E4C\u0E17\u0E35\u0E48\u0E44\u0E21\u0E48\u0E0B\u0E49\u0E33\u0E01\u0E31\u0E19
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=\u0E40\u0E1E\u0E34\u0E48\u0E21\: {0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=\u0E1E\u0E32\u0E23\u0E32\u0E21\u0E34\u0E40\u0E15\u0E2D\u0E23\u0E4C
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=\u0E2A\u0E15\u0E23\u0E34\u0E07
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=\u0E1A\u0E39\u0E25\u0E35\u0E19
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=\u0E15\u0E31\u0E27\u0E40\u0E25\u0E02
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=\u0E08\u0E33\u0E19\u0E27\u0E19\u0E40\u0E15\u0E47\u0E21
|
|
20
26
|
|
|
21
|
-
BASE_EDITOR.
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=\u0E27\u0E31\u0E19\u0E17\u0E35\u0E48/\u0E40\u0E27\u0E25\u0E32
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=\u0E01\u0E25\u0E38\u0E48\u0E21
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=\u0E15\u0E31\u0E27\u0E04\u0E31\u0E48\u0E19
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=\u0E44\u0E2D\u0E04\u0E2D\u0E19
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=\u0E44\u0E2D\u0E04\u0E2D\u0E19\u0E41\u0E1A\u0E1A\u0E07\u0E48\u0E32\u0E22
|
|
32
38
|
|
|
33
|
-
BASE_EDITOR.
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=\u0E2D\u0E32\u0E23\u0E4C\u0E40\u0E23\u0E22\u0E4C
|
|
34
40
|
|
|
35
|
-
BASE_EDITOR.
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
36
42
|
|
|
37
43
|
BASE_EDITOR.STRING.INVALID_BINDING=\u0E01\u0E23\u0E38\u0E13\u0E32\u0E1B\u0E49\u0E2D\u0E19\u0E2A\u0E15\u0E23\u0E34\u0E07\u0E01\u0E32\u0E23\u0E44\u0E1A\u0E19\u0E4C\u0E14\u0E34\u0E49\u0E07\u0E17\u0E35\u0E48\u0E16\u0E39\u0E01\u0E15\u0E49\u0E2D\u0E07
|
|
38
44
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=\u00D6zel t\u00FCr
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=Giri\u015F yok
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=Anahtar
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=De\u011Fer
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=T\u00FCr
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=Kald\u0131r
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=Benzersiz anahtar girin.
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=Ekle\: {0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=Parametre
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=Dize
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=Boole
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=Say\u0131
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=Tamsay\u0131
|
|
20
26
|
|
|
21
|
-
BASE_EDITOR.
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=Tarih
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=Tarih/saat
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=Grup
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=Ay\u0131r\u0131c\u0131
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=\u0130kon
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=Basit ikon
|
|
32
38
|
|
|
33
|
-
BASE_EDITOR.
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=Dizi
|
|
34
40
|
|
|
35
|
-
BASE_EDITOR.
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
36
42
|
|
|
37
43
|
BASE_EDITOR.STRING.INVALID_BINDING=Ge\u00E7erli bir ba\u011Flama dizilimi girin.
|
|
38
44
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=\u041A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0446\u044C\u043A\u0438\u0439 \u0442\u0438\u043F
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=\u041D\u0435\u043C\u0430\u0454 \u0437\u0430\u043F\u0438\u0441\u0456\u0432
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=\u041A\u043B\u044E\u0447
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=\u0417\u043D\u0430\u0447\u0435\u043D\u043D\u044F
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=\u0422\u0438\u043F
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=\u0412\u0438\u0434\u0430\u043B\u0438\u0442\u0438
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=\u0412\u0432\u0435\u0434\u0456\u0442\u044C \u0443\u043D\u0456\u043A\u0430\u043B\u044C\u043D\u0438\u0439 \u043A\u043B\u044E\u0447.
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=\u0414\u043E\u0434\u0430\u0442\u0438\: {0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u0440
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=\u0420\u044F\u0434\u043E\u043A \u0441\u0438\u043C\u0432\u043E\u043B\u0456\u0432
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=\u0411\u0443\u043B\u0435\u0432\u0438\u0439
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=\u041D\u043E\u043C\u0435\u0440
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=\u0426\u0456\u043B\u0435 \u0447\u0438\u0441\u043B\u043E
|
|
20
26
|
|
|
21
|
-
BASE_EDITOR.
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=\u0414\u0430\u0442\u0430
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=\u0414\u0430\u0442\u0430/\u0447\u0430\u0441
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=\u0413\u0440\u0443\u043F\u0430
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=\u0420\u043E\u0437\u0434\u0456\u043B\u044E\u0432\u0430\u0447
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=\u041F\u0456\u043A\u0442\u043E\u0433\u0440\u0430\u043C\u0430
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=\u041F\u0440\u043E\u0441\u0442\u0430 \u043F\u0456\u043A\u0442\u043E\u0433\u0440\u0430\u043C\u0430
|
|
32
38
|
|
|
33
|
-
BASE_EDITOR.
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=\u041C\u0430\u0441\u0438\u0432
|
|
34
40
|
|
|
35
|
-
BASE_EDITOR.
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
36
42
|
|
|
37
43
|
BASE_EDITOR.STRING.INVALID_BINDING=\u0412\u0432\u0435\u0434\u0456\u0442\u044C \u0434\u0456\u0439\u0441\u043D\u0438\u0439 \u0440\u044F\u0434\u043E\u043A \u0437\u0432'\u044F\u0437\u0443\u0432\u0430\u043D\u043D\u044F.
|
|
38
44
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=Ki\u00EA\u0309u tu\u0300y chi\u0309nh
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=Kh\u00F4ng co\u0301 mu\u0323c nh\u00E2\u0323p
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=Kho\u0301a
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=Gia\u0301 tri\u0323
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=Loa\u0323i
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=Loa\u0323i bo\u0309
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=Vui lo\u0300ng nh\u00E2\u0323p ma\u0303 duy nh\u00E2\u0301t.
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=Th\u00EAm\: {0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=Tham s\u00F4\u0301
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=Chu\u00F4\u0303i
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=Boolean
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=S\u00F4\u0301
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=S\u00F4\u0301 nguy\u00EAn
|
|
20
26
|
|
|
21
|
-
BASE_EDITOR.
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=Nga\u0300y
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=Nga\u0300y/Gi\u01A1\u0300
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=Nho\u0301m
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=D\u00E2\u0301u ta\u0301ch
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=Bi\u00EA\u0309u t\u01B0\u01A1\u0323ng
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=Bi\u1EC3u t\u01B0\u1EE3ng \u0111\u01A1n gi\u1EA3n
|
|
32
38
|
|
|
33
|
-
BASE_EDITOR.
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=Ma\u0309ng
|
|
34
40
|
|
|
35
|
-
BASE_EDITOR.
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
36
42
|
|
|
37
43
|
BASE_EDITOR.STRING.INVALID_BINDING=Vui lo\u0300ng nh\u00E2\u0323p chu\u00F4\u0303i li\u00EAn k\u00EA\u0301t h\u01A1\u0323p l\u00EA\u0323.
|
|
38
44
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=\u81EA\u5B9A\u4E49\u7C7B\u578B
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=\u65E0\u4EFB\u4F55\u6761\u76EE
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=\u952E
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=\u503C
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=\u7C7B\u578B
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=\u79FB\u9664
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=\u8BF7\u8F93\u5165\u552F\u4E00\u952E\u503C\u3002
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=\u6DFB\u52A0\uFF1A{0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=\u53C2\u6570
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=\u5B57\u7B26\u4E32
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=\u5E03\u5C14\u503C
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=\u6570\u5B57
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=\u6574\u6570
|
|
20
26
|
|
|
21
|
-
BASE_EDITOR.
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=\u65E5\u671F
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=\u65E5\u671F/\u65F6\u95F4
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=\u7EC4
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=\u5206\u9694\u7B26
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=\u56FE\u6807
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=\u7B80\u5355\u56FE\u6807
|
|
32
38
|
|
|
33
|
-
BASE_EDITOR.
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=\u6570\u7EC4
|
|
34
40
|
|
|
35
|
-
BASE_EDITOR.
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
36
42
|
|
|
37
43
|
BASE_EDITOR.STRING.INVALID_BINDING=\u8BF7\u8F93\u5165\u6709\u6548\u7684\u7ED1\u5B9A\u5B57\u7B26\u4E32\u3002
|
|
38
44
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=\u81EA\u8A02\u985E\u578B
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=\u7121\u8F38\u5165\u9805
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=\u7D22\u5F15\u9375
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=\u503C
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=\u985E\u578B
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=\u79FB\u9664
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=\u8ACB\u8F38\u5165\u552F\u4E00\u7D22\u5F15\u9375\u3002
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=\u65B0\u589E\uFF1A{0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=\u53C3\u6578
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=\u5B57\u4E32
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=\u5E03\u6797
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=\u6578\u5B57
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=\u6574\u6578
|
|
20
26
|
|
|
21
|
-
BASE_EDITOR.
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=\u65E5\u671F
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=\u65E5\u671F/\u6642\u9593
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=\u7FA4\u7D44
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=\u5206\u9694\u7B26\u865F
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=\u5716\u793A
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=\u7C21\u6613\u5716\u793A
|
|
32
38
|
|
|
33
|
-
BASE_EDITOR.
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=\u9663\u5217
|
|
34
40
|
|
|
35
|
-
BASE_EDITOR.
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
36
42
|
|
|
37
43
|
BASE_EDITOR.STRING.INVALID_BINDING=\u8ACB\u8F38\u5165\u6709\u6548\u7684\u9023\u7D50\u5B57\u4E32\u3002
|
|
38
44
|
|
|
@@ -52,7 +52,7 @@ sap.ui.define([
|
|
|
52
52
|
* @alias sap.ui.integration.designtime.baseEditor.propertyEditor.BasePropertyEditor
|
|
53
53
|
* @author SAP SE
|
|
54
54
|
* @since 1.70
|
|
55
|
-
* @version 1.
|
|
55
|
+
* @version 1.96.2
|
|
56
56
|
*
|
|
57
57
|
* @private
|
|
58
58
|
* @experimental 1.70
|
|
@@ -173,7 +173,20 @@ sap.ui.define([
|
|
|
173
173
|
/**
|
|
174
174
|
* Fires when init is finished
|
|
175
175
|
*/
|
|
176
|
-
init: {}
|
|
176
|
+
init: {},
|
|
177
|
+
|
|
178
|
+
/**
|
|
179
|
+
* Fires when the error state of the editor changes
|
|
180
|
+
*/
|
|
181
|
+
validationErrorChange: {
|
|
182
|
+
parameters: {
|
|
183
|
+
/**
|
|
184
|
+
* Whether there is an error in the editor
|
|
185
|
+
* @since 1.96.0
|
|
186
|
+
*/
|
|
187
|
+
hasError: { type: "boolean" }
|
|
188
|
+
}
|
|
189
|
+
}
|
|
177
190
|
}
|
|
178
191
|
},
|
|
179
192
|
/**
|
|
@@ -316,6 +329,9 @@ sap.ui.define([
|
|
|
316
329
|
var vCurrentValue = this.getValue();
|
|
317
330
|
var oConfig = this.getConfig() || {};
|
|
318
331
|
var vNextValue = vValue;
|
|
332
|
+
if (oConfig.type === "integer" && Number.isInteger(Number(vValue))) {
|
|
333
|
+
vNextValue = parseInt(vValue);
|
|
334
|
+
}
|
|
319
335
|
|
|
320
336
|
// If the editor is not visible, don't allow setting new values
|
|
321
337
|
// to avoid unwanted updates and side effects like validation failures
|
|
@@ -341,6 +357,7 @@ sap.ui.define([
|
|
|
341
357
|
value: vNextValue
|
|
342
358
|
});
|
|
343
359
|
}
|
|
360
|
+
this.setHasOwnError(!bResult);
|
|
344
361
|
}.bind(this));
|
|
345
362
|
};
|
|
346
363
|
|
|
@@ -618,6 +635,7 @@ sap.ui.define([
|
|
|
618
635
|
return oEditorWrapper !== oObservedWrapper;
|
|
619
636
|
});
|
|
620
637
|
this._checkReadyState();
|
|
638
|
+
this._checkForError();
|
|
621
639
|
break;
|
|
622
640
|
case 'parent':
|
|
623
641
|
// Observed elements might contain nested wrappers
|
|
@@ -694,6 +712,8 @@ sap.ui.define([
|
|
|
694
712
|
this._checkReadyState();
|
|
695
713
|
}.bind(this));
|
|
696
714
|
|
|
715
|
+
oWrapper.attachValidationErrorChange(this._checkForError.bind(this));
|
|
716
|
+
|
|
697
717
|
if (oWrapper.isA("sap.ui.integration.designtime.baseEditor.PropertyEditor")) {
|
|
698
718
|
oWrapper.attachPropertyEditorChange(function (oEvent) {
|
|
699
719
|
var oPropertyEditor = oEvent.getParameter("propertyEditor");
|
|
@@ -723,6 +743,28 @@ sap.ui.define([
|
|
|
723
743
|
return !!this._bIsReady;
|
|
724
744
|
};
|
|
725
745
|
|
|
746
|
+
BasePropertyEditor.prototype.setHasOwnError = function (bHasError) {
|
|
747
|
+
this._bHasOwnError = bHasError;
|
|
748
|
+
this._checkForError();
|
|
749
|
+
};
|
|
750
|
+
|
|
751
|
+
BasePropertyEditor.prototype._checkForError = function () {
|
|
752
|
+
var bHasError = this.hasError();
|
|
753
|
+
// If the error state switches, fire the event
|
|
754
|
+
if (bHasError !== this._bHasError) {
|
|
755
|
+
this._bHasError = bHasError;
|
|
756
|
+
this.fireValidationErrorChange({
|
|
757
|
+
hasError: bHasError
|
|
758
|
+
});
|
|
759
|
+
}
|
|
760
|
+
};
|
|
761
|
+
|
|
762
|
+
BasePropertyEditor.prototype.hasError = function () {
|
|
763
|
+
return !!this._bHasOwnError || this._aEditorWrappers.some(function(oWrapper) {
|
|
764
|
+
return oWrapper.hasError();
|
|
765
|
+
});
|
|
766
|
+
};
|
|
767
|
+
|
|
726
768
|
/**
|
|
727
769
|
* Wait for the editor to be ready.
|
|
728
770
|
* @returns {Promise} Promise which will resolve once the editor is ready. Resolves immediately if the editor is currently ready.
|
|
@@ -829,6 +871,9 @@ sap.ui.define([
|
|
|
829
871
|
visible: {
|
|
830
872
|
defaultValue: true,
|
|
831
873
|
mergeStrategy: "mostRestrictiveWins"
|
|
874
|
+
},
|
|
875
|
+
typeLabel: {
|
|
876
|
+
defaultValue: "BASE_EDITOR.FALLBACK_TYPE"
|
|
832
877
|
}
|
|
833
878
|
};
|
|
834
879
|
|
|
@@ -836,7 +881,7 @@ sap.ui.define([
|
|
|
836
881
|
var oPreviousConfig = this.getConfig();
|
|
837
882
|
|
|
838
883
|
var oDefaultConfig = {};
|
|
839
|
-
var oConfigMetadata = PropertyEditorFactory.
|
|
884
|
+
var oConfigMetadata = PropertyEditorFactory.getByClassName(this.getMetadata().getName()).configMetadata;
|
|
840
885
|
each(oConfigMetadata, function (sConfigKey, mConfigValue) {
|
|
841
886
|
oDefaultConfig[sConfigKey] = mConfigValue.defaultValue;
|
|
842
887
|
});
|
package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js
CHANGED
|
@@ -19,7 +19,7 @@ sap.ui.define([
|
|
|
19
19
|
* @namespace sap.ui.integration.designtime.baseEditor.propertyEditor.PropertyEditorFactory
|
|
20
20
|
*
|
|
21
21
|
* @author SAP SE
|
|
22
|
-
* @version 1.
|
|
22
|
+
* @version 1.96.2
|
|
23
23
|
*
|
|
24
24
|
* @static
|
|
25
25
|
* @since 1.75
|
|
@@ -115,7 +115,7 @@ sap.ui.define([
|
|
|
115
115
|
});
|
|
116
116
|
};
|
|
117
117
|
|
|
118
|
-
PropertyEditorFactory.
|
|
118
|
+
PropertyEditorFactory.getByClassName = function(sType) {
|
|
119
119
|
return oPropertyEditorClasses[sType];
|
|
120
120
|
};
|
|
121
121
|
|
package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js
CHANGED
|
@@ -82,7 +82,7 @@ sap.ui.define([
|
|
|
82
82
|
* @alias sap.ui.integration.designtime.baseEditor.propertyEditor.arrayEditor.ArrayEditor
|
|
83
83
|
* @author SAP SE
|
|
84
84
|
* @since 1.72
|
|
85
|
-
* @version 1.
|
|
85
|
+
* @version 1.96.2
|
|
86
86
|
*
|
|
87
87
|
* @private
|
|
88
88
|
* @experimental 1.72
|
|
@@ -120,6 +120,9 @@ sap.ui.define([
|
|
|
120
120
|
},
|
|
121
121
|
template: {
|
|
122
122
|
defaultValue: {}
|
|
123
|
+
},
|
|
124
|
+
typeLabel: {
|
|
125
|
+
defaultValue: "BASE_EDITOR.TYPES.ARRAY"
|
|
123
126
|
}
|
|
124
127
|
});
|
|
125
128
|
|