@syncfusion/ej2-dropdowns 21.2.8 → 22.1.34

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 (162) hide show
  1. package/.eslintrc.json +1 -0
  2. package/CHANGELOG.md +35 -6
  3. package/README.md +201 -103
  4. package/dist/ej2-dropdowns.min.js +2 -2
  5. package/dist/ej2-dropdowns.umd.min.js +2 -2
  6. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es2015.js +158 -41
  8. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  9. package/dist/es6/ej2-dropdowns.es5.js +158 -41
  10. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  11. package/dist/global/ej2-dropdowns.min.js +2 -2
  12. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  13. package/dist/global/index.d.ts +1 -1
  14. package/package.json +11 -11
  15. package/src/auto-complete/auto-complete-model.d.ts +2 -1
  16. package/src/auto-complete/auto-complete.d.ts +2 -1
  17. package/src/auto-complete/auto-complete.js +1 -1
  18. package/src/combo-box/combo-box-model.d.ts +6 -3
  19. package/src/combo-box/combo-box.d.ts +6 -3
  20. package/src/drop-down-base/drop-down-base-model.d.ts +8 -4
  21. package/src/drop-down-base/drop-down-base.d.ts +8 -4
  22. package/src/drop-down-base/drop-down-base.js +21 -7
  23. package/src/drop-down-list/drop-down-list-model.d.ts +6 -3
  24. package/src/drop-down-list/drop-down-list.d.ts +6 -3
  25. package/src/drop-down-list/drop-down-list.js +23 -14
  26. package/src/drop-down-tree/drop-down-tree-model.d.ts +21 -6
  27. package/src/drop-down-tree/drop-down-tree.d.ts +55 -62
  28. package/src/drop-down-tree/drop-down-tree.js +1 -1
  29. package/src/list-box/list-box.d.ts +15 -0
  30. package/src/list-box/list-box.js +53 -3
  31. package/src/mention/mention-model.d.ts +4 -2
  32. package/src/mention/mention.d.ts +4 -2
  33. package/src/multi-select/multi-select-model.d.ts +15 -8
  34. package/src/multi-select/multi-select.d.ts +15 -7
  35. package/src/multi-select/multi-select.js +59 -15
  36. package/styles/auto-complete/_material3-dark-definition.scss +1 -0
  37. package/styles/auto-complete/_material3-definition.scss +2 -0
  38. package/styles/auto-complete/material3-dark.css +198 -0
  39. package/styles/auto-complete/material3-dark.scss +5 -0
  40. package/styles/auto-complete/material3.css +254 -0
  41. package/styles/auto-complete/material3.scss +5 -0
  42. package/styles/bootstrap-dark.css +212 -100
  43. package/styles/bootstrap.css +214 -101
  44. package/styles/bootstrap4.css +214 -101
  45. package/styles/bootstrap5-dark.css +212 -100
  46. package/styles/bootstrap5.css +212 -100
  47. package/styles/combo-box/_material3-dark-definition.scss +1 -0
  48. package/styles/combo-box/_material3-definition.scss +2 -0
  49. package/styles/combo-box/material3-dark.css +198 -0
  50. package/styles/combo-box/material3-dark.scss +5 -0
  51. package/styles/combo-box/material3.css +254 -0
  52. package/styles/combo-box/material3.scss +5 -0
  53. package/styles/drop-down-base/_layout.scss +3 -1
  54. package/styles/drop-down-base/_material3-dark-definition.scss +1 -0
  55. package/styles/drop-down-base/_material3-definition.scss +87 -0
  56. package/styles/drop-down-base/_theme.scss +10 -0
  57. package/styles/drop-down-base/bootstrap-dark.css +4 -0
  58. package/styles/drop-down-base/bootstrap.css +4 -0
  59. package/styles/drop-down-base/bootstrap4.css +4 -0
  60. package/styles/drop-down-base/bootstrap5-dark.css +4 -0
  61. package/styles/drop-down-base/bootstrap5.css +4 -0
  62. package/styles/drop-down-base/fabric-dark.css +4 -0
  63. package/styles/drop-down-base/fabric.css +4 -0
  64. package/styles/drop-down-base/fluent-dark.css +4 -0
  65. package/styles/drop-down-base/fluent.css +4 -0
  66. package/styles/drop-down-base/highcontrast-light.css +4 -0
  67. package/styles/drop-down-base/highcontrast.css +4 -0
  68. package/styles/drop-down-base/material-dark.css +4 -0
  69. package/styles/drop-down-base/material.css +4 -0
  70. package/styles/drop-down-base/material3-dark.css +439 -0
  71. package/styles/drop-down-base/material3-dark.scss +4 -0
  72. package/styles/drop-down-base/material3.css +495 -0
  73. package/styles/drop-down-base/material3.scss +4 -0
  74. package/styles/drop-down-base/tailwind-dark.css +4 -0
  75. package/styles/drop-down-base/tailwind.css +4 -0
  76. package/styles/drop-down-list/_layout.scss +15 -1
  77. package/styles/drop-down-list/_material3-dark-definition.scss +1 -0
  78. package/styles/drop-down-list/_material3-definition.scss +180 -0
  79. package/styles/drop-down-list/icons/_material3-dark.scss +1 -0
  80. package/styles/drop-down-list/material3-dark.css +503 -0
  81. package/styles/drop-down-list/material3-dark.scss +9 -0
  82. package/styles/drop-down-list/material3.css +559 -0
  83. package/styles/drop-down-list/material3.scss +9 -0
  84. package/styles/drop-down-tree/_layout.scss +13 -7
  85. package/styles/drop-down-tree/_material3-dark-definition.scss +1 -0
  86. package/styles/drop-down-tree/_material3-definition.scss +76 -0
  87. package/styles/drop-down-tree/_theme.scss +14 -2
  88. package/styles/drop-down-tree/icons/_material3-dark.scss +1 -0
  89. package/styles/drop-down-tree/icons/_material3.scss +1 -1
  90. package/styles/drop-down-tree/material3-dark.css +466 -0
  91. package/styles/drop-down-tree/material3-dark.scss +10 -0
  92. package/styles/drop-down-tree/material3.css +522 -0
  93. package/styles/drop-down-tree/material3.scss +10 -0
  94. package/styles/fabric-dark.css +212 -100
  95. package/styles/fabric.css +214 -101
  96. package/styles/fluent-dark.css +214 -101
  97. package/styles/fluent.css +214 -101
  98. package/styles/highcontrast-light.css +212 -100
  99. package/styles/highcontrast.css +214 -101
  100. package/styles/list-box/_layout.scss +17 -3
  101. package/styles/list-box/_material3-dark-definition.scss +1 -0
  102. package/styles/list-box/_material3-definition.scss +117 -0
  103. package/styles/list-box/_theme.scss +2 -1
  104. package/styles/list-box/bootstrap-dark.css +207 -99
  105. package/styles/list-box/bootstrap.css +209 -100
  106. package/styles/list-box/bootstrap4.css +209 -100
  107. package/styles/list-box/bootstrap5-dark.css +207 -99
  108. package/styles/list-box/bootstrap5.css +207 -99
  109. package/styles/list-box/fabric-dark.css +207 -99
  110. package/styles/list-box/fabric.css +209 -100
  111. package/styles/list-box/fluent-dark.css +209 -100
  112. package/styles/list-box/fluent.css +209 -100
  113. package/styles/list-box/highcontrast-light.css +207 -99
  114. package/styles/list-box/highcontrast.css +209 -100
  115. package/styles/list-box/icons/_material3-dark.scss +1 -0
  116. package/styles/list-box/material-dark.css +207 -99
  117. package/styles/list-box/material.css +209 -100
  118. package/styles/list-box/material3-dark.css +956 -0
  119. package/styles/list-box/material3-dark.scss +6 -0
  120. package/styles/list-box/material3.css +1012 -0
  121. package/styles/list-box/material3.scss +6 -0
  122. package/styles/list-box/tailwind-dark.css +209 -100
  123. package/styles/list-box/tailwind.css +209 -100
  124. package/styles/material-dark.css +212 -100
  125. package/styles/material.css +214 -101
  126. package/styles/material3-dark.css +4664 -0
  127. package/styles/material3-dark.scss +10 -0
  128. package/styles/material3.css +4720 -0
  129. package/styles/material3.scss +10 -0
  130. package/styles/mention/_material3-dark-definition.scss +1 -0
  131. package/styles/mention/_material3-definition.scss +1 -0
  132. package/styles/mention/material3-dark.css +87 -0
  133. package/styles/mention/material3-dark.scss +7 -0
  134. package/styles/mention/material3.css +143 -0
  135. package/styles/mention/material3.scss +7 -0
  136. package/styles/multi-select/_layout.scss +160 -7
  137. package/styles/multi-select/_material3-dark-definition.scss +1 -0
  138. package/styles/multi-select/_material3-definition.scss +246 -0
  139. package/styles/multi-select/_theme.scss +6 -0
  140. package/styles/multi-select/bootstrap-dark.css +1 -1
  141. package/styles/multi-select/bootstrap.css +1 -1
  142. package/styles/multi-select/bootstrap4.css +1 -1
  143. package/styles/multi-select/bootstrap5-dark.css +1 -1
  144. package/styles/multi-select/bootstrap5.css +1 -1
  145. package/styles/multi-select/fabric-dark.css +1 -1
  146. package/styles/multi-select/fabric.css +1 -1
  147. package/styles/multi-select/fluent-dark.css +1 -1
  148. package/styles/multi-select/fluent.css +1 -1
  149. package/styles/multi-select/highcontrast-light.css +1 -1
  150. package/styles/multi-select/highcontrast.css +1 -1
  151. package/styles/multi-select/icons/_material3-dark.scss +1 -0
  152. package/styles/multi-select/icons/_material3.scss +3 -4
  153. package/styles/multi-select/material-dark.css +1 -1
  154. package/styles/multi-select/material.css +1 -1
  155. package/styles/multi-select/material3-dark.css +2547 -0
  156. package/styles/multi-select/material3-dark.scss +10 -0
  157. package/styles/multi-select/material3.css +2603 -0
  158. package/styles/multi-select/material3.scss +10 -0
  159. package/styles/multi-select/tailwind-dark.css +1 -1
  160. package/styles/multi-select/tailwind.css +1 -1
  161. package/styles/tailwind-dark.css +214 -101
  162. package/styles/tailwind.css +214 -101
