@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.
- package/.eslintrc.json +244 -0
- package/CHANGELOG.md +1524 -1514
- package/README.md +118 -118
- package/dist/ej2-dropdowns.umd.min.js +1 -10
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +198 -126
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +290 -217
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +1 -10
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/auto-complete/auto-complete.ts +527 -0
- package/dist/ts/combo-box/combo-box.ts +957 -0
- package/dist/ts/common/highlight-search.ts +47 -0
- package/dist/ts/common/incremental-search.ts +81 -0
- package/dist/ts/drop-down-base/drop-down-base.ts +1572 -0
- package/dist/ts/drop-down-list/drop-down-list.ts +2993 -0
- package/dist/ts/drop-down-tree/drop-down-tree.ts +3066 -0
- package/dist/ts/list-box/list-box.ts +2317 -0
- package/dist/ts/multi-select/checkbox-selection.ts +528 -0
- package/dist/ts/multi-select/float-label.ts +155 -0
- package/dist/ts/multi-select/interface.ts +66 -0
- package/dist/ts/multi-select/multi-select.ts +4216 -0
- package/helpers/e2e/index.js +3 -3
- package/license +2 -2
- package/package.json +77 -77
- package/src/auto-complete/auto-complete-model.d.ts +179 -179
- package/src/auto-complete/auto-complete.d.ts +12 -12
- package/src/auto-complete/auto-complete.js +21 -21
- package/src/combo-box/combo-box-model.d.ts +212 -212
- package/src/combo-box/combo-box.d.ts +27 -27
- package/src/combo-box/combo-box.js +29 -29
- package/src/common/incremental-search.d.ts +1 -1
- package/src/common/incremental-search.js +4 -2
- package/src/drop-down-base/drop-down-base-model.d.ts +191 -191
- package/src/drop-down-base/drop-down-base.d.ts +17 -17
- package/src/drop-down-base/drop-down-base.js +20 -20
- package/src/drop-down-list/drop-down-list-model.d.ts +222 -222
- package/src/drop-down-list/drop-down-list.d.ts +3 -2
- package/src/drop-down-list/drop-down-list.js +43 -30
- package/src/drop-down-tree/drop-down-tree-model.d.ts +344 -344
- package/src/drop-down-tree/drop-down-tree.js +32 -26
- package/src/list-box/index.d.ts +1 -0
- package/src/list-box/index.js +1 -0
- package/src/list-box/list-box-model.d.ts +156 -156
- package/src/list-box/list-box.d.ts +2 -2
- package/src/list-box/list-box.js +57 -59
- package/src/multi-select/index.d.ts +1 -0
- package/src/multi-select/index.js +1 -0
- package/src/multi-select/multi-select-model.d.ts +452 -452
- package/src/multi-select/multi-select.d.ts +2 -0
- package/src/multi-select/multi-select.js +98 -43
- package/styles/_all.scss +3 -3
- package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
- package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
- package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
- package/styles/auto-complete/_material-dark-definition.scss +2 -2
- package/styles/bootstrap-dark.css +67 -61
- package/styles/bootstrap.css +69 -63
- package/styles/bootstrap4.css +81 -61
- package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
- package/styles/combo-box/_bootstrap4-definition.scss +11 -11
- package/styles/combo-box/_fabric-dark-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
- package/styles/combo-box/_material-dark-definition.scss +2 -2
- package/styles/drop-down-base/_all.scss +2 -2
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +64 -64
- package/styles/drop-down-base/_bootstrap-definition.scss +64 -64
- package/styles/drop-down-base/_bootstrap4-definition.scss +78 -78
- package/styles/drop-down-base/_definition.scss +23 -23
- package/styles/drop-down-base/_fabric-dark-definition.scss +68 -68
- package/styles/drop-down-base/_fabric-definition.scss +66 -66
- package/styles/drop-down-base/_highcontrast-definition.scss +82 -82
- package/styles/drop-down-base/_highcontrast-light-definition.scss +81 -81
- package/styles/drop-down-base/_layout.scss +108 -108
- package/styles/drop-down-base/_material-dark-definition.scss +67 -67
- package/styles/drop-down-base/_material-definition.scss +65 -65
- package/styles/drop-down-base/_theme.scss +242 -242
- package/styles/drop-down-list/_all.scss +2 -2
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
- package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
- package/styles/drop-down-list/_bootstrap4-definition.scss +184 -184
- package/styles/drop-down-list/_fabric-dark-definition.scss +127 -127
- package/styles/drop-down-list/_fabric-definition.scss +122 -122
- package/styles/drop-down-list/_highcontrast-definition.scss +131 -131
- package/styles/drop-down-list/_highcontrast-light-definition.scss +133 -133
- package/styles/drop-down-list/_layout.scss +218 -218
- package/styles/drop-down-list/_material-dark-definition.scss +143 -143
- package/styles/drop-down-list/_material-definition.scss +166 -166
- package/styles/drop-down-list/_theme.scss +10 -10
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
- package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
- package/styles/drop-down-list/icons/_fabric.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
- package/styles/drop-down-list/icons/_material-dark.scss +14 -14
- package/styles/drop-down-list/icons/_material.scss +14 -14
- package/styles/drop-down-list/material.css +9 -0
- package/styles/drop-down-tree/_all.scss +2 -2
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +62 -49
- package/styles/drop-down-tree/_bootstrap-definition.scss +62 -49
- package/styles/drop-down-tree/_bootstrap4-definition.scss +63 -50
- package/styles/drop-down-tree/_fabric-dark-definition.scss +63 -49
- package/styles/drop-down-tree/_fabric-definition.scss +63 -49
- package/styles/drop-down-tree/_highcontrast-definition.scss +63 -49
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +63 -49
- package/styles/drop-down-tree/_layout.scss +437 -398
- package/styles/drop-down-tree/_material-dark-definition.scss +61 -54
- package/styles/drop-down-tree/_material-definition.scss +61 -54
- package/styles/drop-down-tree/_theme.scss +68 -63
- package/styles/drop-down-tree/bootstrap-dark.css +67 -61
- package/styles/drop-down-tree/bootstrap.css +69 -63
- package/styles/drop-down-tree/bootstrap4.css +81 -61
- package/styles/drop-down-tree/fabric-dark.css +71 -63
- package/styles/drop-down-tree/fabric.css +71 -63
- package/styles/drop-down-tree/highcontrast-light.css +71 -63
- package/styles/drop-down-tree/highcontrast.css +75 -63
- package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
- package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_material.scss +11 -11
- package/styles/drop-down-tree/material-dark.css +76 -85
- package/styles/drop-down-tree/material.css +93 -85
- package/styles/fabric-dark.css +71 -63
- package/styles/fabric.css +71 -63
- package/styles/highcontrast-light.css +71 -63
- package/styles/highcontrast.css +75 -63
- package/styles/list-box/_all.scss +2 -2
- package/styles/list-box/_bootstrap-dark-definition.scss +118 -118
- package/styles/list-box/_bootstrap-definition.scss +112 -112
- package/styles/list-box/_bootstrap4-definition.scss +118 -118
- package/styles/list-box/_fabric-dark-definition.scss +118 -118
- package/styles/list-box/_fabric-definition.scss +112 -112
- package/styles/list-box/_highcontrast-definition.scss +112 -112
- package/styles/list-box/_highcontrast-light-definition.scss +118 -118
- package/styles/list-box/_layout.scss +458 -458
- package/styles/list-box/_material-dark-definition.scss +118 -118
- package/styles/list-box/_material-definition.scss +112 -112
- package/styles/list-box/_theme.scss +273 -273
- package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
- package/styles/list-box/icons/_bootstrap.scss +25 -25
- package/styles/list-box/icons/_bootstrap4.scss +25 -25
- package/styles/list-box/icons/_fabric-dark.scss +25 -25
- package/styles/list-box/icons/_fabric.scss +25 -25
- package/styles/list-box/icons/_highcontrast-light.scss +25 -25
- package/styles/list-box/icons/_highcontrast.scss +25 -25
- package/styles/list-box/icons/_material-dark.scss +25 -25
- package/styles/list-box/icons/_material.scss +25 -25
- package/styles/list-box/material-dark.css +4 -4
- package/styles/list-box/material.css +4 -4
- package/styles/material-dark.css +80 -89
- package/styles/material.css +115 -89
- package/styles/multi-select/_all.scss +2 -2
- package/styles/multi-select/_bootstrap-dark-definition.scss +171 -171
- package/styles/multi-select/_bootstrap-definition.scss +166 -166
- package/styles/multi-select/_bootstrap4-definition.scss +233 -233
- package/styles/multi-select/_fabric-dark-definition.scss +170 -170
- package/styles/multi-select/_fabric-definition.scss +167 -167
- package/styles/multi-select/_highcontrast-definition.scss +257 -257
- package/styles/multi-select/_highcontrast-light-definition.scss +258 -258
- package/styles/multi-select/_layout.scss +1153 -1153
- package/styles/multi-select/_material-dark-definition.scss +186 -186
- package/styles/multi-select/_material-definition.scss +191 -191
- package/styles/multi-select/_theme.scss +384 -384
- package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
- package/styles/multi-select/icons/_bootstrap.scss +26 -26
- package/styles/multi-select/icons/_bootstrap4.scss +37 -37
- package/styles/multi-select/icons/_fabric-dark.scss +26 -26
- package/styles/multi-select/icons/_fabric.scss +26 -26
- package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
- package/styles/multi-select/icons/_highcontrast.scss +26 -26
- package/styles/multi-select/icons/_material-dark.scss +26 -26
- package/styles/multi-select/icons/_material.scss +324 -324
- package/styles/multi-select/material.css +9 -0
|
@@ -60,13 +60,13 @@
|
|
|
60
60
|
outline: none;
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
-
.e-ddt
|
|
64
|
-
transform: rotate(
|
|
63
|
+
.e-ddt .e-ddt-icon::before {
|
|
64
|
+
transform: rotate(0deg);
|
|
65
65
|
transition: transform 300ms ease;
|
|
66
66
|
}
|
|
67
67
|
|
|
68
|
-
.e-ddt .e-ddt-icon::before {
|
|
69
|
-
transform: rotate(
|
|
68
|
+
.e-ddt.e-icon-anim .e-ddt-icon::before {
|
|
69
|
+
transform: rotate(180deg);
|
|
70
70
|
transition: transform 300ms ease;
|
|
71
71
|
}
|
|
72
72
|
|
|
@@ -89,10 +89,6 @@
|
|
|
89
89
|
display: none;
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
-
.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 {
|
|
93
|
-
top: 15px;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
92
|
.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 {
|
|
97
93
|
bottom: 0;
|
|
98
94
|
position: absolute;
|
|
@@ -121,27 +117,30 @@
|
|
|
121
117
|
}
|
|
122
118
|
|
|
123
119
|
.e-ddt .e-chips-wrapper .e-chips-close {
|
|
124
|
-
line-height:
|
|
120
|
+
line-height: 23px;
|
|
125
121
|
min-height: 26px;
|
|
126
|
-
min-width:
|
|
122
|
+
min-width: 18px;
|
|
127
123
|
text-align: center;
|
|
128
124
|
}
|
|
129
125
|
|
|
130
126
|
.e-ddt .e-chips-wrapper .e-chips-close::before {
|
|
131
127
|
font-size: 10px;
|
|
128
|
+
vertical-align: middle;
|
|
132
129
|
}
|
|
133
130
|
|
|
134
131
|
.e-ddt .e-chips-wrapper .e-chips {
|
|
135
132
|
-ms-flex-align: center;
|
|
136
133
|
align-items: center;
|
|
134
|
+
border-radius: 0;
|
|
135
|
+
box-sizing: border-box;
|
|
137
136
|
display: -ms-inline-flexbox;
|
|
138
137
|
display: inline-flex;
|
|
139
138
|
float: left;
|
|
140
139
|
height: 26px;
|
|
141
140
|
margin: 2px 1px;
|
|
142
|
-
max-width: 100
|
|
141
|
+
max-width: calc(100% - 2px);
|
|
143
142
|
overflow: hidden;
|
|
144
|
-
padding: 0
|
|
143
|
+
padding: 0 4px 0 4px;
|
|
145
144
|
text-overflow: ellipsis;
|
|
146
145
|
white-space: nowrap;
|
|
147
146
|
}
|
|
@@ -149,22 +148,26 @@
|
|
|
149
148
|
.e-ddt .e-chips-wrapper .e-chips > .e-chipcontent {
|
|
150
149
|
max-width: 100%;
|
|
151
150
|
overflow: hidden;
|
|
152
|
-
padding: 0;
|
|
151
|
+
padding: 0 4px 0 4px;
|
|
153
152
|
text-indent: 0;
|
|
154
153
|
text-overflow: ellipsis;
|
|
155
154
|
white-space: nowrap;
|
|
155
|
+
line-height: 26px;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
-
.e-ddt.e-show-
|
|
159
|
-
margin-right:
|
|
158
|
+
.e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
159
|
+
margin-right: 30px;
|
|
160
|
+
max-width: calc(100% - 31px);
|
|
160
161
|
}
|
|
161
162
|
|
|
162
|
-
.e-ddt.e-show-clear .e-chips-wrapper .e-chips
|
|
163
|
+
.e-ddt.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
163
164
|
margin-right: 30px;
|
|
165
|
+
max-width: calc(100% - 31px);
|
|
164
166
|
}
|
|
165
167
|
|
|
166
|
-
.e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
167
|
-
margin-right:
|
|
168
|
+
.e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
169
|
+
margin-right: 60px;
|
|
170
|
+
max-width: calc(100% - 61px);
|
|
168
171
|
}
|
|
169
172
|
|
|
170
173
|
.e-ddt input[readonly],
|
|
@@ -180,9 +183,8 @@
|
|
|
180
183
|
}
|
|
181
184
|
|
|
182
185
|
.e-ddt.e-popup {
|
|
183
|
-
border: 1px solid;
|
|
186
|
+
border: 1px solid #414040;
|
|
184
187
|
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);
|
|
185
|
-
margin-top: 2px;
|
|
186
188
|
position: absolute;
|
|
187
189
|
}
|
|
188
190
|
|
|
@@ -193,7 +195,7 @@
|
|
|
193
195
|
line-height: 36px;
|
|
194
196
|
overflow: hidden;
|
|
195
197
|
position: relative;
|
|
196
|
-
text-indent:
|
|
198
|
+
text-indent: 38px;
|
|
197
199
|
white-space: nowrap;
|
|
198
200
|
width: 100%;
|
|
199
201
|
}
|
|
@@ -203,7 +205,6 @@
|
|
|
203
205
|
}
|
|
204
206
|
|
|
205
207
|
.e-ddt.e-popup .e-selectall-parent .e-checkbox-wrapper {
|
|
206
|
-
margin-right: 10px;
|
|
207
208
|
position: relative;
|
|
208
209
|
text-indent: 0;
|
|
209
210
|
}
|
|
@@ -211,10 +212,28 @@
|
|
|
211
212
|
.e-ddt.e-popup .e-selectall-parent .e-all-text {
|
|
212
213
|
font-family: inherit;
|
|
213
214
|
font-size: 14px;
|
|
215
|
+
margin: 10px;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.e-ddt.e-popup .e-filter-wrap .e-input,
|
|
219
|
+
.e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
220
|
+
padding: 0 12px;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.e-ddt.e-popup .e-filter-wrap {
|
|
224
|
+
border: 1px solid #414040;
|
|
225
|
+
border-top-width: 0;
|
|
226
|
+
display: block;
|
|
227
|
+
padding: 5px;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.e-ddt.e-popup .e-filter-wrap {
|
|
231
|
+
border-left-width: 0;
|
|
232
|
+
border-right-width: 0;
|
|
214
233
|
}
|
|
215
234
|
|
|
216
235
|
.e-ddt.e-popup .e-filter-wrap .e-input-group {
|
|
217
|
-
|
|
236
|
+
margin-bottom: 0;
|
|
218
237
|
}
|
|
219
238
|
|
|
220
239
|
.e-ddt.e-popup .e-popup-content {
|
|
@@ -277,29 +296,26 @@
|
|
|
277
296
|
|
|
278
297
|
.e-ddt.e-rtl .e-chips-wrapper .e-chips {
|
|
279
298
|
float: right;
|
|
280
|
-
padding: 0 8px 0 0;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
.e-ddt.e-rtl .e-chips-wrapper .e-chips > .e-chipcontent {
|
|
284
|
-
padding: 0;
|
|
285
299
|
}
|
|
286
300
|
|
|
287
|
-
.e-ddt.e-rtl.e-show-
|
|
288
|
-
margin-left:
|
|
301
|
+
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
302
|
+
margin-left: 30px;
|
|
289
303
|
margin-right: 1px;
|
|
290
304
|
}
|
|
291
305
|
|
|
292
|
-
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips
|
|
306
|
+
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
293
307
|
margin-left: 30px;
|
|
294
308
|
margin-right: 1px;
|
|
295
309
|
}
|
|
296
310
|
|
|
297
|
-
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
298
|
-
margin-left:
|
|
311
|
+
.e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
312
|
+
margin-left: 60px;
|
|
299
313
|
margin-right: 1px;
|
|
300
314
|
}
|
|
301
315
|
|
|
302
|
-
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
316
|
+
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
317
|
+
.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,
|
|
318
|
+
.e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
|
|
303
319
|
left: 0;
|
|
304
320
|
right: auto;
|
|
305
321
|
}
|
|
@@ -308,16 +324,6 @@
|
|
|
308
324
|
left: 30px;
|
|
309
325
|
}
|
|
310
326
|
|
|
311
|
-
.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 {
|
|
312
|
-
left: 0;
|
|
313
|
-
right: auto;
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
.e-ddt.e-rtl.e-popup .e-selectall-parent .e-checkbox-wrapper {
|
|
317
|
-
margin-left: 10px;
|
|
318
|
-
margin-right: 0;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
327
|
.e-ddt.e-rtl.e-popup .e-treeview .e-list-item .e-ul {
|
|
322
328
|
padding: 0 14px 0 0;
|
|
323
329
|
}
|
|
@@ -345,24 +351,27 @@
|
|
|
345
351
|
min-height: 38px;
|
|
346
352
|
}
|
|
347
353
|
|
|
348
|
-
.e-bigger .e-ddt.e-show-
|
|
349
|
-
.e-ddt.e-bigger.e-show-
|
|
350
|
-
margin-right:
|
|
354
|
+
.e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
355
|
+
.e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
356
|
+
margin-right: 38px;
|
|
357
|
+
max-width: calc(100% - 39px);
|
|
351
358
|
}
|
|
352
359
|
|
|
353
|
-
.e-bigger .e-ddt.e-show-clear .e-chips-wrapper .e-chips
|
|
354
|
-
.e-ddt.e-bigger.e-show-clear .e-chips-wrapper .e-chips
|
|
360
|
+
.e-bigger .e-ddt.e-show-clear .e-chips-wrapper .e-chips:last-child,
|
|
361
|
+
.e-ddt.e-bigger.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
355
362
|
margin-right: 38px;
|
|
363
|
+
max-width: calc(100% - 39px);
|
|
356
364
|
}
|
|
357
365
|
|
|
358
|
-
.e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
359
|
-
.e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
360
|
-
margin-right:
|
|
366
|
+
.e-bigger .e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
367
|
+
.e-ddt.e-bigger.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
368
|
+
margin-right: 76px;
|
|
369
|
+
max-width: calc(100% - 77px);
|
|
361
370
|
}
|
|
362
371
|
|
|
363
372
|
.e-bigger .e-ddt.e-popup .e-selectall-parent,
|
|
364
373
|
.e-ddt.e-bigger.e-popup .e-selectall-parent {
|
|
365
|
-
text-indent:
|
|
374
|
+
text-indent: 43px;
|
|
366
375
|
}
|
|
367
376
|
|
|
368
377
|
.e-bigger .e-ddt.e-popup .e-treeview .e-fullrow,
|
|
@@ -370,21 +379,21 @@
|
|
|
370
379
|
height: 44px;
|
|
371
380
|
}
|
|
372
381
|
|
|
373
|
-
.e-bigger .e-ddt.e-rtl.e-show-
|
|
374
|
-
.e-ddt.e-bigger.e-rtl.e-show-
|
|
375
|
-
margin-left:
|
|
382
|
+
.e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
383
|
+
.e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
384
|
+
margin-left: 38px;
|
|
376
385
|
margin-right: 1px;
|
|
377
386
|
}
|
|
378
387
|
|
|
379
|
-
.e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips
|
|
380
|
-
.e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips
|
|
388
|
+
.e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child,
|
|
389
|
+
.e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
381
390
|
margin-left: 38px;
|
|
382
391
|
margin-right: 1px;
|
|
383
392
|
}
|
|
384
393
|
|
|
385
|
-
.e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
386
|
-
.e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
387
|
-
margin-left:
|
|
394
|
+
.e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
395
|
+
.e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
396
|
+
margin-left: 76px;
|
|
388
397
|
margin-right: 1px;
|
|
389
398
|
}
|
|
390
399
|
|
|
@@ -396,7 +405,6 @@
|
|
|
396
405
|
|
|
397
406
|
.e-ddt .e-chips {
|
|
398
407
|
background-color: #414040;
|
|
399
|
-
border-radius: 0;
|
|
400
408
|
}
|
|
401
409
|
|
|
402
410
|
.e-ddt .e-chips .e-chips-close::before {
|
|
@@ -429,7 +437,7 @@
|
|
|
429
437
|
}
|
|
430
438
|
|
|
431
439
|
.e-ddt.e-popup .e-selectall-parent {
|
|
432
|
-
border-bottom:
|
|
440
|
+
border-bottom-color: #414040;
|
|
433
441
|
}
|
|
434
442
|
|
|
435
443
|
.e-ddt.e-popup .e-selectall-parent .e-all-text {
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
outline: none;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
.e-ddt
|
|
65
|
-
transform: rotate(
|
|
64
|
+
.e-ddt .e-ddt-icon::before {
|
|
65
|
+
transform: rotate(0deg);
|
|
66
66
|
transition: transform 300ms ease;
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
-
.e-ddt .e-ddt-icon::before {
|
|
70
|
-
transform: rotate(
|
|
69
|
+
.e-ddt.e-icon-anim .e-ddt-icon::before {
|
|
70
|
+
transform: rotate(180deg);
|
|
71
71
|
transition: transform 300ms ease;
|
|
72
72
|
}
|
|
73
73
|
|
|
@@ -90,10 +90,6 @@
|
|
|
90
90
|
display: none;
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
-
.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 {
|
|
94
|
-
top: 15px;
|
|
95
|
-
}
|
|
96
|
-
|
|
97
93
|
.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 {
|
|
98
94
|
bottom: 0;
|
|
99
95
|
position: absolute;
|
|
@@ -122,27 +118,30 @@
|
|
|
122
118
|
}
|
|
123
119
|
|
|
124
120
|
.e-ddt .e-chips-wrapper .e-chips-close {
|
|
125
|
-
line-height:
|
|
121
|
+
line-height: 21px;
|
|
126
122
|
min-height: 26px;
|
|
127
|
-
min-width:
|
|
123
|
+
min-width: 18px;
|
|
128
124
|
text-align: center;
|
|
129
125
|
}
|
|
130
126
|
|
|
131
127
|
.e-ddt .e-chips-wrapper .e-chips-close::before {
|
|
132
128
|
font-size: 10px;
|
|
129
|
+
vertical-align: middle;
|
|
133
130
|
}
|
|
134
131
|
|
|
135
132
|
.e-ddt .e-chips-wrapper .e-chips {
|
|
136
133
|
-ms-flex-align: center;
|
|
137
134
|
align-items: center;
|
|
135
|
+
border-radius: 0;
|
|
136
|
+
box-sizing: border-box;
|
|
138
137
|
display: -ms-inline-flexbox;
|
|
139
138
|
display: inline-flex;
|
|
140
139
|
float: left;
|
|
141
140
|
height: 26px;
|
|
142
141
|
margin: 2px 1px;
|
|
143
|
-
max-width: 100
|
|
142
|
+
max-width: calc(100% - 2px);
|
|
144
143
|
overflow: hidden;
|
|
145
|
-
padding: 0
|
|
144
|
+
padding: 0 4px 0 4px;
|
|
146
145
|
text-overflow: ellipsis;
|
|
147
146
|
white-space: nowrap;
|
|
148
147
|
}
|
|
@@ -150,22 +149,26 @@
|
|
|
150
149
|
.e-ddt .e-chips-wrapper .e-chips > .e-chipcontent {
|
|
151
150
|
max-width: 100%;
|
|
152
151
|
overflow: hidden;
|
|
153
|
-
padding: 0;
|
|
152
|
+
padding: 0 4px 0 4px;
|
|
154
153
|
text-indent: 0;
|
|
155
154
|
text-overflow: ellipsis;
|
|
156
155
|
white-space: nowrap;
|
|
156
|
+
line-height: 26px;
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
-
.e-ddt.e-show-
|
|
160
|
-
margin-right:
|
|
159
|
+
.e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
160
|
+
margin-right: 30px;
|
|
161
|
+
max-width: calc(100% - 31px);
|
|
161
162
|
}
|
|
162
163
|
|
|
163
|
-
.e-ddt.e-show-clear .e-chips-wrapper .e-chips
|
|
164
|
+
.e-ddt.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
164
165
|
margin-right: 30px;
|
|
166
|
+
max-width: calc(100% - 31px);
|
|
165
167
|
}
|
|
166
168
|
|
|
167
|
-
.e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
168
|
-
margin-right:
|
|
169
|
+
.e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
170
|
+
margin-right: 60px;
|
|
171
|
+
max-width: calc(100% - 61px);
|
|
169
172
|
}
|
|
170
173
|
|
|
171
174
|
.e-ddt input[readonly],
|
|
@@ -181,9 +184,8 @@
|
|
|
181
184
|
}
|
|
182
185
|
|
|
183
186
|
.e-ddt.e-popup {
|
|
184
|
-
border: 1px solid;
|
|
187
|
+
border: 1px solid #eaeaea;
|
|
185
188
|
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);
|
|
186
|
-
margin-top: 2px;
|
|
187
189
|
position: absolute;
|
|
188
190
|
}
|
|
189
191
|
|
|
@@ -194,7 +196,7 @@
|
|
|
194
196
|
line-height: 36px;
|
|
195
197
|
overflow: hidden;
|
|
196
198
|
position: relative;
|
|
197
|
-
text-indent:
|
|
199
|
+
text-indent: 38px;
|
|
198
200
|
white-space: nowrap;
|
|
199
201
|
width: 100%;
|
|
200
202
|
}
|
|
@@ -204,7 +206,6 @@
|
|
|
204
206
|
}
|
|
205
207
|
|
|
206
208
|
.e-ddt.e-popup .e-selectall-parent .e-checkbox-wrapper {
|
|
207
|
-
margin-right: 10px;
|
|
208
209
|
position: relative;
|
|
209
210
|
text-indent: 0;
|
|
210
211
|
}
|
|
@@ -212,10 +213,28 @@
|
|
|
212
213
|
.e-ddt.e-popup .e-selectall-parent .e-all-text {
|
|
213
214
|
font-family: inherit;
|
|
214
215
|
font-size: 14px;
|
|
216
|
+
margin: 10px;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.e-ddt.e-popup .e-filter-wrap .e-input,
|
|
220
|
+
.e-ddt.e-popup .e-filter-wrap .e-input:focus {
|
|
221
|
+
padding: 0 12px;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.e-ddt.e-popup .e-filter-wrap {
|
|
225
|
+
border: 1px solid #c8c8c8;
|
|
226
|
+
border-top-width: 0;
|
|
227
|
+
display: block;
|
|
228
|
+
padding: 5px;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.e-ddt.e-popup .e-filter-wrap {
|
|
232
|
+
border-left-width: 0;
|
|
233
|
+
border-right-width: 0;
|
|
215
234
|
}
|
|
216
235
|
|
|
217
236
|
.e-ddt.e-popup .e-filter-wrap .e-input-group {
|
|
218
|
-
|
|
237
|
+
margin-bottom: 0;
|
|
219
238
|
}
|
|
220
239
|
|
|
221
240
|
.e-ddt.e-popup .e-popup-content {
|
|
@@ -278,29 +297,26 @@
|
|
|
278
297
|
|
|
279
298
|
.e-ddt.e-rtl .e-chips-wrapper .e-chips {
|
|
280
299
|
float: right;
|
|
281
|
-
padding: 0 8px 0 0;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
.e-ddt.e-rtl .e-chips-wrapper .e-chips > .e-chipcontent {
|
|
285
|
-
padding: 0;
|
|
286
300
|
}
|
|
287
301
|
|
|
288
|
-
.e-ddt.e-rtl.e-show-
|
|
289
|
-
margin-left:
|
|
302
|
+
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
303
|
+
margin-left: 30px;
|
|
290
304
|
margin-right: 1px;
|
|
291
305
|
}
|
|
292
306
|
|
|
293
|
-
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips
|
|
307
|
+
.e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
294
308
|
margin-left: 30px;
|
|
295
309
|
margin-right: 1px;
|
|
296
310
|
}
|
|
297
311
|
|
|
298
|
-
.e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
299
|
-
margin-left:
|
|
312
|
+
.e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
313
|
+
margin-left: 60px;
|
|
300
314
|
margin-right: 1px;
|
|
301
315
|
}
|
|
302
316
|
|
|
303
|
-
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
317
|
+
.e-ddt.e-rtl.e-input-group.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
318
|
+
.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,
|
|
319
|
+
.e-ddt.e-rtl.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon {
|
|
304
320
|
left: 0;
|
|
305
321
|
right: auto;
|
|
306
322
|
}
|
|
@@ -309,16 +325,6 @@
|
|
|
309
325
|
left: 30px;
|
|
310
326
|
}
|
|
311
327
|
|
|
312
|
-
.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 {
|
|
313
|
-
left: 0;
|
|
314
|
-
right: auto;
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
.e-ddt.e-rtl.e-popup .e-selectall-parent .e-checkbox-wrapper {
|
|
318
|
-
margin-left: 10px;
|
|
319
|
-
margin-right: 0;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
328
|
.e-ddt.e-rtl.e-popup .e-treeview .e-list-item .e-ul {
|
|
323
329
|
padding: 0 14px 0 0;
|
|
324
330
|
}
|
|
@@ -346,24 +352,27 @@
|
|
|
346
352
|
min-height: 38px;
|
|
347
353
|
}
|
|
348
354
|
|
|
349
|
-
.e-bigger .e-ddt.e-show-
|
|
350
|
-
.e-ddt.e-bigger.e-show-
|
|
351
|
-
margin-right:
|
|
355
|
+
.e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
356
|
+
.e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
357
|
+
margin-right: 38px;
|
|
358
|
+
max-width: calc(100% - 39px);
|
|
352
359
|
}
|
|
353
360
|
|
|
354
|
-
.e-bigger .e-ddt.e-show-clear .e-chips-wrapper .e-chips
|
|
355
|
-
.e-ddt.e-bigger.e-show-clear .e-chips-wrapper .e-chips
|
|
361
|
+
.e-bigger .e-ddt.e-show-clear .e-chips-wrapper .e-chips:last-child,
|
|
362
|
+
.e-ddt.e-bigger.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
356
363
|
margin-right: 38px;
|
|
364
|
+
max-width: calc(100% - 39px);
|
|
357
365
|
}
|
|
358
366
|
|
|
359
|
-
.e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
360
|
-
.e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
361
|
-
margin-right:
|
|
367
|
+
.e-bigger .e-ddt.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
368
|
+
.e-ddt.e-bigger.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
369
|
+
margin-right: 76px;
|
|
370
|
+
max-width: calc(100% - 77px);
|
|
362
371
|
}
|
|
363
372
|
|
|
364
373
|
.e-bigger .e-ddt.e-popup .e-selectall-parent,
|
|
365
374
|
.e-ddt.e-bigger.e-popup .e-selectall-parent {
|
|
366
|
-
text-indent:
|
|
375
|
+
text-indent: 43px;
|
|
367
376
|
}
|
|
368
377
|
|
|
369
378
|
.e-bigger .e-ddt.e-popup .e-treeview .e-fullrow,
|
|
@@ -371,21 +380,21 @@
|
|
|
371
380
|
height: 44px;
|
|
372
381
|
}
|
|
373
382
|
|
|
374
|
-
.e-bigger .e-ddt.e-rtl.e-show-
|
|
375
|
-
.e-ddt.e-bigger.e-rtl.e-show-
|
|
376
|
-
margin-left:
|
|
383
|
+
.e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
384
|
+
.e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
385
|
+
margin-left: 38px;
|
|
377
386
|
margin-right: 1px;
|
|
378
387
|
}
|
|
379
388
|
|
|
380
|
-
.e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips
|
|
381
|
-
.e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips
|
|
389
|
+
.e-bigger .e-ddt.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child,
|
|
390
|
+
.e-ddt.e-bigger.e-rtl.e-show-clear .e-chips-wrapper .e-chips:last-child {
|
|
382
391
|
margin-left: 38px;
|
|
383
392
|
margin-right: 1px;
|
|
384
393
|
}
|
|
385
394
|
|
|
386
|
-
.e-bigger .e-ddt.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
387
|
-
.e-ddt.e-bigger.e-rtl.e-show-dd-icon .e-chips-wrapper .e-chips
|
|
388
|
-
margin-left:
|
|
395
|
+
.e-bigger .e-ddt.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
396
|
+
.e-ddt.e-bigger.e-rtl.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
397
|
+
margin-left: 76px;
|
|
389
398
|
margin-right: 1px;
|
|
390
399
|
}
|
|
391
400
|
|
|
@@ -397,7 +406,6 @@
|
|
|
397
406
|
|
|
398
407
|
.e-ddt .e-chips {
|
|
399
408
|
background-color: #f4f4f4;
|
|
400
|
-
border-radius: 0;
|
|
401
409
|
}
|
|
402
410
|
|
|
403
411
|
.e-ddt .e-chips .e-chips-close::before {
|
|
@@ -430,7 +438,7 @@
|
|
|
430
438
|
}
|
|
431
439
|
|
|
432
440
|
.e-ddt.e-popup .e-selectall-parent {
|
|
433
|
-
border-bottom:
|
|
441
|
+
border-bottom-color: #eaeaea;
|
|
434
442
|
}
|
|
435
443
|
|
|
436
444
|
.e-ddt.e-popup .e-selectall-parent .e-all-text {
|