@syncfusion/ej2-dropdowns 31.2.3 → 31.2.4

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 (83) hide show
  1. package/README.md +11 -3
  2. package/dist/ej2-dropdowns.min.js +2 -2
  3. package/dist/ej2-dropdowns.umd.min.js +2 -2
  4. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-dropdowns.es2015.js +102 -6
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +117 -20
  8. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  9. package/dist/global/ej2-dropdowns.min.js +2 -2
  10. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +3 -3
  13. package/src/combo-box/combo-box.js +3 -1
  14. package/src/drop-down-base/drop-down-base.js +10 -0
  15. package/src/drop-down-list/drop-down-list.d.ts +2 -0
  16. package/src/drop-down-list/drop-down-list.js +27 -1
  17. package/src/mention/mention.js +1 -1
  18. package/src/multi-select/multi-select.d.ts +3 -0
  19. package/src/multi-select/multi-select.js +76 -17
  20. package/styles/bds-lite.css +4 -0
  21. package/styles/bds.css +4 -0
  22. package/styles/bootstrap-dark-lite.css +4 -0
  23. package/styles/bootstrap-dark.css +4 -0
  24. package/styles/bootstrap-lite.css +4 -0
  25. package/styles/bootstrap.css +4 -0
  26. package/styles/bootstrap4-lite.css +4 -0
  27. package/styles/bootstrap4.css +4 -0
  28. package/styles/bootstrap5-dark-lite.css +4 -0
  29. package/styles/bootstrap5-dark.css +4 -0
  30. package/styles/bootstrap5-lite.css +4 -0
  31. package/styles/bootstrap5.3-lite.css +4 -0
  32. package/styles/bootstrap5.3.css +4 -0
  33. package/styles/bootstrap5.css +4 -0
  34. package/styles/drop-down-list/_layout.scss +4 -0
  35. package/styles/drop-down-list/bds.css +4 -0
  36. package/styles/drop-down-list/bootstrap-dark.css +4 -0
  37. package/styles/drop-down-list/bootstrap.css +4 -0
  38. package/styles/drop-down-list/bootstrap4.css +4 -0
  39. package/styles/drop-down-list/bootstrap5-dark.css +4 -0
  40. package/styles/drop-down-list/bootstrap5.3.css +4 -0
  41. package/styles/drop-down-list/bootstrap5.css +4 -0
  42. package/styles/drop-down-list/fabric-dark.css +4 -0
  43. package/styles/drop-down-list/fabric.css +4 -0
  44. package/styles/drop-down-list/fluent-dark.css +4 -0
  45. package/styles/drop-down-list/fluent.css +4 -0
  46. package/styles/drop-down-list/fluent2.css +4 -0
  47. package/styles/drop-down-list/highcontrast-light.css +4 -0
  48. package/styles/drop-down-list/highcontrast.css +4 -0
  49. package/styles/drop-down-list/material-dark.css +4 -0
  50. package/styles/drop-down-list/material.css +4 -0
  51. package/styles/drop-down-list/material3-dark.css +4 -0
  52. package/styles/drop-down-list/material3.css +4 -0
  53. package/styles/drop-down-list/tailwind-dark.css +4 -0
  54. package/styles/drop-down-list/tailwind.css +4 -0
  55. package/styles/drop-down-list/tailwind3.css +4 -0
  56. package/styles/fabric-dark-lite.css +4 -0
  57. package/styles/fabric-dark.css +4 -0
  58. package/styles/fabric-lite.css +4 -0
  59. package/styles/fabric.css +4 -0
  60. package/styles/fluent-dark-lite.css +4 -0
  61. package/styles/fluent-dark.css +4 -0
  62. package/styles/fluent-lite.css +4 -0
  63. package/styles/fluent.css +4 -0
  64. package/styles/fluent2-lite.css +4 -0
  65. package/styles/fluent2.css +4 -0
  66. package/styles/highcontrast-light-lite.css +4 -0
  67. package/styles/highcontrast-light.css +4 -0
  68. package/styles/highcontrast-lite.css +4 -0
  69. package/styles/highcontrast.css +4 -0
  70. package/styles/material-dark-lite.css +4 -0
  71. package/styles/material-dark.css +4 -0
  72. package/styles/material-lite.css +4 -0
  73. package/styles/material.css +4 -0
  74. package/styles/material3-dark-lite.css +4 -0
  75. package/styles/material3-dark.css +4 -0
  76. package/styles/material3-lite.css +4 -0
  77. package/styles/material3.css +4 -0
  78. package/styles/tailwind-dark-lite.css +4 -0
  79. package/styles/tailwind-dark.css +4 -0
  80. package/styles/tailwind-lite.css +4 -0
  81. package/styles/tailwind.css +4 -0
  82. package/styles/tailwind3-lite.css +4 -0
  83. package/styles/tailwind3.css +4 -0
