@syncfusion/ej2-dropdowns 27.2.5 → 28.1.35

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.
Files changed (224) hide show
  1. package/README.md +2 -2
  2. package/dist/ej2-dropdowns.min.js +3 -3
  3. package/dist/ej2-dropdowns.umd.min.js +3 -3
  4. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-dropdowns.es2015.js +511 -40
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +510 -38
  8. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  9. package/dist/global/ej2-dropdowns.min.js +3 -3
  10. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  11. package/dist/global/index.d.ts +2 -2
  12. package/package.json +13 -13
  13. package/src/auto-complete/auto-complete.js +5 -2
  14. package/src/combo-box/combo-box.js +2 -1
  15. package/src/common/incremental-search.d.ts +1 -1
  16. package/src/common/incremental-search.js +5 -1
  17. package/src/common/virtual-scroll.js +2 -1
  18. package/src/drop-down-base/drop-down-base.js +14 -2
  19. package/src/drop-down-list/drop-down-list-model.d.ts +31 -0
  20. package/src/drop-down-list/drop-down-list.d.ts +45 -1
  21. package/src/drop-down-list/drop-down-list.js +213 -13
  22. package/src/drop-down-tree/drop-down-tree.d.ts +1 -0
  23. package/src/drop-down-tree/drop-down-tree.js +4 -3
  24. package/src/list-box/list-box.d.ts +4 -0
  25. package/src/list-box/list-box.js +9 -4
  26. package/src/mention/mention.js +6 -1
  27. package/src/multi-select/multi-select-model.d.ts +31 -0
  28. package/src/multi-select/multi-select.d.ts +45 -0
  29. package/src/multi-select/multi-select.js +250 -10
  30. package/styles/auto-complete/_tailwind3-definition.scss +2 -0
  31. package/styles/auto-complete/bds.css +75 -0
  32. package/styles/auto-complete/bds.scss +4 -0
  33. package/styles/auto-complete/highcontrast.css +1 -1
  34. package/styles/auto-complete/tailwind3.css +101 -0
  35. package/styles/auto-complete/tailwind3.scss +4 -0
  36. package/styles/bds-lite.css +3013 -0
  37. package/styles/bds-lite.scss +28 -0
  38. package/styles/bds.css +3855 -0
  39. package/styles/bds.scss +33 -0
  40. package/styles/bootstrap-dark-lite.css +41 -2
  41. package/styles/bootstrap-dark.css +41 -2
  42. package/styles/bootstrap-lite.css +30 -1
  43. package/styles/bootstrap.css +30 -1
  44. package/styles/bootstrap4-lite.css +30 -0
  45. package/styles/bootstrap4.css +30 -0
  46. package/styles/bootstrap5-dark-lite.css +31 -0
  47. package/styles/bootstrap5-dark.css +31 -0
  48. package/styles/bootstrap5-lite.css +31 -0
  49. package/styles/bootstrap5.3-lite.css +31 -3
  50. package/styles/bootstrap5.3.css +31 -3
  51. package/styles/bootstrap5.css +31 -0
  52. package/styles/combo-box/_tailwind3-definition.scss +2 -0
  53. package/styles/combo-box/bds.css +75 -0
  54. package/styles/combo-box/bds.scss +4 -0
  55. package/styles/combo-box/highcontrast.css +1 -1
  56. package/styles/combo-box/tailwind3.css +101 -0
  57. package/styles/combo-box/tailwind3.scss +4 -0
  58. package/styles/drop-down-base/_bigger.scss +3 -0
  59. package/styles/drop-down-base/_layout.scss +7 -0
  60. package/styles/drop-down-base/_tailwind3-definition.scss +98 -0
  61. package/styles/drop-down-base/bds.css +496 -0
  62. package/styles/drop-down-base/bds.scss +4 -0
  63. package/styles/drop-down-base/bootstrap-dark.css +4 -0
  64. package/styles/drop-down-base/bootstrap.css +4 -0
  65. package/styles/drop-down-base/bootstrap4.css +4 -0
  66. package/styles/drop-down-base/bootstrap5-dark.css +4 -0
  67. package/styles/drop-down-base/bootstrap5.3.css +4 -0
  68. package/styles/drop-down-base/bootstrap5.css +4 -0
  69. package/styles/drop-down-base/fabric-dark.css +4 -0
  70. package/styles/drop-down-base/fabric.css +4 -0
  71. package/styles/drop-down-base/fluent-dark.css +4 -0
  72. package/styles/drop-down-base/fluent.css +4 -0
  73. package/styles/drop-down-base/fluent2.css +9 -5
  74. package/styles/drop-down-base/highcontrast-light.css +4 -0
  75. package/styles/drop-down-base/highcontrast.css +4 -0
  76. package/styles/drop-down-base/material-dark.css +4 -0
  77. package/styles/drop-down-base/material.css +4 -0
  78. package/styles/drop-down-base/material3-dark.css +4 -0
  79. package/styles/drop-down-base/material3.css +4 -0
  80. package/styles/drop-down-base/tailwind-dark.css +4 -0
  81. package/styles/drop-down-base/tailwind.css +4 -0
  82. package/styles/drop-down-base/tailwind3.css +392 -0
  83. package/styles/drop-down-base/tailwind3.scss +4 -0
  84. package/styles/drop-down-list/_highcontrast-definition.scss +1 -1
  85. package/styles/drop-down-list/_layout.scss +18 -2
  86. package/styles/drop-down-list/_tailwind3-definition.scss +135 -0
  87. package/styles/drop-down-list/_theme.scss +3 -1
  88. package/styles/drop-down-list/bds.css +609 -0
  89. package/styles/drop-down-list/bds.scss +10 -0
  90. package/styles/drop-down-list/bootstrap-dark.css +18 -1
  91. package/styles/drop-down-list/bootstrap.css +13 -1
  92. package/styles/drop-down-list/bootstrap4.css +13 -0
  93. package/styles/drop-down-list/bootstrap5-dark.css +13 -0
  94. package/styles/drop-down-list/bootstrap5.3.css +13 -0
  95. package/styles/drop-down-list/bootstrap5.css +13 -0
  96. package/styles/drop-down-list/fabric-dark.css +18 -1
  97. package/styles/drop-down-list/fabric.css +13 -1
  98. package/styles/drop-down-list/fluent-dark.css +13 -1
  99. package/styles/drop-down-list/fluent.css +13 -1
  100. package/styles/drop-down-list/fluent2.css +13 -1
  101. package/styles/drop-down-list/highcontrast-light.css +9 -1
  102. package/styles/drop-down-list/highcontrast.css +19 -1
  103. package/styles/drop-down-list/icons/_bootstrap-dark.scss +4 -0
  104. package/styles/drop-down-list/icons/_bootstrap.scss +4 -0
  105. package/styles/drop-down-list/icons/_bootstrap4.scss +4 -0
  106. package/styles/drop-down-list/icons/_bootstrap5.3.scss +4 -0
  107. package/styles/drop-down-list/icons/_bootstrap5.scss +4 -0
  108. package/styles/drop-down-list/icons/_fabric-dark.scss +4 -0
  109. package/styles/drop-down-list/icons/_fabric.scss +4 -0
  110. package/styles/drop-down-list/icons/_fluent.scss +4 -0
  111. package/styles/drop-down-list/icons/_fluent2.scss +4 -0
  112. package/styles/drop-down-list/icons/_highcontrast.scss +4 -0
  113. package/styles/drop-down-list/icons/_material-dark.scss +4 -0
  114. package/styles/drop-down-list/icons/_material.scss +4 -0
  115. package/styles/drop-down-list/icons/_material3.scss +4 -0
  116. package/styles/drop-down-list/icons/_tailwind.scss +4 -0
  117. package/styles/drop-down-list/icons/_tailwind3.scss +14 -0
  118. package/styles/drop-down-list/material-dark.css +18 -1
  119. package/styles/drop-down-list/material.css +13 -1
  120. package/styles/drop-down-list/material3-dark.css +13 -1
  121. package/styles/drop-down-list/material3.css +13 -1
  122. package/styles/drop-down-list/tailwind-dark.css +13 -1
  123. package/styles/drop-down-list/tailwind.css +13 -1
  124. package/styles/drop-down-list/tailwind3.css +456 -0
  125. package/styles/drop-down-list/tailwind3.scss +10 -0
  126. package/styles/drop-down-tree/_bigger.scss +41 -7
  127. package/styles/drop-down-tree/_layout.scss +34 -10
  128. package/styles/drop-down-tree/_tailwind3-definition.scss +67 -0
  129. package/styles/drop-down-tree/_theme.scss +3 -3
  130. package/styles/drop-down-tree/bds.css +712 -0
  131. package/styles/drop-down-tree/bds.scss +10 -0
  132. package/styles/drop-down-tree/bootstrap5.3.css +0 -3
  133. package/styles/drop-down-tree/icons/_tailwind3.scss +11 -0
  134. package/styles/drop-down-tree/tailwind3.css +512 -0
  135. package/styles/drop-down-tree/tailwind3.scss +10 -0
  136. package/styles/fabric-dark-lite.css +40 -1
  137. package/styles/fabric-dark.css +40 -1
  138. package/styles/fabric-lite.css +30 -1
  139. package/styles/fabric.css +30 -1
  140. package/styles/fluent-dark-lite.css +31 -1
  141. package/styles/fluent-dark.css +31 -1
  142. package/styles/fluent-lite.css +31 -1
  143. package/styles/fluent.css +31 -1
  144. package/styles/fluent2-lite.css +45 -12
  145. package/styles/fluent2.css +45 -12
  146. package/styles/highcontrast-light-lite.css +22 -1
  147. package/styles/highcontrast-light.css +22 -1
  148. package/styles/highcontrast-lite.css +41 -1
  149. package/styles/highcontrast.css +41 -1
  150. package/styles/list-box/_bigger.scss +18 -1
  151. package/styles/list-box/_layout.scss +29 -3
  152. package/styles/list-box/_tailwind3-definition.scss +123 -0
  153. package/styles/list-box/_theme.scss +11 -0
  154. package/styles/list-box/bds.css +971 -0
  155. package/styles/list-box/bds.scss +6 -0
  156. package/styles/list-box/fluent2.css +1 -1
  157. package/styles/list-box/icons/_tailwind3.scss +25 -0
  158. package/styles/list-box/tailwind3.css +991 -0
  159. package/styles/list-box/tailwind3.scss +6 -0
  160. package/styles/material-dark-lite.css +40 -1
  161. package/styles/material-dark.css +40 -1
  162. package/styles/material-lite.css +30 -1
  163. package/styles/material.css +30 -1
  164. package/styles/material3-dark-lite.css +32 -5
  165. package/styles/material3-dark.css +32 -5
  166. package/styles/material3-lite.css +32 -5
  167. package/styles/material3.css +32 -5
  168. package/styles/mention/_tailwind3-definition.scss +1 -0
  169. package/styles/mention/bds.css +78 -0
  170. package/styles/mention/bds.scss +6 -0
  171. package/styles/mention/tailwind3.css +67 -0
  172. package/styles/mention/tailwind3.scss +6 -0
  173. package/styles/multi-select/_bigger.scss +2 -2
  174. package/styles/multi-select/_bootstrap-dark-definition.scss +1 -1
  175. package/styles/multi-select/_layout.scss +28 -5
  176. package/styles/multi-select/_material3-definition.scss +1 -1
  177. package/styles/multi-select/_tailwind3-definition.scss +227 -0
  178. package/styles/multi-select/_theme.scss +1 -1
  179. package/styles/multi-select/bds.css +1575 -0
  180. package/styles/multi-select/bds.scss +10 -0
  181. package/styles/multi-select/bootstrap-dark.css +19 -1
  182. package/styles/multi-select/bootstrap.css +13 -0
  183. package/styles/multi-select/bootstrap4.css +13 -0
  184. package/styles/multi-select/bootstrap5-dark.css +14 -0
  185. package/styles/multi-select/bootstrap5.3.css +14 -0
  186. package/styles/multi-select/bootstrap5.css +14 -0
  187. package/styles/multi-select/fabric-dark.css +18 -0
  188. package/styles/multi-select/fabric.css +13 -0
  189. package/styles/multi-select/fluent-dark.css +14 -0
  190. package/styles/multi-select/fluent.css +14 -0
  191. package/styles/multi-select/fluent2.css +22 -5
  192. package/styles/multi-select/highcontrast-light.css +9 -0
  193. package/styles/multi-select/highcontrast.css +18 -0
  194. package/styles/multi-select/icons/_bootstrap-dark.scss +4 -0
  195. package/styles/multi-select/icons/_bootstrap.scss +4 -0
  196. package/styles/multi-select/icons/_bootstrap4.scss +4 -0
  197. package/styles/multi-select/icons/_bootstrap5.3.scss +4 -0
  198. package/styles/multi-select/icons/_bootstrap5.scss +4 -0
  199. package/styles/multi-select/icons/_fabric-dark.scss +4 -0
  200. package/styles/multi-select/icons/_fabric.scss +4 -0
  201. package/styles/multi-select/icons/_fluent.scss +4 -0
  202. package/styles/multi-select/icons/_fluent2.scss +4 -0
  203. package/styles/multi-select/icons/_highcontrast.scss +4 -0
  204. package/styles/multi-select/icons/_material-dark.scss +4 -0
  205. package/styles/multi-select/icons/_material.scss +4 -0
  206. package/styles/multi-select/icons/_material3.scss +4 -0
  207. package/styles/multi-select/icons/_tailwind.scss +4 -0
  208. package/styles/multi-select/icons/_tailwind3.scss +26 -0
  209. package/styles/multi-select/material-dark.css +18 -0
  210. package/styles/multi-select/material.css +13 -0
  211. package/styles/multi-select/material3-dark.css +15 -4
  212. package/styles/multi-select/material3.css +15 -4
  213. package/styles/multi-select/tailwind-dark.css +13 -0
  214. package/styles/multi-select/tailwind.css +13 -0
  215. package/styles/multi-select/tailwind3.css +1398 -0
  216. package/styles/multi-select/tailwind3.scss +10 -0
  217. package/styles/tailwind-dark-lite.css +30 -1
  218. package/styles/tailwind-dark.css +30 -1
  219. package/styles/tailwind-lite.css +30 -1
  220. package/styles/tailwind.css +30 -1
  221. package/styles/tailwind3-lite.css +2890 -0
  222. package/styles/tailwind3-lite.scss +28 -0
  223. package/styles/tailwind3.css +3551 -0
  224. package/styles/tailwind3.scss +33 -0
