@syncfusion/ej2-dropdowns 18.1.57 → 18.2.44-4569

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 (183) hide show
  1. package/.eslintrc.json +244 -0
  2. package/CHANGELOG.md +1524 -1514
  3. package/README.md +118 -118
  4. package/dist/ej2-dropdowns.umd.min.js +1 -10
  5. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es2015.js +198 -126
  7. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  8. package/dist/es6/ej2-dropdowns.es5.js +290 -217
  9. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  10. package/dist/global/ej2-dropdowns.min.js +1 -10
  11. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/dist/ts/auto-complete/auto-complete.ts +527 -0
  14. package/dist/ts/combo-box/combo-box.ts +957 -0
  15. package/dist/ts/common/highlight-search.ts +47 -0
  16. package/dist/ts/common/incremental-search.ts +81 -0
  17. package/dist/ts/drop-down-base/drop-down-base.ts +1572 -0
  18. package/dist/ts/drop-down-list/drop-down-list.ts +2993 -0
  19. package/dist/ts/drop-down-tree/drop-down-tree.ts +3066 -0
  20. package/dist/ts/list-box/list-box.ts +2317 -0
  21. package/dist/ts/multi-select/checkbox-selection.ts +528 -0
  22. package/dist/ts/multi-select/float-label.ts +155 -0
  23. package/dist/ts/multi-select/interface.ts +66 -0
  24. package/dist/ts/multi-select/multi-select.ts +4216 -0
  25. package/helpers/e2e/index.js +3 -3
  26. package/license +2 -2
  27. package/package.json +77 -77
  28. package/src/auto-complete/auto-complete-model.d.ts +179 -179
  29. package/src/auto-complete/auto-complete.d.ts +12 -12
  30. package/src/auto-complete/auto-complete.js +21 -21
  31. package/src/combo-box/combo-box-model.d.ts +212 -212
  32. package/src/combo-box/combo-box.d.ts +27 -27
  33. package/src/combo-box/combo-box.js +29 -29
  34. package/src/common/incremental-search.d.ts +1 -1
  35. package/src/common/incremental-search.js +4 -2
  36. package/src/drop-down-base/drop-down-base-model.d.ts +191 -191
  37. package/src/drop-down-base/drop-down-base.d.ts +17 -17
  38. package/src/drop-down-base/drop-down-base.js +20 -20
  39. package/src/drop-down-list/drop-down-list-model.d.ts +222 -222
  40. package/src/drop-down-list/drop-down-list.d.ts +3 -2
  41. package/src/drop-down-list/drop-down-list.js +43 -30
  42. package/src/drop-down-tree/drop-down-tree-model.d.ts +344 -344
  43. package/src/drop-down-tree/drop-down-tree.js +32 -26
  44. package/src/list-box/index.d.ts +1 -0
  45. package/src/list-box/index.js +1 -0
  46. package/src/list-box/list-box-model.d.ts +156 -156
  47. package/src/list-box/list-box.d.ts +2 -2
  48. package/src/list-box/list-box.js +57 -59
  49. package/src/multi-select/index.d.ts +1 -0
  50. package/src/multi-select/index.js +1 -0
  51. package/src/multi-select/multi-select-model.d.ts +452 -452
  52. package/src/multi-select/multi-select.d.ts +2 -0
  53. package/src/multi-select/multi-select.js +98 -43
  54. package/styles/_all.scss +3 -3
  55. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
  56. package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
  57. package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
  58. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
  59. package/styles/auto-complete/_material-dark-definition.scss +2 -2
  60. package/styles/bootstrap-dark.css +67 -61
  61. package/styles/bootstrap.css +69 -63
  62. package/styles/bootstrap4.css +81 -61
  63. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
  64. package/styles/combo-box/_bootstrap4-definition.scss +11 -11
  65. package/styles/combo-box/_fabric-dark-definition.scss +2 -2
  66. package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
  67. package/styles/combo-box/_material-dark-definition.scss +2 -2
  68. package/styles/drop-down-base/_all.scss +2 -2
  69. package/styles/drop-down-base/_bootstrap-dark-definition.scss +64 -64
  70. package/styles/drop-down-base/_bootstrap-definition.scss +64 -64
  71. package/styles/drop-down-base/_bootstrap4-definition.scss +78 -78
  72. package/styles/drop-down-base/_definition.scss +23 -23
  73. package/styles/drop-down-base/_fabric-dark-definition.scss +68 -68
  74. package/styles/drop-down-base/_fabric-definition.scss +66 -66
  75. package/styles/drop-down-base/_highcontrast-definition.scss +82 -82
  76. package/styles/drop-down-base/_highcontrast-light-definition.scss +81 -81
  77. package/styles/drop-down-base/_layout.scss +108 -108
  78. package/styles/drop-down-base/_material-dark-definition.scss +67 -67
  79. package/styles/drop-down-base/_material-definition.scss +65 -65
  80. package/styles/drop-down-base/_theme.scss +242 -242
  81. package/styles/drop-down-list/_all.scss +2 -2
  82. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
  83. package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
  84. package/styles/drop-down-list/_bootstrap4-definition.scss +184 -184
  85. package/styles/drop-down-list/_fabric-dark-definition.scss +127 -127
  86. package/styles/drop-down-list/_fabric-definition.scss +122 -122
  87. package/styles/drop-down-list/_highcontrast-definition.scss +131 -131
  88. package/styles/drop-down-list/_highcontrast-light-definition.scss +133 -133
  89. package/styles/drop-down-list/_layout.scss +218 -218
  90. package/styles/drop-down-list/_material-dark-definition.scss +143 -143
  91. package/styles/drop-down-list/_material-definition.scss +166 -166
  92. package/styles/drop-down-list/_theme.scss +10 -10
  93. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
  94. package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
  95. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
  96. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
  97. package/styles/drop-down-list/icons/_fabric.scss +14 -14
  98. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
  99. package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
  100. package/styles/drop-down-list/icons/_material-dark.scss +14 -14
  101. package/styles/drop-down-list/icons/_material.scss +14 -14
  102. package/styles/drop-down-list/material.css +9 -0
  103. package/styles/drop-down-tree/_all.scss +2 -2
  104. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +62 -49
  105. package/styles/drop-down-tree/_bootstrap-definition.scss +62 -49
  106. package/styles/drop-down-tree/_bootstrap4-definition.scss +63 -50
  107. package/styles/drop-down-tree/_fabric-dark-definition.scss +63 -49
  108. package/styles/drop-down-tree/_fabric-definition.scss +63 -49
  109. package/styles/drop-down-tree/_highcontrast-definition.scss +63 -49
  110. package/styles/drop-down-tree/_highcontrast-light-definition.scss +63 -49
  111. package/styles/drop-down-tree/_layout.scss +437 -398
  112. package/styles/drop-down-tree/_material-dark-definition.scss +61 -54
  113. package/styles/drop-down-tree/_material-definition.scss +61 -54
  114. package/styles/drop-down-tree/_theme.scss +68 -63
  115. package/styles/drop-down-tree/bootstrap-dark.css +67 -61
  116. package/styles/drop-down-tree/bootstrap.css +69 -63
  117. package/styles/drop-down-tree/bootstrap4.css +81 -61
  118. package/styles/drop-down-tree/fabric-dark.css +71 -63
  119. package/styles/drop-down-tree/fabric.css +71 -63
  120. package/styles/drop-down-tree/highcontrast-light.css +71 -63
  121. package/styles/drop-down-tree/highcontrast.css +75 -63
  122. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
  123. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
  124. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
  125. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
  126. package/styles/drop-down-tree/icons/_fabric.scss +11 -11
  127. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
  128. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
  129. package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
  130. package/styles/drop-down-tree/icons/_material.scss +11 -11
  131. package/styles/drop-down-tree/material-dark.css +76 -85
  132. package/styles/drop-down-tree/material.css +93 -85
  133. package/styles/fabric-dark.css +71 -63
  134. package/styles/fabric.css +71 -63
  135. package/styles/highcontrast-light.css +71 -63
  136. package/styles/highcontrast.css +75 -63
  137. package/styles/list-box/_all.scss +2 -2
  138. package/styles/list-box/_bootstrap-dark-definition.scss +118 -118
  139. package/styles/list-box/_bootstrap-definition.scss +112 -112
  140. package/styles/list-box/_bootstrap4-definition.scss +118 -118
  141. package/styles/list-box/_fabric-dark-definition.scss +118 -118
  142. package/styles/list-box/_fabric-definition.scss +112 -112
  143. package/styles/list-box/_highcontrast-definition.scss +112 -112
  144. package/styles/list-box/_highcontrast-light-definition.scss +118 -118
  145. package/styles/list-box/_layout.scss +458 -458
  146. package/styles/list-box/_material-dark-definition.scss +118 -118
  147. package/styles/list-box/_material-definition.scss +112 -112
  148. package/styles/list-box/_theme.scss +273 -273
  149. package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
  150. package/styles/list-box/icons/_bootstrap.scss +25 -25
  151. package/styles/list-box/icons/_bootstrap4.scss +25 -25
  152. package/styles/list-box/icons/_fabric-dark.scss +25 -25
  153. package/styles/list-box/icons/_fabric.scss +25 -25
  154. package/styles/list-box/icons/_highcontrast-light.scss +25 -25
  155. package/styles/list-box/icons/_highcontrast.scss +25 -25
  156. package/styles/list-box/icons/_material-dark.scss +25 -25
  157. package/styles/list-box/icons/_material.scss +25 -25
  158. package/styles/list-box/material-dark.css +4 -4
  159. package/styles/list-box/material.css +4 -4
  160. package/styles/material-dark.css +80 -89
  161. package/styles/material.css +115 -89
  162. package/styles/multi-select/_all.scss +2 -2
  163. package/styles/multi-select/_bootstrap-dark-definition.scss +171 -171
  164. package/styles/multi-select/_bootstrap-definition.scss +166 -166
  165. package/styles/multi-select/_bootstrap4-definition.scss +233 -233
  166. package/styles/multi-select/_fabric-dark-definition.scss +170 -170
  167. package/styles/multi-select/_fabric-definition.scss +167 -167
  168. package/styles/multi-select/_highcontrast-definition.scss +257 -257
  169. package/styles/multi-select/_highcontrast-light-definition.scss +258 -258
  170. package/styles/multi-select/_layout.scss +1153 -1153
  171. package/styles/multi-select/_material-dark-definition.scss +186 -186
  172. package/styles/multi-select/_material-definition.scss +191 -191
  173. package/styles/multi-select/_theme.scss +384 -384
  174. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
  175. package/styles/multi-select/icons/_bootstrap.scss +26 -26
  176. package/styles/multi-select/icons/_bootstrap4.scss +37 -37
  177. package/styles/multi-select/icons/_fabric-dark.scss +26 -26
  178. package/styles/multi-select/icons/_fabric.scss +26 -26
  179. package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
  180. package/styles/multi-select/icons/_highcontrast.scss +26 -26
  181. package/styles/multi-select/icons/_material-dark.scss +26 -26
  182. package/styles/multi-select/icons/_material.scss +324 -324
  183. package/styles/multi-select/material.css +9 -0
