@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
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-vue-inputs@*",
3
- "_id": "@syncfusion/ej2-vue-inputs@27.1.58",
3
+ "_id": "@syncfusion/ej2-vue-inputs@27.2.2",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-XGj4zdlOwAZjKGWjP0dKWGhk4GRlSE4DY4GbTjxjlZ42weAI4UD0W/JAfuZb4mxi3/3YK4+6935GZ98HTvim1w==",
5
+ "_integrity": "sha512-pl3rnt3JJLGnNq5lPXwg/rCl8HkaoSwtjDdCYFyzBvNc40xKkju2/S9Qo2MARPQ3SZovHCbDlJ0ACIq7rwVzoA==",
6
6
  "_location": "/@syncfusion/ej2-vue-inputs",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-inputs/-/ej2-vue-inputs-27.1.58.tgz",
23
- "_shasum": "7d9e2eb6f3e29d8ddbc6752a3be4d16234c0225e",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-inputs/-/ej2-vue-inputs-27.2.2.tgz",
23
+ "_shasum": "8abef3441f35628a91b180f7eed996e51ea177a6",
24
24
  "_spec": "@syncfusion/ej2-vue-inputs@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_27.1.1/packages/included",
26
26
  "author": {
@@ -32,7 +32,7 @@
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
34
  "@syncfusion/ej2-base": "~27.2.2",
35
- "@syncfusion/ej2-inputs": "27.2.2",
35
+ "@syncfusion/ej2-inputs": "27.2.4",
36
36
  "@syncfusion/ej2-vue-base": "~27.2.2"
37
37
  },
38
38
  "deprecated": false,
@@ -76,6 +76,6 @@
76
76
  "ci-publish": "gulp ci-publish",
77
77
  "compile": "gulp ci-compile && gulp vue-global-script"
78
78
  },
79
- "version": "27.2.2",
79
+ "version": "27.2.4",
80
80
  "sideEffects": false
81
81
  }
