@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
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
sap.ui.require([
|
|
8
|
+
"sap/ui/integration/editor/Editor",
|
|
9
|
+
"sap/ui/integration/customElements/CustomElementBase"
|
|
10
|
+
], function (
|
|
11
|
+
Editor,
|
|
12
|
+
CustomElementBase
|
|
13
|
+
) {
|
|
14
|
+
"use strict";
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* Constructor for a new <code>CustomElementEditor</code>.
|
|
18
|
+
*
|
|
19
|
+
* @class
|
|
20
|
+
* @extends sap.ui.integration.customElements.CustomElementBase
|
|
21
|
+
* @alias sap.ui.integration.customElements.CustomElementEditor
|
|
22
|
+
* @private
|
|
23
|
+
*/
|
|
24
|
+
var CustomElementEditor = CustomElementBase.extend(Editor, {});
|
|
25
|
+
CustomElementEditor.prototype.getCurrentSettings = function () {
|
|
26
|
+
return this._getControl().getCurrentSettings();
|
|
27
|
+
};
|
|
28
|
+
CustomElementBase.define("ui-integration-editor", CustomElementEditor);
|
|
29
|
+
});
|
|
@@ -23,6 +23,7 @@ sap.ui.define([
|
|
|
23
23
|
"sap/base/util/isPlainObject",
|
|
24
24
|
"sap/base/util/isEmptyObject",
|
|
25
25
|
"sap/base/util/restricted/_intersection",
|
|
26
|
+
"sap/base/util/restricted/_flatten",
|
|
26
27
|
"sap/base/util/restricted/_mergeWith",
|
|
27
28
|
"sap/base/util/restricted/_merge",
|
|
28
29
|
"sap/base/util/restricted/_omit",
|
|
@@ -53,6 +54,7 @@ sap.ui.define([
|
|
|
53
54
|
isPlainObject,
|
|
54
55
|
isEmptyObject,
|
|
55
56
|
_intersection,
|
|
57
|
+
_flatten,
|
|
56
58
|
_mergeWith,
|
|
57
59
|
_merge,
|
|
58
60
|
_omit,
|
|
@@ -128,7 +130,7 @@ sap.ui.define([
|
|
|
128
130
|
* @alias sap.ui.integration.designtime.baseEditor.BaseEditor
|
|
129
131
|
* @author SAP SE
|
|
130
132
|
* @since 1.70.0
|
|
131
|
-
* @version 1.
|
|
133
|
+
* @version 1.96.2
|
|
132
134
|
* @private
|
|
133
135
|
* @experimental since 1.70.0
|
|
134
136
|
* @ui5-restricted
|
|
@@ -230,6 +232,18 @@ sap.ui.define([
|
|
|
230
232
|
parameters: {
|
|
231
233
|
propertyEditors: { type: "array" }
|
|
232
234
|
}
|
|
235
|
+
},
|
|
236
|
+
/**
|
|
237
|
+
* Fires when the error state of one of the nested property editors changes
|
|
238
|
+
*/
|
|
239
|
+
validationErrorChange: {
|
|
240
|
+
parameters: {
|
|
241
|
+
/**
|
|
242
|
+
* Whether there is an error in one of the nested editors
|
|
243
|
+
* @since 1.96.0
|
|
244
|
+
*/
|
|
245
|
+
hasError: { type: "boolean" }
|
|
246
|
+
}
|
|
233
247
|
}
|
|
234
248
|
}
|
|
235
249
|
},
|
|
@@ -885,6 +899,11 @@ sap.ui.define([
|
|
|
885
899
|
oPropertyEditor.attachValueChange(this._onValueChange, this);
|
|
886
900
|
oPropertyEditor.attachDesigntimeMetadataChange(this._onDesigntimeMetadataChange, this);
|
|
887
901
|
oPropertyEditor.attachReady(this._checkReady, this);
|
|
902
|
+
oPropertyEditor.attachValidationErrorChange(function() {
|
|
903
|
+
this.fireValidationErrorChange({
|
|
904
|
+
hasError: this.hasError()
|
|
905
|
+
});
|
|
906
|
+
}.bind(this));
|
|
888
907
|
};
|
|
889
908
|
|
|
890
909
|
/**
|
|
@@ -973,6 +992,12 @@ sap.ui.define([
|
|
|
973
992
|
}.bind(this));
|
|
974
993
|
};
|
|
975
994
|
|
|
995
|
+
BaseEditor.prototype.hasError = function () {
|
|
996
|
+
return _flatten(Object.values(this._mPropertyEditors || {})).some(function(oPropertyEditor) {
|
|
997
|
+
return oPropertyEditor.hasError();
|
|
998
|
+
});
|
|
999
|
+
};
|
|
1000
|
+
|
|
976
1001
|
BaseEditor.prototype._createPromise = function (fn) {
|
|
977
1002
|
var mPromise = createPromise(fn);
|
|
978
1003
|
this._aCancelHandlers.push(mPromise.cancel);
|
|
@@ -37,7 +37,7 @@ sap.ui.define([
|
|
|
37
37
|
* @alias sap.ui.integration.designtime.baseEditor.PropertyEditor
|
|
38
38
|
* @author SAP SE
|
|
39
39
|
* @since 1.73.0
|
|
40
|
-
* @version 1.
|
|
40
|
+
* @version 1.96.2
|
|
41
41
|
* @private
|
|
42
42
|
* @experimental since 1.73.0
|
|
43
43
|
* @ui5-restricted
|
|
@@ -165,6 +165,19 @@ sap.ui.define([
|
|
|
165
165
|
*/
|
|
166
166
|
ready: {},
|
|
167
167
|
|
|
168
|
+
/**
|
|
169
|
+
* Fires when the error state of the nested property editor changes
|
|
170
|
+
*/
|
|
171
|
+
validationErrorChange: {
|
|
172
|
+
parameters: {
|
|
173
|
+
/**
|
|
174
|
+
* Whether there is an error in the nested editor
|
|
175
|
+
* @since 1.96.0
|
|
176
|
+
*/
|
|
177
|
+
hasError: { type: "boolean" }
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
|
|
168
181
|
/**
|
|
169
182
|
* Fires before the value of the nested property editor changes
|
|
170
183
|
*/
|
|
@@ -316,6 +329,14 @@ sap.ui.define([
|
|
|
316
329
|
return sap.ui.getCore().byId(this.getAssociation("editor"));
|
|
317
330
|
};
|
|
318
331
|
|
|
332
|
+
PropertyEditor.prototype._prepareConfig = function(oConfig) {
|
|
333
|
+
var oBaseEditor = this.getEditor();
|
|
334
|
+
var oEditorConfig = (oConfig.type && oBaseEditor)
|
|
335
|
+
? (oBaseEditor.getConfig().propertyEditorConfigs || {})[oConfig.type]
|
|
336
|
+
: {};
|
|
337
|
+
return _merge({}, oEditorConfig, oConfig);
|
|
338
|
+
};
|
|
339
|
+
|
|
319
340
|
PropertyEditor.prototype.setConfig = function (mConfig) {
|
|
320
341
|
var mPreviousConfig = this.getConfig();
|
|
321
342
|
var mNextConfig = mConfig && _merge(
|
|
@@ -325,7 +346,7 @@ sap.ui.define([
|
|
|
325
346
|
{
|
|
326
347
|
designtime: undefined
|
|
327
348
|
},
|
|
328
|
-
mConfig
|
|
349
|
+
this._prepareConfig(mConfig)
|
|
329
350
|
);
|
|
330
351
|
|
|
331
352
|
if (!deepEqual(mPreviousConfig, mNextConfig)) {
|
|
@@ -358,6 +379,8 @@ sap.ui.define([
|
|
|
358
379
|
previousEditor: oPreviousEditor,
|
|
359
380
|
editor: oEditor
|
|
360
381
|
});
|
|
382
|
+
// Make sure to refresh config as the editor defaults might have changed
|
|
383
|
+
this.setConfig(this.getConfig());
|
|
361
384
|
}
|
|
362
385
|
};
|
|
363
386
|
|
|
@@ -381,6 +404,7 @@ sap.ui.define([
|
|
|
381
404
|
if (oPropertyEditor) {
|
|
382
405
|
this.setAggregation("propertyEditor", null);
|
|
383
406
|
oPropertyEditor.detachReady(this._onPropertyEditorReady, this);
|
|
407
|
+
oPropertyEditor.detachValidationErrorChange(this._onPropertyEditorError, this);
|
|
384
408
|
oPropertyEditor.destroy();
|
|
385
409
|
this._sCreatedBy = null;
|
|
386
410
|
this.firePropertyEditorChange({
|
|
@@ -399,6 +423,11 @@ sap.ui.define([
|
|
|
399
423
|
return oNestedEditor && oNestedEditor.isReady() || false;
|
|
400
424
|
};
|
|
401
425
|
|
|
426
|
+
PropertyEditor.prototype.hasError = function () {
|
|
427
|
+
var oNestedEditor = this.getAggregation("propertyEditor");
|
|
428
|
+
return oNestedEditor && oNestedEditor.hasError();
|
|
429
|
+
};
|
|
430
|
+
|
|
402
431
|
PropertyEditor.prototype.ready = function () {
|
|
403
432
|
return new Promise(function (resolve) {
|
|
404
433
|
var fnCheckPropertyEditorReady = function (oNestedEditor) {
|
|
@@ -424,6 +453,12 @@ sap.ui.define([
|
|
|
424
453
|
this.fireReady();
|
|
425
454
|
};
|
|
426
455
|
|
|
456
|
+
PropertyEditor.prototype._onPropertyEditorError = function (oEvent) {
|
|
457
|
+
this.fireValidationErrorChange({
|
|
458
|
+
hasError: oEvent.getParameter("hasError")
|
|
459
|
+
});
|
|
460
|
+
};
|
|
461
|
+
|
|
427
462
|
PropertyEditor.prototype._initPropertyEditor = function () {
|
|
428
463
|
// FIXME: A reference to the BaseEditor is still required in the current solution
|
|
429
464
|
// in order to set the models on the BasePropertyEditor
|
|
@@ -490,6 +525,13 @@ sap.ui.define([
|
|
|
490
525
|
this.fireReady();
|
|
491
526
|
}
|
|
492
527
|
|
|
528
|
+
oPropertyEditor.attachValidationErrorChange(this._onPropertyEditorError, this);
|
|
529
|
+
if (oPropertyEditor.hasError()) {
|
|
530
|
+
this.fireValidationErrorChange({
|
|
531
|
+
hasError: true
|
|
532
|
+
});
|
|
533
|
+
}
|
|
534
|
+
|
|
493
535
|
this.firePropertyEditorChange({
|
|
494
536
|
propertyEditor: oPropertyEditor
|
|
495
537
|
});
|
|
@@ -67,7 +67,7 @@ sap.ui.define([
|
|
|
67
67
|
* @alias sap.ui.integration.designtime.baseEditor.PropertyEditors
|
|
68
68
|
* @author SAP SE
|
|
69
69
|
* @since 1.73.0
|
|
70
|
-
* @version 1.
|
|
70
|
+
* @version 1.96.2
|
|
71
71
|
* @private
|
|
72
72
|
* @experimental since 1.73.0
|
|
73
73
|
* @ui5-restricted
|
|
@@ -214,6 +214,19 @@ sap.ui.define([
|
|
|
214
214
|
*/
|
|
215
215
|
ready: {},
|
|
216
216
|
|
|
217
|
+
/**
|
|
218
|
+
* Fires when the error state of one of the nested property editors changes
|
|
219
|
+
*/
|
|
220
|
+
validationErrorChange: {
|
|
221
|
+
parameters: {
|
|
222
|
+
/**
|
|
223
|
+
* Whether there is an error in one of the nested editors
|
|
224
|
+
* @since 1.96.0
|
|
225
|
+
*/
|
|
226
|
+
hasError: { type: "boolean" }
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
|
|
217
230
|
/**
|
|
218
231
|
* Fires when <code>layout</code> changes.
|
|
219
232
|
*/
|
|
@@ -648,6 +661,12 @@ sap.ui.define([
|
|
|
648
661
|
return !!this._bIsReady;
|
|
649
662
|
};
|
|
650
663
|
|
|
664
|
+
PropertyEditors.prototype.hasError = function () {
|
|
665
|
+
return this._aEditorWrappers.some(function (oWrapper) {
|
|
666
|
+
return oWrapper.hasError();
|
|
667
|
+
});
|
|
668
|
+
};
|
|
669
|
+
|
|
651
670
|
PropertyEditors.prototype._setReady = function (readyState) {
|
|
652
671
|
var bPreviousReadyState = this._bIsReady;
|
|
653
672
|
this._bIsReady = readyState;
|
|
@@ -731,6 +750,13 @@ sap.ui.define([
|
|
|
731
750
|
this._setReady(false);
|
|
732
751
|
this._checkReadyState();
|
|
733
752
|
}.bind(this));
|
|
753
|
+
|
|
754
|
+
oWrapper.attachValidationErrorChange(function() {
|
|
755
|
+
this.fireValidationErrorChange({
|
|
756
|
+
hasError: this.hasError()
|
|
757
|
+
});
|
|
758
|
+
}.bind(this));
|
|
759
|
+
|
|
734
760
|
// If the editor contains nested editors and setValue is called for the first time
|
|
735
761
|
// an observer is created to handle the destruction of nested wrappers
|
|
736
762
|
if (!this._oWrapperObserver) {
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
#This is the resource bundle for the OpenUI5 sap.ui.integration.designtime.editor module
|
|
2
2
|
#__ldi.translation.uuid=c7c0f054-04c5-4d2d-9e11-51a3ba9e60ee
|
|
3
|
+
#XLBL: Fallback label for property editor type
|
|
4
|
+
BASE_EDITOR.FALLBACK_TYPE=Custom type
|
|
5
|
+
|
|
3
6
|
#XFLD: Empty table text
|
|
4
7
|
BASE_EDITOR.MAP.EMPTY=No entries
|
|
5
8
|
|
|
@@ -13,46 +16,52 @@ BASE_EDITOR.MAP.VALUE=Value
|
|
|
13
16
|
BASE_EDITOR.MAP.TYPE=Type
|
|
14
17
|
|
|
15
18
|
#XFLD: Property editor tooltip
|
|
16
|
-
BASE_EDITOR.MAP.
|
|
19
|
+
BASE_EDITOR.MAP.REMOVE=Remove
|
|
17
20
|
|
|
18
21
|
#XTOL: Validation error text
|
|
19
22
|
BASE_EDITOR.MAP.DUPLICATE_KEY=Please enter a unique key.
|
|
20
23
|
|
|
21
|
-
#XFLD:
|
|
22
|
-
BASE_EDITOR.MAP.
|
|
24
|
+
#XFLD: Label for adding new map item, placeholder is the item type (singular), i.e. "Add: Item"
|
|
25
|
+
BASE_EDITOR.MAP.ADD=Add\: {0}
|
|
26
|
+
|
|
27
|
+
#XFLD: Map editor default type
|
|
28
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=Parameter
|
|
29
|
+
|
|
30
|
+
#XLBL: Property editor type - String
|
|
31
|
+
BASE_EDITOR.TYPES.STRING=String
|
|
23
32
|
|
|
24
|
-
#
|
|
25
|
-
BASE_EDITOR.
|
|
33
|
+
#XLBL: Property editor type - Boolean
|
|
34
|
+
BASE_EDITOR.TYPES.BOOLEAN=Boolean
|
|
26
35
|
|
|
27
|
-
#
|
|
28
|
-
BASE_EDITOR.
|
|
36
|
+
#XLBL: Property editor type - Number
|
|
37
|
+
BASE_EDITOR.TYPES.NUMBER=Number
|
|
29
38
|
|
|
30
|
-
#
|
|
31
|
-
BASE_EDITOR.
|
|
39
|
+
#XLBL: Property editor type - Integer
|
|
40
|
+
BASE_EDITOR.TYPES.INTEGER=Integer
|
|
32
41
|
|
|
33
|
-
#
|
|
34
|
-
BASE_EDITOR.
|
|
42
|
+
#XLBL: Property editor type - Date
|
|
43
|
+
BASE_EDITOR.TYPES.DATE=Date
|
|
35
44
|
|
|
36
|
-
#
|
|
37
|
-
BASE_EDITOR.
|
|
45
|
+
#XLBL: Property editor type - Datetime
|
|
46
|
+
BASE_EDITOR.TYPES.DATETIME=Date Time
|
|
38
47
|
|
|
39
|
-
#
|
|
40
|
-
BASE_EDITOR.
|
|
48
|
+
#XLBL: Property editor type - Group
|
|
49
|
+
BASE_EDITOR.TYPES.GROUP=Group
|
|
41
50
|
|
|
42
|
-
#
|
|
43
|
-
BASE_EDITOR.
|
|
51
|
+
#XLBL: Property editor type - Separator
|
|
52
|
+
BASE_EDITOR.TYPES.SEPARATOR=Separator
|
|
44
53
|
|
|
45
|
-
#
|
|
46
|
-
BASE_EDITOR.
|
|
54
|
+
#XLBL: Property editor type - Icon
|
|
55
|
+
BASE_EDITOR.TYPES.ICON=Icon
|
|
47
56
|
|
|
48
|
-
#
|
|
49
|
-
BASE_EDITOR.
|
|
57
|
+
#XLBL: Property editor type - SimpleIcon
|
|
58
|
+
BASE_EDITOR.TYPES.SIMPLEICON=Simple Icon
|
|
50
59
|
|
|
51
|
-
#
|
|
52
|
-
BASE_EDITOR.
|
|
60
|
+
#XLBL: Property editor type - Array
|
|
61
|
+
BASE_EDITOR.TYPES.ARRAY=Array
|
|
53
62
|
|
|
54
|
-
#
|
|
55
|
-
BASE_EDITOR.
|
|
63
|
+
#XLBL: Property editor type - JSON
|
|
64
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
56
65
|
|
|
57
66
|
#XTOL: Validation error text
|
|
58
67
|
BASE_EDITOR.STRING.INVALID_BINDING=Please enter a valid binding string.
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=\u0627\u0644\u0646\u0648\u0639 \u0627\u0644\u0645\u062E\u0635\u0635
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=\u0628\u062F\u0648\u0646 \u0625\u062F\u062E\u0627\u0644\u0627\u062A
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=\u0627\u0644\u0645\u0641\u062A\u0627\u062D
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=\u0627\u0644\u0642\u064A\u0645\u0629
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=\u0627\u0644\u0646\u0648\u0639
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=\u0625\u0632\u0627\u0644\u0629
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=\u0627\u0644\u0631\u062C\u0627\u0621 \u0625\u062F\u062E\u0627\u0644 \u0645\u0641\u062A\u0627\u062D \u0641\u0631\u064A\u062F.
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=\u0625\u0636\u0627\u0641\u0629\: {0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=\u0627\u0644\u0645\u0639\u0627\u0645\u0644
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=\u0627\u0644\u0633\u0644\u0633\u0644\u0629
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=\u0645\u0646\u0637\u0642\u064A
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=\u0627\u0644\u0631\u0642\u0645
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=\u0639\u062F\u062F \u0635\u062D\u064A\u062D
|
|
20
26
|
|
|
21
|
-
BASE_EDITOR.
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=\u0627\u0644\u062A\u0627\u0631\u064A\u062E
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=\u0627\u0644\u062A\u0627\u0631\u064A\u062E/\u0627\u0644\u0648\u0642\u062A
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=\u0627\u0644\u0645\u062C\u0645\u0648\u0639\u0629
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=\u0627\u0644\u0641\u0627\u0635\u0644
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=\u0627\u0644\u0623\u064A\u0642\u0648\u0646\u0629
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=\u0627\u0644\u0623\u064A\u0642\u0648\u0646\u0629 \u0627\u0644\u0628\u0633\u064A\u0637\u0629
|
|
32
38
|
|
|
33
|
-
BASE_EDITOR.
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=\u0635\u0641\u064A\u0641
|
|
34
40
|
|
|
35
|
-
BASE_EDITOR.
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
36
42
|
|
|
37
43
|
BASE_EDITOR.STRING.INVALID_BINDING=\u0627\u0644\u0631\u062C\u0627\u0621 \u0625\u062F\u062E\u0627\u0644 \u0633\u0644\u0633\u0644\u0629 \u0631\u0628\u0637 \u0635\u0627\u0644\u062D\u0629.
|
|
38
44
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=\u0412\u0438\u0434, \u043E\u043F\u0440\u0435\u0434\u0435\u043B\u0435\u043D \u043E\u0442 \u043F\u043E\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043B
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=\u041D\u044F\u043C\u0430 \u0437\u0430\u043F\u0438\u0441\u0438
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=\u041A\u043B\u044E\u0447
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=\u0421\u0442\u043E\u0439\u043D\u043E\u0441\u0442
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=\u0412\u0438\u0434
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=\u041F\u0440\u0435\u043C\u0430\u0445\u0432\u0430\u043D\u0435
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=\u041C\u043E\u043B\u044F, \u0432\u044A\u0432\u0435\u0434\u0435\u0442\u0435 \u0443\u043D\u0438\u043A\u0430\u043B\u0435\u043D \u043A\u043B\u044E\u0447.
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=\u0414\u043E\u0431\u0430\u0432\u044F\u043D\u0435\: {0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=\u041F\u0430\u0440\u0430\u043C\u0435\u0442\u044A\u0440
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=\u041D\u0438\u0437
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=\u0411\u0443\u043B\u0435\u0432\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=\u0427\u0438\u0441\u043B\u043E\u0432\u0430 \u0441\u0442\u043E\u0439\u043D\u043E\u0441\u0442
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=\u0426\u044F\u043B\u043E \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/\u0427\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\u0430\u0437\u0434\u0435\u043B\u0438\u0442\u0435\u043B
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=\u0418\u043A\u043E\u043D\u0430
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=\u041E\u043F\u0440\u043E\u0441\u0442\u0435\u043D\u0430 \u0438\u043A\u043E\u043D\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=\u041C\u043E\u043B\u044F, \u0432\u044A\u0432\u0435\u0434\u0435\u0442\u0435 \u0432\u0430\u043B\u0438\u0434\u0435\u043D \u043D\u0438\u0437 \u043D\u0430 \u043E\u0431\u0432\u044A\u0440\u0437\u0432\u0430\u043D\u0435.
|
|
38
44
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=Tipus personalitzat
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=Sense entrades
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=Clau
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=Valor
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=Tipus
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=Eliminar
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=Indiqueu una clau un\u00EDvoca.
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=Afegir\: {0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=Par\u00E0metre
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=Cadena
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=Boole\u00E0
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=N\u00FAmero
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=Enter
|
|
20
26
|
|
|
21
|
-
BASE_EDITOR.
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=Data
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=Data/hora
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=Grup
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=Separador
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=Icona
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=S\u00EDmbol simple
|
|
32
38
|
|
|
33
|
-
BASE_EDITOR.
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=Matriu
|
|
34
40
|
|
|
35
|
-
BASE_EDITOR.
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
36
42
|
|
|
37
43
|
BASE_EDITOR.STRING.INVALID_BINDING=Introdu\u00EFu una cadena de vinculaci\u00F3 v\u00E0lida.
|
|
38
44
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=Vlastn\u00ED typ
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=\u017D\u00E1dn\u00E9 z\u00E1znamy
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=Kl\u00ED\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=Odebrat
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=Zadejte jedine\u010Dn\u00FD kl\u00ED\u010D.
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=P\u0159idat\: {0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=Parametr
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=\u0158et\u011Bzec
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=Logick\u00FD v\u00FDraz
|
|
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=Datum
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=Datum/\u010Das
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=Seskupen\u00ED
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=Odd\u011Blova\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=Zadejte platn\u00FD vazebn\u00ED \u0159et\u011Bzec.
|
|
38
44
|
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=Math personol
|
|
2
|
+
|
|
1
3
|
BASE_EDITOR.MAP.EMPTY=Dim cofnod
|
|
2
4
|
|
|
3
5
|
BASE_EDITOR.MAP.KEY=Allwedd
|
|
@@ -6,33 +8,37 @@ BASE_EDITOR.MAP.VALUE=Gwerth
|
|
|
6
8
|
|
|
7
9
|
BASE_EDITOR.MAP.TYPE=Math
|
|
8
10
|
|
|
9
|
-
BASE_EDITOR.MAP.
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=Tynnu
|
|
10
12
|
|
|
11
13
|
BASE_EDITOR.MAP.DUPLICATE_KEY=Rhowch allwedd unigryw.
|
|
12
14
|
|
|
13
|
-
BASE_EDITOR.MAP.
|
|
15
|
+
BASE_EDITOR.MAP.ADD=Ychwanegu\: {0}
|
|
16
|
+
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=Paramedr
|
|
18
|
+
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=Testun
|
|
14
20
|
|
|
15
|
-
BASE_EDITOR.
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=Booleaidd
|
|
16
22
|
|
|
17
|
-
BASE_EDITOR.
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=Rhif
|
|
18
24
|
|
|
19
|
-
BASE_EDITOR.
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=Cyfanrif
|
|
20
26
|
|
|
21
|
-
BASE_EDITOR.
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=Dyddiad
|
|
22
28
|
|
|
23
|
-
BASE_EDITOR.
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=Dyddiad/Amser
|
|
24
30
|
|
|
25
|
-
BASE_EDITOR.
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=Gr\u0175p
|
|
26
32
|
|
|
27
|
-
BASE_EDITOR.
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=Gwahanydd
|
|
28
34
|
|
|
29
|
-
BASE_EDITOR.
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=Eicon
|
|
30
36
|
|
|
31
|
-
BASE_EDITOR.
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=Eicon Syml
|
|
32
38
|
|
|
33
|
-
BASE_EDITOR.
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=Arae
|
|
34
40
|
|
|
35
|
-
BASE_EDITOR.
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=JSON
|
|
36
42
|
|
|
37
43
|
BASE_EDITOR.STRING.INVALID_BINDING=Rhowch destun rhwymo dilys.
|
|
38
44
|
|