@@ -6,6 +6,15 @@
6
6
  }
7
7
  }
8
8
 
9
+ @keyframes slideTopUp {
10
+ from {
11
+ transform: translate3d(0, 0, 0) scale(1);
12
+ }
13
+ to {
14
+ transform: translate3d(0, 0, 0) scale(1);
15
+ }
16
+ }
17
+
9
18
  @keyframes material-spinner-rotate {
10
19
  0% {
11
20
  transform: rotate(0deg);
@@ -68,13 +77,13 @@
68
77
  outline: none;
69
78
  }
70
79
 
71
- .e-ddt.e-icon-anim .e-ddt-icon::before {
72
- transform: rotate(180deg);
80
+ .e-ddt .e-ddt-icon::before {
81
+ transform: rotate(0deg);
73
82
  transition: transform 300ms ease;
74
83
  }
75
84
 
76
- .e-ddt .e-ddt-icon::before {
77
- transform: rotate(0deg);
85
+ .e-ddt.e-icon-anim .e-ddt-icon::before {
86
+ transform: rotate(180deg);
78
87
  transition: transform 300ms ease;
79
88
  }
80
89
 
@@ -91,9 +100,6 @@
91
100
 
92
101
  .e-ddt.e-input-group.e-control-wrapper .e-input-group-icon.e-ddt-icon, .e-ddt.e-float-input.e-control-wrapper .e-input-group-icon.e-ddt-icon {
93
102
  border: 0;
94
- margin-bottom: 0;
95
- margin-top: 0;
96
- padding: 5px 4px;
97
103
  }
98
104
 
99
105
  .e-ddt.e-input-group.e-control-wrapper .e-icon-hide, .e-ddt.e-float-input.e-control-wrapper .e-icon-hide {
@@ -107,7 +113,7 @@
107
113
  }
108
114
 
109
115
  .e-ddt.e-input-group.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon {
110
- right: 26px;
116
+ right: 18px;
111
117
  }
112
118
 
113
119
  .e-ddt.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
@@ -136,19 +142,22 @@
136
142
 
137
143
  .e-ddt .e-chips-wrapper .e-chips-close::before {
138
144
  font-size: 16px;
145
+ vertical-align: middle;
139
146
  }
140
147
 
141
148
  .e-ddt .e-chips-wrapper .e-chips {
142
149
  -ms-flex-align: center;
143
150
  align-items: center;
151
+ border-radius: 16px;
152
+ box-sizing: border-box;
144
153
  display: -ms-inline-flexbox;
145
154
  display: inline-flex;
146
155
  float: left;
147
156
  height: 24px;
148
- margin: 2px 1px;
149
- max-width: 100%;
157
+ margin: 3px 1px;
158
+ max-width: calc(100% - 2px);
150
159
  overflow: hidden;
151
- padding: 0 4px 0 8px;
160
+ padding: 0 4px 0 4px;
152
161
  text-overflow: ellipsis;
153
162
  white-space: nowrap;
154
163
  }
@@ -156,22 +165,25 @@
156
165
  .e-ddt .e-chips-wrapper .e-chips > .e-chipcontent {
157
166
  max-width: 100%;
158
167
  overflow: hidden;
159
- padding: 0 4px 0 0;
168
+ padding: 0 4px 0 4px;
160
169
  text-indent: 0;
161
170
  text-overflow: ellipsis;
162
171
  white-space: nowrap;
163
172
  }
164
173
 
165
- .e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
166
- margin-right: 58px;
174
+ .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
175
+ margin-right: 18px;
176
+ max-width: calc(100% - 19px);
167
177
  }
168
178
 
169
- .e-ddt.e-show-clear .e-chips-wrapper .e-chips-collection .e-chips:last-child {
179
+ .e-ddt.e-show-clear .e-chips-wrapper .e-chips:last-child {
170
180
  margin-right: 26px;
181
+ max-width: calc(100% - 27px);
171
182
  }
172
183
 
173
- .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
174
- margin-right: 26px;
184
+ .e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
185
+ margin-right: 45px;
186
+ max-width: calc(100% - 45px);
175
187
  }
176
188
 
177
189
  .e-ddt input[readonly],
@@ -187,9 +199,7 @@
187
199
  }
188
200
 
189
201
  .e-ddt.e-popup {
190
- border: 1px solid;
191
202
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12);
192
- margin-top: 2px;
193
203
  position: absolute;
194
204
  }
