@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,496 @@
1
+
2
+
3
+
4
+
5
+ .e-dropdownbase .e-list-item.e-active,
6
+ .e-dropdownbase .e-list-item.e-active.e-hover {
7
+ font-weight: 500;
8
+ }
9
+
10
+ .e-dropdownbase .e-list-group-item,
11
+ .e-fixed-head {
12
+ font-size: 12px;
13
+ text-transform: uppercase;
14
+ }
15
+
16
+ .e-small .e-dropdownbase .e-list-group-item,
17
+ .e-small .e-fixed-head,
18
+ .e-small.e-dropdownbase .e-list-group-item,
19
+ .e-small.e-fixed-head {
20
+ font-size: 10px;
21
+ }
22
+
23
+ .e-dropdownbase .e-list-item .e-list-icon {
24
+ padding: 0 8px 0 0;
25
+ }
26
+
27
+ .e-small .e-dropdownbase .e-list-item .e-list-icon {
28
+ padding: 0 4px 0 0;
29
+ }
30
+
31
+ /* stylelint-disable */
32
+ .e-dropdownbase .e-list-item {
33
+ border-radius: 6px !important;
34
+ }
35
+
36
+ .e-dropdownbase {
37
+ display: block;
38
+ height: 100%;
39
+ min-height: 36px;
40
+ position: relative;
41
+ width: 100%;
42
+ }
43
+ .e-dropdownbase .e-list-parent {
44
+ margin: 0;
45
+ padding: 0;
46
+ }
47
+
48
+ .e-dropdownbase .e-list-group-item, .e-dropdownbase .e-fixed-head {
49
+ cursor: default;
50
+ }
51
+
52
+ .e-dropdownbase .e-list-item {
53
+ cursor: pointer;
54
+ overflow: hidden;
55
+ position: relative;
56
+ text-overflow: ellipsis;
57
+ vertical-align: middle;
58
+ white-space: nowrap;
59
+ width: 100%;
60
+ }
61
+
62
+ .e-dropdownbase .e-list-item .e-list-icon {
63
+ font-size: 16px;
64
+ vertical-align: middle;
65
+ }
66
+
67
+ .e-dropdownbase .e-fixed-head {
68
+ position: absolute;
69
+ top: 0;
70
+ }
71
+
72
+ .e-dropdownbase.e-content {
73
+ overflow: auto;
74
+ position: relative;
75
+ }
76
+
77
+ .e-popup.e-ddl .e-dropdownbase.e-nodata,
78
+ .e-popup.e-mention .e-dropdownbase.e-nodata {
79
+ color: var(--color-sf-text-primary);
80
+ cursor: default;
81
+ font-family: "Inter";
82
+ font-size: 14px;
83
+ padding: 14px 16px;
84
+ text-align: center;
85
+ }
86
+
87
+ .e-mention.e-popup {
88
+ background: var(--color-sf-bg-primary);
89
+ border: 0;
90
+ -webkit-box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
91
+ box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.21);
92
+ margin-top: 2px;
93
+ position: absolute;
94
+ }
95
+
96
+ .e-mention.e-popup .e-dropdownbase {
97
+ min-height: 32px;
98
+ }
99
+
100
+ .e-mention .e-dropdownbase .e-list-item .e-highlight {
101
+ display: inline;
102
+ font-weight: bold;
103
+ vertical-align: baseline;
104
+ }
105
+
106
+ .e-mention .e-mention-chip,
107
+ .e-mention .e-mention-chip:hover {
108
+ background: var(--color-sf-bg-secondary);
109
+ border-radius: 2px;
110
+ border: none;
111
+ color: var(--color-sf-brand-primary);
112
+ cursor: default;
113
+ }
114
+
115
+ .e-mention.e-editable-element {
116
+ border: 2px solid var(--color-sf-border-secondary);
117
+ height: auto;
118
+ min-height: 120px;
119
+ width: 100%;
120
+ }
121
+
122
+ .e-form-mirror-div {
123
+ white-space: pre-wrap;
124
+ }
125
+
126
+ .e-small.e-ddl .e-dropdownbase.e-nodata,
127
+ .e-small .e-ddl .e-dropdownbase.e-nodata {
128
+ font-size: 12px;
129
+ }
130
+
131
+ .e-rtl .e-dropdownbase.e-dd-group .e-list-item {
132
+ padding-right: 12px;
133
+ }
134
+
135
+ .e-dropdownbase.e-dd-group .e-list-item {
136
+ padding-left: 12px;
137
+ text-indent: 0;
138
+ }
139
+
140
+ .e-small .e-dropdownbase.e-dd-group .e-list-item {
141
+ padding-left: 8px;
142
+ text-indent: 0;
143
+ }
144
+
145
+ .e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-dropdownbase.e-dd-group .e-list-group-item {
146
+ text-indent: 0;
147
+ }
148
+
149
+ .e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-dropdownbase.e-dd-group .e-list-group-item {
150
+ cursor: pointer;
151
+ font-weight: normal;
152
+ overflow: hidden;
153
+ position: relative;
154
+ text-overflow: ellipsis;
155
+ vertical-align: middle;
156
+ white-space: nowrap;
157
+ width: 100%;
158
+ font-weight: 500;
159
+ }
160
+
161
+ .e-rtl.e-multiselect-group .e-dropdownbase.e-dd-group .e-list-item {
162
+ padding-right: 12px;
163
+ }
164
+
165
+ .e-rtl .e-dropdownbase .e-list-item {
166
+ padding-left: 16px;
167
+ padding-right: 0;
168
+ }
169
+ .e-rtl .e-dropdownbase.e-dd-group .e-list-item {
170
+ padding-right: 12px;
171
+ }
172
+ .e-rtl .e-dropdownbase .e-list-group-item, .e-rtl .e-dropdownbase .e-fixed-head {
173
+ padding-right: 12px;
174
+ }
175
+
176
+ .e-small.e-rtl .e-dropdownbase .e-list-item,
177
+ .e-small .e-rtl .e-dropdownbase .e-list-item,
178
+ .e-rtl .e-small .e-dropdownbase .e-list-item {
179
+ padding-left: 16px;
180
+ padding-right: 0;
181
+ }
182
+ .e-small.e-rtl .e-dropdownbase.e-dd-group .e-list-item,
183
+ .e-small .e-rtl .e-dropdownbase.e-dd-group .e-list-item,
184
+ .e-rtl .e-small .e-dropdownbase.e-dd-group .e-list-item {
185
+ padding-right: 8px;
186
+ }
187
+ .e-small.e-rtl .e-dropdownbase .e-list-group-item, .e-small.e-rtl .e-dropdownbase .e-fixed-head,
188
+ .e-small .e-rtl .e-dropdownbase .e-list-group-item,
189
+ .e-small .e-rtl .e-dropdownbase .e-fixed-head,
190
+ .e-rtl .e-small .e-dropdownbase .e-list-group-item,
191
+ .e-rtl .e-small .e-dropdownbase .e-fixed-head {
192
+ padding-right: 8px;
193
+ }
194
+
195
+ .e-dropdownbase {
196
+ border-color: var(--color-sf-border-secondary);
197
+ }
198
+ .e-dropdownbase .e-list-item {
199
+ /* stylelint-disable property-no-vendor-prefix */
200
+ -webkit-tap-highlight-color: transparent;
201
+ border-bottom: 0;
202
+ border-color: var(--color-sf-border-secondary);
203
+ color: var(--color-sf-text-primary);
204
+ font-family: "Inter";
205
+ font-size: 14px;
206
+ line-height: 32px;
207
+ min-height: 32px;
208
+ padding-right: 16px;
209
+ text-indent: 12px;
210
+ background-color: var(--color-sf-bg-primary-alt);
211
+ }
212
+
213
+ .e-dropdownbase .e-list-group-item,
214
+ .e-fixed-head {
215
+ border-color: var(--color-sf-border-secondary);
216
+ color: var(--color-sf-text-tertiary);
217
+ font-family: "Inter";
218
+ font-size: 12px;
219
+ font-weight: 500;
220
+ line-height: 32px;
221
+ min-height: 32px;
222
+ padding-left: 12px;
223
+ padding-right: 16px;
224
+ overflow: hidden;
225
+ text-overflow: ellipsis;
226
+ background-color: var(--color-sf-bg-primary-alt);
227
+ }
228
+
229
+ .e-dropdownbase .e-list-item.e-active, .e-dropdownbase .e-list-item.e-active.e-hover {
230
+ background-color: var(--color-sf-bg-secondary);
231
+ border-color: var(--color-sf-bg-primary);
232
+ color: var(--color-sf-text-primary);
233
+ }
234
+
235
+ .e-dropdownbase .e-list-item.e-hover {
236
+ background-color: var(--color-sf-bg-secondary-hover);
237
+ border-color: var(--color-sf-bg-primary);
238
+ color: var(--color-sf-text-secondary-hover);
239
+ }
240
+
241
+ .e-dropdownbase .e-list-item:last-child {
242
+ border-bottom: 0;
243
+ }
244
+
245
+ .e-dropdownbase .e-list-item.e-item-focus {
246
+ background-color: var(--color-sf-bg-secondary-hover);
247
+ }
248
+
249
+ .e-multi-column.e-ddl.e-popup.e-popup-open table {
250
+ border-collapse: collapse;
251
+ table-layout: fixed;
252
+ width: 100%;
253
+ }
254
+
255
+ .e-multi-column.e-ddl.e-popup.e-popup-open th,
256
+ .e-multi-column.e-ddl.e-popup.e-popup-open td {
257
+ display: table-cell;
258
+ overflow: hidden;
259
+ padding-right: 16px;
260
+ text-indent: 10px;
261
+ text-overflow: ellipsis;
262
+ }
263
+
264
+ .e-multi-column.e-ddl.e-popup.e-popup-open th {
265
+ line-height: 36px;
266
+ text-align: left;
267
+ }
268
+
269
+ .e-multi-column.e-ddl.e-popup.e-popup-open .e-ddl-header {
270
+ background-color: var(--color-sf-bg-primary-alt);
271
+ border-color: var(--color-sf-border-secondary);
272
+ border-style: solid;
273
+ border-width: 0 0 1px 0;
274
+ color: var(--color-sf-text-tertiary);
275
+ font-family: "Inter";
276
+ font-size: 14px;
277
+ font-weight: 500;
278
+ text-indent: 10px;
279
+ }
280
+
281
+ .e-multi-column.e-ddl.e-popup.e-popup-open .e-dropdownbase .e-list-item {
282
+ padding-right: 0;
283
+ }
284
+
285
+ .e-multi-column.e-ddl.e-popup.e-popup-open.e-scroller .e-ddl-header {
286
+ padding-right: 16px;
287
+ }
288
+
289
+ .e-multi-column.e-ddl.e-popup.e-popup-open .e-ddl-header,
290
+ .e-multi-column.e-ddl.e-popup.e-popup-open.e-ddl-device .e-ddl-header {
291
+ padding-right: 0;
292
+ }
293
+
294
+ .e-multi-column.e-ddl.e-popup.e-popup-open .e-text-center {
295
+ text-align: center;
296
+ }
297
+
298
+ .e-multi-column.e-ddl.e-popup.e-popup-open .e-text-right {
299
+ text-align: right;
300
+ }
301
+
302
+ .e-multi-column.e-ddl.e-popup.e-popup-open .e-text-left {
303
+ text-align: left;
304
+ }
305
+
306
+ .e-small .e-dropdownbase .e-list-item,
307
+ .e-dropdownbase.e-small .e-list-item {
308
+ color: var(--color-sf-text-primary);
309
+ line-height: 28px;
310
+ min-height: 28px;
311
+ text-indent: 8px;
312
+ }
313
+
314
+ .e-small .e-dropdownbase .e-list-group-item, .e-small .e-dropdownbase .e-fixed-head,
315
+ .e-dropdownbase.e-small .e-list-group-item,
316
+ .e-dropdownbase.e-small .e-fixed-head {
317
+ font-size: 10px;
318
+ line-height: 28px;
319
+ min-height: 28px;
320
+ padding-left: 8px;
321
+ }
322
+
323
+ .e-small .e-dropdownbase .e-list-item .e-list-icon,
324
+ .e-dropdownbase.e-small .e-list-item .e-list-icon {
325
+ font-size: 14px;
326
+ }
327
+
328
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item {
329
+ background-color: var(--color-sf-bg-primary-alt);
330
+ border-bottom: 0;
331
+ border-color: var(--color-sf-border-secondary);
332
+ color: var(--color-sf-text-primary);
333
+ font-family: "Inter";
334
+ text-indent: 12px;
335
+ color: var(--color-sf-text-tertiary);
336
+ }
337
+
338
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-item-focus {
339
+ background-color: var(--color-sf-bg-secondary-hover);
340
+ }
341
+
342
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active,
343
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active.e-hover {
344
+ background-color: var(--color-sf-bg-secondary);
345
+ border-color: var(--color-sf-bg-primary);
346
+ color: var(--color-sf-text-primary);
347
+ }
348
+
349
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-hover {
350
+ background-color: var(--color-sf-bg-secondary-hover);
351
+ border-color: var(--color-sf-bg-primary);
352
+ color: var(--color-sf-text-secondary-hover);
353
+ }
354
+
355
+ .e-dropdownbase .e-list-item .e-list-icon {
356
+ color: var(--color-sf-fg-secondary);
357
+ }
358
+
359
+ .e-selectall-parent.e-item-focus {
360
+ background-color: var(--color-sf-bg-secondary-hover);
361
+ }
362
+
363
+ .e-bigger .e-dropdownbase,
364
+ .e-dropdownbase.e-bigger {
365
+ min-height: 45px;
366
+ }
367
+ .e-bigger .e-dropdownbase .e-list-item,
368
+ .e-dropdownbase.e-bigger .e-list-item {
369
+ line-height: 40px;
370
+ text-indent: 16px;
371
+ }
372
+
373
+ .e-bigger .e-dropdownbase .e-list-group-item, .e-bigger .e-dropdownbase .e-fixed-head,
374
+ .e-dropdownbase.e-bigger .e-list-group-item,
375
+ .e-dropdownbase.e-bigger .e-fixed-head {
376
+ line-height: 40px;
377
+ }
378
+
379
+ .e-bigger .e-dropdownbase .e-list-item .e-list-icon,
380
+ .e-dropdownbase.e-bigger .e-list-item .e-list-icon {
381
+ font-size: 20px;
382
+ }
383
+
384
+ .e-bigger.e-ddl .e-dropdownbase.e-nodata,
385
+ .e-bigger .e-ddl .e-dropdownbase.e-nodata {
386
+ font-size: 16px;
387
+ }
388
+
389
+ .e-bigger.e-small.e-ddl .e-dropdownbase.e-nodata,
390
+ .e-bigger.e-small .e-ddl .e-dropdownbase.e-nodata {
391
+ font-size: 14px;
392
+ }
393
+
394
+ .e-bigger .e-dropdownbase.e-dd-group .e-list-item {
395
+ padding-left: 16px;
396
+ text-indent: 0;
397
+ }
398
+
399
+ .e-small.e-bigger .e-dropdownbase.e-dd-group .e-list-item {
400
+ padding-left: 14px;
401
+ text-indent: 0;
402
+ }
403
+
404
+ .e-bigger.e-rtl .e-dropdownbase .e-list-group-item, .e-bigger.e-rtl .e-dropdownbase .e-fixed-head,
405
+ .e-bigger .e-rtl .e-dropdownbase .e-list-group-item,
406
+ .e-bigger .e-rtl .e-dropdownbase .e-fixed-head,
407
+ .e-rtl .e-bigger .e-dropdownbase .e-list-group-item,
408
+ .e-rtl .e-bigger .e-dropdownbase .e-fixed-head {
409
+ padding-right: 16px;
410
+ }
411
+ .e-bigger.e-rtl .e-dropdownbase.e-dd-group .e-list-item,
412
+ .e-bigger .e-rtl .e-dropdownbase.e-dd-group .e-list-item,
413
+ .e-rtl .e-bigger .e-dropdownbase.e-dd-group .e-list-item {
414
+ padding-right: 16px;
415
+ }
416
+
417
+ .e-small.e-bigger.e-rtl .e-dropdownbase .e-list-item,
418
+ .e-small.e-bigger .e-rtl .e-dropdownbase .e-list-item,
419
+ .e-rtl .e-small.e-bigger .e-dropdownbase .e-list-item,
420
+ .e-small .e-rtl.e-bigger .e-dropdownbase .e-list-item,
421
+ .e-bigger .e-rtl.e-small .e-dropdownbase .e-list-item {
422
+ padding-left: 16px;
423
+ padding-right: 0;
424
+ }
425
+ .e-small.e-bigger.e-rtl .e-dropdownbase.e-dd-group .e-list-item,
426
+ .e-small.e-bigger .e-rtl .e-dropdownbase.e-dd-group .e-list-item,
427
+ .e-rtl .e-small.e-bigger .e-dropdownbase.e-dd-group .e-list-item,
428
+ .e-small .e-rtl.e-bigger .e-dropdownbase.e-dd-group .e-list-item,
429
+ .e-bigger .e-rtl.e-small .e-dropdownbase.e-dd-group .e-list-item {
430
+ padding-right: 14px;
431
+ }
432
+ .e-small.e-bigger.e-rtl .e-dropdownbase .e-list-group-item, .e-small.e-bigger.e-rtl .e-dropdownbase .e-fixed-head,
433
+ .e-small.e-bigger .e-rtl .e-dropdownbase .e-list-group-item,
434
+ .e-small.e-bigger .e-rtl .e-dropdownbase .e-fixed-head,
435
+ .e-rtl .e-small.e-bigger .e-dropdownbase .e-list-group-item,
436
+ .e-rtl .e-small.e-bigger .e-dropdownbase .e-fixed-head,
437
+ .e-small .e-rtl.e-bigger .e-dropdownbase .e-list-group-item,
438
+ .e-small .e-rtl.e-bigger .e-dropdownbase .e-fixed-head,
439
+ .e-bigger .e-rtl.e-small .e-dropdownbase .e-list-group-item,
440
+ .e-bigger .e-rtl.e-small .e-dropdownbase .e-fixed-head {
441
+ padding-right: 14px;
442
+ }
443
+
444
+ .e-bigger .e-dropdownbase .e-list-group-item, .e-bigger .e-dropdownbase .e-fixed-head {
445
+ font-size: 14px;
446
+ padding-left: 16px;
447
+ }
448
+
449
+ .e-bigger.e-small .e-dropdownbase .e-list-group-item, .e-bigger.e-small .e-dropdownbase .e-fixed-head,
450
+ .e-dropdownbase.e-bigger.e-small .e-list-group-item,
451
+ .e-dropdownbase.e-bigger.e-small .e-fixed-head {
452
+ font-size: 12px;
453
+ }
454
+
455
+ .e-bigger.e-small .e-dropdownbase .e-list-item,
456
+ .e-dropdownbase.e-small.e-bigger .e-list-item {
457
+ color: var(--color-sf-text-primary);
458
+ line-height: 36px;
459
+ min-height: 36px;
460
+ text-indent: 14px;
461
+ }
462
+
463
+ .e-bigger.e-small .e-dropdownbase .e-list-group-item, .e-bigger.e-small .e-dropdownbase .e-fixed-head,
464
+ .e-dropdownbase.e-small.e-bigger .e-list-group-item,
465
+ .e-dropdownbase.e-small.e-bigger .e-fixed-head {
466
+ line-height: 36px;
467
+ min-height: 36px;
468
+ padding-left: 14px;
469
+ }
470
+
471
+ .e-bigger.e-small .e-dropdownbase .e-list-item .e-list-icon,
472
+ .e-dropdownbase.e-small.e-bigger .e-list-item .e-list-icon {
473
+ font-size: 18px;
474
+ }
475
+
476
+ .e-bigger .e-dropdownbase .e-list-group-item,
477
+ .e-bigger .e-fixed-head,
478
+ .e-bigger.e-dropdownbase .e-list-group-item,
479
+ .e-bigger.e-fixed-head {
480
+ font-size: 14px;
481
+ }
482
+
483
+ .e-bigger.e-small .e-dropdownbase .e-list-group-item,
484
+ .e-bigger.e-small .e-fixed-head,
485
+ .e-bigger.e-small.e-dropdownbase .e-list-group-item,
486
+ .e-bigger.e-small.e-fixed-head {
487
+ font-size: 12px;
488
+ }
489
+
490
+ .e-bigger .e-dropdownbase .e-list-item .e-list-icon {
491
+ padding: 0 12px 0 0;
492
+ }
493
+
494
+ .e-bigger.e-small .e-dropdownbase .e-list-item .e-list-icon {
495
+ padding: 0 8px 0 0;
496
+ }
@@ -0,0 +1,4 @@
1
+ @import 'ej2-base/styles/definition/bds.scss';
2
+ @import 'bds-definition.scss';
3
+ @import 'all.scss';
4
+ @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: 26px;
71
+ }
72
+
69
73
  .e-mention .e-dropdownbase .e-list-item .e-highlight {
70
74
  display: inline;
71
75
  font-weight: bold;
@@ -66,6 +66,10 @@
66
66
  position: absolute;
67
67
  }
