@syncfusion/ej2-dropdowns 18.2.44-4568 → 18.2.44-4569

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (169) hide show
  1. package/.eslintrc.json +244 -0
  2. package/CHANGELOG.md +1524 -1524
  3. package/README.md +118 -118
  4. package/dist/ej2-dropdowns.umd.min.js +1 -1
  5. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es2015.js +99 -60
  7. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  8. package/dist/es6/ej2-dropdowns.es5.js +191 -151
  9. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  10. package/dist/global/ej2-dropdowns.min.js +1 -1
  11. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  12. package/dist/ts/auto-complete/auto-complete.ts +527 -0
  13. package/dist/ts/combo-box/combo-box.ts +957 -0
  14. package/dist/ts/common/highlight-search.ts +47 -0
  15. package/dist/ts/common/incremental-search.ts +81 -0
  16. package/dist/ts/drop-down-base/drop-down-base.ts +1572 -0
  17. package/dist/ts/drop-down-list/drop-down-list.ts +2993 -0
  18. package/dist/ts/drop-down-tree/drop-down-tree.ts +3066 -0
  19. package/dist/ts/list-box/list-box.ts +2317 -0
  20. package/dist/ts/multi-select/checkbox-selection.ts +528 -0
  21. package/dist/ts/multi-select/float-label.ts +155 -0
  22. package/dist/ts/multi-select/interface.ts +66 -0
  23. package/dist/ts/multi-select/multi-select.ts +4216 -0
  24. package/helpers/e2e/index.js +3 -3
  25. package/license +2 -2
  26. package/package.json +77 -78
  27. package/src/auto-complete/auto-complete-model.d.ts +179 -179
  28. package/src/auto-complete/auto-complete.js +19 -19
  29. package/src/combo-box/combo-box-model.d.ts +212 -212
  30. package/src/combo-box/combo-box.js +19 -19
  31. package/src/drop-down-base/drop-down-base-model.d.ts +191 -191
  32. package/src/drop-down-base/drop-down-base.js +19 -19
  33. package/src/drop-down-list/drop-down-list-model.d.ts +222 -222
  34. package/src/drop-down-list/drop-down-list.js +19 -19
  35. package/src/drop-down-tree/drop-down-tree-model.d.ts +344 -344
  36. package/src/drop-down-tree/drop-down-tree.js +19 -19
  37. package/src/list-box/list-box-model.d.ts +156 -156
  38. package/src/list-box/list-box.js +19 -19
  39. package/src/multi-select/multi-select-model.d.ts +452 -452
  40. package/src/multi-select/multi-select.d.ts +2 -0
  41. package/src/multi-select/multi-select.js +73 -36
  42. package/styles/_all.scss +3 -3
  43. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
  44. package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
  45. package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
  46. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
  47. package/styles/auto-complete/_material-dark-definition.scss +2 -2
  48. package/styles/bootstrap-dark.css +13 -16
  49. package/styles/bootstrap.css +12 -15
  50. package/styles/bootstrap4.css +6 -10
  51. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
  52. package/styles/combo-box/_bootstrap4-definition.scss +11 -11
  53. package/styles/combo-box/_fabric-dark-definition.scss +2 -2
  54. package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
  55. package/styles/combo-box/_material-dark-definition.scss +2 -2
  56. package/styles/drop-down-base/_all.scss +2 -2
  57. package/styles/drop-down-base/_bootstrap-dark-definition.scss +64 -64
  58. package/styles/drop-down-base/_bootstrap-definition.scss +64 -64
  59. package/styles/drop-down-base/_bootstrap4-definition.scss +78 -78
  60. package/styles/drop-down-base/_definition.scss +23 -23
  61. package/styles/drop-down-base/_fabric-dark-definition.scss +68 -68
  62. package/styles/drop-down-base/_fabric-definition.scss +66 -66
  63. package/styles/drop-down-base/_highcontrast-definition.scss +82 -82
  64. package/styles/drop-down-base/_highcontrast-light-definition.scss +81 -81
  65. package/styles/drop-down-base/_layout.scss +108 -108
  66. package/styles/drop-down-base/_material-dark-definition.scss +67 -67
  67. package/styles/drop-down-base/_material-definition.scss +65 -65
  68. package/styles/drop-down-base/_theme.scss +242 -242
  69. package/styles/drop-down-list/_all.scss +2 -2
  70. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
  71. package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
  72. package/styles/drop-down-list/_bootstrap4-definition.scss +184 -184
  73. package/styles/drop-down-list/_fabric-dark-definition.scss +127 -127
  74. package/styles/drop-down-list/_fabric-definition.scss +122 -122
  75. package/styles/drop-down-list/_highcontrast-definition.scss +131 -131
  76. package/styles/drop-down-list/_highcontrast-light-definition.scss +133 -133
  77. package/styles/drop-down-list/_layout.scss +218 -218
  78. package/styles/drop-down-list/_material-dark-definition.scss +143 -143
  79. package/styles/drop-down-list/_material-definition.scss +166 -166
  80. package/styles/drop-down-list/_theme.scss +10 -10
  81. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
  82. package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
  83. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
  84. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
  85. package/styles/drop-down-list/icons/_fabric.scss +14 -14
  86. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
  87. package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
  88. package/styles/drop-down-list/icons/_material-dark.scss +14 -14
  89. package/styles/drop-down-list/icons/_material.scss +14 -14
  90. package/styles/drop-down-list/material.css +9 -0
  91. package/styles/drop-down-tree/_all.scss +2 -2
  92. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +61 -61
  93. package/styles/drop-down-tree/_bootstrap-definition.scss +61 -61
  94. package/styles/drop-down-tree/_bootstrap4-definition.scss +62 -62
  95. package/styles/drop-down-tree/_fabric-dark-definition.scss +62 -62
  96. package/styles/drop-down-tree/_fabric-definition.scss +62 -62
  97. package/styles/drop-down-tree/_highcontrast-definition.scss +62 -62
  98. package/styles/drop-down-tree/_highcontrast-light-definition.scss +62 -62
  99. package/styles/drop-down-tree/_layout.scss +437 -437
  100. package/styles/drop-down-tree/_material-dark-definition.scss +60 -60
  101. package/styles/drop-down-tree/_material-definition.scss +60 -60
  102. package/styles/drop-down-tree/_theme.scss +68 -68
  103. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
  104. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
  105. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
  106. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
  107. package/styles/drop-down-tree/icons/_fabric.scss +11 -11
  108. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
  109. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
  110. package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
  111. package/styles/drop-down-tree/icons/_material.scss +11 -11
  112. package/styles/drop-down-tree/material.css +9 -0
  113. package/styles/fabric-dark.css +2 -5
  114. package/styles/fabric.css +1 -4
  115. package/styles/highcontrast-light.css +2 -5
  116. package/styles/highcontrast.css +2 -7
  117. package/styles/list-box/_all.scss +2 -2
  118. package/styles/list-box/_bootstrap-dark-definition.scss +118 -118
  119. package/styles/list-box/_bootstrap-definition.scss +112 -112
  120. package/styles/list-box/_bootstrap4-definition.scss +118 -118
  121. package/styles/list-box/_fabric-dark-definition.scss +118 -118
  122. package/styles/list-box/_fabric-definition.scss +112 -112
  123. package/styles/list-box/_highcontrast-definition.scss +112 -112
  124. package/styles/list-box/_highcontrast-light-definition.scss +118 -118
  125. package/styles/list-box/_layout.scss +458 -458
  126. package/styles/list-box/_material-dark-definition.scss +118 -118
  127. package/styles/list-box/_material-definition.scss +112 -112
  128. package/styles/list-box/_theme.scss +273 -273
  129. package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
  130. package/styles/list-box/icons/_bootstrap.scss +25 -25
  131. package/styles/list-box/icons/_bootstrap4.scss +25 -25
  132. package/styles/list-box/icons/_fabric-dark.scss +25 -25
  133. package/styles/list-box/icons/_fabric.scss +25 -25
  134. package/styles/list-box/icons/_highcontrast-light.scss +25 -25
  135. package/styles/list-box/icons/_highcontrast.scss +25 -25
  136. package/styles/list-box/icons/_material-dark.scss +25 -25
  137. package/styles/list-box/icons/_material.scss +25 -25
  138. package/styles/material-dark.css +8 -11
  139. package/styles/material.css +34 -10
  140. package/styles/multi-select/_all.scss +2 -2
  141. package/styles/multi-select/_bootstrap-dark-definition.scss +171 -171
  142. package/styles/multi-select/_bootstrap-definition.scss +166 -166
  143. package/styles/multi-select/_bootstrap4-definition.scss +233 -233
  144. package/styles/multi-select/_fabric-dark-definition.scss +170 -170
  145. package/styles/multi-select/_fabric-definition.scss +167 -167
  146. package/styles/multi-select/_highcontrast-definition.scss +257 -259
  147. package/styles/multi-select/_highcontrast-light-definition.scss +258 -258
  148. package/styles/multi-select/_layout.scss +1153 -1153
  149. package/styles/multi-select/_material-dark-definition.scss +186 -186
  150. package/styles/multi-select/_material-definition.scss +191 -191
  151. package/styles/multi-select/_theme.scss +384 -389
  152. package/styles/multi-select/bootstrap-dark.css +13 -16
  153. package/styles/multi-select/bootstrap.css +12 -15
  154. package/styles/multi-select/bootstrap4.css +6 -10
  155. package/styles/multi-select/fabric-dark.css +2 -5
  156. package/styles/multi-select/fabric.css +1 -4
  157. package/styles/multi-select/highcontrast-light.css +2 -5
  158. package/styles/multi-select/highcontrast.css +2 -7
  159. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
  160. package/styles/multi-select/icons/_bootstrap.scss +26 -26
  161. package/styles/multi-select/icons/_bootstrap4.scss +37 -37
  162. package/styles/multi-select/icons/_fabric-dark.scss +26 -26
  163. package/styles/multi-select/icons/_fabric.scss +26 -26
  164. package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
  165. package/styles/multi-select/icons/_highcontrast.scss +26 -26
  166. package/styles/multi-select/icons/_material-dark.scss +26 -26
  167. package/styles/multi-select/icons/_material.scss +324 -324
  168. package/styles/multi-select/material-dark.css +8 -11
  169. package/styles/multi-select/material.css +16 -10