@@ -0,0 +1,6 @@
1
+ @import 'ej2-base/styles/definition/tailwind3.scss';
2
+ @import '../drop-down-base/tailwind3-definition.scss';
3
+ @import 'tailwind3-definition.scss';
4
+ @import 'icons/tailwind3.scss';
5
+ @import 'all.scss';
6
+ @import 'bigger.scss';
@@ -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
  }
@@ -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
  }
@@ -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
  }
@@ -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: 19px;
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
  }
@@ -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: 19px;
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
  }
@@ -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: 19px;
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
  }
@@ -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;
@@ -570,6 +574,10 @@
570
574
  font-family: "e-icons";
571
575
  }
572
576
 
577
+ .e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
578
+ content: "\e832";
579
+ }
580
+
573
581
  .e-ddl.e-popup .e-input-group {
574
582
  margin-top: 4px;
575
583
  }
@@ -773,6 +781,15 @@ ejs-dropdownlist {
773
781
  min-height: 33px;
774
782
  }
775
783
 
784
+ .e-ddl.e-popup.e-resize .e-resizer-right {
785
+ bottom: 0;
786
+ right: 0;
787
+ cursor: nwse-resize;
788
+ height: 15px;
789
+ position: absolute;
790
+ width: 15px;
791
+ }
792
+
776
793
  .e-popup {
777
794
  border-color: rgba(var(--color-sf-primary));
778
795
  }
