@syncfusion/ej2-dropdowns 25.2.3 → 25.2.5-30068

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 (418) hide show
  1. package/CHANGELOG.md +2186 -2140
  2. package/{README.md → ReadMe.md} +217 -217
  3. package/dist/ej2-dropdowns.umd.min.js +1 -10
  4. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-dropdowns.es2015.js +293 -197
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +460 -363
  8. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  9. package/helpers/e2e/autocomplete.js +13 -13
  10. package/helpers/e2e/combobox.js +13 -13
  11. package/helpers/e2e/dropdownlist.js +13 -13
  12. package/helpers/e2e/index.js +3 -3
  13. package/helpers/e2e/listboxHelper.js +13 -13
  14. package/helpers/e2e/multiselect.js +13 -13
  15. package/license +2 -2
  16. package/package.json +80 -80
  17. package/src/auto-complete/auto-complete-model.d.ts +190 -190
  18. package/src/auto-complete/auto-complete.d.ts +12 -12
  19. package/src/auto-complete/auto-complete.js +21 -21
  20. package/src/combo-box/combo-box-model.d.ts +233 -233
  21. package/src/combo-box/combo-box.d.ts +27 -27
  22. package/src/combo-box/combo-box.js +29 -29
  23. package/src/common/virtual-scroll.js +46 -46
  24. package/src/drop-down-base/drop-down-base-model.d.ts +200 -200
  25. package/src/drop-down-base/drop-down-base.d.ts +24 -20
  26. package/src/drop-down-base/drop-down-base.js +60 -39
  27. package/src/drop-down-list/drop-down-list-model.d.ts +209 -209
  28. package/src/drop-down-list/drop-down-list.d.ts +5 -5
  29. package/src/drop-down-list/drop-down-list.js +53 -31
  30. package/src/drop-down-tree/drop-down-tree-model.d.ts +473 -473
  31. package/src/drop-down-tree/drop-down-tree.d.ts +1 -1
  32. package/src/drop-down-tree/drop-down-tree.js +29 -25
  33. package/src/list-box/list-box-model.d.ts +237 -237
  34. package/src/list-box/list-box.d.ts +2 -2
  35. package/src/list-box/list-box.js +19 -19
  36. package/src/mention/mention-model.d.ts +261 -261
  37. package/src/mention/mention.js +19 -19
  38. package/src/multi-select/float-label.js +1 -0
  39. package/src/multi-select/multi-select-model.d.ts +526 -526
  40. package/src/multi-select/multi-select.d.ts +2 -0
  41. package/src/multi-select/multi-select.js +182 -133
  42. package/styles/auto-complete/_all.scss +1 -1
  43. package/styles/auto-complete/_bds-definition.scss +2 -2
  44. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
  45. package/styles/auto-complete/_bootstrap-definition.scss +2 -2
  46. package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
  47. package/styles/auto-complete/_bootstrap5-definition.scss +2 -2
  48. package/styles/auto-complete/_bootstrap5.3-definition.scss +2 -0
  49. package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
  50. package/styles/auto-complete/_fabric-definition.scss +2 -2
  51. package/styles/auto-complete/_fluent-definition.scss +2 -2
  52. package/styles/auto-complete/_fluent2-definition.scss +2 -0
  53. package/styles/auto-complete/_fusionnew-definition.scss +2 -2
  54. package/styles/auto-complete/_highcontrast-definition.scss +2 -2
  55. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
  56. package/styles/auto-complete/_material-dark-definition.scss +2 -2
  57. package/styles/auto-complete/_material-definition.scss +2 -2
  58. package/styles/auto-complete/_material3-definition.scss +2 -2
  59. package/styles/auto-complete/_tailwind-definition.scss +2 -2
  60. package/styles/auto-complete/fluent2.css +1129 -0
  61. package/styles/auto-complete/fluent2.scss +4 -0
  62. package/styles/auto-complete/material3-dark.css +1 -1
  63. package/styles/auto-complete/material3-dark.scss +1 -1
  64. package/styles/auto-complete/material3.css +1 -1
  65. package/styles/auto-complete/material3.scss +1 -1
  66. package/styles/bootstrap-dark.css +72 -300
  67. package/styles/bootstrap-dark.scss +28 -8
  68. package/styles/bootstrap.css +72 -306
  69. package/styles/bootstrap.scss +28 -8
  70. package/styles/bootstrap4.css +72 -350
  71. package/styles/bootstrap4.scss +28 -8
  72. package/styles/bootstrap5-dark.css +72 -301
  73. package/styles/bootstrap5-dark.scss +28 -8
  74. package/styles/bootstrap5.css +72 -301
  75. package/styles/bootstrap5.scss +28 -8
  76. package/styles/combo-box/_all.scss +1 -1
  77. package/styles/combo-box/_bds-definition.scss +2 -2
  78. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
  79. package/styles/combo-box/_bootstrap-definition.scss +2 -2
  80. package/styles/combo-box/_bootstrap4-definition.scss +11 -11
  81. package/styles/combo-box/_bootstrap5-definition.scss +2 -2
  82. package/styles/combo-box/_bootstrap5.3-definition.scss +2 -0
  83. package/styles/combo-box/_fabric-dark-definition.scss +2 -2
  84. package/styles/combo-box/_fabric-definition.scss +2 -2
  85. package/styles/combo-box/_fluent-definition.scss +2 -2
  86. package/styles/combo-box/_fluent2-definition.scss +2 -0
  87. package/styles/combo-box/_fusionnew-definition.scss +2 -2
  88. package/styles/combo-box/_highcontrast-definition.scss +2 -2
  89. package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
  90. package/styles/combo-box/_material-dark-definition.scss +2 -2
  91. package/styles/combo-box/_material-definition.scss +2 -2
  92. package/styles/combo-box/_material3-definition.scss +2 -2
  93. package/styles/combo-box/_tailwind-definition.scss +2 -2
  94. package/styles/combo-box/fluent2.css +1129 -0
  95. package/styles/combo-box/fluent2.scss +4 -0
  96. package/styles/combo-box/material3-dark.css +1 -1
  97. package/styles/combo-box/material3-dark.scss +1 -1
  98. package/styles/combo-box/material3.css +1 -1
  99. package/styles/combo-box/material3.scss +1 -1
  100. package/styles/drop-down-base/_all.scss +2 -2
  101. package/styles/drop-down-base/_bds-definition.scss +134 -134
  102. package/styles/drop-down-base/_bootstrap-dark-definition.scss +83 -83
  103. package/styles/drop-down-base/_bootstrap-definition.scss +83 -83
  104. package/styles/drop-down-base/_bootstrap4-definition.scss +90 -90
  105. package/styles/drop-down-base/_bootstrap5-definition.scss +117 -117
  106. package/styles/drop-down-base/_bootstrap5.3-definition.scss +117 -0
  107. package/styles/drop-down-base/_definition.scss +23 -23
  108. package/styles/drop-down-base/_fabric-dark-definition.scss +86 -86
  109. package/styles/drop-down-base/_fabric-definition.scss +84 -84
  110. package/styles/drop-down-base/_fluent-definition.scss +121 -121
  111. package/styles/drop-down-base/_fluent2-definition.scss +134 -0
  112. package/styles/drop-down-base/_fusionnew-definition.scss +117 -117
  113. package/styles/drop-down-base/_highcontrast-definition.scss +105 -105
  114. package/styles/drop-down-base/_highcontrast-light-definition.scss +105 -105
  115. package/styles/drop-down-base/_layout.scss +197 -187
  116. package/styles/drop-down-base/_material-dark-definition.scss +86 -86
  117. package/styles/drop-down-base/_material-definition.scss +85 -85
  118. package/styles/drop-down-base/_material3-definition.scss +76 -87
  119. package/styles/drop-down-base/_tailwind-definition.scss +129 -129
  120. package/styles/drop-down-base/_theme.scss +382 -391
  121. package/styles/drop-down-base/fluent2.css +1446 -0
  122. package/styles/drop-down-base/fluent2.scss +3 -0
  123. package/styles/drop-down-base/material3-dark.css +1 -1
  124. package/styles/drop-down-base/material3-dark.scss +1 -1
  125. package/styles/drop-down-base/material3.css +1 -1
  126. package/styles/drop-down-base/material3.scss +1 -1
  127. package/styles/drop-down-list/_all.scss +3 -3
  128. package/styles/drop-down-list/_bds-definition.scss +134 -134
  129. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
  130. package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
  131. package/styles/drop-down-list/_bootstrap4-definition.scss +202 -202
  132. package/styles/drop-down-list/_bootstrap5-definition.scss +201 -201
  133. package/styles/drop-down-list/_bootstrap5.3-definition.scss +201 -0
  134. package/styles/drop-down-list/_fabric-dark-definition.scss +128 -128
  135. package/styles/drop-down-list/_fabric-definition.scss +124 -124
  136. package/styles/drop-down-list/_fluent-definition.scss +185 -185
  137. package/styles/drop-down-list/_fluent2-definition.scss +134 -0
  138. package/styles/drop-down-list/_fusionnew-definition.scss +201 -201
  139. package/styles/drop-down-list/_highcontrast-definition.scss +142 -142
  140. package/styles/drop-down-list/_highcontrast-light-definition.scss +144 -144
  141. package/styles/drop-down-list/_layout.scss +317 -315
  142. package/styles/drop-down-list/_material-dark-definition.scss +143 -143
  143. package/styles/drop-down-list/_material-definition.scss +167 -167
  144. package/styles/drop-down-list/_material3-definition.scss +172 -180
  145. package/styles/drop-down-list/_tailwind-definition.scss +134 -134
  146. package/styles/drop-down-list/_theme.scss +10 -10
  147. package/styles/drop-down-list/bootstrap-dark.css +5 -0
  148. package/styles/drop-down-list/bootstrap.css +5 -0
  149. package/styles/drop-down-list/bootstrap4.css +5 -0
  150. package/styles/drop-down-list/bootstrap5-dark.css +5 -0
  151. package/styles/drop-down-list/bootstrap5.css +5 -0
  152. package/styles/drop-down-list/fabric-dark.css +5 -0
  153. package/styles/drop-down-list/fabric.css +5 -0
  154. package/styles/drop-down-list/fluent-dark.css +5 -0
  155. package/styles/drop-down-list/fluent.css +5 -0
  156. package/styles/drop-down-list/fluent2.css +1617 -0
  157. package/styles/drop-down-list/fluent2.scss +9 -0
  158. package/styles/drop-down-list/highcontrast-light.css +5 -0
  159. package/styles/drop-down-list/highcontrast.css +5 -0
  160. package/styles/drop-down-list/icons/_bds.scss +14 -14
  161. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
  162. package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
  163. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
  164. package/styles/drop-down-list/icons/_bootstrap5.3.scss +14 -0
  165. package/styles/drop-down-list/icons/_bootstrap5.scss +14 -14
  166. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
  167. package/styles/drop-down-list/icons/_fabric.scss +14 -14
  168. package/styles/drop-down-list/icons/_fluent.scss +14 -14
  169. package/styles/drop-down-list/icons/_fluent2.scss +14 -0
  170. package/styles/drop-down-list/icons/_fusionnew.scss +14 -14
  171. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
  172. package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
  173. package/styles/drop-down-list/icons/_material-dark.scss +14 -14
  174. package/styles/drop-down-list/icons/_material.scss +14 -14
  175. package/styles/drop-down-list/icons/_material3.scss +14 -14
  176. package/styles/drop-down-list/icons/_tailwind.scss +14 -14
  177. package/styles/drop-down-list/material-dark.css +5 -0
  178. package/styles/drop-down-list/material.css +5 -0
  179. package/styles/drop-down-list/material3-dark.css +6 -1
  180. package/styles/drop-down-list/material3-dark.scss +1 -1
  181. package/styles/drop-down-list/material3.css +6 -1
  182. package/styles/drop-down-list/material3.scss +1 -1
  183. package/styles/drop-down-list/tailwind-dark.css +5 -0
  184. package/styles/drop-down-list/tailwind.css +5 -0
  185. package/styles/drop-down-tree/_all.scss +2 -2
  186. package/styles/drop-down-tree/_bds-definition.scss +67 -61
  187. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +73 -72
  188. package/styles/drop-down-tree/_bootstrap-definition.scss +72 -71
  189. package/styles/drop-down-tree/_bootstrap4-definition.scss +74 -72
  190. package/styles/drop-down-tree/_bootstrap5-definition.scss +66 -60
  191. package/styles/drop-down-tree/_bootstrap5.3-definition.scss +66 -0
  192. package/styles/drop-down-tree/_fabric-dark-definition.scss +73 -72
  193. package/styles/drop-down-tree/_fabric-definition.scss +73 -72
  194. package/styles/drop-down-tree/_fluent-definition.scss +71 -66
  195. package/styles/drop-down-tree/_fluent2-definition.scss +76 -0
  196. package/styles/drop-down-tree/_fusionnew-definition.scss +61 -60
  197. package/styles/drop-down-tree/_highcontrast-definition.scss +73 -72
  198. package/styles/drop-down-tree/_highcontrast-light-definition.scss +73 -72
  199. package/styles/drop-down-tree/_layout.scss +1389 -1423
  200. package/styles/drop-down-tree/_material-dark-definition.scss +74 -73
  201. package/styles/drop-down-tree/_material-definition.scss +74 -73
  202. package/styles/drop-down-tree/_material3-definition.scss +75 -76
  203. package/styles/drop-down-tree/_tailwind-definition.scss +67 -61
  204. package/styles/drop-down-tree/_theme.scss +130 -132
  205. package/styles/drop-down-tree/bootstrap-dark.css +20 -21
  206. package/styles/drop-down-tree/bootstrap.css +20 -21
  207. package/styles/drop-down-tree/bootstrap4.css +21 -22
  208. package/styles/drop-down-tree/bootstrap5-dark.css +20 -19
  209. package/styles/drop-down-tree/bootstrap5.css +20 -19
  210. package/styles/drop-down-tree/fabric-dark.css +20 -21
  211. package/styles/drop-down-tree/fabric.css +20 -21
  212. package/styles/drop-down-tree/fluent-dark.css +28 -27
  213. package/styles/drop-down-tree/fluent.css +28 -27
  214. package/styles/drop-down-tree/fluent2.css +1671 -0
  215. package/styles/drop-down-tree/fluent2.scss +9 -0
  216. package/styles/drop-down-tree/highcontrast-light.css +20 -21
  217. package/styles/drop-down-tree/highcontrast.css +20 -15
  218. package/styles/drop-down-tree/icons/_bds.scss +11 -11
  219. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
  220. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
  221. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
  222. package/styles/drop-down-tree/icons/_bootstrap5.3.scss +11 -0
  223. package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -11
  224. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
  225. package/styles/drop-down-tree/icons/_fabric.scss +11 -11
  226. package/styles/drop-down-tree/icons/_fluent.scss +11 -11
  227. package/styles/drop-down-tree/icons/_fluent2.scss +14 -0
  228. package/styles/drop-down-tree/icons/_fusionnew.scss +11 -11
  229. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
  230. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
  231. package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
  232. package/styles/drop-down-tree/icons/_material.scss +11 -11
  233. package/styles/drop-down-tree/icons/_material3.scss +11 -11
  234. package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -11
  235. package/styles/drop-down-tree/icons/_tailwind.scss +11 -11
  236. package/styles/drop-down-tree/material-dark.css +28 -34
  237. package/styles/drop-down-tree/material.css +31 -40
  238. package/styles/drop-down-tree/material3-dark.css +17 -21
  239. package/styles/drop-down-tree/material3-dark.scss +1 -1
  240. package/styles/drop-down-tree/material3.css +17 -21
  241. package/styles/drop-down-tree/material3.scss +1 -1
  242. package/styles/drop-down-tree/tailwind-dark.css +29 -20
  243. package/styles/drop-down-tree/tailwind.css +29 -20
  244. package/styles/fabric-dark.css +72 -300
  245. package/styles/fabric-dark.scss +28 -8
  246. package/styles/fabric.css +72 -306
  247. package/styles/fabric.scss +28 -8
  248. package/styles/fluent-dark.css +80 -315
  249. package/styles/fluent-dark.scss +28 -8
  250. package/styles/fluent.css +80 -315
  251. package/styles/fluent.scss +28 -8
  252. package/styles/fluent2.css +4541 -0
  253. package/styles/fluent2.scss +28 -0
  254. package/styles/highcontrast-light.css +72 -300
  255. package/styles/highcontrast-light.scss +28 -8
  256. package/styles/highcontrast.css +72 -300
  257. package/styles/highcontrast.scss +28 -8
  258. package/styles/list-box/_all.scss +2 -2
  259. package/styles/list-box/_bds-definition.scss +136 -136
  260. package/styles/list-box/_bigger.scss +164 -0
  261. package/styles/list-box/_bootstrap-dark-definition.scss +124 -126
  262. package/styles/list-box/_bootstrap-definition.scss +119 -119
  263. package/styles/list-box/_bootstrap4-definition.scss +124 -124
  264. package/styles/list-box/_bootstrap5-definition.scss +121 -120
  265. package/styles/list-box/_bootstrap5.3-definition.scss +121 -0
  266. package/styles/list-box/_fabric-dark-definition.scss +124 -126
  267. package/styles/list-box/_fabric-definition.scss +119 -119
  268. package/styles/list-box/_fluent-definition.scss +120 -120
  269. package/styles/list-box/_fluent2-definition.scss +119 -0
  270. package/styles/list-box/_fusionnew-definition.scss +111 -111
  271. package/styles/list-box/_highcontrast-definition.scss +119 -119
  272. package/styles/list-box/_highcontrast-light-definition.scss +124 -126
  273. package/styles/list-box/_layout.scss +455 -546
  274. package/styles/list-box/_material-dark-definition.scss +124 -126
  275. package/styles/list-box/_material-definition.scss +119 -119
  276. package/styles/list-box/_material3-definition.scss +119 -119
  277. package/styles/list-box/_tailwind-definition.scss +119 -119
  278. package/styles/list-box/_theme.scss +314 -382
  279. package/styles/list-box/bootstrap-dark.css +43 -215
  280. package/styles/list-box/bootstrap.css +43 -221
  281. package/styles/list-box/bootstrap4.css +42 -264
  282. package/styles/list-box/bootstrap5-dark.css +43 -215
  283. package/styles/list-box/bootstrap5.css +43 -215
  284. package/styles/list-box/fabric-dark.css +43 -215
  285. package/styles/list-box/fabric.css +43 -221
  286. package/styles/list-box/fluent-dark.css +43 -221
  287. package/styles/list-box/fluent.css +43 -221
  288. package/styles/list-box/fluent2.css +1896 -0
  289. package/styles/list-box/fluent2.scss +5 -0
  290. package/styles/list-box/highcontrast-light.css +43 -215
  291. package/styles/list-box/highcontrast.css +43 -221
  292. package/styles/list-box/icons/_bds.scss +25 -25
  293. package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
  294. package/styles/list-box/icons/_bootstrap.scss +25 -25
  295. package/styles/list-box/icons/_bootstrap4.scss +25 -25
  296. package/styles/list-box/icons/_bootstrap5.3.scss +25 -0
  297. package/styles/list-box/icons/_bootstrap5.scss +25 -25
  298. package/styles/list-box/icons/_fabric-dark.scss +25 -25
  299. package/styles/list-box/icons/_fabric.scss +25 -25
  300. package/styles/list-box/icons/_fluent.scss +25 -25
  301. package/styles/list-box/icons/_fluent2.scss +25 -0
  302. package/styles/list-box/icons/_fusionnew.scss +25 -25
  303. package/styles/list-box/icons/_highcontrast-light.scss +25 -25
  304. package/styles/list-box/icons/_highcontrast.scss +25 -25
  305. package/styles/list-box/icons/_material-dark.scss +25 -25
  306. package/styles/list-box/icons/_material.scss +25 -25
  307. package/styles/list-box/icons/_material3.scss +25 -25
  308. package/styles/list-box/icons/_tailwind-dark.scss +25 -25
  309. package/styles/list-box/icons/_tailwind.scss +25 -25
  310. package/styles/list-box/material-dark.css +43 -215
  311. package/styles/list-box/material.css +43 -221
  312. package/styles/list-box/material3-dark.css +44 -216
  313. package/styles/list-box/material3-dark.scss +1 -1
  314. package/styles/list-box/material3.css +44 -216
  315. package/styles/list-box/material3.scss +1 -1
  316. package/styles/list-box/tailwind-dark.css +45 -233
  317. package/styles/list-box/tailwind.css +45 -233
  318. package/styles/material-dark.css +80 -325
  319. package/styles/material-dark.scss +28 -8
  320. package/styles/material.css +84 -354
  321. package/styles/material.scss +28 -8
  322. package/styles/material3-dark.css +79 -337
  323. package/styles/material3-dark.scss +28 -8
  324. package/styles/material3.css +79 -337
  325. package/styles/material3.scss +28 -8
  326. package/styles/mention/_all.scss +1 -1
  327. package/styles/mention/_bds-definition.scss +1 -1
  328. package/styles/mention/_bootstrap-dark-definition.scss +3 -3
  329. package/styles/mention/_bootstrap-definition.scss +3 -3
  330. package/styles/mention/_bootstrap4-definition.scss +3 -3
  331. package/styles/mention/_bootstrap5-definition.scss +1 -1
  332. package/styles/mention/_bootstrap5.3-definition.scss +1 -0
  333. package/styles/mention/_fabric-dark-definition.scss +2 -2
  334. package/styles/mention/_fabric-definition.scss +3 -3
  335. package/styles/mention/_fluent-definition.scss +1 -1
  336. package/styles/mention/_fluent2-definition.scss +1 -0
  337. package/styles/mention/_fusionnew-definition.scss +1 -1
  338. package/styles/mention/_highcontrast-definition.scss +3 -3
  339. package/styles/mention/_highcontrast-light-definition.scss +3 -3
  340. package/styles/mention/_layout.scss +6 -6
  341. package/styles/mention/_material-dark-definition.scss +3 -3
  342. package/styles/mention/_material-definition.scss +3 -3
  343. package/styles/mention/_material3-definition.scss +1 -1
  344. package/styles/mention/_tailwind-definition.scss +1 -1
  345. package/styles/mention/fluent2.css +1106 -0
  346. package/styles/mention/fluent2.scss +6 -0
  347. package/styles/mention/material3-dark.css +1 -1
  348. package/styles/mention/material3-dark.scss +1 -1
  349. package/styles/mention/material3.css +1 -1
  350. package/styles/mention/material3.scss +1 -1
  351. package/styles/multi-select/_all.scss +2 -2
  352. package/styles/multi-select/_bds-definition.scss +235 -235
  353. package/styles/multi-select/_bootstrap-dark-definition.scss +207 -207
  354. package/styles/multi-select/_bootstrap-definition.scss +196 -196
  355. package/styles/multi-select/_bootstrap4-definition.scss +278 -278
  356. package/styles/multi-select/_bootstrap5-definition.scss +230 -230
  357. package/styles/multi-select/_bootstrap5.3-definition.scss +230 -0
  358. package/styles/multi-select/_fabric-dark-definition.scss +192 -192
  359. package/styles/multi-select/_fabric-definition.scss +183 -183
  360. package/styles/multi-select/_fluent-definition.scss +246 -246
  361. package/styles/multi-select/_fluent2-definition.scss +237 -0
  362. package/styles/multi-select/_fusionnew-definition.scss +227 -227
  363. package/styles/multi-select/_highcontrast-definition.scss +303 -303
  364. package/styles/multi-select/_highcontrast-light-definition.scss +297 -297
  365. package/styles/multi-select/_layout.scss +2200 -2206
  366. package/styles/multi-select/_material-dark-definition.scss +241 -241
  367. package/styles/multi-select/_material-definition.scss +234 -234
  368. package/styles/multi-select/_material3-definition.scss +231 -246
  369. package/styles/multi-select/_tailwind-definition.scss +235 -235
  370. package/styles/multi-select/_theme.scss +585 -586
  371. package/styles/multi-select/bootstrap-dark.css +4 -10
  372. package/styles/multi-select/bootstrap.css +4 -10
  373. package/styles/multi-select/bootstrap4.css +4 -10
  374. package/styles/multi-select/bootstrap5-dark.css +4 -11
  375. package/styles/multi-select/bootstrap5.css +4 -11
  376. package/styles/multi-select/fabric-dark.css +4 -10
  377. package/styles/multi-select/fabric.css +4 -10
  378. package/styles/multi-select/fluent-dark.css +4 -11
  379. package/styles/multi-select/fluent.css +4 -11
  380. package/styles/multi-select/fluent2.css +2590 -0
  381. package/styles/multi-select/fluent2.scss +9 -0
  382. package/styles/multi-select/highcontrast-light.css +4 -10
  383. package/styles/multi-select/highcontrast.css +4 -10
  384. package/styles/multi-select/icons/_bds.scss +26 -26
  385. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
  386. package/styles/multi-select/icons/_bootstrap.scss +26 -26
  387. package/styles/multi-select/icons/_bootstrap4.scss +37 -37
  388. package/styles/multi-select/icons/_bootstrap5.3.scss +26 -0
  389. package/styles/multi-select/icons/_bootstrap5.scss +26 -26
  390. package/styles/multi-select/icons/_fabric-dark.scss +26 -26
  391. package/styles/multi-select/icons/_fabric.scss +26 -26
  392. package/styles/multi-select/icons/_fluent.scss +55 -55
  393. package/styles/multi-select/icons/_fluent2.scss +692 -0
  394. package/styles/multi-select/icons/_fusionnew.scss +26 -26
  395. package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
  396. package/styles/multi-select/icons/_highcontrast.scss +26 -26
  397. package/styles/multi-select/icons/_material-dark.scss +693 -693
  398. package/styles/multi-select/icons/_material.scss +693 -693
  399. package/styles/multi-select/icons/_material3.scss +695 -692
  400. package/styles/multi-select/icons/_tailwind.scss +26 -26
  401. package/styles/multi-select/material-dark.css +4 -10
  402. package/styles/multi-select/material.css +5 -11
  403. package/styles/multi-select/material3-dark.css +15 -18
  404. package/styles/multi-select/material3-dark.scss +1 -1
  405. package/styles/multi-select/material3.css +15 -18
  406. package/styles/multi-select/material3.scss +1 -1
  407. package/styles/multi-select/tailwind-dark.css +4 -10
  408. package/styles/multi-select/tailwind.css +4 -10
  409. package/styles/tailwind-dark.css +83 -319
  410. package/styles/tailwind-dark.scss +28 -8
  411. package/styles/tailwind.css +83 -319
  412. package/styles/tailwind.scss +28 -8
  413. package/.eslintrc.json +0 -260
  414. package/dist/ej2-dropdowns.min.js +0 -10
  415. package/dist/global/ej2-dropdowns.min.js +0 -11
  416. package/dist/global/ej2-dropdowns.min.js.map +0 -1
  417. package/dist/global/index.d.ts +0 -14
  418. package/tslint.json +0 -111
