@syncfusion/ej2-dropdowns 23.1.36 → 23.1.38

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 (65) hide show
  1. package/CHANGELOG.md +8 -0
  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 +32 -5
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +32 -5
  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 +8 -8
  13. package/src/common/virtual-scroll.d.ts +1 -0
  14. package/src/common/virtual-scroll.js +3 -0
  15. package/src/drop-down-list/drop-down-list.d.ts +1 -0
  16. package/src/drop-down-list/drop-down-list.js +27 -4
  17. package/src/multi-select/multi-select.js +2 -1
  18. package/styles/bootstrap-dark.css +70 -7
  19. package/styles/bootstrap.css +70 -7
  20. package/styles/bootstrap4.css +71 -8
  21. package/styles/bootstrap5-dark.css +71 -8
  22. package/styles/bootstrap5.css +71 -8
  23. package/styles/fabric-dark.css +70 -7
  24. package/styles/fabric.css +70 -7
  25. package/styles/fluent-dark.css +70 -7
  26. package/styles/fluent.css +70 -7
  27. package/styles/highcontrast-light.css +70 -7
  28. package/styles/highcontrast.css +70 -7
  29. package/styles/list-box/_bootstrap-dark-definition.scss +6 -2
  30. package/styles/list-box/_bootstrap-definition.scss +7 -3
  31. package/styles/list-box/_bootstrap4-definition.scss +8 -4
  32. package/styles/list-box/_bootstrap5-definition.scss +6 -4
  33. package/styles/list-box/_fabric-dark-definition.scss +6 -2
  34. package/styles/list-box/_fabric-definition.scss +6 -2
  35. package/styles/list-box/_fluent-definition.scss +8 -6
  36. package/styles/list-box/_highcontrast-definition.scss +6 -2
  37. package/styles/list-box/_highcontrast-light-definition.scss +6 -2
  38. package/styles/list-box/_material-dark-definition.scss +8 -4
  39. package/styles/list-box/_material-definition.scss +8 -4
  40. package/styles/list-box/_material3-definition.scss +8 -6
  41. package/styles/list-box/_tailwind-definition.scss +8 -6
  42. package/styles/list-box/_theme.scss +72 -7
  43. package/styles/list-box/bootstrap-dark.css +70 -7
  44. package/styles/list-box/bootstrap.css +70 -7
  45. package/styles/list-box/bootstrap4.css +71 -8
  46. package/styles/list-box/bootstrap5-dark.css +71 -8
  47. package/styles/list-box/bootstrap5.css +71 -8
  48. package/styles/list-box/fabric-dark.css +70 -7
  49. package/styles/list-box/fabric.css +70 -7
  50. package/styles/list-box/fluent-dark.css +70 -7
  51. package/styles/list-box/fluent.css +70 -7
  52. package/styles/list-box/highcontrast-light.css +70 -7
  53. package/styles/list-box/highcontrast.css +70 -7
  54. package/styles/list-box/material-dark.css +71 -8
  55. package/styles/list-box/material.css +71 -8
  56. package/styles/list-box/material3-dark.css +71 -8
  57. package/styles/list-box/material3.css +71 -8
  58. package/styles/list-box/tailwind-dark.css +71 -8
  59. package/styles/list-box/tailwind.css +71 -8
  60. package/styles/material-dark.css +71 -8
  61. package/styles/material.css +71 -8
  62. package/styles/material3-dark.css +71 -8
  63. package/styles/material3.css +71 -8
  64. package/styles/tailwind-dark.css +71 -8
  65. package/styles/tailwind.css +71 -8
@@ -3078,27 +3078,66 @@ ejs-listbox {
3078
3078
  }
3079
3079
  .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
3080
3080
  .e-small .e-listbox-container.e-filter-list .e-list-parent {
3081
- height: calc(100% - 45px);
3081
+ height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
3082
+ }
3083
+
3084
+ .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
3085
+ height: calc(100% - 59px) !important; /* stylelint-disable-line declaration-no-important */
3086
+ }
3087
+
3088
+ .e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
3089
+ height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
3082
3090
  }
