@syncfusion/ej2-dropdowns 25.2.4 → 25.2.5

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 25.2.4
3
+ * version : 25.2.5
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. All rights reserved.
5
5
  * Use of this code is subject to the terms of our license.
6
6
  * A copy of the current license can be obtained at any time by e-mailing
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-dropdowns@*",
3
- "_id": "@syncfusion/ej2-dropdowns@25.2.3",
3
+ "_id": "@syncfusion/ej2-dropdowns@25.2.4",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-GUZEwuFK0n5cZ9Lc9RGegbO7c07e8V1zQf34J/X1jaDOx2eI3sSKTqQ1XqhU0ATtfQUpJDQPuMnjeqfZr4KI3Q==",
5
+ "_integrity": "sha512-+bOuBJ3Sj4/1+MUHLBZoq0Q4D4CtXIfWmx27xKQVV5/MXZNLrt30dZP0CqYX++WGnTSDGIE7R1oH4yisOlvGqg==",
6
6
  "_location": "/@syncfusion/ej2-dropdowns",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -34,8 +34,8 @@
34
34
  "/@syncfusion/ej2-spreadsheet",
35
35
  "/@syncfusion/ej2-vue-dropdowns"
36
36
  ],
37
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-25.2.3.tgz",
38
- "_shasum": "c881ff080957a288adf283168d0216569a49a62b",
37
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-dropdowns/-/ej2-dropdowns-25.2.4.tgz",
38
+ "_shasum": "85b44dd649937186171bfa6b897f07d569f21f7b",
39
39
  "_spec": "@syncfusion/ej2-dropdowns@*",
40
40
  "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
41
41
  "author": {
@@ -43,9 +43,9 @@
43
43
  },
44
44
  "bundleDependencies": false,
45
45
  "dependencies": {
46
- "@syncfusion/ej2-base": "~25.2.3",
46
+ "@syncfusion/ej2-base": "~25.2.5",
47
47
  "@syncfusion/ej2-data": "~25.2.3",
48
- "@syncfusion/ej2-inputs": "~25.2.3",
48
+ "@syncfusion/ej2-inputs": "~25.2.5",
49
49
  "@syncfusion/ej2-lists": "~25.2.3",
50
50
  "@syncfusion/ej2-navigations": "~25.2.4",
51
51
  "@syncfusion/ej2-notifications": "~25.2.3",
@@ -74,7 +74,7 @@
74
74
  "module": "./index.js",
75
75
  "name": "@syncfusion/ej2-dropdowns",
76
76
  "typings": "index.d.ts",
77
- "version": "25.2.4",
77
+ "version": "25.2.5",
78
78
  "sideEffects": false,
79
79
  "homepage": "https://www.syncfusion.com/javascript-ui-controls"
80
80
  }
@@ -656,7 +656,7 @@ export declare class DropDownBase extends Component<HTMLElement> implements INot
656
656
  * @param {string | number | boolean} value - Specifies given value.
657
657
  * @returns {number} Returns the index of the item.
658
658
  */
659
- protected getIndexByValueFilter(value: string | number | boolean): number;
659
+ protected getIndexByValueFilter(value: string | number | boolean, ulElement: HTMLElement): number | null;
660
660
  /**
661
661
  * To dispatch the event manually
662
662
  *
@@ -1158,10 +1158,14 @@ var DropDownBase = /** @class */ (function (_super) {
1158
1158
  }
1159
1159
  };
1160
1160
  DropDownBase.prototype.updateGroupFixedHeader = function (element, target) {
1161
- this.fixedHeaderElement.innerHTML = element.innerHTML;
1162
- this.fixedHeaderElement.style.position = 'fixed';
1163
- this.fixedHeaderElement.style.top = this.list.parentElement.offsetTop + this.list.offsetTop + 'px';
1164
- this.fixedHeaderElement.style.display = 'block';
1161
+ if (this.fixedHeaderElement) {
1162
+ if (!isNullOrUndefined(element.innerHTML)) {
1163
+ this.fixedHeaderElement.innerHTML = element.innerHTML;
1164
+ }
1165
+ this.fixedHeaderElement.style.position = 'fixed';
1166
+ this.fixedHeaderElement.style.top = (this.list.parentElement.offsetTop + this.list.offsetTop) - window.scrollY + 'px';
1167
+ this.fixedHeaderElement.style.display = 'block';
1168
+ }
1165
1169
  };
