@syncfusion/ej2-dropdowns 33.2.7 → 33.2.8
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/dist/ej2-dropdowns.min.js +1 -10
- 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 +25 -2
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +25 -2
- 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/package.json +2 -2
- package/src/drop-down-list/drop-down-list.js +3 -0
- package/src/mention/mention.js +5 -1
- package/src/multi-select/multi-select.d.ts +1 -0
- package/src/multi-select/multi-select.js +17 -1
- package/styles/drop-down-tree/_bigger.scss +25 -4
- package/styles/drop-down-tree/_layout.scss +18 -3
- package/styles/drop-down-tree/_material3-dark-definition.scss +2 -0
- package/styles/drop-down-tree/_material3-definition.scss +2 -0
- package/styles/drop-down-tree/_theme.scss +9 -1
- package/styles/drop-down-tree/material3-dark.css +244 -1
- package/styles/drop-down-tree/material3.css +244 -1
- package/styles/material3-dark-lite.css +106 -1
- package/styles/material3-dark.css +244 -1
- package/styles/material3-lite.css +106 -1
- package/styles/material3.css +244 -1
package/dist/global/index.d.ts
CHANGED
|
@@ -1,12 +1,3 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* filename: index.d.ts
|
|
3
|
-
* version : 33.2.7
|
|
4
|
-
* Copyright Syncfusion Inc. 2001 - 2025. All rights reserved.
|
|
5
|
-
* Use of this code is subject to the terms of our license.
|
|
6
|
-
* A copy of the current license can be obtained at any time by e-mailing
|
|
7
|
-
* licensing@syncfusion.com. Any infringement will be prosecuted under
|
|
8
|
-
* applicable laws.
|
|
9
|
-
*/
|
|
10
1
|
import * as _dropdowns from '@syncfusion/ej2-dropdowns';
|
|
11
2
|
|
|
12
3
|
export declare namespace ej {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-dropdowns",
|
|
3
|
-
"version": "33.2.
|
|
3
|
+
"version": "33.2.8",
|
|
4
4
|
"description": "Essential JS 2 DropDown Components",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@syncfusion/ej2-data": "~33.2.5",
|
|
13
13
|
"@syncfusion/ej2-inputs": "~33.2.5",
|
|
14
14
|
"@syncfusion/ej2-lists": "~33.2.3",
|
|
15
|
-
"@syncfusion/ej2-navigations": "~33.2.
|
|
15
|
+
"@syncfusion/ej2-navigations": "~33.2.8",
|
|
16
16
|
"@syncfusion/ej2-notifications": "~33.2.7",
|
|
17
17
|
"@syncfusion/ej2-popups": "~33.2.7"
|
|
18
18
|
},
|
|
@@ -1626,6 +1626,9 @@ var DropDownList = /** @class */ (function (_super) {
|
|
|
1626
1626
|
(this.previousValue != null && this.isObjectInArray(this.previousValue, [this.allowCustom &&
|
|
1627
1627
|
this.isObjectCustomValue ? this.value ? this.value : dataItem : dataItem.value ?
|
|
1628
1628
|
this.getDataByValue(dataItem.value) : dataItem])))) {
|
|
1629
|
+
if (this.getModuleName() === 'combobox' && this.autoFill && e && (e.type === 'click' || e.action === 'enter')) {
|
|
1630
|
+
return false;
|
|
1631
|
+
}
|
|
1629
1632
|
this.isSelected = false;
|
|
1630
1633
|
return true;
|
|
1631
1634
|
}
|
package/src/mention/mention.js
CHANGED
|
@@ -460,8 +460,12 @@ var Mention = /** @class */ (function (_super) {
|
|
|
460
460
|
? lastWordRange.substring(lastWordRange.lastIndexOf(this.mentionChar) + 1).trim()
|
|
461
461
|
: lastWordRange.replace(this.mentionChar, '');
|
|
462
462
|
}
|
|
463
|
+
if (this.queryString !== '' && e.keyCode === 8 && lastWordRange.includes(this.mentionChar) && !this.isPopupOpen &&
|
|
464
|
+
((typeof this.displayTemplate === 'function' ? this.displayTemplate() : this.displayTemplate)).includes(this.mentionChar)) {
|
|
465
|
+
this.queryString = '';
|
|
466
|
+
}
|
|
463
467
|
if (this.mentionChar.charCodeAt(0) === lastWordRange.charCodeAt(0) &&
|
|
464
|
-
this.queryString !== '' && e.keyCode !== 38 && e.keyCode !== 40 &&
|
|
468
|
+
this.queryString !== '' && e.keyCode !== 38 && e.keyCode !== 40 && !this.lineBreak) {
|
|
465
469
|
this.searchLists(e);
|
|
466
470
|
if (!this.isPopupOpen && this.queryString.length >= this.minLength) {
|
|
467
471
|
if (!this.isContentEditable(this.inputElement)) {
|
|
@@ -727,6 +727,7 @@ export declare class MultiSelect extends DropDownBase implements IInput {
|
|
|
727
727
|
private tempQuery;
|
|
728
728
|
private tempValues;
|
|
729
729
|
private secureRandom;
|
|
730
|
+
private isInvalidString;
|
|
730
731
|
private checkForCustomValue;
|
|
731
732
|
protected getNgDirective(): string;
|
|
732
733
|
private wrapperClick;
|
|
@@ -1138,8 +1138,12 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
1138
1138
|
window.crypto.getRandomValues(array);
|
|
1139
1139
|
return array[0] / (0xFFFFFFFF + 1);
|
|
1140
1140
|
};
|
|
1141
|
+
MultiSelect.prototype.isInvalidString = function (value) {
|
|
1142
|
+
return !value || value.trim().length === 0;
|
|
1143
|
+
};
|
|
1141
1144
|
MultiSelect.prototype.checkForCustomValue = function (query, fields) {
|
|
1142
|
-
var dataChecks = !this.getValueByText(this.inputElement.value, this.ignoreCase)
|
|
1145
|
+
var dataChecks = !this.getValueByText(this.inputElement.value, this.ignoreCase) &&
|
|
1146
|
+
!this.isInvalidString(this.inputElement.value);
|
|
1143
1147
|
var field = fields ? fields : this.fields;
|
|
1144
1148
|
this.isCustomReset = true;
|
|
1145
1149
|
if (this.allowCustomValue && dataChecks) {
|
|
@@ -4818,12 +4822,24 @@ var MultiSelect = /** @class */ (function (_super) {
|
|
|
4818
4822
|
temp = this.viewWrapper.innerHTML;
|
|
4819
4823
|
this.updateWrapperText(this.viewWrapper, data);
|
|
4820
4824
|
}
|
|
4825
|
+
var display = void 0;
|
|
4826
|
+
var topElement = void 0;
|
|
4827
|
+
if (this.componentWrapper.offsetWidth === 0 && this.componentWrapper.parentElement) {
|
|
4828
|
+
topElement = this.componentWrapper.parentElement.parentElement;
|
|
4829
|
+
if (!isNullOrUndefined(topElement) && topElement.style.display === 'none') {
|
|
4830
|
+
display = topElement.style.display;
|
|
4831
|
+
topElement.style.display = 'block';
|
|
4832
|
+
}
|
|
4833
|
+
}
|
|
4821
4834
|
wrapperleng = this.viewWrapper.offsetWidth +
|
|
4822
4835
|
parseInt(window.getComputedStyle(this.viewWrapper).paddingRight, 10) +
|
|
4823
4836
|
parseInt(window.getComputedStyle(this.viewWrapper).paddingLeft, 10);
|
|
4824
4837
|
overAllContainer = this.componentWrapper.offsetWidth -
|
|
4825
4838
|
parseInt(window.getComputedStyle(this.componentWrapper).paddingLeft, 10) -
|
|
4826
4839
|
parseInt(window.getComputedStyle(this.componentWrapper).paddingRight, 10);
|
|
4840
|
+
if (!isNullOrUndefined(display) && display === 'none' && !isNullOrUndefined(topElement)) {
|
|
4841
|
+
topElement.style.display = 'none';
|
|
4842
|
+
}
|
|
4827
4843
|
if ((wrapperleng + downIconWidth + this.clearIconWidth) > overAllContainer) {
|
|
4828
4844
|
if (tempData !== undefined && tempData !== '') {
|
|
4829
4845
|
temp = tempData;
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
}
|
|
220
220
|
}
|
|
221
221
|
|
|
222
|
-
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
222
|
+
@if $ddt-skin-name == 'Material3' or $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
223
223
|
&.e-outline {
|
|
224
224
|
.e-overflow {
|
|
225
225
|
&.e-show-text,
|
|
@@ -272,6 +272,12 @@
|
|
|
272
272
|
}
|
|
273
273
|
}
|
|
274
274
|
}
|
|
275
|
+
.e-float-text.e-label-top {
|
|
276
|
+
@if $ddt-skin-name == 'Material3' {
|
|
277
|
+
font-size: 12px !important; /* stylelint-disable-line declaration-no-important */
|
|
278
|
+
top: 12px !important; /* stylelint-disable-line declaration-no-important */
|
|
279
|
+
}
|
|
280
|
+
}
|
|
275
281
|
}
|
|
276
282
|
|
|
277
283
|
&.e-float-input.e-control-wrapper:not(.e-show-chip) {
|
|
@@ -284,11 +290,21 @@
|
|
|
284
290
|
&.e-float-input.e-control-wrapper.e-show-chip,
|
|
285
291
|
&.e-float-input.e-control-wrapper.e-show-text {
|
|
286
292
|
.e-ddt-icon {
|
|
287
|
-
@
|
|
293
|
+
@if $ddt-skin-name == 'Material3' {
|
|
294
|
+
padding: 0;
|
|
295
|
+
}
|
|
296
|
+
@else {
|
|
297
|
+
@include icon-style(12px, 12px);
|
|
298
|
+
}
|
|
288
299
|
}
|
|
289
300
|
|
|
290
301
|
.e-clear-icon {
|
|
291
|
-
@
|
|
302
|
+
@if $ddt-skin-name == 'Material3' {
|
|
303
|
+
@include icon-style(0, 30px);
|
|
304
|
+
}
|
|
305
|
+
@else {
|
|
306
|
+
@include icon-style(11px, 44px);
|
|
307
|
+
}
|
|
292
308
|
}
|
|
293
309
|
|
|
294
310
|
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
@@ -310,7 +326,12 @@
|
|
|
310
326
|
padding-top: 19px;
|
|
311
327
|
|
|
312
328
|
.e-chips {
|
|
313
|
-
|
|
329
|
+
@if $ddt-skin-name == 'Material3' {
|
|
330
|
+
height: 26px;
|
|
331
|
+
}
|
|
332
|
+
@else {
|
|
333
|
+
height: 24px;
|
|
334
|
+
}
|
|
314
335
|
}
|
|
315
336
|
|
|
316
337
|
.e-chips > .e-chipcontent {
|
|
@@ -248,7 +248,7 @@
|
|
|
248
248
|
}
|
|
249
249
|
}
|
|
250
250
|
|
|
251
|
-
@if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
251
|
+
@if $ddt-skin-name == 'Material3' or $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
|
|
252
252
|
&.e-outline {
|
|
253
253
|
.e-overflow {
|
|
254
254
|
&.e-show-text {
|
|
@@ -295,6 +295,11 @@
|
|
|
295
295
|
}
|
|
296
296
|
}
|
|
297
297
|
}
|
|
298
|
+
.e-float-text.e-label-top {
|
|
299
|
+
@if $ddt-skin-name == 'Material3' {
|
|
300
|
+
font-size: 12px !important; /* stylelint-disable-line declaration-no-important */
|
|
301
|
+
}
|
|
302
|
+
}
|
|
298
303
|
|
|
299
304
|
&:not(.e-show-chip) {
|
|
300
305
|
.e-ddt-icon,
|
|
@@ -306,11 +311,21 @@
|
|
|
306
311
|
&.e-show-chip,
|
|
307
312
|
&.e-show-text {
|
|
308
313
|
.e-ddt-icon {
|
|
309
|
-
@
|
|
314
|
+
@if $ddt-skin-name == 'Material3' {
|
|
315
|
+
@include icon-style(6px, 0);
|
|
316
|
+
}
|
|
317
|
+
@else {
|
|
318
|
+
@include icon-style(6px, 10px);
|
|
319
|
+
}
|
|
310
320
|
}
|
|
311
321
|
|
|
312
322
|
.e-clear-icon {
|
|
313
|
-
@
|
|
323
|
+
@if $ddt-skin-name == 'Material3' {
|
|
324
|
+
@include icon-style(5px, 30px);
|
|
325
|
+
}
|
|
326
|
+
@else {
|
|
327
|
+
@include icon-style(5px, 38px);
|
|
328
|
+
}
|
|
314
329
|
}
|
|
315
330
|
|
|
316
331
|
&:not(.e-show-dd-icon) .e-clear-icon {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
1
2
|
@use 'ej2-base/styles/common/mixin' as *;
|
|
2
3
|
@use 'ej2-base/styles/definition/material3-dark' as *;
|
|
3
4
|
@forward 'ej2-base/styles/definition/material3-dark';
|
|
@@ -103,3 +104,4 @@ $ddt-height-none: 0 !default;
|
|
|
103
104
|
$ddt-nrml-popup-margin-top: 2px !default;
|
|
104
105
|
$ddt-list-item-ul-padding: 0 0 0 14px !default;
|
|
105
106
|
$ddt-chip-border: 1px solid !default;
|
|
107
|
+
$ddt-filled-chip-bg-color: $grey-800 !default;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@use 'sass:color';
|
|
1
2
|
@use 'ej2-base/styles/common/mixin' as *;
|
|
2
3
|
@use 'ej2-base/styles/definition/material3' as *;
|
|
3
4
|
@forward 'ej2-base/styles/definition/material3';
|
|
@@ -103,3 +104,4 @@ $ddt-height-none: 0 !default;
|
|
|
103
104
|
$ddt-nrml-popup-margin-top: 2px !default;
|
|
104
105
|
$ddt-list-item-ul-padding: 0 0 0 14px !default;
|
|
105
106
|
$ddt-chip-border: 1px solid !default;
|
|
107
|
+
$ddt-filled-chip-bg-color: color.adjust($grey-300, $lightness: -7%) !default;
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
.e-chips {
|
|
24
24
|
@include chip-style($ddt-chip-bg-color, $ddt-chip-close, $ddt-chip-font-color);
|
|
25
25
|
@if $ddt-skin-name == 'Material3' or $theme-name == 'fluent2-highcontrast' {
|
|
26
|
-
border-color: $ddt-chip-border-color;
|
|
27
26
|
border: $ddt-chip-border;
|
|
27
|
+
border-color: $ddt-chip-border-color;
|
|
28
28
|
}
|
|
29
29
|
&:hover {
|
|
30
30
|
@if $ddt-skin-name == 'highcontrast' {
|
|
@@ -44,6 +44,14 @@
|
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
@if $ddt-skin-name == 'Material3' {
|
|
48
|
+
&.e-filled {
|
|
49
|
+
.e-chips {
|
|
50
|
+
background: transparent;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
47
55
|
@if $ddt-skin-name == 'tailwind' {
|
|
48
56
|
&.e-disabled {
|
|
49
57
|
@include chip-style($content-bg-color-alt3, $content-text-color-disabled, $content-text-color-disabled);
|
|
@@ -365,6 +365,108 @@
|
|
|
365
365
|
text-overflow: ellipsis;
|
|
366
366
|
white-space: nowrap;
|
|
367
367
|
}
|
|
368
|
+
.e-ddt.e-outline .e-overflow.e-show-text {
|
|
369
|
+
padding: 10px 12px 9px;
|
|
370
|
+
}
|
|
371
|
+
.e-ddt.e-outline .e-overflow.e-total-count {
|
|
372
|
+
padding: 10px 12px;
|
|
373
|
+
}
|
|
374
|
+
.e-ddt.e-outline.e-input-group.e-control-wrapper.e-show-dd-icon .e-clear-icon, .e-ddt.e-outline.e-float-input.e-control-wrapper.e-show-dd-icon .e-clear-icon {
|
|
375
|
+
right: 30px;
|
|
376
|
+
}
|
|
377
|
+
.e-ddt.e-outline.e-input-group.e-control-wrapper:not(.e-show-chip).e-show-dd-icon.e-input-focus .e-clear-icon, .e-ddt.e-outline.e-float-input.e-control-wrapper:not(.e-show-chip).e-show-dd-icon.e-input-focus .e-clear-icon {
|
|
378
|
+
min-height: 20px;
|
|
379
|
+
}
|
|
380
|
+
.e-ddt.e-outline.e-show-chip .e-overflow,
|
|
381
|
+
.e-ddt.e-outline.e-show-chip .e-chips-wrapper {
|
|
382
|
+
padding: 4px 12px;
|
|
383
|
+
}
|
|
384
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper .e-overflow.e-show-text {
|
|
385
|
+
line-height: 21px;
|
|
386
|
+
padding: 14px 2px 5px 0;
|
|
387
|
+
}
|
|
388
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper .e-overflow .e-remain.e-wrap-count {
|
|
389
|
+
padding-top: 10px;
|
|
390
|
+
}
|
|
391
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper .e-float-text.e-label-top {
|
|
392
|
+
font-size: 12px !important; /* stylelint-disable-line declaration-no-important */
|
|
393
|
+
}
|
|
394
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper:not(.e-show-chip) .e-ddt-icon, .e-ddt.e-filled.e-float-input.e-control-wrapper:not(.e-show-chip).e-show-dd-icon .e-clear-icon {
|
|
395
|
+
padding-top: 8px;
|
|
396
|
+
}
|
|
397
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon, .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-text .e-ddt-icon {
|
|
398
|
+
bottom: 6px;
|
|
399
|
+
right: 0;
|
|
400
|
+
}
|
|
401
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-clear-icon, .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-text .e-clear-icon {
|
|
402
|
+
bottom: 5px;
|
|
403
|
+
right: 30px;
|
|
404
|
+
}
|
|
405
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip:not(.e-show-dd-icon) .e-clear-icon, .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-text:not(.e-show-dd-icon) .e-clear-icon {
|
|
406
|
+
bottom: 9px;
|
|
407
|
+
right: 10px;
|
|
408
|
+
}
|
|
409
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper,
|
|
410
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow {
|
|
411
|
+
padding-top: 8px;
|
|
412
|
+
}
|
|
413
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper .e-chips,
|
|
414
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow .e-chips {
|
|
415
|
+
height: 18px;
|
|
416
|
+
}
|
|
417
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper .e-chips > .e-chipcontent,
|
|
418
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow .e-chips > .e-chipcontent {
|
|
419
|
+
font-size: 12px;
|
|
420
|
+
padding: 0 4px 0 0;
|
|
421
|
+
}
|
|
422
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper .e-chips-close::before,
|
|
423
|
+
.e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow .e-chips-close::before {
|
|
424
|
+
font-size: 12px;
|
|
425
|
+
height: 12px;
|
|
426
|
+
width: 12px;
|
|
427
|
+
}
|
|
428
|
+
.e-ddt.e-filled .e-chips-wrapper .e-chips,
|
|
429
|
+
.e-ddt.e-filled .e-overflow .e-chips {
|
|
430
|
+
margin-top: 8px;
|
|
431
|
+
padding: 0 8px;
|
|
432
|
+
}
|
|
433
|
+
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-overflow.e-show-text {
|
|
434
|
+
line-height: 39px;
|
|
435
|
+
padding: 0;
|
|
436
|
+
}
|
|
437
|
+
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-overflow .e-remain.e-wrap-count {
|
|
438
|
+
line-height: 39px;
|
|
439
|
+
padding-top: 0;
|
|
440
|
+
}
|
|
441
|
+
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-chips-wrapper .e-chips,
|
|
442
|
+
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-overflow .e-chips {
|
|
443
|
+
height: 28px;
|
|
444
|
+
margin-top: 8px;
|
|
445
|
+
padding: 0 8px;
|
|
446
|
+
}
|
|
447
|
+
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-chips-wrapper .e-chips > .e-chipcontent,
|
|
448
|
+
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-overflow .e-chips > .e-chipcontent {
|
|
449
|
+
font-size: 13px;
|
|
450
|
+
padding: 0 8px 0 0;
|
|
451
|
+
}
|
|
452
|
+
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-chips-wrapper .e-chips-close::before,
|
|
453
|
+
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-overflow .e-chips-close::before {
|
|
454
|
+
font-size: 14px;
|
|
455
|
+
height: 12px;
|
|
456
|
+
width: 12px;
|
|
457
|
+
}
|
|
458
|
+
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-text .e-ddt-icon, .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-chip .e-ddt-icon {
|
|
459
|
+
bottom: 10px;
|
|
460
|
+
right: 10px;
|
|
461
|
+
}
|
|
462
|
+
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-clear-icon {
|
|
463
|
+
bottom: 9px;
|
|
464
|
+
right: 38px;
|
|
465
|
+
}
|
|
466
|
+
.e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input):not(.e-show-dd-icon) .e-clear-icon {
|
|
467
|
+
bottom: 9px;
|
|
468
|
+
right: 10px;
|
|
469
|
+
}
|
|
368
470
|
.e-ddt .e-overflow {
|
|
369
471
|
white-space: nowrap;
|
|
370
472
|
}
|
|
@@ -644,8 +746,8 @@
|
|
|
644
746
|
/* 16px */
|
|
645
747
|
.e-ddt .e-chips {
|
|
646
748
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
647
|
-
border-color: rgba(var(--color-sf-outline));
|
|
648
749
|
border: 1px solid;
|
|
750
|
+
border-color: rgba(var(--color-sf-outline));
|
|
649
751
|
}
|
|
650
752
|
.e-ddt .e-chips .e-chips-close::before {
|
|
651
753
|
color: rgba(var(--color-sf-on-surface));
|
|
@@ -653,6 +755,9 @@
|
|
|
653
755
|
.e-ddt .e-chips > .e-chipcontent {
|
|
654
756
|
color: rgba(var(--color-sf-on-surface));
|
|
655
757
|
}
|
|
758
|
+
.e-ddt.e-filled .e-chips {
|
|
759
|
+
background: transparent;
|
|
760
|
+
}
|
|
656
761
|
.e-ddt .e-overflow .e-remain {
|
|
657
762
|
color: #757575;
|
|
658
763
|
}
|
|
@@ -775,6 +880,144 @@
|
|
|
775
880
|
.e-ddt.e-bigger .e-overflow.e-show-text {
|
|
776
881
|
padding: 8px 12px;
|
|
777
882
|
}
|
|
883
|
+
.e-bigger .e-ddt.e-outline .e-overflow.e-show-text, .e-bigger .e-ddt.e-outline .e-overflow.e-total-count,
|
|
884
|
+
.e-ddt.e-bigger.e-outline .e-overflow.e-show-text,
|
|
885
|
+
.e-ddt.e-bigger.e-outline .e-overflow.e-total-count {
|
|
886
|
+
padding: 15px 16px;
|
|
887
|
+
}
|
|
888
|
+
.e-bigger .e-ddt.e-outline.e-input-group.e-control-wrapper.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-outline.e-float-input.e-control-wrapper.e-show-dd-icon .e-clear-icon,
|
|
889
|
+
.e-ddt.e-bigger.e-outline.e-input-group.e-control-wrapper.e-show-dd-icon .e-clear-icon,
|
|
890
|
+
.e-ddt.e-bigger.e-outline.e-float-input.e-control-wrapper.e-show-dd-icon .e-clear-icon {
|
|
891
|
+
right: 36px;
|
|
892
|
+
}
|
|
893
|
+
.e-bigger .e-ddt.e-outline.e-show-chip .e-overflow,
|
|
894
|
+
.e-ddt.e-bigger.e-outline.e-show-chip .e-overflow {
|
|
895
|
+
padding: 8px 15px;
|
|
896
|
+
}
|
|
897
|
+
.e-bigger .e-ddt.e-outline.e-show-chip .e-overflow.e-total-count .e-remain,
|
|
898
|
+
.e-ddt.e-bigger.e-outline.e-show-chip .e-overflow.e-total-count .e-remain {
|
|
899
|
+
padding-top: 10px;
|
|
900
|
+
}
|
|
901
|
+
.e-bigger .e-ddt.e-outline.e-show-chip .e-overflow .e-remain.e-wrap-count,
|
|
902
|
+
.e-ddt.e-bigger.e-outline.e-show-chip .e-overflow .e-remain.e-wrap-count {
|
|
903
|
+
padding-top: 10px;
|
|
904
|
+
}
|
|
905
|
+
.e-bigger .e-ddt.e-outline.e-show-chip .e-chips-wrapper,
|
|
906
|
+
.e-ddt.e-bigger.e-outline.e-show-chip .e-chips-wrapper {
|
|
907
|
+
padding: 8px 15px;
|
|
908
|
+
}
|
|
909
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper .e-overflow.e-show-text,
|
|
910
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper .e-overflow.e-show-text {
|
|
911
|
+
line-height: 30px;
|
|
912
|
+
padding: 19px 12px 0 0;
|
|
913
|
+
}
|
|
914
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper .e-overflow .e-remain.e-wrap-count,
|
|
915
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper .e-overflow .e-remain.e-wrap-count {
|
|
916
|
+
padding-top: 14px;
|
|
917
|
+
}
|
|
918
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper .e-float-text.e-label-top,
|
|
919
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper .e-float-text.e-label-top {
|
|
920
|
+
font-size: 12px !important; /* stylelint-disable-line declaration-no-important */
|
|
921
|
+
top: 12px !important; /* stylelint-disable-line declaration-no-important */
|
|
922
|
+
}
|
|
923
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper:not(.e-show-chip) .e-ddt-icon, .e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper:not(.e-show-chip).e-show-dd-icon .e-clear-icon,
|
|
924
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper:not(.e-show-chip) .e-ddt-icon,
|
|
925
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper:not(.e-show-chip).e-show-dd-icon .e-clear-icon {
|
|
926
|
+
padding-top: 8px;
|
|
927
|
+
}
|
|
928
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-text .e-ddt-icon,
|
|
929
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-ddt-icon,
|
|
930
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-text .e-ddt-icon {
|
|
931
|
+
padding: 0;
|
|
932
|
+
}
|
|
933
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-clear-icon, .e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-text .e-clear-icon,
|
|
934
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-clear-icon,
|
|
935
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-text .e-clear-icon {
|
|
936
|
+
bottom: 0;
|
|
937
|
+
right: 30px;
|
|
938
|
+
}
|
|
939
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip:not(.e-show-dd-icon) .e-clear-icon, .e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-text:not(.e-show-dd-icon) .e-clear-icon,
|
|
940
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-chip:not(.e-show-dd-icon) .e-clear-icon,
|
|
941
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-text:not(.e-show-dd-icon) .e-clear-icon {
|
|
942
|
+
bottom: 14px;
|
|
943
|
+
right: 12px;
|
|
944
|
+
}
|
|
945
|
+
.e-bigger .e-ddt.e-filled .e-chips-wrapper .e-chips,
|
|
946
|
+
.e-bigger .e-ddt.e-filled .e-overflow .e-chips,
|
|
947
|
+
.e-ddt.e-bigger.e-filled .e-chips-wrapper .e-chips,
|
|
948
|
+
.e-ddt.e-bigger.e-filled .e-overflow .e-chips {
|
|
949
|
+
margin-top: 8px;
|
|
950
|
+
padding: 0 8px;
|
|
951
|
+
}
|
|
952
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper,
|
|
953
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow,
|
|
954
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper,
|
|
955
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow {
|
|
956
|
+
padding-top: 19px;
|
|
957
|
+
}
|
|
958
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper .e-chips,
|
|
959
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow .e-chips,
|
|
960
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper .e-chips,
|
|
961
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow .e-chips {
|
|
962
|
+
height: 26px;
|
|
963
|
+
}
|
|
964
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper .e-chips > .e-chipcontent,
|
|
965
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow .e-chips > .e-chipcontent,
|
|
966
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper .e-chips > .e-chipcontent,
|
|
967
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow .e-chips > .e-chipcontent {
|
|
968
|
+
font-size: 13px;
|
|
969
|
+
}
|
|
970
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper .e-chips-close::before,
|
|
971
|
+
.e-bigger .e-ddt.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow .e-chips-close::before,
|
|
972
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-chips-wrapper .e-chips-close::before,
|
|
973
|
+
.e-ddt.e-bigger.e-filled.e-float-input.e-control-wrapper.e-show-chip .e-overflow .e-chips-close::before {
|
|
974
|
+
font-size: 14px;
|
|
975
|
+
height: 14px;
|
|
976
|
+
width: 14px;
|
|
977
|
+
}
|
|
978
|
+
.e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-overflow.e-show-text,
|
|
979
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-overflow.e-show-text {
|
|
980
|
+
line-height: 55px;
|
|
981
|
+
}
|
|
982
|
+
.e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-overflow .e-remain.e-wrap-count,
|
|
983
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-overflow .e-remain.e-wrap-count {
|
|
984
|
+
line-height: 55px;
|
|
985
|
+
padding-top: 0;
|
|
986
|
+
}
|
|
987
|
+
.e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-chips-wrapper .e-chips,
|
|
988
|
+
.e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-overflow .e-chips,
|
|
989
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-chips-wrapper .e-chips,
|
|
990
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-overflow .e-chips {
|
|
991
|
+
height: 32px;
|
|
992
|
+
padding: 0 12px;
|
|
993
|
+
}
|
|
994
|
+
.e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-chips-wrapper .e-chips > .e-chipcontent,
|
|
995
|
+
.e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-overflow .e-chips > .e-chipcontent,
|
|
996
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-chips-wrapper .e-chips > .e-chipcontent,
|
|
997
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-overflow .e-chips > .e-chipcontent {
|
|
998
|
+
font-size: 14px;
|
|
999
|
+
}
|
|
1000
|
+
.e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-chips-wrapper .e-chips-close::before,
|
|
1001
|
+
.e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-overflow .e-chips-close::before,
|
|
1002
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-chips-wrapper .e-chips-close::before,
|
|
1003
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-chip .e-overflow .e-chips-close::before {
|
|
1004
|
+
font-size: 16px;
|
|
1005
|
+
height: 16px;
|
|
1006
|
+
width: 16px;
|
|
1007
|
+
}
|
|
1008
|
+
.e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-text .e-ddt-icon, .e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-text:not(.e-show-dd-icon) .e-clear-icon, .e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-chip .e-ddt-icon, .e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-chip:not(.e-show-dd-icon) .e-clear-icon,
|
|
1009
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-text .e-ddt-icon,
|
|
1010
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-text:not(.e-show-dd-icon) .e-clear-icon,
|
|
1011
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-chip .e-ddt-icon,
|
|
1012
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input).e-show-dd-icon.e-show-chip:not(.e-show-dd-icon) .e-clear-icon {
|
|
1013
|
+
bottom: 16px;
|
|
1014
|
+
right: 12px;
|
|
1015
|
+
}
|
|
1016
|
+
.e-bigger .e-ddt.e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-clear-icon,
|
|
1017
|
+
.e-ddt.e-bigger.e-filled.e-input-group.e-control-wrapper:not(.e-float-input) .e-clear-icon {
|
|
1018
|
+
bottom: 15px;
|
|
1019
|
+
right: 44px;
|
|
1020
|
+
}
|
|
778
1021
|
.e-bigger .e-ddt.e-show-dd-icon .e-chips-wrapper .e-chips:last-child,
|
|
779
1022
|
.e-ddt.e-bigger.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
|
|
780
1023
|
max-width: calc(100% - 37px);
|