@syncfusion/ej2-vue-dropdowns 20.2.40 → 20.2.45
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 +36 -0
- package/dist/ej2-vue-dropdowns.umd.min.js +2 -29
- package/dist/ej2-vue-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es2015.js +14 -14
- package/dist/es6/ej2-vue-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es5.js +14 -14
- package/dist/es6/ej2-vue-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-vue-dropdowns.min.js +2 -2
- package/package.json +11 -8
- package/src/auto-complete/autocomplete.component.d.ts +2 -2
- package/src/auto-complete/autocomplete.component.js +3 -3
- package/src/combo-box/combobox.component.d.ts +2 -2
- package/src/combo-box/combobox.component.js +3 -3
- package/src/drop-down-list/dropdownlist.component.d.ts +2 -2
- package/src/drop-down-list/dropdownlist.component.js +3 -3
- package/src/drop-down-tree/dropdowntree.component.js +1 -1
- package/src/list-box/listbox.component.js +1 -1
- package/src/multi-select/multiselect.component.d.ts +1 -1
- package/src/multi-select/multiselect.component.js +3 -3
- package/styles/multi-select/tailwind-dark.css +2 -0
- package/styles/multi-select/tailwind.css +2 -0
- package/styles/tailwind-dark.css +2 -0
- package/styles/tailwind.css +2 -0
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-dropdowns@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-dropdowns@20.2.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-dropdowns@20.2.44",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-spE6VdlcH3UgiSB42w7mFrGAMzznWD/2m7i8xxAGHa/IJku4Q/JQ6cxkb2eEEhWjXuBr69bOS6m9ePpXgVz7ag==",
|
|
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-hotfix-new/@syncfusion/ej2-vue-dropdowns/-/ej2-vue-dropdowns-20.2.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-dropdowns/-/ej2-vue-dropdowns-20.2.44.tgz",
|
|
23
|
+
"_shasum": "b29f830b814cea16180d5fae00b56f55d64ae2ac",
|
|
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.2.
|
|
35
|
-
"@syncfusion/ej2-dropdowns": "20.2.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~20.2.
|
|
34
|
+
"@syncfusion/ej2-base": "~20.2.45",
|
|
35
|
+
"@syncfusion/ej2-dropdowns": "20.2.45",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~20.2.45"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 DropDown Components for Vue",
|
|
@@ -67,6 +67,9 @@
|
|
|
67
67
|
"type": "git",
|
|
68
68
|
"url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
|
|
69
69
|
},
|
|
70
|
-
"
|
|
70
|
+
"scripts": {
|
|
71
|
+
"postinstall": "node ../ej2-vue-base/postinstall.js"
|
|
72
|
+
},
|
|
73
|
+
"version": "20.2.45",
|
|
71
74
|
"sideEffects": false
|
|
72
75
|
}
|
|
@@ -39,9 +39,9 @@ export declare class AutoCompleteComponent extends ComponentBase {
|
|
|
39
39
|
focusOut(e?: Object | Object): void;
|
|
40
40
|
getDataByValue(value: string | number | boolean): Object | string | number | boolean;
|
|
41
41
|
getItems(): Object[];
|
|
42
|
-
hidePopup(e?: Object): void;
|
|
42
|
+
hidePopup(e?: Object | Object | Object): void;
|
|
43
43
|
hideSpinner(): void;
|
|
44
|
-
showPopup(): void;
|
|
44
|
+
showPopup(e?: Object | Object | Object): void;
|
|
45
45
|
showSpinner(): void;
|
|
46
46
|
}
|
|
47
47
|
export declare const AutoCompletePlugin: {
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -186,8 +186,8 @@ var AutoCompleteComponent = /** @class */ (function (_super) {
|
|
|
186
186
|
AutoCompleteComponent.prototype.hideSpinner = function () {
|
|
187
187
|
return this.ej2Instances.hideSpinner();
|
|
188
188
|
};
|
|
189
|
-
AutoCompleteComponent.prototype.showPopup = function () {
|
|
190
|
-
return this.ej2Instances.showPopup();
|
|
189
|
+
AutoCompleteComponent.prototype.showPopup = function (e) {
|
|
190
|
+
return this.ej2Instances.showPopup(e);
|
|
191
191
|
};
|
|
192
192
|
AutoCompleteComponent.prototype.showSpinner = function () {
|
|
193
193
|
return this.ej2Instances.showSpinner();
|
|
@@ -39,9 +39,9 @@ export declare class ComboBoxComponent extends ComponentBase {
|
|
|
39
39
|
focusOut(e?: Object | Object): void;
|
|
40
40
|
getDataByValue(value: string | number | boolean): Object | string | number | boolean;
|
|
41
41
|
getItems(): Object[];
|
|
42
|
-
hidePopup(e?: Object | Object): void;
|
|
42
|
+
hidePopup(e?: Object | Object | Object): void;
|
|
43
43
|
hideSpinner(): void;
|
|
44
|
-
showPopup(): void;
|
|
44
|
+
showPopup(e?: Object | Object | Object): void;
|
|
45
45
|
showSpinner(): void;
|
|
46
46
|
}
|
|
47
47
|
export declare const ComboBoxPlugin: {
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -186,8 +186,8 @@ var ComboBoxComponent = /** @class */ (function (_super) {
|
|
|
186
186
|
ComboBoxComponent.prototype.hideSpinner = function () {
|
|
187
187
|
return this.ej2Instances.hideSpinner();
|
|
188
188
|
};
|
|
189
|
-
ComboBoxComponent.prototype.showPopup = function () {
|
|
190
|
-
return this.ej2Instances.showPopup();
|
|
189
|
+
ComboBoxComponent.prototype.showPopup = function (e) {
|
|
190
|
+
return this.ej2Instances.showPopup(e);
|
|
191
191
|
};
|
|
192
192
|
ComboBoxComponent.prototype.showSpinner = function () {
|
|
193
193
|
return this.ej2Instances.showSpinner();
|
|
@@ -39,9 +39,9 @@ export declare class DropDownListComponent extends ComponentBase {
|
|
|
39
39
|
focusOut(e?: Object | Object): void;
|
|
40
40
|
getDataByValue(value: string | number | boolean): Object | string | number | boolean;
|
|
41
41
|
getItems(): Object[];
|
|
42
|
-
hidePopup(e?: Object | Object): void;
|
|
42
|
+
hidePopup(e?: Object | Object | Object): void;
|
|
43
43
|
hideSpinner(): void;
|
|
44
|
-
showPopup(): void;
|
|
44
|
+
showPopup(e?: Object | Object | Object): void;
|
|
45
45
|
showSpinner(): void;
|
|
46
46
|
}
|
|
47
47
|
export declare const DropDownListPlugin: {
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -186,8 +186,8 @@ var DropDownListComponent = /** @class */ (function (_super) {
|
|
|
186
186
|
DropDownListComponent.prototype.hideSpinner = function () {
|
|
187
187
|
return this.ej2Instances.hideSpinner();
|
|
188
188
|
};
|
|
189
|
-
DropDownListComponent.prototype.showPopup = function () {
|
|
190
|
-
return this.ej2Instances.showPopup();
|
|
189
|
+
DropDownListComponent.prototype.showPopup = function (e) {
|
|
190
|
+
return this.ej2Instances.showPopup(e);
|
|
191
191
|
};
|
|
192
192
|
DropDownListComponent.prototype.showSpinner = function () {
|
|
193
193
|
return this.ej2Instances.showSpinner();
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -43,7 +43,7 @@ export declare class MultiSelectComponent extends ComponentBase {
|
|
|
43
43
|
hideSpinner(): void;
|
|
44
44
|
requiredModules(): Object[];
|
|
45
45
|
selectAll(state: boolean): void;
|
|
46
|
-
showPopup(): void;
|
|
46
|
+
showPopup(e?: Object | Object | Object): void;
|
|
47
47
|
showSpinner(): void;
|
|
48
48
|
}
|
|
49
49
|
export declare const MultiSelectPlugin: {
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -192,8 +192,8 @@ var MultiSelectComponent = /** @class */ (function (_super) {
|
|
|
192
192
|
MultiSelectComponent.prototype.selectAll = function (state) {
|
|
193
193
|
return this.ej2Instances.selectAll(state);
|
|
194
194
|
};
|
|
195
|
-
MultiSelectComponent.prototype.showPopup = function () {
|
|
196
|
-
return this.ej2Instances.showPopup();
|
|
195
|
+
MultiSelectComponent.prototype.showPopup = function (e) {
|
|
196
|
+
return this.ej2Instances.showPopup(e);
|
|
197
197
|
};
|
|
198
198
|
MultiSelectComponent.prototype.showSpinner = function () {
|
|
199
199
|
return this.ej2Instances.showSpinner();
|
|
@@ -221,6 +221,7 @@
|
|
|
221
221
|
-ms-flex-direction: row;
|
|
222
222
|
flex-direction: row;
|
|
223
223
|
margin-top: -2em;
|
|
224
|
+
margin-top: -1.45em;
|
|
224
225
|
outline: 0;
|
|
225
226
|
padding: 0;
|
|
226
227
|
position: absolute;
|
|
@@ -401,6 +402,7 @@
|
|
|
401
402
|
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
402
403
|
margin-top: -1.62em;
|
|
403
404
|
height: 36px;
|
|
405
|
+
margin-top: -2em;
|
|
404
406
|
width: 40px;
|
|
405
407
|
}
|
|
406
408
|
|
|
@@ -221,6 +221,7 @@
|
|
|
221
221
|
-ms-flex-direction: row;
|
|
222
222
|
flex-direction: row;
|
|
223
223
|
margin-top: -2em;
|
|
224
|
+
margin-top: -1.45em;
|
|
224
225
|
outline: 0;
|
|
225
226
|
padding: 0;
|
|
226
227
|
position: absolute;
|
|
@@ -401,6 +402,7 @@
|
|
|
401
402
|
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
402
403
|
margin-top: -1.62em;
|
|
403
404
|
height: 36px;
|
|
405
|
+
margin-top: -2em;
|
|
404
406
|
width: 40px;
|
|
405
407
|
}
|
|
406
408
|
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -1426,6 +1426,7 @@ ejs-dropdownlist {
|
|
|
1426
1426
|
-ms-flex-direction: row;
|
|
1427
1427
|
flex-direction: row;
|
|
1428
1428
|
margin-top: -2em;
|
|
1429
|
+
margin-top: -1.45em;
|
|
1429
1430
|
outline: 0;
|
|
1430
1431
|
padding: 0;
|
|
1431
1432
|
position: absolute;
|
|
@@ -1606,6 +1607,7 @@ ejs-dropdownlist {
|
|
|
1606
1607
|
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
1607
1608
|
margin-top: -1.62em;
|
|
1608
1609
|
height: 36px;
|
|
1610
|
+
margin-top: -2em;
|
|
1609
1611
|
width: 40px;
|
|
1610
1612
|
}
|
|
1611
1613
|
|
package/styles/tailwind.css
CHANGED
|
@@ -1426,6 +1426,7 @@ ejs-dropdownlist {
|
|
|
1426
1426
|
-ms-flex-direction: row;
|
|
1427
1427
|
flex-direction: row;
|
|
1428
1428
|
margin-top: -2em;
|
|
1429
|
+
margin-top: -1.45em;
|
|
1429
1430
|
outline: 0;
|
|
1430
1431
|
padding: 0;
|
|
1431
1432
|
position: absolute;
|
|
@@ -1606,6 +1607,7 @@ ejs-dropdownlist {
|
|
|
1606
1607
|
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
1607
1608
|
margin-top: -1.62em;
|
|
1608
1609
|
height: 36px;
|
|
1610
|
+
margin-top: -2em;
|
|
1609
1611
|
width: 40px;
|
|
1610
1612
|
}
|
|
1611
1613
|
|