@syncfusion/ej2-vue-inputs 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.
Files changed (29) hide show
  1. package/dist/ej2-vue-inputs.umd.min.js +2 -2
  2. package/dist/ej2-vue-inputs.umd.min.js.map +1 -1
  3. package/dist/es6/ej2-vue-inputs.es2015.js +33 -0
  4. package/dist/es6/ej2-vue-inputs.es2015.js.map +1 -1
  5. package/dist/es6/ej2-vue-inputs.es5.js +33 -0
  6. package/dist/es6/ej2-vue-inputs.es5.js.map +1 -1
  7. package/package.json +6 -6
  8. package/src/color-picker/colorpicker.component.d.ts +1 -0
  9. package/src/color-picker/colorpicker.component.js +3 -0
  10. package/src/maskedtextbox/maskedtextbox.component.d.ts +1 -0
  11. package/src/maskedtextbox/maskedtextbox.component.js +3 -0
  12. package/src/numerictextbox/numerictextbox.component.d.ts +1 -0
  13. package/src/numerictextbox/numerictextbox.component.js +3 -0
  14. package/src/otp-input/otpinput.component.d.ts +1 -0
  15. package/src/otp-input/otpinput.component.js +3 -0
  16. package/src/rating/rating.component.d.ts +1 -0
  17. package/src/rating/rating.component.js +3 -0
  18. package/src/signature/signature.component.d.ts +1 -0
  19. package/src/signature/signature.component.js +3 -0
  20. package/src/slider/slider.component.d.ts +1 -0
  21. package/src/slider/slider.component.js +3 -0
  22. package/src/smart-textarea/smarttextarea.component.d.ts +1 -0
  23. package/src/smart-textarea/smarttextarea.component.js +3 -0
  24. package/src/textarea/textarea.component.d.ts +1 -0
  25. package/src/textarea/textarea.component.js +3 -0
  26. package/src/textbox/textbox.component.d.ts +1 -0
  27. package/src/textbox/textbox.component.js +3 -0
  28. package/src/uploader/uploader.component.d.ts +1 -0
  29. package/src/uploader/uploader.component.js +3 -0
@@ -147,6 +147,9 @@ var TextBoxComponent = vueDefineComponent({
147
147
  addIcon: function (position, icons) {
148
148
  return this.ej2Instances.addIcon(position, icons);
149
149
  },
150
+ destroy: function () {
151
+ return this.ej2Instances.destroy();
152
+ },
150
153
  focusIn: function () {
151
154
  return this.ej2Instances.focusIn();
152
155
  },
@@ -306,6 +309,9 @@ var TextAreaComponent = vueDefineComponent({
306
309
  addAttributes: function (attributes) {
307
310
  return this.ej2Instances.addAttributes(attributes);
308
311
  },
312
+ destroy: function () {
313
+ return this.ej2Instances.destroy();
314
+ },
309
315
  focusIn: function () {
310
316
  return this.ej2Instances.focusIn();
311
317
  },
@@ -465,6 +471,9 @@ var NumericTextBoxComponent = vueDefineComponent({
465
471
  decrement: function (step) {
466
472
  return this.ej2Instances.decrement(step);
467
473
  },
474
+ destroy: function () {
475
+ return this.ej2Instances.destroy();
476
+ },
468
477
  focusIn: function () {
469
478
  return this.ej2Instances.focusIn();
470
479
  },
@@ -624,6 +633,9 @@ var MaskedTextBoxComponent = vueDefineComponent({
624
633
  custom: function () {
625
634
  this.updated();
626
635
  },
636
+ destroy: function () {
637
+ return this.ej2Instances.destroy();
638
+ },
627
639
  focusIn: function () {
628
640
  return this.ej2Instances.focusIn();
629
641
  },
@@ -780,6 +792,9 @@ var SliderComponent = vueDefineComponent({
780
792
  custom: function () {
781
793
  this.updated();
782
794
  },
795
+ destroy: function () {
796
+ return this.ej2Instances.destroy();
797
+ },
783
798
  reposition: function () {
784
799
  return this.ej2Instances.reposition();
785
800
  },
@@ -962,6 +977,9 @@ var UploaderComponent = vueDefineComponent({
962
977
  createFileList: function (fileData) {
963
978
  return this.ej2Instances.createFileList(fileData);
964
979
  },
980
+ destroy: function () {
981
+ return this.ej2Instances.destroy();
982
+ },
965
983
  getFilesData: function (index) {
966
984
  return this.ej2Instances.getFilesData(index);
967
985
  },
@@ -1135,6 +1153,9 @@ var ColorPickerComponent = vueDefineComponent({
1135
1153
  custom: function () {
1136
1154
  this.updated();
1137
1155
  },
1156
+ destroy: function () {
1157
+ return this.ej2Instances.destroy();
1158
+ },
1138
1159
  focusIn: function () {
1139
1160
  return this.ej2Instances.focusIn();
1140
1161
  },
@@ -1258,6 +1279,9 @@ var SignatureComponent = vueDefineComponent({
1258
1279
  clear: function () {
1259
1280
  return this.ej2Instances.clear();
1260
1281
  },
1282
+ destroy: function () {
1283
+ return this.ej2Instances.destroy();
1284
+ },
1261
1285
  draw: function (text, fontFamily, fontSize, x, y) {
1262
1286
  return this.ej2Instances.draw(text, fontFamily, fontSize, x, y);
1263
1287
  },
@@ -1435,6 +1459,9 @@ var RatingComponent = vueDefineComponent({
1435
1459
  custom: function () {
1436
1460
  this.updated();
1437
1461
  },
1462
+ destroy: function () {
1463
+ return this.ej2Instances.destroy();
1464
+ },
1438
1465
  reset: function () {
1439
1466
  return this.ej2Instances.reset();
1440
1467
  },
@@ -1585,6 +1612,9 @@ var OtpInputComponent = vueDefineComponent({
1585
1612
  custom: function () {
1586
1613
  this.updated();
1587
1614
  },
1615
+ destroy: function () {
1616
+ return this.ej2Instances.destroy();
1617
+ },
1588
1618
  focusIn: function () {
1589
1619
  return this.ej2Instances.focusIn();
1590
1620
  },
@@ -1741,6 +1771,9 @@ var SmartTextAreaComponent = vueDefineComponent({
1741
1771
  addAttributes: function (attributes) {
1742
1772
  return this.ej2Instances.addAttributes(attributes);
1743
1773
  },
1774
+ destroy: function () {
1775
+ return this.ej2Instances.destroy();
1776
+ },
1744
1777
  focusIn: function () {
1745
1778
  return this.ej2Instances.focusIn();
1746
1779
  },