@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
@@ -1,25 +1,25 @@
1
- @include export-module('list-box-bootstrap4-icons') {
2
- .e-listbox-tool .e-moveup::before {
3
- content: '\e808';
4
- }
5
-
6
- .e-listbox-tool .e-movedown::before {
7
- content: '\e806';
8
- }
9
-
10
- .e-listbox-tool .e-moveto::before {
11
- content: '\e807';
12
- }
13
-
14
- .e-listbox-tool .e-movefrom::before {
15
- content: '\e809';
16
- }
17
-
18
- .e-listbox-tool .e-moveallto::before {
19
- content: '\e7bb';
20
- }
21
-
22
- .e-listbox-tool .e-moveallfrom::before {
23
- content: '\e7ba';
24
- }
25
- }
1
+ @include export-module('list-box-bootstrap4-icons') {
2
+ .e-listbox-tool .e-moveup::before {
3
+ content: '\e808';
4
+ }
5
+
6
+ .e-listbox-tool .e-movedown::before {
7
+ content: '\e806';
8
+ }
9
+
10
+ .e-listbox-tool .e-moveto::before {
11
+ content: '\e807';
12
+ }
13
+
14
+ .e-listbox-tool .e-movefrom::before {
15
+ content: '\e809';
16
+ }
17
+
18
+ .e-listbox-tool .e-moveallto::before {
19
+ content: '\e7bb';
20
+ }
21
+
22
+ .e-listbox-tool .e-moveallfrom::before {
23
+ content: '\e7ba';
24
+ }
25
+ }
@@ -1,25 +1,25 @@
1
- @include export-module('list-box-fabric-dark-icons') {
2
- .e-listbox-tool .e-moveup::before {
3
- content: '\e651';
4
- }
5
-
6
- .e-listbox-tool .e-movedown::before {
7
- content: '\e652';
8
- }
9
-
10
- .e-listbox-tool .e-moveto::before {
11
- content: '\e653';
12
- }
13
-
14
- .e-listbox-tool .e-movefrom::before {
15
- content: '\e654';
16
- }
17
-
18
- .e-listbox-tool .e-moveallto::before {
19
- content: '\e655';
20
- }
21
-
22
- .e-listbox-tool .e-moveallfrom::before {
23
- content: '\e656';
24
- }
25
- }
1
+ @include export-module('list-box-fabric-dark-icons') {
2
+ .e-listbox-tool .e-moveup::before {
3
+ content: '\e651';
4
+ }
5
+
6
+ .e-listbox-tool .e-movedown::before {
7
+ content: '\e652';
8
+ }
9
+
10
+ .e-listbox-tool .e-moveto::before {
11
+ content: '\e653';
12
+ }
13
+
14
+ .e-listbox-tool .e-movefrom::before {
15
+ content: '\e654';
16
+ }
17
+
18
+ .e-listbox-tool .e-moveallto::before {
19
+ content: '\e655';
20
+ }
21
+
22
+ .e-listbox-tool .e-moveallfrom::before {
23
+ content: '\e656';
24
+ }
25
+ }
@@ -1,25 +1,25 @@
1
- @include export-module('list-box-fabric-icons') {
2
- .e-listbox-tool .e-moveup::before {
3
- content: '\e651';
4
- }
5
-
6
- .e-listbox-tool .e-movedown::before {
7
- content: '\e652';
8
- }
9
-
10
- .e-listbox-tool .e-moveto::before {
11
- content: '\e653';
12
- }
13
-
14
- .e-listbox-tool .e-movefrom::before {
15
- content: '\e654';
16
- }
17
-
18
- .e-listbox-tool .e-moveallto::before {
19
- content: '\e655';
20
- }
21
-
22
- .e-listbox-tool .e-moveallfrom::before {
23
- content: '\e656';
24
- }
25
- }
1
+ @include export-module('list-box-fabric-icons') {
2
+ .e-listbox-tool .e-moveup::before {
3
+ content: '\e651';
4
+ }
5
+
6
+ .e-listbox-tool .e-movedown::before {
7
+ content: '\e652';
8
+ }
9
+
10
+ .e-listbox-tool .e-moveto::before {
11
+ content: '\e653';
12
+ }
13
+
14
+ .e-listbox-tool .e-movefrom::before {
15
+ content: '\e654';
16
+ }
17
+
18
+ .e-listbox-tool .e-moveallto::before {
19
+ content: '\e655';
20
+ }
21
+
22
+ .e-listbox-tool .e-moveallfrom::before {
23
+ content: '\e656';
24
+ }
25
+ }
@@ -1,25 +1,25 @@
1
- @include export-module('list-box-highcontrast-light-icons') {
2
- .e-listbox-tool .e-moveup::before {
3
- content: '\e651';
4
- }
5
-
6
- .e-listbox-tool .e-movedown::before {
7
- content: '\e652';
8
- }
9
-
10
- .e-listbox-tool .e-moveto::before {
11
- content: '\e653';
12
- }
13
-
14
- .e-listbox-tool .e-movefrom::before {
15
- content: '\e654';
16
- }
17
-
18
- .e-listbox-tool .e-moveallto::before {
19
- content: '\e655';
20
- }
21
-
22
- .e-listbox-tool .e-moveallfrom::before {
23
- content: '\e656';
24
- }
25
- }
1
+ @include export-module('list-box-highcontrast-light-icons') {
2
+ .e-listbox-tool .e-moveup::before {
3
+ content: '\e651';
4
+ }
5
+
6
+ .e-listbox-tool .e-movedown::before {
7
+ content: '\e652';
8
+ }
9
+
10
+ .e-listbox-tool .e-moveto::before {
11
+ content: '\e653';
12
+ }
13
+
14
+ .e-listbox-tool .e-movefrom::before {
15
+ content: '\e654';
16
+ }
17
+
18
+ .e-listbox-tool .e-moveallto::before {
19
+ content: '\e655';
20
+ }
21
+
22
+ .e-listbox-tool .e-moveallfrom::before {
23
+ content: '\e656';
24
+ }
25
+ }
@@ -1,25 +1,25 @@
1
- @include export-module('list-box-highcontrast-icons') {
2
- .e-listbox-tool .e-moveup::before {
3
- content: '\e651';
4
- }
5
-
6
- .e-listbox-tool .e-movedown::before {
7
- content: '\e652';
8
- }
9
-
10
- .e-listbox-tool .e-moveto::before {
11
- content: '\e653';
12
- }
13
-
14
- .e-listbox-tool .e-movefrom::before {
15
- content: '\e654';
16
- }
17
-
18
- .e-listbox-tool .e-moveallto::before {
19
- content: '\e655';
20
- }
21
-
22
- .e-listbox-tool .e-moveallfrom::before {
23
- content: '\e656';
24
- }
25
- }
1
+ @include export-module('list-box-highcontrast-icons') {
2
+ .e-listbox-tool .e-moveup::before {
3
+ content: '\e651';
4
+ }
5
+
6
+ .e-listbox-tool .e-movedown::before {
7
+ content: '\e652';
8
+ }
9
+
10
+ .e-listbox-tool .e-moveto::before {
11
+ content: '\e653';
12
+ }
13
+
14
+ .e-listbox-tool .e-movefrom::before {
15
+ content: '\e654';
16
+ }
17
+
18
+ .e-listbox-tool .e-moveallto::before {
19
+ content: '\e655';
20
+ }
21
+
22
+ .e-listbox-tool .e-moveallfrom::before {
23
+ content: '\e656';
24
+ }
25
+ }
@@ -1,25 +1,25 @@
1
- @include export-module('list-box-material-dark-icons') {
2
- .e-listbox-tool .e-moveup::before {
3
- content: '\e651';
4
- }
5
-
6
- .e-listbox-tool .e-movedown::before {
7
- content: '\e652';
8
- }
9
-
10
- .e-listbox-tool .e-moveto::before {
11
- content: '\e653';
12
- }
13
-
14
- .e-listbox-tool .e-movefrom::before {
15
- content: '\e654';
16
- }
17
-
18
- .e-listbox-tool .e-moveallto::before {
19
- content: '\e655';
20
- }
21
-
22
- .e-listbox-tool .e-moveallfrom::before {
23
- content: '\e656';
24
- }
25
- }
1
+ @include export-module('list-box-material-dark-icons') {
2
+ .e-listbox-tool .e-moveup::before {
3
+ content: '\e651';
4
+ }
5
+
6
+ .e-listbox-tool .e-movedown::before {
7
+ content: '\e652';
8
+ }
9
+
10
+ .e-listbox-tool .e-moveto::before {
11
+ content: '\e653';
12
+ }
13
+
14
+ .e-listbox-tool .e-movefrom::before {
15
+ content: '\e654';
16
+ }
17
+
18
+ .e-listbox-tool .e-moveallto::before {
19
+ content: '\e655';
20
+ }
21
+
22
+ .e-listbox-tool .e-moveallfrom::before {
23
+ content: '\e656';
24
+ }
25
+ }
@@ -1,25 +1,25 @@
1
- @include export-module('list-box-material-icons') {
2
- .e-listbox-tool .e-moveup::before {
3
- content: '\e651';
4
- }
5
-
6
- .e-listbox-tool .e-movedown::before {
7
- content: '\e652';
8
- }
9
-
10
- .e-listbox-tool .e-moveto::before {
11
- content: '\e653';
12
- }
13
-
14
- .e-listbox-tool .e-movefrom::before {
15
- content: '\e654';
16
- }
17
-
18
- .e-listbox-tool .e-moveallto::before {
19
- content: '\e655';
20
- }
21
-
22
- .e-listbox-tool .e-moveallfrom::before {
23
- content: '\e656';
24
- }
25
- }
1
+ @include export-module('list-box-material-icons') {
2
+ .e-listbox-tool .e-moveup::before {
3
+ content: '\e651';
4
+ }
5
+
6
+ .e-listbox-tool .e-movedown::before {
7
+ content: '\e652';
8
+ }
9
+
10
+ .e-listbox-tool .e-moveto::before {
11
+ content: '\e653';
12
+ }
13
+
14
+ .e-listbox-tool .e-movefrom::before {
15
+ content: '\e654';
16
+ }
17
+
18
+ .e-listbox-tool .e-moveallto::before {
19
+ content: '\e655';
20
+ }
21
+
22
+ .e-listbox-tool .e-moveallfrom::before {
23
+ content: '\e656';
24
+ }
25
+ }
@@ -1242,7 +1242,7 @@ ejs-dropdownlist {
1242
1242
  }