@@ -30,7 +30,7 @@ import { Animation, Browser, prepend, Complex } from '@syncfusion/ej2-base';
30
30
  import { Search } from '../common/incremental-search';
31
31
  import { append, addClass, removeClass, closest, detach, remove, select, selectAll } from '@syncfusion/ej2-base';
32
32
  import { getUniqueID, formatUnit, isNullOrUndefined, isUndefined } from '@syncfusion/ej2-base';
33
- import { DataManager, Query, Predicate } from '@syncfusion/ej2-data';
33
+ import { DataManager, Query, Predicate, JsonAdaptor } from '@syncfusion/ej2-data';
34
34
  import { createFloatLabel, removeFloating, floatLabelFocus, floatLabelBlur, encodePlaceholder } from './float-label';
35
35
  var FOCUS = 'e-input-focus';
36
36
  var DISABLED = 'e-disabled';
@@ -398,7 +398,12 @@ var MultiSelect = /** @class */ (function (_super) {
398
398
  predicate = predicate.or(field, 'equal', valuecheck[i]);
399
399
  }
400
400
  }
401
- return this.getQuery(this.query).where(predicate);
401
+ if (this.dataSource instanceof DataManager && this.dataSource.adaptor instanceof JsonAdaptor) {
402
+ return new Query().where(predicate);
403
+ }
404
+ else {
405
+ return this.getQuery(this.query).clone().where(predicate);
406
+ }
402
407
  };
