@syncfusion/ej2-dropdowns 23.2.7-52849 → 24.1.41-566987

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 (127) hide show
  1. package/CHANGELOG.md +20 -132
  2. package/dist/ej2-dropdowns.umd.min.js +1 -1
  3. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-dropdowns.es2015.js +654 -116
  5. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es5.js +658 -119
  7. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  8. package/package.json +13 -13
  9. package/src/auto-complete/auto-complete.js +9 -4
  10. package/src/combo-box/combo-box.js +74 -2
  11. package/src/common/incremental-search.d.ts +1 -1
  12. package/src/common/incremental-search.js +50 -7
  13. package/src/common/interface.d.ts +2 -0
  14. package/src/common/virtual-scroll.js +22 -1
  15. package/src/drop-down-base/drop-down-base.d.ts +23 -3
  16. package/src/drop-down-base/drop-down-base.js +154 -40
  17. package/src/drop-down-list/drop-down-list.d.ts +10 -3
  18. package/src/drop-down-list/drop-down-list.js +305 -41
  19. package/src/drop-down-tree/drop-down-tree.js +24 -20
  20. package/src/list-box/list-box.js +8 -1
  21. package/src/mention/mention.js +5 -1
  22. package/src/multi-select/checkbox-selection.js +4 -1
  23. package/src/multi-select/multi-select.js +4 -2
  24. package/styles/auto-complete/_bds-definition.scss +2 -0
  25. package/styles/bootstrap-dark.css +16 -9
  26. package/styles/bootstrap.css +16 -9
  27. package/styles/bootstrap4.css +11 -9
  28. package/styles/bootstrap5-dark.css +11 -9
  29. package/styles/bootstrap5.css +11 -9
  30. package/styles/combo-box/_bds-definition.scss +2 -0
  31. package/styles/drop-down-base/_bds-definition.scss +134 -0
  32. package/styles/drop-down-base/_layout.scss +0 -8
  33. package/styles/drop-down-base/bootstrap-dark.css +0 -8
  34. package/styles/drop-down-base/bootstrap.css +0 -8
  35. package/styles/drop-down-base/bootstrap4.css +0 -8
  36. package/styles/drop-down-base/bootstrap5-dark.css +0 -8
  37. package/styles/drop-down-base/bootstrap5.css +0 -8
  38. package/styles/drop-down-base/fabric-dark.css +0 -8
  39. package/styles/drop-down-base/fabric.css +0 -8
  40. package/styles/drop-down-base/fluent-dark.css +0 -8
  41. package/styles/drop-down-base/fluent.css +0 -8
  42. package/styles/drop-down-base/highcontrast-light.css +0 -8
  43. package/styles/drop-down-base/highcontrast.css +0 -8
  44. package/styles/drop-down-base/material-dark.css +0 -8
  45. package/styles/drop-down-base/material.css +0 -8
  46. package/styles/drop-down-base/material3-dark.css +0 -8
  47. package/styles/drop-down-base/material3.css +0 -8
  48. package/styles/drop-down-base/tailwind-dark.css +0 -8
  49. package/styles/drop-down-base/tailwind.css +0 -8
  50. package/styles/drop-down-list/_bds-definition.scss +134 -0
  51. package/styles/drop-down-list/_layout.scss +5 -0
  52. package/styles/drop-down-list/bootstrap-dark.css +5 -0
  53. package/styles/drop-down-list/bootstrap.css +5 -0
  54. package/styles/drop-down-list/bootstrap4.css +5 -0
  55. package/styles/drop-down-list/bootstrap5-dark.css +5 -0
  56. package/styles/drop-down-list/bootstrap5.css +5 -0
  57. package/styles/drop-down-list/fabric-dark.css +5 -0
  58. package/styles/drop-down-list/fabric.css +5 -0
  59. package/styles/drop-down-list/fluent-dark.css +5 -0
  60. package/styles/drop-down-list/fluent.css +5 -0
  61. package/styles/drop-down-list/highcontrast-light.css +5 -0
  62. package/styles/drop-down-list/highcontrast.css +5 -0
  63. package/styles/drop-down-list/icons/_bds.scss +14 -0
  64. package/styles/drop-down-list/material-dark.css +5 -0
  65. package/styles/drop-down-list/material.css +5 -0
  66. package/styles/drop-down-list/material3-dark.css +5 -0
  67. package/styles/drop-down-list/material3.css +5 -0
  68. package/styles/drop-down-list/tailwind-dark.css +5 -0
  69. package/styles/drop-down-list/tailwind.css +5 -0
  70. package/styles/drop-down-tree/_bds-definition.scss +61 -0
  71. package/styles/drop-down-tree/_layout.scss +5 -0
  72. package/styles/drop-down-tree/bootstrap-dark.css +4 -0
  73. package/styles/drop-down-tree/bootstrap.css +4 -0
  74. package/styles/drop-down-tree/bootstrap4.css +4 -0
  75. package/styles/drop-down-tree/bootstrap5-dark.css +4 -0
  76. package/styles/drop-down-tree/bootstrap5.css +4 -0
  77. package/styles/drop-down-tree/fabric-dark.css +4 -0
  78. package/styles/drop-down-tree/fabric.css +4 -0
  79. package/styles/drop-down-tree/fluent-dark.css +4 -0
  80. package/styles/drop-down-tree/fluent.css +4 -0
  81. package/styles/drop-down-tree/highcontrast-light.css +4 -0
  82. package/styles/drop-down-tree/highcontrast.css +4 -0
  83. package/styles/drop-down-tree/icons/_bds.scss +11 -0
  84. package/styles/drop-down-tree/material-dark.css +4 -0
  85. package/styles/drop-down-tree/material.css +4 -0
  86. package/styles/drop-down-tree/material3-dark.css +4 -0
  87. package/styles/drop-down-tree/material3.css +4 -0
  88. package/styles/drop-down-tree/tailwind-dark.css +4 -0
  89. package/styles/drop-down-tree/tailwind.css +4 -0
  90. package/styles/fabric-dark.css +12 -9
  91. package/styles/fabric.css +12 -9
  92. package/styles/fluent-dark.css +16 -9
  93. package/styles/fluent.css +16 -9
  94. package/styles/highcontrast-light.css +12 -9
  95. package/styles/highcontrast.css +12 -9
  96. package/styles/list-box/_bds-definition.scss +136 -0
  97. package/styles/list-box/icons/_bds.scss +25 -0
  98. package/styles/material-dark.css +11 -9
  99. package/styles/material.css +11 -9
  100. package/styles/material3-dark.css +11 -9
  101. package/styles/material3.css +11 -9
  102. package/styles/mention/_bds-definition.scss +1 -0
  103. package/styles/multi-select/_bds-definition.scss +235 -0
  104. package/styles/multi-select/_bootstrap-dark-definition.scss +4 -0
  105. package/styles/multi-select/_bootstrap-definition.scss +4 -0
  106. package/styles/multi-select/_fluent-definition.scss +5 -0
  107. package/styles/multi-select/_layout.scss +8 -1
  108. package/styles/multi-select/bootstrap-dark.css +7 -1
  109. package/styles/multi-select/bootstrap.css +7 -1
  110. package/styles/multi-select/bootstrap4.css +2 -1
  111. package/styles/multi-select/bootstrap5-dark.css +2 -1
  112. package/styles/multi-select/bootstrap5.css +2 -1
  113. package/styles/multi-select/fabric-dark.css +3 -1
  114. package/styles/multi-select/fabric.css +3 -1
  115. package/styles/multi-select/fluent-dark.css +7 -1
  116. package/styles/multi-select/fluent.css +7 -1
  117. package/styles/multi-select/highcontrast-light.css +3 -1
  118. package/styles/multi-select/highcontrast.css +3 -1
  119. package/styles/multi-select/icons/_bds.scss +26 -0
  120. package/styles/multi-select/material-dark.css +2 -1
  121. package/styles/multi-select/material.css +2 -1
  122. package/styles/multi-select/material3-dark.css +2 -1
  123. package/styles/multi-select/material3.css +2 -1
  124. package/styles/multi-select/tailwind-dark.css +2 -1
  125. package/styles/multi-select/tailwind.css +2 -1
  126. package/styles/tailwind-dark.css +11 -9
  127. package/styles/tailwind.css +11 -9
