@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.
- package/dist/ej2-vue-inputs.umd.min.js +2 -2
- package/dist/ej2-vue-inputs.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-inputs.es2015.js +33 -0
- package/dist/es6/ej2-vue-inputs.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-inputs.es5.js +33 -0
- package/dist/es6/ej2-vue-inputs.es5.js.map +1 -1
- package/package.json +6 -6
- package/src/color-picker/colorpicker.component.d.ts +1 -0
- package/src/color-picker/colorpicker.component.js +3 -0
- package/src/maskedtextbox/maskedtextbox.component.d.ts +1 -0
- package/src/maskedtextbox/maskedtextbox.component.js +3 -0
- package/src/numerictextbox/numerictextbox.component.d.ts +1 -0
- package/src/numerictextbox/numerictextbox.component.js +3 -0
- package/src/otp-input/otpinput.component.d.ts +1 -0
- package/src/otp-input/otpinput.component.js +3 -0
- package/src/rating/rating.component.d.ts +1 -0
- package/src/rating/rating.component.js +3 -0
- package/src/signature/signature.component.d.ts +1 -0
- package/src/signature/signature.component.js +3 -0
- package/src/slider/slider.component.d.ts +1 -0
- package/src/slider/slider.component.js +3 -0
- package/src/smart-textarea/smarttextarea.component.d.ts +1 -0
- package/src/smart-textarea/smarttextarea.component.js +3 -0
- package/src/textarea/textarea.component.d.ts +1 -0
- package/src/textarea/textarea.component.js +3 -0
- package/src/textbox/textbox.component.d.ts +1 -0
- package/src/textbox/textbox.component.js +3 -0
- package/src/uploader/uploader.component.d.ts +1 -0
- package/src/uploader/uploader.component.js +3 -0
|
@@ -143,6 +143,9 @@ let TextBoxComponent = vueDefineComponent({
|
|
|
143
143
|
addIcon(position, icons) {
|
|
144
144
|
return this.ej2Instances.addIcon(position, icons);
|
|
145
145
|
},
|
|
146
|
+
destroy() {
|
|
147
|
+
return this.ej2Instances.destroy();
|
|
148
|
+
},
|
|
146
149
|
focusIn() {
|
|
147
150
|
return this.ej2Instances.focusIn();
|
|
148
151
|
},
|
|
@@ -298,6 +301,9 @@ let TextAreaComponent = vueDefineComponent({
|
|
|
298
301
|
addAttributes(attributes) {
|
|
299
302
|
return this.ej2Instances.addAttributes(attributes);
|
|
300
303
|
},
|
|
304
|
+
destroy() {
|
|
305
|
+
return this.ej2Instances.destroy();
|
|
306
|
+
},
|
|
301
307
|
focusIn() {
|
|
302
308
|
return this.ej2Instances.focusIn();
|
|
303
309
|
},
|
|
@@ -453,6 +459,9 @@ let NumericTextBoxComponent = vueDefineComponent({
|
|
|
453
459
|
decrement(step) {
|
|
454
460
|
return this.ej2Instances.decrement(step);
|
|
455
461
|
},
|
|
462
|
+
destroy() {
|
|
463
|
+
return this.ej2Instances.destroy();
|
|
464
|
+
},
|
|
456
465
|
focusIn() {
|
|
457
466
|
return this.ej2Instances.focusIn();
|
|
458
467
|
},
|
|
@@ -608,6 +617,9 @@ let MaskedTextBoxComponent = vueDefineComponent({
|
|
|
608
617
|
custom() {
|
|
609
618
|
this.updated();
|
|
610
619
|
},
|
|
620
|
+
destroy() {
|
|
621
|
+
return this.ej2Instances.destroy();
|
|
622
|
+
},
|
|
611
623
|
focusIn() {
|
|
612
624
|
return this.ej2Instances.focusIn();
|
|
613
625
|
},
|
|
@@ -760,6 +772,9 @@ let SliderComponent = vueDefineComponent({
|
|
|
760
772
|
custom() {
|
|
761
773
|
this.updated();
|
|
762
774
|
},
|
|
775
|
+
destroy() {
|
|
776
|
+
return this.ej2Instances.destroy();
|
|
777
|
+
},
|
|
763
778
|
reposition() {
|
|
764
779
|
return this.ej2Instances.reposition();
|
|
765
780
|
},
|
|
@@ -938,6 +953,9 @@ let UploaderComponent = vueDefineComponent({
|
|
|
938
953
|
createFileList(fileData) {
|
|
939
954
|
return this.ej2Instances.createFileList(fileData);
|
|
940
955
|
},
|
|
956
|
+
destroy() {
|
|
957
|
+
return this.ej2Instances.destroy();
|
|
958
|
+
},
|
|
941
959
|
getFilesData(index) {
|
|
942
960
|
return this.ej2Instances.getFilesData(index);
|
|
943
961
|
},
|
|
@@ -1107,6 +1125,9 @@ let ColorPickerComponent = vueDefineComponent({
|
|
|
1107
1125
|
custom() {
|
|
1108
1126
|
this.updated();
|
|
1109
1127
|
},
|
|
1128
|
+
destroy() {
|
|
1129
|
+
return this.ej2Instances.destroy();
|
|
1130
|
+
},
|
|
1110
1131
|
focusIn() {
|
|
1111
1132
|
return this.ej2Instances.focusIn();
|
|
1112
1133
|
},
|
|
@@ -1226,6 +1247,9 @@ let SignatureComponent = vueDefineComponent({
|
|
|
1226
1247
|
clear() {
|
|
1227
1248
|
return this.ej2Instances.clear();
|
|
1228
1249
|
},
|
|
1250
|
+
destroy() {
|
|
1251
|
+
return this.ej2Instances.destroy();
|
|
1252
|
+
},
|
|
1229
1253
|
draw(text, fontFamily, fontSize, x, y) {
|
|
1230
1254
|
return this.ej2Instances.draw(text, fontFamily, fontSize, x, y);
|
|
1231
1255
|
},
|
|
@@ -1399,6 +1423,9 @@ let RatingComponent = vueDefineComponent({
|
|
|
1399
1423
|
custom() {
|
|
1400
1424
|
this.updated();
|
|
1401
1425
|
},
|
|
1426
|
+
destroy() {
|
|
1427
|
+
return this.ej2Instances.destroy();
|
|
1428
|
+
},
|
|
1402
1429
|
reset() {
|
|
1403
1430
|
return this.ej2Instances.reset();
|
|
1404
1431
|
},
|
|
@@ -1545,6 +1572,9 @@ let OtpInputComponent = vueDefineComponent({
|
|
|
1545
1572
|
custom() {
|
|
1546
1573
|
this.updated();
|
|
1547
1574
|
},
|
|
1575
|
+
destroy() {
|
|
1576
|
+
return this.ej2Instances.destroy();
|
|
1577
|
+
},
|
|
1548
1578
|
focusIn() {
|
|
1549
1579
|
return this.ej2Instances.focusIn();
|
|
1550
1580
|
},
|
|
@@ -1697,6 +1727,9 @@ let SmartTextAreaComponent = vueDefineComponent({
|
|
|
1697
1727
|
addAttributes(attributes) {
|
|
1698
1728
|
return this.ej2Instances.addAttributes(attributes);
|
|
1699
1729
|
},
|
|
1730
|
+
destroy() {
|
|
1731
|
+
return this.ej2Instances.destroy();
|
|
1732
|
+
},
|
|
1700
1733
|
focusIn() {
|
|
1701
1734
|
return this.ej2Instances.focusIn();
|
|
1702
1735
|
},
|