@syncfusion/ej2-dropdowns 27.2.4 → 28.1.33

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 (223) hide show
  1. package/README.md +2 -2
  2. package/dist/ej2-dropdowns.min.js +3 -3
  3. package/dist/ej2-dropdowns.umd.min.js +3 -3
  4. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-dropdowns.es2015.js +507 -39
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +506 -37
  8. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  9. package/dist/global/ej2-dropdowns.min.js +3 -3
  10. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  11. package/dist/global/index.d.ts +2 -2
  12. package/package.json +13 -13
  13. package/src/auto-complete/auto-complete.js +5 -2
  14. package/src/combo-box/combo-box.js +1 -1
  15. package/src/common/incremental-search.d.ts +1 -1
  16. package/src/common/incremental-search.js +5 -1
  17. package/src/common/virtual-scroll.js +2 -1
  18. package/src/drop-down-base/drop-down-base.js +21 -3
  19. package/src/drop-down-list/drop-down-list-model.d.ts +31 -0
  20. package/src/drop-down-list/drop-down-list.d.ts +44 -1
  21. package/src/drop-down-list/drop-down-list.js +202 -13
  22. package/src/drop-down-tree/drop-down-tree.js +4 -1
  23. package/src/list-box/list-box.d.ts +4 -0
  24. package/src/list-box/list-box.js +9 -4
  25. package/src/mention/mention.js +6 -1
  26. package/src/multi-select/multi-select-model.d.ts +31 -0
  27. package/src/multi-select/multi-select.d.ts +45 -0
  28. package/src/multi-select/multi-select.js +251 -10
  29. package/styles/auto-complete/_tailwind3-definition.scss +2 -0
  30. package/styles/auto-complete/bds.css +75 -0
  31. package/styles/auto-complete/bds.scss +4 -0
  32. package/styles/auto-complete/highcontrast.css +1 -1
  33. package/styles/auto-complete/tailwind3.css +101 -0
  34. package/styles/auto-complete/tailwind3.scss +4 -0
  35. package/styles/bds-lite.css +3013 -0
  36. package/styles/bds-lite.scss +28 -0
  37. package/styles/bds.css +3855 -0
  38. package/styles/bds.scss +33 -0
  39. package/styles/bootstrap-dark-lite.css +41 -2
  40. package/styles/bootstrap-dark.css +41 -2
  41. package/styles/bootstrap-lite.css +30 -1
  42. package/styles/bootstrap.css +30 -1
  43. package/styles/bootstrap4-lite.css +30 -0
  44. package/styles/bootstrap4.css +30 -0
  45. package/styles/bootstrap5-dark-lite.css +30 -0
  46. package/styles/bootstrap5-dark.css +30 -0
  47. package/styles/bootstrap5-lite.css +30 -0
  48. package/styles/bootstrap5.3-lite.css +30 -3
  49. package/styles/bootstrap5.3.css +30 -3
  50. package/styles/bootstrap5.css +30 -0
  51. package/styles/combo-box/_tailwind3-definition.scss +2 -0
  52. package/styles/combo-box/bds.css +75 -0
  53. package/styles/combo-box/bds.scss +4 -0
  54. package/styles/combo-box/highcontrast.css +1 -1
  55. package/styles/combo-box/tailwind3.css +101 -0
  56. package/styles/combo-box/tailwind3.scss +4 -0
  57. package/styles/drop-down-base/_bigger.scss +3 -0
  58. package/styles/drop-down-base/_layout.scss +7 -0
  59. package/styles/drop-down-base/_tailwind3-definition.scss +98 -0
  60. package/styles/drop-down-base/bds.css +496 -0
  61. package/styles/drop-down-base/bds.scss +4 -0
  62. package/styles/drop-down-base/bootstrap-dark.css +4 -0
  63. package/styles/drop-down-base/bootstrap.css +4 -0
  64. package/styles/drop-down-base/bootstrap4.css +4 -0
  65. package/styles/drop-down-base/bootstrap5-dark.css +4 -0
  66. package/styles/drop-down-base/bootstrap5.3.css +4 -0
  67. package/styles/drop-down-base/bootstrap5.css +4 -0
  68. package/styles/drop-down-base/fabric-dark.css +4 -0
  69. package/styles/drop-down-base/fabric.css +4 -0
  70. package/styles/drop-down-base/fluent-dark.css +4 -0
  71. package/styles/drop-down-base/fluent.css +4 -0
  72. package/styles/drop-down-base/fluent2.css +9 -5
  73. package/styles/drop-down-base/highcontrast-light.css +4 -0
  74. package/styles/drop-down-base/highcontrast.css +4 -0
  75. package/styles/drop-down-base/material-dark.css +4 -0
  76. package/styles/drop-down-base/material.css +4 -0
  77. package/styles/drop-down-base/material3-dark.css +4 -0
  78. package/styles/drop-down-base/material3.css +4 -0
  79. package/styles/drop-down-base/tailwind-dark.css +4 -0
  80. package/styles/drop-down-base/tailwind.css +4 -0
  81. package/styles/drop-down-base/tailwind3.css +392 -0
  82. package/styles/drop-down-base/tailwind3.scss +4 -0
  83. package/styles/drop-down-list/_highcontrast-definition.scss +1 -1
  84. package/styles/drop-down-list/_layout.scss +18 -2
  85. package/styles/drop-down-list/_tailwind3-definition.scss +135 -0
  86. package/styles/drop-down-list/_theme.scss +3 -1
  87. package/styles/drop-down-list/bds.css +609 -0
  88. package/styles/drop-down-list/bds.scss +10 -0
  89. package/styles/drop-down-list/bootstrap-dark.css +18 -1
  90. package/styles/drop-down-list/bootstrap.css +13 -1
  91. package/styles/drop-down-list/bootstrap4.css +13 -0
  92. package/styles/drop-down-list/bootstrap5-dark.css +13 -0
  93. package/styles/drop-down-list/bootstrap5.3.css +13 -0
  94. package/styles/drop-down-list/bootstrap5.css +13 -0
  95. package/styles/drop-down-list/fabric-dark.css +18 -1
  96. package/styles/drop-down-list/fabric.css +13 -1
  97. package/styles/drop-down-list/fluent-dark.css +13 -1
  98. package/styles/drop-down-list/fluent.css +13 -1
  99. package/styles/drop-down-list/fluent2.css +13 -1
  100. package/styles/drop-down-list/highcontrast-light.css +9 -1
  101. package/styles/drop-down-list/highcontrast.css +19 -1
  102. package/styles/drop-down-list/icons/_bootstrap-dark.scss +4 -0
  103. package/styles/drop-down-list/icons/_bootstrap.scss +4 -0
  104. package/styles/drop-down-list/icons/_bootstrap4.scss +4 -0
  105. package/styles/drop-down-list/icons/_bootstrap5.3.scss +4 -0
  106. package/styles/drop-down-list/icons/_bootstrap5.scss +4 -0
  107. package/styles/drop-down-list/icons/_fabric-dark.scss +4 -0
  108. package/styles/drop-down-list/icons/_fabric.scss +4 -0
  109. package/styles/drop-down-list/icons/_fluent.scss +4 -0
  110. package/styles/drop-down-list/icons/_fluent2.scss +4 -0
  111. package/styles/drop-down-list/icons/_highcontrast.scss +4 -0
  112. package/styles/drop-down-list/icons/_material-dark.scss +4 -0
  113. package/styles/drop-down-list/icons/_material.scss +4 -0
  114. package/styles/drop-down-list/icons/_material3.scss +4 -0
  115. package/styles/drop-down-list/icons/_tailwind.scss +4 -0
  116. package/styles/drop-down-list/icons/_tailwind3.scss +14 -0
  117. package/styles/drop-down-list/material-dark.css +18 -1
  118. package/styles/drop-down-list/material.css +13 -1
  119. package/styles/drop-down-list/material3-dark.css +13 -1
  120. package/styles/drop-down-list/material3.css +13 -1
  121. package/styles/drop-down-list/tailwind-dark.css +13 -1
  122. package/styles/drop-down-list/tailwind.css +13 -1
  123. package/styles/drop-down-list/tailwind3.css +455 -0
  124. package/styles/drop-down-list/tailwind3.scss +10 -0
  125. package/styles/drop-down-tree/_bigger.scss +41 -7
  126. package/styles/drop-down-tree/_layout.scss +34 -10
  127. package/styles/drop-down-tree/_tailwind3-definition.scss +67 -0
  128. package/styles/drop-down-tree/_theme.scss +3 -3
  129. package/styles/drop-down-tree/bds.css +712 -0
  130. package/styles/drop-down-tree/bds.scss +10 -0
  131. package/styles/drop-down-tree/bootstrap5.3.css +0 -3
  132. package/styles/drop-down-tree/icons/_tailwind3.scss +11 -0
  133. package/styles/drop-down-tree/tailwind3.css +512 -0
  134. package/styles/drop-down-tree/tailwind3.scss +10 -0
  135. package/styles/fabric-dark-lite.css +40 -1
  136. package/styles/fabric-dark.css +40 -1
  137. package/styles/fabric-lite.css +30 -1
  138. package/styles/fabric.css +30 -1
  139. package/styles/fluent-dark-lite.css +30 -1
  140. package/styles/fluent-dark.css +30 -1
  141. package/styles/fluent-lite.css +30 -1
  142. package/styles/fluent.css +30 -1
  143. package/styles/fluent2-lite.css +45 -12
  144. package/styles/fluent2.css +45 -12
  145. package/styles/highcontrast-light-lite.css +22 -1
  146. package/styles/highcontrast-light.css +22 -1
  147. package/styles/highcontrast-lite.css +41 -1
  148. package/styles/highcontrast.css +41 -1
  149. package/styles/list-box/_bigger.scss +18 -1
  150. package/styles/list-box/_layout.scss +29 -3
  151. package/styles/list-box/_tailwind3-definition.scss +123 -0
  152. package/styles/list-box/_theme.scss +11 -0
  153. package/styles/list-box/bds.css +971 -0
  154. package/styles/list-box/bds.scss +6 -0
  155. package/styles/list-box/fluent2.css +1 -1
  156. package/styles/list-box/icons/_tailwind3.scss +25 -0
  157. package/styles/list-box/tailwind3.css +991 -0
  158. package/styles/list-box/tailwind3.scss +6 -0
  159. package/styles/material-dark-lite.css +40 -1
  160. package/styles/material-dark.css +40 -1
  161. package/styles/material-lite.css +30 -1
  162. package/styles/material.css +30 -1
  163. package/styles/material3-dark-lite.css +36 -9
  164. package/styles/material3-dark.css +36 -9
  165. package/styles/material3-lite.css +36 -9
  166. package/styles/material3.css +36 -9
  167. package/styles/mention/_tailwind3-definition.scss +1 -0
  168. package/styles/mention/bds.css +78 -0
  169. package/styles/mention/bds.scss +6 -0
  170. package/styles/mention/tailwind3.css +67 -0
  171. package/styles/mention/tailwind3.scss +6 -0
  172. package/styles/multi-select/_bigger.scss +2 -2
  173. package/styles/multi-select/_bootstrap-dark-definition.scss +1 -1
  174. package/styles/multi-select/_layout.scss +27 -2
  175. package/styles/multi-select/_material3-definition.scss +2 -2
  176. package/styles/multi-select/_tailwind3-definition.scss +227 -0
  177. package/styles/multi-select/_theme.scss +1 -1
  178. package/styles/multi-select/bds.css +1575 -0
  179. package/styles/multi-select/bds.scss +10 -0
  180. package/styles/multi-select/bootstrap-dark.css +19 -1
  181. package/styles/multi-select/bootstrap.css +13 -0
  182. package/styles/multi-select/bootstrap4.css +13 -0
  183. package/styles/multi-select/bootstrap5-dark.css +13 -0
  184. package/styles/multi-select/bootstrap5.3.css +13 -0
  185. package/styles/multi-select/bootstrap5.css +13 -0
  186. package/styles/multi-select/fabric-dark.css +18 -0
  187. package/styles/multi-select/fabric.css +13 -0
  188. package/styles/multi-select/fluent-dark.css +13 -0
  189. package/styles/multi-select/fluent.css +13 -0
  190. package/styles/multi-select/fluent2.css +22 -5
  191. package/styles/multi-select/highcontrast-light.css +9 -0
  192. package/styles/multi-select/highcontrast.css +18 -0
  193. package/styles/multi-select/icons/_bootstrap-dark.scss +4 -0
  194. package/styles/multi-select/icons/_bootstrap.scss +4 -0
  195. package/styles/multi-select/icons/_bootstrap4.scss +4 -0
  196. package/styles/multi-select/icons/_bootstrap5.3.scss +4 -0
  197. package/styles/multi-select/icons/_bootstrap5.scss +4 -0
  198. package/styles/multi-select/icons/_fabric-dark.scss +4 -0
  199. package/styles/multi-select/icons/_fabric.scss +4 -0
  200. package/styles/multi-select/icons/_fluent.scss +4 -0
  201. package/styles/multi-select/icons/_fluent2.scss +4 -0
  202. package/styles/multi-select/icons/_highcontrast.scss +4 -0
  203. package/styles/multi-select/icons/_material-dark.scss +4 -0
  204. package/styles/multi-select/icons/_material.scss +4 -0
  205. package/styles/multi-select/icons/_material3.scss +4 -0
  206. package/styles/multi-select/icons/_tailwind.scss +4 -0
  207. package/styles/multi-select/icons/_tailwind3.scss +26 -0
  208. package/styles/multi-select/material-dark.css +18 -0
  209. package/styles/multi-select/material.css +13 -0
  210. package/styles/multi-select/material3-dark.css +19 -8
  211. package/styles/multi-select/material3.css +19 -8
  212. package/styles/multi-select/tailwind-dark.css +13 -0
  213. package/styles/multi-select/tailwind.css +13 -0
  214. package/styles/multi-select/tailwind3.css +1398 -0
  215. package/styles/multi-select/tailwind3.scss +10 -0
  216. package/styles/tailwind-dark-lite.css +30 -1
  217. package/styles/tailwind-dark.css +30 -1
  218. package/styles/tailwind-lite.css +30 -1
  219. package/styles/tailwind.css +30 -1
  220. package/styles/tailwind3-lite.css +2889 -0
  221. package/styles/tailwind3-lite.scss +28 -0
  222. package/styles/tailwind3.css +3550 -0
  223. package/styles/tailwind3.scss +33 -0