68
68
 
69
+ .e-mention.e-popup .e-dropdownbase {
70
+ min-height: 26px;
71
+ }
72
+
69
73
  .e-mention .e-dropdownbase .e-list-item .e-highlight {
70
74
  display: inline;
71
75
  font-weight: bold;
@@ -72,6 +72,10 @@
72
72
  position: absolute;
73
73
  }
74
74
 
75
+ .e-mention.e-popup .e-dropdownbase {
76
+ min-height: 26px;
77
+ }
78
+
75
79
  .e-mention .e-dropdownbase .e-list-item .e-highlight {
76
80
  display: inline;
77
81
  font-weight: bold;
@@ -78,6 +78,10 @@
78
78
  position: absolute;
79
79
  }
80
80
 
81
+ .e-mention.e-popup .e-dropdownbase {
82
+ min-height: 30px;
83
+ }
84
+
81
85
  .e-mention .e-dropdownbase .e-list-item .e-highlight {
82
86
  display: inline;
83
87
  font-weight: bold;
@@ -82,6 +82,10 @@
82
82
  position: absolute;
83
83
  }
84
84
 
85
+ .e-mention.e-popup .e-dropdownbase {
86
+ min-height: 30px;
87
+ }
88
+
85
89
  .e-mention .e-dropdownbase .e-list-item .e-highlight {
86
90
  display: inline;
87
91
  font-weight: bold;
@@ -78,6 +78,10 @@
78
78
  position: absolute;
79
79
  }