@@ -253,6 +253,10 @@
253
253
  display: flex;
254
254
  }
255
255
 
256
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
257
+ pointer-events: none;
258
+ }
259
+
256
260
  .e-ddl.e-input-group .e-input-value,
257
261
  .e-ddl.e-input-group .e-input-value:focus {
258
262
  font-family: inherit;
@@ -253,6 +253,10 @@
253
253
  display: flex;
254
254
  }
255
255
 
256
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
257
+ pointer-events: none;
258
+ }
259
+
256
260
  .e-ddl.e-input-group .e-input-value,
257
261
  .e-ddl.e-input-group .e-input-value:focus {
258
262
  font-family: inherit;
@@ -318,6 +318,10 @@
318
318
  display: flex;
319
319
  }
320
320
 
321
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
322
+ pointer-events: none;
323
+ }
324
+
321
325
  .e-ddl.e-input-group .e-input-value,
322
326
  .e-ddl.e-input-group .e-input-value:focus {
323
327
  font-family: inherit;
@@ -318,6 +318,10 @@
318
318
  display: flex;
319
319
  }
320
320
 
321
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
322
+ pointer-events: none;
323
+ }
324
+
321
325
  .e-ddl.e-input-group .e-input-value,
322
326
  .e-ddl.e-input-group .e-input-value:focus {
323
327
  font-family: inherit;
@@ -498,6 +498,10 @@
498
498
  display: flex;
499
499
  }
500
500
 
501
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
502
+ pointer-events: none;
503
+ }
504
+
501
505
  .e-ddl.e-input-group .e-input-value,
502
506
  .e-ddl.e-input-group .e-input-value:focus {
503
507
  font-family: inherit;
@@ -270,6 +270,10 @@
270
270
  display: flex;
271
271
  }
272
272
 
273
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
274
+ pointer-events: none;
275
+ }
276
+
273
277
  .e-ddl.e-input-group .e-input-value,
274
278
  .e-ddl.e-input-group .e-input-value:focus {
275
279
  font-family: inherit;
@@ -274,6 +274,10 @@
274
274
  display: flex;
275
275
  }
276
276
 
277
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
278
+ pointer-events: none;
279
+ }
280
+
277
281
  .e-ddl.e-input-group .e-input-value,
278
282
  .e-ddl.e-input-group .e-input-value:focus {
279
283
  font-family: inherit;
@@ -316,6 +316,10 @@
316
316
  display: flex;
317
317
  }
318
318
 
319
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
320
+ pointer-events: none;
321
+ }
322
+
319
323
  .e-ddl.e-input-group .e-input-value,
320
324
  .e-ddl.e-input-group .e-input-value:focus {
321
325
  font-family: inherit;
@@ -339,6 +339,10 @@
339
339
  display: flex;
340
340
  }
341
341
 
342
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
343
+ pointer-events: none;
344
+ }
345
+
342
346
  .e-ddl.e-input-group .e-input-value,
343
347
  .e-ddl.e-input-group .e-input-value:focus {
344
348
  font-family: inherit;
@@ -354,6 +354,10 @@
354
354
  display: flex;
355
355
  }
356
356
 
357
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
358
+ pointer-events: none;
359
+ }
360
+
357
361
  .e-ddl.e-input-group .e-input-value,
358
362
  .e-ddl.e-input-group .e-input-value:focus {
359
363
  font-family: inherit;
@@ -356,6 +356,10 @@
356
356
  display: flex;
357
357
  }
358
358
 
359
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
360
+ pointer-events: none;
361
+ }
362
+
359
363
  .e-ddl.e-input-group .e-input-value,
360
364
  .e-ddl.e-input-group .e-input-value:focus {
361
365
  font-family: inherit;
@@ -304,6 +304,10 @@
304
304
  display: flex;
305
305
  }
306
306
 
307
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
308
+ pointer-events: none;
309
+ }
310
+
307
311
  .e-ddl.e-input-group .e-input-value,
308
312
  .e-ddl.e-input-group .e-input-value:focus {
309
313
  font-family: inherit;
@@ -304,6 +304,10 @@
304
304
  display: flex;
305
305
  }
306
306
 
307
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
308
+ pointer-events: none;
309
+ }
310
+
307
311
  .e-ddl.e-input-group .e-input-value,
308
312
  .e-ddl.e-input-group .e-input-value:focus {
309
313
  font-family: inherit;
@@ -336,6 +336,10 @@
336
336
  display: flex;
337
337
  }
338
338
 
339
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
340
+ pointer-events: none;
341
+ }
342
+
339
343
  .e-ddl.e-input-group .e-input-value,
340
344
  .e-ddl.e-input-group .e-input-value:focus {
341
345
  font-family: inherit;
@@ -550,6 +550,10 @@
550
550
  display: flex;
551
551
  }