@@ -150,6 +150,10 @@
150
150
  font-family: "e-icons";
151
151
  }
152
152
 
153
+ .e-ddl.e-popup.e-resize .e-icons.e-resizer-right::before {
154
+ content: "\e832";
155
+ }
156
+
153
157
  .e-popup.e-wide-popup.e-ddl-device.e-popup-close {
154
158
  display: block;
155
159
  visibility: hidden;
@@ -334,6 +338,15 @@ ejs-dropdownlist {
334
338
  min-height: 33px;
335
339
  }
336
340
 
341
+ .e-ddl.e-popup.e-resize .e-resizer-right {
342
+ bottom: 0;
343
+ right: 0;
344
+ cursor: nwse-resize;
345
+ height: 15px;
346
+ position: absolute;
347
+ width: 15px;
348
+ }
349
+
337
350
  .e-popup {
338
351
  border-color: #e5e7eb;
339
352
  }
@@ -345,7 +358,6 @@ ejs-dropdownlist {
345
358
 
346
359
  .e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
347
360
  border-color: transparent;
348
- background: none;
349
361
  }
350
362
 
351
363
  .e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
@@ -0,0 +1,455 @@
1
+
2
+
3
+
4
+
5
+ /* stylelint-disable property-no-vendor-prefix */
6
+ /* stylelint-disable */
7
+ .e-filled.e-float-input.e-error label.e-float-text,
8
+ .e-filled.e-float-input.e-control-wrapper.e-error label.e-float-text,
9
+ .e-filled.e-float-input.e-error input:focus ~ label.e-float-text,
10
+ .e-filled.e-float-input.e-control-wrapper.e-error input:focus ~ label.e-float-text,
11
+ .e-filled.e-float-input.e-error textarea:focus ~ label.e-float-text,
12
+ .e-filled.e-float-input.e-control-wrapper.e-error textarea:focus ~ label.e-float-text,
13
+ .e-filled.e-float-input.e-error.e-input-focus input ~ label.e-float-text,
14
+ .e-filled.e-float-input.e-control-wrapper.e-error.e-input-focus input ~ label.e-float-text {
15
+ color: var(--color-sf-danger) !important;
16
+ }
17
+
18
+ /* stylelint-disable-line no-empty-source */
19
+ /* stylelint-disable property-no-vendor-prefix */
20
+ @-webkit-keyframes material-spinner-rotate {
21
+ 0% {
22
+ -webkit-transform: rotate(0);
23
+ transform: rotate(0);
24
+ }
25
+ 100% {
26
+ -webkit-transform: rotate(360deg);
27
+ transform: rotate(360deg);
28
+ }
29
+ }
30
+ @keyframes material-spinner-rotate {
31
+ 0% {
32
+ -webkit-transform: rotate(0);
33
+ transform: rotate(0);
34
+ }
35
+ 100% {
36
+ -webkit-transform: rotate(360deg);
37
+ transform: rotate(360deg);
38
+ }
39
+ }
40
+ @-webkit-keyframes fabric-spinner-rotate {
41
+ 0% {
42
+ -webkit-transform: rotate(0);
43
+ transform: rotate(0);
44
+ }
45
+ 100% {
46
+ -webkit-transform: rotate(360deg);
47
+ transform: rotate(360deg);
48
+ }
49
+ }
50
+ @keyframes fabric-spinner-rotate {
51
+ 0% {
52
+ -webkit-transform: rotate(0);
53
+ transform: rotate(0);
54
+ }
55
+ 100% {
56
+ -webkit-transform: rotate(360deg);
57
+ transform: rotate(360deg);
58
+ }
59
+ }
60
+ .e-dropdownbase .e-list-group-item,
61
+ .e-fixed-head {
62
+ font-size: 12px;
63
+ }
64
+
65
+ .e-small .e-dropdownbase .e-list-group-item,
66
+ .e-small .e-fixed-head,
67
+ .e-small.e-dropdownbase .e-list-group-item,
68
+ .e-small.e-fixed-head {
69
+ font-size: 10px;
70
+ }
71
+
72
+ .e-dropdownbase .e-list-item .e-list-icon {
73
+ padding: 0 8px 0 0;
74
+ }
75
+
76
+ .e-small .e-dropdownbase .e-list-item .e-list-icon {
77
+ padding: 0 6px 0 0;
78
+ }
79
+
80
+ .e-popup.e-ddl {
81
+ border-radius: 4px;
82
+ -webkit-box-shadow: none;
83
+ box-shadow: none;
84
+ margin-top: 3px;
85
+ }
86
+ .e-popup.e-ddl .e-input-group {
87
+ width: auto;
88
+ }
89
+ .e-popup.e-ddl .e-input-group input {
90
+ line-height: 15px;
91
+ }
92
+
93
+ .e-popup.e-ddl .e-dropdownbase {
94
+ min-height: 26px;
95
+ }
96
+
97
+ .e-popup.e-ddl .e-filter-parent .e-input-group {
98
+ display: -webkit-box;
99
+ display: -ms-flexbox;
100
+ display: flex;
101
+ width: auto;
102
+ }
103
+ .e-popup.e-ddl .e-filter-parent .e-input-group .e-back-icon {
104
+ border: 0;
105
+ }
106
+
107
+ .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
108
+ .e-float-input.e-control-wrapper.e-ddl input[readonly] {
109
+ background: transparent;
110
+ }
111
+
112
+ .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
113
+ .e-float-input.e-control-wrapper.e-ddl.e-readonly input[readonly] {
114
+ background: var(--color-sf-content-bg-color-alt2);
115
+ }
116
+
117
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:active,
118
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon:hover,
119
+ .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:active,
120
+ .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-ddl-icon:hover,
121
+ .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active,
122
+ .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:hover,
123
+ .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
124
+ .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:hover {
125
+ background: transparent;
126
+ color: var(--color-sf-icon-color);
127
+ }
128
+
129
+ .e-input-group.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
130
+ .e-input-group.e-control-wrapper.e-ddl .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
131
+ .e-float-input.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon,
132
+ .e-float-input.e-control-wrapper.e-ddl input[readonly] ~ span.e-input-group-icon.e-ddl-icon {
133
+ background: transparent;
134
+ color: var(--color-sf-icon-color);
135
+ }
136
+
137
+ .e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
138
+ .e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
139
+ .e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
140
+ .e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
141
+ background: var(--color-sf-content-bg-color-alt2);
142
+ }
143
+
144
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
145
+ .e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
146
+ .e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
147
+ .e-control.e-dropdownlist .e-input-group.e-ddl .e-input-group-icon {
148
+ border: 0;
149
+ }
150
+
151
+ .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-input-group-icon:active,
152
+ .e-control.e-dropdownlist .e-input-group:not(.e-disabled) .e-input-group-icon:active,
153
+ .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-back-icon:active,
154
+ .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon:active {
155
+ -webkit-box-shadow: none;
156
+ box-shadow: none;
157
+ }
158
+
159
+ .e-ddl.e-popup .e-input-group:not(.e-disabled) .e-clear-icon {
160
+ background: transparent;
161
+ display: -webkit-box;
162
+ display: -ms-flexbox;
163
+ display: flex;
164
+ position: relative;
165
+ }
166
+
167
+ .e-ddl.e-popup .e-filter-parent .e-input-group,
168
+ .e-ddl.e-popup .e-filter-parent {
169
+ background: var(--color-sf-content-bg-color);
170
+ }
171
+
172
+ .e-input-group .e-control.e-dropdownlist ~ .e-ddl-icon {
173
+ font-size: 14px;
174
+ }
175
+
176
+ .e-ddl .e-search-icon::before {
177
+ content: "\e754";
178
+ }
179
+
180
+ .e-ddl .e-back-icon::before {
181
+ content: "\e773";
182
+ }
183
+
184
+ .e-ddl.e-input-group.e-control-wrapper .e-ddl-icon::before {
185
+ content: "\e729";
186
+ font-family: "e-icons";
187
+ }
188
+
189
+ .e-popup.e-wide-popup.e-ddl-device.e-popup-close {
190
+ display: block;
191
+ visibility: hidden;
192
+ }
193
+
194
+ .e-popup-full-page {
195
+ bottom: 0;
196
+ left: 0;
197
+ margin: 0;
198
+ overflow: hidden;
199
+ padding: 0;
200
+ right: 0;
201
+ top: 0;
202
+ }
203
+ .e-popup-full-page .e-popup-full-page.e-ddl.e-popup.e-ddl-device-filter {
204
+ margin: 0;
205
+ }
206
+
207
+ .e-ddl.e-control-wrapper .e-ddl-disable-icon {
208
+ position: relative;
209
+ }
210
+
211
+ .e-ddl.e-control-wrapper .e-ddl-disable-icon::before {
212
+ content: "";
213
+ }
214
+
215
+ .e-ddl-device-filter .e-filter-parent {
216
+ background-color: var(--color-sf-content-bg-color);
217
+ }
218
+
219
+ /* stylelint-disable property-no-vendor-prefix */
220
+ .e-ddl input.e-input::-webkit-contacts-auto-fill-button {
221
+ display: none;
222
+ pointer-events: none;
223
+ position: absolute;
224
+ right: 0;
225
+ visibility: hidden;
226
+ }
227
+
228
+ /* stylelint-enable property-no-vendor-prefix */
229
+ .e-filter-parent {
230
+ border: 0;
231
+ border-top-width: 0;
232
+ -webkit-box-shadow: 0 1.5px 5px -2px rgba(0, 0, 0, 0.3);
233
+ box-shadow: 0 1.5px 5px -2px rgba(0, 0, 0, 0.3);
234
+ display: block;
235
+ padding: 6px;
236
+ }
237
+
238
+ .e-ddl.e-input-group:not(.e-disabled) {
239
+ cursor: pointer;
240
+ }
241
+
242
+ .e-ddl.e-popup.e-ddl-device-filter .e-input-group.e-input-focus::before, .e-ddl.e-popup.e-ddl-device-filter .e-input-group.e-input-focus::after {
243
+ width: 0;
244
+ }
245
+
246
+ .e-ddl.e-popup {
247
+ background: var(--color-sf-flyout-bg-color);
248
+ border: 1px solid var(--color-sf-border-light);
249
+ position: absolute;
250
+ }
251
+ .e-ddl.e-popup .e-search-icon {
252
+ margin: 0;
253
+ opacity: 0.57;
254
+ padding: 12px 8px 8px;
255
+ }
256
+
257
+ .e-ddl.e-popup .e-filter-parent .e-back-icon {
258
+ padding: 0 8px;
259
+ }
260
+
261
+ .e-ddl.e-popup .e-input-group {
262
+ margin-bottom: 0;
263
+ }
264
+
265
+ .e-ddl.e-popup .e-ddl-footer, .e-ddl.e-popup .e-ddl-header {
266
+ cursor: default;
267
+ }
268
+
269
+ /* stylelint-disable property-no-vendor-prefix */
270
+ .e-ddl.e-input-group .e-ddl-hidden,
271
+ .e-ddl.e-float-input .e-ddl-hidden {
272
+ -webkit-appearance: initial;
273
+ border: 0;
274
+ height: 0;
275
+ padding: 0;
276
+ visibility: hidden;
277
+ width: 0;
278
+ }
279
+
280
+ .e-ddl.e-input-group,
281
+ .e-ddl.e-input-group.e-input-focus:focus {
282
+ outline: none;
283
+ }
284
+
285
+ .e-dropdownbase .e-list-item .e-highlight {
286
+ display: inline;
287
+ font-weight: bold;
288
+ vertical-align: baseline;
289
+ }
290
+
291
+ .e-ddl.e-input-group input[readonly] ~ .e-clear-icon:not(.e-clear-icon-hide),
292
+ .e-float-input input[readonly] ~ .e-clear-icon:not(.e-clear-icon-hide),
293
+ .e-float-input.e-input-group input[readonly] ~ .e-clear-icon:not(.e-clear-icon-hide) {
294
+ opacity: 1;
295
+ }
296
+
297
+ .e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon,
298
+ .e-input-group input.e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon,
299
+ .e-input-group.e-control-wrapper input.e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon,
300
+ .e-float-input input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon,
301
+ .e-float-input.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon,
302
+ .e-float-input.e-input-group input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon,
303
+ .e-float-input.e-input-group.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon {
304
+ display: -webkit-box;
305
+ display: -ms-flexbox;
306
+ display: flex;
307
+ }
308
+
309
+ .e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
310
+ .e-input-group input.e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
311
+ .e-input-group.e-control-wrapper input.e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
312
+ .e-float-input input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
313
+ .e-float-input.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
314
+ .e-float-input.e-input-group input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
315
+ .e-float-input.e-input-group.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide {
316
+ display: none;
317
+ }
318
+
319
+ .e-input-group.e-static-clear input.e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
320
+ .e-input-group.e-static-clear.e-control-wrapper input.e-dropdownlist.e-input:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
321
+ .e-float-input.e-static-clear input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
322
+ .e-float-input.e-static-clear.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
323
+ .e-float-input.e-static-clear.e-input-group input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide,
324
+ .e-float-input.e-static-clear.e-input-group.e-control-wrapper input.e-dropdownlist:not(:valid):first-child ~ .e-clear-icon.e-clear-icon-hide {
325
+ cursor: pointer;
326
+ display: -webkit-box;
327
+ display: -ms-flexbox;
328
+ display: flex;
329
+ }
330
+
331
+ .e-ddl.e-input-group .e-input-value,
332
+ .e-ddl.e-input-group .e-input-value:focus {
333
+ font-family: inherit;
334
+ font-size: 14px;
335
+ height: auto;
336
+ margin: 0;
337
+ outline: none;
338
+ width: 100%;
339
+ overflow: hidden;
340
+ }
341
+ .e-ddl.e-input-group input[readonly].e-input,
342
+ .e-ddl.e-input-group input[readonly],
343
+ .e-ddl.e-input-group .e-dropdownlist {
344
+ pointer-events: none;
345
+ }
346
+
347
+ .e-ddl.e-popup.e-popup-open .e-list-item.e-disabled {
348
+ opacity: 0.7;
349
+ pointer-events: none;
350
+ }
351
+
352
+ ejs-autocomplete,
353
+ ejs-combobox,
354
+ ejs-dropdownlist {
355
+ display: block;
356
+ }
357
+
358
+ .e-small .e-ddl.e-popup .e-list-item,
359
+ .e-input-group.e-ddl.e-small .e-list-item {
360
+ font-size: 12px;
361
+ }
362
+ .e-small .e-ddl.e-popup .e-list-group-item,
363
+ .e-input-group.e-ddl.e-small .e-list-group-item {
364
+ font-size: 12px;
365
+ }
366
+
367
+ .e-small.e-ddl.e-popup .e-list-item,
368
+ .e-input-group.e-ddl.e-small .e-list-item {
369
+ font-size: 12px;
370
+ }
371
+ .e-small.e-ddl.e-popup .e-list-group-item,
372
+ .e-input-group.e-ddl.e-small .e-list-group-item {
373
+ font-size: 12px;
374
+ }
375
+
376
+ .e-content-placeholder.e-ddl.e-placeholder-ddl,
377
+ .e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
378
+ .e-content-placeholder.e-combobox.e-placeholder-combobox {
379
+ background-size: 300px 33px;
380
+ min-height: 33px;
381
+ }
382
+
383
+ .e-ddl.e-popup.e-resize .e-resizer-right {
384
+ bottom: 0;
385
+ right: 0;
386
+ cursor: nwse-resize;
387
+ height: 15px;
388
+ position: absolute;
389
+ width: 15px;
390
+ }
391
+
392
+ .e-popup {
393
+ border-color: var(--color-sf-border-light);
394
+ }
395
+
396
+ .e-float-input.e-input-group.e-ddl.e-control.e-icon-anim > .e-float-text,
397
+ .e-float-input.e-input-focus.e-input-group.e-ddl.e-control.e-keyboard > .e-float-text {
398
+ color: var(--color-sf-content-text-color-selected);
399
+ }
400
+
401
+ .e-ddl.e-popup .e-filter-parent .e-input-group input.e-input-filter {
402
+ border-color: transparent;
403
+ }
404
+
405
+ .e-bigger .e-input-group.e-ddl .e-input-filter, .e-bigger .e-input-group.e-ddl .e-input-filter:focus {
406
+ margin-left: -20px;
407
+ }
408
+
409
+ .e-bigger .e-ddl.e-popup .e-list-item {
410
+ font-size: 16px;
411
+ }
412
+ .e-bigger .e-ddl.e-popup .e-list-group-item {
413
+ font-size: 16px;
414
+ }
415
+ .e-bigger .e-ddl.e-popup .e-input-group {
416
+ padding: 4px 0;
417
+ }
418
+
419
+ .e-bigger.e-ddl.e-popup .e-list-item {
420
+ font-size: 16px;
421
+ }
422
+ .e-bigger.e-ddl.e-popup .e-list-group-item {
423
+ font-size: 16px;
424
+ }
425
+ .e-bigger.e-ddl.e-popup .e-input-group {
426
+ padding: 4px 0;
427
+ }
428
+
429
+ .e-bigger.e-small .e-ddl.e-popup .e-list-item,
430
+ .e-bigger .e-input-group.e-ddl.e-small .e-list-item {
431
+ font-size: 14px;
432
+ }
433
+ .e-bigger.e-small .e-ddl.e-popup .e-list-group-item,
434
+ .e-bigger .e-input-group.e-ddl.e-small .e-list-group-item {
435
+ font-size: 14px;
436
+ }
437
+
438
+ .e-bigger.e-small.e-ddl.e-popup .e-list-item,
439
+ .e-bigger .e-input-group.e-ddl.e-small .e-list-item {
440
+ font-size: 14px;
441
+ }
442
+ .e-bigger.e-small.e-ddl.e-popup .e-list-group-item,
443
+ .e-bigger .e-input-group.e-ddl.e-small .e-list-group-item {
444
+ font-size: 14px;
445
+ }
446
+
447
+ .e-bigger .e-content-placeholder.e-ddl.e-placeholder-ddl,
448
+ .e-bigger.e-content-placeholder.e-ddl.e-placeholder-ddl,
449
+ .e-bigger .e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
450
+ .e-bigger.e-content-placeholder.e-autocomplete.e-placeholder-autocomplete,
451
+ .e-bigger .e-content-placeholder.e-combobox.e-placeholder-combobox,
452
+ .e-bigger.e-content-placeholder.e-combobox.e-placeholder-combobox {
453
+ background-size: 300px 40px;
454
+ min-height: 40px;
455
+ }
@@ -0,0 +1,10 @@
1
+ @import 'ej2-base/styles/definition/tailwind3.scss';
2
+ @import 'ej2-inputs/styles/input/tailwind3-definition.scss';
3
+ @import 'ej2-popups/styles/popup/tailwind3-definition.scss';
4
+ @import 'ej2-popups/styles/spinner/tailwind3-definition.scss';
5
+ @import 'ej2-notifications/styles/skeleton/tailwind3-definition.scss';
6
+ @import '../drop-down-base/tailwind3-definition.scss';
7
+ @import 'tailwind3-definition.scss';
8
+ @import 'icons/tailwind3.scss';
9
+ @import 'all.scss';
10
+ @import 'bigger.scss';
@@ -66,12 +66,16 @@
66
66
  @else if $ddt-skin-name == 'bootstrap4' {
67
67
  right: 33px;
68
68
  }