80
80
 
81
+ .e-mention.e-popup .e-dropdownbase {
82
+ min-height: 30px;
83
+ }
84
+
81
85
  .e-mention .e-dropdownbase .e-list-item .e-highlight {
82
86
  display: inline;
83
87
  font-weight: bold;
@@ -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;
@@ -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;
@@ -78,6 +78,10 @@
78
78
  position: absolute;
79
79
  }
80
80
 
81
+ .e-mention.e-popup .e-dropdownbase {
82
+ min-height: 36px;
83
+ }
84
+
81
85
  .e-mention .e-dropdownbase .e-list-item .e-highlight {
82
86
  display: inline;
83
87
  font-weight: bold;
@@ -78,6 +78,10 @@
78
78
  position: absolute;
79
79
  }
80
80
 
81
+ .e-mention.e-popup .e-dropdownbase {
82
+ min-height: 36px;
83
+ }
84
+
81
85
  .e-mention .e-dropdownbase .e-list-item .e-highlight {
82
86
  display: inline;
83
87
  font-weight: bold;
@@ -80,7 +80,7 @@
80
80
  .e-popup.e-mention .e-dropdownbase.e-nodata {
81
81
  color: var(--color-sf-content-text-color);
82
82
  cursor: default;
83
- font-family: "Segoe UI", -apple-system, blinkMacSystemfont, "Roboto", "Helvetica Neue", sans-serif;
83
+ font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
84
84
  font-size: 14px;
85
85
  padding: 14px 16px;
86
86
  text-align: center;
@@ -95,6 +95,10 @@
95
95
  position: absolute;
96
96
  }
97
97
 
98
+ .e-mention.e-popup .e-dropdownbase {
99
+ min-height: 32px;
100
+ }
101
+
98
102
  .e-mention .e-dropdownbase .e-list-item .e-highlight {
99
103
  display: inline;
100
104
  font-weight: bold;
@@ -172,7 +176,7 @@
172
176
  border-bottom: 0;
173
177
  border-color: var(--color-sf-border-light);
174
178
  color: var(--color-sf-content-text-color);
175
- font-family: "Segoe UI", -apple-system, blinkMacSystemfont, "Roboto", "Helvetica Neue", sans-serif;
179
+ font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
176
180
  font-size: 14px;
177
181
  line-height: 32px;
178
182
  min-height: 32px;
@@ -186,7 +190,7 @@
186
190
  .e-fixed-head {
187
191
  border-color: var(--color-sf-border-light);
188
192
  color: var(--color-sf-content-text-color-alt2);
189
- font-family: "Segoe UI", -apple-system, blinkMacSystemfont, "Roboto", "Helvetica Neue", sans-serif;
193
+ font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
190
194
  font-size: 12px;
191
195
  font-weight: 600;
192
196
  line-height: 32px;
@@ -245,7 +249,7 @@
245
249
  border-style: solid;
246
250
  border-width: 0 0 1px 0;
247
251
  color: var(--color-sf-content-text-color-alt2);
248
- font-family: "Segoe UI", -apple-system, blinkMacSystemfont, "Roboto", "Helvetica Neue", sans-serif;
252
+ font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
249
253
  font-size: 14px;
250
254
  font-weight: 600;
251
255
  text-indent: 10px;
@@ -303,7 +307,7 @@
303
307
  border-bottom: 0;
304
308
  border-color: var(--color-sf-border-light);
305
309
  color: var(--color-sf-content-text-color);
306
- font-family: "Segoe UI", -apple-system, blinkMacSystemfont, "Roboto", "Helvetica Neue", sans-serif;
310
+ font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
307
311
  text-indent: 12px;
308
312
  font-size: 14px;
309
313
  padding-right: 16px;
@@ -78,6 +78,10 @@
78
78
  position: absolute;
79
79
  }
80
80
 
81
+ .e-mention.e-popup .e-dropdownbase {
82
+ min-height: 36px;
83
+ }
84
+
81
85
  .e-mention .e-dropdownbase .e-list-item .e-highlight {
82
86
  display: inline;
83
87
  font-weight: bold;
@@ -78,6 +78,10 @@
78
78
  position: absolute;
79
79
  }
80
80
 
81
+ .e-mention.e-popup .e-dropdownbase {
82
+ min-height: 36px;
83
+ }
84
+
81
85
  .e-mention .e-dropdownbase .e-list-item .e-highlight {
82
86
  display: inline;
83
87
  font-weight: bold;
@@ -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;