@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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-vue-inputs@*",
3
- "_id": "@syncfusion/ej2-vue-inputs@24.1.45",
3
+ "_id": "@syncfusion/ej2-vue-inputs@24.2.3",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-9q9REPeEqs5wjHcWiWF8Fc1oAbecJEp9eONYdJJYdQ/kLB0c6lXhreDv3I/pUbKe9hpNppnD4iSWjJZOFjjgxA==",
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.1.45.tgz",
23
- "_shasum": "a4d45e5c5ab3bba01b6102dbf3c8326d2c46dcfb",
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.1.46",
35
- "@syncfusion/ej2-inputs": "24.1.47",
36
- "@syncfusion/ej2-vue-base": "~24.1.41"
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.1.47",
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
- ej2Instance: new ColorPicker({}),
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
- ej2Instance: new MaskedTextBox({}),
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
- ej2Instance: new NumericTextBox({}),
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
- ej2Instance: new Rating({}),
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
- ej2Instance: new Signature({}),
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
- ej2Instance: new Slider({}),
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
- ej2Instance: new TextBox({}),
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
- ej2Instance: new Uploader({}),
29
+ ej2Instances: new Uploader({}),
30
30
  propKeys: properties,
31
31
  models: modelProps,
32
32
  hasChildDirective: true,