@syncfusion/ej2-vue-dropdowns 20.1.47 → 20.1.52
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 +16 -0
- package/dist/ej2-vue-dropdowns.umd.min.js +9 -0
- package/dist/es6/ej2-vue-dropdowns.es2015.js +6 -0
- package/dist/es6/ej2-vue-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es5.js +6 -0
- package/dist/es6/ej2-vue-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-vue-dropdowns.min.js +2 -2
- package/package.json +8 -8
- package/src/auto-complete/autocomplete.component.js +1 -0
- package/src/combo-box/combobox.component.js +1 -0
- package/src/drop-down-list/dropdownlist.component.js +1 -0
- package/src/drop-down-tree/dropdowntree.component.js +1 -0
- package/src/list-box/listbox.component.js +1 -0
- package/src/multi-select/multiselect.component.js +1 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-dropdowns@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-dropdowns@
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-dropdowns@20.1.51",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-TIeoGWgNePdDotgV1V+0EJZP4m3jnWJkQwKqjEyjkw2ve2TAHXIFaMjzCFPryFr1oDTbifxKQfzD1fxLWtnvCg==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-dropdowns",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-dropdowns/-/ej2-vue-dropdowns-20.1.51.tgz",
|
|
23
|
+
"_shasum": "d1ace48186dc2fb725390b45ea8b8823180038f0",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-dropdowns@*",
|
|
25
25
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~20.1.
|
|
35
|
-
"@syncfusion/ej2-dropdowns": "20.1.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~20.1.
|
|
34
|
+
"@syncfusion/ej2-base": "~20.1.50",
|
|
35
|
+
"@syncfusion/ej2-dropdowns": "20.1.52",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~20.1.51"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 DropDown Components for Vue",
|
|
@@ -67,6 +67,6 @@
|
|
|
67
67
|
"type": "git",
|
|
68
68
|
"url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
|
|
69
69
|
},
|
|
70
|
-
"version": "20.1.
|
|
70
|
+
"version": "20.1.52",
|
|
71
71
|
"sideEffects": false
|
|
72
72
|
}
|
|
@@ -120,6 +120,7 @@ var AutoCompleteComponent = /** @class */ (function (_super) {
|
|
|
120
120
|
if (!isExecute) {
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
122
122
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
123
|
+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
123
124
|
}
|
|
124
125
|
else {
|
|
125
126
|
if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {
|
|
@@ -120,6 +120,7 @@ var ComboBoxComponent = /** @class */ (function (_super) {
|
|
|
120
120
|
if (!isExecute) {
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
122
122
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
123
|
+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
123
124
|
}
|
|
124
125
|
else {
|
|
125
126
|
if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {
|
|
@@ -120,6 +120,7 @@ var DropDownListComponent = /** @class */ (function (_super) {
|
|
|
120
120
|
if (!isExecute) {
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
122
122
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
123
|
+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
123
124
|
}
|
|
124
125
|
else {
|
|
125
126
|
if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {
|
|
@@ -120,6 +120,7 @@ var DropDownTreeComponent = /** @class */ (function (_super) {
|
|
|
120
120
|
if (!isExecute) {
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
122
122
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
123
|
+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
123
124
|
}
|
|
124
125
|
else {
|
|
125
126
|
if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {
|
|
@@ -120,6 +120,7 @@ var ListBoxComponent = /** @class */ (function (_super) {
|
|
|
120
120
|
if (!isExecute) {
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
122
122
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
123
|
+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
123
124
|
}
|
|
124
125
|
else {
|
|
125
126
|
if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {
|
|
@@ -120,6 +120,7 @@ var MultiSelectComponent = /** @class */ (function (_super) {
|
|
|
120
120
|
if (!isExecute) {
|
|
121
121
|
this.ej2Instances.vueInstance.$emit('update:' + propKey, eventProp[propKey]);
|
|
122
122
|
this.ej2Instances.vueInstance.$emit('modelchanged', eventProp[propKey]);
|
|
123
|
+
this.ej2Instances.vueInstance.$emit('update:modelValue', eventProp[propKey]);
|
|
123
124
|
}
|
|
124
125
|
else {
|
|
125
126
|
if (eventName === 'change' || (this.$props && !this.$props.isLazyUpdate)) {
|