3083
3091
 
3084
- .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
3085
3092
  .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
3086
- height: calc(100% - 59px);
3093
+ height: 100%;
3087
3094
  }
3088
3095
 
3089
3096
  .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
3090
3097
  .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
3091
- height: calc(100% - 104px);
3098
+ height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
3099
+ }
3100
+
3101
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
3102
+ height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
3103
+ }
3104
+
3105
+ .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
3106
+ height: calc(100% - 51px) !important; /* stylelint-disable-line declaration-no-important */
3107
+ }
3108
+
3109
+ .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
3110
+ height: calc(100% - 59px) !important; /* stylelint-disable-line declaration-no-important */
3111
+ }
3112
+
3113
+ .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
3114
+ height: 100%;
3092
3115
  }
3093
3116
 
3094
3117
  .e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
3118
+ .e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
3119
+ height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
3120
+ }
3121
+
3095
3122
  .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
3096
- height: calc(100% - 45px);
3123
+ height: 100%;
3097
3124
  }
3098
3125
 
3099
3126
  .e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
3127
+ .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
3128
+ height: calc(100% - 55px) !important; /* stylelint-disable-line declaration-no-important */
3129
+ }
3130
+
3131
+ .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
3132
+ height: calc(100% - 87px) !important; /* stylelint-disable-line declaration-no-important */
3133
+ }
3134
+
3135
+ .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
3136
+ height: calc(100% - 104px) !important; /* stylelint-disable-line declaration-no-important */
3137
+ }
3138
+
3100
3139
  .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
3101
- height: calc(100% - 55px);
3140
+ height: 100%;
3102
3141
  }
3103
3142
 
3104
3143
  .e-listbox-wrapper,
@@ -3131,7 +3170,7 @@ ejs-listbox {
3131
3170
  .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
3132
3171
  .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
3133
3172
  .e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
3134
- height: calc(100% - 87px);
3173
+ height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
3135
3174
  }
3136
3175
 
3137
3176
  .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
@@ -3407,6 +3446,30 @@ ejs-listbox {
3407
3446
  padding-right: 0.923em;
3408
3447
  }
3409
3448
 
3449
+ .e-listbox-container.e-filter-list .e-list-parent {
3450
+ height: 100%;
3451
+ }
3452
+
3453
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
3454
+ height: 100%;
3455
+ }
3456
+
3457
+ .e-listbox-container .e-selectall-parent + .e-list-parent {
3458
+ height: 100%;
3459
+ }
3460
+
3461
+ .e-listbox-container.e-filter-list .e-list-wrap {
3462
+ height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
3463
+ }
3464
+
3465
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
3466
+ height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
3467
+ }
3468
+
3469
+ .e-listbox-container .e-selectall-parent + .e-list-wrap {
3470
+ height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
3471
+ }
3472
+
3410
3473
  /* stylelint-disable property-no-vendor-prefix */
