@syncfusion/ej2-vue-dropdowns 20.3.49 → 20.3.56
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 +2 -2
- package/dist/ej2-vue-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es2015.js +3 -0
- package/dist/es6/ej2-vue-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-dropdowns.es5.js +3 -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 +9 -9
- package/src/mention/mention.component.d.ts +1 -0
- package/src/mention/mention.component.js +3 -0
- package/styles/bootstrap5-dark.css +4 -1
- package/styles/bootstrap5.css +4 -1
- package/styles/drop-down-base/fabric.css +1 -1
- package/styles/drop-down-tree/bootstrap5-dark.css +4 -1
- package/styles/drop-down-tree/bootstrap5.css +4 -1
- package/styles/fabric.css +1 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-dropdowns@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-dropdowns@20.3.
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-dropdowns@20.3.50",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-ofBxSHpKbIar3CL/jybIhU6l+xXO0uP0ZM3XzC2BxFt+1qmFMEesI3GdrKw+SttxcUuNEzQJxF02jurYxVXFrg==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-dropdowns",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-dropdowns/-/ej2-vue-dropdowns-20.3.50.tgz",
|
|
23
|
+
"_shasum": "8dc65785ad2cf745b8d8008b274f0415cd3c463f",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-dropdowns@*",
|
|
25
|
-
"_where": "/jenkins/workspace/automation_release_19.1.0.1
|
|
25
|
+
"_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
|
|
26
26
|
"author": {
|
|
27
27
|
"name": "Syncfusion Inc."
|
|
28
28
|
},
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~20.3.
|
|
35
|
-
"@syncfusion/ej2-dropdowns": "20.3.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~20.3.
|
|
34
|
+
"@syncfusion/ej2-base": "~20.3.56",
|
|
35
|
+
"@syncfusion/ej2-dropdowns": "20.3.56",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~20.3.56"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 DropDown Components for Vue",
|
|
@@ -70,6 +70,6 @@
|
|
|
70
70
|
"scripts": {
|
|
71
71
|
"postinstall": "node ../ej2-vue-base/postinstall.js"
|
|
72
72
|
},
|
|
73
|
-
"version": "20.3.
|
|
73
|
+
"version": "20.3.56",
|
|
74
74
|
"sideEffects": false
|
|
75
75
|
}
|
|
@@ -33,6 +33,7 @@ export declare class MentionComponent extends ComponentBase {
|
|
|
33
33
|
getItems(): Object[];
|
|
34
34
|
hidePopup(e?: Object | Object): void;
|
|
35
35
|
hideSpinner(): void;
|
|
36
|
+
renderTemplates(callBack?: any): void;
|
|
36
37
|
search(text: string, positionX: number, positionY: number): void;
|
|
37
38
|
showPopup(): void;
|
|
38
39
|
}
|
|
@@ -131,6 +131,9 @@ var MentionComponent = /** @class */ (function (_super) {
|
|
|
131
131
|
MentionComponent.prototype.hideSpinner = function () {
|
|
132
132
|
return this.ej2Instances.hideSpinner();
|
|
133
133
|
};
|
|
134
|
+
MentionComponent.prototype.renderTemplates = function (callBack) {
|
|
135
|
+
return this.ej2Instances.renderTemplates(callBack);
|
|
136
|
+
};
|
|
134
137
|
MentionComponent.prototype.search = function (text, positionX, positionY) {
|
|
135
138
|
return this.ej2Instances.search(text, positionX, positionY);
|
|
136
139
|
};
|
|
@@ -988,7 +988,10 @@ ejs-dropdownlist {
|
|
|
988
988
|
box-shadow: none;
|
|
989
989
|
position: absolute;
|
|
990
990
|
}
|
|
991
|
-
.e-ddt.e-popup .e-checkbox-wrapper .e-frame {
|
|
991
|
+
.e-ddt.e-popup .e-active .e-checkbox-wrapper .e-frame:not(.e-check) {
|
|
992
|
+
background-color: #212529;
|
|
993
|
+
}
|
|
994
|
+
.e-ddt.e-popup .e-checkbox-wrapper .e-frame:not(.e-check) {
|
|
992
995
|
background-color: transparent;
|
|
993
996
|
}
|
|
994
997
|
.e-ddt.e-popup .e-selectall-parent {
|
package/styles/bootstrap5.css
CHANGED
|
@@ -988,7 +988,10 @@ ejs-dropdownlist {
|
|
|
988
988
|
box-shadow: none;
|
|
989
989
|
position: absolute;
|
|
990
990
|
}
|
|
991
|
-
.e-ddt.e-popup .e-checkbox-wrapper .e-frame {
|
|
991
|
+
.e-ddt.e-popup .e-active .e-checkbox-wrapper .e-frame:not(.e-check) {
|
|
992
|
+
background-color: #fff;
|
|
993
|
+
}
|
|
994
|
+
.e-ddt.e-popup .e-checkbox-wrapper .e-frame:not(.e-check) {
|
|
992
995
|
background-color: transparent;
|
|
993
996
|
}
|
|
994
997
|
.e-ddt.e-popup .e-selectall-parent {
|
|
@@ -207,7 +207,10 @@
|
|
|
207
207
|
box-shadow: none;
|
|
208
208
|
position: absolute;
|
|
209
209
|
}
|
|
210
|
-
.e-ddt.e-popup .e-checkbox-wrapper .e-frame {
|
|
210
|
+
.e-ddt.e-popup .e-active .e-checkbox-wrapper .e-frame:not(.e-check) {
|
|
211
|
+
background-color: #212529;
|
|
212
|
+
}
|
|
213
|
+
.e-ddt.e-popup .e-checkbox-wrapper .e-frame:not(.e-check) {
|
|
211
214
|
background-color: transparent;
|
|
212
215
|
}
|
|
213
216
|
.e-ddt.e-popup .e-selectall-parent {
|
|
@@ -207,7 +207,10 @@
|
|
|
207
207
|
box-shadow: none;
|
|
208
208
|
position: absolute;
|
|
209
209
|
}
|
|
210
|
-
.e-ddt.e-popup .e-checkbox-wrapper .e-frame {
|
|
210
|
+
.e-ddt.e-popup .e-active .e-checkbox-wrapper .e-frame:not(.e-check) {
|
|
211
|
+
background-color: #fff;
|
|
212
|
+
}
|
|
213
|
+
.e-ddt.e-popup .e-checkbox-wrapper .e-frame:not(.e-check) {
|
|
211
214
|
background-color: transparent;
|
|
212
215
|
}
|
|
213
216
|
.e-ddt.e-popup .e-selectall-parent {
|