1243
1243
 
1244
1244
  .e-bigger .e-multi-select-wrapper {
1245
- min-height: 43px;
1245
+ min-height: 36px;
1246
1246
  }
1247
1247
 
1248
1248
  .e-multi-select-wrapper.e-close-icon-hide {
@@ -1426,7 +1426,7 @@ ejs-dropdownlist {
1426
1426
  }
1427
1427
 
1428
1428
  .e-bigger .e-multi-select-wrapper .e-delim-values {
1429
- line-height: 43px;
1429
+ line-height: 34px;
1430
1430
  }
1431
1431
 
1432
1432
  .e-multi-select-list-wrapper .e-hide-listitem {
@@ -1701,7 +1701,7 @@ ejs-dropdownlist {
1701
1701
  }
1702
1702
 
1703
1703
  .e-bigger .e-checkbox .e-multi-select-wrapper .e-delim-values {
1704
- line-height: 43px;
1704
+ line-height: 34px;
1705
1705
  }
1706
1706
 
1707
1707
  .e-checkbox .e-multi-select-wrapper .e-delim-values .e-remain {
@@ -1751,7 +1751,7 @@ ejs-multiselect {
1751
1751
 
1752
1752
  .e-small .e-multi-select-wrapper .e-delim-values {
1753
1753
  font-size: 12px;
1754
- line-height: 26px;
1754
+ line-height: 28px;
1755
1755
  }
1756
1756
 
1757
1757
  .e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
@@ -1772,13 +1772,13 @@ ejs-multiselect {
1772
1772
  }
1773
1773
 
1774
1774
  .e-bigger.e-small .e-multi-select-wrapper input[type='text'] {
1775
- height: 34px;
1776
- min-height: 34px;
1775
+ height: 30px;
1776
+ min-height: 30px;
1777
1777
  }
1778
1778
 
1779
1779
  .e-small.e-bigger .e-multi-select-wrapper .e-delim-values {
1780
1780
  font-size: 13px;
1781
- line-height: 34px;
1781
+ line-height: 30px;
1782
1782
  }
1783
1783
 
1784
1784
  .e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
@@ -2161,7 +2161,6 @@ ejs-multiselect {
2161
2161
  }
2162
2162
 
2163
2163
  .e-multi-select-wrapper .e-chips > .e-chipcontent {
2164
- -webkit-text-fill-color: #fff;
2165
2164
  color: #fff;
2166
2165
  font-family: inherit;
2167
2166
  font-size: 13px;
@@ -2190,7 +2189,6 @@ ejs-multiselect {
2190
2189
  }
2191
2190
 
2192
2191
  .e-multi-select-wrapper .e-chips .e-chips-close::before {
2193
- -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
2194
2192
  color: rgba(255, 255, 255, 0.7);
2195
2193
  font-size: 16px;
2196
2194
  }
@@ -2313,7 +2311,6 @@ ejs-multiselect {
2313
2311
  }
2314
2312
 
2315
2313
  .e-multi-select-wrapper .e-delim-values {
2316
- -webkit-text-fill-color: #fff;
2317
2314
  color: #fff;
2318
2315
  }
2319
2316
 
@@ -2322,7 +2319,7 @@ ejs-multiselect {
2322
2319
  }
2323
2320
 
2324
2321
  .e-small .e-multi-select-wrapper .e-chips {
2325
- height: 20px;
2322
+ height: 22px;
2326
2323
  }
2327
2324
 
2328
2325
  .e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
@@ -341,6 +341,15 @@
341
341
  }
342
342
  }
343
343
 
344
+ @keyframes slideTopUp {
345
+ from {
346
+ transform: translate3d(0, 0, 0) scale(1);
347
+ }
348
+ to {
349
+ transform: translate3d(0, 0, 0) scale(1);
350
+ }
351
+ }
352
+
344
353
  @keyframes material-spinner-rotate {
345
354
  0% {
346
355
  transform: rotate(0deg);
@@ -710,6 +719,15 @@ ejs-dropdownlist {
710
719
  }
711
720
  }
712
721
 
722
+ @keyframes slideTopUp {
723
+ from {
724
+ transform: translate3d(0, 0, 0) scale(1);
725
+ }
726
+ to {
727
+ transform: translate3d(0, 0, 0) scale(1);
728
+ }
729
+ }
730
+
713
731
  @keyframes material-spinner-rotate {
714
732
  0% {
715
733
  transform: rotate(0deg);
@@ -1163,6 +1181,15 @@ ejs-dropdownlist {
1163
1181
  }
1164
1182
  }
1165
1183
 
1184
+ @keyframes slideTopUp {
1185
+ from {
1186
+ transform: translate3d(0, 0, 0) scale(1);
1187
+ }
1188
+ to {
1189
+ transform: translate3d(0, 0, 0) scale(1);
1190
+ }
1191
+ }
1192
+
1166
1193
  @keyframes material-spinner-rotate {
1167
1194
  0% {
1168
1195
  transform: rotate(0deg);
@@ -1514,7 +1541,7 @@ ejs-dropdownlist {
1514
1541
  }
1515
1542
 
1516
1543
  .e-bigger .e-multi-select-wrapper {
1517
- min-height: 37px;
1544
+ min-height: 36px;
1518
1545
  }
1519
1546
 
1520
1547
  .e-multi-select-wrapper.e-close-icon-hide {
@@ -2023,7 +2050,7 @@ ejs-multiselect {
2023
2050
 
2024
2051
  .e-small .e-multi-select-wrapper .e-delim-values {
2025
2052
  font-size: 12px;
2026
- line-height: 26px;
2053
+ line-height: 28px;
2027
2054
  }
2028
2055
 
2029
2056
  .e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
@@ -2044,13 +2071,13 @@ ejs-multiselect {
2044
2071
  }
2045
2072
 
2046
2073
  .e-bigger.e-small .e-multi-select-wrapper input[type='text'] {
2047
- height: 28px;
2048
- min-height: 28px;
2074
+ height: 30px;
2075
+ min-height: 30px;
2049
2076
  }
2050
2077
 
2051
2078
  .e-small.e-bigger .e-multi-select-wrapper .e-delim-values {
2052
2079
  font-size: 13px;
2053
- line-height: 28px;
2080
+ line-height: 30px;
2054
2081
  }
2055
2082
 
2056
2083
  .e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker {
@@ -2433,7 +2460,6 @@ ejs-multiselect {
2433
2460
  }
2434
2461
 
2435
2462
  .e-multi-select-wrapper .e-chips > .e-chipcontent {
2436
- -webkit-text-fill-color: rgba(0, 0, 0, 0.87);
2437
2463
  color: rgba(0, 0, 0, 0.87);
2438
2464
  font-family: inherit;
2439
2465
  font-size: 13px;
@@ -2462,7 +2488,6 @@ ejs-multiselect {
2462
2488
  }
2463
2489
 
2464
2490
  .e-multi-select-wrapper .e-chips .e-chips-close::before {
2465
- -webkit-text-fill-color: rgba(0, 0, 0, 0.54);
2466
2491
  color: rgba(0, 0, 0, 0.54);
2467
2492
  font-size: 16px;
2468
2493
  }
@@ -2585,7 +2610,6 @@ ejs-multiselect {
2585
2610
  }
2586
2611
 
2587
2612
  .e-multi-select-wrapper .e-delim-values {
2588
- -webkit-text-fill-color: rgba(0, 0, 0, 0.87);
2589
2613
  color: rgba(0, 0, 0, 0.87);
2590
2614
  }
2591
2615
 
@@ -2594,7 +2618,7 @@ ejs-multiselect {
2594
2618
  }
2595
2619
 
2596
2620
  .e-small .e-multi-select-wrapper .e-chips {
2597
- height: 20px;
2621
+ height: 22px;
2598
2622
  }
2599
2623
 
2600
2624
  .e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
@@ -2610,7 +2634,7 @@ ejs-multiselect {
2610
2634
  }
2611
2635
 
2612
2636
  .e-bigger.e-small .e-multi-select-wrapper .e-chips {
2613
- height: 22px;
2637
+ height: 24px;
2614
2638
  }
2615
2639
 
2616
2640
  .e-bigger.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
@@ -1,2 +1,2 @@
1
- @import 'layout.scss';
2
- @import 'theme.scss';
1
+ @import 'layout.scss';
2
+ @import 'theme.scss';