@openui5/sap.ui.integration 1.126.1 → 1.128.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/THIRDPARTY.txt +1 -1
- package/package.json +7 -7
- package/src/sap/ui/integration/.library +1 -1
- package/src/sap/ui/integration/ActionDefinition.js +1 -1
- package/src/sap/ui/integration/Designtime.js +1 -1
- package/src/sap/ui/integration/Extension.js +1 -1
- package/src/sap/ui/integration/Host.js +1 -1
- package/src/sap/ui/integration/cards/AdaptiveContent.js +5 -4
- package/src/sap/ui/integration/cards/AnalyticalContent.js +1 -1
- package/src/sap/ui/integration/cards/AnalyticsCloudContent.js +1 -1
- package/src/sap/ui/integration/cards/BaseContent.js +93 -29
- package/src/sap/ui/integration/cards/BaseListContent.js +3 -3
- package/src/sap/ui/integration/cards/CalendarContent.js +1 -1
- 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 +1 -1
- package/src/sap/ui/integration/cards/ListContent.js +1 -1
- package/src/sap/ui/integration/cards/NumericHeader.js +1 -1
- package/src/sap/ui/integration/cards/ObjectContent.js +13 -1
- package/src/sap/ui/integration/cards/TableContent.js +1 -1
- package/src/sap/ui/integration/cards/TimelineContent.js +1 -1
- package/src/sap/ui/integration/cards/WebPageContent.js +5 -1
- package/src/sap/ui/integration/cards/actions/CardActions.js +1 -1
- package/src/sap/ui/integration/cards/actions/ShowCardAction.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 +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputText.js +1 -1
- package/src/sap/ui/integration/cards/adaptivecards/elements/UI5InputToggle.js +1 -1
- package/src/sap/ui/integration/cards/filters/BaseFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/ComboBoxFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/DateRangeFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/FilterBar.js +1 -1
- package/src/sap/ui/integration/cards/filters/FilterBarFactory.js +1 -1
- package/src/sap/ui/integration/cards/filters/SearchFilter.js +1 -1
- package/src/sap/ui/integration/cards/filters/SelectFilter.js +1 -1
- package/src/sap/ui/integration/cards/list/MicrochartsResizeHelper.js +1 -1
- package/src/sap/ui/integration/controls/ActionsStrip.js +4 -4
- package/src/sap/ui/integration/controls/ActionsToolbar.js +1 -1
- package/src/sap/ui/integration/controls/BlockingMessage.js +1 -1
- package/src/sap/ui/integration/controls/ImageWithOverlay.js +1 -1
- package/src/sap/ui/integration/controls/ListContentItem.js +1 -1
- package/src/sap/ui/integration/controls/Microchart.js +1 -1
- package/src/sap/ui/integration/controls/MicrochartLegend.js +1 -1
- package/src/sap/ui/integration/controls/ObjectStatus.js +1 -1
- package/src/sap/ui/integration/controls/Paginator.js +1 -1
- package/src/sap/ui/integration/customElements/CustomElementCard.js +9 -3
- package/src/sap/ui/integration/designtime/baseEditor/BaseEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/PropertyEditors.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_sappsd.properties +16 -16
- package/src/sap/ui/integration/designtime/baseEditor/i18n/i18n_en_US_saptrc.properties +80 -80
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/BasePropertyEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/PropertyEditorFactory.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/arrayEditor/ArrayEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/booleanEditor/BooleanEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/codeEditor/CodeEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateEditor/DateEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/dateTimeEditor/DateTimeEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/enumStringEditor/EnumStringEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/groupEditor/GroupEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/iconEditor/IsInIconPool.validator.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/integerEditor/IntegerEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/jsonEditor/JsonEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/listEditor/ListEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/mapEditor/MapEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/multiSelectEditor/MultiSelectEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/numberEditor/NumberEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/objectArrayEditor/ObjectArrayEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/selectEditor/SelectEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/separatorEditor/SeparatorEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/stringEditor/StringEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/propertyEditor/textAreaEditor/TextAreaEditor.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/binding/ObjectBinding.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/util/unset.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsBoolean.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsDate.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsInteger.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsNumber.js +1 -1
- package/src/sap/ui/integration/designtime/baseEditor/validator/IsSelectedKey.js +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/i18n/i18n_en_US_sappsd.properties +5 -5
- package/src/sap/ui/integration/designtime/cardEditor/i18n/i18n_en_US_saptrc.properties +171 -171
- 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/filtersEditor/FiltersEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/iconEditor/IconEditor.js +1 -1
- package/src/sap/ui/integration/designtime/cardEditor/propertyEditor/parametersEditor/ParametersEditor.js +1 -1
- package/src/sap/ui/integration/designtime/editor/Card.js +1 -1
- package/src/sap/ui/integration/designtime/editor/CardEditor.js +1 -1
- package/src/sap/ui/integration/designtime/editor/CardPreview.js +1 -1
- package/src/sap/ui/integration/editor/Editor.js +2 -2
- package/src/sap/ui/integration/editor/EditorResourceBundles.js +1 -1
- package/src/sap/ui/integration/editor/Extension.js +1 -1
- package/src/sap/ui/integration/editor/Manifest.js +1 -1
- package/src/sap/ui/integration/editor/Settings.js +1 -1
- package/src/sap/ui/integration/editor/fields/BaseField.js +1 -1
- package/src/sap/ui/integration/editor/fields/BooleanField.js +1 -1
- package/src/sap/ui/integration/editor/fields/DateField.js +1 -1
- package/src/sap/ui/integration/editor/fields/DateTimeField.js +1 -1
- package/src/sap/ui/integration/editor/fields/DestinationField.js +1 -1
- package/src/sap/ui/integration/editor/fields/GroupField.js +1 -1
- package/src/sap/ui/integration/editor/fields/IntegerField.js +1 -1
- package/src/sap/ui/integration/editor/fields/NumberField.js +1 -1
- package/src/sap/ui/integration/editor/fields/ObjectField.js +1 -1
- package/src/sap/ui/integration/editor/fields/ObjectListField.js +1 -1
- package/src/sap/ui/integration/editor/fields/StringField.js +1 -1
- package/src/sap/ui/integration/editor/fields/StringListField.js +1 -1
- package/src/sap/ui/integration/editor/fields/fragment/Controller.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/ColorSelect.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/IconSelect.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/ImageSelect.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/ShapeSelect.js +1 -1
- package/src/sap/ui/integration/editor/fields/viz/VizBase.js +1 -1
- package/src/sap/ui/integration/extensions/OAuth3LO.js +1 -1
- package/src/sap/ui/integration/library.js +58 -3
- package/src/sap/ui/integration/messagebundle_en_US_sappsd.properties +78 -64
- package/src/sap/ui/integration/messagebundle_en_US_saptrc.properties +162 -148
- package/src/sap/ui/integration/model/ContextModel.js +1 -1
- package/src/sap/ui/integration/model/ObservableModel.js +1 -1
- package/src/sap/ui/integration/model/PagingModelListBinding.js +1 -1
- package/src/sap/ui/integration/schemas/sap-card.json +6 -1
- package/src/sap/ui/integration/themes/base/CalendarContent.less +8 -0
- package/src/sap/ui/integration/themes/base/Card.less +148 -3
- package/src/sap/ui/integration/themes/base/ObjectStatus.less +2 -0
- package/src/sap/ui/integration/themes/base/library.source.less +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ar-gaI1v_KV.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_EG-CGlHr-jg.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_SA-D0iF05tg.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/bg-CJrwzo8x.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js +154 -10
- package/src/sap/ui/integration/thirdparty/webcomponents/bundle.esm.js.map +1 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ca-CkzsZJhe.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/cnr-DbKJTxGN.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/cs-BaB3d9Av.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/da-CTDYg05i.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/de-BPAvOyho.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/de_AT-C0Q-I35O.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/de_CH-V6zqRGuT.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/el-CE6EdnmY.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/el_CY-DM-mftU_.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/en-BV_fMYiZ.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/en_AU-DdpdhNc9.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/en_GB-DR37sckE.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/en_HK-C3ORwL4y.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IE-CImesKWm.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IN-BnP0Xsux.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/en_NZ-D-XmB6sh.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/en_PG-k1g6MW0k.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/en_SG-CH-OueZe.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/en_ZA-De7Q7wq-.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/es-CUYgeeV2.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/es_AR-bphqT9e8.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/es_BO-9iWEF7Cs.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CL-Cma-TrGh.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CO-Co5-6aNz.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/es_MX-DOMSkspG.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/es_PE-Thtj5270.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/es_UY-B6Fj2AOa.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/es_VE-BIY0wat6.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/et-h7DaePYx.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/fa-BSumtYoR.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/fi-CY8p4VYP.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/fr-c7VTGFC1.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_BE-fS0pUgwn.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CA-HJakdL_2.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CH-CsYAhWeP.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_LU-CHqDsjpc.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/he-DvqV-7FS.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/hi-DtIyTix1.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/hr-DO7SyOn5.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/hu-CXT-q6md.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/id-D7Ji1Vol.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/it-B30H1Zn6.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/it_CH-DXNpHhgj.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/ja-HOZtY2HT.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/kk-CyER5Yfk.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/ko-CCOZRLOI.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/lt-CbuIe_XX.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/lv-B6P7cPB-.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-By0ELKn1.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-DNg2ihdf.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-BpOpdSRg.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-CtKf3_pD.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-C7yAJLXv.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-z_PzL0LS.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cnr-B2C2UtnY.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cnr-BgC1xGfN.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-B2g02_qY.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-CglsMLoj.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-BGpEQrLK.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-CM6O5UY_.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-Bbv9jJL9.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-Dnrxp7vZ.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-Dbpn-Kzy.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-DdtngzTc.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-BbKk0xSf.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-CHOdJfj5.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-D0t7zNNP.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-DvYWXfG3.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-Bo0ABb8q.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-C7CSH40g.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-DjC9X79L.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-DnyNqUM9.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-BQKctZq6.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-DZ_EqeE9.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-C-dKnlfj.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-Dpnkxanh.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-BGIF2r4i.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-CjKpS0VR.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-Bq9-w7vo.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-CaUIlVEp.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-C50d_WIs.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-CvxKhma3.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-BjJAU_zd.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-CHT0e9Ft.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-B0JemQZg.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-CZjoFOTp.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-BjoN_ya6.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-DZBFnNAJ.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-CMAHfPzF.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-CW6YUR81.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-DJBozPw3.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-yfePmKmp.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-CLa7lmSo.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-CmnM7BSH.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-BiCFe-4Q.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-D3m1v9KT.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-DHL9ypHJ.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-NkVMHGle.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-8NhJ8eqk.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-CfnJye2i.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-DH9VAGau.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-DiyT2vK2.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-Bx7MYmis.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-CZn0MmH2.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-CQgzMWRu.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-DnPyJW94.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-B6j5anSt.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-BnmsTwH0.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-BhX-3e7T.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-_w1ygXGM.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_mk-1F54i8zg.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_mk-Bnw6ljFX.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-C4ALLG8v.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-DfBTz_Is.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-BfnMt-Zu.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-COOj_3wb.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-qAggYCjN.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-raoH9TFS.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-BbRrb6VO.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-BypwDfY-.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-BGN4m4Lf.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-BM74fN-c.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-B672qnbI.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-Bieyl7u4.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-BAjCPC5e.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-nTlNR9MA.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-BDcLROAo.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-BOKN1onR.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-BM9t1YKT.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-EQ0ATQCR.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-B0_P6rhh.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-DmaQbbM-.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-82XaNOOU.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-CgPRi_DE.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sr-9k6YFpsK.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sr-nEv82gwv.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-DgrN1Ri0.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-gTC20rWk.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-B-LFWoo4.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-BVC0K0Sb.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-B-dH0ajw.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-Ddfex1-g.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-BwkyJRsw.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-CtqpazAf.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-Gus-NSRW.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-g9BjG_PT.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-D4R1g5Rt.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-KensJmFt.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-D33wzIcH.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-DZQ07fJI.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/mk-Cd0pbvjP.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/ms-CxRS8r8U.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/nb-Bt6tTISo.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/nl-Bn_bYiUP.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/nl_BE-gGhbga80.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-B3CYe-Fc.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-BA22z097.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-BAv31BII.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-BJg9oVgh.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-BRs0Mxa-.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-BYugiKGk.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-BZzOoCHg.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-BvnJRv5X.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-Bz5PtVM4.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-C8H_1O9h.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-C970Konx.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-CAHqDBtl.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-CBkyQy2Q.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-CGhz8fL0.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-CXMLSn4M.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-CpTOUvo7.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-CqroeEYG.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-D6TuiR7M.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-DFjmm25g.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-DG_KwGUG.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-DJVciiYr.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-DaKv2hn7.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-Dnhr_EgY.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-Dv-C1e_-.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-DyS9hduW.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-G5-JJidX.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-MhNAGmGd.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-QAUNS7Mf.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-hd9kUYDu.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-z7bW6xuy.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/pl-CMCnDFeN.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/pt-epnACSlD.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/pt_PT-DDh80D1c.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/ro-99b_8s0L.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/ru-KnV2YsI1.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/ru_UA-DQu1w3nF.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/sk-BmVMraWc.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/sl-D-1eHn67.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/sr-qnchOIe3.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/sr_Latn-7xdk5b7O.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/sv-Cd90PyJ4.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/th-DBMtUCWg.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/tr-IfauWU6c.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/uk-CKaGQnVZ.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/vi-DL9RCxxW.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_CN-MHYosyo-.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_HK-CW9bNs3G.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_SG-CeJTYNVn.js +1 -0
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_TW-CA1JpQ7j.js +1 -0
- package/src/sap/ui/integration/util/AnalyticsCloudHelper.js +1 -1
- package/src/sap/ui/integration/util/BaseFactory.js +1 -1
- package/src/sap/ui/integration/util/BindingHelper.js +44 -2
- package/src/sap/ui/integration/util/BindingResolver.js +1 -1
- package/src/sap/ui/integration/util/CardObserver.js +1 -1
- package/src/sap/ui/integration/util/ComboBoxHelper.js +1 -1
- package/src/sap/ui/integration/util/ContentFactory.js +1 -1
- package/src/sap/ui/integration/util/CsrfTokenHandler.js +1 -1
- package/src/sap/ui/integration/util/DataProvider.js +1 -1
- package/src/sap/ui/integration/util/DataProviderFactory.js +1 -1
- package/src/sap/ui/integration/util/Destinations.js +1 -1
- package/src/sap/ui/integration/util/DisplayVariants.js +71 -4
- package/src/sap/ui/integration/util/ErrorHandler.js +1 -1
- package/src/sap/ui/integration/util/ExtensionDataProvider.js +1 -1
- package/src/sap/ui/integration/util/Form.js +1 -1
- package/src/sap/ui/integration/util/HeaderFactory.js +1 -1
- package/src/sap/ui/integration/util/JSONBindingHelper.js +1 -1
- package/src/sap/ui/integration/util/LoadingProvider.js +1 -1
- package/src/sap/ui/integration/util/Manifest.js +1 -1
- package/src/sap/ui/integration/util/OAuth3LOHelper.js +1 -1
- package/src/sap/ui/integration/util/RequestDataProvider.js +1 -1
- package/src/sap/ui/integration/util/ServiceDataProvider.js +1 -1
- package/src/sap/ui/integration/util/ServiceManager.js +1 -1
- package/src/sap/ui/integration/util/SkeletonCard.js +1 -1
- package/src/sap/ui/integration/util/Utils.js +1 -1
- package/src/sap/ui/integration/util/Validators.js +1 -1
- package/src/sap/ui/integration/widgets/Card.js +41 -6
- package/src/sap/ui/integration/controls/LinkWithIcon.js +0 -79
- package/src/sap/ui/integration/controls/LinkWithIconRenderer.js +0 -38
- package/src/sap/ui/integration/themes/base/LinkWithIcon.less +0 -11
- package/src/sap/ui/integration/thirdparty/webcomponents/ar-3d86671f.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/ar-3d86671f.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_EG-bec371f8.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_EG-bec371f8.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_SA-013516b9.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/ar_SA-013516b9.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/bg-c8a3d631.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/bg-c8a3d631.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ca-432aede8.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/ca-432aede8.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/cs-cb494530.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/cs-cb494530.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/da-b8216f78.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/da-b8216f78.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/de-db7ee200.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/de-db7ee200.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/de_AT-16212e69.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/de_AT-16212e69.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/de_CH-b2e7405d.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/de_CH-b2e7405d.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/el-bc8ea43c.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/el-bc8ea43c.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/el_CY-32899bf5.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/el_CY-32899bf5.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/en-852a3c47.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/en-852a3c47.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/en_AU-a22d2bd1.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/en_AU-a22d2bd1.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/en_GB-06fb3326.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/en_GB-06fb3326.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/en_HK-8e388c7e.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/en_HK-8e388c7e.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IE-31301e64.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IE-31301e64.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IN-a8cac790.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/en_IN-a8cac790.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/en_NZ-1ac8fca7.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/en_NZ-1ac8fca7.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/en_PG-90ae5ac9.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/en_PG-90ae5ac9.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/en_SG-f783b9e0.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/en_SG-f783b9e0.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/en_ZA-a4a6c2af.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/en_ZA-a4a6c2af.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/es-2987b3bf.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/es-2987b3bf.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/es_AR-c9568bef.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/es_AR-c9568bef.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/es_BO-f80d4cab.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/es_BO-f80d4cab.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CL-e69a20cc.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CL-e69a20cc.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CO-8ed671f5.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/es_CO-8ed671f5.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/es_MX-ca227fd9.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/es_MX-ca227fd9.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/es_PE-313ad09c.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/es_PE-313ad09c.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/es_UY-3145d111.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/es_UY-3145d111.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/es_VE-9855c07f.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/es_VE-9855c07f.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/et-c8b012d9.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/et-c8b012d9.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/fa-270906e4.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/fa-270906e4.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/fi-5cb24937.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/fi-5cb24937.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/fr-f90c8dbe.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/fr-f90c8dbe.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_BE-0a0b1e89.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_BE-0a0b1e89.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CA-69115871.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CA-69115871.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CH-67cec36a.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_CH-67cec36a.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_LU-41d18384.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/fr_LU-41d18384.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/he-c7dd8770.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/he-c7dd8770.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/hi-02d890ff.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/hi-02d890ff.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/hr-ce839bd8.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/hr-ce839bd8.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/hu-8894ff20.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/hu-8894ff20.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/id-4e1f336f.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/id-4e1f336f.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/it-2f7ca2cc.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/it-2f7ca2cc.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/it_CH-96f6448e.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/it_CH-96f6448e.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ja-b852efec.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/ja-b852efec.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/kk-4d418f87.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/kk-4d418f87.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ko-580a2045.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/ko-580a2045.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/lt-ee0f5d04.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/lt-ee0f5d04.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/lv-b18d4611.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/lv-b18d4611.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-0d1ad1fe.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-0d1ad1fe.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ar-f6792d81.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-19dab68c.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-19dab68c.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_bg-884d46bd.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-5b6cc3e2.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-9a2c00aa.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ca-9a2c00aa.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-7eb827ff.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-7eb827ff.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cs-c7ed5c29.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-59b352bb.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-59b352bb.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_cy-9889d6f0.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-53593542.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-7b82a777.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_da-7b82a777.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-eb501c07.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-fe0ee4dd.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_de-fe0ee4dd.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-45d1c326.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-b846ddbd.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_el-b846ddbd.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-00d224f0.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-00d224f0.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en-3bc10a88.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-a4723c29.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-b6557ced.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_GB-b6557ced.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-7f53c3de.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-7f53c3de.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_sappsd-9cf5ba75.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-00c865df.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-94648753.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saprigi-94648753.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-57779176.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-57779176.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_en_US_saptrc-ae1a6e4a.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-288d5c23.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-32e23462.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es-32e23462.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-247861b8.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-247861b8.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_es_MX-4f1305df.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-077b43b7.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-077b43b7.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_et-a0061a71.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-27edc9b8.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-b9f27356.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fi-b9f27356.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-6265990a.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-776fbe53.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr-776fbe53.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-be82338b.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-be82338b.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_fr_CA-c0eae649.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-9f578dcf.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-9f578dcf.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hi-c4029409.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-49952683.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-c9d5ac76.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hr-c9d5ac76.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-9eaeaf2e.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d015baa6.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_hu-d015baa6.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-5f15c5a1.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_in-69efcc93.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-0b408aea.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-f7bf3947.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_it-f7bf3947.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-6db571be.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-a2983dd2.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_iw-a2983dd2.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-9c40042d.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-b96fe6b5.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ja-b96fe6b5.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-31b7f62f.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-31b7f62f.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_kk-b620a07a.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-4be67a77.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-9c52f847.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ko-9c52f847.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-1e4f1335.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-1e4f1335.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lt-daa86622.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-156ea5fe.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-156ea5fe.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_lv-54381557.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-536227b5.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-e142440d.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ms-e142440d.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-1290458f.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-1290458f.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_nl-56e48e33.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-2f06c288.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-2f06c288.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_no-eecb1eec.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-179a75de.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-179a75de.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pl-bd30a402.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-026877c7.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-741d8c1c.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt-741d8c1c.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-a24258d4.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-d2a87d88.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_pt_PT-d2a87d88.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-0dbe572d.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-6da8daa7.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ro-6da8daa7.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-4291aa7d.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-e80d281e.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_ru-e80d281e.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-4047dcd1.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-83f9fefd.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sh-83f9fefd.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-c7dd9005.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-c7dd9005.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sk-fd3049d8.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-586b310b.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-e31d7023.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sl-e31d7023.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-1796a5d2.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-4adc09cc.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_sv-4adc09cc.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-33e2fe27.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-33e2fe27.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_th-63398540.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-b49fdd27.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-b49fdd27.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_tr-f32e601b.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-70daf763.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-de6e4871.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_uk-de6e4871.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-3f36f453.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-ba1b4011.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_vi-ba1b4011.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-2420a6e9.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-81dc4660.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_CN-81dc4660.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-7833a089.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-7833a089.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/messagebundle_zh_TW-91e89b06.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ms-97288878.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/ms-97288878.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/nb-d77ab65a.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/nb-d77ab65a.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/nl-624d50c1.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/nl-624d50c1.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/nl_BE-ae42d671.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/nl_BE-ae42d671.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0492638f.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0492638f.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-04bc9eb3.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-04bc9eb3.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0e7b5607.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-0e7b5607.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-125b2b7a.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-125b2b7a.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-1a0ab11d.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-1a0ab11d.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-243fcda5.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-243fcda5.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-521ed433.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-521ed433.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5c3f5118.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5c3f5118.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5f5e6b1a.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-5f5e6b1a.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-60fa0cd2.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-60fa0cd2.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-6b0ea135.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-6b0ea135.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-6ff10523.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-6ff10523.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7b2c3304.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7b2c3304.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7dc01b3a.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-7dc01b3a.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-9c9eaabc.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-9c9eaabc.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-abd55cbb.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-abd55cbb.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-b3fbd1e6.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-b3fbd1e6.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bf92c220.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-bf92c220.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-c36ca341.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-c36ca341.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dda93805.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-dda93805.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-e504ec6c.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-e504ec6c.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-e9886ead.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-e9886ead.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-f7a88bec.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-f7a88bec.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fe0b62d8.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/parameters-bundle.css-fe0b62d8.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/pl-e69ff58a.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/pl-e69ff58a.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/pt-b6593b86.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/pt-b6593b86.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/pt_PT-6f58c38d.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/pt_PT-6f58c38d.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ro-cf279a8d.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/ro-cf279a8d.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ru-a41bc6ce.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/ru-a41bc6ce.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/ru_UA-60325a6e.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/ru_UA-60325a6e.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/sk-a3e7e927.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/sk-a3e7e927.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/sl-0d949839.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/sl-0d949839.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/sr-d3b5a8a9.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/sr-d3b5a8a9.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/sr_Latn-66ea0243.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/sr_Latn-66ea0243.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/sv-704380a3.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/sv-704380a3.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/th-a3f0b98a.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/th-a3f0b98a.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/tr-a75c54c5.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/tr-a75c54c5.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/uk-2ea9760e.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/uk-2ea9760e.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/vi-0ee42fc7.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/vi-0ee42fc7.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_CN-9347b38b.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_CN-9347b38b.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_HK-402bf471.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_HK-402bf471.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_SG-decc6172.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_SG-decc6172.js.map +0 -1
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_TW-22e4094b.js +0 -2
- package/src/sap/ui/integration/thirdparty/webcomponents/zh_TW-22e4094b.js.map +0 -1
|
@@ -15,7 +15,7 @@ sap.ui.define([
|
|
|
15
15
|
"sap/ui/integration/util/BindingResolver",
|
|
16
16
|
"sap/ui/model/json/JSONModel",
|
|
17
17
|
"sap/m/Button",
|
|
18
|
-
"sap/
|
|
18
|
+
"sap/m/Link",
|
|
19
19
|
"sap/m/OverflowToolbarButton",
|
|
20
20
|
"sap/m/OverflowToolbar",
|
|
21
21
|
"sap/m/OverflowToolbarLayoutData",
|
|
@@ -32,7 +32,7 @@ sap.ui.define([
|
|
|
32
32
|
BindingResolver,
|
|
33
33
|
JSONModel,
|
|
34
34
|
Button,
|
|
35
|
-
|
|
35
|
+
Link,
|
|
36
36
|
OverflowToolbarButton,
|
|
37
37
|
OverflowToolbar,
|
|
38
38
|
OverflowToolbarLayoutData,
|
|
@@ -60,7 +60,7 @@ sap.ui.define([
|
|
|
60
60
|
* @extends sap.ui.core.Control
|
|
61
61
|
*
|
|
62
62
|
* @author SAP SE
|
|
63
|
-
* @version 1.
|
|
63
|
+
* @version 1.128.0
|
|
64
64
|
*
|
|
65
65
|
* @constructor
|
|
66
66
|
* @private
|
|
@@ -276,7 +276,7 @@ sap.ui.define([
|
|
|
276
276
|
};
|
|
277
277
|
|
|
278
278
|
ActionsStrip.prototype._createLink = function (mConfig) {
|
|
279
|
-
var oLink = new
|
|
279
|
+
var oLink = new Link({
|
|
280
280
|
icon: mConfig.icon,
|
|
281
281
|
text: mConfig.text,
|
|
282
282
|
tooltip: mConfig.tooltip,
|
|
@@ -7,11 +7,11 @@
|
|
|
7
7
|
sap.ui.require([
|
|
8
8
|
"sap/ui/integration/widgets/Card",
|
|
9
9
|
"sap/ui/integration/customElements/CustomElementBase",
|
|
10
|
-
"sap/
|
|
10
|
+
"sap/f/cards/CardBadgeCustomData"
|
|
11
11
|
], function (
|
|
12
12
|
Card,
|
|
13
13
|
CustomElementBase,
|
|
14
|
-
|
|
14
|
+
CardBadgeCustomData
|
|
15
15
|
) {
|
|
16
16
|
"use strict";
|
|
17
17
|
|
|
@@ -28,7 +28,13 @@ sap.ui.require([
|
|
|
28
28
|
customProperties: {
|
|
29
29
|
"badge": {
|
|
30
30
|
set: function(oCard, vValue) {
|
|
31
|
-
|
|
31
|
+
// only one badge is allowed through this API, remove the old badge
|
|
32
|
+
oCard.getCustomData().forEach((oData) => {
|
|
33
|
+
if (oData.isA("sap.m.BadgeCustomData") || oData.isA("sap.f.cards.CardBadgeCustomData")) {
|
|
34
|
+
oCard.removeCustomData(oData);
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
oCard.addCustomData( new CardBadgeCustomData({value: vValue}));
|
|
32
38
|
}
|
|
33
39
|
}
|
|
34
40
|
}
|
|
@@ -26,7 +26,7 @@ BASE_EDITOR.TYPES.INTEGER=[[[\u012C\u014B\u0163\u0113\u011F\u0113\u0157\u2219\u2
|
|
|
26
26
|
|
|
27
27
|
BASE_EDITOR.TYPES.DATE=[[[\u010E\u0105\u0163\u0113]]]
|
|
28
28
|
|
|
29
|
-
BASE_EDITOR.TYPES.DATETIME=[[[\u010E\u0105\u0163\u0113
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=[[[\u010E\u0105\u0163\u0113/\u0162\u012F\u0271\u0113\u2219\u2219\u2219\u2219\u2219]]]
|
|
30
30
|
|
|
31
31
|
BASE_EDITOR.TYPES.GROUP=[[[\u0122\u0157\u014F\u0171\u03C1\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
32
32
|
|
|
@@ -62,11 +62,11 @@ BASE_EDITOR.ARRAY.ITEM_LABEL=[[[\u012C\u0163\u0113\u0271]]]
|
|
|
62
62
|
|
|
63
63
|
BASE_EDITOR.ARRAY.NEW_ITEM_LABEL=[[[\u0143\u0113\u0175\: {0}]]]
|
|
64
64
|
|
|
65
|
-
BASE_EDITOR.ARRAY.REMOVE=[[[\u0158\u0113\u0271\u014F\u028B\u0113 \
|
|
65
|
+
BASE_EDITOR.ARRAY.REMOVE=[[[\u0158\u0113\u0271\u014F\u028B\u0113 \u012C\u0163\u0113\u0271\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
66
66
|
|
|
67
|
-
BASE_EDITOR.MOVEUP=[[[\u039C\u014F\u028B\u0113 \
|
|
67
|
+
BASE_EDITOR.MOVEUP=[[[\u039C\u014F\u028B\u0113 \u016E\u03C1\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
68
68
|
|
|
69
|
-
BASE_EDITOR.MOVEDOWN=[[[\u039C\u014F\u028B\u0113 \
|
|
69
|
+
BASE_EDITOR.MOVEDOWN=[[[\u039C\u014F\u028B\u0113 \u010E\u014F\u0175\u014B\u2219\u2219\u2219\u2219\u2219]]]
|
|
70
70
|
|
|
71
71
|
BASE_EDITOR.ARRAY.ADD=[[[\u0100\u018C\u018C\: {0}]]]
|
|
72
72
|
|
|
@@ -100,7 +100,7 @@ BASE_EDITOR.ICON.INVALID_BINDING_OR_ICON=[[[\u01A4\u013A\u0113\u0105\u015F\u0113
|
|
|
100
100
|
|
|
101
101
|
BASE_EDITOR.ICON.BUTTON_SETTINGS=[[[\u015C\u0113\u0163\u0163\u012F\u014B\u011F\u015F\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
102
102
|
|
|
103
|
-
BASE_EDITOR.ICON.SETTINGS_DIALOG_TITLE=[[[\u010E\u012F\u015F\u03C1\u013A\u0105\u0177 \
|
|
103
|
+
BASE_EDITOR.ICON.SETTINGS_DIALOG_TITLE=[[[\u010E\u012F\u015F\u03C1\u013A\u0105\u0177 \u015C\u0113\u0163\u0163\u012F\u014B\u011F\u015F\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
104
104
|
|
|
105
105
|
BASE_EDITOR.ICON.SETTINGS_DIALOG_SHAPE_LABEL=[[[\u015C\u0125\u0105\u03C1\u0113\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
106
106
|
|
|
@@ -120,7 +120,7 @@ BASE_EDITOR.ICON.TYPE_ICON=[[[\u012C\u010B\u014F\u014B]]]
|
|
|
120
120
|
|
|
121
121
|
BASE_EDITOR.ICON.TYPE_PICTURE=[[[\u01A4\u012F\u010B\u0163\u0171\u0157\u0113\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
122
122
|
|
|
123
|
-
BASE_EDITOR.ICON.SETTINGS_DIALOG_BACKGROUNDCOLOR_LABEL=[[[\u0181\u0105\u010B\u0137\u011F\u0157\u014F\u0171\u014B\u018C \
|
|
123
|
+
BASE_EDITOR.ICON.SETTINGS_DIALOG_BACKGROUNDCOLOR_LABEL=[[[\u0181\u0105\u010B\u0137\u011F\u0157\u014F\u0171\u014B\u018C \u0108\u014F\u013A\u014F\u0157\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
124
124
|
|
|
125
125
|
BASE_EDITOR.ICON.INPUT_BACKGROUNDCOLOR=[[[\u0114\u014B\u0163\u0113\u0157 \u0183\u0105\u010B\u0137\u011F\u0157\u014F\u0171\u014B\u018C \u010B\u014F\u013A\u014F\u0157 \u014F\u0192 \u0163\u0125\u0113 \u012F\u010B\u014F\u014B\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
126
126
|
|
|
@@ -136,24 +136,24 @@ BASE_EDITOR.VALIDATOR.FORBIDDEN_BINDING=[[[\u0181\u012F\u014B\u018C\u012F\u014B\
|
|
|
136
136
|
|
|
137
137
|
BASE_EDITOR.VALIDATOR.FORBIDDEN_CUSTOM_VALUE=[[[\u0108\u0171\u015F\u0163\u014F\u0271 \u028B\u0105\u013A\u0171\u0113\u015F \u0105\u0157\u0113 \u014B\u014F\u0163 \u0105\u013A\u013A\u014F\u0175\u0113\u018C.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
138
138
|
|
|
139
|
-
BASE_EDITOR.VALIDATOR.NOT_A_NUMBER=[[[\u0143\u014F\u0163 \u0105 \u014B\u0171\u0271\u0183\u0113\u0157
|
|
139
|
+
BASE_EDITOR.VALIDATOR.NOT_A_NUMBER=[[[\u0143\u014F\u0163 \u0105 \u014B\u0171\u0271\u0183\u0113\u0157\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
140
140
|
|
|
141
|
-
BASE_EDITOR.VALIDATOR.NOT_AN_INTEGER=[[[\u0143\u014F\u0163 \u0105\u014B \u012F\u014B\u0163\u0113\u011F\u0113\u0157
|
|
141
|
+
BASE_EDITOR.VALIDATOR.NOT_AN_INTEGER=[[[\u0143\u014F\u0163 \u0105\u014B \u012F\u014B\u0163\u0113\u011F\u0113\u0157\u2219\u2219\u2219\u2219\u2219]]]
|
|
142
142
|
|
|
143
|
-
BASE_EDITOR.VALIDATOR.NOT_A_BOOLEAN=[[[\u0143\u014F\u0163 \u0105 \u0183\u014F\u014F\u013A\u0113\u0105\u014B
|
|
143
|
+
BASE_EDITOR.VALIDATOR.NOT_A_BOOLEAN=[[[\u0143\u014F\u0163 \u0105 \u0183\u014F\u014F\u013A\u0113\u0105\u014B\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
144
144
|
|
|
145
|
-
BASE_EDITOR.VALIDATOR.NOT_A_JSONOBJECT=[[[\u0143\u014F\u0163 \u0105 \u0134\u015C\u014E\u0143 \
|
|
145
|
+
BASE_EDITOR.VALIDATOR.NOT_A_JSONOBJECT=[[[\u0143\u014F\u0163 \u0105 \u0134\u015C\u014E\u0143 \u0192\u014F\u0157\u0271\u0105\u0163\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
146
146
|
|
|
147
|
-
BASE_EDITOR.VALIDATOR.NOT_AN_ARRAY_OF_JSONOBJECTS=[[[\u0143\u014F\u0163 \u0105\u014B \u0105\u0157\u0157\u0105\u0177 \u014F\u0192 \u0134\u015C\u014E\u0143 \
|
|
147
|
+
BASE_EDITOR.VALIDATOR.NOT_AN_ARRAY_OF_JSONOBJECTS=[[[\u0143\u014F\u0163 \u0105\u014B \u0105\u0157\u0157\u0105\u0177 \u014F\u0192 \u0134\u015C\u014E\u0143 \u014F\u0183\u0135\u0113\u010B\u0163\u015F.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
148
148
|
|
|
149
|
-
BASE_EDITOR.VALIDATOR.NOT_AN_ICON=[[[\u0143\u014F\u0163 \u0105\u014B \u012F\u010B\u014F\u014B
|
|
149
|
+
BASE_EDITOR.VALIDATOR.NOT_AN_ICON=[[[\u0143\u014F\u0163 \u0105\u014B \u012F\u010B\u014F\u014B\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
150
150
|
|
|
151
|
-
BASE_EDITOR.VALIDATOR.MAX_LENGTH=[[[\u039C\u0105\u03C7 \u013A\u0113\u014B\u011F\u0163\u0125 \u014F\u0192 {0} \u015F\u0177\u0271\u0183\u014F\u013A\u015F \
|
|
151
|
+
BASE_EDITOR.VALIDATOR.MAX_LENGTH=[[[\u039C\u0105\u03C7 \u013A\u0113\u014B\u011F\u0163\u0125 \u014F\u0192 {0} \u015F\u0177\u0271\u0183\u014F\u013A\u015F \u0113\u03C7\u010B\u0113\u0113\u018C\u0113\u018C.]]]
|
|
152
152
|
|
|
153
|
-
BASE_EDITOR.VALIDATOR.DUPLICATE_ENTRY=[[[\u010E\u0171\u03C1\u013A\u012F\u010B\u0105\u0163\u0113 \u0113\u014B\u0163\u0157\u0177
|
|
153
|
+
BASE_EDITOR.VALIDATOR.DUPLICATE_ENTRY=[[[\u010E\u0171\u03C1\u013A\u012F\u010B\u0105\u0163\u0113 \u0113\u014B\u0163\u0157\u0177\u2219\u2219\u2219\u2219]]]
|
|
154
154
|
|
|
155
|
-
BASE_EDITOR.VALIDATOR.DUPLICATE_KEY=[[[\u010E\u0171\u03C1\u013A\u012F\u010B\u0105\u0163\u0113 \u0137\u0113\u0177
|
|
155
|
+
BASE_EDITOR.VALIDATOR.DUPLICATE_KEY=[[[\u010E\u0171\u03C1\u013A\u012F\u010B\u0105\u0163\u0113 \u0137\u0113\u0177\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
156
156
|
|
|
157
|
-
BASE_EDITOR.VALIDATOR.INVALID_DATE=[[[\u012C\u014B\u028B\u0105\u013A\u012F\u018C \u018C\u0105\u0163\u0113
|
|
157
|
+
BASE_EDITOR.VALIDATOR.INVALID_DATE=[[[\u012C\u014B\u028B\u0105\u013A\u012F\u018C \u018C\u0105\u0163\u0113\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
158
158
|
|
|
159
159
|
BASE_EDITOR.VALIDATOR.FAILED_PATTERN_TEST=[[[\u012C\u014B\u03C1\u0171\u0163 \u018C\u014F\u0113\u015F \u014B\u014F\u0163 \u0271\u0105\u0163\u010B\u0125 \u0163\u0125\u0113 \u03C1\u0105\u0163\u0163\u0113\u0157\u014B.\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219\u2219]]]
|
|
@@ -1,159 +1,159 @@
|
|
|
1
|
-
BASE_EDITOR.FALLBACK_TYPE=
|
|
1
|
+
BASE_EDITOR.FALLBACK_TYPE=qMbp9r1sNe2B0unCc1t1cg_Custom type
|
|
2
2
|
|
|
3
|
-
BASE_EDITOR.MAP.EMPTY=
|
|
3
|
+
BASE_EDITOR.MAP.EMPTY=aFUxg0//VHpDEmX18uoHrQ_No entries
|
|
4
4
|
|
|
5
|
-
BASE_EDITOR.MAP.KEY=
|
|
5
|
+
BASE_EDITOR.MAP.KEY=H6f2MJlRMyqJfAYikFWvEQ_Key
|
|
6
6
|
|
|
7
|
-
BASE_EDITOR.MAP.VALUE=
|
|
7
|
+
BASE_EDITOR.MAP.VALUE=0E6+QIH2jiHto8y6Qq0NFg_Value
|
|
8
8
|
|
|
9
|
-
BASE_EDITOR.MAP.TYPE=
|
|
9
|
+
BASE_EDITOR.MAP.TYPE=onaG4y3GZeKrz5MoWkqRaQ_Type
|
|
10
10
|
|
|
11
|
-
BASE_EDITOR.MAP.REMOVE=
|
|
11
|
+
BASE_EDITOR.MAP.REMOVE=8Np/jDe6uGgT8mamJxMmug_Remove
|
|
12
12
|
|
|
13
|
-
BASE_EDITOR.MAP.DUPLICATE_KEY=
|
|
13
|
+
BASE_EDITOR.MAP.DUPLICATE_KEY=UrHM3zz4JO6vZ2mnHeKWOA_Please enter a unique key.
|
|
14
14
|
|
|
15
|
-
BASE_EDITOR.MAP.ADD=
|
|
15
|
+
BASE_EDITOR.MAP.ADD=5yTWE4IDZBXP34M786UJ4Q_Add\: {0}
|
|
16
16
|
|
|
17
|
-
BASE_EDITOR.MAP.DEFAULT_TYPE=
|
|
17
|
+
BASE_EDITOR.MAP.DEFAULT_TYPE=E/0oYc4UGuqsQvLXbPiEUw_Parameter
|
|
18
18
|
|
|
19
|
-
BASE_EDITOR.TYPES.STRING=
|
|
19
|
+
BASE_EDITOR.TYPES.STRING=Ga0W6690ocffLSV3kC5g6A_String
|
|
20
20
|
|
|
21
|
-
BASE_EDITOR.TYPES.BOOLEAN=
|
|
21
|
+
BASE_EDITOR.TYPES.BOOLEAN=Dzaxm/Rv5qBtwiD052GCaQ_Boolean
|
|
22
22
|
|
|
23
|
-
BASE_EDITOR.TYPES.NUMBER=
|
|
23
|
+
BASE_EDITOR.TYPES.NUMBER=5zqkcyn3jYpIqXUWpmjlVg_Number
|
|
24
24
|
|
|
25
|
-
BASE_EDITOR.TYPES.INTEGER=
|
|
25
|
+
BASE_EDITOR.TYPES.INTEGER=A+6UOan7rT/3fczUmaBSEQ_Integer
|
|
26
26
|
|
|
27
|
-
BASE_EDITOR.TYPES.DATE=
|
|
27
|
+
BASE_EDITOR.TYPES.DATE=jwroBLszUNo0D0LKWkmA1g_Date
|
|
28
28
|
|
|
29
|
-
BASE_EDITOR.TYPES.DATETIME=
|
|
29
|
+
BASE_EDITOR.TYPES.DATETIME=rLrPI36s6O5nAHv8pX5AlQ_Date/Time
|
|
30
30
|
|
|
31
|
-
BASE_EDITOR.TYPES.GROUP=
|
|
31
|
+
BASE_EDITOR.TYPES.GROUP=q9JRDtNxcsnRWVG1JalxDg_Group
|
|
32
32
|
|
|
33
|
-
BASE_EDITOR.TYPES.SEPARATOR=
|
|
33
|
+
BASE_EDITOR.TYPES.SEPARATOR=5HaYFiLuARQph/ASMcFUmQ_Separator
|
|
34
34
|
|
|
35
|
-
BASE_EDITOR.TYPES.ICON
|
|
35
|
+
BASE_EDITOR.TYPES.ICON=++c/R80xkQiGduTLE8f/qg_Icon
|
|
36
36
|
|
|
37
|
-
BASE_EDITOR.TYPES.SIMPLEICON=
|
|
37
|
+
BASE_EDITOR.TYPES.SIMPLEICON=s2gX8RXzGNxQKlWmC5HI1w_Simple Icon
|
|
38
38
|
|
|
39
|
-
BASE_EDITOR.TYPES.ARRAY=
|
|
39
|
+
BASE_EDITOR.TYPES.ARRAY=kzKOx/bf028h8r/F8uHYzg_String Array
|
|
40
40
|
|
|
41
|
-
BASE_EDITOR.TYPES.JSON=
|
|
41
|
+
BASE_EDITOR.TYPES.JSON=l602jZ7c+2LDxX+54npUcg_JSON
|
|
42
42
|
|
|
43
|
-
BASE_EDITOR.TYPES.OBJECT=
|
|
43
|
+
BASE_EDITOR.TYPES.OBJECT=cfv9z//axoF8BA8GAivD+A_Object
|
|
44
44
|
|
|
45
|
-
BASE_EDITOR.TYPES.OBJECTARRAY=
|
|
45
|
+
BASE_EDITOR.TYPES.OBJECTARRAY=GHU70MHLUkUNdD4KCUl54Q_Object Array
|
|
46
46
|
|
|
47
|
-
BASE_EDITOR.STRING.INVALID_BINDING=
|
|
47
|
+
BASE_EDITOR.STRING.INVALID_BINDING=CVBz8eKcPTOzQXCF/PcEBQ_Please enter a valid binding string.
|
|
48
48
|
|
|
49
|
-
BASE_EDITOR.LIST.DUPLICATE_ENTRY=
|
|
49
|
+
BASE_EDITOR.LIST.DUPLICATE_ENTRY=vQPpqdZ/SDXBVD1AAeCw6Q_Please enter a unique value.
|
|
50
50
|
|
|
51
|
-
BASE_EDITOR.ENUM.INVALID_SELECTION=
|
|
51
|
+
BASE_EDITOR.ENUM.INVALID_SELECTION=m6dF8WX3mnXi7KqUjJNQlw_Please select a value from the list.
|
|
52
52
|
|
|
53
|
-
BASE_EDITOR.ENUM.CUSTOM_VALUES_NOT_ALLOWED=
|
|
53
|
+
BASE_EDITOR.ENUM.CUSTOM_VALUES_NOT_ALLOWED=oJJu0Jk6iObDEKZdt4HNRw_Custom values are not allowed.
|
|
54
54
|
|
|
55
|
-
BASE_EDITOR.SELECT.INVALID_SELECTION=
|
|
55
|
+
BASE_EDITOR.SELECT.INVALID_SELECTION=JQxqri3X0EIDysvgkXx5Jg_Please select a value from the list.
|
|
56
56
|
|
|
57
|
-
BASE_EDITOR.SELECT.CUSTOM_VALUES_NOT_ALLOWED=
|
|
57
|
+
BASE_EDITOR.SELECT.CUSTOM_VALUES_NOT_ALLOWED=HUMZ8Uyk0JVKmhunzm+CGA_Custom values are not allowed.
|
|
58
58
|
|
|
59
|
-
BASE_EDITOR.PROPERTY.BINDING_NOT_ALLOWED=
|
|
59
|
+
BASE_EDITOR.PROPERTY.BINDING_NOT_ALLOWED=g3SBCUx/+Q/BH8g/qT0IBw_Binding strings are not allowed.
|
|
60
60
|
|
|
61
|
-
BASE_EDITOR.ARRAY.ITEM_LABEL=
|
|
61
|
+
BASE_EDITOR.ARRAY.ITEM_LABEL=RAWk6tAqbRm8k/wG10MbQA_Item
|
|
62
62
|
|
|
63
|
-
BASE_EDITOR.ARRAY.NEW_ITEM_LABEL=
|
|
63
|
+
BASE_EDITOR.ARRAY.NEW_ITEM_LABEL=6+XrfGW5uYdaDxk2vmr2wQ_New\: {0}
|
|
64
64
|
|
|
65
|
-
BASE_EDITOR.ARRAY.REMOVE=
|
|
65
|
+
BASE_EDITOR.ARRAY.REMOVE=1hm50ZoVdBs00byar+zOLQ_Remove Item
|
|
66
66
|
|
|
67
|
-
BASE_EDITOR.MOVEUP=
|
|
67
|
+
BASE_EDITOR.MOVEUP=QP78jbvBEV/K53b2BAMVsg_Move Up
|
|
68
68
|
|
|
69
|
-
BASE_EDITOR.MOVEDOWN=
|
|
69
|
+
BASE_EDITOR.MOVEDOWN=1B300UUeT+/8Cc3q53GnFg_Move Down
|
|
70
70
|
|
|
71
|
-
BASE_EDITOR.ARRAY.ADD=
|
|
71
|
+
BASE_EDITOR.ARRAY.ADD=ynQuDtoYO+FbfBEiN68UMg_Add\: {0}
|
|
72
72
|
|
|
73
|
-
BASE_EDITOR.JSON.TITLE=
|
|
73
|
+
BASE_EDITOR.JSON.TITLE=oyuHuu0nNM8xv0DWhMiFAQ_Edit JSON Data
|
|
74
74
|
|
|
75
|
-
BASE_EDITOR.JSON.SAVE=
|
|
75
|
+
BASE_EDITOR.JSON.SAVE=JSg0W5mzyR2IiXJD+CSHXw_Save
|
|
76
76
|
|
|
77
|
-
BASE_EDITOR.JSON.CANCEL=
|
|
77
|
+
BASE_EDITOR.JSON.CANCEL=TpZN2RYmK5uCb3Pkv+UWuA_Cancel
|
|
78
78
|
|
|
79
|
-
BASE_EDITOR.JSON.BEAUTIFY=
|
|
79
|
+
BASE_EDITOR.JSON.BEAUTIFY=uAqq2nnJLGbXTBmt2mq8lg_Beautify
|
|
80
80
|
|
|
81
|
-
BASE_EDITOR.CODE.TITLE=
|
|
81
|
+
BASE_EDITOR.CODE.TITLE=bfTfoBoK/qSIU1WEePEv3w_Edit Data
|
|
82
82
|
|
|
83
|
-
BASE_EDITOR.CODE.OK=
|
|
83
|
+
BASE_EDITOR.CODE.OK=q2H7j/wqu3exvZ6N6EQB0g_OK
|
|
84
84
|
|
|
85
|
-
BASE_EDITOR.CODE.CANCEL=
|
|
85
|
+
BASE_EDITOR.CODE.CANCEL=hsodNRoS9V9RcgPjTUtl8g_Cancel
|
|
86
86
|
|
|
87
|
-
BASE_EDITOR.CODE.BEAUTIFY=
|
|
87
|
+
BASE_EDITOR.CODE.BEAUTIFY=0IR2Q4j30mmCLzS2yOtQOw_Beautify
|
|
88
88
|
|
|
89
|
-
BASE_EDITOR.NUMBER.INVALID_BINDING_OR_NUMBER=
|
|
89
|
+
BASE_EDITOR.NUMBER.INVALID_BINDING_OR_NUMBER=nEUVKkOL3U5qr4nkL3PfeA_Please enter a valid binding string or a number.
|
|
90
90
|
|
|
91
|
-
BASE_EDITOR.INTEGER.INVALID_BINDING_OR_INTEGER=
|
|
91
|
+
BASE_EDITOR.INTEGER.INVALID_BINDING_OR_INTEGER=uCCdmDax2EX+HXgH2ub54g_Please enter a valid binding string or an integer.
|
|
92
92
|
|
|
93
|
-
BASE_EDITOR.BOOLEAN.INVALID_BINDING_OR_BOOLEAN=
|
|
93
|
+
BASE_EDITOR.BOOLEAN.INVALID_BINDING_OR_BOOLEAN=S9tnFS+Y3ur+QyHjrsNvlQ_Please enter a valid binding string or a boolean.
|
|
94
94
|
|
|
95
|
-
BASE_EDITOR.BOOLEAN.TRUE_VALUE=
|
|
95
|
+
BASE_EDITOR.BOOLEAN.TRUE_VALUE=1RIo7VQeTWF20gaDPXcBEw_True
|
|
96
96
|
|
|
97
|
-
BASE_EDITOR.BOOLEAN.FALSE_VALUE=
|
|
97
|
+
BASE_EDITOR.BOOLEAN.FALSE_VALUE=r0X3zcuvy6/HoRwgVmihwQ_False
|
|
98
98
|
|
|
99
|
-
BASE_EDITOR.ICON.INVALID_BINDING_OR_ICON=
|
|
99
|
+
BASE_EDITOR.ICON.INVALID_BINDING_OR_ICON=EJ89xK+8Hg2wB89n6Kyo6A_Please enter a valid binding string or an icon URI.
|
|
100
100
|
|
|
101
|
-
BASE_EDITOR.ICON.BUTTON_SETTINGS=
|
|
101
|
+
BASE_EDITOR.ICON.BUTTON_SETTINGS=JbBSnycTqKIkKq7p3u0GHA_Settings
|
|
102
102
|
|
|
103
|
-
BASE_EDITOR.ICON.SETTINGS_DIALOG_TITLE=
|
|
103
|
+
BASE_EDITOR.ICON.SETTINGS_DIALOG_TITLE=TYRfcOmSwlouqIchNFT7FQ_Display Settings
|
|
104
104
|
|
|
105
|
-
BASE_EDITOR.ICON.SETTINGS_DIALOG_SHAPE_LABEL=
|
|
105
|
+
BASE_EDITOR.ICON.SETTINGS_DIALOG_SHAPE_LABEL=lvSk0ku3I0DQkrDe9koz8w_Shape
|
|
106
106
|
|
|
107
|
-
BASE_EDITOR.ICON.SELECTION_SHAPE=
|
|
107
|
+
BASE_EDITOR.ICON.SELECTION_SHAPE=sJogloKfjjGzo7rgQ5GGZA_Select the shape of the icon
|
|
108
108
|
|
|
109
|
-
BASE_EDITOR.ICON.SETTINGS_DIALOG_SHAPE_SQUARE=
|
|
109
|
+
BASE_EDITOR.ICON.SETTINGS_DIALOG_SHAPE_SQUARE=4owdBJ+xYxitFXH3MvQHtw_Square
|
|
110
110
|
|
|
111
|
-
BASE_EDITOR.ICON.SETTINGS_DIALOG_SHAPE_CIRCLE=
|
|
111
|
+
BASE_EDITOR.ICON.SETTINGS_DIALOG_SHAPE_CIRCLE=q8qSmNIMOIP0q9ag1qN7tw_Circle
|
|
112
112
|
|
|
113
|
-
BASE_EDITOR.ICON.INPUT_ALT=
|
|
113
|
+
BASE_EDITOR.ICON.INPUT_ALT=yQkG5bt9mZL5MPKoQt/Khw_Enter alternative text for the icon
|
|
114
114
|
|
|
115
|
-
BASE_EDITOR.ICON.SETTINGS_DIALOG_TEXT_LABEL=
|
|
115
|
+
BASE_EDITOR.ICON.SETTINGS_DIALOG_TEXT_LABEL=Vh8q99ytJww/sYLOMkgoVA_Text
|
|
116
116
|
|
|
117
|
-
BASE_EDITOR.ICON.INPUT_TEXT=
|
|
117
|
+
BASE_EDITOR.ICON.INPUT_TEXT=vPp8QmR6rMvKhS+Gl4Y5yw_Enter text inside the icon
|
|
118
118
|
|
|
119
|
-
BASE_EDITOR.ICON.TYPE_ICON=
|
|
119
|
+
BASE_EDITOR.ICON.TYPE_ICON=v9CMLX5EXRoSpOev05IIuQ_Icon
|
|
120
120
|
|
|
121
|
-
BASE_EDITOR.ICON.TYPE_PICTURE=
|
|
121
|
+
BASE_EDITOR.ICON.TYPE_PICTURE=Gj1pBPcfIA2rkIYPh/7lhQ_Picture
|
|
122
122
|
|
|
123
|
-
BASE_EDITOR.ICON.SETTINGS_DIALOG_BACKGROUNDCOLOR_LABEL=
|
|
123
|
+
BASE_EDITOR.ICON.SETTINGS_DIALOG_BACKGROUNDCOLOR_LABEL=BikIKGMN3JXMSQqO+b12TA_Background Color
|
|
124
124
|
|
|
125
|
-
BASE_EDITOR.ICON.INPUT_BACKGROUNDCOLOR=
|
|
125
|
+
BASE_EDITOR.ICON.INPUT_BACKGROUNDCOLOR=9wdf5Ab07DSgHrxdP5CvXQ_Enter background color of the icon
|
|
126
126
|
|
|
127
|
-
BASE_EDITOR.ICON.INPUT_COLOR=
|
|
127
|
+
BASE_EDITOR.ICON.INPUT_COLOR=8cBG65yx22exik9Dbvc6Jw_Enter color of the icon
|
|
128
128
|
|
|
129
|
-
BASE_EDITOR.ICON.SETTINGS_DIALOG_COLOR_LABEL
|
|
129
|
+
BASE_EDITOR.ICON.SETTINGS_DIALOG_COLOR_LABEL=s7ItApSVnhqRmWEthfXYlg_Color
|
|
130
130
|
|
|
131
|
-
BASE_EDITOR.DATE.INVALID_BINDING_OR_DATE=
|
|
131
|
+
BASE_EDITOR.DATE.INVALID_BINDING_OR_DATE=6dlQ39Lhtg2rN2jzscuDEw_Please enter a valid binding string or date.
|
|
132
132
|
|
|
133
|
-
BASE_EDITOR.VALIDATOR.INVALID_BINDING=
|
|
133
|
+
BASE_EDITOR.VALIDATOR.INVALID_BINDING=eVZTpvAG8UlOZ0UgLrTY6Q_Invalid binding.
|
|
134
134
|
|
|
135
|
-
BASE_EDITOR.VALIDATOR.FORBIDDEN_BINDING=
|
|
135
|
+
BASE_EDITOR.VALIDATOR.FORBIDDEN_BINDING=GvusfvRkJYGskOWRg63vUg_Bindings are not allowed.
|
|
136
136
|
|
|
137
|
-
BASE_EDITOR.VALIDATOR.FORBIDDEN_CUSTOM_VALUE=
|
|
137
|
+
BASE_EDITOR.VALIDATOR.FORBIDDEN_CUSTOM_VALUE=aEdB9P9o/98K6OYcznGoeA_Custom values are not allowed.
|
|
138
138
|
|
|
139
|
-
BASE_EDITOR.VALIDATOR.NOT_A_NUMBER=
|
|
139
|
+
BASE_EDITOR.VALIDATOR.NOT_A_NUMBER=iCZzKumeETWqnX3zUJJE7w_Not a number
|
|
140
140
|
|
|
141
|
-
BASE_EDITOR.VALIDATOR.NOT_AN_INTEGER
|
|
141
|
+
BASE_EDITOR.VALIDATOR.NOT_AN_INTEGER=+NMV9rRz4NQQIOXXyl/EmA_Not an integer
|
|
142
142
|
|
|
143
|
-
BASE_EDITOR.VALIDATOR.NOT_A_BOOLEAN=
|
|
143
|
+
BASE_EDITOR.VALIDATOR.NOT_A_BOOLEAN=1YvcrktZk7rd8JcIZxWg2w_Not a boolean
|
|
144
144
|
|
|
145
|
-
BASE_EDITOR.VALIDATOR.NOT_A_JSONOBJECT=
|
|
145
|
+
BASE_EDITOR.VALIDATOR.NOT_A_JSONOBJECT=cOJllfXZygBzfbKDYMPGNg_Not a JSON format
|
|
146
146
|
|
|
147
|
-
BASE_EDITOR.VALIDATOR.NOT_AN_ARRAY_OF_JSONOBJECTS=
|
|
147
|
+
BASE_EDITOR.VALIDATOR.NOT_AN_ARRAY_OF_JSONOBJECTS=Ete3+tfG6ewM9LHW/kvMQA_Not an array of JSON objects.
|
|
148
148
|
|
|
149
|
-
BASE_EDITOR.VALIDATOR.NOT_AN_ICON=
|
|
149
|
+
BASE_EDITOR.VALIDATOR.NOT_AN_ICON=ZsrLYj5H95p6RO53nSNy9g_Not an icon
|
|
150
150
|
|
|
151
|
-
BASE_EDITOR.VALIDATOR.MAX_LENGTH=
|
|
151
|
+
BASE_EDITOR.VALIDATOR.MAX_LENGTH=yTgV+G1xP2shLhdCRNe+bQ_Max length of {0} symbols exceeded.
|
|
152
152
|
|
|
153
|
-
BASE_EDITOR.VALIDATOR.DUPLICATE_ENTRY=
|
|
153
|
+
BASE_EDITOR.VALIDATOR.DUPLICATE_ENTRY=WVwU2kXuo521DU0AiNd+kg_Duplicate entry
|
|
154
154
|
|
|
155
|
-
BASE_EDITOR.VALIDATOR.DUPLICATE_KEY=
|
|
155
|
+
BASE_EDITOR.VALIDATOR.DUPLICATE_KEY=xZ6EZEXfYWhJXFRIP5+N+Q_Duplicate key
|
|
156
156
|
|
|
157
|
-
BASE_EDITOR.VALIDATOR.INVALID_DATE=
|
|
157
|
+
BASE_EDITOR.VALIDATOR.INVALID_DATE=a50skQZ7cEqv/kKrstZHHA_Invalid date
|
|
158
158
|
|
|
159
|
-
BASE_EDITOR.VALIDATOR.FAILED_PATTERN_TEST=
|
|
159
|
+
BASE_EDITOR.VALIDATOR.FAILED_PATTERN_TEST=LpBgUaUyHgbZLpR9iXs3pA_Input does not match the pattern.
|