@syncfusion/ej2-vue-dropdowns 27.2.2 → 27.2.4

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.
@@ -147,6 +147,9 @@ var DropDownListComponent = vueDefineComponent({
147
147
  clear: function () {
148
148
  return this.ej2Instances.clear();
149
149
  },
150
+ destroy: function () {
151
+ return this.ej2Instances.destroy();
152
+ },
150
153
  disableItem: function (item) {
151
154
  return this.ej2Instances.disableItem(item);
152
155
  },
@@ -333,6 +336,9 @@ var ComboBoxComponent = vueDefineComponent({
333
336
  clear: function () {
334
337
  return this.ej2Instances.clear();
335
338
  },
339
+ destroy: function () {
340
+ return this.ej2Instances.destroy();
341
+ },
336
342
  disableItem: function (item) {
337
343
  return this.ej2Instances.disableItem(item);
338
344
  },
@@ -519,6 +525,9 @@ var AutoCompleteComponent = vueDefineComponent({
519
525
  clear: function () {
520
526
  return this.ej2Instances.clear();
521
527
  },
528
+ destroy: function () {
529
+ return this.ej2Instances.destroy();
530
+ },
522
531
  disableItem: function (item) {
523
532
  return this.ej2Instances.disableItem(item);
524
533
  },
@@ -705,6 +714,9 @@ var MultiSelectComponent = vueDefineComponent({
705
714
  clear: function () {
706
715
  return this.ej2Instances.clear();
707
716
  },
717
+ destroy: function () {
718
+ return this.ej2Instances.destroy();
719
+ },
708
720
  disableItem: function (item) {
709
721
  return this.ej2Instances.disableItem(item);
710
722
  },
@@ -891,6 +903,9 @@ var ListBoxComponent = vueDefineComponent({
891
903
  addItems: function (items, itemIndex) {
892
904
  return this.ej2Instances.addItems(items, itemIndex);
893
905
  },
906
+ destroy: function () {
907
+ return this.ej2Instances.destroy();
908
+ },
894
909
  enableItems: function (items, enable, isValue) {
895
910
  return this.ej2Instances.enableItems(items, enable, isValue);
896
911
  },
@@ -1101,6 +1116,9 @@ var DropDownTreeComponent = vueDefineComponent({
1101
1116
  clear: function () {
1102
1117
  return this.ej2Instances.clear();
1103
1118
  },
1119
+ destroy: function () {
1120
+ return this.ej2Instances.destroy();
1121
+ },
1104
1122
  ensureVisible: function (item) {
1105
1123
  return this.ej2Instances.ensureVisible(item);
1106
1124
  },
@@ -1227,6 +1245,9 @@ var MentionComponent = vueDefineComponent({
1227
1245
  addItem: function (items, itemIndex) {
1228
1246
  return this.ej2Instances.addItem(items, itemIndex);
1229
1247
  },
1248
+ destroy: function () {
1249
+ return this.ej2Instances.destroy();
1250
+ },
1230
1251
  disableItem: function (item) {
1231
1252
  return this.ej2Instances.disableItem(item);
1232
1253
  },