3411
3474
  @keyframes material-spinner-rotate {
3412
3475
  0% {
@@ -116,7 +116,11 @@ $listbox-filter-small-height: calc(100% - 46px) !default;
116
116
  $listbox-filter-bigger-small-height: calc(100% - 54px) !default;
117
117
  $listbox-select-height: calc(100% - 40px) !default;
118
118
  $listbox-select-bigger-height: calc(100% - 48px) !default;
119
- $listbox-filterselect-height: calc(100% - 92px) !default;
120
- $listbox-filterselect-bigger-height: calc(100% - 106px) !default;
119
+ $listbox-filterselect-height: calc(100% - 40px) !default;
120
+ $listbox-filterselect-bigger-height: calc(100% - 48px) !default;
121
+ $listbox-mat-filter-height: calc(100% - 51px) !default;
122
+ $listbox-mat-filter-bigger-height: calc(100% - 58px) !default;
121
123
  $listbox-filter-height: calc(100% - 52px) !default;
122
124
  $listbox-filter-bigger-height: calc(100% - 58px) !default;
125
+ $listbox-ej2-filterselect-height: calc(100% - 91.5px) !default;
126
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 106px) !default;
@@ -108,8 +108,12 @@ $select-all-border-color: $grey-e6 !default;
108
108
  $listbox-filter-small-height: calc(100% - 46px) !default;
109
109
  $listbox-filter-bigger-small-height: calc(100% - 54px) !default;
110
110
  $listbox-select-height: calc(100% - 40px) !default;
111
- $listbox-select-bigger-height: calc(100% - 48px) !default;
112
- $listbox-filterselect-height: calc(100% - 92px) !default;
113
- $listbox-filterselect-bigger-height: calc(100% - 106px) !default;
111
+ $listbox-select-bigger-height: calc(100% - 40px) !default;
112
+ $listbox-filterselect-height: calc(100% - 40px) !default;
113
+ $listbox-filterselect-bigger-height: calc(100% - 48px) !default;
114
+ $listbox-mat-filter-height: calc(100% - 51px) !default;
115
+ $listbox-mat-filter-bigger-height: calc(100% - 58px) !default;
114
116
  $listbox-filter-height: calc(100% - 52px) !default;
115
117
  $listbox-filter-bigger-height: calc(100% - 58px) !default;
118
+ $listbox-ej2-filterselect-height: calc(100% - 91.5px) !default;
119
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 106px) !default;
@@ -114,7 +114,11 @@ $listbox-filter-small-height: calc(100% - 43px) !default;
114
114
  $listbox-filter-bigger-small-height: calc(100% - 56px) !default;
115
115
  $listbox-select-height: calc(100% - 40px) !default;
116
116
  $listbox-select-bigger-height: calc(100% - 50px) !default;
117
- $listbox-filterselect-height: calc(100% - 79px) !default;
118
- $listbox-filterselect-bigger-height: calc(100% - 96px) !default;
119
- $listbox-filter-height: calc(100% - 48px) !default;
120
- $listbox-filter-bigger-height: calc(100% - 56px) !default;
117
+ $listbox-filterselect-height: calc(100% - 41px) !default;
118
+ $listbox-filterselect-bigger-height: calc(100% - 50px) !default;
119
+ $listbox-mat-filter-height: calc(100% - 50px) !default;
120
+ $listbox-mat-filter-bigger-height: calc(100% - 58px) !default;
121
+ $listbox-filter-height: calc(100% - 51px) !default;
122
+ $listbox-filter-bigger-height: calc(100% - 59px) !default;
123
+ $listbox-ej2-filterselect-height: calc(100% - 90.5px) !default;
124
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 108px) !default;
@@ -68,10 +68,8 @@ $listbox-template-multiline-header-font-size: $text-sm !default;
68
68
  $listbox-template-multiline-padding: 4px !default;
69
69
  $listbox-template-multiline-content-font-size: $text-sm !default;
70
70
  $listbox-template-multiline-avatar-top: 0 !default;
71
- $listbox-filter-height: calc(100% - 47px) !default;
72
71
  $listbox-filter-small-height: calc(100% - 45px) !default;
73
72
  $listbox-filter-bigger-small-height: calc(100% - 45px) !default;
74
- $listbox-filter-bigger-height: calc(100% - 55px) !default;
75
73
  $listbox-item-height: 36px !default;
76
74
 
77
75
  $listbox-border-color: $border-light;
@@ -112,7 +110,11 @@ $listbox-template-multiline-content-color: $content-text-color-alt2 !default;
112
110
 
113
111
  $listbox-select-height: calc(100% - 36px) !default;
114
112
  $listbox-select-bigger-height: calc(100% - 40px) !default;
115
- $listbox-filterselect-height: calc(100% - 86px) !default;
116
- $listbox-filterselect-bigger-height: calc(100% - 96px) !default;
113
+ $listbox-filterselect-height: calc(100% - 36px) !default;
114
+ $listbox-filterselect-bigger-height: calc(100% - 48px) !default;
115
+ $listbox-mat-filter-height: calc(100% - 50px) !default;
116
+ $listbox-mat-filter-bigger-height: calc(100% - 55px) !default;
117
117
  $listbox-filter-height: calc(100% - 50px) !default;