403
408
  /* eslint-disable @typescript-eslint/no-unused-vars */
404
409
  MultiSelect.prototype.onActionComplete = function (ulElement, list, e, isUpdated) {
@@ -417,7 +422,7 @@ var MultiSelect = /** @class */ (function (_super) {
417
422
  }
418
423
  }
419
424
  var valuecheck = [];
420
- if (!isNullOrUndefined(this.value) && !this.allowCustomValue) {
425
+ if (!isNullOrUndefined(this.value)) {
421
426
  valuecheck = this.presentItemValue(this.ulElement);
422
427
  }
423
428
  if (valuecheck.length > 0 && this.dataSource instanceof DataManager && !isNullOrUndefined(this.value)
@@ -902,7 +907,9 @@ var MultiSelect = /** @class */ (function (_super) {
902
907
  parseInt(getComputedStyle(this.dropIcon).marginRight);
903
908
  elementWidth = this.overAllWrapper.clientWidth - (downIconWidth + 2 * (parseInt(getComputedStyle(this.inputElement).paddingRight)));
904
909
  }
905
- Input.calculateWidth(elementWidth, this.overAllWrapper, this.getModuleName());
910
+ if (this.floatLabelType === 'Auto') {
911
+ Input.calculateWidth(elementWidth, this.overAllWrapper, this.getModuleName());
912
+ }
906
913
  }
907
914
  };
908
915
  MultiSelect.prototype.checkPlaceholderSize = function () {
@@ -1252,6 +1259,7 @@ var MultiSelect = /** @class */ (function (_super) {
1252
1259
  + ':not(.' + HIDE_LIST + ')' + ':not(.e-reorder-hide)');
1253
1260
  }
1254
1261
  var focuseElem = this.list.querySelector('li.' + dropDownBaseClasses.focus);
1262
+ this.focusFirstListItem = !isNullOrUndefined(this.liCollections[0]) ? this.liCollections[0].classList.contains('e-item-focus') : false;
1255
1263
  var index = Array.prototype.slice.call(list).indexOf(focuseElem);
1256
1264
  if (index <= 0 && (this.mode === 'CheckBox' && this.allowFiltering)) {
1257
1265
  this.keyAction = false;
@@ -1375,6 +1383,7 @@ var MultiSelect = /** @class */ (function (_super) {
1375
1383
  var limit = this.value && this.value.length ? this.value.length : 0;
1376
1384
  var target;
1377
1385
  if (li !== null) {
1386
+ e.preventDefault();
1378
1387
  if (li.classList.contains('e-active')) {
1379
1388
  limit = limit - 1;
1380
1389
  }
@@ -1420,6 +1429,35 @@ var MultiSelect = /** @class */ (function (_super) {
1420
1429
  this.hidePopup(e);
1421
1430
  }
1422
1431
  }
1432
+ var selectAllParent = document.getElementsByClassName('e-selectall-parent')[0];
1433
+ if (selectAllParent && !selectAllParent.classList.contains('e-item-focus')) {
1434
+ e.preventDefault();
1435
+ }
1436
+ if (selectAllParent && selectAllParent.classList.contains('e-item-focus')) {
1437
+ var selectAllCheckBox = selectAllParent.childNodes[0];
1438
+ if (!selectAllCheckBox.classList.contains('e-check')) {
1439
+ selectAllCheckBox.classList.add('e-check');
1440
+ var args = {
1441
+ module: 'CheckBoxSelection',
1442
+ enable: this.mode === 'CheckBox',
1443
+ value: 'check',
1444
+ name: 'checkSelectAll'
1445
+ };
1446
+ this.notify('checkSelectAll', args);
1447
+ this.selectAllItem(true, e, li);
1448
+ }
1449
+ else {
1450
+ selectAllCheckBox.classList.remove('e-check');
1451
+ var args = {
1452
+ module: 'CheckBoxSelection',
1453
+ enable: this.mode === 'CheckBox',
1454
+ value: 'check',
1455
+ name: 'checkSelectAll'
1456
+ };
1457
+ this.notify('checkSelectAll', args);
1458
+ this.selectAllItem(false, e, li);
1459
+ }
1460
+ }
1423
1461
  this.refreshPlaceHolder();
1424
1462
  };
1425
1463
  MultiSelect.prototype.refreshListItems = function (data) {
@@ -1479,7 +1517,17 @@ var MultiSelect = /** @class */ (function (_super) {
1479
1517
  }
1480
1518
  var selectedElem = this.list.querySelector('li.' + dropDownBaseClasses.focus);
1481
1519
  var temp = -1;
1482
- if (elements.length) {
1520
+ var selectAllParent = document.getElementsByClassName('e-selectall-parent')[0];
1521
+ if (this.mode === 'CheckBox' && this.showSelectAll && position == 1 && !isNullOrUndefined(selectAllParent) && !selectAllParent.classList.contains('e-item-focus') && this.list.getElementsByClassName('e-item-focus').length == 0 && this.liCollections.length > 1) {
1522
+ selectAllParent.classList.add('e-item-focus');
1523
+ }
1524
+ else if (elements.length) {
1525
+ if (this.mode === 'CheckBox' && this.showSelectAll && !isNullOrUndefined(selectAllParent)) {
1526
+ selectAllParent.classList.remove('e-item-focus');
1527
+ if (this.showSelectAll && position == -1 && !isNullOrUndefined(selectAllParent) && this.liCollections.length > 1 && (this.focusFirstListItem || this.list.getElementsByClassName('e-item-focus').length == 0)) {
1528
+ selectAllParent.classList.add('e-item-focus');
1529
+ }
1530
+ }
1483
1531
  for (var index = 0; index < elements.length; index++) {
1484
1532
  if (elements[index] === selectedElem) {
1485
1533
  temp = index;
@@ -1898,7 +1946,7 @@ var MultiSelect = /** @class */ (function (_super) {
1898
1946
  };
1899
1947
  MultiSelect.prototype.multiCompiler = function (multiselectTemplate) {
1900
1948
  var checkTemplate = false;
1901
- if (multiselectTemplate) {
1949
+ if (typeof multiselectTemplate !== 'function' && multiselectTemplate) {
1902
1950
  try {
1903
1951
  checkTemplate = (selectAll(multiselectTemplate, document).length) ? true : false;
1904
1952
  }
@@ -1923,7 +1971,7 @@ var MultiSelect = /** @class */ (function (_super) {
1923
1971
  }
1924
1972
  if (this.valueTemplate && !isNullOrUndefined(itemData)) {
1925
1973
  var valuecheck = this.multiCompiler(this.valueTemplate);
1926
- if (valuecheck) {
1974
+ if (typeof this.valueTemplate !== 'function' && valuecheck) {
1927
1975
  compiledString = compile(select(this.valueTemplate, document).innerHTML.trim());
1928
1976
  }
1929
1977
  else {
@@ -1932,9 +1980,7 @@ var MultiSelect = /** @class */ (function (_super) {
1932
1980
  // eslint-disable-next-line
1933
1981
  var valueCompTemp = compiledString(itemData, this, 'valueTemplate', this.valueTemplateId, this.isStringTemplate, null, chipContent);
1934
1982
  if (valueCompTemp && valueCompTemp.length > 0) {
1935
- for (var i = 0; i < valueCompTemp.length; i++) {
1936
- chipContent.appendChild(valueCompTemp[i]);
1937
- }
1983
+ append(valueCompTemp, chipContent);
1938
1984
  }
1939
1985
  this.renderReactTemplates();
1940
1986
  }
@@ -2129,7 +2175,7 @@ var MultiSelect = /** @class */ (function (_super) {
2129
2175
  this.header = this.createElement('div');
2130
2176
  addClass([this.header], HEADER);
2131
2177
  var headercheck = this.multiCompiler(this.headerTemplate);
2132
- if (headercheck) {
2178
+ if (typeof this.headerTemplate !== 'function' && headercheck) {
2133
2179
  compiledString = compile(select(this.headerTemplate, document).innerHTML.trim());
2134
2180
  }
2135
2181
  else {
@@ -2156,7 +2202,7 @@ var MultiSelect = /** @class */ (function (_super) {
2156
2202
  this.footer = this.createElement('div');
2157
2203
  addClass([this.footer], FOOTER);
2158
2204
  var footercheck = this.multiCompiler(this.footerTemplate);
2159
- if (footercheck) {
2205
+ if (typeof this.footerTemplate !== 'function' && footercheck) {
2160
2206
  compiledString = compile(select(this.footerTemplate, document).innerHTML.trim());
2161
2207
  }
2162
2208
  else {
@@ -2412,7 +2458,6 @@ var MultiSelect = /** @class */ (function (_super) {
2412
2458
  if (delim) {
2413
2459
  this.updateWrapperText(this.delimiterWrapper, data);
2414
2460
  this.delimiterWrapper.setAttribute('id', getUniqueID('delim_val'));
2415
- this.inputElement.setAttribute('aria-describedby', this.delimiterWrapper.id);
2416
2461
  this.inputElement.setAttribute('aria-labelledby', this.delimiterWrapper.id);
2417
2462
  }
2418
2463
  var targetEle = e && e.target;
@@ -3387,7 +3432,6 @@ var MultiSelect = /** @class */ (function (_super) {
3387
3432
  this.hiddenElement.innerHTML = hiddenValue;
3388
3433
  this.updateWrapperText(this.delimiterWrapper, wrapperText);
3389
3434
  this.delimiterWrapper.setAttribute('id', getUniqueID('delim_val'));
3390
- this.inputElement.setAttribute('aria-describedby', this.delimiterWrapper.id);
3391
3435
  this.inputElement.setAttribute('aria-labelledby', this.delimiterWrapper.id);
3392
3436
  this.setProperties({ text: text.toString() }, true);
3393
3437
  this.refreshInputHight();
@@ -3890,7 +3934,7 @@ var MultiSelect = /** @class */ (function (_super) {
3890
3934
  }
3891
3935
  });
3892
3936
  if (this.mode === 'Default' || this.mode === 'Box') {
3893
- this.inputElement.setAttribute('aria-describedby', this.chipCollectionWrapper.id);
3937
+ this.inputElement.setAttribute('aria-labelledby', this.chipCollectionWrapper.id);
3894
3938
  }
3895
3939
  if (this.element.tagName !== this.getNgDirective()) {
3896
3940
  this.element.style.display = 'none';
@@ -0,0 +1 @@
1
+ @import './material3-definition.scss';
@@ -0,0 +1,2 @@
1
+ //default
2
+ //enddefault
@@ -0,0 +1,198 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
2
+ :root {
3
+ --color-sf-black: 0, 0, 0;
4
+ --color-sf-white: 255, 255, 255;
5
+ --color-sf-primary: 208, 188, 255;
6
+ --color-sf-primary-container: 79, 55, 139;
7
+ --color-sf-secondary: 204, 194, 220;
8
+ --color-sf-secondary-container: 74, 68, 88;
9
+ --color-sf-tertiary: 239, 184, 200;
10
+ --color-sf-tertiary-container: 99, 59, 72;
11
+ --color-sf-surface: 28, 27, 31;
12
+ --color-sf-surface-variant: 73, 69, 79;
13
+ --color-sf-background: var(--color-sf-surface);
14
+ --color-sf-on-primary: 55, 30, 115;
15
+ --color-sf-on-primary-container: 234, 221, 255;
16
+ --color-sf-on-secondary: 51, 45, 65;
17
+ --color-sf-on-secondary-container: 232, 222, 248;
18
+ --color-sf-on-tertiary: 73, 37, 50;
19
+ --color-sf-on-tertiary-containe: 255, 216, 228;
20
+ --color-sf-on-surface: 230, 225, 229;
21
+ --color-sf-on-surface-variant: 202, 196, 208;
22
+ --color-sf-on-background: 230, 225, 229;
23
+ --color-sf-outline: 147, 143, 153;
24
+ --color-sf-outline-variant: 68, 71, 70;
25
+ --color-sf-shadow: 0, 0, 0;
26
+ --color-sf-surface-tint-color: 208, 188, 255;
27
+ --color-sf-inverse-surface: 230, 225, 229;
28
+ --color-sf-inverse-on-surface: 49, 48, 51;
29
+ --color-sf-inverse-primary: 103, 80, 164;
30
+ --color-sf-scrim: 0, 0, 0;
31
+ --color-sf-error: 242, 184, 181;
32
+ --color-sf-error-container: 140, 29, 24;
33
+ --color-sf-on-error: 96, 20, 16;
34
+ --color-sf-on-error-container: 249, 222, 220;
35
+ --color-sf-success: 83, 202, 23;
36
+ --color-sf-success-container: 22, 62, 2;
37
+ --color-sf-on-success: 13, 39, 0;
38
+ --color-sf-on-success-container: 183, 250, 150;
39
+ --color-sf-info: 71, 172, 251;
40
+ --color-sf-info-container: 0, 67, 120;
41
+ --color-sf-on-info: 0, 51, 91;
42
+ --color-sf-on-info-container: 173, 219, 255;
43
+ --color-sf-warning: 245, 180, 130;
44
+ --color-sf-warning-container: 123, 65, 0;
45
+ --color-sf-on-warning: 99, 52, 0;
46
+ --color-sf-on-warning-container: 255, 220, 193;
47
+ --color-sf-spreadsheet-gridline: 231, 224, 236;
48
+ --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
49
+ --color-sf-success-text: 0, 0, 0;
50
+ --color-sf-warning-text: 0, 0, 0;
51
+ --color-sf-info-text: 0, 0, 0;
52
+ --color-sf-danger-text: 0, 0, 0;
53
+ --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
54
+ --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
55
+ }
56
+
57
+ .e-ddl.e-control-wrapper .e-ddl-icon::before {
58
+ transform: rotate(0deg);
59
+ transition: transform 300ms ease;
60
+ }
61
+
62
+ .e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
63
+ transform: rotate(180deg);
64
+ transition: transform 300ms ease;
65
+ }
66
+
67
+ .e-dropdownbase .e-list-item.e-active.e-hover {
68
+ color: rgba(var(--color-sf-on-surface));
69
+ }
70
+
71
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
72
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
73
+ .e-input-group:not(.e-disabled) .e-back-icon:active,
74
+ .e-input-group:not(.e-disabled) .e-back-icon:hover,
75
+ .e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:active,
76
+ .e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:hover {
77
+ background: rgba(var(--color-sf-on-surface), 0.08);
78
+ }
79
+
80
+ .e-input-group .e-ddl-icon:not(:active)::after {
81
+ animation: none;
82
+ }
83
+
84
+ .e-ddl.e-popup {
85
+ border: 0;
86
+ box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
87
+ margin-top: 2px;
88
+ }
89
+
90
+ .e-popup.e-ddl .e-dropdownbase {
91
+ min-height: 26px;
92
+ border-radius: 4px;
93
+ }
94
+
95
+ .e-bigger .e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
96
+ border-color: rgba(var(--color-sf-primary));
97
+ }
98
+
99
+ .e-bigger .e-popup.e-ddl-device-filter {
100
+ margin-top: 0;
101
+ }
102
+
103
+ .e-bigger .e-ddl-device .e-input-group,
104
+ .e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
105
+ background: rgba(0, 0, 0, 0.0001);
106
+ border-width: 0;
107
+ box-shadow: none;
108
+ margin-bottom: 0;
109
+ }
110
+
111
+ .e-bigger .e-ddl-device .e-input-group .e-back-icon,
112
+ .e-bigger .e-ddl-device .e-input-group input.e-input,
113
+ .e-bigger .e-ddl-device .e-input-group .e-clear-icon {
114
+ background: rgba(0, 0, 0, 0.0001);
115
+ }
116
+
117
+ .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
118
+ margin: 0 6px;
119
+ min-height: 30px;
120
+ min-width: 30px;
121
+ }
122
+
123
+ .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
124
+ .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
125
+ min-height: 38px;
126
+ min-width: 38px;
127
+ }
128
+
129
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
130
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
131
+ min-height: 22px;
132
+ min-width: 22px;
133
+ }
134
+
135
+ .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
136
+ .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
137
+ padding: 4px 16px 4px 0;
138
+ }
139
+
140
+ .e-input-group.e-ddl,
141
+ .e-input-group.e-ddl .e-input,
142
+ .e-input-group.e-ddl .e-ddl-icon {
143
+ background: transparent;
144
+ }
145
+
146
+ .e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group:hover:not(.e-disabled):not(.e-float-icon-left),
147
+ .e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group.e-control-wrapper:hover:not(.e-disabled):not(.e-float-icon-left) {
148
+ border-bottom-width: 0;
149
+ }
150
+
151
+ .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
152
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
153
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
154
+ .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus.e-small .e-clear-icon,
155
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon,
156
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
157
+ margin: 4px;
158
+ }
159
+
160
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
161
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
162
+ .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
163
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
164
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
165
+ .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small.e-input-focus .e-input-filter {
166
+ padding: 4px 5px 4px 12px;
167
+ }
168
+
169
+ .e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
170
+ .e-bigger.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
171
+ .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
172
+ .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
173
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
174
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
175
+ .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
176
+ min-height: 34px;
177
+ min-width: 34px;
178
+ }
179
+
180
+ .e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
181
+ .e-bigger.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
182
+ .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
183
+ .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
184
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
185
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
186
+ .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger.e-small .e-input-filter {
187
+ padding: 8px 16px;
188
+ }
189
+
190
+ .e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
191
+ margin: 0 4px;
192
+ }
193
+
194
+ .e-ddl.e-popup.e-outline .e-filter-parent {
195
+ padding: 4px 8px;
196
+ }
197
+
198
+ /* stylelint-disable-line no-empty-source */
@@ -0,0 +1,5 @@
1
+ @import 'ej2-base/styles/material3-dark-definition.scss';
2
+
3
+ @import '../drop-down-list/material3-dark-definition.scss';
4
+ @import 'material3-dark-definition.scss';
5
+ @import 'all.scss';
@@ -0,0 +1,254 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
2
+ :root {
3
+ --color-sf-black: 0, 0, 0;
4
+ --color-sf-white: 255, 255, 255;
5
+ --color-sf-primary: 103, 80, 164;
6
+ --color-sf-primary-container: 234, 221, 255;
7
+ --color-sf-secondary: 98, 91, 113;
8
+ --color-sf-secondary-container: 232, 222, 248;
9
+ --color-sf-tertiary: 125, 82, 96;
10
+ --color-sf-tertiary-container: 255, 216, 228;
11
+ --color-sf-surface: 255, 255, 255;
12
+ --color-sf-surface-variant: 231, 224, 236;
13
+ --color-sf-background: var(--color-sf-surface);
14
+ --color-sf-on-primary: 255, 255, 255;
15
+ --color-sf-on-primary-container: 33, 0, 94;
16
+ --color-sf-on-secondary: 255, 255, 255;
17
+ --color-sf-on-secondary-container: 30, 25, 43;
18
+ --color-sf-on-tertiary: 255, 255, 255;
19
+ --color-sf-on-tertiary-containe: 55, 11, 30;
20
+ --color-sf-on-surface: 28, 27, 31;
21
+ --color-sf-on-surface-variant: 73, 69, 78;
22
+ --color-sf-on-background: 28, 27, 31;
23
+ --color-sf-outline: 121, 116, 126;
24
+ --color-sf-outline-variant: 196, 199, 197;
25
+ --color-sf-shadow: 0, 0, 0;
26
+ --color-sf-surface-tint-color: 103, 80, 164;
27
+ --color-sf-inverse-surface: 49, 48, 51;
28
+ --color-sf-inverse-on-surface: 244, 239, 244;
29
+ --color-sf-inverse-primary: 208, 188, 255;
30
+ --color-sf-scrim: 0, 0, 0;
31
+ --color-sf-error: 179, 38, 30;
32
+ --color-sf-error-container: 249, 222, 220;
33
+ --color-sf-on-error: 255, 250, 250;
34
+ --color-sf-on-error-container: 65, 14, 11;
35
+ --color-sf-success: 32, 81, 7;
36
+ --color-sf-success-container: 209, 255, 186;
37
+ --color-sf-on-success: 244, 255, 239;
38
+ --color-sf-on-success-container: 13, 39, 0;
39
+ --color-sf-info: 1, 87, 155;
40
+ --color-sf-info-container: 233, 245, 255;
41
+ --color-sf-on-info: 250, 253, 255;
42
+ --color-sf-on-info-container: 0, 51, 91;
43
+ --color-sf-warning: 145, 76, 0;
44
+ --color-sf-warning-container: 254, 236, 222;
45
+ --color-sf-on-warning: 255, 255, 255;
46
+ --color-sf-on-warning-container: 47, 21, 0;
47
+ --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
48
+ --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
49
+ --color-sf-diagram-palette-background: --color-sf-white;
50
+ --color-sf-success-text: 255, 255, 255;
51
+ --color-sf-warning-text: 255, 255, 255;
52
+ --color-sf-danger-text: 255, 255, 255;
53
+ --color-sf-info-text: 255, 255, 255;
54
+ --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
55
+ --color-sf-secondary-bg-color: var(--color-sf-surface);
56
+ }
57
+
58
+ .e-dark-mode {
59
+ --color-sf-black: 0, 0, 0;
60
+ --color-sf-white: 255, 255, 255;
61
+ --color-sf-primary: 208, 188, 255;
62
+ --color-sf-primary-container: 79, 55, 139;
63
+ --color-sf-secondary: 204, 194, 220;
64
+ --color-sf-secondary-container: 74, 68, 88;
65
+ --color-sf-tertiary: 239, 184, 200;
66
+ --color-sf-tertiary-container: 99, 59, 72;
67
+ --color-sf-surface: 28, 27, 31;
68
+ --color-sf-surface-variant: 28, 27, 31;
69
+ --color-sf-background: var(--color-sf-surface);
70
+ --color-sf-on-primary: 55, 30, 115;
71
+ --color-sf-on-primary-container: 234, 221, 255;
72
+ --color-sf-on-secondary: 51, 45, 65;
73
+ --color-sf-on-secondary-container: 232, 222, 248;
74
+ --color-sf-on-tertiary: 73, 37, 50;
75
+ --color-sf-on-tertiary-containe: 255, 216, 228;
76
+ --color-sf-on-surface: 230, 225, 229;
77
+ --color-sf-on-surface-variant: 202, 196, 208;
78
+ --color-sf-on-background: 230, 225, 229;
79
+ --color-sf-outline: 147, 143, 153;
80
+ --color-sf-outline-variant: 68, 71, 70;
81
+ --color-sf-shadow: 0, 0, 0;
82
+ --color-sf-surface-tint-color: 208, 188, 255;
83
+ --color-sf-inverse-surface: 230, 225, 229;
84
+ --color-sf-inverse-on-surface: 49, 48, 51;
85
+ --color-sf-inverse-primary: 103, 80, 164;
86
+ --color-sf-scrim: 0, 0, 0;
87
+ --color-sf-error: 242, 184, 181;
88
+ --color-sf-error-container: 140, 29, 24;
89
+ --color-sf-on-error: 96, 20, 16;
90
+ --color-sf-on-error-container: 249, 222, 220;
91
+ --color-sf-success: 83, 202, 23;
92
+ --color-sf-success-container: 22, 62, 2;
93
+ --color-sf-on-success: 13, 39, 0;
94
+ --color-sf-on-success-container: 183, 250, 150;
95
+ --color-sf-info: 71, 172, 251;
96
+ --color-sf-info-container: 0, 67, 120;
97
+ --color-sf-on-info: 0, 51, 91;
98
+ --color-sf-on-info-container: 173, 219, 255;
99
+ --color-sf-warning: 245, 180, 130;
100
+ --color-sf-warning-container: 123, 65, 0;
101
+ --color-sf-on-warning: 99, 52, 0;
102
+ --color-sf-on-warning-container: 255, 220, 193;
103
+ --color-sf-spreadsheet-gridline: 231, 224, 236;
104
+ --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
105
+ --color-sf-success-text: 0, 0, 0;
106
+ --color-sf-warning-text: 0, 0, 0;
107
+ --color-sf-info-text: 0, 0, 0;
108
+ --color-sf-danger-text: 0, 0, 0;
109
+ --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
110
+ --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
111
+ }
112
+
113
+ .e-ddl.e-control-wrapper .e-ddl-icon::before {
114
+ transform: rotate(0deg);
115
+ transition: transform 300ms ease;
116
+ }
117
+
118
+ .e-ddl.e-control-wrapper.e-icon-anim .e-ddl-icon::before {
119
+ transform: rotate(180deg);
120
+ transition: transform 300ms ease;
121
+ }
122
+
123
+ .e-dropdownbase .e-list-item.e-active.e-hover {
124
+ color: rgba(var(--color-sf-on-surface));
125
+ }
126
+
127
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
128
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
129
+ .e-input-group:not(.e-disabled) .e-back-icon:active,
130
+ .e-input-group:not(.e-disabled) .e-back-icon:hover,
131
+ .e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:active,
132
+ .e-popup.e-ddl .e-input-group:not(.e-disabled) .e-clear-icon:hover {
133
+ background: rgba(var(--color-sf-on-surface), 0.08);
134
+ }
135
+
136
+ .e-input-group .e-ddl-icon:not(:active)::after {
137
+ animation: none;
138
+ }
139
+
140
+ .e-ddl.e-popup {
141
+ border: 0;
142
+ box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
143
+ margin-top: 2px;
144
+ }
145
+
146
+ .e-popup.e-ddl .e-dropdownbase {
147
+ min-height: 26px;
148
+ border-radius: 4px;
149
+ }
150
+
151
+ .e-bigger .e-popup.e-ddl-device-filter .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
152
+ border-color: rgba(var(--color-sf-primary));
153
+ }
154
+
155
+ .e-bigger .e-popup.e-ddl-device-filter {
156
+ margin-top: 0;
157
+ }
158
+
159
+ .e-bigger .e-ddl-device .e-input-group,
160
+ .e-bigger .e-ddl-device .e-input-group.e-input-focus:not(.e-success):not(.e-warning):not(.e-error) {
161
+ background: rgba(0, 0, 0, 0.0001);
162
+ border-width: 0;
163
+ box-shadow: none;
164
+ margin-bottom: 0;
165
+ }
166
+
167
+ .e-bigger .e-ddl-device .e-input-group .e-back-icon,
168
+ .e-bigger .e-ddl-device .e-input-group input.e-input,
169
+ .e-bigger .e-ddl-device .e-input-group .e-clear-icon {
170
+ background: rgba(0, 0, 0, 0.0001);
171
+ }
172
+
173
+ .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
174
+ margin: 0 6px;
175
+ min-height: 30px;
176
+ min-width: 30px;
177
+ }
178
+
179
+ .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
180
+ .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
181
+ min-height: 38px;
182
+ min-width: 38px;
183
+ }
184
+
185
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
186
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
187
+ min-height: 22px;
188
+ min-width: 22px;
189
+ }
190
+
191
+ .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
192
+ .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
193
+ padding: 4px 16px 4px 0;
194
+ }
195
+
196
+ .e-input-group.e-ddl,
197
+ .e-input-group.e-ddl .e-input,
198
+ .e-input-group.e-ddl .e-ddl-icon {
199
+ background: transparent;
200
+ }
201
+
202
+ .e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group:hover:not(.e-disabled):not(.e-float-icon-left),
203
+ .e-ddl.e-ddl-device.e-ddl-device-filter .e-input-group.e-control-wrapper:hover:not(.e-disabled):not(.e-float-icon-left) {
204
+ border-bottom-width: 0;
205
+ }
206
+
207
+ .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
208
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
209
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
210
+ .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus.e-small .e-clear-icon,
211
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon,
212
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
213
+ margin: 4px;
214
+ }
215
+
216
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
217
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
218
+ .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
219
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
220
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
221
+ .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small.e-input-focus .e-input-filter {
222
+ padding: 4px 5px 4px 12px;
223
+ }
224
+
225
+ .e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
226
+ .e-bigger.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
227
+ .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
228
+ .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-small .e-clear-icon,
229
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
230
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
231
+ .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
232
+ min-height: 34px;
233
+ min-width: 34px;
234
+ }
235
+
236
+ .e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
237
+ .e-bigger.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
238
+ .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
239
+ .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small .e-input-filter,
240
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
241
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger .e-input-filter,
242
+ .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-bigger.e-small .e-input-filter {
243
+ padding: 8px 16px;
244
+ }
245
+
246
+ .e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
247
+ margin: 0 4px;
248
+ }
249
+
250
+ .e-ddl.e-popup.e-outline .e-filter-parent {
251
+ padding: 4px 8px;
252
+ }
253
+
254
+ /* stylelint-disable-line no-empty-source */
@@ -0,0 +1,5 @@
1
+ @import 'ej2-base/styles/material3-definition.scss';
2
+
3
+ @import '../drop-down-list/material3-definition.scss';
4
+ @import 'material3-definition.scss';
5
+ @import 'all.scss';