@syncfusion/ej2-vue-dropdowns 20.1.50 → 20.1.55
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/CHANGELOG.md +10 -0
- package/dist/ej2-vue-dropdowns.umd.min.js +11 -2
- package/dist/es6/ej2-vue-dropdowns.es2015.js +6 -0
- package/dist/es6/ej2-vue-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es5.js +6 -0
- package/dist/es6/ej2-vue-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-vue-dropdowns.min.js +2 -2
- package/package.json +8 -8
- package/src/auto-complete/autocomplete.component.js +1 -0
- package/src/combo-box/combobox.component.js +1 -0
- package/src/drop-down-list/dropdownlist.component.js +1 -0
- package/src/drop-down-tree/dropdowntree.component.js +1 -0
- package/src/list-box/listbox.component.js +1 -0
- package/src/multi-select/multiselect.component.js +1 -0
|
@@ -120,6 +120,7 @@ var DropDownListComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
120
120
|
if (!isExecute) {
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
122
122
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
123
|
+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
123
124
|
}
|
|
124
125
|
else {
|
|
125
126
|
if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {
|
|
@@ -336,6 +337,7 @@ var ComboBoxComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
336
337
|
if (!isExecute$1) {
|
|
337
338
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
338
339
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
340
|
+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
339
341
|
}
|
|
340
342
|
else {
|
|
341
343
|
if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {
|
|
@@ -552,6 +554,7 @@ var AutoCompleteComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
552
554
|
if (!isExecute$2) {
|
|
553
555
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
554
556
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
557
|
+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
555
558
|
}
|
|
556
559
|
else {
|
|
557
560
|
if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {
|
|
@@ -768,6 +771,7 @@ var MultiSelectComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
768
771
|
if (!isExecute$3) {
|
|
769
772
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
770
773
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
774
|
+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
771
775
|
}
|
|
772
776
|
else {
|
|
773
777
|
if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {
|
|
@@ -990,6 +994,7 @@ var ListBoxComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
990
994
|
if (!isExecute$4) {
|
|
991
995
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
992
996
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
997
|
+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
993
998
|
}
|
|
994
999
|
else {
|
|
995
1000
|
if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {
|
|
@@ -1230,6 +1235,7 @@ var DropDownTreeComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
1230
1235
|
if (!isExecute$5) {
|
|
1231
1236
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
1232
1237
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
1238
|
+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
1233
1239
|
}
|
|
1234
1240
|
else {
|
|
1235
1241
|
if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {
|