@@ -1,1423 +1,1389 @@
1
- @mixin ddt-rotate($position) {
2
- transform: rotate($position);
3
- transition: transform 300ms ease;
4
- }
5
-
6
- @include export-module('dropdowntree-layout') {
7
-
8
- .e-ddt {
9
- cursor: pointer;
10
- outline: none;
11
-
12
- .e-ddt-icon::before {
13
- @include ddt-rotate(0deg);
14
- }
15
-
16
- &.e-icon-anim {
17
- @if $ddt-skin-name == 'Material3' {
18
- .e-ddt-icon {
19
- background: $ddt-dd-icon-bg;
20
- border-radius: $ddt-dd-icon-radius;
21
- }
22
- }
23
-
24
- .e-ddt-icon::before {
25
- @include ddt-rotate(180deg);
26
- }
27
- }
28
-
29
- .e-ddt-hidden {
30
- border: 0;
31
- height: 0;
32
- visibility: hidden;
33
- width: 0;
34
- }
35
-
36
- &.e-input-group.e-control-wrapper,
37
- &.e-float-input.e-control-wrapper {
38
- .e-clear-icon {
39
- box-sizing: content-box;
40
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' {
41
- min-height: $ddt-close-icon-min-height;
42
- }
43
- @if $ddt-skin-name == 'Material3' {
44
- margin: $ddt-dd-icon-margin;
45
- }
46
- @if $ddt-skin-name == 'FluentUI' {
47
- min-height: $ddt-dd-icon-width;
48
- }
49
- }
50
-
51
- .e-input-group-icon.e-ddt-icon {
52
- border: 0;
53
-
54
- @if $ddt-skin-name == 'bootstrap4' {
55
- font-size: 8px;
56
- }
57
- @if $ddt-skin-name == 'bootstrap5' {
58
- font-size: 20px;
59
- }
60
-
61
- @if $ddt-skin-name == 'Material3' {
62
- font-size: $ddt-chip-icon-line-height;
63
- margin: $ddt-dd-icon-margin;
64
- line-height: $ddt-chip-icon-line-height;
65
- }
66
- }
67
-
68
- .e-icon-hide {
69
- display: none;
70
- }
71
-
72
- &.e-show-chip,
73
- &.e-show-text {
74
- .e-clear-icon {
75
- bottom: $ddt-close-icon-bottom;
76
- position: absolute;
77
- right: 0;
78
- @if $ddt-skin-name == 'Material3' {
79
- margin: 0;
80
- }
81
- }
82
-
83
- &.e-show-dd-icon .e-clear-icon {
84
- @if $ddt-skin-name == 'tailwind' {
85
- right: 28px;
86
- }
87
- @else {
88
- right: $ddt-dd-icon-width;
89
- }
90
- @if $ddt-skin-name == 'FluentUI' {
91
- bottom: 0;
92
- }
93
- }
94
-
95
- .e-ddt-icon {
96
- @if $ddt-skin-name != 'FluentUI' {
97
- bottom: $ddt-dd-icon-bottom;
98
- }
99
- position: absolute;
100
- right: 0;
101
- }
102
-
103
- &.e-input-focus input.e-dropdowntree.e-chip-input,
104
- input.e-dropdowntree.e-chip-input {
105
- padding-left: 0;
106
- padding-right: 0;
107
- }
108
- }
109
- }
110
-
111
- &.e-input-group.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon,
112
- &.e-float-input.e-control-wrapper.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
113
- display: flex;
114
- }
115
-
116
- .e-chips-wrapper {
117
- width: 100%;
118
- }
119
-
120
- &.e-show-chip {
121
-
122
- .e-chips-close {
123
- @if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
124
- line-height: $ddt-chip-icon-line-height;
125
- }
126
- min-height: $ddt-chip-close-height;
127
- min-width: $ddt-chip-close-width;
128
- text-align: center;
129
-
130
- &::before {
131
- font-size: $ddt-chip-close-font;
132
- @if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'material' and $ddt-skin-name != 'material-dark' and $ddt-skin-name != 'Material3' {
133
- vertical-align: middle;
134
- }
135
- }
136
- }
137
-
138
- .e-chips {
139
- align-items: center;
140
- border-radius: $ddt-chip-radius;
141
- box-sizing: border-box;
142
- display: inline-flex;
143
- float: left;
144
- height: $ddt-chip-height;
145
- margin: $ddt-chip-margin;
146
- max-width: $ddt-chip-width;
147
- overflow: hidden;
148
- padding: $ddt-chip-padding;
149
- text-overflow: ellipsis;
150
- white-space: nowrap;
151
-
152
- & > .e-chipcontent {
153
- max-width: 100%;
154
- overflow: hidden;
155
- padding: $ddt-chip-content-padding;
156
- text-indent: 0;
157
- text-overflow: ellipsis;
158
- white-space: nowrap;
159
-
160
- @if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
161
- line-height: $ddt-chip-text-line-height;
162
- }
163
- }
164
- }
165
-
166
- .e-ddt-icon {
167
- @if $ddt-skin-name == 'FluentUI' {
168
- bottom: 0;
169
- }
170
- }
171
- }
172
- @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
173
- &.e-outline {
174
- .e-overflow {
175
- &.e-show-text {
176
- padding: 10px 12px 9px;
177
- }
178
-
179
- &.e-total-count {
180
- padding: $ddt-outline-padding;
181
- }
182
- }
183
-
184
- &.e-input-group.e-control-wrapper,
185
- &.e-float-input.e-control-wrapper {
186
- &.e-show-dd-icon .e-clear-icon {
187
- right: 30px;
188
- }
189
- }
190
-
191
- &.e-input-group.e-control-wrapper:not(.e-show-chip),
192
- &.e-float-input.e-control-wrapper:not(.e-show-chip) {
193
- &.e-show-dd-icon.e-input-focus .e-clear-icon {
194
- min-height: 20px;
195
- }
196
- }
197
- }
198
-
199
- &.e-outline.e-show-chip {
200
- .e-overflow {
201
- padding: $ddt-outline-chip-padding;
202
- }
203
-
204
- .e-chips-wrapper {
205
- padding: $ddt-outline-chip-padding;
206
- }
207
- }
208
-
209
- &.e-filled {
210
- &.e-float-input.e-control-wrapper {
211
- .e-overflow {
212
- &.e-show-text {
213
- line-height: 21px;
214
- padding: 14px 2px 5px 0;
215
- }
216
-
217
- .e-remain {
218
- &.e-wrap-count {
219
- padding-top: 10px;
220
- }
221
- }
222
- }
223
- }
224
-
225
- &.e-float-input.e-control-wrapper:not(.e-show-chip) {
226
- .e-ddt-icon,
227
- &.e-show-dd-icon .e-clear-icon {
228
- padding-top: 8px;
229
- }
230
- }
231
-
232
- &.e-float-input.e-control-wrapper.e-show-chip,
233
- &.e-float-input.e-control-wrapper.e-show-text {
234
- .e-ddt-icon {
235
- bottom: 6px;
236
- right: 10px;
237
- }
238
-
239
- .e-clear-icon {
240
- bottom: 5px;
241
- right: 38px;
242
- }
243
-
244
- &:not(.e-show-dd-icon) .e-clear-icon {
245
- bottom: 9px;
246
- right: 10px;
247
- }
248
- }
249
-
250
- .e-chips-wrapper,
251
- .e-overflow {
252
- .e-chips {
253
- margin-top: 8px;
254
- padding: 0 8px;
255
- }
256
- }
257
-
258
- &.e-float-input.e-control-wrapper.e-show-chip {
259
- .e-chips-wrapper,
260
- .e-overflow {
261
- padding-top: 8px;
262
-
263
- .e-chips {
264
- height: 18px;
265
- }
266
-
267
- .e-chips > .e-chipcontent {
268
- font-size: 12px;
269
- padding: 0 4px 0 0;
270
- }
271
-
272
- .e-chips-close::before {
273
- font-size: 12px;
274
- height: 12px;
275
- width: 12px;
276
- }
277
- }
278
- }
279
-
280
- &.e-input-group.e-control-wrapper:not(.e-float-input) {
281
- .e-overflow {
282
- &.e-show-text {
283
- line-height: 39px;
284
- padding: 0;
285
- }
286
-
287
- .e-remain {
288
- &.e-wrap-count {
289
- line-height: 39px;
290
- padding-top: 0;
291
- }
292
- }
293
- }
294
-
295
- &.e-show-chip {
296
- .e-chips-wrapper,
297
- .e-overflow {
298
- .e-chips {
299
- height: 28px;
300
- margin-top: 8px;
301
- padding: 0 8px;
302
- }
303
-
304
- .e-chips > .e-chipcontent {
305
- font-size: 13px;
306
- padding: 0 8px 0 0;
307
- }
308
-
309
- .e-chips-close::before {
310
- font-size: 14px;
311
- height: 14px;
312
- width: 14px;
313
- }
314
- }
315
- }
316
-
317
- &.e-show-dd-icon.e-show-text,
318
- &.e-show-dd-icon.e-show-chip {
319
- .e-ddt-icon {
320
- bottom: 10px;
321
- right: 10px;
322
- }
323
- }
324
-
325
- .e-clear-icon {
326
- bottom: 9px;
327
- right: 38px;
328
- }
329
-
330
- &:not(.e-show-dd-icon) .e-clear-icon {
331
- bottom: 9px;
332
- right: 10px;
333
- }
334
- }
335
- }
336
- }
337
-
338
- .e-overflow {
339
- white-space: nowrap;
340
-
341
- &.e-show-text {
342
- padding: $ddt-delim-padding;
343
- @if $ddt-skin-name == 'tailwind' {
344
- line-height: 22px;
345
-
346
- .e-remain {
347
- padding-left: 8px;
348
- }
349
- }
350
- @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
351
- line-height: 30px;
352
- }
353
- }
354
-
355
- &.e-total-count {
356
- box-sizing: border-box;
357
- display: inline-block;
358
- overflow: hidden;
359
- text-overflow: ellipsis;
360
-
361
- .e-remain {
362
- @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
363
- line-height: 30px;
364
- }
365
- @else {
366
- padding: $ddt-rtl-remains-padding;
367
- }
368
- }
369
- }
370
-
371
- &.e-wrap-count {
372
- @if $ddt-skin-name != 'bootstrap5' {
373
- padding-top: $ddt-remains-count-padding-top;
374
- }
375
- }
376
-
377
- .e-remain {
378
- cursor: pointer;
379
- display: inline-block;
380
- font-size: $ddt-chip-font-size;
381
- padding: $ddt-remains-padding;
382
-
383
- &.e-wrap-count {
384
- @if $ddt-skin-name == 'bootstrap5' {
385
- padding: $ddt-overflow-count-padding;
386
- }
387
- @else {
388
- @if $ddt-skin-name == 'FluentUI' {
389
- line-height: 30px;
390
- }
391
- @else {
392
- padding-top: $ddt-overflow-count-padding-top;
393
- }
394
- }
395
- }
396
- }
397
- }
398
-
399
- &.e-show-chip {
400
- .e-overflow {
401
- &.e-total-count {
402
- .e-remain {
403
- padding: $ddt-delim-padding;
404
- }
405
- }
406
- @if $ddt-skin-name == 'FluentUI' {
407
- .e-remain.e-wrap-count {
408
- padding-left: 4px;
409
- }
410
- }
411
- }
412
- }
413
-
414
- &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
415
- @if $ddt-skin-name == 'tailwind' {
416
- margin-right: 18px;
417
- }
418
- @else {
419
- margin-right: $ddt-dd-icon-width;
420
- }
421
- max-width: $ddt-chip-ddi-width;
422
- }
423
-
424
- &.e-show-clear .e-chips-wrapper .e-chips:last-child {
425
- @if $ddt-skin-name == 'tailwind' {
426
- margin-right: 18px;
427
- }
428
- @else {
429
- margin-right: $ddt-close-icon-width;
430
- }
431
- max-width: $ddt-chip-ci-width;
432
- }
433
-
434
- &.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
435
- margin-right: $ddt-last-chip-right-margin;
436
- max-width: $ddt-chip-ddi-ci-width;
437
- }
438
-
439
- input[readonly],
440
- .e-dropdowntree,
441
- input[readonly].e-input {
442
- pointer-events: none;
443
-
444
- &.e-chip-input {
445
- width: 0;
446
- }
447
- }
448
-
449
- &.e-popup {
450
- @if $skin-name != 'material' and $skin-name != 'FluentUI' and $skin-name != 'Material3' {
451
- border: 1px solid $ddt-popup-border-color;
452
- }
453
-
454
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
455
- border-radius: 4px;
456
- margin-top: 4px;
457
- }
458
-
459
- @if $skin-name == 'bootstrap4' or $skin-name == 'Material3' {
460
- border-radius: $ddt-chip-radius;
461
- }
462
-
463
- @if $skin-name == 'Material3' {
464
- margin-top: 2px;
465
- }
466
-
467
- @if $skin-name == 'FluentUI' {
468
- border-radius: 2px;
469
- }
470
- box-shadow: $ddt-box-shadow;
471
- position: absolute;
472
-
473
- .e-active .e-checkbox-wrapper {
474
- .e-frame:not(.e-check):not(.e-stop) {
475
- @if$ddt-skin-name == 'bootstrap5' {
476
- background-color: $ddt-readonly-input-bg-color;
477
- }
478
- }
479
- }
480
-
481
- .e-checkbox-wrapper {
482
- .e-frame:not(.e-check):not(.e-stop) {
483
- @if$ddt-skin-name == 'bootstrap5' {
484
- background-color: transparent;
485
- }
486
- }
487
- }
488
-
489
- .e-selectall-parent {
490
- border-bottom: 1px solid;
491
- cursor: pointer;
492
- display: block;
493
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'FluentUI' {
494
- line-height: $ddt-select-all-height;
495
- }
496
- overflow: hidden;
497
- position: relative;
498
- text-indent: $ddt-select-all-text-indent;
499
- white-space: nowrap;
500
- width: 100%;
501
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'FluentUI' {
502
- padding: 8px 12px;
503
- }
504
- @else if $ddt-skin-name == 'bootstrap5' {
505
- padding: 0 8px;
506
- }
507
- @else if $ddt-skin-name == 'Material3' {
508
- padding: $ddt-select-all-padding;
509
- }
510
-
511
- &.e-hide-selectall {
512
- display: none;
513
- }
514
-
515
- .e-checkbox-wrapper {
516
- position: relative;
517
- text-indent: 0;
518
-
519
- .e-frame {
520
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
521
- margin-top: -3px;
522
- }
523
- }
524
- }
525
-
526
- .e-all-text {
527
- font-family: inherit;
528
- font-size: 14px;
529
- margin: $ddt-select-all-checkbox-margin;
530
- @if $ddt-skin-name == 'tailwind' {
531
- line-height: $ddt-select-all-height;
532
- }
533
- }
534
- }
535
-
536
- & .e-filter-wrap .e-input,
537
- & .e-filter-wrap .e-input:focus {
538
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' {
539
- padding: $ddt-list-filter-text-indent;
540
- }
541
- }
542
-
543
- .e-filter-wrap {
544
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'FluentUI' {
545
- border-bottom: $ddt-filter-border;
546
- }
547
- @else {
548
- border: $ddt-filter-border;
549
- }
550
- border-top-width: $ddt-filter-top-border;
551
- display: block;
552
- padding: $ddt-filter-padding;
553
- }
554
-
555
- .e-filter-wrap {
556
- @if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
557
- border-left-width: 0;
558
- border-right-width: 0;
559
- }
560
-
561
- @if $ddt-skin-name == 'bootstrap-dark' or $ddt-skin-name == 'bootstrap' {
562
- border-bottom: $ddt-filter-border-bottom-color;
563
- }
564
-
565
- @if $ddt-skin-name == 'bootstrap4' {
566
- background: $ddt-filter-bg;
567
- }
568
-
569
- .e-input-group:not(.e-disabled):not(.e-float-icon-left)::before,
570
- .e-input-group:not(.e-disabled):not(.e-float-icon-left)::after,
571
- .e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::before,
572
- .e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::after {
573
- @if $ddt-skin-name == 'material' {
574
- bottom: -1px;
575
- height: 1px;
576
- }
577
- }
578
- }
579
-
580
- .e-filter-wrap .e-input-group {
581
- margin-bottom: 0;
582
-
583
- @if $ddt-skin-name == 'tailwind' {
584
- border: 1px solid $border;
585
- border-radius: 4px;
586
- }
587
-
588
- @if $ddt-skin-name == 'bootstrap4' {
589
- background: $ddt-filter-bg;
590
- }
591
-
592
- .e-clear-icon {
593
- @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
594
- margin: 6px 6px 5px;
595
- min-height: 12px;
596
- min-width: 12px;
597
- padding: 6px;
598
- }
599
- }
600
- }
601
-
602
- .e-popup-content {
603
- overflow: auto;
604
- position: relative;
605
-
606
- .e-ddt-nodata {
607
- display: none;
608
- }
609
-
610
- &.e-no-data {
611
- cursor: default;
612
- font-family: inherit;
613
- font-size: 14px;
614
- @if $ddt-skin-name == 'tailwind' {
615
- padding: 8px 16px;
616
- }
617
- @else if $ddt-skin-name == 'bootstrap5' {
618
- padding: 7px 16px;
619
- }
620
- @else {
621
- padding: 14px 16px;
622
- }
623
- text-align: center;
624
-
625
- .e-treeview {
626
- display: none;
627
- }
628
-
629
- .e-ddt-nodata {
630
- display: block;
631
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5'or $ddt-skin-name == 'FluentUI' {
632
- line-height: 22px;
633
- }
634
- }
635
- }
636
- }
637
-
638
- .e-treeview {
639
- display: inline-table;
640
- width: 100%;
641
-
642
- .e-list-item {
643
- padding: 0;
644
-
645
- .e-ul {
646
- margin: 0;
647
- padding: 0 0 0 14px;
648
- }
649
- }
650
-
651
- .e-fullrow {
652
- @if $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
653
- border-width: 2px;
654
- }
655
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
656
- height: $ddt-treeview-fullrow-height;
657
- }
658
- }
659
-
660
- & > .e-ul {
661
- overflow: hidden;
662
- @if $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' {
663
- padding: $ddt-treeview-padding;
664
- }
665
- }
666
-
667
- &.e-fullrow-wrap .e-text-content {
668
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' {
669
- padding-bottom: $ddt-treeview-content-padding-top;
670
- padding-top: $ddt-treeview-content-padding-bottom;
671
- }
672
- }
673
- }
674
-
675
- .e-ddt-footer,
676
- .e-ddt-header {
677
- cursor: default;
678
- }
679
- }
680
-
681
- &.e-rtl {
682
- &.e-show-chip {
683
- .e-chips {
684
- float: right;
685
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
686
- & > .e-chipcontent {
687
- padding: $ddt-rtl-chip-content-padding;
688
- }
689
- }
690
- }
691
- }
692
-
693
- &.e-show-chip,
694
- &.e-show-text {
695
- .e-overflow {
696
- .e-remain {
697
- padding: $ddt-rtl-remains-padding;
698
-
699
- &.e-wrap-count {
700
- @if $ddt-skin-name == 'bootstrap5' {
701
- padding-top: 5px;
702
- }
703
- @else {
704
- padding-top: $ddt-remains-count-padding-top;
705
- }
706
- }
707
- }
708
-
709
- &.e-wrap-count {
710
- position: absolute;
711
- right: auto;
712
- }
713
- }
714
- }
715
-
716
- &.e-show-text {
717
- .e-overflow {
718
- &.e-total-count {
719
- .e-remain {
720
- padding: $ddt-remains-padding;
721
- }
722
- }
723
- }
724
- }
725
-
726
- &.e-show-text {
727
- .e-overflow {
728
- &.e-wrap-count {
729
- .e-remain {
730
- @if $ddt-skin-name == 'tailwind' {
731
- padding-right: 8px;
732
- }
733
- }
734
- }
735
- }
736
- }
737
-
738
- &.e-show-chip {
739
- .e-overflow {
740
- &.e-total-count {
741
- .e-remain {
742
- padding: $ddt-delim-padding;
743
- }
744
- }
745
- }
746
- }
747
-
748
- @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
749
- &.e-outline {
750
- &.e-input-group.e-control-wrapper,
751
- &.e-float-input.e-control-wrapper {
752
- &.e-show-dd-icon .e-clear-icon,
753
- &.e-show-dd-icon.e-show-text .e-clear-icon,
754
- &.e-show-dd-icon.e-show-chip .e-clear-icon {
755
- left: 30px;
756
- }
757
- }
758
- }
759
-
760
- &.e-filled {
761
- &.e-float-input.e-control-wrapper {
762
- .e-overflow {
763
- &.e-show-text {
764
- padding: 14px 0 5px 2px;
765
- }
766
- }
767
- }
768
-
769
- &.e-float-input.e-control-wrapper.e-show-chip,
770
- &.e-float-input.e-control-wrapper.e-show-text {
771
- .e-ddt-icon {
772
- left: 10px;
773
- right: auto;
774
- }
775
-
776
- &.e-show-dd-icon .e-clear-icon {
777
- left: 38px;
778
- right: auto;
779
- }
780
-
781
- &:not(.e-show-dd-icon) .e-clear-icon {
782
- left: 10px;
783
- right: auto;
784
- }
785
- }
786
-
787
- &.e-float-input.e-control-wrapper.e-show-chip {
788
- .e-chips-wrapper,
789
- .e-overflow {
790
- .e-chips > .e-chipcontent {
791
- padding: 0 0 0 4px;
792
- }
793
- }
794
- }
795
-
796
- &.e-input-group.e-control-wrapper:not(.e-float-input) {
797
- &.e-show-chip {
798
- .e-chips-wrapper,
799
- .e-overflow {
800
- .e-chips > .e-chipcontent {
801
- padding: 0 0 0 8px;
802
- }
803
- }
804
- }
805
-
806
- &.e-show-dd-icon.e-show-text,
807
- &.e-show-dd-icon.e-show-chip {
808
- .e-ddt-icon {
809
- left: 10px;
810
- right: auto;
811
- }
812
- }
813
-
814
- &.e-show-dd-icon .e-clear-icon {
815
- left: 38px;
816
- right: auto;
817
- }
818
-
819
- &:not(.e-show-dd-icon) .e-clear-icon {
820
- left: 10px;
821
- right: auto;
822
- }
823
- }
824
- }
825
- }
826
-
827
- &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
828
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
829
- margin-left: 18px;
830
- margin-right: 4px;
831
- }
832
- @else {
833
- margin-left: $ddt-dd-icon-width;
834
- margin-right: 1px;
835
- }
836
- }
837
-
838
- &.e-show-clear .e-chips-wrapper .e-chips:last-child {
839
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
840
- margin-left: 18px;
841
- margin-right: 4px;
842
- }
843
- @else {
844
- margin-left: $ddt-close-icon-width;
845
- margin-right: 1px;
846
- }
847
- }
848
-
849
- &.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
850
- margin-left: $ddt-last-chip-right-margin;
851
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
852
- margin-right: 4px;
853
- }
854
- @else {
855
- margin-right: 1px;
856
- }
857
- }
858
-
859
- &.e-input-group.e-control-wrapper,
860
- &.e-float-input.e-control-wrapper {
861
-
862
- &.e-show-chip,
863
- &.e-show-text {
864
-
865
- .e-clear-icon,
866
- .e-ddt-icon {
867
- left: 0;
868
- right: auto;
869
- }
870
-
871
- &.e-show-dd-icon .e-clear-icon {
872
- @if $ddt-skin-name == 'tailwind' {
873
- left: 28px;
874
- }
875
- @else {
876
- left: $ddt-dd-icon-width;
877
- }
878
- }
879
- }
880
- }
881
-
882
- &.e-popup {
883
-
884
- .e-treeview .e-list-item .e-ul {
885
- padding: 0 14px 0 0;
886
- }
887
- }
888
- }
889
- }
890
-
891
- .e-ddt-icon-hide {
892
- display: none;
893
- }
894
-
895
- .e-bigger .e-ddt,
896
- .e-ddt.e-bigger {
897
-
898
- .e-chips {
899
- height: $ddt-chip-bigger-height;
900
-
901
- @if $ddt-skin-name == 'tailwind' {
902
- padding: 3px 8px;
903
-
904
- & > .e-chipcontent {
905
- padding: $ddt-big-chip-content-padding;
906
- }
907
- }
908
- @if $ddt-skin-name == 'FluentUI' {
909
- font-size: $text-lg;
910
- }
911
- }
912
-
913
- &.e-input-group.e-control-wrapper,
914
- &.e-float-input.e-control-wrapper {
915
-
916
- &.e-show-chip,
917
- &.e-show-text {
918
- &.e-show-dd-icon .e-clear-icon {
919
- @if $ddt-skin-name == 'tailwind' {
920
- bottom: 3px;
921
- right: 32px;
922
- }
923
- @else if $ddt-skin-name == 'bootstrap4' {
924
- right: 33px;
925
- }
926
- @else if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
927
- bottom: auto;
928
- right: 36px;
929
- }
930
- @else if $ddt-skin-name != 'Material3' {
931
- right: $ddt-dd-icon-bigger-width;
932
- }
933
- }
934
-
935
- @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
936
- &.e-show-chip {
937
- &.e-show-dd-icon .e-clear-icon {
938
- bottom: 0;
939
- }
940
- }
941
- }
942
-
943
- .e-ddt-icon {
944
- bottom: $ddt-dd-icon-bigger-bottom;
945
- }
946
- }
947
-
948
- .e-input-group-icon.e-ddt-icon {
949
- @if $ddt-skin-name == 'bootstrap4' {
950
- font-size: 10px;
951
- }
952
- }
953
-
954
- .e-clear-icon {
955
- @if $ddt-skin-name == 'tailwind' {
956
- min-width: 0;
957
- padding: 6px;
958
- }
959
- @else {
960
- min-height: $ddt-close-icon-bigger-min-height;
961
- }
962
- }
963
- }
964
-
965
- &.e-show-chip {
966
- .e-chips-close {
967
- @if $ddt-skin-name == 'bootstrap4' {
968
- line-height: 27px;
969
- min-height: 30px;
970
- min-width: 30px;
971
-
972
- &::before {
973
- font-size: 10px;
974
- }
975
- }
976
- @if $ddt-skin-name == 'tailwind' {
977
- line-height: 18px;
978
- min-height: 24px;
979
- min-width: 24px;
980
-
981
- &::before {
982
- font-size: 20px;
983
- }
984
- }
985
- @if $ddt-skin-name == 'bootstrap5' {
986
- min-height: 24px;
987
- min-width: 24px;
988
-
989
- &::before {
990
- font-size: 12px;
991
- vertical-align: middle;
992
- }
993
- }
994
- @if $ddt-skin-name == 'FluentUI' {
995
- line-height: 27px;
996
- min-height: 32px;
997
- min-width: 32px;
998
-
999
- &::before {
1000
- font-size: 12px;
1001
- }
1002
- }
1003
- }
1004
- }
1005
-
1006
- .e-overflow {
1007
-
1008
- &.e-show-text {
1009
- padding: $ddt-delim-bigger-padding;
1010
- @if $ddt-skin-name == 'bootstrap5' {
1011
- line-height: 37px;
1012
- }
1013
- @if $ddt-skin-name == 'FluentUI' {
1014
- line-height: 38px;
1015
- }
1016
- }
1017
-
1018
- .e-remain {
1019
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
1020
- font-size: $text-base;
1021
- }
1022
- @else if $ddt-skin-name == 'FluentUI' {
1023
- font-size: $text-lg;
1024
- }
1025
- }
1026
- }
1027
-
1028
- @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
1029
- &.e-outline {
1030
- .e-overflow {
1031
- &.e-show-text {
1032
- padding: $ddt-outline-bigger-padding;
1033
- }
1034
-
1035
- &.e-total-count {
1036
- padding: $ddt-outline-bigger-padding;
1037
- }
1038
- }
1039
-
1040
- &.e-input-group.e-control-wrapper,
1041
- &.e-float-input.e-control-wrapper {
1042
- &.e-show-dd-icon .e-clear-icon {
1043
- right: 36px;
1044
- }
1045
- }
1046
- }
1047
-
1048
- &.e-outline.e-show-chip {
1049
- .e-overflow {
1050
- padding: $ddt-bigger-outline-chip-padding;
1051
-
1052
- &.e-total-count {
1053
- .e-remain {
1054
- padding-top: 10px;
1055
- }
1056
- }
1057
-
1058
- .e-remain {
1059
- &.e-wrap-count {
1060
- padding-top: 10px;
1061
- }
1062
- }
1063
- }
1064
-
1065
- .e-chips-wrapper {
1066
- padding: $ddt-bigger-outline-chip-padding;
1067
- }
1068
- }
1069
-
1070
- &.e-filled {
1071
- &.e-float-input.e-control-wrapper {
1072
- .e-overflow {
1073
- &.e-show-text {
1074
- line-height: 30px;
1075
- padding: 19px 12px 0 0;
1076
- }
1077
-
1078
- .e-remain {
1079
- &.e-wrap-count {
1080
- padding-top: 14px;
1081
- }
1082
- }
1083
- }
1084
- }
1085
-
1086
- &.e-float-input.e-control-wrapper:not(.e-show-chip) {
1087
- .e-ddt-icon,
1088
- &.e-show-dd-icon .e-clear-icon {
1089
- padding-top: 8px;
1090
- }
1091
- }
1092
-
1093
- &.e-float-input.e-control-wrapper.e-show-chip,
1094
- &.e-float-input.e-control-wrapper.e-show-text {
1095
- .e-ddt-icon {
1096
- bottom: 12px;
1097
- right: 12px;
1098
- }
1099
-
1100
- .e-clear-icon {
1101
- bottom: 11px;
1102
- right: 44px;
1103
- }
1104
-
1105
- &:not(.e-show-dd-icon) .e-clear-icon {
1106
- bottom: 14px;
1107
- right: 12px;
1108
- }
1109
- }
1110
-
1111
- .e-chips-wrapper,
1112
- .e-overflow {
1113
- .e-chips {
1114
- margin-top: 8px;
1115
- padding: 0 8px;
1116
- }
1117
- }
1118
-
1119
- &.e-float-input.e-control-wrapper.e-show-chip {
1120
- .e-chips-wrapper,
1121
- .e-overflow {
1122
- padding-top: 19px;
1123
-
1124
- .e-chips {
1125
- height: 24px;
1126
- }
1127
-
1128
- .e-chips > .e-chipcontent {
1129
- font-size: 13px;
1130
- }
1131
-
1132
- .e-chips-close::before {
1133
- font-size: 14px;
1134
- height: 14px;
1135
- width: 14px;
1136
- }
1137
- }
1138
- }
1139
-
1140
- &.e-input-group.e-control-wrapper:not(.e-float-input) {
1141
- .e-overflow {
1142
- &.e-show-text {
1143
- line-height: 55px;
1144
- }
1145
-
1146
- .e-remain {
1147
- &.e-wrap-count {
1148
- line-height: 55px;
1149
- padding-top: 0;
1150
- }
1151
- }
1152
- }
1153
-
1154
- &.e-show-chip {
1155
- .e-chips-wrapper,
1156
- .e-overflow {
1157
- .e-chips {
1158
- height: 32px;
1159
- padding: 0 12px;
1160
- }
1161
-
1162
- .e-chips > .e-chipcontent {
1163
- font-size: 14px;
1164
- }
1165
-
1166
- .e-chips-close::before {
1167
- font-size: 16px;
1168
- height: 16px;
1169
- width: 16px;
1170
- }
1171
- }
1172
- }
1173
-
1174
- &.e-show-dd-icon.e-show-text,
1175
- &.e-show-dd-icon.e-show-chip {
1176
- .e-ddt-icon,
1177
- &:not(.e-show-dd-icon) .e-clear-icon {
1178
- bottom: 16px;
1179
- right: 12px;
1180
- }
1181
- }
1182
-
1183
- .e-clear-icon {
1184
- bottom: 15px;
1185
- right: 44px;
1186
- }
1187
- }
1188
- }
1189
- }
1190
-
1191
- &.e-show-chip {
1192
- .e-overflow {
1193
- .e-remain {
1194
- &.e-wrap-count {
1195
- @if $ddt-skin-name == 'tailwind' {
1196
- line-height: 22px;
1197
- padding-top: 7px;
1198
- }
1199
- @if $ddt-skin-name == 'FluentUI' {
1200
- line-height: 38px;
1201
- padding-top: 0;
1202
- }
1203
- }
1204
- }
1205
-
1206
- &.e-total-count {
1207
- .e-remain {
1208
- @if $ddt-skin-name == 'bootstrap5' {
1209
- line-height: 36px;
1210
- padding: 0 12px;
1211
- }
1212
- @else if $ddt-skin-name == 'tailwind' {
1213
- padding: 8px 12px;
1214
- }
1215
- @else if $ddt-skin-name == 'FluentUI' {
1216
- line-height: 38px;
1217
- padding: 0 8px;
1218
- }
1219
- }
1220
- }
1221
- }
1222
- }
1223
-
1224
- &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1225
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
1226
- margin-right: $ddt-dd-icon-bigger-width;
1227
- }
1228
- max-width: $ddt-big-chip-ddi-width;
1229
- }
1230
-
1231
- &.e-show-clear .e-chips-wrapper .e-chips:last-child {
1232
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
1233
- margin-right: $ddt-close-icon-bigger-width;
1234
- }
1235
- max-width: $ddt-big-chip-ci-width;
1236
- }
1237
-
1238
- &.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1239
- margin-right: $ddt-last-chip-bigger-right-margin;
1240
- max-width: $ddt-big-chip-ddi-ci-width;
1241
- }
1242
-
1243
- &.e-popup {
1244
- @if $ddt-skin-name == 'tailwind' {
1245
- margin-top: 8px;
1246
- }
1247
- @else if $ddt-skin-name == 'bootstrap5' {
1248
- margin-top: 4px;
1249
- }
1250
-
1251
- .e-selectall-parent {
1252
- text-indent: $ddt-select-all-bigger-text-indent;
1253
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1254
- @if $ddt-skin-name == 'bootstrap5' {
1255
- padding: 3px 12px;
1256
- }
1257
- @else if $ddt-skin-name == 'tailwind' {
1258
- padding: 12px 16px;
1259
- }
1260
- @else {
1261
- padding: 10px 16px;
1262
- }
1263
-
1264
- .e-all-text {
1265
- font-size: $text-base;
1266
- line-height: 24px;
1267
- @if $ddt-skin-name == 'bootstrap5' {
1268
- margin: 0 12px;
1269
- }
1270
- @else {
1271
- margin: 0 16px;
1272
- }
1273
- }
1274
- }
1275
- }
1276
-
1277
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1278
- .e-popup-content {
1279
- &.e-no-data {
1280
- @if $ddt-skin-name == 'bootstrap5' {
1281
- padding: 9px 16px;
1282
- }
1283
- @else {
1284
- padding: 10px 16px;
1285
- }
1286
-
1287
- .e-ddt-nodata {
1288
- @if $ddt-skin-name == 'FluentUI' {
1289
- font-size: $text-lg;
1290
- }
1291
- @else {
1292
- font-size: $text-base;
1293
- }
1294
- line-height: 24px;
1295
- }
1296
- }
1297
- }
1298
-
1299
- .e-filter-wrap {
1300
- padding: 8px;
1301
- }
1302
- }
1303
-
1304
- .e-treeview .e-fullrow {
1305
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
1306
- height: $ddt-treeview-fullrow-bigger-height;
1307
- }
1308
- }
1309
-
1310
- .e-treeview > .e-ul {
1311
- @if $ddt-skin-name == 'bootstrap5' {
1312
- padding: 8px 16px;
1313
- }
1314
- @if $ddt-skin-name == 'tailwind' {
1315
- padding: 8px 0 8px 16px;
1316
- }
1317
- }
1318
- }
1319
-
1320
- &.e-rtl {
1321
- .e-chips {
1322
- @if $ddt-skin-name == 'tailwind' {
1323
- & > .e-chipcontent {
1324
- padding: $ddt-rtl-big-chip-content-padding;
1325
- }
1326
- }
1327
- }
1328
-
1329
- @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
1330
- &.e-outline {
1331
- &.e-input-group.e-control-wrapper,
1332
- &.e-float-input.e-control-wrapper {
1333
- &.e-show-dd-icon .e-clear-icon,
1334
- &.e-show-dd-icon.e-show-text .e-clear-icon,
1335
- &.e-show-dd-icon.e-show-chip .e-clear-icon {
1336
- left: 36px;
1337
- }
1338
- }
1339
- }
1340
-
1341
- &.e-filled {
1342
- &.e-float-input.e-control-wrapper {
1343
- .e-overflow {
1344
- &.e-show-text {
1345
- padding: 19px 0 0 12px;
1346
- }
1347
- }
1348
- }
1349
-
1350
- &.e-float-input.e-control-wrapper.e-show-chip,
1351
- &.e-float-input.e-control-wrapper.e-show-text {
1352
- .e-ddt-icon,
1353
- &:not(.e-show-dd-icon) .e-clear-icon {
1354
- left: 12px;
1355
- right: auto;
1356
- }
1357
-
1358
- &.e-show-dd-icon .e-clear-icon {
1359
- left: 44px;
1360
- right: auto;
1361
- }
1362
- }
1363
-
1364
- &.e-input-group.e-control-wrapper:not(.e-float-input) {
1365
- &.e-show-dd-icon:not(.e-input-focus),
1366
- &.e-show-dd-icon.e-show-chip {
1367
- .e-ddt-icon,
1368
- &:not(.e-show-dd-icon) .e-clear-icon {
1369
- left: 12px;
1370
- right: auto;
1371
- }
1372
- }
1373
-
1374
- .e-clear-icon {
1375
- left: 44px;
1376
- right: auto;
1377
- }
1378
- }
1379
- }
1380
- }
1381
-
1382
- &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1383
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1384
- margin-right: 4px;
1385
- }
1386
- @else if $ddt-skin-name != 'Material3' {
1387
- margin-left: $ddt-dd-icon-bigger-width;
1388
- margin-right: 1px;
1389
- }
1390
- }
1391
-
1392
- &.e-show-clear .e-chips-wrapper .e-chips:last-child {
1393
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1394
- margin-right: 4px;
1395
- }
1396
- @else if $ddt-skin-name != 'Material3' {
1397
- margin-left: $ddt-close-icon-bigger-width;
1398
- margin-right: 1px;
1399
- }
1400
- }
1401
-
1402
- &.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1403
- margin-left: $ddt-last-chip-bigger-right-margin;
1404
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1405
- margin-right: 4px;
1406
- }
1407
- @else {
1408
- margin-right: 1px;
1409
- }
1410
- }
1411
-
1412
- &.e-show-chip,
1413
- &.e-show-text {
1414
- &.e-input-group.e-show-dd-icon .e-clear-icon {
1415
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
1416
- left: $ddt-dd-icon-bigger-width;
1417
- }
1418
- right: auto;
1419
- }
1420
- }
1421
- }
1422
- }
1423
- }
1
+ @mixin ddt-rotate($position) {
2
+ transform: rotate($position);
3
+ transition: transform 300ms ease;
4
+ }
5
+
6
+ @mixin position($position, $right){
7
+ position: $position;
8
+ right: $right;
9
+ }
10
+
11
+ @mixin close-style($font-size, $height, $width) {
12
+ font-size: $font-size;
13
+ height: $height;
14
+ width: $width;
15
+ }
16
+
17
+ @mixin min-style($min-height, $min-width, $font-size, $line-height) {
18
+ min-height: $min-height;
19
+ min-width: $min-width;
20
+ line-height: $line-height;
21
+ &::before {
22
+ font-size: $font-size;
23
+ @if ($ddt-skin-name == 'fluent2') {
24
+ padding: 3px;
25
+ }
26
+ }
27
+ }
28
+
29
+ @mixin icon-style($bottom, $right) {
30
+ bottom: $bottom;
31
+ right: $right;
32
+ }
33
+
34
+ @mixin chip-last($margin-right, $max-width) {
35
+ .e-chips-wrapper .e-chips:last-child {
36
+ margin-right: $margin-right;
37
+ max-width: $max-width;
38
+ }
39
+ }
40
+
41
+ @mixin chip-last-margin($margin-right, $margin-left) {
42
+ .e-chips-wrapper .e-chips:last-child {
43
+ margin-right: $margin-right;
44
+ margin-left: $margin-left;
45
+ }
46
+ }
47
+
48
+ @include export-module('dropdowntree-layout') {
49
+
50
+ .e-ddt {
51
+ cursor: pointer;
52
+ outline: none;
53
+
54
+ .e-ddt-icon::before {
55
+ @include ddt-rotate(0deg);
56
+ }
57
+
58
+ &.e-icon-anim {
59
+ @if $ddt-skin-name == 'Material3' {
60
+ .e-ddt-icon {
61
+ background: $ddt-dd-icon-bg;
62
+ border-radius: $ddt-dd-icon-radius;
63
+ }
64
+ }
65
+
66
+ .e-ddt-icon::before {
67
+ @include ddt-rotate(180deg);
68
+ }
69
+ }
70
+
71
+ .e-ddt-hidden {
72
+ border: 0;
73
+ height: 0;
74
+ visibility: hidden;
75
+ width: 0;
76
+ }
77
+
78
+ &.e-input-group.e-control-wrapper,
79
+ &.e-float-input.e-control-wrapper {
80
+ .e-clear-icon {
81
+ box-sizing: content-box;
82
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' {
83
+ min-height: $ddt-close-icon-min-height;
84
+ }
85
+ @if $ddt-skin-name == 'Material3' {
86
+ margin: $ddt-dd-icon-margin;
87
+ }
88
+ @if $ddt-skin-name == 'FluentUI' {
89
+ min-height: $ddt-dd-icon-width;
90
+ }
91
+ @if $ddt-skin-name == 'fluent2' {
92
+ min-width: $ddt-close-icon-min-height;
93
+ margin: 5px 3px 5px 6px;
94
+ align-items: center;
95
+ &::before {
96
+ font-size: 14px;
97
+ padding: 3px;
98
+ }
99
+ }
100
+ }
101
+
102
+ .e-input-group-icon.e-ddt-icon {
103
+ border: 0;
104
+
105
+ @if $ddt-skin-name == 'bootstrap4' {
106
+ font-size: 8px;
107
+ }
108
+ @else if $ddt-skin-name == 'bootstrap5' {
109
+ font-size: 20px;
110
+ }
111
+ @else if $ddt-skin-name == 'fluent2' {
112
+ font-size: 14px;
113
+ margin: 5px 9px 5px 3px;
114
+ padding: 0;
115
+ min-height: 20px;
116
+ min-width: 20px;
117
+ }
118
+
119
+ @if $ddt-skin-name == 'Material3' {
120
+ font-size: $ddt-chip-icon-line-height;
121
+ margin: $ddt-dd-icon-margin;
122
+ line-height: $ddt-chip-icon-line-height;
123
+ }
124
+ }
125
+
126
+ .e-icon-hide {
127
+ display: none;
128
+ }
129
+
130
+ &.e-show-chip,
131
+ &.e-show-text {
132
+ .e-clear-icon {
133
+ bottom: $ddt-close-icon-bottom;
134
+ @include position(absolute, 0);
135
+ @if $ddt-skin-name == 'Material3' {
136
+ margin: 0;
137
+ }
138
+ }
139
+
140
+ &.e-show-dd-icon .e-clear-icon {
141
+ @if $ddt-skin-name == 'tailwind' {
142
+ right: 28px;
143
+ }
144
+ @else {
145
+ right: $ddt-dd-icon-width;
146
+ }
147
+ @if $ddt-skin-name == 'FluentUI' or $ddt-skin-name == 'fluent2' {
148
+ bottom: 0;
149
+ }
150
+ }
151
+
152
+ .e-ddt-icon {
153
+ @if $ddt-skin-name != 'FluentUI' {
154
+ bottom: $ddt-dd-icon-bottom;
155
+ }
156
+ @include position(absolute, 0);
157
+ }
158
+
159
+ &.e-input-focus input.e-dropdowntree.e-chip-input,
160
+ input.e-dropdowntree.e-chip-input {
161
+ padding-left: 0;
162
+ padding-right: 0;
163
+ }
164
+ }
165
+
166
+ &.e-valid-input:hover:not(.e-disabled) .e-clear-icon {
167
+ display: flex;
168
+ }
169
+ }
170
+
171
+ .e-chips-wrapper {
172
+ width: 100%;
173
+ }
174
+
175
+ &.e-show-chip {
176
+
177
+ .e-chips-close {
178
+ @if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'bootstrap5.3' {
179
+ @include min-style($ddt-chip-close-height, $ddt-chip-close-width, $ddt-chip-close-font, $ddt-chip-icon-line-height);
180
+ }
181
+ @else {
182
+ @include min-style($ddt-chip-close-height, $ddt-chip-close-width, $ddt-chip-close-font, null);
183
+ }
184
+ text-align: center;
185
+
186
+ &::before {
187
+ @if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'material' and $ddt-skin-name != 'material-dark' and $ddt-skin-name != 'Material3' {
188
+ vertical-align: middle;
189
+ }
190
+ }
191
+ }
192
+
193
+ .e-chips {
194
+ align-items: center;
195
+ border-radius: $ddt-chip-radius;
196
+ box-sizing: border-box;
197
+ display: inline-flex;
198
+ float: left;
199
+ height: $ddt-chip-height;
200
+ margin: $ddt-chip-margin;
201
+ max-width: $ddt-chip-width;
202
+ overflow: hidden;
203
+ padding: $ddt-chip-padding;
204
+ text-overflow: ellipsis;
205
+ white-space: nowrap;
206
+
207
+ & > .e-chipcontent {
208
+ max-width: 100%;
209
+ overflow: hidden;
210
+ padding: $ddt-chip-content-padding;
211
+ text-indent: 0;
212
+ text-overflow: ellipsis;
213
+ white-space: nowrap;
214
+
215
+ @if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
216
+ line-height: $ddt-chip-text-line-height;
217
+ }
218
+ }
219
+ }
220
+
221
+ .e-ddt-icon {
222
+ @if $ddt-skin-name == 'FluentUI' {
223
+ bottom: 0;
224
+ }
225
+ }
226
+ }
227
+
228
+ @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
229
+ &.e-outline {
230
+ .e-overflow {
231
+ &.e-show-text {
232
+ padding: 10px 12px 9px;
233
+ }
234
+
235
+ &.e-total-count {
236
+ padding: $ddt-outline-padding;
237
+ }
238
+ }
239
+
240
+ &.e-input-group.e-control-wrapper,
241
+ &.e-float-input.e-control-wrapper {
242
+ &.e-show-dd-icon .e-clear-icon {
243
+ right: 30px;
244
+ }
245
+
246
+ &:not(.e-show-chip) {
247
+ &.e-show-dd-icon.e-input-focus .e-clear-icon {
248
+ min-height: 20px;
249
+ }
250
+ }
251
+ }
252
+
253
+ &.e-show-chip {
254
+ .e-overflow,
255
+ .e-chips-wrapper {
256
+ padding: $ddt-outline-chip-padding;
257
+ }
258
+ }
259
+ }
260
+
261
+ &.e-filled {
262
+ &.e-float-input.e-control-wrapper {
263
+ .e-overflow {
264
+ &.e-show-text {
265
+ line-height: 21px;
266
+ padding: 14px 2px 5px 0;
267
+ }
268
+
269
+ .e-remain {
270
+ &.e-wrap-count {
271
+ padding-top: 10px;
272
+ }
273
+ }
274
+ }
275
+
276
+ &:not(.e-show-chip) {
277
+ .e-ddt-icon,
278
+ &.e-show-dd-icon .e-clear-icon {
279
+ padding-top: 8px;
280
+ }
281
+ }
282
+
283
+ &.e-show-chip,
284
+ &.e-show-text {
285
+ .e-ddt-icon {
286
+ @include icon-style(6px, 10px);
287
+ }
288
+
289
+ .e-clear-icon {
290
+ @include icon-style(5px, 38px);
291
+ }
292
+
293
+ &:not(.e-show-dd-icon) .e-clear-icon {
294
+ @include icon-style(9px, 10px);
295
+ }
296
+ }
297
+
298
+ &.e-show-chip {
299
+ .e-chips-wrapper,
300
+ .e-overflow {
301
+ padding-top: 8px;
302
+
303
+ .e-chips {
304
+ height: 18px;
305
+
306
+ > .e-chipcontent {
307
+ font-size: 12px;
308
+ padding: 0 4px 0 0;
309
+ }
310
+ }
311
+
312
+ .e-chips-close::before {
313
+ @include close-style(12px, 12px, 12px);
314
+ }
315
+ }
316
+ }
317
+ }
318
+
319
+ .e-chips-wrapper,
320
+ .e-overflow {
321
+ .e-chips {
322
+ margin-top: 8px;
323
+ padding: 0 8px;
324
+ }
325
+ }
326
+
327
+ &.e-input-group.e-control-wrapper:not(.e-float-input) {
328
+ .e-overflow {
329
+ &.e-show-text {
330
+ line-height: 39px;
331
+ padding: 0;
332
+ }
333
+
334
+ .e-remain {
335
+ &.e-wrap-count {
336
+ line-height: 39px;
337
+ padding-top: 0;
338
+ }
339
+ }
340
+ }
341
+
342
+ &.e-show-chip {
343
+ .e-chips-wrapper,
344
+ .e-overflow {
345
+ .e-chips {
346
+ height: 28px;
347
+ margin-top: 8px;
348
+ padding: 0 8px;
349
+
350
+ > .e-chipcontent {
351
+ font-size: 13px;
352
+ padding: 0 8px 0 0;
353
+ }
354
+ }
355
+
356
+ .e-chips-close::before {
357
+ @include close-style(14px, 12px, 12px);
358
+ }
359
+ }
360
+ }
361
+
362
+ &.e-show-dd-icon.e-show-text,
363
+ &.e-show-dd-icon.e-show-chip {
364
+ .e-ddt-icon {
365
+ @include icon-style(10px, 10px);
366
+ }
367
+ }
368
+
369
+ .e-clear-icon {
370
+ @include icon-style(9px, 38px);
371
+ }
372
+
373
+ &:not(.e-show-dd-icon) .e-clear-icon {
374
+ @include icon-style(9px, 10px);
375
+ }
376
+ }
377
+ }
378
+ }
379
+
380
+ .e-overflow {
381
+ white-space: nowrap;
382
+
383
+ &.e-show-text {
384
+ padding: $ddt-delim-padding;
385
+ @if $ddt-skin-name == 'tailwind' {
386
+ line-height: 22px;
387
+
388
+ .e-remain {
389
+ padding-left: 8px;
390
+ }
391
+ }
392
+ @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
393
+ line-height: 30px;
394
+ }
395
+ }
396
+
397
+ &.e-total-count {
398
+ box-sizing: border-box;
399
+ display: inline-block;
400
+ overflow: hidden;
401
+ text-overflow: ellipsis;
402
+
403
+ .e-remain {
404
+ @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
405
+ line-height: 30px;
406
+ }
407
+ @else {
408
+ padding: $ddt-rtl-remains-padding;
409
+ }
410
+ }
411
+ }
412
+
413
+ &.e-wrap-count {
414
+ @if $ddt-skin-name != 'bootstrap5' {
415
+ padding-top: $ddt-remains-count-padding-top;
416
+ }
417
+ }
418
+
419
+ .e-remain {
420
+ cursor: pointer;
421
+ display: inline-block;
422
+ font-size: $ddt-chip-font-size;
423
+ padding: $ddt-remains-padding;
424
+ @if $ddt-skin-name == 'fluent2' {
425
+ line-height: $ddt-remains-line-height;
426
+ }
427
+
428
+ &.e-wrap-count {
429
+ @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' {
430
+ padding: $ddt-overflow-count-padding;
431
+ }
432
+ @else if $ddt-skin-name == 'FluentUI' {
433
+ line-height: 30px;
434
+ }
435
+ @else {
436
+ padding-top: $ddt-overflow-count-padding-top;
437
+ }
438
+ }
439
+ }
440
+ }
441
+
442
+ &.e-show-chip {
443
+ .e-overflow {
444
+ &.e-total-count {
445
+ .e-remain {
446
+ padding: $ddt-delim-padding;
447
+ }
448
+ }
449
+ @if $ddt-skin-name == 'FluentUI' {
450
+ .e-remain.e-wrap-count {
451
+ padding-left: 4px;
452
+ }
453
+ }
454
+ }
455
+ }
456
+
457
+ &.e-show-dd-icon {
458
+ @include chip-last($ddt-dd-icon-width, $ddt-chip-ddi-width);
459
+ }
460
+
461
+ &.e-show-clear {
462
+ @include chip-last($ddt-close-icon-width, $ddt-chip-ci-width);
463
+ }
464
+
465
+ &.e-show-clear.e-show-dd-icon {
466
+ @include chip-last($ddt-last-chip-right-margin, $ddt-chip-ddi-ci-width);
467
+ }
468
+
469
+ input[readonly],
470
+ .e-dropdowntree,
471
+ input[readonly].e-input {
472
+ pointer-events: none;
473
+
474
+ &.e-chip-input {
475
+ width: 0;
476
+ visibility: hidden;
477
+ }
478
+ }
479
+
480
+ &.e-popup {
481
+ @if $skin-name != 'material' and $skin-name != 'FluentUI' and $skin-name != 'Material3' {
482
+ border: 1px solid $ddt-popup-border-color;
483
+ }
484
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
485
+ margin-top: 4px;
486
+ }
487
+ @else if $skin-name == 'Material3' {
488
+ margin-top: 2px;
489
+ }
490
+ @else if $skin-name == 'fluent2' {
491
+ margin-top: 1px;
492
+ }
493
+ @if $skin-name == 'bootstrap4' or $skin-name == 'Material3' or $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $skin-name == 'FluentUI' or $skin-name == 'fluent2' {
494
+ border-radius: $ddt-popup-radius;
495
+ }
496
+ box-shadow: $ddt-box-shadow;
497
+ position: absolute;
498
+
499
+ .e-active .e-checkbox-wrapper {
500
+ .e-frame:not(.e-check):not(.e-stop) {
501
+ @if $ddt-skin-name == 'bootstrap5' {
502
+ background-color: $ddt-readonly-input-bg-color;
503
+ }
504
+ }
505
+ }
506
+
507
+ .e-checkbox-wrapper {
508
+ .e-frame:not(.e-check):not(.e-stop) {
509
+ @if $ddt-skin-name == 'bootstrap5' {
510
+ background-color: transparent;
511
+ }
512
+ }
513
+ }
514
+
515
+ .e-selectall-parent {
516
+ border-bottom: 1px solid;
517
+ cursor: pointer;
518
+ display: block;
519
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'FluentUI' {
520
+ line-height: $ddt-select-all-height;
521
+ }
522
+ overflow: hidden;
523
+ position: relative;
524
+ text-indent: $ddt-select-all-text-indent;
525
+ white-space: nowrap;
526
+ width: 100%;
527
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' or $ddt-skin-name == 'fluent2' or $ddt-skin-name == 'Material3' {
528
+ padding: $ddt-select-all-padding;
529
+ }
530
+
531
+ &.e-hide-selectall {
532
+ display: none;
533
+ }
534
+
535
+ .e-checkbox-wrapper {
536
+ position: relative;
537
+ text-indent: 0;
538
+
539
+ .e-frame {
540
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
541
+ margin-top: -3px;
542
+ }
543
+ }
544
+ }
545
+
546
+ .e-all-text {
547
+ font-family: inherit;
548
+ font-size: 14px;
549
+ margin: $ddt-select-all-checkbox-margin;
550
+ @if $ddt-skin-name == 'tailwind' {
551
+ line-height: $ddt-select-all-height;
552
+ }
553
+ }
554
+ }
555
+
556
+ .e-filter-wrap {
557
+ border-top-width: $ddt-filter-top-border;
558
+ display: block;
559
+ padding: $ddt-filter-padding;
560
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'FluentUI' {
561
+ border-bottom: $ddt-filter-border;
562
+ }
563
+ @else {
564
+ border: $ddt-filter-border;
565
+ }
566
+
567
+ @if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
568
+ border-left-width: 0;
569
+ border-right-width: 0;
570
+ }
571
+ @if $ddt-skin-name == 'bootstrap-dark' or $ddt-skin-name == 'bootstrap' {
572
+ border-bottom: $ddt-filter-border-bottom-color;
573
+ }
574
+ @if $ddt-skin-name == 'bootstrap4' {
575
+ background: $ddt-filter-bg;
576
+ }
577
+
578
+ .e-input,
579
+ .e-input:focus {
580
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' {
581
+ padding: $ddt-list-filter-text-indent;
582
+ }
583
+ }
584
+
585
+ .e-input-group {
586
+ margin-bottom: 0;
587
+
588
+ @if $ddt-skin-name == 'tailwind' {
589
+ border: 1px solid $border;
590
+ border-radius: 4px;
591
+ }
592
+
593
+ @if $ddt-skin-name == 'bootstrap4' {
594
+ background: $ddt-filter-bg;
595
+ }
596
+
597
+ .e-clear-icon {
598
+ @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
599
+ margin: 6px 6px 5px;
600
+ min-height: 12px;
601
+ min-width: 12px;
602
+ padding: 6px;
603
+ }
604
+ }
605
+
606
+ &:not(.e-disabled):not(.e-float-icon-left)::before,
607
+ &:not(.e-disabled):not(.e-float-icon-left)::after,
608
+ &.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::before,
609
+ &.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::after {
610
+ @if $ddt-skin-name == 'material' {
611
+ bottom: -1px;
612
+ height: 1px;
613
+ }
614
+ }
615
+ }
616
+ }
617
+
618
+ .e-popup-content {
619
+ overflow: auto;
620
+ position: relative;
621
+
622
+ .e-ddt-nodata {
623
+ display: none;
624
+ }
625
+
626
+ &.e-no-data {
627
+ cursor: default;
628
+ font-family: inherit;
629
+ font-size: 14px;
630
+ text-align: center;
631
+ @if $ddt-skin-name == 'tailwind' {
632
+ padding: 8px 16px;
633
+ }
634
+ @else if $ddt-skin-name == 'bootstrap5' {
635
+ padding: 7px 16px;
636
+ }
637
+ @else {
638
+ padding: 14px 16px;
639
+ }
640
+
641
+ .e-treeview {
642
+ display: none;
643
+ }
644
+
645
+ .e-ddt-nodata {
646
+ display: block;
647
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5'or $ddt-skin-name == 'FluentUI' {
648
+ line-height: 22px;
649
+ }
650
+ }
651
+ }
652
+ }
653
+
654
+ .e-treeview {
655
+ display: inline-table;
656
+ width: 100%;
657
+
658
+ .e-list-item {
659
+ @if $ddt-skin-name != 'fluent2' {
660
+ padding: 0;
661
+
662
+ .e-ul {
663
+ margin: 0;
664
+ padding: 0 0 0 14px;
665
+ }
666
+ }
667
+ }
668
+
669
+ .e-fullrow {
670
+ @if $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
671
+ border-width: 2px;
672
+ }
673
+ @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 != 'fluent2' {
674
+ height: $ddt-treeview-fullrow-height;
675
+ }
676
+ }
677
+
678
+ & > .e-ul {
679
+ overflow: hidden;
680
+ @if $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'fluent2' {
681
+ padding: $ddt-treeview-padding;
682
+ }
683
+ }
684
+
685
+ &.e-fullrow-wrap .e-text-content {
686
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' and $ddt-skin-name != 'fluent2' {
687
+ padding-bottom: $ddt-treeview-content-padding-top;
688
+ padding-top: $ddt-treeview-content-padding-bottom;
689
+ }
690
+ }
691
+ }
692
+
693
+ .e-ddt-footer,
694
+ .e-ddt-header {
695
+ cursor: default;
696
+ }
697
+ }
698
+
699
+ &.e-rtl {
700
+ &.e-show-chip {
701
+ .e-chips {
702
+ float: right;
703
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
704
+ & > .e-chipcontent {
705
+ padding: $ddt-rtl-chip-content-padding;
706
+ }
707
+ }
708
+ }
709
+ }
710
+
711
+ &.e-show-chip,
712
+ &.e-show-text {
713
+ .e-overflow {
714
+ .e-remain {
715
+ padding: $ddt-rtl-remains-padding;
716
+
717
+ &.e-wrap-count {
718
+ @if $ddt-skin-name == 'bootstrap5' {
719
+ padding-top: 5px;
720
+ }
721
+ @else {
722
+ padding-top: $ddt-remains-count-padding-top;
723
+ }
724
+ }
725
+ }
726
+
727
+ &.e-wrap-count {
728
+ @include position(absolute, auto);
729
+ }
730
+ }
731
+ }
732
+
733
+ &.e-show-text {
734
+ .e-overflow {
735
+ &.e-total-count {
736
+ .e-remain {
737
+ padding: $ddt-remains-padding;
738
+ }
739
+ }
740
+ }
741
+ }
742
+
743
+ &.e-show-text {
744
+ .e-overflow {
745
+ &.e-wrap-count {
746
+ .e-remain {
747
+ @if $ddt-skin-name == 'tailwind' {
748
+ padding-right: 8px;
749
+ }
750
+ }
751
+ }
752
+ }
753
+ }
754
+
755
+ &.e-show-chip {
756
+ .e-overflow {
757
+ &.e-total-count {
758
+ .e-remain {
759
+ padding: $ddt-delim-padding;
760
+ }
761
+ }
762
+ }
763
+ }
764
+
765
+ @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
766
+ &.e-outline {
767
+ &.e-input-group.e-control-wrapper,
768
+ &.e-float-input.e-control-wrapper {
769
+ &.e-show-dd-icon .e-clear-icon,
770
+ &.e-show-dd-icon.e-show-text .e-clear-icon,
771
+ &.e-show-dd-icon.e-show-chip .e-clear-icon {
772
+ left: 30px;
773
+ }
774
+ }
775
+ }
776
+
777
+ &.e-filled {
778
+ &.e-float-input.e-control-wrapper {
779
+ .e-overflow {
780
+ &.e-show-text {
781
+ padding: 14px 0 5px 2px;
782
+ }
783
+ }
784
+ }
785
+
786
+ &.e-float-input.e-control-wrapper.e-show-chip,
787
+ &.e-float-input.e-control-wrapper.e-show-text {
788
+ .e-ddt-icon {
789
+ left: 10px;
790
+ right: auto;
791
+ }
792
+
793
+ &.e-show-dd-icon .e-clear-icon {
794
+ left: 38px;
795
+ right: auto;
796
+ }
797
+
798
+ &:not(.e-show-dd-icon) .e-clear-icon {
799
+ left: 10px;
800
+ right: auto;
801
+ }
802
+ }
803
+
804
+ &.e-float-input.e-control-wrapper.e-show-chip {
805
+ .e-chips-wrapper,
806
+ .e-overflow {
807
+ .e-chips > .e-chipcontent {
808
+ padding: 0 0 0 4px;
809
+ }
810
+ }
811
+ }
812
+
813
+ &.e-input-group.e-control-wrapper:not(.e-float-input) {
814
+ &.e-show-chip {
815
+ .e-chips-wrapper,
816
+ .e-overflow {
817
+ .e-chips > .e-chipcontent {
818
+ padding: 0 0 0 8px;
819
+ }
820
+ }
821
+ }
822
+
823
+ &.e-show-dd-icon.e-show-text,
824
+ &.e-show-dd-icon.e-show-chip {
825
+ .e-ddt-icon {
826
+ left: 10px;
827
+ right: auto;
828
+ }
829
+ }
830
+
831
+ &.e-show-dd-icon .e-clear-icon {
832
+ left: 38px;
833
+ right: auto;
834
+ }
835
+
836
+ &:not(.e-show-dd-icon) .e-clear-icon {
837
+ left: 10px;
838
+ right: auto;
839
+ }
840
+ }
841
+ }
842
+ }
843
+
844
+ &.e-show-dd-icon {
845
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
846
+ @include chip-last-margin(4px, 18px);
847
+ }
848
+ @else {
849
+ @include chip-last-margin(1px, $ddt-dd-icon-width);
850
+ }
851
+ }
852
+
853
+ &.e-show-clear {
854
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
855
+ @include chip-last-margin(4px, 18px);
856
+ }
857
+ @else {
858
+ @include chip-last-margin(1px, $ddt-close-icon-width);
859
+ }
860
+ }
861
+
862
+ &.e-show-clear.e-show-dd-icon {
863
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
864
+ @include chip-last-margin(4px, $ddt-last-chip-right-margin);
865
+ }
866
+ @else {
867
+ @include chip-last-margin(1px, $ddt-last-chip-right-margin);
868
+ }
869
+ }
870
+
871
+ &.e-input-group.e-control-wrapper,
872
+ &.e-float-input.e-control-wrapper {
873
+
874
+ &.e-show-chip,
875
+ &.e-show-text {
876
+
877
+ .e-clear-icon,
878
+ .e-ddt-icon {
879
+ left: 0;
880
+ right: auto;
881
+ }
882
+
883
+ &.e-show-dd-icon .e-clear-icon {
884
+ @if $ddt-skin-name == 'tailwind' {
885
+ left: 28px;
886
+ }
887
+ @else {
888
+ left: $ddt-dd-icon-width;
889
+ }
890
+ }
891
+ }
892
+ }
893
+
894
+ &.e-popup {
895
+ .e-treeview .e-list-item .e-ul {
896
+ padding: 0 14px 0 0;
897
+ }
898
+ }
899
+ }
900
+ }
901
+
902
+ .e-ddt-icon-hide {
903
+ display: none;
904
+ }
905
+
906
+ .e-bigger .e-ddt,
907
+ .e-ddt.e-bigger {
908
+
909
+ .e-chips {
910
+ height: $ddt-chip-bigger-height;
911
+
912
+ @if $ddt-skin-name == 'tailwind' {
913
+ padding: 3px 8px;
914
+
915
+ & > .e-chipcontent {
916
+ padding: $ddt-big-chip-content-padding;
917
+ }
918
+ }
919
+ @if $ddt-skin-name == 'FluentUI' {
920
+ font-size: $text-lg;
921
+ }
922
+ }
923
+
924
+ &.e-input-group.e-control-wrapper,
925
+ &.e-float-input.e-control-wrapper {
926
+
927
+ &.e-show-chip,
928
+ &.e-show-text {
929
+ &.e-show-dd-icon .e-clear-icon {
930
+ @if $ddt-skin-name == 'tailwind' {
931
+ @include icon-style(3px, 32px);
932
+ }
933
+ @else if $ddt-skin-name == 'bootstrap4' {
934
+ right: 33px;
935
+ }
936
+ @else if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
937
+ @include icon-style(auto, 36px);
938
+ }
939
+ @else if $ddt-skin-name != 'Material3' {
940
+ right: $ddt-dd-icon-bigger-width;
941
+ }
942
+ }
943
+
944
+ @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
945
+ &.e-show-chip {
946
+ &.e-show-dd-icon .e-clear-icon {
947
+ bottom: 0;
948
+ }
949
+ }
950
+ }
951
+
952
+ .e-ddt-icon {
953
+ bottom: $ddt-dd-icon-bigger-bottom;
954
+ }
955
+ }
956
+
957
+ .e-input-group-icon.e-ddt-icon {
958
+ @if $ddt-skin-name == 'bootstrap4' {
959
+ font-size: 10px;
960
+ }
961
+ @else if $ddt-skin-name == 'fluent2' {
962
+ font-size: 18px;
963
+ }
964
+ }
965
+
966
+ .e-clear-icon {
967
+ @if $ddt-skin-name == 'tailwind' {
968
+ min-width: 0;
969
+ padding: 6px;
970
+ }
971
+ @else {
972
+ min-height: $ddt-close-icon-bigger-min-height;
973
+ }
974
+ @if $ddt-skin-name == 'fluent2' {
975
+ &::before {
976
+ font-size: 18px;
977
+ }
978
+ }
979
+ }
980
+ }
981
+
982
+ &.e-show-chip {
983
+ .e-chips-close {
984
+ @if $ddt-skin-name == 'bootstrap4' {
985
+ @include min-style(30px, 30px, 10px, 27px);
986
+ }
987
+ @if $ddt-skin-name == 'tailwind' {
988
+ @include min-style(24px, 24px, 20px, 18px);
989
+ }
990
+ @if $ddt-skin-name == 'bootstrap5' {
991
+ @include min-style(24px, 24px, 12px, null);
992
+ &::before {
993
+ vertical-align: middle;
994
+ }
995
+ }
996
+ @if $ddt-skin-name == 'FluentUI' {
997
+ @include min-style(32px, 32px, 12px, 27px);
998
+ }
999
+ }
1000
+
1001
+ .e-overflow {
1002
+ .e-remain {
1003
+ &.e-wrap-count {
1004
+ @if $ddt-skin-name == 'tailwind' {
1005
+ line-height: 22px;
1006
+ padding-top: 7px;
1007
+ }
1008
+ @if $ddt-skin-name == 'FluentUI' {
1009
+ line-height: 38px;
1010
+ padding-top: 0;
1011
+ }
1012
+ }
1013
+ }
1014
+
1015
+ &.e-total-count {
1016
+ .e-remain {
1017
+ @if $ddt-skin-name == 'bootstrap5' {
1018
+ line-height: 36px;
1019
+ padding: 0 12px;
1020
+ }
1021
+ @else if $ddt-skin-name == 'tailwind' {
1022
+ padding: 8px 12px;
1023
+ }
1024
+ @else if $ddt-skin-name == 'FluentUI' {
1025
+ line-height: 38px;
1026
+ padding: 0 8px;
1027
+ }
1028
+ }
1029
+ }
1030
+ }
1031
+ }
1032
+
1033
+ .e-overflow {
1034
+
1035
+ &.e-show-text {
1036
+ padding: $ddt-delim-bigger-padding;
1037
+ @if $ddt-skin-name == 'bootstrap5' {
1038
+ line-height: 37px;
1039
+ }
1040
+ @if $ddt-skin-name == 'FluentUI' {
1041
+ line-height: 38px;
1042
+ }
1043
+ }
1044
+
1045
+ .e-remain {
1046
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1047
+ font-size: $ddt-remains-font-size;
1048
+ }
1049
+ }
1050
+ }
1051
+
1052
+ @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
1053
+ &.e-outline {
1054
+ .e-overflow {
1055
+ &.e-show-text,
1056
+ &.e-total-count {
1057
+ padding: $ddt-outline-bigger-padding;
1058
+ }
1059
+ }
1060
+
1061
+ &.e-input-group.e-control-wrapper,
1062
+ &.e-float-input.e-control-wrapper {
1063
+ &.e-show-dd-icon .e-clear-icon {
1064
+ right: 36px;
1065
+ }
1066
+ }
1067
+ }
1068
+
1069
+ &.e-outline.e-show-chip {
1070
+ .e-overflow {
1071
+ padding: $ddt-bigger-outline-chip-padding;
1072
+
1073
+ &.e-total-count {
1074
+ .e-remain {
1075
+ padding-top: 10px;
1076
+ }
1077
+ }
1078
+
1079
+ .e-remain {
1080
+ &.e-wrap-count {
1081
+ padding-top: 10px;
1082
+ }
1083
+ }
1084
+ }
1085
+
1086
+ .e-chips-wrapper {
1087
+ padding: $ddt-bigger-outline-chip-padding;
1088
+ }
1089
+ }
1090
+
1091
+ &.e-filled {
1092
+ &.e-float-input.e-control-wrapper {
1093
+ .e-overflow {
1094
+ &.e-show-text {
1095
+ line-height: 30px;
1096
+ padding: 19px 12px 0 0;
1097
+ }
1098
+
1099
+ .e-remain {
1100
+ &.e-wrap-count {
1101
+ padding-top: 14px;
1102
+ }
1103
+ }
1104
+ }
1105
+ }
1106
+
1107
+ &.e-float-input.e-control-wrapper:not(.e-show-chip) {
1108
+ .e-ddt-icon,
1109
+ &.e-show-dd-icon .e-clear-icon {
1110
+ padding-top: 8px;
1111
+ }
1112
+ }
1113
+
1114
+ &.e-float-input.e-control-wrapper.e-show-chip,
1115
+ &.e-float-input.e-control-wrapper.e-show-text {
1116
+ .e-ddt-icon {
1117
+ @include icon-style(12px, 12px);
1118
+ }
1119
+
1120
+ .e-clear-icon {
1121
+ @include icon-style(11px, 44px);
1122
+ }
1123
+
1124
+ &:not(.e-show-dd-icon) .e-clear-icon {
1125
+ @include icon-style(14px, 12px);
1126
+ }
1127
+ }
1128
+
1129
+ .e-chips-wrapper,
1130
+ .e-overflow {
1131
+ .e-chips {
1132
+ margin-top: 8px;
1133
+ padding: 0 8px;
1134
+ }
1135
+ }
1136
+
1137
+ &.e-float-input.e-control-wrapper.e-show-chip {
1138
+ .e-chips-wrapper,
1139
+ .e-overflow {
1140
+ padding-top: 19px;
1141
+
1142
+ .e-chips {
1143
+ height: 24px;
1144
+ }
1145
+
1146
+ .e-chips > .e-chipcontent {
1147
+ font-size: 13px;
1148
+ }
1149
+
1150
+ .e-chips-close::before {
1151
+ @include close-style(14px, 14px, 14px);
1152
+ }
1153
+ }
1154
+ }
1155
+
1156
+ &.e-input-group.e-control-wrapper:not(.e-float-input) {
1157
+ .e-overflow {
1158
+ &.e-show-text {
1159
+ line-height: 55px;
1160
+ }
1161
+
1162
+ .e-remain {
1163
+ &.e-wrap-count {
1164
+ line-height: 55px;
1165
+ padding-top: 0;
1166
+ }
1167
+ }
1168
+ }
1169
+
1170
+ &.e-show-chip {
1171
+ .e-chips-wrapper,
1172
+ .e-overflow {
1173
+ .e-chips {
1174
+ height: 32px;
1175
+ padding: 0 12px;
1176
+
1177
+ > .e-chipcontent {
1178
+ font-size: 14px;
1179
+ }
1180
+ }
1181
+
1182
+ .e-chips-close::before {
1183
+ @include close-style(16px, 16px, 16px);
1184
+ }
1185
+ }
1186
+ }
1187
+
1188
+ &.e-show-dd-icon.e-show-text,
1189
+ &.e-show-dd-icon.e-show-chip {
1190
+ .e-ddt-icon,
1191
+ &:not(.e-show-dd-icon) .e-clear-icon {
1192
+ @include icon-style(16px, 12px);
1193
+ }
1194
+ }
1195
+
1196
+ .e-clear-icon {
1197
+ @include icon-style(15px, 44px);
1198
+ }
1199
+ }
1200
+ }
1201
+ }
1202
+
1203
+ &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1204
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
1205
+ margin-right: $ddt-dd-icon-bigger-width;
1206
+ }
1207
+ max-width: $ddt-big-chip-ddi-width;
1208
+ }
1209
+
1210
+ &.e-show-clear .e-chips-wrapper .e-chips:last-child {
1211
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
1212
+ margin-right: $ddt-close-icon-bigger-width;
1213
+ }
1214
+ max-width: $ddt-big-chip-ci-width;
1215
+ }
1216
+
1217
+ &.e-show-clear.e-show-dd-icon {
1218
+ @include chip-last($ddt-last-chip-bigger-right-margin, $ddt-big-chip-ddi-ci-width);
1219
+ }
1220
+
1221
+ &.e-popup {
1222
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
1223
+ margin-top: $ddt-popup-margin;
1224
+ }
1225
+
1226
+ .e-selectall-parent {
1227
+ text-indent: $ddt-select-all-bigger-text-indent;
1228
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1229
+ padding: $ddt-big-select-all-padding;
1230
+
1231
+ .e-all-text {
1232
+ font-size: $text-base;
1233
+ line-height: 24px;
1234
+ @if $ddt-skin-name == 'bootstrap5' {
1235
+ margin: 0 12px;
1236
+ }
1237
+ @else {
1238
+ margin: 0 16px;
1239
+ }
1240
+ }
1241
+ }
1242
+ }
1243
+
1244
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1245
+ .e-popup-content {
1246
+ &.e-no-data {
1247
+ @if $ddt-skin-name == 'bootstrap5' {
1248
+ padding: 9px 16px;
1249
+ }
1250
+ @else {
1251
+ padding: 10px 16px;
1252
+ }
1253
+
1254
+ .e-ddt-nodata {
1255
+ @if $ddt-skin-name == 'FluentUI' {
1256
+ font-size: $text-lg;
1257
+ }
1258
+ @else {
1259
+ font-size: $text-base;
1260
+ }
1261
+ line-height: 24px;
1262
+ }
1263
+ }
1264
+ }
1265
+
1266
+ .e-filter-wrap {
1267
+ padding: 8px;
1268
+ }
1269
+ }
1270
+
1271
+ .e-treeview {
1272
+ .e-fullrow {
1273
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
1274
+ height: $ddt-treeview-fullrow-bigger-height;
1275
+ }
1276
+ }
1277
+
1278
+ > .e-ul {
1279
+ @if $ddt-skin-name == 'bootstrap5' {
1280
+ padding: 8px 16px;
1281
+ }
1282
+ @if $ddt-skin-name == 'tailwind' {
1283
+ padding: 8px 0 8px 16px;
1284
+ }
1285
+ }
1286
+ }
1287
+ }
1288
+
1289
+ &.e-rtl {
1290
+ .e-chips {
1291
+ @if $ddt-skin-name == 'tailwind' {
1292
+ & > .e-chipcontent {
1293
+ padding: $ddt-rtl-big-chip-content-padding;
1294
+ }
1295
+ }
1296
+ }
1297
+
1298
+ @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
1299
+ &.e-outline {
1300
+ &.e-input-group.e-control-wrapper,
1301
+ &.e-float-input.e-control-wrapper {
1302
+ &.e-show-dd-icon .e-clear-icon,
1303
+ &.e-show-dd-icon.e-show-text .e-clear-icon,
1304
+ &.e-show-dd-icon.e-show-chip .e-clear-icon {
1305
+ left: 36px;
1306
+ }
1307
+ }
1308
+ }
1309
+
1310
+ &.e-filled {
1311
+ &.e-float-input.e-control-wrapper {
1312
+ .e-overflow {
1313
+ &.e-show-text {
1314
+ padding: 19px 0 0 12px;
1315
+ }
1316
+ }
1317
+
1318
+ &.e-show-chip,
1319
+ &.e-show-text {
1320
+ .e-ddt-icon,
1321
+ &:not(.e-show-dd-icon) .e-clear-icon {
1322
+ left: 12px;
1323
+ right: auto;
1324
+ }
1325
+
1326
+ &.e-show-dd-icon .e-clear-icon {
1327
+ left: 44px;
1328
+ right: auto;
1329
+ }
1330
+ }
1331
+ }
1332
+
1333
+ &.e-input-group.e-control-wrapper:not(.e-float-input) {
1334
+ &.e-show-dd-icon:not(.e-input-focus),
1335
+ &.e-show-dd-icon.e-show-chip {
1336
+ .e-ddt-icon,
1337
+ &:not(.e-show-dd-icon) .e-clear-icon {
1338
+ left: 12px;
1339
+ right: auto;
1340
+ }
1341
+ }
1342
+
1343
+ .e-clear-icon {
1344
+ left: 44px;
1345
+ right: auto;
1346
+ }
1347
+ }
1348
+ }
1349
+ }
1350
+
1351
+ &.e-show-dd-icon {
1352
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
1353
+ @include chip-last-margin(4px, null);
1354
+ }
1355
+ @else if $ddt-skin-name != 'Material3' {
1356
+ @include chip-last-margin(1px, $ddt-dd-icon-bigger-width);
1357
+ }
1358
+ }
1359
+
1360
+ &.e-show-clear {
1361
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'bootstrap5.3' or $ddt-skin-name == 'FluentUI' {
1362
+ @include chip-last-margin(4px, null);
1363
+ }
1364
+ @else if $ddt-skin-name != 'Material3' {
1365
+ @include chip-last-margin(1px, $ddt-close-icon-bigger-width);
1366
+ }
1367
+ }
1368
+
1369
+ &.e-show-clear.e-show-dd-icon {
1370
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1371
+ @include chip-last-margin($ddt-last-chip-bigger-right-margin, 4px);
1372
+ }
1373
+ @else {
1374
+ @include chip-last-margin($ddt-last-chip-bigger-right-margin, 1px);
1375
+ }
1376
+ }
1377
+
1378
+ &.e-show-chip,
1379
+ &.e-show-text {
1380
+ &.e-input-group.e-show-dd-icon .e-clear-icon {
1381
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'bootstrap5.3' and $ddt-skin-name != 'Material3' {
1382
+ left: $ddt-dd-icon-bigger-width;
1383
+ }
1384
+ right: auto;
1385
+ }
1386
+ }
1387
+ }
1388
+ }
1389
+ }