195
205
 
@@ -200,7 +210,7 @@
200
210
  line-height: 36px;
201
211
  overflow: hidden;
202
212
  position: relative;
203
- text-indent: 39px;
213
+ text-indent: 38px;
204
214
  white-space: nowrap;
205
215
  width: 100%;
206
216
  }
@@ -210,7 +220,6 @@
210
220
  }
211
221
 
212
222
  .e-ddt.e-popup .e-selectall-parent .e-checkbox-wrapper {
213
- margin-right: 10px;
214
223
  position: relative;
215
224
  text-indent: 0;
216
225
  }
@@ -218,10 +227,38 @@
218
227
  .e-ddt.e-popup .e-selectall-parent .e-all-text {
219
228
  font-family: inherit;
220
229
  font-size: 14px;
230
+ margin: 10px;
231
+ }
232
+
233
+ .e-ddt.e-popup .e-filter-wrap .e-input,
234
+ .e-ddt.e-popup .e-filter-wrap .e-input:focus {
235
+ padding: 8px 16px 8px;
236
+ }
237
+
238
+ .e-ddt.e-popup .e-filter-wrap {
239
+ border: 0;
240
+ border-top-width: 0;
241
+ display: block;
242
+ padding: 0;
243
+ }
244
+
245
+ .e-ddt.e-popup .e-filter-wrap .e-input-group:not(.e-disabled):not(.e-float-icon-left)::before,
246
+ .e-ddt.e-popup .e-filter-wrap .e-input-group:not(.e-disabled):not(.e-float-icon-left)::after,
247
+ .e-ddt.e-popup .e-filter-wrap .e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::before,
248
+ .e-ddt.e-popup .e-filter-wrap .e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::after {
249
+ bottom: -1px;
250
+ height: 1px;
221
251
  }