69
- @else if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
69
+ @else if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' or $ddt-skin-name == 'tailwind3' {
70
70
  @include icon-style(auto, 36px);
71
71
  }
72
72
  @else if $ddt-skin-name != 'Material3' {
73
73
  right: $ddt-dd-icon-bigger-width;
74
74
  }
75
+ @if ($ddt-skin-name =='tailwind3') {
76
+ bottom: 0;
77
+ right: 24px;
78
+ }
75
79
  }
76
80
 
77
81
  @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
@@ -85,6 +89,20 @@
85
89
  .e-ddt-icon {
86
90
  bottom: $ddt-dd-icon-bigger-bottom;
87
91
  }
92
+
93
+ @if ($ddt-skin-name =='tailwind3') {
94
+ & .e-chips {
95
+ & > .e-chipcontent {
96
+ height: 20px;
97
+ font-size: 14px;
98
+ line-height: 20px;
99
+ padding: 0 6px 0 4px;
100
+ }
101
+ }
102
+ & .e-chips-close {
103
+ margin: 0 6px 2px 0;
104
+ }
105
+ }
88
106
  }
89
107
 
90
108
  .e-input-group-icon.e-ddt-icon {
@@ -129,6 +147,13 @@
129
147
  @if $ddt-skin-name == 'FluentUI' {
130
148
  @include min-style(32px, 32px, 12px, 27px);
131
149
  }
150
+ @if $ddt-skin-name == 'tailwind3' {
151
+ height: 16px;
152
+ width: 16px;
153
+ &::before {
154
+ font-size: 16px;
155
+ }
156
+ }
132
157
  }