118
118
  $listbox-filter-bigger-height: calc(100% - 56px) !default;
119
+ $listbox-ej2-filterselect-height: calc(100% - 86px) !default;
120
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 104px) !default;
@@ -116,7 +116,11 @@ $listbox-filter-small-height: calc(100% - 45px) !default;
116
116
  $listbox-filter-bigger-small-height: calc(100% - 55px) !default;
117
117
  $listbox-select-height: calc(100% - 36px) !default;
118
118
  $listbox-select-bigger-height: calc(100% - 45px) !default;
119
- $listbox-filterselect-height: calc(100% - 87px) !default;
120
- $listbox-filterselect-bigger-height: calc(100% - 104px) !default;
119
+ $listbox-filterselect-height: calc(100% - 36px) !default;
120
+ $listbox-filterselect-bigger-height: calc(100% - 45px) !default;
121
+ $listbox-mat-filter-height: calc(100% - 50px) !default;
122
+ $listbox-mat-filter-bigger-height: calc(100% - 58px) !default;
121
123
  $listbox-filter-height: calc(100% - 51px) !default;
122
124
  $listbox-filter-bigger-height: calc(100% - 59px) !default;
125
+ $listbox-ej2-filterselect-height: calc(100% - 87px) !default;
126
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 104px) !default;
@@ -109,7 +109,11 @@ $listbox-filter-small-height: calc(100% - 45px) !default;
109
109
  $listbox-filter-bigger-small-height: calc(100% - 55px) !default;
110
110
  $listbox-select-height: calc(100% - 36px) !default;
111
111
  $listbox-select-bigger-height: calc(100% - 45px) !default;
112
- $listbox-filterselect-height: calc(100% - 87px) !default;
113
- $listbox-filterselect-bigger-height: calc(100% - 104px) !default;
112
+ $listbox-filterselect-height: calc(100% - 36px) !default;
113
+ $listbox-filterselect-bigger-height: calc(100% - 45px) !default;
114
+ $listbox-mat-filter-height: calc(100% - 50px) !default;
115
+ $listbox-mat-filter-bigger-height: calc(100% - 58px) !default;
114
116
  $listbox-filter-height: calc(100% - 51px) !default;
115
117
  $listbox-filter-bigger-height: calc(100% - 59px) !default;
118
+ $listbox-ej2-filterselect-height: calc(100% - 87px) !default;
119
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 104px) !default;
@@ -68,10 +68,8 @@ $listbox-template-multiline-header-font-size: $text-sm !default;
68
68
  $listbox-template-multiline-padding: 4px !default;
69
69
  $listbox-template-multiline-content-font-size: $text-sm !default;
70
70
  $listbox-template-multiline-avatar-top: 0 !default;
71
- $listbox-filter-height: calc(100% - 56px) !default;
72
71
  $listbox-filter-small-height: calc(100% - 50px) !default;
73
72
  $listbox-filter-bigger-small-height: calc(100% - 59px) !default;
74
- $listbox-filter-bigger-height: calc(100% - 64px) !default;
75
73
  $listbox-item-height: 36px !default;
76
74
 
77
75
  $listbox-border-color: $border-light;
@@ -112,7 +110,11 @@ $listbox-template-multiline-content-color: $content-text-color-alt2 !default;
112
110
 
113
111
  $listbox-select-height: calc(100% - 36px) !default;
114
112
  $listbox-select-bigger-height: calc(100% - 48px) !default;
115
- $listbox-filterselect-height: calc(100% - 93px) !default;
116
- $listbox-filterselect-bigger-height: calc(100% - 113px) !default;
117
- $listbox-filter-height: calc(100% - 57px) !default;
118
- $listbox-filter-bigger-height: calc(100% - 65px) !default;
113
+ $listbox-filterselect-height: calc(100% - 36px) !default;
114
+ $listbox-filterselect-bigger-height: calc(100% - 48px) !default;
115
+ $listbox-mat-filter-height: calc(100% - 56px) !default;
116
+ $listbox-mat-filter-bigger-height: calc(100% - 64px) !default;
117
+ $listbox-filter-height: calc(100% - 56px) !default;
118
+ $listbox-filter-bigger-height: calc(100% - 64px) !default;
119
+ $listbox-ej2-filterselect-height: calc(100% - 93px) !default;
120
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 113px) !default;
@@ -109,7 +109,11 @@ $listbox-filter-small-height: calc(100% - 45px) !default;
109
109
  $listbox-filter-bigger-small-height: calc(100% - 55px) !default;