222
252
 
223
253
  .e-ddt.e-popup .e-filter-wrap .e-input-group {
224
- padding: 0 10px;
254
+ margin-bottom: 0;
255
+ }
256
+
257
+ .e-ddt.e-popup .e-filter-wrap .e-input-group .e-clear-icon {
258
+ margin: 6px 6px 5px;
259
+ min-height: 12px;
260
+ min-width: 12px;
261
+ padding: 6px;
225
262
  }
226
263
 
227
264
  .e-ddt.e-popup .e-popup-content {
@@ -284,49 +321,32 @@
284
321
 
285
322
  .e-ddt.e-rtl .e-chips-wrapper .e-chips {
286
323
  float: right;
287
- padding: 0 8px 0 4px;
288
324
  }
289
325
 
290
- .e-ddt.e-rtl .e-chips-wrapper .e-chips > .e-chipcontent {
291
- padding: 0 0 0 4px;
292
- }
293
-
294
- .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
295
- margin-left: 58px;
326
+ .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
327
+ margin-left: 18px;
296
328
  margin-right: 1px;
297
329
  }
298
330
 
299
- .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips-collection .e-chips:last-child {
331
+ .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
300
332
  margin-left: 26px;
301
333
  margin-right: 1px;
302
334
  }
303
335
 