@@ -784,7 +801,6 @@ ejs-dropdownlist {
784
801
 
785
802
  .e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
786
803
  border-color: transparent;
787
- background: none;
788
804
  }
789
805
 
790
806
  .e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
@@ -1567,6 +1583,10 @@ ejs-dropdownlist {
1567
1583
  content: "";
1568
1584
  }
1569
1585
 
1586
+ .e-popup.e-multi-select-list-wrapper.e-resize .e-icons.e-resizer-right::before {
1587
+ content: "\e832";
1588
+ }
1589
+
1570
1590
  .e-multi-select-wrapper {
1571
1591
  -webkit-box-sizing: border-box;
1572
1592
  box-sizing: border-box;
@@ -2018,16 +2038,14 @@ ejs-dropdownlist {
2018
2038
  left: 30px;
2019
2039
  position: absolute;
2020
2040
  right: auto;
2021
- }
2022
- .e-multiselect.e-rtl .e-multi-select-wrapper .e-close-hooker::before {
2023
- left: -4px;
2041
+ left: 0;
2024
2042
  }
2025
2043
  .e-multiselect.e-rtl .e-multi-select-wrapper .e-delim-values .e-remain {
2026
2044
  padding-right: 16px;
2027
2045
  }
2028
2046
 
2029
2047
  .e-multiselect.e-rtl .e-down-icon .e-chips-close.e-close-hooker {
2030
- left: 19px;
2048
+ left: 30px;
2031
2049
  }
2032
2050
 
2033
2051
  .e-multiselect.e-rtl .e-multi-select-wrapper.e-down-icon .e-close-hooker::before {
@@ -2600,6 +2618,15 @@ ejs-multiselect {
2600
2618
  cursor: pointer;
2601
2619
  }
2602
2620
 
2621
+ .e-popup.e-multi-select-list-wrapper.e-resize .e-resizer-right {
2622
+ bottom: 0;
2623
+ right: 0;
2624
+ cursor: nwse-resize;
2625
+ height: 15px;
2626
+ position: absolute;
2627
+ width: 15px;
2628
+ }
2629
+
2603
2630
  .e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
2604
2631
  color: rgba(var(--color-sf-on-surface-variant));
2605
2632
  }
@@ -0,0 +1 @@
1
+ /* stylelint-disable-line no-empty-source */