@@ -253,14 +253,17 @@ var DropDownTree = /** @class */ (function (_super) {
253
253
  DropDownTree.prototype.render = function () {
254
254
  var isTree = select('#' + this.element.id + '_tree', document);
255
255
  if (isTree) {
256
- var popupDiv = select('#' + this.element.id + '_popup', document);
256
+ var popupDiv = select('#' + this.element.id + '_options', document);
257
257
  detach(popupDiv ? popupDiv : isTree.parentElement);
258
258
  }
259
259
  this.ensureAutoCheck();
260
260
  if (this.element.tagName === 'INPUT') {
261
261
  this.inputEle = this.element;
262
262
  if (isNOU(this.inputEle.getAttribute('role'))) {
263
- this.inputEle.setAttribute('role', 'textbox');
263
+ this.inputEle.setAttribute('aria-expanded', 'false');
264
+ this.inputEle.setAttribute('role', 'combobox');
265
+ this.inputEle.setAttribute('aria-haspopup', 'tree');
266
+ this.inputEle.setAttribute('aria-controls', this.element.id + "_options");
264
267
  }
265
268
  if (isNOU(this.inputEle.getAttribute('type'))) {
266
269
  this.inputEle.setAttribute('type', 'text');
@@ -428,8 +431,12 @@ var DropDownTree = /** @class */ (function (_super) {
428
431
  }
429
432
  _this.treeObj.fields = _this.getTreeFields(fields);
430
433
  _this.treeObj.dataBind();
431
- if (_this.hasTemplate && _this.portals) {
432
- _this.portals = [].concat(_this.treeObj.portals);
434
+ if (_this.hasTemplate && _this.portals && _this.treeObj.portals) {
435
+ for (var i = 0; i < _this.treeObj.portals.length; i++) {
436
+ if (_this.portals.indexOf(_this.treeObj.portals[i]) == -1) {
437
+ _this.portals.push(_this.treeObj.portals[i]);
438
+ }
439
+ }
433
440
  if (_this.isReact) {
434
441
  _this.renderReactTemplates();
435
442
  }
@@ -889,16 +896,7 @@ var DropDownTree = /** @class */ (function (_super) {
889
896
  }
890
897
  };
891
898
  DropDownTree.prototype.getAriaAttributes = function () {
892
- var disable = this.enabled ? 'false' : 'true';
893
- return {
894
- 'aria-disabled': disable,
895
- 'aria-owns': this.element.id + '_options',
896
- 'role': 'listbox',
897
- 'aria-haspopup': 'true',
898
- 'aria-expanded': 'false',
899
- 'aria-activedescendant': 'null',
900
- 'aria-labelledby': this.hiddenElement.id
901
- };
899
+ return {};
902
900
  };
903
901
  DropDownTree.prototype.updateOverFlowView = function () {
904
902
  this.overFlowWrapper.classList.remove(TOTAL_COUNT_WRAPPER);
@@ -1249,7 +1247,7 @@ var DropDownTree = /** @class */ (function (_super) {
1249
1247
  }
1250
1248
  }
1251
1249
  else {
1252
- this.inputWrapper.setAttribute(htmlAttr, this.htmlAttributes["" + htmlAttr]);
1250
+ this.inputEle.setAttribute(htmlAttr, this.htmlAttributes["" + htmlAttr]);
1253
1251
  }
1254
1252
  }
1255
1253
  }
@@ -1503,8 +1501,10 @@ var DropDownTree = /** @class */ (function (_super) {
1503
1501
  addClass([_this.inputWrapper], [ICONANIMATION]);
1504
1502
  if (_this.isFirstRender) {
1505
1503
  _this.popupEle = _this.createElement('div', {
1506
- id: _this.element.id + '_popup', className: POPUP_CLASS + ' ' + (_this.cssClass != null ? _this.cssClass : '')
1504
+ id: _this.element.id + '_options', className: POPUP_CLASS + ' ' + (_this.cssClass != null ? _this.cssClass : '')
1507
1505
  });
1506
+ _this.popupEle.setAttribute('role', 'region');
1507
+ _this.popupEle.setAttribute('aria-label', _this.element.id);
1508
1508
  document.body.appendChild(_this.popupEle);
1509
1509
  _this.createPopup(_this.popupEle);
1510
1510
  }
@@ -1540,7 +1540,7 @@ var DropDownTree = /** @class */ (function (_super) {
1540
1540
  }
1541
1541
  }
1542
1542
  if (!isCancelled) {
1543
- attributes(_this.inputWrapper, { 'aria-expanded': 'true' });
1543
+ attributes(_this.inputEle, { 'aria-expanded': 'true' });
1544
1544
  _this.popupObj.show(null, (_this.zIndex === 1000) ? _this.inputEle : null);
1545
1545
  removeClass([_this.popupEle], DDTHIDEICON);
1546
1546
  _this.updatePopupHeight();
@@ -1992,8 +1992,12 @@ var DropDownTree = /** @class */ (function (_super) {
1992
1992
  }
1993
1993
  };
1994
1994
  DropDownTree.prototype.onNodeExpanded = function (args) {
1995
- if (this.hasTemplate && this.portals) {
1996
- this.portals = [].concat(this.treeObj.portals);
1995
+ if (this.hasTemplate && this.portals && this.treeObj.portals) {
1996
+ for (var i = 0; i < this.treeObj.portals.length; i++) {
1997
+ if (this.portals.indexOf(this.treeObj.portals[i]) == -1) {
1998
+ this.portals.push(this.treeObj.portals[i]);
1999
+ }
2000
+ }
1997
2001
  /* eslint-enable */
1998
2002
  this.renderReactTemplates();
1999
2003
  }
@@ -3027,7 +3031,7 @@ var DropDownTree = /** @class */ (function (_super) {
3027
3031
  if (this.popupEle) {
3028
3032
  addClass([this.popupEle], DDTHIDEICON);
3029
3033
  }
3030
- attributes(this.inputWrapper, { 'aria-expanded': 'false' });
3034
+ attributes(this.inputEle, { 'aria-expanded': 'false' });
3031
3035
  if (this.popupObj && this.isPopupOpen) {
3032
3036
  this.popupObj.hide();
3033
3037
  if (this.inputFocus) {
@@ -137,6 +137,12 @@ var ListBox = /** @class */ (function (_super) {
137
137
  var hiddenSelect = this.createElement('select', { className: 'e-hidden-select', attrs: { 'multiple': '' } });
138
138
  hiddenSelect.style.visibility = 'hidden';
139
139
  this.list.classList.add('e-listbox-wrapper');
140
+ this.list.querySelector('.e-list-parent').setAttribute('role', 'presentation');
141
+ var groupHdrs = this.list.querySelectorAll('.e-list-group-item');
142
+ for (var i = 0; i < groupHdrs.length; i++) {
143
+ groupHdrs[i].removeAttribute('tabindex');
144
+ groupHdrs[i].setAttribute('role', 'option');
145
+ }
140
146
  if (this.itemTemplate) {
141
147
  this.list.classList.add('e-list-template');
142
148
  }
@@ -1201,7 +1207,8 @@ var ListBox = /** @class */ (function (_super) {
1201
1207
  'autocomplete': 'off',
1202
1208
  'autocorrect': 'off',
1203
1209
  'autocapitalize': 'off',
1204
- 'spellcheck': 'false'
1210
+ 'spellcheck': 'false',
1211
+ 'role': 'textbox'
1205
1212
  });
1206
1213
  if (this.height.toString().indexOf('%') < 0) {
1207
1214
  addClass([this.list], 'e-filter-list');
@@ -149,6 +149,7 @@ var Mention = /** @class */ (function (_super) {
149
149
  }
150
150
  }
151
151
  this.inputElement.setAttribute('role', 'textbox');
152
+ this.inputElement.setAttribute('aria-label', 'mention');
152
153
  this.queryString = this.elementValue();
153
154
  this.wireEvent();
154
155
  };
@@ -459,7 +460,10 @@ var Mention = /** @class */ (function (_super) {
459
460
  var value = this.getFormattedValue(focusItem.getAttribute('data-value'));
460
461
  this.selectEventCallback(focusItem, this.getDataByValue(value), value, true);
461
462
  }
462
- if (this.beforePopupOpen) {
463
+ if (this.beforePopupOpen && this.isPopupOpen) {
464
+ if (this.initRemoteRender && !isNullOrUndefined(this.popupObj.element)) {
465
+ this.popupObj.element.remove();
466
+ }
463
467
  this.renderPopup();
464
468
  }
465
469
  }
@@ -282,7 +282,10 @@ var CheckBoxSelection = /** @class */ (function () {
282
282
  'role': 'combobox',
283
283
  'autocomplete': 'off',
284
284
  'autocapitalize': 'off',
285
- 'spellcheck': 'false'
285
+ 'spellcheck': 'false',
286
+ 'aria-label': 'multiselect',
287
+ 'aria-expanded': 'true',
288
+ 'aria-controls': args.popupElement.id
286
289
  });
287
290
  this.clearIconElement = this.filterInput.parentElement.querySelector('.' + clearIcon);
288
291
  if (!Browser.isDevice && this.clearIconElement) {
@@ -259,7 +259,7 @@ var MultiSelect = /** @class */ (function (_super) {
259
259
  if (_this.popupObj) {
260
260
  _this.popupObj.show(eventArgs.animation, (_this.zIndex === 1000) ? _this.element : null);
261
261
  }
262
- attributes(_this.inputElement, { 'aria-expanded': 'true', 'aria-owns': _this.inputElement.id + '_options' });
262
+ attributes(_this.inputElement, { 'aria-expanded': 'true', 'aria-owns': _this.element.id + '_popup', 'aria-controls': _this.element.id });
263
263
  _this.updateAriaActiveDescendant();
264
264
  if (_this.isFirstClick) {
265
265
  _this.loadTemplate();
@@ -340,7 +340,7 @@ var MultiSelect = /** @class */ (function (_super) {
340
340
  };
341
341
  MultiSelect.prototype.updateListARIA = function () {
342
342
  if (!isNullOrUndefined(this.ulElement)) {
343
- attributes(this.ulElement, { 'id': this.element.id + '_options', 'role': 'listbox', 'aria-hidden': 'false' });
343
+ attributes(this.ulElement, { 'id': this.element.id + '_options', 'role': 'listbox', 'aria-hidden': 'false', 'aria-label': 'list' });
344
344
  }
345
345
  var disableStatus = !isNullOrUndefined(this.inputElement) && (this.inputElement.disabled) ? true : false;
346
346
  if (!this.isPopupOpen() && !isNullOrUndefined(this.inputElement)) {
@@ -3937,6 +3937,8 @@ var MultiSelect = /** @class */ (function (_super) {
3937
3937
  this.setWidth(this.width);
3938
3938
  this.overAllWrapper.appendChild(this.componentWrapper);
3939
3939
  this.popupWrapper = this.createElement('div', { id: this.element.id + '_popup', className: POPUP_WRAPPER });
3940
+ this.popupWrapper.setAttribute('aria-label', this.element.id);
3941
+ this.popupWrapper.setAttribute('role', 'dialog');
3940
3942
  if (this.mode === 'Delimiter' || this.mode === 'CheckBox') {
3941
3943
  this.delimiterWrapper = this.createElement('span', { className: DELIMITER_WRAPPER, styles: 'display:none' });
3942
3944
  this.componentWrapper.appendChild(this.delimiterWrapper);
@@ -0,0 +1,2 @@
1
+ //default
2
+ //enddefault
@@ -68,9 +68,6 @@
68
68
  position: absolute;
69
69
  top: 0;
70
70
  }
71
- .e-rtl .e-dropdownbase .e-fixed-head {
72
- left: 33px;
73
- }
74
71
 
75
72
  .e-dropdownbase.e-content {
76
73
  overflow: auto;
@@ -110,11 +107,6 @@
110
107
  cursor: default;
111
108
  }
112
109
 
113
- .e-mention .e-mention-chip::selection {
114
- color: #fff;
115
- background: #0070f0;
116
- }
117
-
118
110
  .e-mention.e-editable-element {
119
111
  border: 2px solid #414141;
120
112
  height: auto;
@@ -539,6 +531,11 @@
539
531
  padding: 4px 0;
540
532
  }
541
533
 
534
+ .e-popup.e-wide-popup.e-ddl-device.e-popup-close {
535
+ display: block;
536
+ visibility: hidden;
537
+ }
538
+
542
539
  .e-popup-full-page {
543
540
  bottom: 0;
544
541
  left: 0;
@@ -836,6 +833,10 @@ ejs-dropdownlist {
836
833
  padding-left: 0;
837
834
  padding-right: 0;
838
835
  }
836
+ .e-ddt.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
837
+ display: -ms-flexbox;
838
+ display: flex;
839
+ }
839
840
  .e-ddt .e-chips-wrapper {
840
841
  width: 100%;
841
842
  }
@@ -1223,6 +1224,10 @@ ejs-dropdownlist {
1223
1224
  color: #fff;
1224
1225
  }
1225
1226
 
1227
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1228
+ margin-top: -3.2em;
1229
+ }
1230
+
1226
1231
  .e-multiselect.e-input-group .e-ddl-icon::before {
1227
1232
  content: "\e969";
1228
1233
  font-family: "e-icons";
@@ -1523,8 +1528,10 @@ ejs-dropdownlist {
1523
1528
  margin-top: -4em;
1524
1529
  }
1525
1530
 
1526
- .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1531
+ .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon,
1532
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1527
1533
  margin-top: -4em;
1534
+ margin-top: -3.7em;
1528
1535
  }
1529
1536
 
1530
1537
  .e-multi-select-wrapper input[type=text] {
@@ -68,9 +68,6 @@
68
68
  position: absolute;
69
69
  top: 0;
70
70
  }
71
- .e-rtl .e-dropdownbase .e-fixed-head {
72
- left: 33px;
73
- }
74
71
 
75
72
  .e-dropdownbase.e-content {
76
73
  overflow: auto;
@@ -110,11 +107,6 @@
110
107
  cursor: default;
111
108
  }
112
109
 
113
- .e-mention .e-mention-chip::selection {
114
- color: #fff;
115
- background: #317ab9;
116
- }
117
-
118
110
  .e-mention.e-editable-element {
119
111
  border: 2px solid rgba(119, 119, 119, 0.25);
120
112
  height: auto;
@@ -539,6 +531,11 @@
539
531
  padding: 4px 0;
540
532
  }
541
533
 
534
+ .e-popup.e-wide-popup.e-ddl-device.e-popup-close {
535
+ display: block;
536
+ visibility: hidden;
537
+ }
538
+
542
539
  .e-popup-full-page {
543
540
  bottom: 0;
544
541
  left: 0;
@@ -837,6 +834,10 @@ ejs-dropdownlist {
837
834
  padding-left: 0;
838
835
  padding-right: 0;
839
836
  }
837
+ .e-ddt.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
838
+ display: -ms-flexbox;
839
+ display: flex;
840
+ }
840
841
  .e-ddt .e-chips-wrapper {
841
842
  width: 100%;
842
843
  }
@@ -1217,6 +1218,10 @@ ejs-dropdownlist {
1217
1218
  width: 40px;
1218
1219
  }
1219
1220
 
1221
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1222
+ margin-top: -3.2em;
1223
+ }
1224
+
1220
1225
  .e-multiselect.e-input-group .e-ddl-icon::before {
1221
1226
  content: "\e969";
1222
1227
  font-family: "e-icons";
@@ -1517,8 +1522,10 @@ ejs-dropdownlist {
1517
1522
  margin-top: -4em;
1518
1523
  }
1519
1524
 
1520
- .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1525
+ .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon,
1526
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1521
1527
  margin-top: -4em;
1528
+ margin-top: -3.7em;
1522
1529
  }
1523
1530
 
1524
1531
  .e-multi-select-wrapper input[type=text] {
@@ -78,9 +78,6 @@
78
78
  position: absolute;
79
79
  top: 0;
80
80
  }
81
- .e-rtl .e-dropdownbase .e-fixed-head {
82
- left: 33px;
83
- }
84
81
 
85
82
  .e-dropdownbase.e-content {
86
83
  overflow: auto;
@@ -120,11 +117,6 @@
120
117
  cursor: default;
121
118
  }
122
119
 
123
- .e-mention .e-mention-chip::selection {
124
- color: #fff;
125
- background: #007bff;
126
- }
127
-
128
120
  .e-mention.e-editable-element {
129
121
  border: 2px solid rgba(0, 0, 0, 0.15);
130
122
  height: auto;
@@ -586,6 +578,11 @@
586
578
  .e-bigger.e-ddl.e-popup .e-list-group-item {
587
579
  font-size: 16px;
588
580
  }
581
+ .e-popup.e-wide-popup.e-ddl-device.e-popup-close {
582
+ display: block;
583
+ visibility: hidden;
584
+ }
585
+
589
586
  .e-popup-full-page {
590
587
  bottom: 0;
591
588
  left: 0;
@@ -880,6 +877,10 @@ ejs-dropdownlist {
880
877
  padding-left: 0;
881
878
  padding-right: 0;
882
879
  }
880
+ .e-ddt.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
881
+ display: -ms-flexbox;
882
+ display: flex;
883
+ }
883
884
  .e-ddt .e-chips-wrapper {
884
885
  width: 100%;
885
886
  }
@@ -1682,7 +1683,8 @@ ejs-dropdownlist {
1682
1683
  margin-top: -3.5em;
1683
1684
  }
1684
1685
 
1685
- .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1686
+ .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon,
1687
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1686
1688
  margin-top: -3.5em;
1687
1689
  }
1688
1690
 
@@ -94,9 +94,6 @@
94
94
  position: absolute;
95
95
  top: 0;
96
96
  }
97
- .e-rtl .e-dropdownbase .e-fixed-head {
98
- left: 33px;
99
- }
100
97
 
101
98
  .e-dropdownbase.e-content {
102
99
  overflow: auto;
@@ -136,11 +133,6 @@
136
133
  cursor: default;
137
134
  }
138
135
 
139
- .e-mention .e-mention-chip::selection {
140
- color: #fff;
141
- background: #0d6efd;
142
- }
143
-
144
136
  .e-mention.e-editable-element {
145
137
  border: 2px solid #444c54;
146
138
  height: auto;
@@ -605,6 +597,11 @@
605
597
  .e-bigger.e-ddl.e-popup .e-list-group-item {
606
598
  font-size: 16px;
607
599
  }
600
+ .e-popup.e-wide-popup.e-ddl-device.e-popup-close {
601
+ display: block;
602
+ visibility: hidden;
603
+ }
604
+
608
605
  .e-popup-full-page {
609
606
  bottom: 0;
610
607
  left: 0;
@@ -900,6 +897,10 @@ ejs-dropdownlist {
900
897
  padding-left: 0;
901
898
  padding-right: 0;
902
899
  }
900
+ .e-ddt.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
901
+ display: -ms-flexbox;
902
+ display: flex;
903
+ }
903
904
  .e-ddt .e-chips-wrapper {
904
905
  width: 100%;
905
906
  }
@@ -1666,7 +1667,8 @@ ejs-dropdownlist {
1666
1667
  margin-top: -2.25em;
1667
1668
  }
1668
1669
 
1669
- .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1670
+ .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon,
1671
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1670
1672
  margin-top: -2.25em;
1671
1673
  margin-top: -2.15em;
1672
1674
  }
@@ -94,9 +94,6 @@
94
94
  position: absolute;
95
95
  top: 0;
96
96
  }
97
- .e-rtl .e-dropdownbase .e-fixed-head {
98
- left: 33px;
99
- }
100
97
 
101
98
  .e-dropdownbase.e-content {
102
99
  overflow: auto;
@@ -136,11 +133,6 @@
136
133
  cursor: default;
137
134
  }
138
135
 
139
- .e-mention .e-mention-chip::selection {
140
- color: #fff;
141
- background: #0d6efd;
142
- }
143
-
144
136
  .e-mention.e-editable-element {
145
137
  border: 2px solid #dee2e6;
146
138
  height: auto;
@@ -605,6 +597,11 @@
605
597
  .e-bigger.e-ddl.e-popup .e-list-group-item {
606
598
  font-size: 16px;
607
599
  }
600
+ .e-popup.e-wide-popup.e-ddl-device.e-popup-close {
601
+ display: block;
602
+ visibility: hidden;
603
+ }
604
+
608
605
  .e-popup-full-page {
609
606
  bottom: 0;
610
607
  left: 0;
@@ -900,6 +897,10 @@ ejs-dropdownlist {
900
897
  padding-left: 0;
901
898
  padding-right: 0;
902
899
  }
900
+ .e-ddt.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon, .e-ddt.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
901
+ display: -ms-flexbox;
902
+ display: flex;
903
+ }
903
904
  .e-ddt .e-chips-wrapper {
904
905
  width: 100%;
905
906
  }
@@ -1666,7 +1667,8 @@ ejs-dropdownlist {
1666
1667
  margin-top: -2.25em;
1667
1668
  }
1668
1669
 
1669
- .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1670
+ .e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon,
1671
+ .e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
1670
1672
  margin-top: -2.25em;
1671
1673
  margin-top: -2.15em;
1672
1674
  }
@@ -0,0 +1,2 @@
1
+ //default
2
+ //enddefault
@@ -0,0 +1,134 @@
1
+ $ddl-list-line-height: 32px !default;
2
+ $ddl-header-font-weight: $font-weight-medium !default;
3
+ $ddl-last-child-bottom-border: 0 !default;
4
+ $ddl-default-font-family: $font-family !default;
5
+ $ddl-line-height: 40px !default;
6
+ $ddl-list-border-size: 0 !default;
7
+ $ddl-list-bottom-border: $ddl-list-border-size !default;
8
+
9
+ $ddl-list-font-size: $text-sm !default;
10
+ $ddl-list-font-family: $font-family !default;
11
+ $ddl-list-focus-border: 1px solid $border-focus !default;
12
+ $ddl-group-list-padding-left: 12px !default;
13
+ $ddl-group-list-small-padding-left: 8px !default;
14
+ $ddl-group-list-bigger-padding-left: 16px !default;
15
+ $ddl-group-list-bigger-small-padding-left: 14px !default;
16
+ $ddl-list-header-padding-left: 12px !default;
17
+ $ddl-list-header-small-padding-left: 8px !default;
18
+ $ddl-list-header-bigger-small-padding-left: 14px !default;
19
+ $ddl-list-header-bigger-padding-left: 16px !default;
20
+ $ddl-list-text-indent: 12px !default;
21
+ $ddl-bigger-text-indent: 16px !default;
22
+ $ddl-list-rtl-padding-right: 0 !default;
23
+ $ddl-list-padding-right: 16px !default;
24
+ $ddl-list-rtl-padding-left: 16px !default;
25
+ $ddl-multi-column-border-width: 0 0 1px 0 !default;
26
+ $ddl-bigger-list-header-font-size: $text-sm !default;
27
+ $ddl-group-list-font-size: $text-sm !default;
28
+ $ddl-list-header-font-size: $text-xs !default;
29
+ $ddl-small-list-nodata-font-size: $text-xs !default;
30
+ $ddl-bigger-list-nodata-font-size: $text-base !default;
31
+ $ddl-bigger-small-list-nodata-font-size: $text-sm !default;
32
+
33
+ // Small Size
34
+
35
+ $ddl-small-icon-font-size: $font-icon-14 !default;
36
+ $ddl-small-line-height: 28px !default;
37
+ $ddl-small-list-text-indent: 8px !default;
38
+ $ddl-small-list-header-font-size: $text-xxs !default;
39
+
40
+ // Touch Small
41
+
42
+ $ddl-bigger-small-icon-font-size: $font-icon-18 !default;
43
+ $ddl-bigger-small-line-height: 36px !default;
44
+ $ddl-bigger-small-list-text-indent: 14px !default;
45
+ $ddl-bigger-small-list-header-font-size: $text-xs !default;
46
+
47
+ $ddl-list-border-color: $border-light !default;
48
+ $ddl-list-gradient-color: $border-light !default;
49
+ $mention-gradient-color: $white !default;
50
+ $mention-list-box-shadow-color: rgba(0, 0, 0, .21) !default;
51
+ $mention-chip-bg-color: $content-bg-color-alt2 !default;
52
+ $mention-chip-border-radius: 2px !default;
53
+ $mention-chip-border: none !default;
54
+ $ddl-list-bg-color: $flyout-bg-color !default;
55
+ $ddl-list-header-bg-color: $content-bg-color-focus !default;
56
+ $ddl-list-tap-color: transparent !default;
57
+ $ddl-list-header-border-color: $border-light !default;
58
+ $ddl-nodata-font-color: $content-text-color !default;
59
+ $ddl-list-default-font-color: $content-text-color !default;
60
+ $ddl-list-active-border-color: $content-bg-color !default;
61
+ $mention-popup-bg-color: $content-bg-color !default;
62
+ $ddl-list-active-font-color: $content-text-color-selected !default;
63
+ $mention-active-font-color: $primary !default;
64
+ $ddl-list-active-bg-color: $content-bg-color-selected !default;
65
+ $ddl-list-hover-border-color: $content-bg-color !default;
66
+ $ddl-list-hover-bg-color: $content-bg-color-hover !default;
67
+ $ddl-list-hover-font-color: $content-text-color-hover !default;
68
+ $ddl-list-header-font-color: $content-text-color-alt2 !default;
69
+ $ddl-default-header-font-color: $content-text-color !default;
70
+ $ddl-list-focus-color: $content-bg-color-focus !default;
71
+ $ddl-multi-column-border-color: $border-light !default;
72
+ $ddl-list-icon-color: $icon-color !default;
73
+
74
+ // Small Size color
75
+ $ddl-small-list-font-color: $content-text-color !default;
76
+
77
+ // Touch Small color
78
+ $ddl-bigger-small-list-font-color: $content-text-color !default;
79
+ $ddl-group-list-item-text-intent: 0 !default;
80
+
81
+ @include export-module('dropdownbase-bds') {
82
+ .e-dropdownbase .e-list-item.e-active,
83
+ .e-dropdownbase .e-list-item.e-active.e-hover {
84
+ font-weight: $font-weight-medium;
85
+ }
86
+
87
+ .e-dropdownbase .e-list-group-item,
88
+ .e-fixed-head {
89
+ font-size: $text-xs;
90
+ text-transform: uppercase;
91
+ }
92
+
93
+ .e-small .e-dropdownbase .e-list-group-item,
94
+ .e-small .e-fixed-head,
95
+ .e-small.e-dropdownbase .e-list-group-item,
96
+ .e-small.e-fixed-head {
97
+ font-size: $text-xxs;
98
+ }
99
+
100
+ .e-bigger .e-dropdownbase .e-list-group-item,
101
+ .e-bigger .e-fixed-head,
102
+ .e-bigger.e-dropdownbase .e-list-group-item,
103
+ .e-bigger.e-fixed-head {
104
+ font-size: $text-sm;
105
+ }
106
+
107
+ .e-bigger.e-small .e-dropdownbase .e-list-group-item,
108
+ .e-bigger.e-small .e-fixed-head,
109
+ .e-bigger.e-small.e-dropdownbase .e-list-group-item,
110
+ .e-bigger.e-small.e-fixed-head {
111
+ font-size: $text-xs;
112
+ }
113
+
114
+ .e-dropdownbase .e-list-item .e-list-icon {
115
+ padding: 0 8px 0 0;
116
+ }
117
+
118
+ .e-bigger .e-dropdownbase .e-list-item .e-list-icon {
119
+ padding: 0 12px 0 0;
120
+ }
121
+
122
+ .e-bigger.e-small .e-dropdownbase .e-list-item .e-list-icon {
123
+ padding: 0 8px 0 0;
124
+ }
125
+
126
+ .e-small .e-dropdownbase .e-list-item .e-list-icon {
127
+ padding: 0 4px 0 0;
128
+ }
129
+
130
+ /* stylelint-disable */
131
+ .e-dropdownbase .e-list-item {
132
+ border-radius: 6px !important;
133
+ }
134
+ }
@@ -57,9 +57,6 @@
57
57
  #{if(&, '&', '*')} .e-fixed-head {
58
58
  position: absolute;
59
59
  top: 0;
60
- .e-rtl #{if(&, '&', '*')} {
61
- left: 33px;
62
- }
63
60
  }
64
61
  }
65
62
  }
@@ -104,11 +101,6 @@
104
101
  cursor: default;
105
102
  }
106
103
 
107
- .e-mention .e-mention-chip::selection {
108
- color: $mention-gradient-color;
109
- background: $mention-active-font-color;
110
- }
111
-
112
104
  .e-mention.e-editable-element {
113
105
  border: 2px solid $ddl-list-border-color;
114
106
  height: auto;
@@ -68,9 +68,6 @@
68
68
  position: absolute;
69
69
  top: 0;
70
70
  }
71
- .e-rtl .e-dropdownbase .e-fixed-head {
72
- left: 33px;
73
- }
74
71
 
75
72
  .e-dropdownbase.e-content {
76
73
  overflow: auto;
@@ -110,11 +107,6 @@
110
107
  cursor: default;
111
108
  }
112
109
 
113
- .e-mention .e-mention-chip::selection {
114
- color: #fff;
115
- background: #0070f0;
116
- }
117
-
118
110
  .e-mention.e-editable-element {
119
111
  border: 2px solid #414141;
120
112
  height: auto;