304
- .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
305
- margin-left: 26px;
336
+ .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
337
+ margin-left: 45px;
306
338
  margin-right: 1px;
307
339
  }
308
340
 
309
- .e-ddt.e-rtl.e-input-group.e-control-wrapper .e-clear-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper .e-clear-icon {
310
- padding: 4px 7px 4px 7px;
311
- }
312
-
313
- .e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-clear-icon {
341
+ .e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
342
+ .e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-clear-icon,
343
+ .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
314
344
  left: 0;
315
345
  right: auto;
316
346
  }
317
347
 
318
348
  .e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon {
319
- left: 26px;
320
- }
321
-
322
- .e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
323
- left: 0;
324
- right: auto;
325
- }
326
-
327
- .e-ddt.e-rtl.e-popup .e-selectall-parent .e-checkbox-wrapper {
328
- margin-left: 10px;
329
- margin-right: 0;
349
+ left: 18px;
330
350
  }
331
351
 
332
352
  .e-ddt.e-rtl.e-popup .e-treeview .e-list-item .e-ul {
@@ -335,52 +355,48 @@
335
355
 
336
356
  .e-bigger .e-ddt .e-chips,
337
357
  .e-ddt.e-bigger .e-chips {
338
- height: 32px;
358
+ height: 31px;
339
359
  }
340
360
 
341
361
  .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon,
342
362
  .e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon,
343
363
  .e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip.e-show-dd-icon .e-clear-icon {
344
- right: 28px;
364
+ right: 20px;
345
365
  }
346
366
 
347
367
  .e-bigger .e-ddt.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon,
348
368
  .e-ddt.e-bigger.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon,
349
369
  .e-ddt.e-bigger.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
350
- bottom: 6px;
351
- }
352
-
353
- .e-bigger .e-ddt.e-input-group.e-control-wrapper .e-input-group-icon.e-ddt-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper .e-input-group-icon.e-ddt-icon,
354
- .e-ddt.e-bigger.e-input-group.e-control-wrapper .e-input-group-icon.e-ddt-icon,
355
- .e-ddt.e-bigger.e-float-input.e-control-wrapper .e-input-group-icon.e-ddt-icon {
356
- padding: 9px 4px;
370
+ bottom: 3px;
357
371
  }
358
372
 
359
373
  .e-bigger .e-ddt.e-input-group.e-control-wrapper .e-clear-icon, .e-bigger .e-ddt.e-float-input.e-control-wrapper .e-clear-icon,
360
374
  .e-ddt.e-bigger.e-input-group.e-control-wrapper .e-clear-icon,
361
375
  .e-ddt.e-bigger.e-float-input.e-control-wrapper .e-clear-icon {
362
376
  min-height: 26px;
363
- padding: 6px 9px 5px 9px;
364
377
  }
365
378
 
366
- .e-bigger .e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child,
367
- .e-ddt.e-bigger.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
368
- margin-right: 66px;
379
+ .e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
380
+ .e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
381
+ margin-right: 20px;
382
+ max-width: calc(100% - 21px);
369
383
  }
370
384
 
371
- .e-bigger .e-ddt.e-show-clear .e-chips-wrapper .e-chips-collection .e-chips:last-child,
372
- .e-ddt.e-bigger.e-show-clear .e-chips-wrapper .e-chips-collection .e-chips:last-child {
385
+ .e-bigger .e-ddt.e-show-clear .e-chips-wrapper .e-chips:last-child,
386
+ .e-ddt.e-bigger.e-show-clear .e-chips-wrapper .e-chips:last-child {
373
387
  margin-right: 32px;
388
+ max-width: calc(100% - 33px);
374
389
  }
375
390
 
376
- .e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child,
377
- .e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
378
- margin-right: 28px;
391
+ .e-bigger .e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
392
+ .e-ddt.e-bigger.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
393
+ margin-right: 52px;
394
+ max-width: calc(100% - 53px);
379
395
  }
380
396
 
