@syncfusion/ej2-angular-dropdowns 23.1.40-ngcc → 23.1.41-ngcc
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 +23 -1
- package/dist/ej2-angular-dropdowns.umd.js +1 -1
- package/dist/ej2-angular-dropdowns.umd.min.js +1 -1
- package/package.json +7 -7
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/styles/auto-complete/bootstrap4.css +13 -2
- package/styles/bootstrap-dark.css +1 -1
- package/styles/bootstrap.css +1 -1
- package/styles/bootstrap4.css +33 -3
- package/styles/bootstrap5-dark.css +1 -1
- package/styles/bootstrap5.css +1 -1
- package/styles/combo-box/bootstrap4.css +13 -2
- package/styles/drop-down-list/bootstrap4.css +13 -2
- package/styles/fabric-dark.css +1 -1
- package/styles/fabric.css +1 -1
- package/styles/fluent-dark.css +1 -1
- package/styles/fluent.css +1 -1
- package/styles/highcontrast-light.css +1 -1
- package/styles/highcontrast.css +1 -1
- package/styles/list-box/bootstrap-dark.css +1 -1
- package/styles/list-box/bootstrap.css +1 -1
- package/styles/list-box/bootstrap4.css +1 -1
- package/styles/list-box/bootstrap5-dark.css +1 -1
- package/styles/list-box/bootstrap5.css +1 -1
- package/styles/list-box/fabric-dark.css +1 -1
- package/styles/list-box/fabric.css +1 -1
- package/styles/list-box/fluent-dark.css +1 -1
- package/styles/list-box/fluent.css +1 -1
- package/styles/list-box/highcontrast-light.css +1 -1
- package/styles/list-box/highcontrast.css +1 -1
- package/styles/list-box/material-dark.css +1 -1
- package/styles/list-box/material.css +1 -1
- package/styles/list-box/material3-dark.css +1 -1
- package/styles/list-box/material3.css +1 -1
- package/styles/list-box/tailwind-dark.css +1 -1
- package/styles/list-box/tailwind.css +1 -1
- package/styles/material-dark.css +1 -1
- package/styles/material.css +1 -1
- package/styles/material3-dark.css +1 -1
- package/styles/material3.css +1 -1
- package/styles/multi-select/bootstrap4.css +19 -0
- package/styles/tailwind-dark.css +1 -1
- package/styles/tailwind.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### MultiSelect
|
|
6
6
|
|
|
7
7
|
#### Bug fixes
|
|
8
8
|
|
|
9
|
+
- `#I503091` - Resolved a null exception that was thrown when dynamically changing the `groupBy` fields to undefined.
|
|
10
|
+
|
|
11
|
+
### DropdownList
|
|
12
|
+
|
|
13
|
+
#### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- `#I498409` - Fixed an issue where the preselected `value` was getting cleared when updating the data source.
|
|
16
|
+
- `#I500431` - Fixed issue where the preselected `value` through `index` property was not updated when updating the data source.
|
|
17
|
+
|
|
18
|
+
### DropDownTree
|
|
19
|
+
|
|
20
|
+
#### Bug Fixes
|
|
21
|
+
|
|
9
22
|
- `#I498924` - Issue with the locale property in the Dropdown Tree component has been resolved.
|
|
23
|
+
- `#F184672` - Issue with the `checkAll` and `uncheckAll` status not updated properly has been resolved.
|
|
10
24
|
|
|
11
25
|
## 23.1.38 (2023-09-26)
|
|
12
26
|
|
|
@@ -2144,6 +2158,14 @@ DropDownList component contains a list of predefined values from which a single
|
|
|
2144
2158
|
- **Accessibility** - Provided with built-in accessibility support which helps to access all the DropDownList component features through the keyboard, screen readers, or other assistive technology devices.
|
|
2145
2159
|
|
|
2146
2160
|
|
|
2161
|
+
## 23.1.39 (2023-10-04)
|
|
2162
|
+
|
|
2163
|
+
### Dropdown Tree
|
|
2164
|
+
|
|
2165
|
+
#### Bug fixes
|
|
2166
|
+
|
|
2167
|
+
- `#I498924` - Issue with the locale property in the Dropdown Tree component has been resolved.
|
|
2168
|
+
|
|
2147
2169
|
## 19.4.38 (2021-12-17)
|
|
2148
2170
|
|
|
2149
2171
|
### ComboBox
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-dropdowns.umd.js
|
|
3
|
-
* version : 23.1.
|
|
3
|
+
* version : 23.1.41
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-dropdowns.umd.min.js
|
|
3
|
-
* version : 23.1.
|
|
3
|
+
* version : 23.1.41
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-dropdowns@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-dropdowns@23.1.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-dropdowns@23.1.40",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-5nmsrX6dhQJUX8W7B8mmxWi+F0EyQFZzA4SZKok9R/49//r+1iAe/2eYya5GB4TEqMs0NIzujYASaC7HBxYKHQ==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-angular-dropdowns",
|
|
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-angular-dropdowns/-/ej2-angular-dropdowns-23.1.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-dropdowns/-/ej2-angular-dropdowns-23.1.40.tgz",
|
|
23
|
+
"_shasum": "07200b110f20d2e5411ea6a18c8a383841a227c9",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-dropdowns@*",
|
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_23.1.1/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@syncfusion/ej2-angular-base": "~23.1.38",
|
|
35
|
-
"@syncfusion/ej2-base": "~23.1.
|
|
36
|
-
"@syncfusion/ej2-dropdowns": "23.1.
|
|
35
|
+
"@syncfusion/ej2-base": "~23.1.41",
|
|
36
|
+
"@syncfusion/ej2-dropdowns": "23.1.41"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 DropDown Components for Angular",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"schematics": "./schematics/collection.json",
|
|
64
64
|
"sideEffects": false,
|
|
65
65
|
"typings": "ej2-angular-dropdowns.d.ts",
|
|
66
|
-
"version": "23.1.
|
|
66
|
+
"version": "23.1.41-ngcc"
|
|
67
67
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-dropdowns";
|
|
2
|
-
export declare const pkgVer = "^23.1.
|
|
2
|
+
export declare const pkgVer = "^23.1.40";
|
|
3
3
|
export declare const moduleName = "DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule";
|
|
4
|
-
export declare const themeVer = "~23.1.
|
|
4
|
+
export declare const themeVer = "~23.1.40";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-dropdowns';
|
|
4
|
-
exports.pkgVer = '^23.1.
|
|
4
|
+
exports.pkgVer = '^23.1.41';
|
|
5
5
|
exports.moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
|
|
6
|
-
exports.themeVer = '~23.1.
|
|
6
|
+
exports.themeVer = '~23.1.41';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-dropdowns';
|
|
2
|
-
export const pkgVer = '^23.1.
|
|
2
|
+
export const pkgVer = '^23.1.41';
|
|
3
3
|
export const moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule, MentionModule';
|
|
4
|
-
export const themeVer = '~23.1.
|
|
4
|
+
export const themeVer = '~23.1.41';
|
|
@@ -107,13 +107,24 @@
|
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
110
|
-
font-size:
|
|
110
|
+
font-size: 12px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
114
|
+
.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
115
|
+
font-size: 14px;
|
|
111
116
|
}
|
|
112
117
|
|
|
113
|
-
.e-
|
|
118
|
+
.e-small .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
119
|
+
.e-small.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
114
120
|
font-size: 10px;
|
|
115
121
|
}
|
|
116
122
|
|
|
123
|
+
.e-small.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
124
|
+
.e-small.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
125
|
+
font-size: 12px;
|
|
126
|
+
}
|
|
127
|
+
|
|
117
128
|
.e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
|
|
118
129
|
font-size: 14px;
|
|
119
130
|
line-height: 34px;
|
|
@@ -3077,7 +3077,7 @@ ejs-listbox {
|
|
|
3077
3077
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3078
3078
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3079
3079
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3080
|
-
height: calc(100% - 40px);
|
|
3080
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3081
3081
|
}
|
|
3082
3082
|
|
|
3083
3083
|
.e-listbox-wrapper .e-icons,
|
package/styles/bootstrap.css
CHANGED
|
@@ -3087,7 +3087,7 @@ ejs-listbox {
|
|
|
3087
3087
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3088
3088
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3089
3089
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3090
|
-
height: calc(100% - 40px);
|
|
3090
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3091
3091
|
}
|
|
3092
3092
|
|
|
3093
3093
|
.e-listbox-wrapper .e-icons,
|
package/styles/bootstrap4.css
CHANGED
|
@@ -516,13 +516,24 @@
|
|
|
516
516
|
}
|
|
517
517
|
|
|
518
518
|
.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
519
|
-
font-size:
|
|
519
|
+
font-size: 12px;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
523
|
+
.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
524
|
+
font-size: 14px;
|
|
520
525
|
}
|
|
521
526
|
|
|
522
|
-
.e-
|
|
527
|
+
.e-small .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
528
|
+
.e-small.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
523
529
|
font-size: 10px;
|
|
524
530
|
}
|
|
525
531
|
|
|
532
|
+
.e-small.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
533
|
+
.e-small.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
534
|
+
font-size: 12px;
|
|
535
|
+
}
|
|
536
|
+
|
|
526
537
|
.e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
|
|
527
538
|
font-size: 14px;
|
|
528
539
|
line-height: 34px;
|
|
@@ -1273,6 +1284,25 @@ ejs-dropdownlist {
|
|
|
1273
1284
|
border-right-width: 0;
|
|
1274
1285
|
}
|
|
1275
1286
|
|
|
1287
|
+
.e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before {
|
|
1288
|
+
font-size: 12px;
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.e-bigger .e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before,
|
|
1292
|
+
.e-bigger.e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before {
|
|
1293
|
+
font-size: 14px;
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.e-small .e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before,
|
|
1297
|
+
.e-small.e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before {
|
|
1298
|
+
font-size: 10px;
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.e-small.e-bigger .e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before,
|
|
1302
|
+
.e-small.e-bigger.e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before {
|
|
1303
|
+
font-size: 12px;
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1276
1306
|
.e-multiselect.e-rtl .e-input-group-icon.e-ddl-icon {
|
|
1277
1307
|
border-left-width: 0;
|
|
1278
1308
|
border-radius: 4px 0 0 4px;
|
|
@@ -3308,7 +3338,7 @@ ejs-listbox {
|
|
|
3308
3338
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3309
3339
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3310
3340
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3311
|
-
height: calc(100% - 40px);
|
|
3341
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3312
3342
|
}
|
|
3313
3343
|
|
|
3314
3344
|
.e-listbox-wrapper .e-icons,
|
|
@@ -3256,7 +3256,7 @@ ejs-listbox {
|
|
|
3256
3256
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3257
3257
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3258
3258
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3259
|
-
height: calc(100% - 36px);
|
|
3259
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3260
3260
|
}
|
|
3261
3261
|
|
|
3262
3262
|
.e-listbox-wrapper .e-list-item,
|
package/styles/bootstrap5.css
CHANGED
|
@@ -3256,7 +3256,7 @@ ejs-listbox {
|
|
|
3256
3256
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3257
3257
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3258
3258
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3259
|
-
height: calc(100% - 36px);
|
|
3259
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3260
3260
|
}
|
|
3261
3261
|
|
|
3262
3262
|
.e-listbox-wrapper .e-list-item,
|
|
@@ -107,13 +107,24 @@
|
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
110
|
-
font-size:
|
|
110
|
+
font-size: 12px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
114
|
+
.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
115
|
+
font-size: 14px;
|
|
111
116
|
}
|
|
112
117
|
|
|
113
|
-
.e-
|
|
118
|
+
.e-small .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
119
|
+
.e-small.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
114
120
|
font-size: 10px;
|
|
115
121
|
}
|
|
116
122
|
|
|
123
|
+
.e-small.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
124
|
+
.e-small.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
125
|
+
font-size: 12px;
|
|
126
|
+
}
|
|
127
|
+
|
|
117
128
|
.e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
|
|
118
129
|
font-size: 14px;
|
|
119
130
|
line-height: 34px;
|
|
@@ -148,13 +148,24 @@
|
|
|
148
148
|
}
|
|
149
149
|
|
|
150
150
|
.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
151
|
-
font-size:
|
|
151
|
+
font-size: 12px;
|
|
152
152
|
}
|
|
153
153
|
|
|
154
|
-
.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon
|
|
154
|
+
.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
155
|
+
.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
156
|
+
font-size: 14px;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-small .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
160
|
+
.e-small.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
155
161
|
font-size: 10px;
|
|
156
162
|
}
|
|
157
163
|
|
|
164
|
+
.e-small.e-bigger .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
165
|
+
.e-small.e-bigger.e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
|
|
166
|
+
font-size: 12px;
|
|
167
|
+
}
|
|
168
|
+
|
|
158
169
|
.e-bigger.e-small .e-ddl.e-popup .e-list-item, .e-bigger.e-small .e-ddl.e-popup .e-list-group-item, .e-bigger.e-small .e-ddl.e-popup .e-fixed-head {
|
|
159
170
|
font-size: 14px;
|
|
160
171
|
line-height: 34px;
|
package/styles/fabric-dark.css
CHANGED
|
@@ -3056,7 +3056,7 @@ ejs-listbox {
|
|
|
3056
3056
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3057
3057
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3058
3058
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3059
|
-
height: calc(100% - 36px);
|
|
3059
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3060
3060
|
}
|
|
3061
3061
|
|
|
3062
3062
|
.e-listbox-wrapper .e-icons,
|
package/styles/fabric.css
CHANGED
|
@@ -3061,7 +3061,7 @@ ejs-listbox {
|
|
|
3061
3061
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3062
3062
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3063
3063
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3064
|
-
height: calc(100% - 36px);
|
|
3064
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3065
3065
|
}
|
|
3066
3066
|
|
|
3067
3067
|
.e-listbox-wrapper .e-icons,
|
package/styles/fluent-dark.css
CHANGED
|
@@ -3323,7 +3323,7 @@ ejs-listbox {
|
|
|
3323
3323
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3324
3324
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3325
3325
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3326
|
-
height: calc(100% - 36px);
|
|
3326
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3327
3327
|
}
|
|
3328
3328
|
|
|
3329
3329
|
.e-listbox-wrapper .e-icons,
|
package/styles/fluent.css
CHANGED
|
@@ -3323,7 +3323,7 @@ ejs-listbox {
|
|
|
3323
3323
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3324
3324
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3325
3325
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3326
|
-
height: calc(100% - 36px);
|
|
3326
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3327
3327
|
}
|
|
3328
3328
|
|
|
3329
3329
|
.e-listbox-wrapper .e-icons,
|
|
@@ -3170,7 +3170,7 @@ ejs-listbox {
|
|
|
3170
3170
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3171
3171
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3172
3172
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3173
|
-
height: calc(100% - 36px);
|
|
3173
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3174
3174
|
}
|
|
3175
3175
|
|
|
3176
3176
|
.e-listbox-wrapper .e-icons,
|
package/styles/highcontrast.css
CHANGED
|
@@ -3187,7 +3187,7 @@ ejs-listbox {
|
|
|
3187
3187
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3188
3188
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3189
3189
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3190
|
-
height: calc(100% - 36px);
|
|
3190
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3191
3191
|
}
|
|
3192
3192
|
|
|
3193
3193
|
.e-listbox-wrapper .e-icons,
|
|
@@ -660,7 +660,7 @@ ejs-listbox {
|
|
|
660
660
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
661
661
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
662
662
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
663
|
-
height: calc(100% - 40px);
|
|
663
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
664
664
|
}
|
|
665
665
|
|
|
666
666
|
.e-listbox-wrapper .e-icons,
|
|
@@ -671,7 +671,7 @@ ejs-listbox {
|
|
|
671
671
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
672
672
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
673
673
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
674
|
-
height: calc(100% - 40px);
|
|
674
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
675
675
|
}
|
|
676
676
|
|
|
677
677
|
.e-listbox-wrapper .e-icons,
|
|
@@ -725,7 +725,7 @@ ejs-listbox {
|
|
|
725
725
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
726
726
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
727
727
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
728
|
-
height: calc(100% - 40px);
|
|
728
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
729
729
|
}
|
|
730
730
|
|
|
731
731
|
.e-listbox-wrapper .e-icons,
|
|
@@ -697,7 +697,7 @@ ejs-listbox {
|
|
|
697
697
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
698
698
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
699
699
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
700
|
-
height: calc(100% - 36px);
|
|
700
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
701
701
|
}
|
|
702
702
|
|
|
703
703
|
.e-listbox-wrapper .e-list-item,
|
|
@@ -697,7 +697,7 @@ ejs-listbox {
|
|
|
697
697
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
698
698
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
699
699
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
700
|
-
height: calc(100% - 36px);
|
|
700
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
701
701
|
}
|
|
702
702
|
|
|
703
703
|
.e-listbox-wrapper .e-list-item,
|
|
@@ -660,7 +660,7 @@ ejs-listbox {
|
|
|
660
660
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
661
661
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
662
662
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
663
|
-
height: calc(100% - 36px);
|
|
663
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
664
664
|
}
|
|
665
665
|
|
|
666
666
|
.e-listbox-wrapper .e-icons,
|
|
@@ -671,7 +671,7 @@ ejs-listbox {
|
|
|
671
671
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
672
672
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
673
673
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
674
|
-
height: calc(100% - 36px);
|
|
674
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
675
675
|
}
|
|
676
676
|
|
|
677
677
|
.e-listbox-wrapper .e-icons,
|
|
@@ -697,7 +697,7 @@ ejs-listbox {
|
|
|
697
697
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
698
698
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
699
699
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
700
|
-
height: calc(100% - 36px);
|
|
700
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
701
701
|
}
|
|
702
702
|
|
|
703
703
|
.e-listbox-wrapper .e-icons,
|
|
@@ -697,7 +697,7 @@ ejs-listbox {
|
|
|
697
697
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
698
698
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
699
699
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
700
|
-
height: calc(100% - 36px);
|
|
700
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
701
701
|
}
|
|
702
702
|
|
|
703
703
|
.e-listbox-wrapper .e-icons,
|
|
@@ -674,7 +674,7 @@ ejs-listbox {
|
|
|
674
674
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
675
675
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
676
676
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
677
|
-
height: calc(100% - 36px);
|
|
677
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
678
678
|
}
|
|
679
679
|
|
|
680
680
|
.e-listbox-wrapper .e-icons,
|
|
@@ -685,7 +685,7 @@ ejs-listbox {
|
|
|
685
685
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
686
686
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
687
687
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
688
|
-
height: calc(100% - 36px);
|
|
688
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
689
689
|
}
|
|
690
690
|
|
|
691
691
|
.e-listbox-wrapper .e-icons,
|
|
@@ -659,7 +659,7 @@ ejs-listbox {
|
|
|
659
659
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
660
660
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
661
661
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
662
|
-
height: calc(100% - 36px);
|
|
662
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
663
663
|
}
|
|
664
664
|
|
|
665
665
|
.e-listbox-wrapper .e-icons,
|
|
@@ -670,7 +670,7 @@ ejs-listbox {
|
|
|
670
670
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
671
671
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
672
672
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
673
|
-
height: calc(100% - 36px);
|
|
673
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
674
674
|
}
|
|
675
675
|
|
|
676
676
|
.e-listbox-wrapper .e-icons,
|
|
@@ -715,7 +715,7 @@ ejs-listbox {
|
|
|
715
715
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
716
716
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
717
717
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
718
|
-
height: calc(100% - 36px);
|
|
718
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
719
719
|
}
|
|
720
720
|
|
|
721
721
|
.e-listbox-wrapper .e-icons,
|
|
@@ -771,7 +771,7 @@ ejs-listbox {
|
|
|
771
771
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
772
772
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
773
773
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
774
|
-
height: calc(100% - 36px);
|
|
774
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
775
775
|
}
|
|
776
776
|
|
|
777
777
|
.e-listbox-wrapper .e-icons,
|
|
@@ -716,7 +716,7 @@ ejs-listbox {
|
|
|
716
716
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
717
717
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
718
718
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
719
|
-
height: calc(100% - 38px);
|
|
719
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
720
720
|
}
|
|
721
721
|
|
|
722
722
|
.e-listbox-wrapper .e-icons,
|
|
@@ -716,7 +716,7 @@ ejs-listbox {
|
|
|
716
716
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
717
717
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
718
718
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
719
|
-
height: calc(100% - 38px);
|
|
719
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
720
720
|
}
|
|
721
721
|
|
|
722
722
|
.e-listbox-wrapper .e-icons,
|
package/styles/material-dark.css
CHANGED
|
@@ -4544,7 +4544,7 @@ ejs-listbox {
|
|
|
4544
4544
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
4545
4545
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
4546
4546
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
4547
|
-
height: calc(100% - 36px);
|
|
4547
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4548
4548
|
}
|
|
4549
4549
|
|
|
4550
4550
|
.e-listbox-wrapper .e-icons,
|
package/styles/material.css
CHANGED
|
@@ -4610,7 +4610,7 @@ ejs-listbox {
|
|
|
4610
4610
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
4611
4611
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
4612
4612
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
4613
|
-
height: calc(100% - 36px);
|
|
4613
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4614
4614
|
}
|
|
4615
4615
|
|
|
4616
4616
|
.e-listbox-wrapper .e-icons,
|
|
@@ -4738,7 +4738,7 @@ ejs-listbox {
|
|
|
4738
4738
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
4739
4739
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
4740
4740
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
4741
|
-
height: calc(100% - 36px);
|
|
4741
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
4742
4742
|
}
|
|
4743
4743
|
|
|
4744
4744
|
.e-listbox-wrapper .e-icons,
|
package/styles/material3.css
CHANGED
|
@@ -5130,7 +5130,7 @@ ejs-listbox {
|
|
|
5130
5130
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
5131
5131
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
5132
5132
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
5133
|
-
height: calc(100% - 36px);
|
|
5133
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
5134
5134
|
}
|
|
5135
5135
|
|
|
5136
5136
|
.e-listbox-wrapper .e-icons,
|
|
@@ -49,6 +49,25 @@
|
|
|
49
49
|
border-right-width: 0;
|
|
50
50
|
}
|
|
51
51
|
|
|
52
|
+
.e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before {
|
|
53
|
+
font-size: 12px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.e-bigger .e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before,
|
|
57
|
+
.e-bigger.e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before {
|
|
58
|
+
font-size: 14px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.e-small .e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before,
|
|
62
|
+
.e-small.e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before {
|
|
63
|
+
font-size: 10px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.e-small.e-bigger .e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before,
|
|
67
|
+
.e-small.e-bigger.e-input-group.e-multiselect.e-control-wrapper .e-input-group-icon.e-ddl-icon::before {
|
|
68
|
+
font-size: 12px;
|
|
69
|
+
}
|
|
70
|
+
|
|
52
71
|
.e-multiselect.e-rtl .e-input-group-icon.e-ddl-icon {
|
|
53
72
|
border-left-width: 0;
|
|
54
73
|
border-radius: 4px 0 0 4px;
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -3267,7 +3267,7 @@ ejs-listbox {
|
|
|
3267
3267
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3268
3268
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3269
3269
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3270
|
-
height: calc(100% - 38px);
|
|
3270
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3271
3271
|
}
|
|
3272
3272
|
|
|
3273
3273
|
.e-listbox-wrapper .e-icons,
|
package/styles/tailwind.css
CHANGED
|
@@ -3267,7 +3267,7 @@ ejs-listbox {
|
|
|
3267
3267
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
3268
3268
|
.e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
3269
3269
|
.e-listboxtool-wrapper .e-selectall-parent + .e-list-parent {
|
|
3270
|
-
height: calc(100% - 38px);
|
|
3270
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
3271
3271
|
}
|
|
3272
3272
|
|
|
3273
3273
|
.e-listbox-wrapper .e-icons,
|