552
552
 
553
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
554
+ pointer-events: none;
555
+ }
556
+
553
557
  .e-ddl.e-input-group .e-input-value,
554
558
  .e-ddl.e-input-group .e-input-value:focus {
555
559
  font-family: inherit;
@@ -625,6 +625,10 @@
625
625
  display: flex;
626
626
  }
627
627
 
628
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
629
+ pointer-events: none;
630
+ }
631
+
628
632
  .e-ddl.e-input-group .e-input-value,
629
633
  .e-ddl.e-input-group .e-input-value:focus {
630
634
  font-family: inherit;
@@ -550,6 +550,10 @@
550
550
  display: flex;
551
551
  }
552
552
 
553
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
554
+ pointer-events: none;
555
+ }
556
+
553
557
  .e-ddl.e-input-group .e-input-value,
554
558
  .e-ddl.e-input-group .e-input-value:focus {
555
559
  font-family: inherit;
package/styles/fabric.css CHANGED
@@ -625,6 +625,10 @@
625
625
  display: flex;
626
626
  }
627
627
 
628
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
629
+ pointer-events: none;
630
+ }
631
+
628
632
  .e-ddl.e-input-group .e-input-value,
629
633
  .e-ddl.e-input-group .e-input-value:focus {
630
634
  font-family: inherit;
@@ -625,6 +625,10 @@
625
625
  display: flex;
626
626
  }
627
627
 
628
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
629
+ pointer-events: none;
630
+ }
631
+
628
632
  .e-ddl.e-input-group .e-input-value,
629
633
  .e-ddl.e-input-group .e-input-value:focus {
630
634
  font-family: inherit;
@@ -726,6 +726,10 @@
726
726
  display: flex;
727
727
  }
728
728
 
729
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
730
+ pointer-events: none;
731
+ }
732
+
729
733
  .e-ddl.e-input-group .e-input-value,
730
734
  .e-ddl.e-input-group .e-input-value:focus {
731
735
  font-family: inherit;
@@ -625,6 +625,10 @@
625
625
  display: flex;
626
626
  }
627
627
 
628
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
629
+ pointer-events: none;
630
+ }
631
+
628
632
  .e-ddl.e-input-group .e-input-value,
629
633
  .e-ddl.e-input-group .e-input-value:focus {
630
634
  font-family: inherit;
package/styles/fluent.css CHANGED
@@ -726,6 +726,10 @@
726
726
  display: flex;
727
727
  }
728
728
 
729
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
730
+ pointer-events: none;
731
+ }
732
+
729
733
  .e-ddl.e-input-group .e-input-value,
730
734
  .e-ddl.e-input-group .e-input-value:focus {
731
735
  font-family: inherit;
@@ -797,6 +797,10 @@
797
797
  display: flex;
798
798
  }
799
799
 
800
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
801
+ pointer-events: none;
802
+ }
803
+
800
804
  .e-ddl.e-input-group .e-input-value,
801
805
  .e-ddl.e-input-group .e-input-value:focus {
802
806
  font-family: inherit;
@@ -889,6 +889,10 @@
889
889
  display: flex;
890
890
  }
891
891
 
892
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
893
+ pointer-events: none;
894
+ }
895
+
892
896
  .e-ddl.e-input-group .e-input-value,
893
897
  .e-ddl.e-input-group .e-input-value:focus {
894
898
  font-family: inherit;
@@ -567,6 +567,10 @@
567
567
  display: flex;
568
568
  }
569
569
 
570
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
571
+ pointer-events: none;
572
+ }
573
+
570
574
  .e-ddl.e-input-group .e-input-value,
571
575
  .e-ddl.e-input-group .e-input-value:focus {
572
576
  font-family: inherit;
@@ -642,6 +642,10 @@
642
642
  display: flex;
643
643
  }
644
644
 
645
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
646
+ pointer-events: none;
647
+ }
648
+
645
649
  .e-ddl.e-input-group .e-input-value,
646
650
  .e-ddl.e-input-group .e-input-value:focus {
647
651
  font-family: inherit;
@@ -571,6 +571,10 @@
571
571
  display: flex;
572
572
  }
573
573
 
574
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
575
+ pointer-events: none;
576
+ }
577
+
574
578
  .e-ddl.e-input-group .e-input-value,
575
579
  .e-ddl.e-input-group .e-input-value:focus {
576
580
  font-family: inherit;
@@ -646,6 +646,10 @@
646
646
  display: flex;
647
647
  }
648
648
 
649
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
650
+ pointer-events: none;
651
+ }
652
+
649
653
  .e-ddl.e-input-group .e-input-value,
650
654
  .e-ddl.e-input-group .e-input-value:focus {
651
655
  font-family: inherit;
@@ -613,6 +613,10 @@
613
613
  display: flex;
614
614
  }
