@syncfusion/ej2-angular-dropdowns 19.4.40 → 19.4.48
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 +24 -0
- package/README.md +1 -1
- package/dist/ej2-angular-dropdowns.umd.js +1 -1
- package/dist/ej2-angular-dropdowns.umd.min.js +1 -1
- package/package.json +8 -8
- 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/bootstrap5-dark.css +0 -1
- package/styles/auto-complete/bootstrap5.css +0 -1
- package/styles/bootstrap-dark.css +21 -3
- package/styles/bootstrap.css +21 -3
- package/styles/bootstrap4.css +21 -3
- package/styles/bootstrap5-dark.css +33 -9
- package/styles/bootstrap5.css +33 -9
- package/styles/combo-box/bootstrap5-dark.css +0 -1
- package/styles/combo-box/bootstrap5.css +0 -1
- package/styles/drop-down-list/bootstrap5-dark.css +0 -1
- package/styles/drop-down-list/bootstrap5.css +0 -1
- package/styles/drop-down-tree/bootstrap5-dark.css +11 -4
- package/styles/drop-down-tree/bootstrap5.css +11 -4
- package/styles/drop-down-tree/tailwind-dark.css +1 -0
- package/styles/drop-down-tree/tailwind.css +1 -0
- package/styles/fabric-dark.css +21 -3
- package/styles/fabric.css +21 -3
- package/styles/highcontrast-light.css +21 -3
- package/styles/highcontrast.css +21 -3
- package/styles/list-box/bootstrap-dark.css +10 -0
- package/styles/list-box/bootstrap.css +10 -0
- package/styles/list-box/bootstrap4.css +10 -0
- package/styles/list-box/bootstrap5-dark.css +11 -1
- package/styles/list-box/bootstrap5.css +11 -1
- package/styles/list-box/fabric-dark.css +10 -0
- package/styles/list-box/fabric.css +10 -0
- package/styles/list-box/highcontrast-light.css +10 -0
- package/styles/list-box/highcontrast.css +10 -0
- package/styles/list-box/material-dark.css +10 -0
- package/styles/list-box/material.css +10 -0
- package/styles/list-box/tailwind-dark.css +13 -3
- package/styles/list-box/tailwind.css +11 -1
- package/styles/material-dark.css +21 -97
- package/styles/material.css +21 -97
- package/styles/multi-select/bootstrap-dark.css +11 -3
- package/styles/multi-select/bootstrap.css +11 -3
- package/styles/multi-select/bootstrap4.css +11 -3
- package/styles/multi-select/bootstrap5-dark.css +11 -3
- package/styles/multi-select/bootstrap5.css +11 -3
- package/styles/multi-select/fabric-dark.css +11 -3
- package/styles/multi-select/fabric.css +11 -3
- package/styles/multi-select/highcontrast-light.css +11 -3
- package/styles/multi-select/highcontrast.css +11 -3
- package/styles/multi-select/material-dark.css +11 -97
- package/styles/multi-select/material.css +11 -97
- package/styles/multi-select/tailwind-dark.css +11 -3
- package/styles/multi-select/tailwind.css +11 -3
- package/styles/tailwind-dark.css +25 -6
- package/styles/tailwind.css +23 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## 19.4.42 (2022-01-11)
|
|
6
|
+
|
|
7
|
+
### MultiSelect
|
|
8
|
+
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- `#FB31100` - Issue with "popup is not opened while changing the `popupHeight` dynamically in the `beforeOpen` event" has been resolved.
|
|
12
|
+
|
|
5
13
|
## 19.3.56 (2021-12-02)
|
|
6
14
|
|
|
7
15
|
### MultiSelect
|
|
@@ -2053,6 +2061,22 @@ DropDownList component contains a list of predefined values from which a single
|
|
|
2053
2061
|
- **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.
|
|
2054
2062
|
|
|
2055
2063
|
|
|
2064
|
+
## 19.4.41 (2022-01-04)
|
|
2065
|
+
|
|
2066
|
+
### MultiSelect
|
|
2067
|
+
|
|
2068
|
+
#### Bug Fixes
|
|
2069
|
+
|
|
2070
|
+
- `#I358908` - Issue with "selected item color is not updated properly in the disabled state of the component" has been resolved.
|
|
2071
|
+
|
|
2072
|
+
## 19.4.38 (2021-12-17)
|
|
2073
|
+
|
|
2074
|
+
### ComboBox
|
|
2075
|
+
|
|
2076
|
+
#### Bug Fixes
|
|
2077
|
+
|
|
2078
|
+
- `#I347955` - Issue with "custom value is not updated to the input while typing the custom value and pressing the enter key" has been resolved.
|
|
2079
|
+
|
|
2056
2080
|
## 19.2.57 (2021-08-24)
|
|
2057
2081
|
|
|
2058
2082
|
### MultiSelect
|
package/README.md
CHANGED
|
@@ -116,4 +116,4 @@ Check the license details [here.](https://github.com/syncfusion/ej2/blob/master/
|
|
|
116
116
|
## 8. Change log
|
|
117
117
|
Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-components/blob/master/components/dropdowns/CHANGELOG.md)
|
|
118
118
|
|
|
119
|
-
© Copyright
|
|
119
|
+
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-angular-dropdowns.umd.js
|
|
3
|
-
* version : 19.4.
|
|
3
|
+
* version : 19.4.48
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. 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 : 19.4.
|
|
3
|
+
* version : 19.4.48
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. 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@19.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-dropdowns@19.4.47",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-nDCTR1k4w5FgFTZQYrGpKX4y/LK1fhuTBN/LGTfYYH/5RXP804A9ci3sgtqk1G9JG02qdyLjJLT8NJ6G+FtoEQ==",
|
|
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": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-dropdowns/-/ej2-angular-dropdowns-19.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-dropdowns/-/ej2-angular-dropdowns-19.4.47.tgz",
|
|
23
|
+
"_shasum": "4bcb96ff87dcf8061ad4e6121b1567770448eb84",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-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-angular-base": "~19.4.
|
|
35
|
-
"@syncfusion/ej2-base": "~19.4.
|
|
36
|
-
"@syncfusion/ej2-dropdowns": "19.4.
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~19.4.48",
|
|
35
|
+
"@syncfusion/ej2-base": "~19.4.48",
|
|
36
|
+
"@syncfusion/ej2-dropdowns": "19.4.48"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "Essential JS 2 DropDown Components for Angular",
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"schematics": "./schematics/collection.json",
|
|
73
73
|
"sideEffects": false,
|
|
74
74
|
"typings": "ej2-angular-dropdowns.d.ts",
|
|
75
|
-
"version": "19.4.
|
|
75
|
+
"version": "19.4.48"
|
|
76
76
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const pkgName = "@syncfusion/ej2-angular-dropdowns";
|
|
2
|
-
export declare const pkgVer = "^19.
|
|
2
|
+
export declare const pkgVer = "^19.4.47";
|
|
3
3
|
export declare const moduleName = "DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule";
|
|
4
|
-
export declare const themeVer = "~19.
|
|
4
|
+
export declare const themeVer = "~19.4.47";
|
|
@@ -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 = '^19.
|
|
4
|
+
exports.pkgVer = '^19.4.47';
|
|
5
5
|
exports.moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule';
|
|
6
|
-
exports.themeVer = '~19.
|
|
6
|
+
exports.themeVer = '~19.4.47';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-dropdowns';
|
|
2
|
-
export const pkgVer = '^19.
|
|
2
|
+
export const pkgVer = '^19.4.47';
|
|
3
3
|
export const moduleName = 'DropDownListModule, ComboBoxModule, AutoCompleteModule, MultiSelectModule, ListBoxModule, DropDownTreeModule';
|
|
4
|
-
export const themeVer = '~19.
|
|
4
|
+
export const themeVer = '~19.4.47';
|
|
@@ -1339,11 +1339,13 @@ ejs-dropdownlist {
|
|
|
1339
1339
|
padding: 13px 0 13px 0;
|
|
1340
1340
|
}
|
|
1341
1341
|
|
|
1342
|
-
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box)
|
|
1342
|
+
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box),
|
|
1343
|
+
.e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) {
|
|
1343
1344
|
width: 0;
|
|
1344
1345
|
}
|
|
1345
1346
|
|
|
1346
|
-
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box) input[type='text']
|
|
1347
|
+
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box) input[type='text'],
|
|
1348
|
+
.e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) input[type='text'] {
|
|
1347
1349
|
height: 1px;
|
|
1348
1350
|
min-height: 1px;
|
|
1349
1351
|
}
|
|
@@ -1471,7 +1473,8 @@ ejs-dropdownlist {
|
|
|
1471
1473
|
word-wrap: initial;
|
|
1472
1474
|
}
|
|
1473
1475
|
|
|
1474
|
-
.e-multiselect.e-input-group .e-searcher .e-label-top
|
|
1476
|
+
.e-multiselect.e-input-group .e-searcher .e-label-top,
|
|
1477
|
+
.e-multiselect.e-input-group .e-multi-searcher .e-label-top {
|
|
1475
1478
|
top: 17px;
|
|
1476
1479
|
}
|
|
1477
1480
|
|
|
@@ -2454,6 +2457,11 @@ ejs-multiselect {
|
|
|
2454
2457
|
font-size: 10px;
|
|
2455
2458
|
}
|
|
2456
2459
|
|
|
2460
|
+
.e-multiselect.e-disabled .e-multi-select-wrapper .e-delim-values {
|
|
2461
|
+
-webkit-text-fill-color: #9c9c9c;
|
|
2462
|
+
color: #9c9c9c;
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2457
2465
|
.e-listbox-tool .e-moveup::before {
|
|
2458
2466
|
content: '\e651';
|
|
2459
2467
|
}
|
|
@@ -3051,6 +3059,16 @@ ejs-listbox {
|
|
|
3051
3059
|
height: calc(100% - 52px);
|
|
3052
3060
|
}
|
|
3053
3061
|
|
|
3062
|
+
.e-listbox-wrapper.e-select-all .e-list-parent,
|
|
3063
|
+
.e-listbox-container.e-select-all .e-list-parent {
|
|
3064
|
+
height: calc(100% - 40px);
|
|
3065
|
+
}
|
|
3066
|
+
|
|
3067
|
+
.e-listbox-wrapper.e-filter-list.e-select-all .e-list-parent,
|
|
3068
|
+
.e-listbox-container.e-filter-list.e-select-all .e-list-parent {
|
|
3069
|
+
height: calc(100% - 92px);
|
|
3070
|
+
}
|
|
3071
|
+
|
|
3054
3072
|
.e-listbox-wrapper .e-icons,
|
|
3055
3073
|
.e-listbox-container .e-icons {
|
|
3056
3074
|
color: #f0f0f0;
|
package/styles/bootstrap.css
CHANGED
|
@@ -1338,11 +1338,13 @@ ejs-dropdownlist {
|
|
|
1338
1338
|
padding: 13px 0 13px 0;
|
|
1339
1339
|
}
|
|
1340
1340
|
|
|
1341
|
-
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box)
|
|
1341
|
+
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box),
|
|
1342
|
+
.e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) {
|
|
1342
1343
|
width: 0;
|
|
1343
1344
|
}
|
|
1344
1345
|
|
|
1345
|
-
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box) input[type='text']
|
|
1346
|
+
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box) input[type='text'],
|
|
1347
|
+
.e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) input[type='text'] {
|
|
1346
1348
|
height: 1px;
|
|
1347
1349
|
min-height: 1px;
|
|
1348
1350
|
}
|
|
@@ -1470,7 +1472,8 @@ ejs-dropdownlist {
|
|
|
1470
1472
|
word-wrap: initial;
|
|
1471
1473
|
}
|
|
1472
1474
|
|
|
1473
|
-
.e-multiselect.e-input-group .e-searcher .e-label-top
|
|
1475
|
+
.e-multiselect.e-input-group .e-searcher .e-label-top,
|
|
1476
|
+
.e-multiselect.e-input-group .e-multi-searcher .e-label-top {
|
|
1474
1477
|
top: 16px;
|
|
1475
1478
|
}
|
|
1476
1479
|
|
|
@@ -2453,6 +2456,11 @@ ejs-multiselect {
|
|
|
2453
2456
|
font-size: 10px;
|
|
2454
2457
|
}
|
|
2455
2458
|
|
|
2459
|
+
.e-multiselect.e-disabled .e-multi-select-wrapper .e-delim-values {
|
|
2460
|
+
-webkit-text-fill-color: #999;
|
|
2461
|
+
color: #999;
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2456
2464
|
.e-listbox-tool .e-moveup::before {
|
|
2457
2465
|
content: '\e651';
|
|
2458
2466
|
}
|
|
@@ -3050,6 +3058,16 @@ ejs-listbox {
|
|
|
3050
3058
|
height: calc(100% - 52px);
|
|
3051
3059
|
}
|
|
3052
3060
|
|
|
3061
|
+
.e-listbox-wrapper.e-select-all .e-list-parent,
|
|
3062
|
+
.e-listbox-container.e-select-all .e-list-parent {
|
|
3063
|
+
height: calc(100% - 40px);
|
|
3064
|
+
}
|
|
3065
|
+
|
|
3066
|
+
.e-listbox-wrapper.e-filter-list.e-select-all .e-list-parent,
|
|
3067
|
+
.e-listbox-container.e-filter-list.e-select-all .e-list-parent {
|
|
3068
|
+
height: calc(100% - 92px);
|
|
3069
|
+
}
|
|
3070
|
+
|
|
3053
3071
|
.e-listbox-wrapper .e-icons,
|
|
3054
3072
|
.e-listbox-container .e-icons {
|
|
3055
3073
|
color: rgba(0, 0, 0, 0.75);
|
package/styles/bootstrap4.css
CHANGED
|
@@ -1475,11 +1475,13 @@ ejs-dropdownlist {
|
|
|
1475
1475
|
padding: 13px 0 13px 0;
|
|
1476
1476
|
}
|
|
1477
1477
|
|
|
1478
|
-
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box)
|
|
1478
|
+
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box),
|
|
1479
|
+
.e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) {
|
|
1479
1480
|
width: 0;
|
|
1480
1481
|
}
|
|
1481
1482
|
|
|
1482
|
-
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box) input[type='text']
|
|
1483
|
+
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box) input[type='text'],
|
|
1484
|
+
.e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) input[type='text'] {
|
|
1483
1485
|
height: 1px;
|
|
1484
1486
|
min-height: 1px;
|
|
1485
1487
|
}
|
|
@@ -1609,7 +1611,8 @@ ejs-dropdownlist {
|
|
|
1609
1611
|
word-wrap: initial;
|
|
1610
1612
|
}
|
|
1611
1613
|
|
|
1612
|
-
.e-multiselect.e-input-group .e-searcher .e-label-top
|
|
1614
|
+
.e-multiselect.e-input-group .e-searcher .e-label-top,
|
|
1615
|
+
.e-multiselect.e-input-group .e-multi-searcher .e-label-top {
|
|
1613
1616
|
top: 15px;
|
|
1614
1617
|
}
|
|
1615
1618
|
|
|
@@ -2637,6 +2640,11 @@ ejs-multiselect {
|
|
|
2637
2640
|
font-size: 10px;
|
|
2638
2641
|
}
|
|
2639
2642
|
|
|
2643
|
+
.e-multiselect.e-disabled .e-multi-select-wrapper .e-delim-values {
|
|
2644
|
+
-webkit-text-fill-color: #6c757d;
|
|
2645
|
+
color: #6c757d;
|
|
2646
|
+
}
|
|
2647
|
+
|
|
2640
2648
|
.e-listbox-tool .e-moveup::before {
|
|
2641
2649
|
content: '\e808';
|
|
2642
2650
|
}
|
|
@@ -3283,6 +3291,16 @@ ejs-listbox {
|
|
|
3283
3291
|
height: calc(100% - 39px);
|
|
3284
3292
|
}
|
|
3285
3293
|
|
|
3294
|
+
.e-listbox-wrapper.e-select-all .e-list-parent,
|
|
3295
|
+
.e-listbox-container.e-select-all .e-list-parent {
|
|
3296
|
+
height: calc(100% - 40px);
|
|
3297
|
+
}
|
|
3298
|
+
|
|
3299
|
+
.e-listbox-wrapper.e-filter-list.e-select-all .e-list-parent,
|
|
3300
|
+
.e-listbox-container.e-filter-list.e-select-all .e-list-parent {
|
|
3301
|
+
height: calc(100% - 79px);
|
|
3302
|
+
}
|
|
3303
|
+
|
|
3286
3304
|
.e-listbox-wrapper .e-icons,
|
|
3287
3305
|
.e-listbox-container .e-icons {
|
|
3288
3306
|
color: #212529;
|
|
@@ -453,7 +453,6 @@
|
|
|
453
453
|
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
|
|
454
454
|
.e-float-input.e-control-wrapper.e-ddl input[readonly] {
|
|
455
455
|
background: transparent;
|
|
456
|
-
color: inherit;
|
|
457
456
|
}
|
|
458
457
|
|
|
459
458
|
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
@@ -1137,8 +1136,16 @@ ejs-dropdownlist {
|
|
|
1137
1136
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-text.e-show-dd-icon .e-clear-icon,
|
|
1138
1137
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
1139
1138
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-text.e-show-dd-icon .e-clear-icon {
|
|
1140
|
-
bottom:
|
|
1141
|
-
right:
|
|
1139
|
+
bottom: auto;
|
|
1140
|
+
right: 36px;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
1144
|
+
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
1145
|
+
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
1146
|
+
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
1147
|
+
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon {
|
|
1148
|
+
bottom: 0;
|
|
1142
1149
|
}
|
|
1143
1150
|
|
|
1144
1151
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-text .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-text .e-ddt-icon,
|
|
@@ -1152,8 +1159,7 @@ ejs-dropdownlist {
|
|
|
1152
1159
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper .e-clear-icon,
|
|
1153
1160
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper .e-clear-icon,
|
|
1154
1161
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper .e-clear-icon {
|
|
1155
|
-
min-
|
|
1156
|
-
padding: 6px;
|
|
1162
|
+
min-height: 36px;
|
|
1157
1163
|
}
|
|
1158
1164
|
|
|
1159
1165
|
.e-bigger .e-ddt.e-show-chip .e-chips-close,
|
|
@@ -1439,11 +1445,13 @@ ejs-dropdownlist {
|
|
|
1439
1445
|
padding: 12px 4px 11px 0;
|
|
1440
1446
|
}
|
|
1441
1447
|
|
|
1442
|
-
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box)
|
|
1448
|
+
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box),
|
|
1449
|
+
.e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) {
|
|
1443
1450
|
width: 0;
|
|
1444
1451
|
}
|
|
1445
1452
|
|
|
1446
|
-
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box) input[type='text']
|
|
1453
|
+
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box) input[type='text'],
|
|
1454
|
+
.e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) input[type='text'] {
|
|
1447
1455
|
height: 1px;
|
|
1448
1456
|
min-height: 1px;
|
|
1449
1457
|
}
|
|
@@ -1573,7 +1581,8 @@ ejs-dropdownlist {
|
|
|
1573
1581
|
word-wrap: initial;
|
|
1574
1582
|
}
|
|
1575
1583
|
|
|
1576
|
-
.e-multiselect.e-input-group .e-searcher .e-label-top
|
|
1584
|
+
.e-multiselect.e-input-group .e-searcher .e-label-top,
|
|
1585
|
+
.e-multiselect.e-input-group .e-multi-searcher .e-label-top {
|
|
1577
1586
|
top: 15px;
|
|
1578
1587
|
}
|
|
1579
1588
|
|
|
@@ -2565,6 +2574,11 @@ ejs-multiselect {
|
|
|
2565
2574
|
font-size: 14px;
|
|
2566
2575
|
}
|
|
2567
2576
|
|
|
2577
|
+
.e-multiselect.e-disabled .e-multi-select-wrapper .e-delim-values {
|
|
2578
|
+
-webkit-text-fill-color: #e9ecef;
|
|
2579
|
+
color: #e9ecef;
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2568
2582
|
.e-listbox-tool .e-moveup::before {
|
|
2569
2583
|
content: '\e776';
|
|
2570
2584
|
}
|
|
@@ -3162,6 +3176,16 @@ ejs-listbox {
|
|
|
3162
3176
|
height: calc(100% - 47px);
|
|
3163
3177
|
}
|
|
3164
3178
|
|
|
3179
|
+
.e-listbox-wrapper.e-select-all .e-list-parent,
|
|
3180
|
+
.e-listbox-container.e-select-all .e-list-parent {
|
|
3181
|
+
height: calc(100% - 36px);
|
|
3182
|
+
}
|
|
3183
|
+
|
|
3184
|
+
.e-listbox-wrapper.e-filter-list.e-select-all .e-list-parent,
|
|
3185
|
+
.e-listbox-container.e-filter-list.e-select-all .e-list-parent {
|
|
3186
|
+
height: calc(100% - 86px);
|
|
3187
|
+
}
|
|
3188
|
+
|
|
3165
3189
|
.e-listbox-wrapper .e-list-item,
|
|
3166
3190
|
.e-listbox-container .e-list-item {
|
|
3167
3191
|
background-color: transparent;
|
|
@@ -3214,7 +3238,7 @@ ejs-listbox {
|
|
|
3214
3238
|
.e-listbox-container .e-list-group-item {
|
|
3215
3239
|
background-color: #343a40;
|
|
3216
3240
|
border-color: rgba(0, 0, 0, 0.12);
|
|
3217
|
-
color: #
|
|
3241
|
+
color: #000;
|
|
3218
3242
|
font-size: 12px;
|
|
3219
3243
|
}
|
|
3220
3244
|
|
package/styles/bootstrap5.css
CHANGED
|
@@ -453,7 +453,6 @@
|
|
|
453
453
|
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
|
|
454
454
|
.e-float-input.e-control-wrapper.e-ddl input[readonly] {
|
|
455
455
|
background: transparent;
|
|
456
|
-
color: inherit;
|
|
457
456
|
}
|
|
458
457
|
|
|
459
458
|
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
@@ -1137,8 +1136,16 @@ ejs-dropdownlist {
|
|
|
1137
1136
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-text.e-show-dd-icon .e-clear-icon,
|
|
1138
1137
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
1139
1138
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-text.e-show-dd-icon .e-clear-icon {
|
|
1140
|
-
bottom:
|
|
1141
|
-
right:
|
|
1139
|
+
bottom: auto;
|
|
1140
|
+
right: 36px;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
1144
|
+
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
1145
|
+
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
1146
|
+
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
1147
|
+
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon {
|
|
1148
|
+
bottom: 0;
|
|
1142
1149
|
}
|
|
1143
1150
|
|
|
1144
1151
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-text .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-text .e-ddt-icon,
|
|
@@ -1152,8 +1159,7 @@ ejs-dropdownlist {
|
|
|
1152
1159
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper .e-clear-icon,
|
|
1153
1160
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper .e-clear-icon,
|
|
1154
1161
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper .e-clear-icon {
|
|
1155
|
-
min-
|
|
1156
|
-
padding: 6px;
|
|
1162
|
+
min-height: 36px;
|
|
1157
1163
|
}
|
|
1158
1164
|
|
|
1159
1165
|
.e-bigger .e-ddt.e-show-chip .e-chips-close,
|
|
@@ -1439,11 +1445,13 @@ ejs-dropdownlist {
|
|
|
1439
1445
|
padding: 12px 4px 11px 0;
|
|
1440
1446
|
}
|
|
1441
1447
|
|
|
1442
|
-
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box)
|
|
1448
|
+
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box),
|
|
1449
|
+
.e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) {
|
|
1443
1450
|
width: 0;
|
|
1444
1451
|
}
|
|
1445
1452
|
|
|
1446
|
-
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box) input[type='text']
|
|
1453
|
+
.e-multi-select-wrapper .e-searcher.e-zero-size:not(.e-multiselect-box) input[type='text'],
|
|
1454
|
+
.e-multi-select-wrapper .e-multi-searcher.e-zero-size:not(.e-multiselect-box) input[type='text'] {
|
|
1447
1455
|
height: 1px;
|
|
1448
1456
|
min-height: 1px;
|
|
1449
1457
|
}
|
|
@@ -1573,7 +1581,8 @@ ejs-dropdownlist {
|
|
|
1573
1581
|
word-wrap: initial;
|
|
1574
1582
|
}
|
|
1575
1583
|
|
|
1576
|
-
.e-multiselect.e-input-group .e-searcher .e-label-top
|
|
1584
|
+
.e-multiselect.e-input-group .e-searcher .e-label-top,
|
|
1585
|
+
.e-multiselect.e-input-group .e-multi-searcher .e-label-top {
|
|
1577
1586
|
top: 15px;
|
|
1578
1587
|
}
|
|
1579
1588
|
|
|
@@ -2565,6 +2574,11 @@ ejs-multiselect {
|
|
|
2565
2574
|
font-size: 14px;
|
|
2566
2575
|
}
|
|
2567
2576
|
|
|
2577
|
+
.e-multiselect.e-disabled .e-multi-select-wrapper .e-delim-values {
|
|
2578
|
+
-webkit-text-fill-color: #343a40;
|
|
2579
|
+
color: #343a40;
|
|
2580
|
+
}
|
|
2581
|
+
|
|
2568
2582
|
.e-listbox-tool .e-moveup::before {
|
|
2569
2583
|
content: '\e776';
|
|
2570
2584
|
}
|
|
@@ -3162,6 +3176,16 @@ ejs-listbox {
|
|
|
3162
3176
|
height: calc(100% - 47px);
|
|
3163
3177
|
}
|
|
3164
3178
|
|
|
3179
|
+
.e-listbox-wrapper.e-select-all .e-list-parent,
|
|
3180
|
+
.e-listbox-container.e-select-all .e-list-parent {
|
|
3181
|
+
height: calc(100% - 36px);
|
|
3182
|
+
}
|
|
3183
|
+
|
|
3184
|
+
.e-listbox-wrapper.e-filter-list.e-select-all .e-list-parent,
|
|
3185
|
+
.e-listbox-container.e-filter-list.e-select-all .e-list-parent {
|
|
3186
|
+
height: calc(100% - 86px);
|
|
3187
|
+
}
|
|
3188
|
+
|
|
3165
3189
|
.e-listbox-wrapper .e-list-item,
|
|
3166
3190
|
.e-listbox-container .e-list-item {
|
|
3167
3191
|
background-color: transparent;
|
|
@@ -3214,7 +3238,7 @@ ejs-listbox {
|
|
|
3214
3238
|
.e-listbox-container .e-list-group-item {
|
|
3215
3239
|
background-color: #e9ecef;
|
|
3216
3240
|
border-color: rgba(0, 0, 0, 0.12);
|
|
3217
|
-
color: #
|
|
3241
|
+
color: #000;
|
|
3218
3242
|
font-size: 12px;
|
|
3219
3243
|
}
|
|
3220
3244
|
|
|
@@ -119,7 +119,6 @@
|
|
|
119
119
|
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
|
|
120
120
|
.e-float-input.e-control-wrapper.e-ddl input[readonly] {
|
|
121
121
|
background: transparent;
|
|
122
|
-
color: inherit;
|
|
123
122
|
}
|
|
124
123
|
|
|
125
124
|
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
@@ -119,7 +119,6 @@
|
|
|
119
119
|
.e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
|
|
120
120
|
.e-float-input.e-control-wrapper.e-ddl input[readonly] {
|
|
121
121
|
background: transparent;
|
|
122
|
-
color: inherit;
|
|
123
122
|
}
|
|
124
123
|
|
|
125
124
|
.e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
|
|
@@ -402,8 +402,16 @@
|
|
|
402
402
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-text.e-show-dd-icon .e-clear-icon,
|
|
403
403
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
404
404
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-text.e-show-dd-icon .e-clear-icon {
|
|
405
|
-
bottom:
|
|
406
|
-
right:
|
|
405
|
+
bottom: auto;
|
|
406
|
+
right: 36px;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
410
|
+
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
411
|
+
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
412
|
+
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
413
|
+
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon {
|
|
414
|
+
bottom: 0;
|
|
407
415
|
}
|
|
408
416
|
|
|
409
417
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-text .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-text .e-ddt-icon,
|
|
@@ -417,8 +425,7 @@
|
|
|
417
425
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper .e-clear-icon,
|
|
418
426
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper .e-clear-icon,
|
|
419
427
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper .e-clear-icon {
|
|
420
|
-
min-
|
|
421
|
-
padding: 6px;
|
|
428
|
+
min-height: 36px;
|
|
422
429
|
}
|
|
423
430
|
|
|
424
431
|
.e-bigger .e-ddt.e-show-chip .e-chips-close,
|
|
@@ -402,8 +402,16 @@
|
|
|
402
402
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-text.e-show-dd-icon .e-clear-icon,
|
|
403
403
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
404
404
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-text.e-show-dd-icon .e-clear-icon {
|
|
405
|
-
bottom:
|
|
406
|
-
right:
|
|
405
|
+
bottom: auto;
|
|
406
|
+
right: 36px;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
410
|
+
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
411
|
+
.e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
412
|
+
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-chip.e-show-dd-icon .e-clear-icon,
|
|
413
|
+
.e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-text.e-show-chip.e-show-dd-icon .e-clear-icon {
|
|
414
|
+
bottom: 0;
|
|
407
415
|
}
|
|
408
416
|
|
|
409
417
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-text .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-text .e-ddt-icon,
|
|
@@ -417,8 +425,7 @@
|
|
|
417
425
|
.e-bigger .e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper .e-clear-icon,
|
|
418
426
|
.e-ddt.e-bigger.e-input-group.e-control-wrapper .e-clear-icon,
|
|
419
427
|
.e-ddt.e-bigger.e-float-input.e-control-wrapper .e-clear-icon {
|
|
420
|
-
min-
|
|
421
|
-
padding: 6px;
|
|
428
|
+
min-height: 36px;
|
|
422
429
|
}
|
|
423
430
|
|
|
424
431
|
.e-bigger .e-ddt.e-show-chip .e-chips-close,
|