@syncfusion/ej2-vue-dropdowns 20.2.40 → 20.2.45
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 +36 -0
- package/dist/ej2-vue-dropdowns.umd.min.js +2 -29
- package/dist/ej2-vue-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es2015.js +14 -14
- package/dist/es6/ej2-vue-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es5.js +14 -14
- package/dist/es6/ej2-vue-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-vue-dropdowns.min.js +2 -2
- package/package.json +11 -8
- package/src/auto-complete/autocomplete.component.d.ts +2 -2
- package/src/auto-complete/autocomplete.component.js +3 -3
- package/src/combo-box/combobox.component.d.ts +2 -2
- package/src/combo-box/combobox.component.js +3 -3
- package/src/drop-down-list/dropdownlist.component.d.ts +2 -2
- package/src/drop-down-list/dropdownlist.component.js +3 -3
- package/src/drop-down-tree/dropdowntree.component.js +1 -1
- package/src/list-box/listbox.component.js +1 -1
- package/src/multi-select/multiselect.component.d.ts +1 -1
- package/src/multi-select/multiselect.component.js +3 -3
- package/styles/multi-select/tailwind-dark.css +2 -0
- package/styles/multi-select/tailwind.css +2 -0
- package/styles/tailwind-dark.css +2 -0
- package/styles/tailwind.css +2 -0
|
@@ -28,7 +28,7 @@ var testProp = getProps({ props: properties });
|
|
|
28
28
|
var props = testProp[0];
|
|
29
29
|
var watch = testProp[1];
|
|
30
30
|
var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -186,8 +186,8 @@ var DropDownListComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
186
186
|
DropDownListComponent.prototype.hideSpinner = function () {
|
|
187
187
|
return this.ej2Instances.hideSpinner();
|
|
188
188
|
};
|
|
189
|
-
DropDownListComponent.prototype.showPopup = function () {
|
|
190
|
-
return this.ej2Instances.showPopup();
|
|
189
|
+
DropDownListComponent.prototype.showPopup = function (e) {
|
|
190
|
+
return this.ej2Instances.showPopup(e);
|
|
191
191
|
};
|
|
192
192
|
DropDownListComponent.prototype.showSpinner = function () {
|
|
193
193
|
return this.ej2Instances.showSpinner();
|
|
@@ -245,7 +245,7 @@ var testProp$1 = getProps({ props: properties$1 });
|
|
|
245
245
|
var props$1 = testProp$1[0];
|
|
246
246
|
var watch$1 = testProp$1[1];
|
|
247
247
|
var emitProbs$1 = Object.keys(watch$1);
|
|
248
|
-
emitProbs$1.push('modelchanged');
|
|
248
|
+
emitProbs$1.push('modelchanged', 'update:modelValue');
|
|
249
249
|
for (var _i$1 = 0, modelProps_1$1 = modelProps$1; _i$1 < modelProps_1$1.length; _i$1++) {
|
|
250
250
|
var props_1$1 = modelProps_1$1[_i$1];
|
|
251
251
|
emitProbs$1.push('update:' + props_1$1);
|
|
@@ -403,8 +403,8 @@ var ComboBoxComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
403
403
|
ComboBoxComponent.prototype.hideSpinner = function () {
|
|
404
404
|
return this.ej2Instances.hideSpinner();
|
|
405
405
|
};
|
|
406
|
-
ComboBoxComponent.prototype.showPopup = function () {
|
|
407
|
-
return this.ej2Instances.showPopup();
|
|
406
|
+
ComboBoxComponent.prototype.showPopup = function (e) {
|
|
407
|
+
return this.ej2Instances.showPopup(e);
|
|
408
408
|
};
|
|
409
409
|
ComboBoxComponent.prototype.showSpinner = function () {
|
|
410
410
|
return this.ej2Instances.showSpinner();
|
|
@@ -462,7 +462,7 @@ var testProp$2 = getProps({ props: properties$2 });
|
|
|
462
462
|
var props$2 = testProp$2[0];
|
|
463
463
|
var watch$2 = testProp$2[1];
|
|
464
464
|
var emitProbs$2 = Object.keys(watch$2);
|
|
465
|
-
emitProbs$2.push('modelchanged');
|
|
465
|
+
emitProbs$2.push('modelchanged', 'update:modelValue');
|
|
466
466
|
for (var _i$2 = 0, modelProps_1$2 = modelProps$2; _i$2 < modelProps_1$2.length; _i$2++) {
|
|
467
467
|
var props_1$2 = modelProps_1$2[_i$2];
|
|
468
468
|
emitProbs$2.push('update:' + props_1$2);
|
|
@@ -620,8 +620,8 @@ var AutoCompleteComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
620
620
|
AutoCompleteComponent.prototype.hideSpinner = function () {
|
|
621
621
|
return this.ej2Instances.hideSpinner();
|
|
622
622
|
};
|
|
623
|
-
AutoCompleteComponent.prototype.showPopup = function () {
|
|
624
|
-
return this.ej2Instances.showPopup();
|
|
623
|
+
AutoCompleteComponent.prototype.showPopup = function (e) {
|
|
624
|
+
return this.ej2Instances.showPopup(e);
|
|
625
625
|
};
|
|
626
626
|
AutoCompleteComponent.prototype.showSpinner = function () {
|
|
627
627
|
return this.ej2Instances.showSpinner();
|
|
@@ -679,7 +679,7 @@ var testProp$3 = getProps({ props: properties$3 });
|
|
|
679
679
|
var props$3 = testProp$3[0];
|
|
680
680
|
var watch$3 = testProp$3[1];
|
|
681
681
|
var emitProbs$3 = Object.keys(watch$3);
|
|
682
|
-
emitProbs$3.push('modelchanged');
|
|
682
|
+
emitProbs$3.push('modelchanged', 'update:modelValue');
|
|
683
683
|
for (var _i$3 = 0, modelProps_1$3 = modelProps$3; _i$3 < modelProps_1$3.length; _i$3++) {
|
|
684
684
|
var props_1$3 = modelProps_1$3[_i$3];
|
|
685
685
|
emitProbs$3.push('update:' + props_1$3);
|
|
@@ -843,8 +843,8 @@ var MultiSelectComponent = /** @__PURE__ @class */ (function (_super) {
|
|
|
843
843
|
MultiSelectComponent.prototype.selectAll = function (state) {
|
|
844
844
|
return this.ej2Instances.selectAll(state);
|
|
845
845
|
};
|
|
846
|
-
MultiSelectComponent.prototype.showPopup = function () {
|
|
847
|
-
return this.ej2Instances.showPopup();
|
|
846
|
+
MultiSelectComponent.prototype.showPopup = function (e) {
|
|
847
|
+
return this.ej2Instances.showPopup(e);
|
|
848
848
|
};
|
|
849
849
|
MultiSelectComponent.prototype.showSpinner = function () {
|
|
850
850
|
return this.ej2Instances.showSpinner();
|
|
@@ -902,7 +902,7 @@ var testProp$4 = getProps({ props: properties$4 });
|
|
|
902
902
|
var props$4 = testProp$4[0];
|
|
903
903
|
var watch$4 = testProp$4[1];
|
|
904
904
|
var emitProbs$4 = Object.keys(watch$4);
|
|
905
|
-
emitProbs$4.push('modelchanged');
|
|
905
|
+
emitProbs$4.push('modelchanged', 'update:modelValue');
|
|
906
906
|
for (var _i$4 = 0, modelProps_1$4 = modelProps$4; _i$4 < modelProps_1$4.length; _i$4++) {
|
|
907
907
|
var props_1$4 = modelProps_1$4[_i$4];
|
|
908
908
|
emitProbs$4.push('update:' + props_1$4);
|
|
@@ -1143,7 +1143,7 @@ var testProp$5 = getProps({ props: properties$5 });
|
|
|
1143
1143
|
var props$5 = testProp$5[0];
|
|
1144
1144
|
var watch$5 = testProp$5[1];
|
|
1145
1145
|
var emitProbs$5 = Object.keys(watch$5);
|
|
1146
|
-
emitProbs$5.push('modelchanged');
|
|
1146
|
+
emitProbs$5.push('modelchanged', 'update:modelValue');
|
|
1147
1147
|
for (var _i$5 = 0, modelProps_1$5 = modelProps$5; _i$5 < modelProps_1$5.length; _i$5++) {
|
|
1148
1148
|
var props_1$5 = modelProps_1$5[_i$5];
|
|
1149
1149
|
emitProbs$5.push('update:' + props_1$5);
|