133
158
 
134
159
  .e-overflow {
@@ -334,14 +359,14 @@
334
359
  }
335
360
 
336
361
  &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
337
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
362
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'tailwind3' {
338
363
  margin-right: $ddt-dd-icon-bigger-width;
339
364
  }
340
365
  max-width: $ddt-big-chip-ddi-width;
341
366
  }
342
367
 
343
368
  &.e-show-clear .e-chips-wrapper .e-chips:last-child {
344
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
369
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'tailwind3' {
345
370
  margin-right: $ddt-close-icon-bigger-width;
346
371
  }
347
372
  max-width: $ddt-big-chip-ci-width;
@@ -374,6 +399,15 @@
374
399
  }
375
400
  }
376
401
 
402
+ @if ($ddt-skin-name == 'tailwind3') {
403
+ border-radius: 8px;
404
+ margin-top: 8px;
405
+
406
+ .e-filter-wrap {
407
+ padding: 8px 9px;
408
+ }
409
+ }
410
+
377
411
  @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
378
412
  .e-popup-content {
379
413
  &.e-no-data {
@@ -403,7 +437,7 @@
403
437
 
404
438
  .e-treeview {
405
439
  .e-fullrow {
406
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
440
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'tailwind3' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
407
441
  height: $ddt-treeview-fullrow-bigger-height;
408
442
  }
409
443
  }
@@ -482,7 +516,7 @@
482
516
  }
483
517
 
484
518
  &.e-show-dd-icon {
485
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
519
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'tailwind3' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
486
520
  @include chip-last-margin(4px, null);
487
521
  }
488
522
  @else if $ddt-skin-name != 'Material3' {
@@ -491,7 +525,7 @@
491
525
  }
492
526
 
493
527
  &.e-show-clear {
494
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
528
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'tailwind3' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
495
529
  @include chip-last-margin(4px, null);
496
530
  }
497
531
  @else if $ddt-skin-name != 'Material3' {
@@ -511,7 +545,7 @@
511
545
  &.e-show-chip,
512
546
  &.e-show-text {
513
547
  &.e-input-group.e-show-dd-icon .e-clear-icon {
514
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
548
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'tailwind3' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
515
549
  left: $ddt-dd-icon-bigger-width;
516
550
  }
517
551
  right: auto;