110
110
  $listbox-select-height: calc(100% - 36px) !default;
111
111
  $listbox-select-bigger-height: calc(100% - 45px) !default;
112
- $listbox-filterselect-height: calc(100% - 87px) !default;
113
- $listbox-filterselect-bigger-height: calc(100% - 104px) !default;
112
+ $listbox-filterselect-height: calc(100% - 36px) !default;
113
+ $listbox-filterselect-bigger-height: calc(100% - 45px) !default;
114
+ $listbox-mat-filter-height: calc(100% - 50px) !default;
115
+ $listbox-mat-filter-bigger-height: calc(100% - 58px) !default;
114
116
  $listbox-filter-height: calc(100% - 51px) !default;
115
117
  $listbox-filter-bigger-height: calc(100% - 59px) !default;
118
+ $listbox-ej2-filterselect-height: calc(100% - 87px) !default;
119
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 104px) !default;
@@ -116,7 +116,11 @@ $listbox-filter-small-height: calc(100% - 45px) !default;
116
116
  $listbox-filter-bigger-small-height: calc(100% - 55px) !default;
117
117
  $listbox-select-height: calc(100% - 36px) !default;
118
118
  $listbox-select-bigger-height: calc(100% - 45px) !default;
119
- $listbox-filterselect-height: calc(100% - 87px) !default;
120
- $listbox-filterselect-bigger-height: calc(100% - 104px) !default;
119
+ $listbox-filterselect-height: calc(100% - 36px) !default;
120
+ $listbox-filterselect-bigger-height: calc(100% - 45px) !default;
121
+ $listbox-mat-filter-height: calc(100% - 50px) !default;
122
+ $listbox-mat-filter-bigger-height: calc(100% - 58px) !default;
121
123
  $listbox-filter-height: calc(100% - 51px) !default;
122
124
  $listbox-filter-bigger-height: calc(100% - 59px) !default;
125
+ $listbox-ej2-filterselect-height: calc(100% - 87px) !default;
126
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 104px) !default;
@@ -116,7 +116,11 @@ $listbox-filter-small-height: calc(100% - 45px) !default;
116
116
  $listbox-filter-bigger-small-height: calc(100% - 45px) !default;
117
117
  $listbox-select-height: calc(100% - 36px) !default;
118
118
  $listbox-select-bigger-height: calc(100% - 48px) !default;
119
- $listbox-filterselect-height: calc(100% - 79px) !default;
120
- $listbox-filterselect-bigger-height: calc(100% - 98px) !default;
121
- $listbox-filter-height: calc(100% - 43px) !default;
122
- $listbox-filter-bigger-height: calc(100% - 50px) !default;
119
+ $listbox-filterselect-height: calc(100% - 36px) !default;
120
+ $listbox-filterselect-bigger-height: calc(100% - 48px) !default;
121
+ $listbox-mat-filter-height: calc(100% - 43px) !default;
122
+ $listbox-mat-filter-bigger-height: calc(100% - 50px) !default;
123
+ $listbox-filter-height: calc(100% - 48px) !default;
124
+ $listbox-filter-bigger-height: calc(100% - 55px) !default;
125
+ $listbox-ej2-filterselect-height: calc(100% - 83px) !default;
126
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 103px) !default;
@@ -109,7 +109,11 @@ $listbox-filter-small-height: calc(100% - 45px) !default;
109
109
  $listbox-filter-bigger-small-height: calc(100% - 45px) !default;
110
110
  $listbox-select-height: calc(100% - 36px) !default;
