@syncfusion/ej2-dropdowns 28.1.38 → 28.1.41
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/dist/ej2-dropdowns.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +84 -33
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +85 -33
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +8 -8
- package/src/combo-box/combo-box.js +2 -2
- package/src/common/interface.d.ts +1 -0
- package/src/common/virtual-scroll.js +1 -0
- package/src/drop-down-base/drop-down-base.js +3 -1
- package/src/drop-down-list/drop-down-list.d.ts +1 -0
- package/src/drop-down-list/drop-down-list.js +19 -4
- package/src/drop-down-tree/drop-down-tree.d.ts +1 -0
- package/src/drop-down-tree/drop-down-tree.js +13 -9
- package/src/list-box/list-box.js +1 -1
- package/src/mention/mention.js +3 -1
- package/src/multi-select/multi-select.d.ts +4 -2
- package/src/multi-select/multi-select.js +43 -15
- package/styles/bds-lite.css +8 -0
- package/styles/bds.css +8 -0
- package/styles/bootstrap-dark-lite.css +8 -0
- package/styles/bootstrap-dark.css +8 -0
- package/styles/bootstrap-lite.css +8 -0
- package/styles/bootstrap.css +8 -0
- package/styles/bootstrap4-lite.css +8 -0
- package/styles/bootstrap4.css +8 -0
- package/styles/bootstrap5-dark-lite.css +8 -0
- package/styles/bootstrap5-dark.css +8 -0
- package/styles/bootstrap5-lite.css +8 -0
- package/styles/bootstrap5.3-lite.css +8 -0
- package/styles/bootstrap5.3.css +8 -0
- package/styles/bootstrap5.css +8 -0
- package/styles/drop-down-list/_layout.scss +8 -0
- package/styles/drop-down-list/bds.css +8 -0
- package/styles/drop-down-list/bootstrap-dark.css +8 -0
- package/styles/drop-down-list/bootstrap.css +8 -0
- package/styles/drop-down-list/bootstrap4.css +8 -0
- package/styles/drop-down-list/bootstrap5-dark.css +8 -0
- package/styles/drop-down-list/bootstrap5.3.css +8 -0
- package/styles/drop-down-list/bootstrap5.css +8 -0
- package/styles/drop-down-list/fabric-dark.css +8 -0
- package/styles/drop-down-list/fabric.css +8 -0
- package/styles/drop-down-list/fluent-dark.css +8 -0
- package/styles/drop-down-list/fluent.css +8 -0
- package/styles/drop-down-list/fluent2.css +8 -0
- package/styles/drop-down-list/highcontrast-light.css +8 -0
- package/styles/drop-down-list/highcontrast.css +8 -0
- package/styles/drop-down-list/material-dark.css +8 -0
- package/styles/drop-down-list/material.css +8 -0
- package/styles/drop-down-list/material3-dark.css +8 -0
- package/styles/drop-down-list/material3.css +8 -0
- package/styles/drop-down-list/tailwind-dark.css +8 -0
- package/styles/drop-down-list/tailwind.css +8 -0
- package/styles/drop-down-list/tailwind3.css +8 -0
- package/styles/fabric-dark-lite.css +8 -0
- package/styles/fabric-dark.css +8 -0
- package/styles/fabric-lite.css +8 -0
- package/styles/fabric.css +8 -0
- package/styles/fluent-dark-lite.css +8 -0
- package/styles/fluent-dark.css +8 -0
- package/styles/fluent-lite.css +8 -0
- package/styles/fluent.css +8 -0
- package/styles/fluent2-lite.css +8 -0
- package/styles/fluent2.css +8 -0
- package/styles/highcontrast-light-lite.css +8 -0
- package/styles/highcontrast-light.css +8 -0
- package/styles/highcontrast-lite.css +8 -0
- package/styles/highcontrast.css +8 -0
- package/styles/material-dark-lite.css +8 -0
- package/styles/material-dark.css +8 -0
- package/styles/material-lite.css +8 -0
- package/styles/material.css +8 -0
- package/styles/material3-dark-lite.css +8 -0
- package/styles/material3-dark.css +8 -0
- package/styles/material3-lite.css +8 -0
- package/styles/material3.css +8 -0
- package/styles/tailwind-dark-lite.css +8 -0
- package/styles/tailwind-dark.css +8 -0
- package/styles/tailwind-lite.css +8 -0
- package/styles/tailwind.css +8 -0
- package/styles/tailwind3-lite.css +8 -0
- package/styles/tailwind3.css +8 -0
|
@@ -485,6 +485,14 @@
|
|
|
485
485
|
content: "";
|
|
486
486
|
}
|
|
487
487
|
|
|
488
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
489
|
+
position: relative;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
493
|
+
content: "";
|
|
494
|
+
}
|
|
495
|
+
|
|
488
496
|
.e-ddl-device-filter .e-filter-parent {
|
|
489
497
|
background-color: #f5f5f5;
|
|
490
498
|
}
|
package/styles/material-dark.css
CHANGED
|
@@ -559,6 +559,14 @@
|
|
|
559
559
|
content: "";
|
|
560
560
|
}
|
|
561
561
|
|
|
562
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
563
|
+
position: relative;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
567
|
+
content: "";
|
|
568
|
+
}
|
|
569
|
+
|
|
562
570
|
.e-ddl-device-filter .e-filter-parent {
|
|
563
571
|
background-color: #f5f5f5;
|
|
564
572
|
}
|
package/styles/material-lite.css
CHANGED
|
@@ -509,6 +509,14 @@
|
|
|
509
509
|
content: "";
|
|
510
510
|
}
|
|
511
511
|
|
|
512
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
513
|
+
position: relative;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
517
|
+
content: "";
|
|
518
|
+
}
|
|
519
|
+
|
|
512
520
|
.e-ddl-device-filter .e-filter-parent {
|
|
513
521
|
background-color: #f5f5f5;
|
|
514
522
|
}
|
package/styles/material.css
CHANGED
|
@@ -583,6 +583,14 @@
|
|
|
583
583
|
content: "";
|
|
584
584
|
}
|
|
585
585
|
|
|
586
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
587
|
+
position: relative;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
591
|
+
content: "";
|
|
592
|
+
}
|
|
593
|
+
|
|
586
594
|
.e-ddl-device-filter .e-filter-parent {
|
|
587
595
|
background-color: #f5f5f5;
|
|
588
596
|
}
|
|
@@ -532,6 +532,14 @@
|
|
|
532
532
|
content: "";
|
|
533
533
|
}
|
|
534
534
|
|
|
535
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
536
|
+
position: relative;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
540
|
+
content: "";
|
|
541
|
+
}
|
|
542
|
+
|
|
535
543
|
.e-ddl-device-filter .e-filter-parent {
|
|
536
544
|
background-color: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
|
|
537
545
|
}
|
|
@@ -606,6 +606,14 @@
|
|
|
606
606
|
content: "";
|
|
607
607
|
}
|
|
608
608
|
|
|
609
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
610
|
+
position: relative;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
614
|
+
content: "";
|
|
615
|
+
}
|
|
616
|
+
|
|
609
617
|
.e-ddl-device-filter .e-filter-parent {
|
|
610
618
|
background-color: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
|
|
611
619
|
}
|
|
@@ -534,6 +534,14 @@
|
|
|
534
534
|
content: "";
|
|
535
535
|
}
|
|
536
536
|
|
|
537
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
538
|
+
position: relative;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
542
|
+
content: "";
|
|
543
|
+
}
|
|
544
|
+
|
|
537
545
|
.e-ddl-device-filter .e-filter-parent {
|
|
538
546
|
background-color: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
539
547
|
}
|
package/styles/material3.css
CHANGED
|
@@ -608,6 +608,14 @@
|
|
|
608
608
|
content: "";
|
|
609
609
|
}
|
|
610
610
|
|
|
611
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
612
|
+
position: relative;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
616
|
+
content: "";
|
|
617
|
+
}
|
|
618
|
+
|
|
611
619
|
.e-ddl-device-filter .e-filter-parent {
|
|
612
620
|
background-color: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
613
621
|
}
|
|
@@ -507,6 +507,14 @@
|
|
|
507
507
|
content: "";
|
|
508
508
|
}
|
|
509
509
|
|
|
510
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
511
|
+
position: relative;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
515
|
+
content: "";
|
|
516
|
+
}
|
|
517
|
+
|
|
510
518
|
.e-ddl-device-filter .e-filter-parent {
|
|
511
519
|
background-color: #374151;
|
|
512
520
|
}
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -642,6 +642,14 @@
|
|
|
642
642
|
content: "";
|
|
643
643
|
}
|
|
644
644
|
|
|
645
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
646
|
+
position: relative;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
650
|
+
content: "";
|
|
651
|
+
}
|
|
652
|
+
|
|
645
653
|
.e-ddl-device-filter .e-filter-parent {
|
|
646
654
|
background-color: #374151;
|
|
647
655
|
}
|
package/styles/tailwind-lite.css
CHANGED
|
@@ -507,6 +507,14 @@
|
|
|
507
507
|
content: "";
|
|
508
508
|
}
|
|
509
509
|
|
|
510
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
511
|
+
position: relative;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
515
|
+
content: "";
|
|
516
|
+
}
|
|
517
|
+
|
|
510
518
|
.e-ddl-device-filter .e-filter-parent {
|
|
511
519
|
background-color: #fff;
|
|
512
520
|
}
|
package/styles/tailwind.css
CHANGED
|
@@ -642,6 +642,14 @@
|
|
|
642
642
|
content: "";
|
|
643
643
|
}
|
|
644
644
|
|
|
645
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
646
|
+
position: relative;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
650
|
+
content: "";
|
|
651
|
+
}
|
|
652
|
+
|
|
645
653
|
.e-ddl-device-filter .e-filter-parent {
|
|
646
654
|
background-color: #fff;
|
|
647
655
|
}
|
|
@@ -510,6 +510,14 @@
|
|
|
510
510
|
content: "";
|
|
511
511
|
}
|
|
512
512
|
|
|
513
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
514
|
+
position: relative;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
518
|
+
content: "";
|
|
519
|
+
}
|
|
520
|
+
|
|
513
521
|
.e-ddl-device-filter .e-filter-parent {
|
|
514
522
|
background-color: var(--color-sf-content-bg-color);
|
|
515
523
|
}
|
package/styles/tailwind3.css
CHANGED
|
@@ -581,6 +581,14 @@
|
|
|
581
581
|
content: "";
|
|
582
582
|
}
|
|
583
583
|
|
|
584
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon {
|
|
585
|
+
position: relative;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.e-ddl.e-control-wrapper.e-input-group .e-ddl-icon.e-ddl-disable-icon::before {
|
|
589
|
+
content: "";
|
|
590
|
+
}
|
|
591
|
+
|
|
584
592
|
.e-ddl-device-filter .e-filter-parent {
|
|
585
593
|
background-color: var(--color-sf-content-bg-color);
|
|
586
594
|
}
|