@@ -27,6 +27,7 @@ export declare type ColorPickerComponent = typeof ComponentBase & {
27
27
  trigger(eventName: string, eventProp: {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
+ destroy(): void;
30
31
  focusIn(): void;
31
32
  getValue(value?: string, type?: string): string;
32
33
  toggle(): void;
@@ -140,6 +140,9 @@ export var ColorPickerComponent = vueDefineComponent({
140
140
  custom: function () {
141
141
  this.updated();
142
142
  },
143
+ destroy: function () {
144
+ return this.ej2Instances.destroy();
145
+ },
143
146
  focusIn: function () {
144
147
  return this.ej2Instances.focusIn();
145
148
  },
@@ -27,6 +27,7 @@ export declare type MaskedTextBoxComponent = typeof ComponentBase & {
27
27
  trigger(eventName: string, eventProp: {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
+ destroy(): void;
30
31
  focusIn(): void;
31
32
  focusOut(): void;
32
33
  getMaskedValue(): string;
@@ -140,6 +140,9 @@ export var MaskedTextBoxComponent = vueDefineComponent({
140
140
  custom: function () {
141
141
  this.updated();
142
142
  },
143
+ destroy: function () {
144
+ return this.ej2Instances.destroy();
145
+ },
143
146
  focusIn: function () {
144
147
  return this.ej2Instances.focusIn();
145
148
  },
@@ -28,6 +28,7 @@ export declare type NumericTextBoxComponent = typeof ComponentBase & {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
30
  decrement(step: number): void;
31
+ destroy(): void;
31
32
  focusIn(): void;
32
33
  focusOut(): void;
33
34
  getText(): string;
@@ -143,6 +143,9 @@ export var NumericTextBoxComponent = vueDefineComponent({
143
143
  decrement: function (step) {
144
144
  return this.ej2Instances.decrement(step);
145
145
  },
146
+ destroy: function () {
147
+ return this.ej2Instances.destroy();
148
+ },
146
149
  focusIn: function () {
147
150
  return this.ej2Instances.focusIn();
148
151
  },
@@ -27,6 +27,7 @@ export declare type OtpInputComponent = typeof ComponentBase & {
27
27
  trigger(eventName: string, eventProp: {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
+ destroy(): void;
30
31
  focusIn(): void;
31
32
  focusOut(): void;
32
33
  };
@@ -140,6 +140,9 @@ export var OtpInputComponent = vueDefineComponent({
140
140
  custom: function () {
141
141
  this.updated();
142
142
  },
143
+ destroy: function () {
144
+ return this.ej2Instances.destroy();
145
+ },
143
146
  focusIn: function () {
144
147
  return this.ej2Instances.focusIn();
145
148
  },
@@ -27,6 +27,7 @@ export declare type RatingComponent = typeof ComponentBase & {
27
27
  trigger(eventName: string, eventProp: {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
+ destroy(): void;
30
31
  reset(): void;
31
32
  };
32
33
  export declare const RatingPlugin: {
@@ -140,6 +140,9 @@ export var RatingComponent = vueDefineComponent({
140
140
  custom: function () {
141
141
  this.updated();
142
142
  },
143
+ destroy: function () {
144
+ return this.ej2Instances.destroy();
145
+ },
143
146
  reset: function () {
144
147
  return this.ej2Instances.reset();
145
148
  },
@@ -30,6 +30,7 @@ export declare type SignatureComponent = typeof ComponentBase & {
30
30
  canRedo(): boolean;
31
31
  canUndo(): boolean;
32
32
  clear(): void;
33
+ destroy(): void;
33
34
  draw(text: string, fontFamily?: string, fontSize?: number, x?: number, y?: number): void;
34
35
  getBlob(url: string): Object;
35
36
  initialize(): void;
@@ -106,6 +106,9 @@ export var SignatureComponent = vueDefineComponent({
106
106
  clear: function () {
107
107
  return this.ej2Instances.clear();
108
108
  },
109
+ destroy: function () {
110
+ return this.ej2Instances.destroy();
111
+ },
109
112
  draw: function (text, fontFamily, fontSize, x, y) {
110
113
  return this.ej2Instances.draw(text, fontFamily, fontSize, x, y);
111
114
  },
@@ -27,6 +27,7 @@ export declare type SliderComponent = typeof ComponentBase & {
27
27
  trigger(eventName: string, eventProp: {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
+ destroy(): void;
30
31
  reposition(): void;
31
32
  setTooltip(args?: string): void;
32
33
  };
@@ -140,6 +140,9 @@ export var SliderComponent = vueDefineComponent({
140
140
  custom: function () {
141
141
  this.updated();
142
142
  },
143
+ destroy: function () {
144
+ return this.ej2Instances.destroy();
145
+ },
143
146
  reposition: function () {
144
147
  return this.ej2Instances.reposition();
145
148
  },
@@ -28,6 +28,7 @@ export declare type SmartTextAreaComponent = typeof ComponentBase & {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
30
  addAttributes(attributes: undefined): void;
31
+ destroy(): void;
31
32
  focusIn(): void;
32
33
  focusOut(): void;
33
34
  removeAttributes(attributes: string[]): void;
@@ -143,6 +143,9 @@ export var SmartTextAreaComponent = vueDefineComponent({
143
143
  addAttributes: function (attributes) {
144
144
  return this.ej2Instances.addAttributes(attributes);
145
145
  },
146
+ destroy: function () {
147
+ return this.ej2Instances.destroy();
148
+ },
146
149
  focusIn: function () {
147
150
  return this.ej2Instances.focusIn();
148
151
  },
@@ -28,6 +28,7 @@ export declare type TextAreaComponent = typeof ComponentBase & {
28
28
  [key: string]: Object;
29
29
  }, successHandler?: Function): void;
30
30
  addAttributes(attributes: undefined): void;
31
+ destroy(): void;
31
32
  focusIn(): void;
32
33
  focusOut(): void;
33
34
  removeAttributes(attributes: string[]): void;
@@ -143,6 +143,9 @@ export var TextAreaComponent = vueDefineComponent({
143
143
  addAttributes: function (attributes) {
144
144
  return this.ej2Instances.addAttributes(attributes);
145
145
  },
146
+ destroy: function () {
147
+ return this.ej2Instances.destroy();
148
+ },
146
149
  focusIn: function () {
147
150
  return this.ej2Instances.focusIn();
148
151
  },
@@ -29,6 +29,7 @@ export declare type TextBoxComponent = typeof ComponentBase & {
29
29
  }, successHandler?: Function): void;
30
30
  addAttributes(attributes: undefined): void;
31
31
  addIcon(position: string, icons: string | string[]): void;
32
+ destroy(): void;
32
33
  focusIn(): void;
33
34
  focusOut(): void;
34
35
  removeAttributes(attributes: string[]): void;
@@ -146,6 +146,9 @@ export var TextBoxComponent = vueDefineComponent({
146
146
  addIcon: function (position, icons) {
147
147
  return this.ej2Instances.addIcon(position, icons);
148
148
  },
149
+ destroy: function () {
150
+ return this.ej2Instances.destroy();
151
+ },
149
152
  focusIn: function () {
150
153
  return this.ej2Instances.focusIn();
151
154
  },
@@ -31,6 +31,7 @@ export declare type UploaderComponent = typeof ComponentBase & {
31
31
  cancel(fileData?: Object[]): void;
32
32
  clearAll(): void;
33
33
  createFileList(fileData: Object[]): void;
34
+ destroy(): void;
34
35
  getFilesData(index?: number): Object[];
35
36
  pause(fileData?: Object | Object[], custom?: boolean): void;
36
37
  remove(fileData?: Object | Object[], customTemplate?: boolean, removeDirectly?: boolean, postRawFile?: boolean, args?: Object | Object | Object): void;
@@ -110,6 +110,9 @@ export var UploaderComponent = vueDefineComponent({
110
110
  createFileList: function (fileData) {
111
111
  return this.ej2Instances.createFileList(fileData);
112
112
  },
113
+ destroy: function () {
114
+ return this.ej2Instances.destroy();
115
+ },
113
116
  getFilesData: function (index) {
114
117
  return this.ej2Instances.getFilesData(index);
115
118
  },