@syncfusion/ej2-vue-inputs 24.1.47 → 24.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/CHANGELOG.md +14 -0
- package/README.md +23 -0
- 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 +8 -8
- package/dist/es6/ej2-vue-inputs.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-inputs.es5.js +8 -8
- package/dist/es6/ej2-vue-inputs.es5.js.map +1 -1
- package/dist/global/ej2-vue-inputs.min.js +2 -2
- package/package.json +8 -8
- package/src/color-picker/colorpicker.component.js +1 -1
- package/src/maskedtextbox/maskedtextbox.component.js +1 -1
- package/src/numerictextbox/numerictextbox.component.js +1 -1
- package/src/rating/rating.component.js +1 -1
- package/src/signature/signature.component.js +1 -1
- package/src/slider/slider.component.js +1 -1
- package/src/textbox/textbox.component.js +1 -1
- package/src/uploader/uploader.component.js +1 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-inputs@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-inputs@24.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-inputs@24.2.3",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-PPdq3T037WplExgwUCsh7NHWWphx2hvM/ZnaGsRPIXGAmSYCxECRBO4oLAgrDxJ20iZU62ArfcPeqcQ95JIkBw==",
|
|
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.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-inputs/-/ej2-vue-inputs-24.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-inputs/-/ej2-vue-inputs-24.2.3.tgz",
|
|
23
|
+
"_shasum": "1fdc2bbb1a11947d6f0aad203ea2d84c58fced59",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-inputs@*",
|
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~24.
|
|
35
|
-
"@syncfusion/ej2-inputs": "24.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~24.
|
|
34
|
+
"@syncfusion/ej2-base": "~24.2.3",
|
|
35
|
+
"@syncfusion/ej2-inputs": "24.2.4",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~24.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",
|
|
@@ -74,6 +74,6 @@
|
|
|
74
74
|
"ci-publish": "gulp ci-publish",
|
|
75
75
|
"compile": "gulp ci-compile && gulp vue-global-script"
|
|
76
76
|
},
|
|
77
|
-
"version": "24.
|
|
77
|
+
"version": "24.2.4",
|
|
78
78
|
"sideEffects": false
|
|
79
79
|
}
|
|
@@ -27,7 +27,7 @@ export var ColorPickerComponent = vueDefineComponent({
|
|
|
27
27
|
provide: function () { return { custom: this.custom }; },
|
|
28
28
|
data: function () {
|
|
29
29
|
return {
|
|
30
|
-
|
|
30
|
+
ej2Instances: new ColorPicker({}),
|
|
31
31
|
propKeys: properties,
|
|
32
32
|
models: modelProps,
|
|
33
33
|
hasChildDirective: false,
|
|
@@ -27,7 +27,7 @@ export var MaskedTextBoxComponent = vueDefineComponent({
|
|
|
27
27
|
provide: function () { return { custom: this.custom }; },
|
|
28
28
|
data: function () {
|
|
29
29
|
return {
|
|
30
|
-
|
|
30
|
+
ej2Instances: new MaskedTextBox({}),
|
|
31
31
|
propKeys: properties,
|
|
32
32
|
models: modelProps,
|
|
33
33
|
hasChildDirective: false,
|
|
@@ -27,7 +27,7 @@ export var NumericTextBoxComponent = vueDefineComponent({
|
|
|
27
27
|
provide: function () { return { custom: this.custom }; },
|
|
28
28
|
data: function () {
|
|
29
29
|
return {
|
|
30
|
-
|
|
30
|
+
ej2Instances: new NumericTextBox({}),
|
|
31
31
|
propKeys: properties,
|
|
32
32
|
models: modelProps,
|
|
33
33
|
hasChildDirective: false,
|
|
@@ -27,7 +27,7 @@ export var RatingComponent = vueDefineComponent({
|
|
|
27
27
|
provide: function () { return { custom: this.custom }; },
|
|
28
28
|
data: function () {
|
|
29
29
|
return {
|
|
30
|
-
|
|
30
|
+
ej2Instances: new Rating({}),
|
|
31
31
|
propKeys: properties,
|
|
32
32
|
models: modelProps,
|
|
33
33
|
hasChildDirective: false,
|
|
@@ -25,7 +25,7 @@ export var SignatureComponent = vueDefineComponent({
|
|
|
25
25
|
provide: function () { return { custom: this.custom }; },
|
|
26
26
|
data: function () {
|
|
27
27
|
return {
|
|
28
|
-
|
|
28
|
+
ej2Instances: new Signature({}),
|
|
29
29
|
propKeys: properties,
|
|
30
30
|
models: modelProps,
|
|
31
31
|
hasChildDirective: false,
|
|
@@ -27,7 +27,7 @@ export var SliderComponent = vueDefineComponent({
|
|
|
27
27
|
provide: function () { return { custom: this.custom }; },
|
|
28
28
|
data: function () {
|
|
29
29
|
return {
|
|
30
|
-
|
|
30
|
+
ej2Instances: new Slider({}),
|
|
31
31
|
propKeys: properties,
|
|
32
32
|
models: modelProps,
|
|
33
33
|
hasChildDirective: false,
|
|
@@ -27,7 +27,7 @@ export var TextBoxComponent = vueDefineComponent({
|
|
|
27
27
|
provide: function () { return { custom: this.custom }; },
|
|
28
28
|
data: function () {
|
|
29
29
|
return {
|
|
30
|
-
|
|
30
|
+
ej2Instances: new TextBox({}),
|
|
31
31
|
propKeys: properties,
|
|
32
32
|
models: modelProps,
|
|
33
33
|
hasChildDirective: false,
|
|
@@ -26,7 +26,7 @@ export var UploaderComponent = vueDefineComponent({
|
|
|
26
26
|
provide: function () { return { custom: this.custom }; },
|
|
27
27
|
data: function () {
|
|
28
28
|
return {
|
|
29
|
-
|
|
29
|
+
ej2Instances: new Uploader({}),
|
|
30
30
|
propKeys: properties,
|
|
31
31
|
models: modelProps,
|
|
32
32
|
hasChildDirective: true,
|