@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.
- 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 +511 -40
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +510 -38
- 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 +2 -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 +14 -2
- package/src/drop-down-list/drop-down-list-model.d.ts +31 -0
- package/src/drop-down-list/drop-down-list.d.ts +45 -1
- package/src/drop-down-list/drop-down-list.js +213 -13
- package/src/drop-down-tree/drop-down-tree.d.ts +1 -0
- package/src/drop-down-tree/drop-down-tree.js +4 -3
- 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 +250 -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 +31 -0
- package/styles/bootstrap5-dark.css +31 -0
- package/styles/bootstrap5-lite.css +31 -0
- package/styles/bootstrap5.3-lite.css +31 -3
- package/styles/bootstrap5.3.css +31 -3
- package/styles/bootstrap5.css +31 -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 +456 -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 +31 -1
- package/styles/fluent-dark.css +31 -1
- package/styles/fluent-lite.css +31 -1
- package/styles/fluent.css +31 -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 +32 -5
- package/styles/material3-dark.css +32 -5
- package/styles/material3-lite.css +32 -5
- package/styles/material3.css +32 -5
- 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 +28 -5
- package/styles/multi-select/_material3-definition.scss +1 -1
- 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 +14 -0
- package/styles/multi-select/bootstrap5.3.css +14 -0
- package/styles/multi-select/bootstrap5.css +14 -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 +14 -0
- package/styles/multi-select/fluent.css +14 -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 +15 -4
- package/styles/multi-select/material3.css +15 -4
- 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 +2890 -0
- package/styles/tailwind3-lite.scss +28 -0
- package/styles/tailwind3.css +3551 -0
- package/styles/tailwind3.scss +33 -0
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
&.e-float-input.e-control-wrapper {
|
|
80
80
|
.e-clear-icon {
|
|
81
81
|
box-sizing: content-box;
|
|
82
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' {
|
|
82
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'tailwind3' {
|
|
83
83
|
min-height: $ddt-close-icon-min-height;
|
|
84
84
|
}
|
|
85
85
|
@if $ddt-skin-name == 'Material3' {
|
|
@@ -130,7 +130,12 @@
|
|
|
130
130
|
&.e-show-chip,
|
|
131
131
|
&.e-show-text {
|
|
132
132
|
.e-clear-icon {
|
|
133
|
-
|
|
133
|
+
@if $ddt-skin-name == 'tailwind3' {
|
|
134
|
+
bottom: 0;
|
|
135
|
+
}
|
|
136
|
+
@else {
|
|
137
|
+
bottom: $ddt-close-icon-bottom;
|
|
138
|
+
}
|
|
134
139
|
@include position(absolute, 0);
|
|
135
140
|
@if $ddt-skin-name == 'Material3' {
|
|
136
141
|
margin: 0;
|
|
@@ -170,6 +175,9 @@
|
|
|
170
175
|
|
|
171
176
|
.e-chips-wrapper {
|
|
172
177
|
width: 100%;
|
|
178
|
+
@if ($ddt-skin-name =='tailwind3') {
|
|
179
|
+
margin: 2px 0 2px 6px;
|
|
180
|
+
}
|
|
173
181
|
}
|
|
174
182
|
|
|
175
183
|
&.e-show-chip {
|
|
@@ -184,7 +192,7 @@
|
|
|
184
192
|
text-align: center;
|
|
185
193
|
|
|
186
194
|
&::before {
|
|
187
|
-
@if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'material' and $ddt-skin-name != 'material-dark' and $ddt-skin-name != 'Material3' {
|
|
195
|
+
@if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'material' and $ddt-skin-name != 'material-dark' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'bootstrap5.3-dark' {
|
|
188
196
|
vertical-align: middle;
|
|
189
197
|
}
|
|
190
198
|
}
|
|
@@ -209,6 +217,10 @@
|
|
|
209
217
|
text-overflow: ellipsis;
|
|
210
218
|
white-space: nowrap;
|
|
211
219
|
|
|
220
|
+
@if ($ddt-skin-name == 'tailwind3') {
|
|
221
|
+
border: 1px solid $border-light;
|
|
222
|
+
}
|
|
223
|
+
|
|
212
224
|
& > .e-chipcontent {
|
|
213
225
|
max-width: 100%;
|
|
214
226
|
overflow: hidden;
|
|
@@ -220,6 +232,11 @@
|
|
|
220
232
|
@if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
|
|
221
233
|
line-height: $ddt-chip-text-line-height;
|
|
222
234
|
}
|
|
235
|
+
@if ($ddt-skin-name == 'tailwind3') {
|
|
236
|
+
font-size: 12px;
|
|
237
|
+
line-height: 16px;
|
|
238
|
+
font-weight: 500;
|
|
239
|
+
}
|
|
223
240
|
}
|
|
224
241
|
}
|
|
225
242
|
|
|
@@ -416,7 +433,7 @@
|
|
|
416
433
|
}
|
|
417
434
|
|
|
418
435
|
&.e-wrap-count {
|
|
419
|
-
@if $ddt-skin-name != 'bootstrap5' {
|
|
436
|
+
@if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'tailwind3' {
|
|
420
437
|
padding-top: $ddt-remains-count-padding-top;
|
|
421
438
|
}
|
|
422
439
|
}
|
|
@@ -431,7 +448,7 @@
|
|
|
431
448
|
}
|
|
432
449
|
|
|
433
450
|
&.e-wrap-count {
|
|
434
|
-
@if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' {
|
|
451
|
+
@if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'tailwind3' {
|
|
435
452
|
padding: $ddt-overflow-count-padding;
|
|
436
453
|
}
|
|
437
454
|
@else if $ddt-skin-name == 'FluentUI' {
|
|
@@ -486,7 +503,7 @@
|
|
|
486
503
|
@if $skin-name != 'material' and $skin-name != 'FluentUI' and $skin-name != 'Material3' {
|
|
487
504
|
border: 1px solid $ddt-popup-border-color;
|
|
488
505
|
}
|
|
489
|
-
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
|
|
506
|
+
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'tailwind3' {
|
|
490
507
|
margin-top: 4px;
|
|
491
508
|
}
|
|
492
509
|
@else if $skin-name == 'Material3' {
|
|
@@ -495,7 +512,7 @@
|
|
|
495
512
|
@else if $skin-name == 'fluent2' {
|
|
496
513
|
margin-top: 1px;
|
|
497
514
|
}
|
|
498
|
-
@if $skin-name == 'bootstrap4' or $skin-name == 'Material3' or $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'fluent2' {
|
|
515
|
+
@if $skin-name == 'bootstrap4' or $skin-name == 'Material3' or $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'fluent2' or $ddt-skin-name == 'tailwind3' {
|
|
499
516
|
border-radius: $ddt-popup-radius;
|
|
500
517
|
}
|
|
501
518
|
box-shadow: $ddt-box-shadow;
|
|
@@ -541,6 +558,10 @@
|
|
|
541
558
|
position: relative;
|
|
542
559
|
text-indent: 0;
|
|
543
560
|
|
|
561
|
+
@if ($ddt-skin-name == 'tailwind3') {
|
|
562
|
+
bottom: 2px;
|
|
563
|
+
}
|
|
564
|
+
|
|
544
565
|
.e-frame {
|
|
545
566
|
@if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
|
|
546
567
|
margin-top: -3px;
|
|
@@ -582,7 +603,7 @@
|
|
|
582
603
|
|
|
583
604
|
.e-input,
|
|
584
605
|
.e-input:focus {
|
|
585
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' {
|
|
606
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'tailwind3' {
|
|
586
607
|
padding: $ddt-list-filter-text-indent;
|
|
587
608
|
}
|
|
588
609
|
}
|
|
@@ -659,6 +680,9 @@
|
|
|
659
680
|
.e-treeview {
|
|
660
681
|
display: inline-table;
|
|
661
682
|
width: 100%;
|
|
683
|
+
@if $ddt-skin-name == 'tailwind3' {
|
|
684
|
+
border: none;
|
|
685
|
+
}
|
|
662
686
|
|
|
663
687
|
.e-list-item {
|
|
664
688
|
@if $ddt-skin-name != 'fluent2' {
|
|
@@ -675,7 +699,7 @@
|
|
|
675
699
|
@if $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
|
|
676
700
|
border-width: 2px;
|
|
677
701
|
}
|
|
678
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'fluent2' {
|
|
702
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'fluent2' and $ddt-skin-name != 'tailwind3' {
|
|
679
703
|
height: $ddt-treeview-fullrow-height;
|
|
680
704
|
}
|
|
681
705
|
}
|
|
@@ -688,7 +712,7 @@
|
|
|
688
712
|
}
|
|
689
713
|
|
|
690
714
|
&.e-fullrow-wrap .e-text-content {
|
|
691
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'fluent2' {
|
|
715
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'fluent2' and $ddt-skin-name != 'tailwind3' {
|
|
692
716
|
padding-bottom: $ddt-treeview-content-padding-top;
|
|
693
717
|
padding-top: $ddt-treeview-content-padding-bottom;
|
|
694
718
|
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
/* stylelint-disable */
|
|
2
|
+
$ddt-skin-name: $skin-name !default;
|
|
3
|
+
$ddt-box-shadow: none !default;
|
|
4
|
+
$ddt-close-icon-bottom: 8px !default;
|
|
5
|
+
$ddt-dd-icon-bottom: 0 !default;
|
|
6
|
+
$ddt-dd-icon-width: 30px !default;
|
|
7
|
+
$ddt-close-icon-width: 20px !default;
|
|
8
|
+
$ddt-dd-icon-bigger-bottom: 0 !default;
|
|
9
|
+
$ddt-filter-border: none !default;
|
|
10
|
+
$ddt-filter-top-border: 0 !default;
|
|
11
|
+
$ddt-filter-padding: 6px 7px !default;
|
|
12
|
+
$ddt-chip-margin: 2px !default;
|
|
13
|
+
$ddt-chip-padding: 0 8px 0 8px !default;
|
|
14
|
+
$ddt-chip-radius: 6px !default;
|
|
15
|
+
$ddt-chip-height: 24px !default;
|
|
16
|
+
$ddt-chip-bigger-height: 32px !default;
|
|
17
|
+
$ddt-close-icon-bigger-min-height: 24px !default;
|
|
18
|
+
$ddt-chip-content-padding: 4px 5px 4px 0 !default;
|
|
19
|
+
$ddt-rtl-chip-content-padding: 0 0 0 4px !default;
|
|
20
|
+
$ddt-big-chip-content-padding: 0 8px 0 0 !default;
|
|
21
|
+
$ddt-rtl-big-chip-content-padding: 0 0 0 8px !default;
|
|
22
|
+
$ddt-chip-close-font: 14px !default;
|
|
23
|
+
$ddt-chip-close-height: 14px !default;
|
|
24
|
+
$ddt-chip-close-width: 14px !default;
|
|
25
|
+
$ddt-chip-icon-line-height: 14px !default;
|
|
26
|
+
$ddt-last-chip-right-margin: 48px !default;
|
|
27
|
+
$ddt-last-chip-bigger-right-margin: 52px !default;
|
|
28
|
+
$ddt-select-all-padding: 0 8px !default;
|
|
29
|
+
$ddt-big-select-all-padding: 3px 12px !default;
|
|
30
|
+
$ddt-select-all-height: 34px !default;
|
|
31
|
+
$ddt-select-all-checkbox-margin: 0 8px !default;
|
|
32
|
+
$ddt-select-all-text-indent: 36px !default;
|
|
33
|
+
$ddt-select-all-bigger-text-indent: 50px !default;
|
|
34
|
+
$ddt-select-all-text-font-size: $text-sm !default;
|
|
35
|
+
$ddt-popup-radius: 6px !default;
|
|
36
|
+
$ddt-popup-reorder-border: $border-light !default;
|
|
37
|
+
$ddt-popup-margin: 8px !default;
|
|
38
|
+
$ddt-treeview-padding: 6px 8px !default;
|
|
39
|
+
$ddt-chip-width: calc(100% - 2px) !default;
|
|
40
|
+
$ddt-chip-ddi-width: calc(100% - 31px) !default;
|
|
41
|
+
$ddt-chip-ci-width: calc(100% - 31px) !default;
|
|
42
|
+
$ddt-chip-ddi-ci-width: calc(100% - 62px) !default;
|
|
43
|
+
$ddt-big-chip-ddi-width: calc(100% - 37px) !default;
|
|
44
|
+
$ddt-big-chip-ci-width: calc(100% - 37px) !default;
|
|
45
|
+
$ddt-big-chip-ddi-ci-width: calc(100% - 73px) !default;
|
|
46
|
+
$ddt-remains-padding: 0 0 0 8px !default;
|
|
47
|
+
$ddt-rtl-remains-padding: 0 8px 0 0 !default;
|
|
48
|
+
$ddt-remains-font-size: $text-base !default;
|
|
49
|
+
$ddt-chip-font-size: $text-sm !default;
|
|
50
|
+
$ddt-overflow-count-padding: 5px 4px !default;
|
|
51
|
+
$ddt-delim-padding : 5px 8px !default;
|
|
52
|
+
$ddt-delim-bigger-padding: 6px 12px !default;
|
|
53
|
+
$ddt-remains-count-padding-top: 0 !default;
|
|
54
|
+
|
|
55
|
+
// color variables
|
|
56
|
+
$ddt-chip-bg-color: $secondary-bg-color !default;
|
|
57
|
+
$ddt-popup-background-color: $flyout-bg-color !default;
|
|
58
|
+
$ddt-popup-border-color: $flyout-border !default;
|
|
59
|
+
$ddt-chip-close: $icon-color !default;
|
|
60
|
+
$ddt-chip-font-color: $content-text-color !default;
|
|
61
|
+
$ddt-chip-hover-bg-color: $secondary-border-color-hover !default;
|
|
62
|
+
$ddt-chip-hover-font-color: $secondary-text-color-hover !default;
|
|
63
|
+
$ddt-nodata-font-color: $content-text-color !default;
|
|
64
|
+
$ddt-select-all-font-color: $content-text-color !default;
|
|
65
|
+
$ddt-remains-font-color: $content-text-color-alt1 !default;
|
|
66
|
+
$ddt-readonly-input-bg-color: $content-bg-color !default;
|
|
67
|
+
$ddt-item-hover-bg: $content-bg-color-hover !default;
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
&.e-input-group.e-control-wrapper,
|
|
64
64
|
&.e-float-input.e-control-wrapper {
|
|
65
65
|
.e-clear-icon {
|
|
66
|
-
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'material' and $ddt-skin-name != 'material-dark' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'fluent2' {
|
|
66
|
+
@if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'material' and $ddt-skin-name != 'material-dark' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'fluent2' and $ddt-skin-name != 'tailwind3' {
|
|
67
67
|
background-color: $ddt-icon-bg-color;
|
|
68
68
|
}
|
|
69
69
|
}
|
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
|
|
84
84
|
&.e-input-group.e-control-wrapper .e-input[readonly],
|
|
85
85
|
&.e-float-input.e-control-wrapper input[readonly] {
|
|
86
|
-
@if $ddt-skin-name == 'bootstrap4' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
|
|
87
|
-
@if $ddt-skin-name == 'FluentUI' {
|
|
86
|
+
@if $ddt-skin-name == 'bootstrap4' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' or $ddt-skin-name == 'tailwind3' {
|
|
87
|
+
@if $ddt-skin-name == 'FluentUI' or $ddt-skin-name == 'tailwind3' {
|
|
88
88
|
background: transparent;
|
|
89
89
|
}
|
|
90
90
|
@else {
|