111
111
  $listbox-select-bigger-height: calc(100% - 48px) !default;
112
- $listbox-filterselect-height: calc(100% - 79px) !default;
113
- $listbox-filterselect-bigger-height: calc(100% - 98px) !default;
114
- $listbox-filter-height: calc(100% - 43px) !default;
115
- $listbox-filter-bigger-height: calc(100% - 50px) !default;
112
+ $listbox-filterselect-height: calc(100% - 36px) !default;
113
+ $listbox-filterselect-bigger-height: calc(100% - 48px) !default;
114
+ $listbox-mat-filter-height: calc(100% - 43px) !default;
115
+ $listbox-mat-filter-bigger-height: calc(100% - 50px) !default;
116
+ $listbox-filter-height: calc(100% - 48px) !default;
117
+ $listbox-filter-bigger-height: calc(100% - 55px) !default;
118
+ $listbox-ej2-filterselect-height: calc(100% - 83px) !default;
119
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 103px) !default;
@@ -68,10 +68,8 @@ $listbox-template-multiline-header-font-size: $text-sm !default;
68
68
  $listbox-template-multiline-padding: 4px !default;
69
69
  $listbox-template-multiline-content-font-size: $text-sm !default;
70
70
  $listbox-template-multiline-avatar-top: 0 !default;
71
- $listbox-filter-height: calc(100% - 40px) !default;
72
71
  $listbox-filter-small-height: calc(100% - 35px) !default;
73
72
  $listbox-filter-bigger-small-height: calc(100% - 37px) !default;
74
- $listbox-filter-bigger-height: calc(100% - 48px) !default;
75
73
  $listbox-item-height: 40px !default;
76
74
 
77
75
  $listbox-border-color: rgba($border-light);
@@ -111,7 +109,11 @@ $listbox-template-multiline-header-color: rgba($content-text-color) !default;
111
109
  $listbox-template-multiline-content-color: rgba($content-text-color-alt2) !default;
112
110
  $listbox-select-height: calc(100% - 36px) !default;
113
111
  $listbox-select-bigger-height: calc(100% - 48px) !default;
114
- $listbox-filterselect-height: calc(100% - 79px) !default;
115
- $listbox-filterselect-bigger-height: calc(100% - 98px) !default;
116
- $listbox-filter-height: calc(100% - 43px) !default;
117
- $listbox-filter-bigger-height: calc(100% - 50px) !default;
112
+ $listbox-filterselect-height: calc(100% - 40px) !default;
113
+ $listbox-filterselect-bigger-height: calc(100% - 48px) !default;
114
+ $listbox-mat-filter-height: calc(100% - ($listbox-item-height - 4px)) !default;
115
+ $listbox-mat-filter-bigger-height: calc(100% - ($listbox-touch-item-height - 4px)) !default;
116
+ $listbox-filter-height: calc(100% - 36px) !default;
117
+ $listbox-filter-bigger-height: calc(100% - 44px) !default;
118
+ $listbox-ej2-filterselect-height: calc(100% - 76px) !default;
119
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 92px) !default;
@@ -69,10 +69,8 @@ $listbox-template-multiline-header-font-size: $text-sm !default;
69
69
  $listbox-template-multiline-padding: 4px !default;
70
70
  $listbox-template-multiline-content-font-size: $text-sm !default;
71
71
  $listbox-template-multiline-avatar-top: 0 !default;
72
- $listbox-filter-height: calc(100% - 49px) !default;
73
72
  $listbox-filter-small-height: calc(100% - 45px) !default;
74
73
  $listbox-filter-bigger-small-height: calc(100% - 53px) !default;
75
- $listbox-filter-bigger-height: calc(100% - 57px) !default;
76
74
 
77
75
  $listbox-border-color: $border-light;
78
76
  $badge-color: $primary-text-color !default;
@@ -111,7 +109,11 @@ $listbox-template-multiline-header-color: $content-text-color !default;
111
109
  $listbox-template-multiline-content-color: $content-text-color-alt2 !default;
112
110
  $listbox-select-height: calc(100% - 38px) !default;