1166
1170
  DropDownBase.prototype.getValidLi = function () {
1167
1171
  if (this.isVirtualizationEnabled) {
@@ -1352,9 +1356,12 @@ var DropDownBase = /** @class */ (function (_super) {
1352
1356
  * @param {string | number | boolean} value - Specifies given value.
1353
1357
  * @returns {number} Returns the index of the item.
1354
1358
  */
1355
- DropDownBase.prototype.getIndexByValueFilter = function (value) {
1359
+ DropDownBase.prototype.getIndexByValueFilter = function (value, ulElement) {
1356
1360
  var index;
1357
- var listItems = this.renderItems(this.dataSource, this.fields).querySelectorAll('li' + ':not(.e-list-group-item)');
1361
+ if (!ulElement) {
1362
+ return null;
1363
+ }
1364
+ var listItems = ulElement.querySelectorAll('li' + ':not(.e-list-group-item)');
1358
1365
  if (listItems) {
1359
1366
  for (var i = 0; i < listItems.length; i++) {
1360
1367
  if (!isNullOrUndefined(value) && listItems[i].getAttribute('data-value') === value.toString()) {
@@ -1519,6 +1526,7 @@ var DropDownBase = /** @class */ (function (_super) {
1519
1526
  var group = this.element.querySelector('select>optgroup');
1520
1527
  if ((this.fields.groupBy || !isNullOrUndefined(group)) && !this.isGroupChecking) {
1521
1528
  EventHandler.add(this.list, 'scroll', this.setFloatingHeader, this);
1529
+ EventHandler.add(document, 'scroll', this.updateGroupFixedHeader, this);
1522
1530
  }
1523
1531
  if (this.getModuleName() === 'dropdownbase') {
1524
1532
  if (this.element.getAttribute('tabindex')) {
@@ -1772,12 +1780,15 @@ var DropDownBase = /** @class */ (function (_super) {
1772
1780
  * @returns {void}
1773
1781
  */
1774
1782
  DropDownBase.prototype.destroy = function () {
1775
- if (document.body.contains(this.list)) {
1776
- EventHandler.remove(this.list, 'scroll', this.setFloatingHeader);
1777
- if (!isNullOrUndefined(this.rippleFun)) {
1778
- this.rippleFun();
1783
+ if (document) {
1784
+ EventHandler.remove(document, 'scroll', this.updateGroupFixedHeader);
1785
+ if (document.body.contains(this.list)) {
1786
+ EventHandler.remove(this.list, 'scroll', this.setFloatingHeader);
1787
+ if (!isNullOrUndefined(this.rippleFun)) {
1788
+ this.rippleFun();
1789
+ }
1790
+ detach(this.list);
1779
1791
  }
1780
- detach(this.list);
1781
1792
  }
1782
1793
  this.liCollections = null;
1783
1794
  this.ulElement = null;
@@ -620,6 +620,7 @@ export declare class DropDownList extends DropDownBase implements IInput {
620
620
  * @returns {void}
621
621
  */
622
622
  focusOut(e?: MouseEvent | KeyboardEventArgs): void;
623
+ removeAllChildren: (element: any) => void;
623
624
  /**
624
625
  * Removes the component from the DOM and detaches all its related event handlers. Also it removes the attributes and classes.
625
626
  *
@@ -93,6 +93,12 @@ var DropDownList = /** @class */ (function (_super) {
93
93
  _this.IsScrollerAtEnd = function () {
94
94
  return this.list && this.list.scrollTop + this.list.clientHeight >= this.list.scrollHeight;
95
95
  };
96
+ _this.removeAllChildren = function (element) {
97
+ while (element.children[0]) {
98
+ this.removeAllChildren(element.children[0]);
99
+ element.removeChild(element.children[0]);
100
+ }
101
+ };
96
102
  return _this;
97
103
  }
98
104
  /**
@@ -982,7 +988,7 @@ var DropDownList = /** @class */ (function (_super) {
982
988
  }
983
989
  if (this.allowFiltering && !this.enableVirtualization && this.getModuleName() !== 'autocomplete') {
984
990
  var value_4 = this.getItemData().value;
985
- var filterIndex = this.getIndexByValueFilter(value_4);
991
+ var filterIndex = this.getIndexByValueFilter(value_4, this.actionCompleteData.ulElement);
986
992
  if (!isNullOrUndefined(filterIndex)) {
987
993
  this.activeIndex = filterIndex;
988
994
  }
@@ -1325,7 +1331,7 @@ var DropDownList = /** @class */ (function (_super) {
1325
1331
  value = 'null';
1326
1332
  }
1327
1333
  if (this.allowFiltering && !this.enableVirtualization && this.getModuleName() !== 'autocomplete') {
1328
- var filterIndex = this.getIndexByValueFilter(value);
1334
+ var filterIndex = this.getIndexByValueFilter(value, this.actionCompleteData.ulElement);
1329
1335
  if (!isNullOrUndefined(filterIndex)) {
1330
1336
  this.activeIndex = filterIndex;
1331
1337
  }
@@ -1367,7 +1373,7 @@ var DropDownList = /** @class */ (function (_super) {
1367
1373
  this.inputElement.style.display = 'block';
1368
1374
  }
1369
1375
  if (!isNullOrUndefined(dataItem.value) && !this.enableVirtualization && this.allowFiltering) {
1370
- this.activeIndex = this.getIndexByValueFilter(dataItem.value);
1376
+ this.activeIndex = this.getIndexByValueFilter(dataItem.value, this.actionCompleteData.ulElement);
1371
1377
  }
1372
1378
  var clearIcon = dropDownListClasses.clearIcon;
1373
1379
  var isFilterElement = this.isFiltering() && this.filterInput && (this.getModuleName() === 'combobox');
@@ -2836,6 +2842,14 @@ var DropDownList = /** @class */ (function (_super) {
2836
2842
  this.keyboardEvent = null;
2837
2843
  EventHandler.remove(document, 'mousedown', this.onDocumentClick);
2838
2844
  this.isActive = false;
2845
+ if (this.getModuleName() === 'dropdownlist') {
2846
+ Input.destroy({
2847
+ element: this.filterInput,
2848
+ floatLabelType: this.floatLabelType,
2849
+ properties: { placeholder: this.filterBarPlaceholder },
2850
+ buttons: this.clearIconElement,
2851
+ }, this.clearIconElement);
2852
+ }
2839
2853
  this.filterInputObj = null;
2840
2854
  this.isDropDownClick = false;
2841
2855
  this.preventAutoFill = false;
@@ -2867,6 +2881,11 @@ var DropDownList = /** @class */ (function (_super) {
2867
2881
  }
2868
2882
  if (this.allowFiltering && this.getModuleName() === 'dropdownlist') {
2869
2883
  this.filterInput.removeAttribute('aria-activedescendant');
2884
+ this.filterInput.removeAttribute('aria-disabled');
2885
+ this.filterInput.removeAttribute('role');
2886
+ this.filterInput.removeAttribute('autocomplete');
2887
+ this.filterInput.removeAttribute('autocapitalize');
2888
+ this.filterInput.removeAttribute('spellcheck');
2870
2889
  }
2871
2890
  this.filterInput = null;
2872
2891
  }
@@ -3294,8 +3313,8 @@ var DropDownList = /** @class */ (function (_super) {
3294
3313
  DropDownList.prototype.onPropertyChanged = function (newProp, oldProp) {
3295
3314
  var _this = this;
3296
3315
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
3297
- if (!isNullOrUndefined(newProp.dataSource) && !this.isTouched && (isNullOrUndefined(newProp.value) && isNullOrUndefined(newProp.index)) && !isNullOrUndefined(this.preselectedIndex)) {
3298
- newProp.index = this.preselectedIndex;
3316
+ if (!isNullOrUndefined(newProp.dataSource) && !this.isTouched && (isNullOrUndefined(newProp.value) && isNullOrUndefined(newProp.index)) && !isNullOrUndefined(this.preselectedIndex) && !isNullOrUndefined(this.index)) {
3317
+ newProp.index = this.index;
3299
3318
  }
3300
3319
  if (!isNullOrUndefined(newProp.value) || !isNullOrUndefined(newProp.index)) {
3301
3320
  this.isTouched = true;
@@ -3816,10 +3835,12 @@ var DropDownList = /** @class */ (function (_super) {
3816
3835
  this.inputWrapper.container.parentElement.insertBefore(this.element, this.inputWrapper.container);
3817
3836
  detach(this.inputWrapper.container);
3818
3837
  }
3819
- this.hiddenElement = null;
3838
+ delete this.hiddenElement;
3820
3839
  this.filterInput = null;
3821
- this.inputWrapper = null;
3822
3840
  this.keyboardModule = null;
3841
+ if (!isNullOrUndefined(this.ulElement)) {
3842
+ this.removeAllChildren(this.ulElement);
3843
+ }
3823
3844
  this.ulElement = null;
3824
3845
  this.list = null;
3825
3846
  this.clearIconElement = null;
@@ -3843,10 +3864,12 @@ var DropDownList = /** @class */ (function (_super) {
3843
3864
  Input.destroy({
3844
3865
  element: this.inputElement,
3845
3866
  floatLabelType: this.floatLabelType,
3846
- properties: this.properties
3867
+ properties: this.properties,
3868
+ buttons: this.inputWrapper.container.querySelectorAll('.e-input-group-icon')[0],
3847
3869
  }, this.clearButton);
3848
3870
  this.clearButton = null;
3849
3871
  this.inputElement = null;
3872
+ this.inputWrapper = null;
3850
3873
  _super.prototype.destroy.call(this);
3851
3874
  };
3852
3875
  /* eslint-disable valid-jsdoc, jsdoc/require-returns-description */
@@ -1972,6 +1972,8 @@ var DropDownTree = /** @class */ (function (_super) {
1972
1972
  if (this.showCheckBox) {
1973
1973
  return;
1974
1974
  }
1975
+ var eventArgs = this.getEventArgs(args);
1976
+ this.trigger('select', eventArgs);
1975
1977
  var selectedText;
1976
1978
  if (args.isInteracted) {
1977
1979
  var id = getValue('id', args.nodeData).toString();
@@ -1999,8 +2001,6 @@ var DropDownTree = /** @class */ (function (_super) {
1999
2001
  this.setMultiSelect();
2000
2002
  }
2001
2003
  }
2002
- var eventArgs = this.getEventArgs(args);
2003
- this.trigger('select', eventArgs);
2004
2004
  if (this.isValueChange && !this.changeOnBlur) {
2005
2005
  this.triggerChangeEvent(this.keyEventArgs);
2006
2006
  this.isValueChange = false;
@@ -27,6 +27,7 @@ export function createFloatLabel(overAllWrapper, searchWrapper, element, inputEl
27
27
  element.id = id;
28
28
  if (!isNullOrUndefined(element.id) && element.id !== '') {
29
29
  floatLabelElement.id = 'label_' + element.id.replace(/ /g, '_');
30
+ floatLabelElement.setAttribute('for', element.id);
30
31
  attributes(inputElement, { 'aria-labelledby': floatLabelElement.id });
31
32
  }
32
33
  if (!isNullOrUndefined(inputElement.placeholder) && inputElement.placeholder !== '') {
@@ -1477,7 +1477,7 @@ ejs-dropdownlist {
1477
1477
  }
1478
1478
 
1479
1479
  .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
1480
- content: "\e208";
1480
+ content: "\e7e7";
1481
1481
  font-size: 16px;
1482
1482
  height: 16px;
1483
1483
  margin-top: -8px;
@@ -1486,7 +1486,7 @@ ejs-dropdownlist {
1486
1486
 
1487
1487
  .e-small.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
1488
1488
  .e-small .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
1489
- content: "\e208";
1489
+ content: "\e7e7";
1490
1490
  font-size: 14px;
1491
1491
  height: 14px;
1492
1492
  margin-top: -7px;
@@ -1495,7 +1495,7 @@ ejs-dropdownlist {
1495
1495
 
1496
1496
  .e-bigger.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
1497
1497
  .e-bigger .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
1498
- content: "\e208";
1498
+ content: "\e7e7";
1499
1499
  font-size: 20px;
1500
1500
  height: 20px;
1501
1501
  left: 0;
@@ -1507,7 +1507,7 @@ ejs-dropdownlist {
1507
1507
  .e-bigger.e-small .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
1508
1508
  .e-bigger .e-small.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
1509
1509
  .e-small .e-bigger.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
1510
- content: "\e208";
1510
+ content: "\e7e7";
1511
1511
  font-size: 18px;
1512
1512
  height: 18px;
1513
1513
  left: 0;
@@ -1539,6 +1539,7 @@ ejs-dropdownlist {
1539
1539
  .e-multiselect.e-input-group.e-outline .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
1540
1540
  .e-multiselect.e-outline.e-input-group.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
1541
1541
  margin: 7px 12px 9px 0;
1542
+ min-height: fit-content;
1542
1543
  }
1543
1544
 
1544
1545
  .e-multiselect.e-input-group.e-outline.e-bigger .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
@@ -1744,7 +1745,7 @@ ejs-dropdownlist {
1744
1745
  .e-bigger.e-small .e-filled .e-multi-select-wrapper .e-chips-close.e-close-hooker::before,
1745
1746
  .e-bigger .e-small.e-filled .e-multi-select-wrapper .e-chips-close.e-close-hooker::before,
1746
1747
  .e-small .e-bigger.e-filled .e-multi-select-wrapper .e-chips-close.e-close-hooker::before {
1747
- content: "\e208";
1748
+ content: "\e7e7";
1748
1749
  font-size: 16px;
1749
1750
  height: 16px;
1750
1751
  padding: 0;
@@ -1794,6 +1795,7 @@ ejs-dropdownlist {
1794
1795
  .e-multiselect.e-input-group.e-filled .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
1795
1796
  .e-multiselect.e-filled.e-input-group.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
1796
1797
  margin: 10px 0 9px;
1798
+ min-height: fit-content;
1797
1799
  }
1798
1800
 
1799
1801
  .e-multiselect.e-filled.e-input-group.e-float-input.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
@@ -1819,6 +1821,7 @@ ejs-dropdownlist {
1819
1821
  .e-small.e-multiselect.e-input-group.e-float-input.e-filled .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
1820
1822
  .e-small .e-multiselect.e-filled.e-input-group.e-float-input.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
1821
1823
  margin: 0 12px 4px 0;
1824
+ min-width: fit-content;
1822
1825
  }
1823
1826
 
1824
1827
  .e-bigger.e-multiselect.e-input-group.e-filled.e-float-input .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
@@ -2553,7 +2556,7 @@ ejs-dropdownlist {
2553
2556
  top: 1px;
2554
2557
  }
2555
2558
 
2556
- .e-small .e-multiselect .e-input-group-icon.e-ddl-icon {
2559
+ .e-small .e-multiselect:not(.e-outline):not(.e-filled) .e-input-group-icon.e-ddl-icon {
2557
2560
  top: 6px;
2558
2561
  }
2559
2562
 
@@ -2638,7 +2641,7 @@ ejs-multiselect {
2638
2641
  margin-top: -1.7em;
2639
2642
  height: 22px;
2640
2643
  width: 22px;
2641
- line-height: 2px;
2644
+ line-height: normal;
2642
2645
  }
2643
2646
 
2644
2647
  .e-small .e-multi-select-wrapper {
@@ -1533,7 +1533,7 @@ ejs-dropdownlist {
1533
1533
  }
1534
1534
 
1535
1535
  .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
1536
- content: "\e208";
1536
+ content: "\e7e7";
1537
1537
  font-size: 16px;
1538
1538
  height: 16px;
1539
1539
  margin-top: -8px;
@@ -1542,7 +1542,7 @@ ejs-dropdownlist {
1542
1542
 
1543
1543
  .e-small.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
1544
1544
  .e-small .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
1545
- content: "\e208";
1545
+ content: "\e7e7";
1546
1546
  font-size: 14px;
1547
1547
  height: 14px;
1548
1548
  margin-top: -7px;
@@ -1551,7 +1551,7 @@ ejs-dropdownlist {
1551
1551
 
1552
1552
  .e-bigger.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
1553
1553
  .e-bigger .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
1554
- content: "\e208";
1554
+ content: "\e7e7";
1555
1555
  font-size: 20px;
1556
1556
  height: 20px;
1557
1557
  left: 0;
@@ -1563,7 +1563,7 @@ ejs-dropdownlist {
1563
1563
  .e-bigger.e-small .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
1564
1564
  .e-bigger .e-small.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
1565
1565
  .e-small .e-bigger.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
1566
- content: "\e208";
1566
+ content: "\e7e7";
1567
1567
  font-size: 18px;
1568
1568
  height: 18px;
1569
1569
  left: 0;
@@ -1595,6 +1595,7 @@ ejs-dropdownlist {
1595
1595
  .e-multiselect.e-input-group.e-outline .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
1596
1596
  .e-multiselect.e-outline.e-input-group.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
1597
1597
  margin: 7px 12px 9px 0;
1598
+ min-height: fit-content;
1598
1599
  }
1599
1600
 
1600
1601
  .e-multiselect.e-input-group.e-outline.e-bigger .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
@@ -1800,7 +1801,7 @@ ejs-dropdownlist {
1800
1801
  .e-bigger.e-small .e-filled .e-multi-select-wrapper .e-chips-close.e-close-hooker::before,
1801
1802
  .e-bigger .e-small.e-filled .e-multi-select-wrapper .e-chips-close.e-close-hooker::before,
1802
1803
  .e-small .e-bigger.e-filled .e-multi-select-wrapper .e-chips-close.e-close-hooker::before {
1803
- content: "\e208";
1804
+ content: "\e7e7";
1804
1805
  font-size: 16px;
1805
1806
  height: 16px;
1806
1807
  padding: 0;
@@ -1850,6 +1851,7 @@ ejs-dropdownlist {
1850
1851
  .e-multiselect.e-input-group.e-filled .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
1851
1852
  .e-multiselect.e-filled.e-input-group.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
1852
1853
  margin: 10px 0 9px;
1854
+ min-height: fit-content;
1853
1855
  }
1854
1856
 
1855
1857
  .e-multiselect.e-filled.e-input-group.e-float-input.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
@@ -1875,6 +1877,7 @@ ejs-dropdownlist {
1875
1877
  .e-small.e-multiselect.e-input-group.e-float-input.e-filled .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
1876
1878
  .e-small .e-multiselect.e-filled.e-input-group.e-float-input.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
1877
1879
  margin: 0 12px 4px 0;
1880
+ min-width: fit-content;
1878
1881
  }
1879
1882
 
1880
1883
  .e-bigger.e-multiselect.e-input-group.e-filled.e-float-input .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
@@ -2609,7 +2612,7 @@ ejs-dropdownlist {
2609
2612
  top: 1px;
2610
2613
  }
2611
2614
 
2612
- .e-small .e-multiselect .e-input-group-icon.e-ddl-icon {
2615
+ .e-small .e-multiselect:not(.e-outline):not(.e-filled) .e-input-group-icon.e-ddl-icon {
2613
2616
  top: 6px;
2614
2617
  }
2615
2618
 
@@ -2694,7 +2697,7 @@ ejs-multiselect {
2694
2697
  margin-top: -1.7em;
2695
2698
  height: 22px;
2696
2699
  width: 22px;
2697
- line-height: 2px;
2700
+ line-height: normal;
2698
2701
  }
2699
2702
 
2700
2703
  .e-small .e-multi-select-wrapper {
@@ -1012,7 +1012,7 @@
1012
1012
  }
1013
1013
  }
1014
1014
 
1015
- .e-small .e-multiselect .e-input-group-icon.e-ddl-icon {
1015
+ .e-small .e-multiselect:not(.e-outline):not(.e-filled) .e-input-group-icon.e-ddl-icon {
1016
1016
  @if $ddl-multiselect-skin-name == 'Material3' {
1017
1017
  top: 6px;
1018
1018
  }
@@ -1150,7 +1150,7 @@ ejs-multiselect {
1150
1150
  margin-top: $ddl-small-close-hooker-margin-top;
1151
1151
  height: $ddl-small-chip-close-hooker-height;
1152
1152
  width: $ddl-small-chip-close-hooker-width;
1153
- line-height: 2px;
1153
+ line-height: normal;
1154
1154
  }
1155
1155
  }
1156
1156
 
@@ -198,7 +198,7 @@
198
198
 
199
199
  .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
200
200
  @if $ddl-multiselect-skin-name == 'Material3' {
201
- content: '\e208';
201
+ content: '\e7e7';
202
202
  font-size: 16px;
203
203
  height: 16px;
204
204
  margin-top: -8px;
@@ -209,7 +209,7 @@
209
209
  .e-small.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
210
210
  .e-small .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
211
211
  @if $ddl-multiselect-skin-name == 'Material3' {
212
- content: '\e208';
212
+ content: '\e7e7';
213
213
  font-size: 14px;
214
214
  height: 14px;
215
215
  margin-top: -7px;
@@ -220,7 +220,7 @@
220
220
  .e-bigger.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
221
221
  .e-bigger .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
222
222
  @if $ddl-multiselect-skin-name == 'Material3' {
223
- content: '\e208';
223
+ content: '\e7e7';
224
224
  font-size: 20px;
225
225
  height: 20px;
226
226
  left: 0;
@@ -234,7 +234,7 @@
234
234
  .e-bigger .e-small.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
235
235
  .e-small .e-bigger.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
236
236
  @if $ddl-multiselect-skin-name == 'Material3' {
237
- content: '\e208';
237
+ content: '\e7e7';
238
238
  font-size: 18px;
239
239
  height: 18px;
240
240
  left: 0;
@@ -278,6 +278,7 @@
278
278
  .e-multiselect.e-outline.e-input-group.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
279
279
  @if $ddl-multiselect-skin-name == 'Material3' {
280
280
  margin: 7px 12px 9px 0;
281
+ min-height: fit-content;
281
282
  }
282
283
  }
283
284
 
@@ -511,7 +512,7 @@
511
512
  .e-bigger.e-small .e-filled .e-multi-select-wrapper .e-chips-close.e-close-hooker::before,
512
513
  .e-bigger .e-small.e-filled .e-multi-select-wrapper .e-chips-close.e-close-hooker::before,
513
514
  .e-small .e-bigger.e-filled .e-multi-select-wrapper .e-chips-close.e-close-hooker::before {
514
- content: '\e208';
515
+ content: '\e7e7';
515
516
  font-size: 16px;
516
517
  height: 16px;
517
518
  padding: 0;
@@ -569,6 +570,7 @@
569
570
  .e-multiselect.e-filled.e-input-group.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
570
571
  @if $ddl-multiselect-skin-name == 'Material3' {
571
572
  margin: 10px 0 9px;
573
+ min-height: fit-content;
572
574
  }
573
575
  }
574
576
 
@@ -602,6 +604,7 @@
602
604
  .e-small .e-multiselect.e-filled.e-input-group.e-float-input.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
603
605
  @if $ddl-multiselect-skin-name == 'Material3' {
604
606
  margin: 0 12px 4px 0;
607
+ min-width: fit-content;
605
608
  }
606
609
  }
607
610
 
@@ -268,7 +268,7 @@
268
268
  }
269
269
 
270
270
  .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
271
- content: "\e208";
271
+ content: "\e7e7";
272
272
  font-size: 16px;
273
273
  height: 16px;
274
274
  margin-top: -8px;
@@ -277,7 +277,7 @@
277
277
 
278
278
  .e-small.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
279
279
  .e-small .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
280
- content: "\e208";
280
+ content: "\e7e7";
281
281
  font-size: 14px;
282
282
  height: 14px;
283
283
  margin-top: -7px;
@@ -286,7 +286,7 @@
286
286
 
287
287
  .e-bigger.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
288
288
  .e-bigger .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
289
- content: "\e208";
289
+ content: "\e7e7";
290
290
  font-size: 20px;
291
291
  height: 20px;
292
292
  left: 0;
@@ -298,7 +298,7 @@
298
298
  .e-bigger.e-small .e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
299
299
  .e-bigger .e-small.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before,
300
300
  .e-small .e-bigger.e-multiselect.e-outline .e-multi-select-wrapper .e-close-hooker::before {
301
- content: "\e208";
301
+ content: "\e7e7";
302
302
  font-size: 18px;
303
303
  height: 18px;
304
304
  left: 0;
@@ -330,6 +330,7 @@
330
330
  .e-multiselect.e-input-group.e-outline .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
331
331
  .e-multiselect.e-outline.e-input-group.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
332
332
  margin: 7px 12px 9px 0;
333
+ min-height: fit-content;
333
334
  }
334
335
 
335
336
  .e-multiselect.e-input-group.e-outline.e-bigger .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
@@ -535,7 +536,7 @@
535
536
  .e-bigger.e-small .e-filled .e-multi-select-wrapper .e-chips-close.e-close-hooker::before,
536
537
  .e-bigger .e-small.e-filled .e-multi-select-wrapper .e-chips-close.e-close-hooker::before,
537
538
  .e-small .e-bigger.e-filled .e-multi-select-wrapper .e-chips-close.e-close-hooker::before {
538
- content: "\e208";
539
+ content: "\e7e7";
539
540
  font-size: 16px;
540
541
  height: 16px;
541
542
  padding: 0;
@@ -585,6 +586,7 @@
585
586
  .e-multiselect.e-input-group.e-filled .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
586
587
  .e-multiselect.e-filled.e-input-group.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
587
588
  margin: 10px 0 9px;
589
+ min-height: fit-content;
588
590
  }
589
591
 
590
592
  .e-multiselect.e-filled.e-input-group.e-float-input.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
@@ -610,6 +612,7 @@
610
612
  .e-small.e-multiselect.e-input-group.e-float-input.e-filled .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
611
613
  .e-small .e-multiselect.e-filled.e-input-group.e-float-input.e-control-wrapper .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon {
612
614
  margin: 0 12px 4px 0;
615
+ min-width: fit-content;
613
616
  }
614
617
 
615
618
  .e-bigger.e-multiselect.e-input-group.e-filled.e-float-input .e-multi-select-wrapper .e-input-group-icon.e-ddl-icon,
@@ -1344,7 +1347,7 @@
1344
1347
  top: 1px;
1345
1348
  }
1346
1349
 
1347
- .e-small .e-multiselect .e-input-group-icon.e-ddl-icon {
1350
+ .e-small .e-multiselect:not(.e-outline):not(.e-filled) .e-input-group-icon.e-ddl-icon {
1348
1351
  top: 6px;
1349
1352
  }
1350
1353
 
@@ -1429,7 +1432,7 @@ ejs-multiselect {
1429
1432
  margin-top: -1.7em;
1430
1433
  height: 22px;
1431
1434
  width: 22px;
1432
- line-height: 2px;
1435
+ line-height: normal;
1433
1436
  }
1434
1437
 
1435
1438
  .e-small .e-multi-select-wrapper {