381
397
  .e-bigger .e-ddt.e-popup .e-selectall-parent,
382
398
  .e-ddt.e-bigger.e-popup .e-selectall-parent {
383
- text-indent: 44px;
399
+ text-indent: 43px;
384
400
  }
385
401
 
386
402
  .e-bigger .e-ddt.e-popup .e-treeview .e-fullrow,
@@ -388,40 +404,32 @@
388
404
  height: 44px;
389
405
  }
390
406
 
391
- .e-bigger .e-ddt.e-rtl.e-input-group.e-control-wrapper .e-clear-icon,
392
- .e-bigger .e-ddt.e-rtl.e-float-input.e-control-wrapper .e-clear-icon,
393
- .e-ddt.e-bigger.e-rtl.e-input-group.e-control-wrapper .e-clear-icon,
394
- .e-ddt.e-bigger.e-rtl.e-float-input.e-control-wrapper .e-clear-icon {
395
- padding: 6px 9px 5px 9px;
396
- }
397
-
398
- .e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child,
399
- .e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
400
- margin-left: 66px;
407
+ .e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
408
+ .e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
409
+ margin-left: 20px;
401
410
  margin-right: 1px;
402
411
  }
403
412
 
404
- .e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips-collection .e-chips:last-child,
405
- .e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips-collection .e-chips:last-child {
413
+ .e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child,
414
+ .e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
406
415
  margin-left: 32px;
407
416
  margin-right: 1px;
408
417
  }
409
418
 
410
- .e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child,
411
- .e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
412
- margin-left: 28px;
419
+ .e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
420
+ .e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
421
+ margin-left: 52px;
413
422
  margin-right: 1px;
414
423
  }
415
424
 
416
425
  .e-bigger .e-ddt.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon,
417
426
  .e-ddt.e-bigger.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon {
418
- left: 28px;
427
+ left: 20px;
419
428
  right: auto;
420
429
  }
421
430
 
422
431
  .e-ddt .e-chips {
423
432
  background-color: #eee;
424
- border-radius: 16px;
425
433
  }
426
434
 
427
435
  .e-ddt .e-chips .e-chips-close::before {
@@ -458,7 +466,7 @@
458
466
  }
459
467
 
460
468
  .e-ddt.e-popup .e-selectall-parent {
461
- border-bottom: 1px solid rgba(0, 0, 0, 0.12);
469
+ border-bottom-color: rgba(0, 0, 0, 0.12);
462
470
  }
463
471
 