@@ -729,6 +729,8 @@ export declare class MultiSelect extends DropDownBase implements IInput {
729
729
  */
730
730
  onPropertyChanged(newProp: MultiSelectModel, oldProp: MultiSelectModel): void;
731
731
  private reInitializePoup;
732
+ private presentItemValue;
733
+ private addNonPresentItems;
732
734
  private updateVal;
733
735
  /**
734
736
  * Adds a new item to the multiselect popup list. By default, new item appends to the list as the last item,
@@ -1,22 +1,22 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = function (d, b) {
3
- extendStatics = Object.setPrototypeOf ||
4
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
- return extendStatics(d, b);
7
- }
8
- return function (d, b) {
9
- extendStatics(d, b);
10
- function __() { this.constructor = d; }
11
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
- };
13
- })();
14
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
- return c > 3 && r && Object.defineProperty(target, key, r), r;
19
- };
1
+ var __extends = (this && this.__extends) || (function () {
2
+ var extendStatics = function (d, b) {
3
+ extendStatics = Object.setPrototypeOf ||
4
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
5
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
6
+ return extendStatics(d, b);
7
+ };
8
+ return function (d, b) {
9
+ extendStatics(d, b);
10
+ function __() { this.constructor = d; }
11
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
12
+ };
13
+ })();
14
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
15
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
17
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
19
+ };
20
20
  /// <reference path='../drop-down-base/drop-down-base-model.d.ts'/>
21
21
  import { DropDownBase, dropDownBaseClasses } from '../drop-down-base/drop-down-base';
22
22
  import { FieldSettings } from '../drop-down-base/drop-down-base';
@@ -433,7 +433,7 @@ var MultiSelect = /** @class */ (function (_super) {
433
433
  this.mainData = list;
434
434
  this.mainListCollection = this.liCollections;
435
435
  }
436
- else if (!isNullOrUndefined(this.mainData) && this.mainData.length === 0) {
436
+ else if (isNullOrUndefined(this.mainData) || this.mainData.length === 0) {
437
437
  this.mainData = list;
438
438
  }
439
439
  if ((this.remoteCustomValue || list.length <= 0) && this.allowCustomValue && this.inputFocus && this.allowFiltering) {
@@ -2365,7 +2365,9 @@ var MultiSelect = /** @class */ (function (_super) {
2365
2365
  MultiSelect.prototype.updateActionCompleteData = function (li, item) {
2366
2366
  if (this.value && this.value.indexOf(li.getAttribute('data-value')) > -1) {
2367
2367
  this.mainList = this.ulElement;
2368
- addClass([li], HIDE_LIST);
2368
+ if (this.hideSelectedItem) {
2369
+ addClass([li], HIDE_LIST);
2370
+ }
2369
2371
  }
2370
2372
  };
2371
2373
  MultiSelect.prototype.updateAddItemList = function (list, itemCount) {
@@ -3294,28 +3296,63 @@ var MultiSelect = /** @class */ (function (_super) {
3294
3296
  }
3295
3297
  this.renderPopup();
3296
3298
  };
3299
+ MultiSelect.prototype.presentItemValue = function (ulElement) {
3300
+ var valuecheck = [];
3301
+ for (var i = 0; i < this.value.length; i++) {
3302
+ var checkEle = this.findListElement(((this.allowFiltering && !isNullOrUndefined(this.mainList)) ? this.mainList : ulElement), 'li', 'data-value', this.value[i]);
3303
+ if (!checkEle) {
3304
+ valuecheck.push(this.value[i]);
3305
+ }
3306
+ }
3307
+ return valuecheck;
3308
+ };
3309
+ ;
3310
+ MultiSelect.prototype.addNonPresentItems = function (valuecheck, ulElement, list, event) {
3311
+ var _this = this;
3312
+ this.showSpinner();
3313
+ this.dataSource.executeQuery(this.getForQuery(valuecheck)).then(function (e) {
3314
+ _this.hideSpinner();
3315
+ _this.addItem(e.result, list.length);
3316
+ _this.updateActionList(ulElement, list, event);
3317
+ });
3318
+ };
3319
+ ;
3297
3320
  MultiSelect.prototype.updateVal = function (newProp, oldProp, prop) {
3298
3321
  if (!this.list) {
3299
3322
  this.onLoadSelect();
3300
3323
  }
3301
- else if (!this.inputFocus) {
3302
- if (prop === 'text') {
3303
- this.initialTextUpdate();
3304
- newProp = this.value;
3305
- }
3306
- if (isNullOrUndefined(this.value) || this.value.length === 0) {
3307
- this.tempValues = oldProp;
3324
+ else {
3325
+ var valuecheck = [];
3326
+ if (!isNullOrUndefined(this.value) && !this.allowCustomValue) {
3327
+ valuecheck = this.presentItemValue(this.ulElement);
3308
3328
  }
3309
- this.initialValueUpdate();
3310
- if (this.mode !== 'Box') {
3311
- this.updateDelimView();
3329
+ if (prop == 'value' && valuecheck.length > 0 && this.dataSource instanceof DataManager && !isNullOrUndefined(this.value)
3330
+ && this.listData != null) {
3331
+ this.mainData = null;
3332
+ this.setDynValue = true;
3333
+ this.addNonPresentItems(valuecheck, this.ulElement, this.listData);
3312
3334
  }
3313
- this.refreshInputHight();
3314
- this.refreshPlaceHolder();
3315
- if (this.mode !== 'CheckBox' && this.changeOnBlur) {
3316
- this.updateValueState(null, newProp, oldProp);
3335
+ else {
3336
+ if (prop === 'text') {
3337
+ this.initialTextUpdate();
3338
+ newProp = this.value;
3339
+ }
3340
+ if (isNullOrUndefined(this.value) || this.value.length === 0) {
3341
+ this.tempValues = oldProp;
3342
+ }
3343
+ this.initialValueUpdate();
3344
+ if (this.mode !== 'Box' && !this.inputFocus) {
3345
+ this.updateDelimView();
3346
+ }
3347
+ if (!this.inputFocus) {
3348
+ this.refreshInputHight();
3349
+ }
3350
+ this.refreshPlaceHolder();
3351
+ if (this.mode !== 'CheckBox' && this.changeOnBlur) {
3352
+ this.updateValueState(null, newProp, oldProp);
3353
+ }
3354
+ this.checkPlaceholderSize();
3317
3355
  }
3318
- this.checkPlaceholderSize();
3319
3356
  }
3320
3357
  if (!this.changeOnBlur) {
3321
3358
  this.updateValueState(null, newProp, oldProp);
package/styles/_all.scss CHANGED
@@ -1,3 +1,3 @@
1
- @import 'drop-down-base/all.scss';
2
- @import 'drop-down-list/all.scss';
3
- @import 'drop-down-tree/all.scss';
1
+ @import 'drop-down-base/all.scss';
2
+ @import 'drop-down-list/all.scss';
3
+ @import 'drop-down-tree/all.scss';
@@ -1,3 +1,3 @@
1
- //default
2
- //undefined
3
- //enddefault
1
+ //default
2
+ //undefined
3
+ //enddefault
@@ -1,11 +1,11 @@
1
- //default
2
-
3
- .e-input-group.e-ddl .e-control.e-autocomplete~.e-ddl-icon {
4
- font-size: 8px;
5
- }
6
-
7
- .e-bigger .e-input-group.e-ddl .e-control.e-autocomplete~.e-ddl-icon {
8
- font-size: 10px;
9
- }
10
-
11
- //enddefault
1
+ //default
2
+
3
+ .e-input-group.e-ddl .e-control.e-autocomplete~.e-ddl-icon {
4
+ font-size: 8px;
5
+ }
6
+
7
+ .e-bigger .e-input-group.e-ddl .e-control.e-autocomplete~.e-ddl-icon {
8
+ font-size: 10px;
9
+ }
10
+
11
+ //enddefault
@@ -1,2 +1,2 @@
1
- //default
2
- //enddefault
1
+ //default
2
+ //enddefault
@@ -1,2 +1,2 @@
1
- //default
2
- //enddefault
1
+ //default
2
+ //enddefault
@@ -1,2 +1,2 @@
1
- //default
2
- //enddefault
1
+ //default
2
+ //enddefault
@@ -1177,7 +1177,7 @@ ejs-dropdownlist {
1177
1177
  box-sizing: border-box;
1178
1178
  cursor: text;
1179
1179
  line-height: normal;
1180
- min-height: 32px;
1180
+ min-height: 34px;
1181
1181
  padding: 0 32px 0 2px;
1182
1182
  position: relative;
1183
1183
  -webkit-user-select: none;
@@ -1398,7 +1398,7 @@ ejs-dropdownlist {
1398
1398
  .e-multi-select-wrapper .e-delim-values {
1399
1399
  font-family: inherit;
1400
1400
  font-size: 14px;
1401
- line-height: 32px;
1401
+ line-height: 35px;
1402
1402
  max-width: 100%;
1403
1403
  padding-left: 6px;
1404
1404
  padding-right: 6px;
@@ -1406,7 +1406,7 @@ ejs-dropdownlist {
1406
1406
  }
1407
1407
 
1408
1408
  .e-bigger .e-multi-select-wrapper .e-delim-values {
1409
- line-height: 36px;
1409
+ line-height: 39px;
1410
1410
  }
1411
1411
 
1412
1412
  .e-multi-select-list-wrapper .e-hide-listitem {
@@ -1670,7 +1670,7 @@ ejs-dropdownlist {
1670
1670
  }
1671
1671
 
1672
1672
  .e-bigger .e-checkbox .e-multi-select-wrapper .e-delim-values {
1673
- line-height: 36px;
1673
+ line-height: 39px;
1674
1674
  }
1675
1675
 
1676
1676
  .e-checkbox .e-multi-select-wrapper .e-delim-values .e-remain {
@@ -1714,13 +1714,13 @@ ejs-multiselect {
1714
1714
  }
1715
1715
 
1716
1716
  .e-small .e-multi-select-wrapper input[type='text'] {
1717
- height: 26px;
1718
- min-height: 26px;
1717
+ height: 28px;
1718
+ min-height: 28px;
1719
1719
  }
1720
1720
 
1721
1721
  .e-small .e-multi-select-wrapper .e-delim-values {
1722
1722
  font-size: 13px;
1723
- line-height: 26px;
1723
+ line-height: 28px;
1724
1724
  }
1725
1725
 
1726
1726
  .e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
@@ -1741,13 +1741,13 @@ ejs-multiselect {
1741
1741
  }
1742
1742
 
1743
1743
  .e-bigger.e-small .e-multi-select-wrapper input[type='text'] {
1744
- height: 34px;
1745
- min-height: 34px;
1744
+ height: 35px;
1745
+ min-height: 35px;
1746
1746
  }
1747
1747
 
1748
1748
  .e-small.e-bigger .e-multi-select-wrapper .e-delim-values {
1749
1749
  font-size: 14px;
1750
- line-height: 34px;
1750
+ line-height: 35px;
1751
1751
  }
1752
1752
 
1753
1753
  .e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
@@ -1793,7 +1793,6 @@ ejs-multiselect {
1793
1793
  }
1794
1794
 
1795
1795
  .e-multi-select-wrapper .e-chips > .e-chipcontent {
1796
- -webkit-text-fill-color: #f0f0f0;
1797
1796
  color: #f0f0f0;
1798
1797
  font-family: inherit;
1799
1798
  font-size: 15px;
@@ -1810,7 +1809,7 @@ ejs-multiselect {
1810
1809
  .e-multi-select-wrapper .e-chips {
1811
1810
  background-color: #414141;
1812
1811
  border-radius: 4px;
1813
- height: 28px;
1812
+ height: 30px;
1814
1813
  }
1815
1814
 
1816
1815
  .e-multi-select-wrapper .e-chips:hover {
@@ -1822,7 +1821,6 @@ ejs-multiselect {
1822
1821
  }
1823
1822
 
1824
1823
  .e-multi-select-wrapper .e-chips .e-chips-close::before {
1825
- -webkit-text-fill-color: #f0f0f0;
1826
1824
  color: #f0f0f0;
1827
1825
  font-size: 10px;
1828
1826
  }
@@ -1945,7 +1943,6 @@ ejs-multiselect {
1945
1943
  }
1946
1944
 
1947
1945
  .e-multi-select-wrapper .e-delim-values {
1948
- -webkit-text-fill-color: #f0f0f0;
1949
1946
  color: #f0f0f0;
1950
1947
  }
1951
1948
 
@@ -1954,7 +1951,7 @@ ejs-multiselect {
1954
1951
  }
1955
1952
 
1956
1953
  .e-small .e-multi-select-wrapper .e-chips {
1957
- height: 22px;
1954
+ height: 24px;
1958
1955
  }
1959
1956
 
1960
1957
  .e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
@@ -1970,7 +1967,7 @@ ejs-multiselect {
1970
1967
  }
1971
1968
 
1972
1969
  .e-bigger.e-small .e-multi-select-wrapper .e-chips {
1973
- height: 28px;
1970
+ height: 30px;
1974
1971
  }
1975
1972
 
1976
1973
  .e-bigger.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
@@ -1397,7 +1397,7 @@ ejs-dropdownlist {
1397
1397
  .e-multi-select-wrapper .e-delim-values {
1398
1398
  font-family: inherit;
1399
1399
  font-size: 14px;
1400
- line-height: 32px;
1400
+ line-height: 35px;
1401
1401
  max-width: 100%;
1402
1402
  padding-left: 6px;
1403
1403
  padding-right: 6px;
@@ -1405,7 +1405,7 @@ ejs-dropdownlist {
1405
1405
  }
1406
1406
 
1407
1407
  .e-bigger .e-multi-select-wrapper .e-delim-values {
1408
- line-height: 36px;
1408
+ line-height: 39px;
1409
1409
  }
1410
1410
 
1411
1411
  .e-multi-select-list-wrapper .e-hide-listitem {
@@ -1669,7 +1669,7 @@ ejs-dropdownlist {
1669
1669
  }
1670
1670
 
1671
1671
  .e-bigger .e-checkbox .e-multi-select-wrapper .e-delim-values {
1672
- line-height: 36px;
1672
+ line-height: 39px;
1673
1673
  }
1674
1674
 
1675
1675
  .e-checkbox .e-multi-select-wrapper .e-delim-values .e-remain {
@@ -1713,13 +1713,13 @@ ejs-multiselect {
1713
1713
  }
1714
1714
 
1715
1715
  .e-small .e-multi-select-wrapper input[type='text'] {
1716
- height: 26px;
1717
- min-height: 26px;
1716
+ height: 28px;
1717
+ min-height: 28px;
1718
1718
  }
1719
1719
 
1720
1720
  .e-small .e-multi-select-wrapper .e-delim-values {
1721
1721
  font-size: 13px;
1722
- line-height: 26px;
1722
+ line-height: 28px;
1723
1723
  }
1724
1724
 
1725
1725
  .e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
@@ -1740,13 +1740,13 @@ ejs-multiselect {
1740
1740
  }
1741
1741
 
1742
1742
  .e-bigger.e-small .e-multi-select-wrapper input[type='text'] {
1743
- height: 34px;
1744
- min-height: 34px;
1743
+ height: 35px;
1744
+ min-height: 35px;
1745
1745
  }
1746
1746
 
1747
1747
  .e-small.e-bigger .e-multi-select-wrapper .e-delim-values {
1748
1748
  font-size: 14px;
1749
- line-height: 34px;
1749
+ line-height: 35px;
1750
1750
  }
1751
1751
 
1752
1752
  .e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
@@ -1792,7 +1792,6 @@ ejs-multiselect {
1792
1792
  }
1793
1793
 
1794
1794
  .e-multi-select-wrapper .e-chips > .e-chipcontent {
1795
- -webkit-text-fill-color: #333;
1796
1795
  color: #333;
1797
1796
  font-family: inherit;
1798
1797
  font-size: 15px;
@@ -1809,7 +1808,7 @@ ejs-multiselect {
1809
1808
  .e-multi-select-wrapper .e-chips {
1810
1809
  background-color: #e6e6e6;
1811
1810
  border-radius: 4px;
1812
- height: 28px;
1811
+ height: 30px;
1813
1812
  }
1814
1813
 
1815
1814
  .e-multi-select-wrapper .e-chips:hover {
@@ -1821,7 +1820,6 @@ ejs-multiselect {
1821
1820
  }
1822
1821
 
1823
1822
  .e-multi-select-wrapper .e-chips .e-chips-close::before {
1824
- -webkit-text-fill-color: #333;
1825
1823
  color: #333;
1826
1824
  font-size: 10px;
1827
1825
  }
@@ -1944,7 +1942,6 @@ ejs-multiselect {
1944
1942
  }
1945
1943
 
1946
1944
  .e-multi-select-wrapper .e-delim-values {
1947
- -webkit-text-fill-color: #333;
1948
1945
  color: #333;
1949
1946
  }
1950
1947
 
@@ -1953,7 +1950,7 @@ ejs-multiselect {
1953
1950
  }
1954
1951
 
1955
1952
  .e-small .e-multi-select-wrapper .e-chips {
1956
- height: 22px;
1953
+ height: 24px;
1957
1954
  }
1958
1955
 
1959
1956
  .e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
@@ -1969,7 +1966,7 @@ ejs-multiselect {
1969
1966
  }
1970
1967
 
1971
1968
  .e-bigger.e-small .e-multi-select-wrapper .e-chips {
1972
- height: 28px;
1969
+ height: 30px;
1973
1970
  }
1974
1971
 
1975
1972
  .e-bigger.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
@@ -1825,7 +1825,7 @@ ejs-dropdownlist {
1825
1825
  }
1826
1826
 
1827
1827
  .e-bigger .e-checkbox .e-multi-select-wrapper .e-delim-values {
1828
- line-height: 36px;
1828
+ line-height: 39px;
1829
1829
  }
1830
1830
 
1831
1831
  .e-checkbox .e-multi-select-wrapper .e-delim-values .e-remain {
@@ -1865,17 +1865,17 @@ ejs-multiselect {
1865
1865
  }
1866
1866
 
1867
1867
  .e-small .e-multi-select-wrapper {
1868
- min-height: 22px;
1868
+ min-height: 24px;
1869
1869
  }
1870
1870
 
1871
1871
  .e-small .e-multi-select-wrapper input[type='text'] {
1872
- height: 22px;
1873
- min-height: 22px;
1872
+ height: 24px;
1873
+ min-height: 24px;
1874
1874
  }
1875
1875
 
1876
1876
  .e-small .e-multi-select-wrapper .e-delim-values {
1877
1877
  font-size: 12px;
1878
- line-height: 22px;
1878
+ line-height: 24px;
1879
1879
  }
1880
1880
 
1881
1881
  .e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
@@ -1956,7 +1956,6 @@ ejs-multiselect {
1956
1956
  }
1957
1957
 
1958
1958
  .e-multi-select-wrapper .e-chips > .e-chipcontent {
1959
- -webkit-text-fill-color: #fff;
1960
1959
  color: #fff;
1961
1960
  font-family: inherit;
1962
1961
  font-size: 14px;
@@ -1985,7 +1984,6 @@ ejs-multiselect {
1985
1984
  }
1986
1985
 
1987
1986
  .e-multi-select-wrapper .e-chips .e-chips-close::before {
1988
- -webkit-text-fill-color: #fff;
1989
1987
  color: #fff;
1990
1988
  font-size: 8px;
1991
1989
  }
@@ -2124,9 +2122,7 @@ ejs-multiselect {
2124
2122
  }
2125
2123
 
2126
2124
  .e-multi-select-wrapper .e-delim-values {
2127
- -webkit-text-fill-color: #fff;
2128
2125
  color: #fff;
2129
- -webkit-text-fill-color: #212529;
2130
2126
  color: #212529;
2131
2127
  }
2132
2128
 
@@ -2135,7 +2131,7 @@ ejs-multiselect {
2135
2131
  }
2136
2132
 
2137
2133
  .e-small .e-multi-select-wrapper .e-chips {
2138
- height: 20px;
2134
+ height: 22px;
2139
2135
  }
2140
2136
 
2141
2137
  .e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
@@ -1,2 +1,2 @@
1
- //default
2
- //enddefault
1
+ //default
2
+ //enddefault
@@ -1,11 +1,11 @@
1
- //default
2
-
3
- .e-input-group.e-ddl .e-control.e-combobox~.e-ddl-icon {
4
- font-size: 8px;
5
- }
6
-
7
- .e-bigger .e-input-group.e-ddl .e-control.e-combobox~.e-ddl-icon {
8
- font-size: 10px;
9
- }
10
-
11
- //enddefault
1
+ //default
2
+
3
+ .e-input-group.e-ddl .e-control.e-combobox~.e-ddl-icon {
4
+ font-size: 8px;
5
+ }
6
+
7
+ .e-bigger .e-input-group.e-ddl .e-control.e-combobox~.e-ddl-icon {
8
+ font-size: 10px;
9
+ }
10
+
11
+ //enddefault
@@ -1,2 +1,2 @@
1
- //default
2
- //enddefault
1
+ //default
2
+ //enddefault
@@ -1,3 +1,3 @@
1
- //default
2
- //undefined
3
- //enddefault
1
+ //default
2
+ //undefined
3
+ //enddefault
@@ -1,2 +1,2 @@
1
- //default
2
- //enddefault
1
+ //default
2
+ //enddefault
@@ -1,2 +1,2 @@
1
- @import 'layout.scss';
2
- @import 'theme.scss';
1
+ @import 'layout.scss';
2
+ @import 'theme.scss';