@syncfusion/ej2-dropdowns 27.2.4 → 28.1.33
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/README.md +2 -2
- package/dist/ej2-dropdowns.min.js +3 -3
- package/dist/ej2-dropdowns.umd.min.js +3 -3
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +507 -39
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +506 -37
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +3 -3
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +13 -13
- package/src/auto-complete/auto-complete.js +5 -2
- package/src/combo-box/combo-box.js +1 -1
- package/src/common/incremental-search.d.ts +1 -1
- package/src/common/incremental-search.js +5 -1
- package/src/common/virtual-scroll.js +2 -1
- package/src/drop-down-base/drop-down-base.js +21 -3
- package/src/drop-down-list/drop-down-list-model.d.ts +31 -0
- package/src/drop-down-list/drop-down-list.d.ts +44 -1
- package/src/drop-down-list/drop-down-list.js +202 -13
- package/src/drop-down-tree/drop-down-tree.js +4 -1
- package/src/list-box/list-box.d.ts +4 -0
- package/src/list-box/list-box.js +9 -4
- package/src/mention/mention.js +6 -1
- package/src/multi-select/multi-select-model.d.ts +31 -0
- package/src/multi-select/multi-select.d.ts +45 -0
- package/src/multi-select/multi-select.js +251 -10
- package/styles/auto-complete/_tailwind3-definition.scss +2 -0
- package/styles/auto-complete/bds.css +75 -0
- package/styles/auto-complete/bds.scss +4 -0
- package/styles/auto-complete/highcontrast.css +1 -1
- package/styles/auto-complete/tailwind3.css +101 -0
- package/styles/auto-complete/tailwind3.scss +4 -0
- package/styles/bds-lite.css +3013 -0
- package/styles/bds-lite.scss +28 -0
- package/styles/bds.css +3855 -0
- package/styles/bds.scss +33 -0
- package/styles/bootstrap-dark-lite.css +41 -2
- package/styles/bootstrap-dark.css +41 -2
- package/styles/bootstrap-lite.css +30 -1
- package/styles/bootstrap.css +30 -1
- package/styles/bootstrap4-lite.css +30 -0
- package/styles/bootstrap4.css +30 -0
- package/styles/bootstrap5-dark-lite.css +30 -0
- package/styles/bootstrap5-dark.css +30 -0
- package/styles/bootstrap5-lite.css +30 -0
- package/styles/bootstrap5.3-lite.css +30 -3
- package/styles/bootstrap5.3.css +30 -3
- package/styles/bootstrap5.css +30 -0
- package/styles/combo-box/_tailwind3-definition.scss +2 -0
- package/styles/combo-box/bds.css +75 -0
- package/styles/combo-box/bds.scss +4 -0
- package/styles/combo-box/highcontrast.css +1 -1
- package/styles/combo-box/tailwind3.css +101 -0
- package/styles/combo-box/tailwind3.scss +4 -0
- package/styles/drop-down-base/_bigger.scss +3 -0
- package/styles/drop-down-base/_layout.scss +7 -0
- package/styles/drop-down-base/_tailwind3-definition.scss +98 -0
- package/styles/drop-down-base/bds.css +496 -0
- package/styles/drop-down-base/bds.scss +4 -0
- package/styles/drop-down-base/bootstrap-dark.css +4 -0
- package/styles/drop-down-base/bootstrap.css +4 -0
- package/styles/drop-down-base/bootstrap4.css +4 -0
- package/styles/drop-down-base/bootstrap5-dark.css +4 -0
- package/styles/drop-down-base/bootstrap5.3.css +4 -0
- package/styles/drop-down-base/bootstrap5.css +4 -0
- package/styles/drop-down-base/fabric-dark.css +4 -0
- package/styles/drop-down-base/fabric.css +4 -0
- package/styles/drop-down-base/fluent-dark.css +4 -0
- package/styles/drop-down-base/fluent.css +4 -0
- package/styles/drop-down-base/fluent2.css +9 -5
- package/styles/drop-down-base/highcontrast-light.css +4 -0
- package/styles/drop-down-base/highcontrast.css +4 -0
- package/styles/drop-down-base/material-dark.css +4 -0
- package/styles/drop-down-base/material.css +4 -0
- package/styles/drop-down-base/material3-dark.css +4 -0
- package/styles/drop-down-base/material3.css +4 -0
- package/styles/drop-down-base/tailwind-dark.css +4 -0
- package/styles/drop-down-base/tailwind.css +4 -0
- package/styles/drop-down-base/tailwind3.css +392 -0
- package/styles/drop-down-base/tailwind3.scss +4 -0
- package/styles/drop-down-list/_highcontrast-definition.scss +1 -1
- package/styles/drop-down-list/_layout.scss +18 -2
- package/styles/drop-down-list/_tailwind3-definition.scss +135 -0
- package/styles/drop-down-list/_theme.scss +3 -1
- package/styles/drop-down-list/bds.css +609 -0
- package/styles/drop-down-list/bds.scss +10 -0
- package/styles/drop-down-list/bootstrap-dark.css +18 -1
- package/styles/drop-down-list/bootstrap.css +13 -1
- package/styles/drop-down-list/bootstrap4.css +13 -0
- package/styles/drop-down-list/bootstrap5-dark.css +13 -0
- package/styles/drop-down-list/bootstrap5.3.css +13 -0
- package/styles/drop-down-list/bootstrap5.css +13 -0
- package/styles/drop-down-list/fabric-dark.css +18 -1
- package/styles/drop-down-list/fabric.css +13 -1
- package/styles/drop-down-list/fluent-dark.css +13 -1
- package/styles/drop-down-list/fluent.css +13 -1
- package/styles/drop-down-list/fluent2.css +13 -1
- package/styles/drop-down-list/highcontrast-light.css +9 -1
- package/styles/drop-down-list/highcontrast.css +19 -1
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +4 -0
- package/styles/drop-down-list/icons/_bootstrap.scss +4 -0
- package/styles/drop-down-list/icons/_bootstrap4.scss +4 -0
- package/styles/drop-down-list/icons/_bootstrap5.3.scss +4 -0
- package/styles/drop-down-list/icons/_bootstrap5.scss +4 -0
- package/styles/drop-down-list/icons/_fabric-dark.scss +4 -0
- package/styles/drop-down-list/icons/_fabric.scss +4 -0
- package/styles/drop-down-list/icons/_fluent.scss +4 -0
- package/styles/drop-down-list/icons/_fluent2.scss +4 -0
- package/styles/drop-down-list/icons/_highcontrast.scss +4 -0
- package/styles/drop-down-list/icons/_material-dark.scss +4 -0
- package/styles/drop-down-list/icons/_material.scss +4 -0
- package/styles/drop-down-list/icons/_material3.scss +4 -0
- package/styles/drop-down-list/icons/_tailwind.scss +4 -0
- package/styles/drop-down-list/icons/_tailwind3.scss +14 -0
- package/styles/drop-down-list/material-dark.css +18 -1
- package/styles/drop-down-list/material.css +13 -1
- package/styles/drop-down-list/material3-dark.css +13 -1
- package/styles/drop-down-list/material3.css +13 -1
- package/styles/drop-down-list/tailwind-dark.css +13 -1
- package/styles/drop-down-list/tailwind.css +13 -1
- package/styles/drop-down-list/tailwind3.css +455 -0
- package/styles/drop-down-list/tailwind3.scss +10 -0
- package/styles/drop-down-tree/_bigger.scss +41 -7
- package/styles/drop-down-tree/_layout.scss +34 -10
- package/styles/drop-down-tree/_tailwind3-definition.scss +67 -0
- package/styles/drop-down-tree/_theme.scss +3 -3
- package/styles/drop-down-tree/bds.css +712 -0
- package/styles/drop-down-tree/bds.scss +10 -0
- package/styles/drop-down-tree/bootstrap5.3.css +0 -3
- package/styles/drop-down-tree/icons/_tailwind3.scss +11 -0
- package/styles/drop-down-tree/tailwind3.css +512 -0
- package/styles/drop-down-tree/tailwind3.scss +10 -0
- package/styles/fabric-dark-lite.css +40 -1
- package/styles/fabric-dark.css +40 -1
- package/styles/fabric-lite.css +30 -1
- package/styles/fabric.css +30 -1
- package/styles/fluent-dark-lite.css +30 -1
- package/styles/fluent-dark.css +30 -1
- package/styles/fluent-lite.css +30 -1
- package/styles/fluent.css +30 -1
- package/styles/fluent2-lite.css +45 -12
- package/styles/fluent2.css +45 -12
- package/styles/highcontrast-light-lite.css +22 -1
- package/styles/highcontrast-light.css +22 -1
- package/styles/highcontrast-lite.css +41 -1
- package/styles/highcontrast.css +41 -1
- package/styles/list-box/_bigger.scss +18 -1
- package/styles/list-box/_layout.scss +29 -3
- package/styles/list-box/_tailwind3-definition.scss +123 -0
- package/styles/list-box/_theme.scss +11 -0
- package/styles/list-box/bds.css +971 -0
- package/styles/list-box/bds.scss +6 -0
- package/styles/list-box/fluent2.css +1 -1
- package/styles/list-box/icons/_tailwind3.scss +25 -0
- package/styles/list-box/tailwind3.css +991 -0
- package/styles/list-box/tailwind3.scss +6 -0
- package/styles/material-dark-lite.css +40 -1
- package/styles/material-dark.css +40 -1
- package/styles/material-lite.css +30 -1
- package/styles/material.css +30 -1
- package/styles/material3-dark-lite.css +36 -9
- package/styles/material3-dark.css +36 -9
- package/styles/material3-lite.css +36 -9
- package/styles/material3.css +36 -9
- package/styles/mention/_tailwind3-definition.scss +1 -0
- package/styles/mention/bds.css +78 -0
- package/styles/mention/bds.scss +6 -0
- package/styles/mention/tailwind3.css +67 -0
- package/styles/mention/tailwind3.scss +6 -0
- package/styles/multi-select/_bigger.scss +2 -2
- package/styles/multi-select/_bootstrap-dark-definition.scss +1 -1
- package/styles/multi-select/_layout.scss +27 -2
- package/styles/multi-select/_material3-definition.scss +2 -2
- package/styles/multi-select/_tailwind3-definition.scss +227 -0
- package/styles/multi-select/_theme.scss +1 -1
- package/styles/multi-select/bds.css +1575 -0
- package/styles/multi-select/bds.scss +10 -0
- package/styles/multi-select/bootstrap-dark.css +19 -1
- package/styles/multi-select/bootstrap.css +13 -0
- package/styles/multi-select/bootstrap4.css +13 -0
- package/styles/multi-select/bootstrap5-dark.css +13 -0
- package/styles/multi-select/bootstrap5.3.css +13 -0
- package/styles/multi-select/bootstrap5.css +13 -0
- package/styles/multi-select/fabric-dark.css +18 -0
- package/styles/multi-select/fabric.css +13 -0
- package/styles/multi-select/fluent-dark.css +13 -0
- package/styles/multi-select/fluent.css +13 -0
- package/styles/multi-select/fluent2.css +22 -5
- package/styles/multi-select/highcontrast-light.css +9 -0
- package/styles/multi-select/highcontrast.css +18 -0
- package/styles/multi-select/icons/_bootstrap-dark.scss +4 -0
- package/styles/multi-select/icons/_bootstrap.scss +4 -0
- package/styles/multi-select/icons/_bootstrap4.scss +4 -0
- package/styles/multi-select/icons/_bootstrap5.3.scss +4 -0
- package/styles/multi-select/icons/_bootstrap5.scss +4 -0
- package/styles/multi-select/icons/_fabric-dark.scss +4 -0
- package/styles/multi-select/icons/_fabric.scss +4 -0
- package/styles/multi-select/icons/_fluent.scss +4 -0
- package/styles/multi-select/icons/_fluent2.scss +4 -0
- package/styles/multi-select/icons/_highcontrast.scss +4 -0
- package/styles/multi-select/icons/_material-dark.scss +4 -0
- package/styles/multi-select/icons/_material.scss +4 -0
- package/styles/multi-select/icons/_material3.scss +4 -0
- package/styles/multi-select/icons/_tailwind.scss +4 -0
- package/styles/multi-select/icons/_tailwind3.scss +26 -0
- package/styles/multi-select/material-dark.css +18 -0
- package/styles/multi-select/material.css +13 -0
- package/styles/multi-select/material3-dark.css +19 -8
- package/styles/multi-select/material3.css +19 -8
- package/styles/multi-select/tailwind-dark.css +13 -0
- package/styles/multi-select/tailwind.css +13 -0
- package/styles/multi-select/tailwind3.css +1398 -0
- package/styles/multi-select/tailwind3.scss +10 -0
- package/styles/tailwind-dark-lite.css +30 -1
- package/styles/tailwind-dark.css +30 -1
- package/styles/tailwind-lite.css +30 -1
- package/styles/tailwind.css +30 -1
- package/styles/tailwind3-lite.css +2889 -0
- package/styles/tailwind3-lite.scss +28 -0
- package/styles/tailwind3.css +3550 -0
- package/styles/tailwind3.scss +33 -0
|
@@ -66,6 +66,10 @@
|
|
|
66
66
|
position: absolute;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
70
|
+
min-height: 36px;
|
|
71
|
+
}
|
|
72
|
+
|
|
69
73
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
70
74
|
display: inline;
|
|
71
75
|
font-weight: bold;
|
|
@@ -451,6 +455,10 @@
|
|
|
451
455
|
font-family: "e-icons";
|
|
452
456
|
}
|
|
453
457
|
|
|
458
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
459
|
+
content: "\eb05";
|
|
460
|
+
}
|
|
461
|
+
|
|
454
462
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
455
463
|
display: block;
|
|
456
464
|
visibility: hidden;
|
|
@@ -649,6 +657,20 @@ ejs-dropdownlist {
|
|
|
649
657
|
min-height: 33px;
|
|
650
658
|
}
|
|
651
659
|
|
|
660
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
661
|
+
bottom: 0;
|
|
662
|
+
right: 0;
|
|
663
|
+
cursor: nwse-resize;
|
|
664
|
+
height: 15px;
|
|
665
|
+
position: absolute;
|
|
666
|
+
width: 15px;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
670
|
+
background: transparent;
|
|
671
|
+
color: rgb(221, 218, 218);
|
|
672
|
+
}
|
|
673
|
+
|
|
652
674
|
.e-popup {
|
|
653
675
|
border-color: transparent;
|
|
654
676
|
}
|
|
@@ -660,7 +682,6 @@ ejs-dropdownlist {
|
|
|
660
682
|
|
|
661
683
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
662
684
|
border-color: transparent;
|
|
663
|
-
background: none;
|
|
664
685
|
}
|
|
665
686
|
|
|
666
687
|
/* stylelint-disable */
|
|
@@ -1433,6 +1454,10 @@ ejs-dropdownlist {
|
|
|
1433
1454
|
content: "";
|
|
1434
1455
|
}
|
|
1435
1456
|
|
|
1457
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1458
|
+
content: "\eb05";
|
|
1459
|
+
}
|
|
1460
|
+
|
|
1436
1461
|
.e-multi-select-wrapper {
|
|
1437
1462
|
-webkit-box-sizing: border-box;
|
|
1438
1463
|
box-sizing: border-box;
|
|
@@ -2427,6 +2452,20 @@ ejs-multiselect {
|
|
|
2427
2452
|
cursor: pointer;
|
|
2428
2453
|
}
|
|
2429
2454
|
|
|
2455
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2456
|
+
bottom: 0;
|
|
2457
|
+
right: 0;
|
|
2458
|
+
cursor: nwse-resize;
|
|
2459
|
+
height: 15px;
|
|
2460
|
+
position: absolute;
|
|
2461
|
+
width: 15px;
|
|
2462
|
+
}
|
|
2463
|
+
|
|
2464
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2465
|
+
background: transparent;
|
|
2466
|
+
color: rgb(221, 218, 218);
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2430
2469
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2431
2470
|
color: #fff;
|
|
2432
2471
|
}
|
package/styles/material-dark.css
CHANGED
|
@@ -66,6 +66,10 @@
|
|
|
66
66
|
position: absolute;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
70
|
+
min-height: 36px;
|
|
71
|
+
}
|
|
72
|
+
|
|
69
73
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
70
74
|
display: inline;
|
|
71
75
|
font-weight: bold;
|
|
@@ -525,6 +529,10 @@
|
|
|
525
529
|
font-family: "e-icons";
|
|
526
530
|
}
|
|
527
531
|
|
|
532
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
533
|
+
content: "\eb05";
|
|
534
|
+
}
|
|
535
|
+
|
|
528
536
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
529
537
|
display: block;
|
|
530
538
|
visibility: hidden;
|
|
@@ -723,6 +731,20 @@ ejs-dropdownlist {
|
|
|
723
731
|
min-height: 33px;
|
|
724
732
|
}
|
|
725
733
|
|
|
734
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
735
|
+
bottom: 0;
|
|
736
|
+
right: 0;
|
|
737
|
+
cursor: nwse-resize;
|
|
738
|
+
height: 15px;
|
|
739
|
+
position: absolute;
|
|
740
|
+
width: 15px;
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
744
|
+
background: transparent;
|
|
745
|
+
color: rgb(221, 218, 218);
|
|
746
|
+
}
|
|
747
|
+
|
|
726
748
|
.e-popup {
|
|
727
749
|
border-color: transparent;
|
|
728
750
|
}
|
|
@@ -734,7 +756,6 @@ ejs-dropdownlist {
|
|
|
734
756
|
|
|
735
757
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
736
758
|
border-color: transparent;
|
|
737
|
-
background: none;
|
|
738
759
|
}
|
|
739
760
|
|
|
740
761
|
.e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
|
|
@@ -1839,6 +1860,10 @@ ejs-dropdownlist {
|
|
|
1839
1860
|
content: "";
|
|
1840
1861
|
}
|
|
1841
1862
|
|
|
1863
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1864
|
+
content: "\eb05";
|
|
1865
|
+
}
|
|
1866
|
+
|
|
1842
1867
|
.e-multi-select-wrapper {
|
|
1843
1868
|
-webkit-box-sizing: border-box;
|
|
1844
1869
|
box-sizing: border-box;
|
|
@@ -2833,6 +2858,20 @@ ejs-multiselect {
|
|
|
2833
2858
|
cursor: pointer;
|
|
2834
2859
|
}
|
|
2835
2860
|
|
|
2861
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2862
|
+
bottom: 0;
|
|
2863
|
+
right: 0;
|
|
2864
|
+
cursor: nwse-resize;
|
|
2865
|
+
height: 15px;
|
|
2866
|
+
position: absolute;
|
|
2867
|
+
width: 15px;
|
|
2868
|
+
}
|
|
2869
|
+
|
|
2870
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2871
|
+
background: transparent;
|
|
2872
|
+
color: rgb(221, 218, 218);
|
|
2873
|
+
}
|
|
2874
|
+
|
|
2836
2875
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2837
2876
|
color: #fff;
|
|
2838
2877
|
}
|
package/styles/material-lite.css
CHANGED
|
@@ -66,6 +66,10 @@
|
|
|
66
66
|
position: absolute;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
70
|
+
min-height: 36px;
|
|
71
|
+
}
|
|
72
|
+
|
|
69
73
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
70
74
|
display: inline;
|
|
71
75
|
font-weight: bold;
|
|
@@ -475,6 +479,10 @@
|
|
|
475
479
|
font-family: "e-icons";
|
|
476
480
|
}
|
|
477
481
|
|
|
482
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
483
|
+
content: "\eb05";
|
|
484
|
+
}
|
|
485
|
+
|
|
478
486
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
479
487
|
display: block;
|
|
480
488
|
visibility: hidden;
|
|
@@ -672,6 +680,15 @@ ejs-dropdownlist {
|
|
|
672
680
|
min-height: 33px;
|
|
673
681
|
}
|
|
674
682
|
|
|
683
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
684
|
+
bottom: 0;
|
|
685
|
+
right: 0;
|
|
686
|
+
cursor: nwse-resize;
|
|
687
|
+
height: 15px;
|
|
688
|
+
position: absolute;
|
|
689
|
+
width: 15px;
|
|
690
|
+
}
|
|
691
|
+
|
|
675
692
|
.e-popup {
|
|
676
693
|
border-color: #e0e0e0;
|
|
677
694
|
}
|
|
@@ -683,7 +700,6 @@ ejs-dropdownlist {
|
|
|
683
700
|
|
|
684
701
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
685
702
|
border-color: transparent;
|
|
686
|
-
background: none;
|
|
687
703
|
}
|
|
688
704
|
|
|
689
705
|
/*! TreeView's material theme wise override definitions and variables */
|
|
@@ -1460,6 +1476,10 @@ ejs-dropdownlist {
|
|
|
1460
1476
|
content: "";
|
|
1461
1477
|
}
|
|
1462
1478
|
|
|
1479
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1480
|
+
content: "\eb05";
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1463
1483
|
.e-multi-select-wrapper {
|
|
1464
1484
|
-webkit-box-sizing: border-box;
|
|
1465
1485
|
box-sizing: border-box;
|
|
@@ -2454,6 +2474,15 @@ ejs-multiselect {
|
|
|
2454
2474
|
cursor: pointer;
|
|
2455
2475
|
}
|
|
2456
2476
|
|
|
2477
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2478
|
+
bottom: 0;
|
|
2479
|
+
right: 0;
|
|
2480
|
+
cursor: nwse-resize;
|
|
2481
|
+
height: 15px;
|
|
2482
|
+
position: absolute;
|
|
2483
|
+
width: 15px;
|
|
2484
|
+
}
|
|
2485
|
+
|
|
2457
2486
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2458
2487
|
color: #fff;
|
|
2459
2488
|
}
|
package/styles/material.css
CHANGED
|
@@ -66,6 +66,10 @@
|
|
|
66
66
|
position: absolute;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
70
|
+
min-height: 36px;
|
|
71
|
+
}
|
|
72
|
+
|
|
69
73
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
70
74
|
display: inline;
|
|
71
75
|
font-weight: bold;
|
|
@@ -549,6 +553,10 @@
|
|
|
549
553
|
font-family: "e-icons";
|
|
550
554
|
}
|
|
551
555
|
|
|
556
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
557
|
+
content: "\eb05";
|
|
558
|
+
}
|
|
559
|
+
|
|
552
560
|
.e-popup.e-wide-popup.e-ddl-device.e-popup-close {
|
|
553
561
|
display: block;
|
|
554
562
|
visibility: hidden;
|
|
@@ -746,6 +754,15 @@ ejs-dropdownlist {
|
|
|
746
754
|
min-height: 33px;
|
|
747
755
|
}
|
|
748
756
|
|
|
757
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
758
|
+
bottom: 0;
|
|
759
|
+
right: 0;
|
|
760
|
+
cursor: nwse-resize;
|
|
761
|
+
height: 15px;
|
|
762
|
+
position: absolute;
|
|
763
|
+
width: 15px;
|
|
764
|
+
}
|
|
765
|
+
|
|
749
766
|
.e-popup {
|
|
750
767
|
border-color: #e0e0e0;
|
|
751
768
|
}
|
|
@@ -757,7 +774,6 @@ ejs-dropdownlist {
|
|
|
757
774
|
|
|
758
775
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
759
776
|
border-color: transparent;
|
|
760
|
-
background: none;
|
|
761
777
|
}
|
|
762
778
|
|
|
763
779
|
.e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
|
|
@@ -1887,6 +1903,10 @@ ejs-dropdownlist {
|
|
|
1887
1903
|
content: "";
|
|
1888
1904
|
}
|
|
1889
1905
|
|
|
1906
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1907
|
+
content: "\eb05";
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1890
1910
|
.e-multi-select-wrapper {
|
|
1891
1911
|
-webkit-box-sizing: border-box;
|
|
1892
1912
|
box-sizing: border-box;
|
|
@@ -2881,6 +2901,15 @@ ejs-multiselect {
|
|
|
2881
2901
|
cursor: pointer;
|
|
2882
2902
|
}
|
|
2883
2903
|
|
|
2904
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2905
|
+
bottom: 0;
|
|
2906
|
+
right: 0;
|
|
2907
|
+
cursor: nwse-resize;
|
|
2908
|
+
height: 15px;
|
|
2909
|
+
position: absolute;
|
|
2910
|
+
width: 15px;
|
|
2911
|
+
}
|
|
2912
|
+
|
|
2884
2913
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2885
2914
|
color: #fff;
|
|
2886
2915
|
}
|
|
@@ -69,6 +69,10 @@
|
|
|
69
69
|
position: absolute;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
73
|
+
min-height: 32px;
|
|
74
|
+
}
|
|
75
|
+
|
|
72
76
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
73
77
|
display: inline;
|
|
74
78
|
font-weight: bold;
|
|
@@ -494,6 +498,10 @@
|
|
|
494
498
|
font-family: "e-icons";
|
|
495
499
|
}
|
|
496
500
|
|
|
501
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
502
|
+
content: "\e832";
|
|
503
|
+
}
|
|
504
|
+
|
|
497
505
|
.e-ddl.e-popup .e-input-group {
|
|
498
506
|
margin-top: 4px;
|
|
499
507
|
}
|
|
@@ -697,6 +705,15 @@ ejs-dropdownlist {
|
|
|
697
705
|
min-height: 33px;
|
|
698
706
|
}
|
|
699
707
|
|
|
708
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
709
|
+
bottom: 0;
|
|
710
|
+
right: 0;
|
|
711
|
+
cursor: nwse-resize;
|
|
712
|
+
height: 15px;
|
|
713
|
+
position: absolute;
|
|
714
|
+
width: 15px;
|
|
715
|
+
}
|
|
716
|
+
|
|
700
717
|
.e-popup {
|
|
701
718
|
border-color: rgba(var(--color-sf-primary));
|
|
702
719
|
}
|
|
@@ -708,7 +725,6 @@ ejs-dropdownlist {
|
|
|
708
725
|
|
|
709
726
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
710
727
|
border-color: transparent;
|
|
711
|
-
background: none;
|
|
712
728
|
}
|
|
713
729
|
|
|
714
730
|
.e-ddt .e-ddt-icon::before {
|
|
@@ -1332,6 +1348,10 @@ ejs-dropdownlist {
|
|
|
1332
1348
|
content: "";
|
|
1333
1349
|
}
|
|
1334
1350
|
|
|
1351
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1352
|
+
content: "\e832";
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1335
1355
|
.e-multi-select-wrapper {
|
|
1336
1356
|
-webkit-box-sizing: border-box;
|
|
1337
1357
|
box-sizing: border-box;
|
|
@@ -1783,16 +1803,14 @@ ejs-dropdownlist {
|
|
|
1783
1803
|
left: 30px;
|
|
1784
1804
|
position: absolute;
|
|
1785
1805
|
right: auto;
|
|
1786
|
-
|
|
1787
|
-
.e-multiselect.e-rtl .e-multi-select-wrapper .e-close-hooker::before {
|
|
1788
|
-
left: -4px;
|
|
1806
|
+
left: 0;
|
|
1789
1807
|
}
|
|
1790
1808
|
.e-multiselect.e-rtl .e-multi-select-wrapper .e-delim-values .e-remain {
|
|
1791
1809
|
padding-right: 16px;
|
|
1792
1810
|
}
|
|
1793
1811
|
|
|
1794
1812
|
.e-multiselect.e-rtl .e-down-icon .e-chips-close.e-close-hooker {
|
|
1795
|
-
left:
|
|
1813
|
+
left: 30px;
|
|
1796
1814
|
}
|
|
1797
1815
|
|
|
1798
1816
|
.e-multiselect.e-rtl .e-multi-select-wrapper.e-down-icon .e-close-hooker::before {
|
|
@@ -2365,6 +2383,15 @@ ejs-multiselect {
|
|
|
2365
2383
|
cursor: pointer;
|
|
2366
2384
|
}
|
|
2367
2385
|
|
|
2386
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2387
|
+
bottom: 0;
|
|
2388
|
+
right: 0;
|
|
2389
|
+
cursor: nwse-resize;
|
|
2390
|
+
height: 15px;
|
|
2391
|
+
position: absolute;
|
|
2392
|
+
width: 15px;
|
|
2393
|
+
}
|
|
2394
|
+
|
|
2368
2395
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2369
2396
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
2370
2397
|
}
|
|
@@ -2520,19 +2547,19 @@ ejs-multiselect {
|
|
|
2520
2547
|
}
|
|
2521
2548
|
|
|
2522
2549
|
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2523
|
-
color: rgba(var(--color-sf-
|
|
2550
|
+
color: rgba(var(--color-sf-outline));
|
|
2524
2551
|
}
|
|
2525
2552
|
|
|
2526
2553
|
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2527
|
-
color: rgba(var(--color-sf-
|
|
2554
|
+
color: rgba(var(--color-sf-outline));
|
|
2528
2555
|
}
|
|
2529
2556
|
|
|
2530
2557
|
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2531
|
-
color: rgba(var(--color-sf-
|
|
2558
|
+
color: rgba(var(--color-sf-outline));
|
|
2532
2559
|
}
|
|
2533
2560
|
|
|
2534
2561
|
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2535
|
-
color: rgba(var(--color-sf-
|
|
2562
|
+
color: rgba(var(--color-sf-outline));
|
|
2536
2563
|
}
|
|
2537
2564
|
|
|
2538
2565
|
.e-ul.e-reorder {
|
|
@@ -69,6 +69,10 @@
|
|
|
69
69
|
position: absolute;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
73
|
+
min-height: 32px;
|
|
74
|
+
}
|
|
75
|
+
|
|
72
76
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
73
77
|
display: inline;
|
|
74
78
|
font-weight: bold;
|
|
@@ -568,6 +572,10 @@
|
|
|
568
572
|
font-family: "e-icons";
|
|
569
573
|
}
|
|
570
574
|
|
|
575
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
576
|
+
content: "\e832";
|
|
577
|
+
}
|
|
578
|
+
|
|
571
579
|
.e-ddl.e-popup .e-input-group {
|
|
572
580
|
margin-top: 4px;
|
|
573
581
|
}
|
|
@@ -771,6 +779,15 @@ ejs-dropdownlist {
|
|
|
771
779
|
min-height: 33px;
|
|
772
780
|
}
|
|
773
781
|
|
|
782
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
783
|
+
bottom: 0;
|
|
784
|
+
right: 0;
|
|
785
|
+
cursor: nwse-resize;
|
|
786
|
+
height: 15px;
|
|
787
|
+
position: absolute;
|
|
788
|
+
width: 15px;
|
|
789
|
+
}
|
|
790
|
+
|
|
774
791
|
.e-popup {
|
|
775
792
|
border-color: rgba(var(--color-sf-primary));
|
|
776
793
|
}
|
|
@@ -782,7 +799,6 @@ ejs-dropdownlist {
|
|
|
782
799
|
|
|
783
800
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
784
801
|
border-color: transparent;
|
|
785
|
-
background: none;
|
|
786
802
|
}
|
|
787
803
|
|
|
788
804
|
.e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
|
|
@@ -1565,6 +1581,10 @@ ejs-dropdownlist {
|
|
|
1565
1581
|
content: "";
|
|
1566
1582
|
}
|
|
1567
1583
|
|
|
1584
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1585
|
+
content: "\e832";
|
|
1586
|
+
}
|
|
1587
|
+
|
|
1568
1588
|
.e-multi-select-wrapper {
|
|
1569
1589
|
-webkit-box-sizing: border-box;
|
|
1570
1590
|
box-sizing: border-box;
|
|
@@ -2016,16 +2036,14 @@ ejs-dropdownlist {
|
|
|
2016
2036
|
left: 30px;
|
|
2017
2037
|
position: absolute;
|
|
2018
2038
|
right: auto;
|
|
2019
|
-
|
|
2020
|
-
.e-multiselect.e-rtl .e-multi-select-wrapper .e-close-hooker::before {
|
|
2021
|
-
left: -4px;
|
|
2039
|
+
left: 0;
|
|
2022
2040
|
}
|
|
2023
2041
|
.e-multiselect.e-rtl .e-multi-select-wrapper .e-delim-values .e-remain {
|
|
2024
2042
|
padding-right: 16px;
|
|
2025
2043
|
}
|
|
2026
2044
|
|
|
2027
2045
|
.e-multiselect.e-rtl .e-down-icon .e-chips-close.e-close-hooker {
|
|
2028
|
-
left:
|
|
2046
|
+
left: 30px;
|
|
2029
2047
|
}
|
|
2030
2048
|
|
|
2031
2049
|
.e-multiselect.e-rtl .e-multi-select-wrapper.e-down-icon .e-close-hooker::before {
|
|
@@ -2598,6 +2616,15 @@ ejs-multiselect {
|
|
|
2598
2616
|
cursor: pointer;
|
|
2599
2617
|
}
|
|
2600
2618
|
|
|
2619
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2620
|
+
bottom: 0;
|
|
2621
|
+
right: 0;
|
|
2622
|
+
cursor: nwse-resize;
|
|
2623
|
+
height: 15px;
|
|
2624
|
+
position: absolute;
|
|
2625
|
+
width: 15px;
|
|
2626
|
+
}
|
|
2627
|
+
|
|
2601
2628
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2602
2629
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
2603
2630
|
}
|
|
@@ -2753,19 +2780,19 @@ ejs-multiselect {
|
|
|
2753
2780
|
}
|
|
2754
2781
|
|
|
2755
2782
|
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2756
|
-
color: rgba(var(--color-sf-
|
|
2783
|
+
color: rgba(var(--color-sf-outline));
|
|
2757
2784
|
}
|
|
2758
2785
|
|
|
2759
2786
|
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2760
|
-
color: rgba(var(--color-sf-
|
|
2787
|
+
color: rgba(var(--color-sf-outline));
|
|
2761
2788
|
}
|
|
2762
2789
|
|
|
2763
2790
|
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2764
|
-
color: rgba(var(--color-sf-
|
|
2791
|
+
color: rgba(var(--color-sf-outline));
|
|
2765
2792
|
}
|
|
2766
2793
|
|
|
2767
2794
|
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2768
|
-
color: rgba(var(--color-sf-
|
|
2795
|
+
color: rgba(var(--color-sf-outline));
|
|
2769
2796
|
}
|
|
2770
2797
|
|
|
2771
2798
|
.e-ul.e-reorder {
|
|
@@ -71,6 +71,10 @@
|
|
|
71
71
|
position: absolute;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
+
.e-mention.e-popup .e-dropdownbase {
|
|
75
|
+
min-height: 32px;
|
|
76
|
+
}
|
|
77
|
+
|
|
74
78
|
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
75
79
|
display: inline;
|
|
76
80
|
font-weight: bold;
|
|
@@ -496,6 +500,10 @@
|
|
|
496
500
|
font-family: "e-icons";
|
|
497
501
|
}
|
|
498
502
|
|
|
503
|
+
.e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
|
|
504
|
+
content: "\e832";
|
|
505
|
+
}
|
|
506
|
+
|
|
499
507
|
.e-ddl.e-popup .e-input-group {
|
|
500
508
|
margin-top: 4px;
|
|
501
509
|
}
|
|
@@ -699,6 +707,15 @@ ejs-dropdownlist {
|
|
|
699
707
|
min-height: 33px;
|
|
700
708
|
}
|
|
701
709
|
|
|
710
|
+
.e-ddl.e-popup.e-resize .e-resizer-right {
|
|
711
|
+
bottom: 0;
|
|
712
|
+
right: 0;
|
|
713
|
+
cursor: nwse-resize;
|
|
714
|
+
height: 15px;
|
|
715
|
+
position: absolute;
|
|
716
|
+
width: 15px;
|
|
717
|
+
}
|
|
718
|
+
|
|
702
719
|
.e-popup {
|
|
703
720
|
border-color: rgba(var(--color-sf-primary));
|
|
704
721
|
}
|
|
@@ -710,7 +727,6 @@ ejs-dropdownlist {
|
|
|
710
727
|
|
|
711
728
|
.e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
|
|
712
729
|
border-color: transparent;
|
|
713
|
-
background: none;
|
|
714
730
|
}
|
|
715
731
|
|
|
716
732
|
.e-ddt .e-ddt-icon::before {
|
|
@@ -1334,6 +1350,10 @@ ejs-dropdownlist {
|
|
|
1334
1350
|
content: "";
|
|
1335
1351
|
}
|
|
1336
1352
|
|
|
1353
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
|
|
1354
|
+
content: "\e832";
|
|
1355
|
+
}
|
|
1356
|
+
|
|
1337
1357
|
.e-multi-select-wrapper {
|
|
1338
1358
|
-webkit-box-sizing: border-box;
|
|
1339
1359
|
box-sizing: border-box;
|
|
@@ -1785,16 +1805,14 @@ ejs-dropdownlist {
|
|
|
1785
1805
|
left: 30px;
|
|
1786
1806
|
position: absolute;
|
|
1787
1807
|
right: auto;
|
|
1788
|
-
|
|
1789
|
-
.e-multiselect.e-rtl .e-multi-select-wrapper .e-close-hooker::before {
|
|
1790
|
-
left: -4px;
|
|
1808
|
+
left: 0;
|
|
1791
1809
|
}
|
|
1792
1810
|
.e-multiselect.e-rtl .e-multi-select-wrapper .e-delim-values .e-remain {
|
|
1793
1811
|
padding-right: 16px;
|
|
1794
1812
|
}
|
|
1795
1813
|
|
|
1796
1814
|
.e-multiselect.e-rtl .e-down-icon .e-chips-close.e-close-hooker {
|
|
1797
|
-
left:
|
|
1815
|
+
left: 30px;
|
|
1798
1816
|
}
|
|
1799
1817
|
|
|
1800
1818
|
.e-multiselect.e-rtl .e-multi-select-wrapper.e-down-icon .e-close-hooker::before {
|
|
@@ -2367,6 +2385,15 @@ ejs-multiselect {
|
|
|
2367
2385
|
cursor: pointer;
|
|
2368
2386
|
}
|
|
2369
2387
|
|
|
2388
|
+
.e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
|
|
2389
|
+
bottom: 0;
|
|
2390
|
+
right: 0;
|
|
2391
|
+
cursor: nwse-resize;
|
|
2392
|
+
height: 15px;
|
|
2393
|
+
position: absolute;
|
|
2394
|
+
width: 15px;
|
|
2395
|
+
}
|
|
2396
|
+
|
|
2370
2397
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2371
2398
|
color: rgba(var(--color-sf-on-surface-variant));
|
|
2372
2399
|
}
|
|
@@ -2522,19 +2549,19 @@ ejs-multiselect {
|
|
|
2522
2549
|
}
|
|
2523
2550
|
|
|
2524
2551
|
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2525
|
-
color: rgba(var(--color-sf-
|
|
2552
|
+
color: rgba(var(--color-sf-outline));
|
|
2526
2553
|
}
|
|
2527
2554
|
|
|
2528
2555
|
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2529
|
-
color: rgba(var(--color-sf-
|
|
2556
|
+
color: rgba(var(--color-sf-outline));
|
|
2530
2557
|
}
|
|
2531
2558
|
|
|
2532
2559
|
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2533
|
-
color: rgba(var(--color-sf-
|
|
2560
|
+
color: rgba(var(--color-sf-outline));
|
|
2534
2561
|
}
|
|
2535
2562
|
|
|
2536
2563
|
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
2537
|
-
color: rgba(var(--color-sf-
|
|
2564
|
+
color: rgba(var(--color-sf-outline));
|
|
2538
2565
|
}
|
|
2539
2566
|
|
|
2540
2567
|
.e-ul.e-reorder {
|