464
472
  .e-ddt.e-popup .e-selectall-parent .e-all-text {
@@ -703,13 +703,13 @@ ejs-dropdownlist {
703
703
  outline: none;
704
704
  }
705
705
 
706
- .e-ddt.e-icon-anim .e-ddt-icon::before {
707
- transform: rotate(180deg);
706
+ .e-ddt .e-ddt-icon::before {
707
+ transform: rotate(0deg);
708
708
  transition: transform 300ms ease;
709
709
  }
710
710
 
711
- .e-ddt .e-ddt-icon::before {
712
- transform: rotate(0deg);
711
+ .e-ddt.e-icon-anim .e-ddt-icon::before {
712
+ transform: rotate(180deg);
713
713
  transition: transform 300ms ease;
714
714
  }
715
715
 
@@ -732,10 +732,6 @@ ejs-dropdownlist {
732
732
  display: none;
733
733
  }
734
734
 
735
- .e-ddt.e-input-group.e-control-wrapper.e-input-focus input ~ label.e-float-text, .e-ddt.e-float-input.e-control-wrapper.e-input-focus input ~ label.e-float-text {
736
- top: 15px;
737
- }
738
-
739
735
  .e-ddt.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-show-chip .e-clear-icon {
740
736
  bottom: 0;
741
737
  position: absolute;
@@ -764,27 +760,30 @@ ejs-dropdownlist {
764
760
  }
765
761
 
766
762
  .e-ddt .e-chips-wrapper .e-chips-close {
767
- line-height: 26px;
763
+ line-height: 23px;
768
764
  min-height: 26px;
769
- min-width: 26px;
765
+ min-width: 18px;
770
766
  text-align: center;
771
767
  }
772
768
 
773
769
  .e-ddt .e-chips-wrapper .e-chips-close::before {
774
770
  font-size: 10px;
771
+ vertical-align: middle;
775
772
  }
776
773
 
777
774
  .e-ddt .e-chips-wrapper .e-chips {
778
775
  -ms-flex-align: center;
779
776
  align-items: center;
777
+ border-radius: 0;
778
+ box-sizing: border-box;
780
779
  display: -ms-inline-flexbox;
781
780
  display: inline-flex;
782
781
  float: left;
783
782
  height: 26px;
784
783
  margin: 2px 1px;
785
- max-width: 100%;
784
+ max-width: calc(100% - 2px);
786
785
  overflow: hidden;
787
- padding: 0 0 0 8px;
786
+ padding: 0 4px 0 4px;
788
787
  text-overflow: ellipsis;
789
788
  white-space: nowrap;
790
789
  }
@@ -792,22 +791,26 @@ ejs-dropdownlist {
792
791
  .e-ddt .e-chips-wrapper .e-chips > .e-chipcontent {
793
792
  max-width: 100%;
794
793
  overflow: hidden;
795
- padding: 0;
794
+ padding: 0 4px 0 4px;
796
795
  text-indent: 0;
797
796
  text-overflow: ellipsis;
798
797
  white-space: nowrap;
798
+ line-height: 26px;
799
799
  }
800
800
 
801
- .e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
802
- margin-right: 60px;
801
+ .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
802
+ margin-right: 30px;
803
+ max-width: calc(100% - 31px);
803
804
  }
804
805
 
805
- .e-ddt.e-show-clear .e-chips-wrapper .e-chips-collection .e-chips:last-child {
806
+ .e-ddt.e-show-clear .e-chips-wrapper .e-chips:last-child {
806
807
  margin-right: 30px;
808
+ max-width: calc(100% - 31px);
807
809
  }
808
810
 
809
- .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
810
- margin-right: 30px;
811
+ .e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
812
+ margin-right: 60px;
813
+ max-width: calc(100% - 61px);
811
814
  }
812
815
 
813
816
  .e-ddt input[readonly],
@@ -823,9 +826,8 @@ ejs-dropdownlist {
823
826
  }
824
827
 
825
828
  .e-ddt.e-popup {
826
- border: 1px solid;
829
+ border: 1px solid #414040;
827
830
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 0px rgba(0, 0, 0, 0.14), 0 3px 14px 0px rgba(0, 0, 0, 0.12);
828
- margin-top: 2px;
829
831
  position: absolute;
830
832
  }
831
833
 
@@ -836,7 +838,7 @@ ejs-dropdownlist {
836
838
  line-height: 36px;
837
839
  overflow: hidden;
838
840
  position: relative;
839
- text-indent: 39px;
841
+ text-indent: 38px;
840
842
  white-space: nowrap;
841
843
  width: 100%;
842
844
  }
@@ -846,7 +848,6 @@ ejs-dropdownlist {
846
848
  }
847
849
 
848
850
  .e-ddt.e-popup .e-selectall-parent .e-checkbox-wrapper {
849
- margin-right: 10px;
850
851
  position: relative;
851
852
  text-indent: 0;
852
853
  }
@@ -854,10 +855,28 @@ ejs-dropdownlist {
854
855
  .e-ddt.e-popup .e-selectall-parent .e-all-text {
855
856
  font-family: inherit;
856
857
  font-size: 14px;
858
+ margin: 10px;
859
+ }
860
+
861
+ .e-ddt.e-popup .e-filter-wrap .e-input,
862
+ .e-ddt.e-popup .e-filter-wrap .e-input:focus {
863
+ padding: 0 12px;
864
+ }
865
+
866
+ .e-ddt.e-popup .e-filter-wrap {
867
+ border: 1px solid #414040;
868
+ border-top-width: 0;
869
+ display: block;
870
+ padding: 5px;
871
+ }
872
+
873
+ .e-ddt.e-popup .e-filter-wrap {
874
+ border-left-width: 0;
875
+ border-right-width: 0;
857
876
  }
858
877
 
859
878
  .e-ddt.e-popup .e-filter-wrap .e-input-group {
860
- padding: 0 10px;
879
+ margin-bottom: 0;
861
880
  }
862
881
 
863
882
  .e-ddt.e-popup .e-popup-content {
@@ -920,29 +939,26 @@ ejs-dropdownlist {
920
939
 
921
940
  .e-ddt.e-rtl .e-chips-wrapper .e-chips {
922
941
  float: right;
923
- padding: 0 8px 0 0;
924
- }
925
-
926
- .e-ddt.e-rtl .e-chips-wrapper .e-chips > .e-chipcontent {
927
- padding: 0;
928
942
  }
929
943
 
930
- .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
931
- margin-left: 60px;
944
+ .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
945
+ margin-left: 30px;
932
946
  margin-right: 1px;
933
947
  }
934
948
 
935
- .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips-collection .e-chips:last-child {
949
+ .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
936
950
  margin-left: 30px;
937
951
  margin-right: 1px;
938
952
  }
939
953
 
940
- .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
941
- margin-left: 30px;
954
+ .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
955
+ margin-left: 60px;
942
956
  margin-right: 1px;
943
957
  }
944
958
 
945
- .e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-clear-icon {
959
+ .e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
960
+ .e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-clear-icon,
961
+ .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
946
962
  left: 0;
947
963
  right: auto;
948
964
  }
@@ -951,16 +967,6 @@ ejs-dropdownlist {
951
967
  left: 30px;
952
968
  }
953
969
 
954
- .e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
955
- left: 0;
956
- right: auto;
957
- }
958
-
959
- .e-ddt.e-rtl.e-popup .e-selectall-parent .e-checkbox-wrapper {
960
- margin-left: 10px;
961
- margin-right: 0;
962
- }
963
-
964
970
  .e-ddt.e-rtl.e-popup .e-treeview .e-list-item .e-ul {
965
971
  padding: 0 14px 0 0;
966
972
  }
@@ -988,24 +994,27 @@ ejs-dropdownlist {
988
994
  min-height: 38px;
989
995
  }
990
996
 
991
- .e-bigger .e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child,
992
- .e-ddt.e-bigger.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
993
- margin-right: 76px;
997
+ .e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
998
+ .e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
999
+ margin-right: 38px;
1000
+ max-width: calc(100% - 39px);
994
1001
  }
995
1002
 
996
- .e-bigger .e-ddt.e-show-clear .e-chips-wrapper .e-chips-collection .e-chips:last-child,
997
- .e-ddt.e-bigger.e-show-clear .e-chips-wrapper .e-chips-collection .e-chips:last-child {
1003
+ .e-bigger .e-ddt.e-show-clear .e-chips-wrapper .e-chips:last-child,
1004
+ .e-ddt.e-bigger.e-show-clear .e-chips-wrapper .e-chips:last-child {
998
1005
  margin-right: 38px;
1006
+ max-width: calc(100% - 39px);
999
1007
  }
1000
1008
 
1001
- .e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child,
1002
- .e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
1003
- margin-right: 38px;
1009
+ .e-bigger .e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
1010
+ .e-ddt.e-bigger.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1011
+ margin-right: 76px;
1012
+ max-width: calc(100% - 77px);
1004
1013
  }
1005
1014
 
1006
1015
  .e-bigger .e-ddt.e-popup .e-selectall-parent,
1007
1016
  .e-ddt.e-bigger.e-popup .e-selectall-parent {
1008
- text-indent: 44px;
1017
+ text-indent: 43px;
1009
1018
  }
1010
1019
 
1011
1020
  .e-bigger .e-ddt.e-popup .e-treeview .e-fullrow,
@@ -1013,21 +1022,21 @@ ejs-dropdownlist {
1013
1022
  height: 44px;
1014
1023
  }
1015
1024
 
1016
- .e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child,
1017
- .e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
1018
- margin-left: 76px;
1025
+ .e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
1026
+ .e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1027
+ margin-left: 38px;
1019
1028
  margin-right: 1px;
1020
1029
  }
1021
1030
 
1022
- .e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips-collection .e-chips:last-child,
1023
- .e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips-collection .e-chips:last-child {
1031
+ .e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child,
1032
+ .e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
1024
1033
  margin-left: 38px;
1025
1034
  margin-right: 1px;
1026
1035
  }
1027
1036
 
1028
- .e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child,
1029
- .e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips-collection .e-chips:last-child {
1030
- margin-left: 38px;
1037
+ .e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
1038
+ .e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1039
+ margin-left: 76px;
1031
1040
  margin-right: 1px;
1032
1041
  }
1033
1042
 
@@ -1039,7 +1048,6 @@ ejs-dropdownlist {
1039
1048
 
1040
1049
  .e-ddt .e-chips {
1041
1050
  background-color: #414040;
1042
- border-radius: 0;
1043
1051
  }
1044
1052
 
1045
1053
  .e-ddt .e-chips .e-chips-close::before {
@@ -1072,7 +1080,7 @@ ejs-dropdownlist {
1072
1080
  }
1073
1081
 
1074
1082
  .e-ddt.e-popup .e-selectall-parent {
1075
- border-bottom: 1px solid #414040;
1083
+ border-bottom-color: #414040;
1076
1084
  }
1077
1085
 
1078
1086
  .e-ddt.e-popup .e-selectall-parent .e-all-text {