@syncfusion/ej2-vue-inputs 28.1.37 → 28.2.3
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/README.md +16 -8
- 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 +3 -0
- package/dist/es6/ej2-vue-inputs.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-inputs.es5.js +3 -0
- package/dist/es6/ej2-vue-inputs.es5.js.map +1 -1
- package/package.json +8 -8
- package/src/signature/signature.component.d.ts +1 -0
- package/src/signature/signature.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@28.1.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-inputs@28.1.41",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-rD+5ap/M8lAOMgmtxGAi6/+bE1tHPBLZQpbwJIeFR1A2LC3XnPYwLs9tIQZFS69Jy7mzCRyZ3CcJ4Ujv5ld/Qw==",
|
|
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-28.1.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-inputs/-/ej2-vue-inputs-28.1.41.tgz",
|
|
23
|
+
"_shasum": "d4904584a4da3c635071df1221e934e65907ab06",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-inputs@*",
|
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_28.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~28.
|
|
35
|
-
"@syncfusion/ej2-inputs": "28.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~28.
|
|
34
|
+
"@syncfusion/ej2-base": "~28.2.3",
|
|
35
|
+
"@syncfusion/ej2-inputs": "28.2.3",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~28.2.3"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "A package of Essential JS 2 input components such as Textbox, Color-picker, Masked-textbox, Numeric-textbox, Slider, Upload, and Form-validator that is used to get input from the users. for Vue",
|
|
@@ -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": "28.
|
|
79
|
+
"version": "28.2.3",
|
|
80
80
|
"sideEffects": false
|
|
81
81
|
}
|
|
@@ -33,6 +33,7 @@ export declare type SignatureComponent = typeof ComponentBase & {
|
|
|
33
33
|
destroy(): void;
|
|
34
34
|
draw(text: string, fontFamily?: string, fontSize?: number, x?: number, y?: number): void;
|
|
35
35
|
getBlob(url: string): Object;
|
|
36
|
+
getSignature(type?: Object): string;
|
|
36
37
|
initialize(): void;
|
|
37
38
|
isEmpty(): boolean;
|
|
38
39
|
load(signature: string, width?: number, height?: number): void;
|
|
@@ -115,6 +115,9 @@ export var SignatureComponent = vueDefineComponent({
|
|
|
115
115
|
getBlob: function (url) {
|
|
116
116
|
return this.ej2Instances.getBlob(url);
|
|
117
117
|
},
|
|
118
|
+
getSignature: function (type) {
|
|
119
|
+
return this.ej2Instances.getSignature(type);
|
|
120
|
+
},
|
|
118
121
|
initialize: function () {
|
|
119
122
|
return this.ej2Instances.initialize();
|
|
120
123
|
},
|