113
111
  $listbox-select-bigger-height: calc(100% - 48px) !default;
114
- $listbox-filterselect-height: calc(100% - 76px) !default;
115
- $listbox-filterselect-bigger-height: calc(100% - 94px) !default;
116
- $listbox-filter-height: calc(100% - 38px) !default;
117
- $listbox-filter-bigger-height: calc(100% - 46px) !default;
112
+ $listbox-filterselect-height: calc(100% - 38px) !default;
113
+ $listbox-filterselect-bigger-height: calc(100% - 47px) !default;
114
+ $listbox-mat-filter-height: calc(100% - 50px) !default;
115
+ $listbox-mat-filter-bigger-height: calc(100% - 58px) !default;
116
+ $listbox-filter-height: calc(100% - 50px) !default;
117
+ $listbox-filter-bigger-height: calc(100% - 58px) !default;
118
+ $listbox-ej2-filterselect-height: calc(100% - 87.5px) !default;
119
+ $listbox-ej2-filterselect-bigger-height: calc(100% - 106px) !default;
@@ -1,27 +1,64 @@
1
1
  @include export-module('listbox-theme') {
2
2
  .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
3
3
  .e-small .e-listbox-container.e-filter-list .e-list-parent {
4
- height: $listbox-filter-small-height;
4
+ height: $listbox-filter-small-height !important; /* stylelint-disable-line declaration-no-important */
5
+ }
6
+
7
+ .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
8
+ height: $listbox-filter-bigger-height !important; /* stylelint-disable-line declaration-no-important */
9
+ }
10
+ .e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
11
+ height: $listbox-mat-filter-bigger-height !important; /* stylelint-disable-line declaration-no-important */
5
12
  }
6
13
 
7
- .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
8
14
  .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
9
- height: $listbox-filter-bigger-height;
15
+ height: 100%;
10
16
  }
11
17
 
12
18
  .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
13
19
  .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
14
- height: $listbox-filterselect-bigger-height;
20
+ height: $listbox-filterselect-bigger-height !important; /* stylelint-disable-line declaration-no-important */
21
+ }
22
+
23
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
24
+ height: $listbox-filterselect-bigger-height !important; /* stylelint-disable-line declaration-no-important */
25
+ }
26
+
27
+ .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
28
+ height: $listbox-filter-height !important; /* stylelint-disable-line declaration-no-important */
29
+ }
30
+
31
+ .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
32
+ height: $listbox-filter-bigger-height !important; /* stylelint-disable-line declaration-no-important */
33
+ }
34
+ .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
35
+ height: 100%;
15
36
  }
16
37
 
17
38
  .e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
39
+ .e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
40
+ height: $listbox-select-bigger-height !important; /* stylelint-disable-line declaration-no-important */
41
+ }
42
+
18
43
  .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
19
- height: $listbox-select-bigger-height;
44
+ height: 100%;
20
45
  }
21
46
 
22
47
  .e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
48
+ .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
49
+ height: $listbox-filter-bigger-small-height !important; /* stylelint-disable-line declaration-no-important */
50
+ }
51
+
52
+ .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
53
+ height: $listbox-ej2-filterselect-height !important;/* stylelint-disable-line declaration-no-important */
54
+ }
55
+
56
+ .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
57
+ height: $listbox-ej2-filterselect-bigger-height !important;/* stylelint-disable-line declaration-no-important */
58
+ }
59
+
23
60
  .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
24
- height: $listbox-filter-bigger-small-height;
61
+ height: 100%;
25
62
  }
26
63
 
27
64
  .e-listbox-wrapper,
@@ -62,7 +99,7 @@
62
99
  }
63
100
 
64
101
  &.e-filter-list .e-selectall-parent + .e-list-parent {
65
- height: $listbox-filterselect-height;
102
+ height: $listbox-filterselect-height !important; /* stylelint-disable-line declaration-no-important */
66
103
  }
67
104
 
68
105
  & .e-selectall-parent + .e-list-parent {
@@ -314,4 +351,32 @@
314
351
  }
315
352
  }
316
353
  }