615
615
 
616
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
617
+ pointer-events: none;
618
+ }
619
+
616
620
  .e-ddl.e-input-group .e-input-value,
617
621
  .e-ddl.e-input-group .e-input-value:focus {
618
622
  font-family: inherit;
@@ -687,6 +687,10 @@
687
687
  display: flex;
688
688
  }
689
689
 
690
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
691
+ pointer-events: none;
692
+ }
693
+
690
694
  .e-ddl.e-input-group .e-input-value,
691
695
  .e-ddl.e-input-group .e-input-value:focus {
692
696
  font-family: inherit;
@@ -636,6 +636,10 @@
636
636
  display: flex;
637
637
  }
638
638
 
639
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
640
+ pointer-events: none;
641
+ }
642
+
639
643
  .e-ddl.e-input-group .e-input-value,
640
644
  .e-ddl.e-input-group .e-input-value:focus {
641
645
  font-family: inherit;
@@ -710,6 +710,10 @@
710
710
  display: flex;
711
711
  }
712
712
 
713
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
714
+ pointer-events: none;
715
+ }
716
+
713
717
  .e-ddl.e-input-group .e-input-value,
714
718
  .e-ddl.e-input-group .e-input-value:focus {
715
719
  font-family: inherit;
@@ -661,6 +661,10 @@
661
661
  display: flex;
662
662
  }
663
663
 
664
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
665
+ pointer-events: none;
666
+ }
667
+
664
668
  .e-ddl.e-input-group .e-input-value,
665
669
  .e-ddl.e-input-group .e-input-value:focus {
666
670
  font-family: inherit;
@@ -735,6 +735,10 @@
735
735
  display: flex;
736
736
  }
737
737
 
738
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
739
+ pointer-events: none;
740
+ }
741
+
738
742
  .e-ddl.e-input-group .e-input-value,
739
743
  .e-ddl.e-input-group .e-input-value:focus {
740
744
  font-family: inherit;
@@ -663,6 +663,10 @@
663
663
  display: flex;
664
664
  }
665
665
 
666
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
667
+ pointer-events: none;
668
+ }
669
+
666
670
  .e-ddl.e-input-group .e-input-value,
667
671
  .e-ddl.e-input-group .e-input-value:focus {
668
672
  font-family: inherit;
@@ -737,6 +737,10 @@
737
737
  display: flex;
738
738
  }
739
739
 
740
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
741
+ pointer-events: none;
742
+ }
743
+
740
744
  .e-ddl.e-input-group .e-input-value,
741
745
  .e-ddl.e-input-group .e-input-value:focus {
742
746
  font-family: inherit;
@@ -631,6 +631,10 @@
631
631
  display: flex;
632
632
  }
633
633
 
634
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
635
+ pointer-events: none;
636
+ }
637
+
634
638
  .e-ddl.e-input-group .e-input-value,
635
639
  .e-ddl.e-input-group .e-input-value:focus {
636
640
  font-family: inherit;
@@ -766,6 +766,10 @@
766
766
  display: flex;
767
767
  }
768
768
 
769
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
770
+ pointer-events: none;
771
+ }
772
+
769
773
  .e-ddl.e-input-group .e-input-value,
770
774
  .e-ddl.e-input-group .e-input-value:focus {
771
775
  font-family: inherit;
@@ -631,6 +631,10 @@
631
631
  display: flex;
632
632
  }
633
633
 
634
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
635
+ pointer-events: none;
636
+ }
637
+
634
638
  .e-ddl.e-input-group .e-input-value,
635
639
  .e-ddl.e-input-group .e-input-value:focus {
636
640
  font-family: inherit;
@@ -766,6 +766,10 @@
766
766
  display: flex;
767
767
  }
768
768
 
769
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
770
+ pointer-events: none;
771
+ }
772
+
769
773
  .e-ddl.e-input-group .e-input-value,
770
774
  .e-ddl.e-input-group .e-input-value:focus {
771
775
  font-family: inherit;
@@ -634,6 +634,10 @@
634
634
  display: flex;
635
635
  }
636
636
 
637
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
638
+ pointer-events: none;
639
+ }
640
+
637
641
  .e-ddl.e-input-group .e-input-value,
638
642
  .e-ddl.e-input-group .e-input-value:focus {
639
643
  font-family: inherit;
@@ -705,6 +705,10 @@
705
705
  display: flex;
706
706
  }
707
707
 
708
+ .e-disabled.e-ddl.e-static-clear .e-clear-icon {
709
+ pointer-events: none;
710
+ }
711
+
708
712
  .e-ddl.e-input-group .e-input-value,
709
713
  .e-ddl.e-input-group .e-input-value:focus {
710
714
  font-family: inherit;