354
+
355
+ .e-listbox-container {
356
+ @at-root {
357
+ &.e-filter-list .e-list-parent {
358
+ height: 100%;
359
+ }
360
+
361
+ &.e-filter-list .e-selectall-parent + .e-list-parent {
362
+ height: 100%;
363
+ }
364
+
365
+ & .e-selectall-parent + .e-list-parent {
366
+ height: 100%;
367
+ }
368
+
369
+ &.e-filter-list .e-list-wrap {
370
+ height: $listbox-mat-filter-height !important; /* stylelint-disable-line declaration-no-important */
371
+ }
372
+
373
+ &.e-filter-list .e-selectall-parent + .e-list-wrap {
374
+ height: $listbox-filterselect-height !important; /* stylelint-disable-line declaration-no-important */
375
+ }
376
+
377
+ & .e-selectall-parent + .e-list-wrap {
378
+ height: $listbox-select-height !important; /* stylelint-disable-line declaration-no-important */
379
+ }
380
+ }
381
+ }
317
382
  }
@@ -562,27 +562,66 @@ ejs-listbox {
562
562
  }
563
563
  .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
564
564
  .e-small .e-listbox-container.e-filter-list .e-list-parent {
565
- height: calc(100% - 46px);
565
+ height: calc(100% - 46px) !important; /* stylelint-disable-line declaration-no-important */
566
+ }
567
+
568
+ .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
569
+ height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
570
+ }
571
+
572
+ .e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
573
+ height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
566
574
  }
567
575
 
568
- .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
569
576
  .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
570
- height: calc(100% - 58px);
577
+ height: 100%;
571
578
  }
572
579
 
573
580
  .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
574
581
  .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
575
- height: calc(100% - 106px);
582
+ height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
583
+ }
584
+
585
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
586
+ height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
587
+ }
588
+
589
+ .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
590
+ height: calc(100% - 52px) !important; /* stylelint-disable-line declaration-no-important */
591
+ }
592
+
593
+ .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
594
+ height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
595
+ }
596
+
597
+ .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
598
+ height: 100%;
576
599
  }
577
600
 
578
601
  .e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
602
+ .e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
603
+ height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
604
+ }
605
+
579
606
  .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
580
- height: calc(100% - 48px);
607
+ height: 100%;
581
608
  }
582
609
 
583
610
  .e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
611
+ .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
612
+ height: calc(100% - 54px) !important; /* stylelint-disable-line declaration-no-important */
613
+ }
614
+
615
+ .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
616
+ height: calc(100% - 91.5px) !important; /* stylelint-disable-line declaration-no-important */
617
+ }
618
+
619
+ .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
620
+ height: calc(100% - 106px) !important; /* stylelint-disable-line declaration-no-important */
621
+ }
622
+
584
623
  .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
585
- height: calc(100% - 54px);
624
+ height: 100%;
586
625
  }
587
626
 
588
627
  .e-listbox-wrapper,
@@ -615,7 +654,7 @@ ejs-listbox {
615
654
  .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
616
655
  .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
617
656
  .e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
618
- height: calc(100% - 92px);
657
+ height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
619
658
  }
620
659
 
621
660
  .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
@@ -889,4 +928,28 @@ ejs-listbox {
889
928
  .e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
890
929
  padding-left: 3.9285em;
891
930
  padding-right: 1.0714em;
931
+ }
932
+
933
+ .e-listbox-container.e-filter-list .e-list-parent {
934
+ height: 100%;
935
+ }
936
+
937
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
938
+ height: 100%;
939
+ }
940
+
941
+ .e-listbox-container .e-selectall-parent + .e-list-parent {
942
+ height: 100%;
943
+ }
944
+
945
+ .e-listbox-container.e-filter-list .e-list-wrap {
946
+ height: calc(100% - 51px) !important; /* stylelint-disable-line declaration-no-important */
947
+ }
948
+
949
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
950
+ height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
951
+ }
952
+
953
+ .e-listbox-container .e-selectall-parent + .e-list-wrap {
954
+ height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
892
955
  }