@syncfusion/ej2-angular-dropdowns 23.1.39-ngcc → 23.1.39

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 (489) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/auto-complete/autocomplete-all.module.mjs +23 -0
  3. package/esm2020/src/auto-complete/autocomplete.component.mjs +129 -0
  4. package/esm2020/src/auto-complete/autocomplete.module.mjs +25 -0
  5. package/esm2020/src/combo-box/combobox-all.module.mjs +23 -0
  6. package/esm2020/src/combo-box/combobox.component.mjs +129 -0
  7. package/esm2020/src/combo-box/combobox.module.mjs +25 -0
  8. package/esm2020/src/drop-down-list/dropdownlist-all.module.mjs +29 -0
  9. package/esm2020/src/drop-down-list/dropdownlist.component.mjs +135 -0
  10. package/esm2020/src/drop-down-list/dropdownlist.module.mjs +25 -0
  11. package/esm2020/src/drop-down-tree/dropdowntree-all.module.mjs +23 -0
  12. package/esm2020/src/drop-down-tree/dropdowntree.component.mjs +116 -0
  13. package/esm2020/src/drop-down-tree/dropdowntree.module.mjs +25 -0
  14. package/esm2020/src/index.mjs +23 -0
  15. package/esm2020/src/list-box/listbox-all.module.mjs +23 -0
  16. package/esm2020/src/list-box/listbox.component.mjs +104 -0
  17. package/esm2020/src/list-box/listbox.module.mjs +25 -0
  18. package/esm2020/src/mention/mention-all.module.mjs +23 -0
  19. package/esm2020/src/mention/mention.component.mjs +84 -0
  20. package/esm2020/src/mention/mention.module.mjs +25 -0
  21. package/esm2020/src/multi-select/multiselect-all.module.mjs +29 -0
  22. package/esm2020/src/multi-select/multiselect.component.mjs +135 -0
  23. package/esm2020/src/multi-select/multiselect.module.mjs +25 -0
  24. package/esm2020/syncfusion-ej2-angular-dropdowns.mjs +5 -0
  25. package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs +1084 -0
  26. package/fesm2015/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
  27. package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs +1084 -0
  28. package/fesm2020/syncfusion-ej2-angular-dropdowns.mjs.map +1 -0
  29. package/package.json +27 -13
  30. package/schematics/utils/lib-details.d.ts +2 -2
  31. package/src/auto-complete/autocomplete-all.module.d.ts +6 -0
  32. package/src/auto-complete/autocomplete.component.d.ts +7 -4
  33. package/src/auto-complete/autocomplete.module.d.ts +6 -0
  34. package/src/combo-box/combobox-all.module.d.ts +6 -0
  35. package/src/combo-box/combobox.component.d.ts +7 -4
  36. package/src/combo-box/combobox.module.d.ts +6 -0
  37. package/src/drop-down-list/dropdownlist-all.module.d.ts +6 -0
  38. package/src/drop-down-list/dropdownlist.component.d.ts +5 -2
  39. package/src/drop-down-list/dropdownlist.module.d.ts +6 -0
  40. package/src/drop-down-tree/dropdowntree-all.module.d.ts +6 -0
  41. package/src/drop-down-tree/dropdowntree.component.d.ts +3 -0
  42. package/src/drop-down-tree/dropdowntree.module.d.ts +6 -0
  43. package/src/list-box/listbox-all.module.d.ts +6 -0
  44. package/src/list-box/listbox.component.d.ts +4 -1
  45. package/src/list-box/listbox.module.d.ts +6 -0
  46. package/src/mention/mention-all.module.d.ts +6 -0
  47. package/src/mention/mention.component.d.ts +3 -0
  48. package/src/mention/mention.module.d.ts +6 -0
  49. package/src/multi-select/multiselect-all.module.d.ts +6 -0
  50. package/src/multi-select/multiselect.component.d.ts +3 -0
  51. package/src/multi-select/multiselect.module.d.ts +6 -0
  52. package/styles/auto-complete/_all.scss +1 -0
  53. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -0
  54. package/styles/auto-complete/_bootstrap-definition.scss +2 -0
  55. package/styles/auto-complete/_bootstrap4-definition.scss +11 -0
  56. package/styles/auto-complete/_bootstrap5-dark-definition.scss +1 -0
  57. package/styles/auto-complete/_bootstrap5-definition.scss +2 -0
  58. package/styles/auto-complete/_fabric-dark-definition.scss +2 -0
  59. package/styles/auto-complete/_fabric-definition.scss +2 -0
  60. package/styles/auto-complete/_fluent-dark-definition.scss +1 -0
  61. package/styles/auto-complete/_fluent-definition.scss +2 -0
  62. package/styles/auto-complete/_fusionnew-definition.scss +2 -0
  63. package/styles/auto-complete/_highcontrast-definition.scss +2 -0
  64. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -0
  65. package/styles/auto-complete/_material-dark-definition.scss +2 -0
  66. package/styles/auto-complete/_material-definition.scss +2 -0
  67. package/styles/auto-complete/_material3-dark-definition.scss +1 -0
  68. package/styles/auto-complete/_material3-definition.scss +2 -0
  69. package/styles/auto-complete/_tailwind-dark-definition.scss +1 -0
  70. package/styles/auto-complete/_tailwind-definition.scss +2 -0
  71. package/styles/auto-complete/bootstrap-dark.scss +4 -1
  72. package/styles/auto-complete/bootstrap.scss +4 -1
  73. package/styles/auto-complete/bootstrap4.scss +4 -1
  74. package/styles/auto-complete/bootstrap5-dark.scss +4 -1
  75. package/styles/auto-complete/bootstrap5.scss +4 -1
  76. package/styles/auto-complete/fabric-dark.scss +4 -1
  77. package/styles/auto-complete/fabric.scss +4 -1
  78. package/styles/auto-complete/fluent-dark.scss +4 -1
  79. package/styles/auto-complete/fluent.scss +4 -1
  80. package/styles/auto-complete/highcontrast-light.scss +4 -1
  81. package/styles/auto-complete/highcontrast.scss +4 -1
  82. package/styles/auto-complete/material-dark.scss +4 -1
  83. package/styles/auto-complete/material.scss +4 -1
  84. package/styles/auto-complete/material3-dark.scss +4 -1
  85. package/styles/auto-complete/material3.scss +4 -1
  86. package/styles/auto-complete/tailwind-dark.scss +4 -1
  87. package/styles/auto-complete/tailwind.scss +4 -1
  88. package/styles/bootstrap-dark.css +8 -82
  89. package/styles/bootstrap.css +8 -82
  90. package/styles/bootstrap4.css +9 -83
  91. package/styles/bootstrap5-dark.css +9 -83
  92. package/styles/bootstrap5.css +9 -83
  93. package/styles/combo-box/_all.scss +1 -0
  94. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -0
  95. package/styles/combo-box/_bootstrap-definition.scss +2 -0
  96. package/styles/combo-box/_bootstrap4-definition.scss +11 -0
  97. package/styles/combo-box/_bootstrap5-dark-definition.scss +1 -0
  98. package/styles/combo-box/_bootstrap5-definition.scss +2 -0
  99. package/styles/combo-box/_fabric-dark-definition.scss +2 -0
  100. package/styles/combo-box/_fabric-definition.scss +2 -0
  101. package/styles/combo-box/_fluent-dark-definition.scss +1 -0
  102. package/styles/combo-box/_fluent-definition.scss +2 -0
  103. package/styles/combo-box/_fusionnew-definition.scss +2 -0
  104. package/styles/combo-box/_highcontrast-definition.scss +2 -0
  105. package/styles/combo-box/_highcontrast-light-definition.scss +3 -0
  106. package/styles/combo-box/_material-dark-definition.scss +2 -0
  107. package/styles/combo-box/_material-definition.scss +2 -0
  108. package/styles/combo-box/_material3-dark-definition.scss +1 -0
  109. package/styles/combo-box/_material3-definition.scss +2 -0
  110. package/styles/combo-box/_tailwind-dark-definition.scss +1 -0
  111. package/styles/combo-box/_tailwind-definition.scss +2 -0
  112. package/styles/combo-box/bootstrap-dark.scss +4 -1
  113. package/styles/combo-box/bootstrap.scss +4 -1
  114. package/styles/combo-box/bootstrap4.scss +4 -1
  115. package/styles/combo-box/bootstrap5-dark.scss +4 -1
  116. package/styles/combo-box/bootstrap5.scss +4 -1
  117. package/styles/combo-box/fabric-dark.scss +4 -1
  118. package/styles/combo-box/fabric.scss +4 -1
  119. package/styles/combo-box/fluent-dark.scss +4 -1
  120. package/styles/combo-box/fluent.scss +4 -1
  121. package/styles/combo-box/highcontrast-light.scss +4 -1
  122. package/styles/combo-box/highcontrast.scss +4 -1
  123. package/styles/combo-box/material-dark.scss +4 -1
  124. package/styles/combo-box/material.scss +4 -1
  125. package/styles/combo-box/material3-dark.scss +4 -1
  126. package/styles/combo-box/material3.scss +4 -1
  127. package/styles/combo-box/tailwind-dark.scss +4 -1
  128. package/styles/combo-box/tailwind.scss +4 -1
  129. package/styles/drop-down-base/_all.scss +2 -0
  130. package/styles/drop-down-base/_bootstrap-dark-definition.scss +83 -0
  131. package/styles/drop-down-base/_bootstrap-definition.scss +83 -0
  132. package/styles/drop-down-base/_bootstrap4-definition.scss +90 -0
  133. package/styles/drop-down-base/_bootstrap5-dark-definition.scss +1 -0
  134. package/styles/drop-down-base/_bootstrap5-definition.scss +117 -0
  135. package/styles/drop-down-base/_definition.scss +23 -0
  136. package/styles/drop-down-base/_fabric-dark-definition.scss +86 -0
  137. package/styles/drop-down-base/_fabric-definition.scss +84 -0
  138. package/styles/drop-down-base/_fluent-dark-definition.scss +1 -0
  139. package/styles/drop-down-base/_fluent-definition.scss +121 -0
  140. package/styles/drop-down-base/_fusionnew-definition.scss +117 -0
  141. package/styles/drop-down-base/_highcontrast-definition.scss +105 -0
  142. package/styles/drop-down-base/_highcontrast-light-definition.scss +105 -0
  143. package/styles/drop-down-base/_layout.scss +195 -0
  144. package/styles/drop-down-base/_material-dark-definition.scss +86 -0
  145. package/styles/drop-down-base/_material-definition.scss +85 -0
  146. package/styles/drop-down-base/_material3-dark-definition.scss +1 -0
  147. package/styles/drop-down-base/_material3-definition.scss +87 -0
  148. package/styles/drop-down-base/_tailwind-dark-definition.scss +1 -0
  149. package/styles/drop-down-base/_tailwind-definition.scss +129 -0
  150. package/styles/drop-down-base/_theme.scss +391 -0
  151. package/styles/drop-down-base/bootstrap-dark.scss +3 -1
  152. package/styles/drop-down-base/bootstrap.scss +3 -1
  153. package/styles/drop-down-base/bootstrap4.scss +3 -1
  154. package/styles/drop-down-base/bootstrap5-dark.scss +3 -1
  155. package/styles/drop-down-base/bootstrap5.scss +3 -1
  156. package/styles/drop-down-base/fabric-dark.scss +3 -1
  157. package/styles/drop-down-base/fabric.scss +3 -1
  158. package/styles/drop-down-base/fluent-dark.scss +3 -1
  159. package/styles/drop-down-base/fluent.scss +3 -1
  160. package/styles/drop-down-base/highcontrast-light.scss +3 -1
  161. package/styles/drop-down-base/highcontrast.scss +3 -1
  162. package/styles/drop-down-base/material-dark.scss +3 -1
  163. package/styles/drop-down-base/material.scss +3 -1
  164. package/styles/drop-down-base/material3-dark.scss +3 -1
  165. package/styles/drop-down-base/material3.scss +3 -1
  166. package/styles/drop-down-base/tailwind-dark.scss +3 -1
  167. package/styles/drop-down-base/tailwind.scss +3 -1
  168. package/styles/drop-down-list/_all.scss +3 -0
  169. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -0
  170. package/styles/drop-down-list/_bootstrap-definition.scss +156 -0
  171. package/styles/drop-down-list/_bootstrap4-definition.scss +191 -0
  172. package/styles/drop-down-list/_bootstrap5-dark-definition.scss +1 -0
  173. package/styles/drop-down-list/_bootstrap5-definition.scss +201 -0
  174. package/styles/drop-down-list/_fabric-dark-definition.scss +128 -0
  175. package/styles/drop-down-list/_fabric-definition.scss +124 -0
  176. package/styles/drop-down-list/_fluent-dark-definition.scss +1 -0
  177. package/styles/drop-down-list/_fluent-definition.scss +185 -0
  178. package/styles/drop-down-list/_fusionnew-definition.scss +201 -0
  179. package/styles/drop-down-list/_highcontrast-definition.scss +142 -0
  180. package/styles/drop-down-list/_highcontrast-light-definition.scss +144 -0
  181. package/styles/drop-down-list/_layout.scss +310 -0
  182. package/styles/drop-down-list/_material-dark-definition.scss +143 -0
  183. package/styles/drop-down-list/_material-definition.scss +167 -0
  184. package/styles/drop-down-list/_material3-dark-definition.scss +1 -0
  185. package/styles/drop-down-list/_material3-definition.scss +180 -0
  186. package/styles/drop-down-list/_tailwind-dark-definition.scss +1 -0
  187. package/styles/drop-down-list/_tailwind-definition.scss +134 -0
  188. package/styles/drop-down-list/_theme.scss +10 -0
  189. package/styles/drop-down-list/bootstrap-dark.scss +9 -1
  190. package/styles/drop-down-list/bootstrap.scss +9 -1
  191. package/styles/drop-down-list/bootstrap4.scss +9 -1
  192. package/styles/drop-down-list/bootstrap5-dark.scss +9 -1
  193. package/styles/drop-down-list/bootstrap5.scss +9 -1
  194. package/styles/drop-down-list/fabric-dark.scss +9 -1
  195. package/styles/drop-down-list/fabric.scss +9 -1
  196. package/styles/drop-down-list/fluent-dark.scss +9 -1
  197. package/styles/drop-down-list/fluent.scss +9 -1
  198. package/styles/drop-down-list/highcontrast-light.scss +9 -1
  199. package/styles/drop-down-list/highcontrast.scss +9 -1
  200. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -0
  201. package/styles/drop-down-list/icons/_bootstrap.scss +14 -0
  202. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -0
  203. package/styles/drop-down-list/icons/_bootstrap5-dark.scss +1 -0
  204. package/styles/drop-down-list/icons/_bootstrap5.scss +14 -0
  205. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -0
  206. package/styles/drop-down-list/icons/_fabric.scss +14 -0
  207. package/styles/drop-down-list/icons/_fluent-dark.scss +1 -0
  208. package/styles/drop-down-list/icons/_fluent.scss +14 -0
  209. package/styles/drop-down-list/icons/_fusionnew.scss +14 -0
  210. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -0
  211. package/styles/drop-down-list/icons/_highcontrast.scss +14 -0
  212. package/styles/drop-down-list/icons/_material-dark.scss +14 -0
  213. package/styles/drop-down-list/icons/_material.scss +14 -0
  214. package/styles/drop-down-list/icons/_material3-dark.scss +1 -0
  215. package/styles/drop-down-list/icons/_material3.scss +14 -0
  216. package/styles/drop-down-list/icons/_tailwind-dark.scss +1 -0
  217. package/styles/drop-down-list/icons/_tailwind.scss +14 -0
  218. package/styles/drop-down-list/material-dark.scss +9 -1
  219. package/styles/drop-down-list/material.scss +9 -1
  220. package/styles/drop-down-list/material3-dark.scss +9 -1
  221. package/styles/drop-down-list/material3.scss +9 -1
  222. package/styles/drop-down-list/tailwind-dark.scss +9 -1
  223. package/styles/drop-down-list/tailwind.scss +9 -1
  224. package/styles/drop-down-tree/_all.scss +2 -0
  225. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +72 -0
  226. package/styles/drop-down-tree/_bootstrap-definition.scss +71 -0
  227. package/styles/drop-down-tree/_bootstrap4-definition.scss +72 -0
  228. package/styles/drop-down-tree/_bootstrap5-dark-definition.scss +1 -0
  229. package/styles/drop-down-tree/_bootstrap5-definition.scss +60 -0
  230. package/styles/drop-down-tree/_fabric-dark-definition.scss +72 -0
  231. package/styles/drop-down-tree/_fabric-definition.scss +72 -0
  232. package/styles/drop-down-tree/_fluent-dark-definition.scss +1 -0
  233. package/styles/drop-down-tree/_fluent-definition.scss +66 -0
  234. package/styles/drop-down-tree/_fusionnew-definition.scss +60 -0
  235. package/styles/drop-down-tree/_highcontrast-definition.scss +72 -0
  236. package/styles/drop-down-tree/_highcontrast-light-definition.scss +72 -0
  237. package/styles/drop-down-tree/_layout.scss +1412 -0
  238. package/styles/drop-down-tree/_material-dark-definition.scss +73 -0
  239. package/styles/drop-down-tree/_material-definition.scss +73 -0
  240. package/styles/drop-down-tree/_material3-dark-definition.scss +1 -0
  241. package/styles/drop-down-tree/_material3-definition.scss +76 -0
  242. package/styles/drop-down-tree/_tailwind-dark-definition.scss +1 -0
  243. package/styles/drop-down-tree/_tailwind-definition.scss +61 -0
  244. package/styles/drop-down-tree/_theme.scss +132 -0
  245. package/styles/drop-down-tree/bootstrap-dark.scss +9 -1
  246. package/styles/drop-down-tree/bootstrap.scss +9 -1
  247. package/styles/drop-down-tree/bootstrap4.scss +9 -1
  248. package/styles/drop-down-tree/bootstrap5-dark.scss +9 -1
  249. package/styles/drop-down-tree/bootstrap5.scss +9 -1
  250. package/styles/drop-down-tree/fabric-dark.scss +9 -1
  251. package/styles/drop-down-tree/fabric.scss +9 -1
  252. package/styles/drop-down-tree/fluent-dark.scss +9 -1
  253. package/styles/drop-down-tree/fluent.scss +9 -1
  254. package/styles/drop-down-tree/highcontrast-light.scss +9 -1
  255. package/styles/drop-down-tree/highcontrast.scss +9 -1
  256. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -0
  257. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -0
  258. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -0
  259. package/styles/drop-down-tree/icons/_bootstrap5-dark.scss +1 -0
  260. package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -0
  261. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -0
  262. package/styles/drop-down-tree/icons/_fabric.scss +11 -0
  263. package/styles/drop-down-tree/icons/_fluent-dark.scss +1 -0
  264. package/styles/drop-down-tree/icons/_fluent.scss +11 -0
  265. package/styles/drop-down-tree/icons/_fusionnew.scss +11 -0
  266. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -0
  267. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -0
  268. package/styles/drop-down-tree/icons/_material-dark.scss +11 -0
  269. package/styles/drop-down-tree/icons/_material.scss +11 -0
  270. package/styles/drop-down-tree/icons/_material3-dark.scss +1 -0
  271. package/styles/drop-down-tree/icons/_material3.scss +11 -0
  272. package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -0
  273. package/styles/drop-down-tree/icons/_tailwind.scss +11 -0
  274. package/styles/drop-down-tree/material-dark.scss +9 -1
  275. package/styles/drop-down-tree/material.scss +9 -1
  276. package/styles/drop-down-tree/material3-dark.scss +9 -1
  277. package/styles/drop-down-tree/material3.scss +9 -1
  278. package/styles/drop-down-tree/tailwind-dark.scss +9 -1
  279. package/styles/drop-down-tree/tailwind.scss +9 -1
  280. package/styles/fabric-dark.css +9 -83
  281. package/styles/fabric.css +9 -83
  282. package/styles/fluent-dark.css +8 -82
  283. package/styles/fluent.css +8 -82
  284. package/styles/highcontrast-light.css +8 -82
  285. package/styles/highcontrast.css +8 -82
  286. package/styles/list-box/_all.scss +2 -0
  287. package/styles/list-box/_bootstrap-dark-definition.scss +122 -0
  288. package/styles/list-box/_bootstrap-definition.scss +115 -0
  289. package/styles/list-box/_bootstrap4-definition.scss +120 -0
  290. package/styles/list-box/_bootstrap5-dark-definition.scss +1 -0
  291. package/styles/list-box/_bootstrap5-definition.scss +118 -0
  292. package/styles/list-box/_fabric-dark-definition.scss +122 -0
  293. package/styles/list-box/_fabric-definition.scss +115 -0
  294. package/styles/list-box/_fluent-dark-definition.scss +1 -0
  295. package/styles/list-box/_fluent-definition.scss +118 -0
  296. package/styles/list-box/_fusionnew-definition.scss +111 -0
  297. package/styles/list-box/_highcontrast-definition.scss +115 -0
  298. package/styles/list-box/_highcontrast-light-definition.scss +122 -0
  299. package/styles/list-box/_layout.scss +542 -0
  300. package/styles/list-box/_material-dark-definition.scss +122 -0
  301. package/styles/list-box/_material-definition.scss +115 -0
  302. package/styles/list-box/_material3-dark-definition.scss +1 -0
  303. package/styles/list-box/_material3-definition.scss +117 -0
  304. package/styles/list-box/_tailwind-dark-definition.scss +1 -0
  305. package/styles/list-box/_tailwind-definition.scss +117 -0
  306. package/styles/list-box/_theme.scss +317 -0
  307. package/styles/list-box/bootstrap-dark.css +7 -70
  308. package/styles/list-box/bootstrap-dark.scss +5 -1
  309. package/styles/list-box/bootstrap.css +7 -70
  310. package/styles/list-box/bootstrap.scss +5 -1
  311. package/styles/list-box/bootstrap4.css +8 -71
  312. package/styles/list-box/bootstrap4.scss +5 -1
  313. package/styles/list-box/bootstrap5-dark.css +8 -71
  314. package/styles/list-box/bootstrap5-dark.scss +5 -1
  315. package/styles/list-box/bootstrap5.css +8 -71
  316. package/styles/list-box/bootstrap5.scss +5 -1
  317. package/styles/list-box/fabric-dark.css +7 -70
  318. package/styles/list-box/fabric-dark.scss +5 -1
  319. package/styles/list-box/fabric.css +7 -70
  320. package/styles/list-box/fabric.scss +5 -1
  321. package/styles/list-box/fluent-dark.css +7 -70
  322. package/styles/list-box/fluent-dark.scss +5 -1
  323. package/styles/list-box/fluent.css +7 -70
  324. package/styles/list-box/fluent.scss +5 -1
  325. package/styles/list-box/highcontrast-light.css +7 -70
  326. package/styles/list-box/highcontrast-light.scss +5 -1
  327. package/styles/list-box/highcontrast.css +7 -70
  328. package/styles/list-box/highcontrast.scss +5 -1
  329. package/styles/list-box/icons/_bootstrap-dark.scss +25 -0
  330. package/styles/list-box/icons/_bootstrap.scss +25 -0
  331. package/styles/list-box/icons/_bootstrap4.scss +25 -0
  332. package/styles/list-box/icons/_bootstrap5-dark.scss +1 -0
  333. package/styles/list-box/icons/_bootstrap5.scss +25 -0
  334. package/styles/list-box/icons/_fabric-dark.scss +25 -0
  335. package/styles/list-box/icons/_fabric.scss +25 -0
  336. package/styles/list-box/icons/_fluent-dark.scss +1 -0
  337. package/styles/list-box/icons/_fluent.scss +25 -0
  338. package/styles/list-box/icons/_fusionnew.scss +25 -0
  339. package/styles/list-box/icons/_highcontrast-light.scss +25 -0
  340. package/styles/list-box/icons/_highcontrast.scss +25 -0
  341. package/styles/list-box/icons/_material-dark.scss +25 -0
  342. package/styles/list-box/icons/_material.scss +25 -0
  343. package/styles/list-box/icons/_material3-dark.scss +1 -0
  344. package/styles/list-box/icons/_material3.scss +25 -0
  345. package/styles/list-box/icons/_tailwind-dark.scss +25 -0
  346. package/styles/list-box/icons/_tailwind.scss +25 -0
  347. package/styles/list-box/material-dark.css +8 -71
  348. package/styles/list-box/material-dark.scss +5 -1
  349. package/styles/list-box/material.css +8 -71
  350. package/styles/list-box/material.scss +5 -1
  351. package/styles/list-box/material3-dark.css +8 -71
  352. package/styles/list-box/material3-dark.scss +5 -1
  353. package/styles/list-box/material3.css +8 -71
  354. package/styles/list-box/material3.scss +5 -1
  355. package/styles/list-box/tailwind-dark.css +8 -71
  356. package/styles/list-box/tailwind-dark.scss +5 -1
  357. package/styles/list-box/tailwind.css +8 -71
  358. package/styles/list-box/tailwind.scss +5 -1
  359. package/styles/material-dark.css +9 -83
  360. package/styles/material.css +9 -83
  361. package/styles/material3-dark.css +9 -468
  362. package/styles/material3-dark.scss +1 -0
  363. package/styles/material3.css +92 -943
  364. package/styles/material3.scss +1 -0
  365. package/styles/mention/_all.scss +1 -0
  366. package/styles/mention/_bootstrap-dark-definition.scss +3 -0
  367. package/styles/mention/_bootstrap-definition.scss +3 -0
  368. package/styles/mention/_bootstrap4-definition.scss +3 -0
  369. package/styles/mention/_bootstrap5-dark-definition.scss +1 -0
  370. package/styles/mention/_bootstrap5-definition.scss +1 -0
  371. package/styles/mention/_fabric-dark-definition.scss +2 -0
  372. package/styles/mention/_fabric-definition.scss +3 -0
  373. package/styles/mention/_fluent-dark-definition.scss +1 -0
  374. package/styles/mention/_fluent-definition.scss +1 -0
  375. package/styles/mention/_fusionnew-definition.scss +1 -0
  376. package/styles/mention/_highcontrast-definition.scss +3 -0
  377. package/styles/mention/_highcontrast-light-definition.scss +3 -0
  378. package/styles/mention/_layout.scss +6 -0
  379. package/styles/mention/_material-dark-definition.scss +3 -0
  380. package/styles/mention/_material-definition.scss +3 -0
  381. package/styles/mention/_material3-dark-definition.scss +1 -0
  382. package/styles/mention/_material3-definition.scss +1 -0
  383. package/styles/mention/_tailwind-dark-definition.scss +1 -0
  384. package/styles/mention/_tailwind-definition.scss +1 -0
  385. package/styles/mention/bootstrap-dark.scss +6 -1
  386. package/styles/mention/bootstrap.scss +6 -1
  387. package/styles/mention/bootstrap4.scss +6 -1
  388. package/styles/mention/bootstrap5-dark.scss +6 -1
  389. package/styles/mention/bootstrap5.scss +6 -1
  390. package/styles/mention/fabric-dark.scss +6 -1
  391. package/styles/mention/fabric.scss +6 -1
  392. package/styles/mention/fluent-dark.scss +6 -1
  393. package/styles/mention/fluent.scss +6 -1
  394. package/styles/mention/highcontrast-light.scss +6 -1
  395. package/styles/mention/highcontrast.scss +6 -1
  396. package/styles/mention/material-dark.scss +6 -1
  397. package/styles/mention/material.scss +6 -1
  398. package/styles/mention/material3-dark.scss +6 -1
  399. package/styles/mention/material3.scss +6 -1
  400. package/styles/mention/tailwind-dark.scss +6 -1
  401. package/styles/mention/tailwind.scss +6 -1
  402. package/styles/multi-select/_all.scss +2 -0
  403. package/styles/multi-select/_bootstrap-dark-definition.scss +196 -0
  404. package/styles/multi-select/_bootstrap-definition.scss +190 -0
  405. package/styles/multi-select/_bootstrap4-definition.scss +257 -0
  406. package/styles/multi-select/_bootstrap5-dark-definition.scss +1 -0
  407. package/styles/multi-select/_bootstrap5-definition.scss +227 -0
  408. package/styles/multi-select/_fabric-dark-definition.scss +185 -0
  409. package/styles/multi-select/_fabric-definition.scss +181 -0
  410. package/styles/multi-select/_fluent-dark-definition.scss +1 -0
  411. package/styles/multi-select/_fluent-definition.scss +238 -0
  412. package/styles/multi-select/_fusionnew-definition.scss +227 -0
  413. package/styles/multi-select/_highcontrast-definition.scss +296 -0
  414. package/styles/multi-select/_highcontrast-light-definition.scss +295 -0
  415. package/styles/multi-select/_layout.scss +2188 -0
  416. package/styles/multi-select/_material-dark-definition.scss +228 -0
  417. package/styles/multi-select/_material-definition.scss +221 -0
  418. package/styles/multi-select/_material3-dark-definition.scss +1 -0
  419. package/styles/multi-select/_material3-definition.scss +246 -0
  420. package/styles/multi-select/_tailwind-dark-definition.scss +1 -0
  421. package/styles/multi-select/_tailwind-definition.scss +232 -0
  422. package/styles/multi-select/_theme.scss +586 -0
  423. package/styles/multi-select/bootstrap-dark.css +1 -12
  424. package/styles/multi-select/bootstrap-dark.scss +9 -1
  425. package/styles/multi-select/bootstrap.css +1 -12
  426. package/styles/multi-select/bootstrap.scss +9 -1
  427. package/styles/multi-select/bootstrap4.css +1 -12
  428. package/styles/multi-select/bootstrap4.scss +9 -1
  429. package/styles/multi-select/bootstrap5-dark.css +1 -12
  430. package/styles/multi-select/bootstrap5-dark.scss +9 -1
  431. package/styles/multi-select/bootstrap5.css +1 -12
  432. package/styles/multi-select/bootstrap5.scss +9 -1
  433. package/styles/multi-select/fabric-dark.css +2 -13
  434. package/styles/multi-select/fabric-dark.scss +9 -1
  435. package/styles/multi-select/fabric.css +2 -13
  436. package/styles/multi-select/fabric.scss +9 -1
  437. package/styles/multi-select/fluent-dark.css +1 -12
  438. package/styles/multi-select/fluent-dark.scss +9 -1
  439. package/styles/multi-select/fluent.css +1 -12
  440. package/styles/multi-select/fluent.scss +9 -1
  441. package/styles/multi-select/highcontrast-light.css +1 -12
  442. package/styles/multi-select/highcontrast-light.scss +9 -1
  443. package/styles/multi-select/highcontrast.css +1 -12
  444. package/styles/multi-select/highcontrast.scss +9 -1
  445. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -0
  446. package/styles/multi-select/icons/_bootstrap.scss +26 -0
  447. package/styles/multi-select/icons/_bootstrap4.scss +37 -0
  448. package/styles/multi-select/icons/_bootstrap5-dark.scss +1 -0
  449. package/styles/multi-select/icons/_bootstrap5.scss +26 -0
  450. package/styles/multi-select/icons/_fabric-dark.scss +26 -0
  451. package/styles/multi-select/icons/_fabric.scss +26 -0
  452. package/styles/multi-select/icons/_fluent-dark.scss +1 -0
  453. package/styles/multi-select/icons/_fluent.scss +55 -0
  454. package/styles/multi-select/icons/_fusionnew.scss +26 -0
  455. package/styles/multi-select/icons/_highcontrast-light.scss +26 -0
  456. package/styles/multi-select/icons/_highcontrast.scss +26 -0
  457. package/styles/multi-select/icons/_material-dark.scss +693 -0
  458. package/styles/multi-select/icons/_material.scss +693 -0
  459. package/styles/multi-select/icons/_material3-dark.scss +1 -0
  460. package/styles/multi-select/icons/_material3.scss +692 -0
  461. package/styles/multi-select/icons/_tailwind-dark.scss +1 -0
  462. package/styles/multi-select/icons/_tailwind.scss +26 -0
  463. package/styles/multi-select/material-dark.css +1 -12
  464. package/styles/multi-select/material-dark.scss +9 -1
  465. package/styles/multi-select/material.css +1 -12
  466. package/styles/multi-select/material.scss +9 -1
  467. package/styles/multi-select/material3-dark.css +0 -10
  468. package/styles/multi-select/material3-dark.scss +9 -1
  469. package/styles/multi-select/material3.css +0 -10
  470. package/styles/multi-select/material3.scss +9 -1
  471. package/styles/multi-select/tailwind-dark.css +1 -12
  472. package/styles/multi-select/tailwind-dark.scss +9 -1
  473. package/styles/multi-select/tailwind.css +1 -12
  474. package/styles/multi-select/tailwind.scss +9 -1
  475. package/styles/tailwind-dark.css +9 -83
  476. package/styles/tailwind.css +9 -83
  477. package/syncfusion-ej2-angular-dropdowns.d.ts +5 -0
  478. package/@syncfusion/ej2-angular-dropdowns.es5.js +0 -1475
  479. package/@syncfusion/ej2-angular-dropdowns.es5.js.map +0 -1
  480. package/@syncfusion/ej2-angular-dropdowns.js +0 -1390
  481. package/@syncfusion/ej2-angular-dropdowns.js.map +0 -1
  482. package/CHANGELOG.md +0 -2378
  483. package/dist/ej2-angular-dropdowns.umd.js +0 -1545
  484. package/dist/ej2-angular-dropdowns.umd.js.map +0 -1
  485. package/dist/ej2-angular-dropdowns.umd.min.js +0 -11
  486. package/dist/ej2-angular-dropdowns.umd.min.js.map +0 -1
  487. package/ej2-angular-dropdowns.d.ts +0 -11
  488. package/ej2-angular-dropdowns.metadata.json +0 -1
  489. package/postinstall/tagchange.js +0 -18
@@ -493,117 +493,6 @@
493
493
  background-color: rgba(var(--color-sf-on-surface), 0.05);
494
494
  }
495
495
 
496
- :root {
497
- --color-sf-black: 0, 0, 0;
498
- --color-sf-white: 255, 255, 255;
499
- --color-sf-primary: 103, 80, 164;
500
- --color-sf-primary-container: 234, 221, 255;
501
- --color-sf-secondary: 98, 91, 113;
502
- --color-sf-secondary-container: 232, 222, 248;
503
- --color-sf-tertiary: 125, 82, 96;
504
- --color-sf-tertiary-container: 255, 216, 228;
505
- --color-sf-surface: 255, 255, 255;
506
- --color-sf-surface-variant: 231, 224, 236;
507
- --color-sf-background: var(--color-sf-surface);
508
- --color-sf-on-primary: 255, 255, 255;
509
- --color-sf-on-primary-container: 33, 0, 94;
510
- --color-sf-on-secondary: 255, 255, 255;
511
- --color-sf-on-secondary-container: 30, 25, 43;
512
- --color-sf-on-tertiary: 255, 255, 255;
513
- --color-sf-on-tertiary-containe: 55, 11, 30;
514
- --color-sf-on-surface: 28, 27, 31;
515
- --color-sf-on-surface-variant: 73, 69, 78;
516
- --color-sf-on-background: 28, 27, 31;
517
- --color-sf-outline: 121, 116, 126;
518
- --color-sf-outline-variant: 196, 199, 197;
519
- --color-sf-shadow: 0, 0, 0;
520
- --color-sf-surface-tint-color: 103, 80, 164;
521
- --color-sf-inverse-surface: 49, 48, 51;
522
- --color-sf-inverse-on-surface: 244, 239, 244;
523
- --color-sf-inverse-primary: 208, 188, 255;
524
- --color-sf-scrim: 0, 0, 0;
525
- --color-sf-error: 179, 38, 30;
526
- --color-sf-error-container: 249, 222, 220;
527
- --color-sf-on-error: 255, 250, 250;
528
- --color-sf-on-error-container: 65, 14, 11;
529
- --color-sf-success: 32, 81, 7;
530
- --color-sf-success-container: 209, 255, 186;
531
- --color-sf-on-success: 244, 255, 239;
532
- --color-sf-on-success-container: 13, 39, 0;
533
- --color-sf-info: 1, 87, 155;
534
- --color-sf-info-container: 233, 245, 255;
535
- --color-sf-on-info: 250, 253, 255;
536
- --color-sf-on-info-container: 0, 51, 91;
537
- --color-sf-warning: 145, 76, 0;
538
- --color-sf-warning-container: 254, 236, 222;
539
- --color-sf-on-warning: 255, 255, 255;
540
- --color-sf-on-warning-container: 47, 21, 0;
541
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
542
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
543
- --color-sf-diagram-palette-background: --color-sf-white;
544
- --color-sf-success-text: 255, 255, 255;
545
- --color-sf-warning-text: 255, 255, 255;
546
- --color-sf-danger-text: 255, 255, 255;
547
- --color-sf-info-text: 255, 255, 255;
548
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
549
- --color-sf-secondary-bg-color: var(--color-sf-surface);
550
- }
551
-
552
- .e-dark-mode {
553
- --color-sf-black: 0, 0, 0;
554
- --color-sf-white: 255, 255, 255;
555
- --color-sf-primary: 208, 188, 255;
556
- --color-sf-primary-container: 79, 55, 139;
557
- --color-sf-secondary: 204, 194, 220;
558
- --color-sf-secondary-container: 74, 68, 88;
559
- --color-sf-tertiary: 239, 184, 200;
560
- --color-sf-tertiary-container: 99, 59, 72;
561
- --color-sf-surface: 28, 27, 31;
562
- --color-sf-surface-variant: 28, 27, 31;
563
- --color-sf-background: var(--color-sf-surface);
564
- --color-sf-on-primary: 55, 30, 115;
565
- --color-sf-on-primary-container: 234, 221, 255;
566
- --color-sf-on-secondary: 51, 45, 65;
567
- --color-sf-on-secondary-container: 232, 222, 248;
568
- --color-sf-on-tertiary: 73, 37, 50;
569
- --color-sf-on-tertiary-containe: 255, 216, 228;
570
- --color-sf-on-surface: 230, 225, 229;
571
- --color-sf-on-surface-variant: 202, 196, 208;
572
- --color-sf-on-background: 230, 225, 229;
573
- --color-sf-outline: 147, 143, 153;
574
- --color-sf-outline-variant: 68, 71, 70;
575
- --color-sf-shadow: 0, 0, 0;
576
- --color-sf-surface-tint-color: 208, 188, 255;
577
- --color-sf-inverse-surface: 230, 225, 229;
578
- --color-sf-inverse-on-surface: 49, 48, 51;
579
- --color-sf-inverse-primary: 103, 80, 164;
580
- --color-sf-scrim: 0, 0, 0;
581
- --color-sf-error: 242, 184, 181;
582
- --color-sf-error-container: 140, 29, 24;
583
- --color-sf-on-error: 96, 20, 16;
584
- --color-sf-on-error-container: 249, 222, 220;
585
- --color-sf-success: 83, 202, 23;
586
- --color-sf-success-container: 22, 62, 2;
587
- --color-sf-on-success: 13, 39, 0;
588
- --color-sf-on-success-container: 183, 250, 150;
589
- --color-sf-info: 71, 172, 251;
590
- --color-sf-info-container: 0, 67, 120;
591
- --color-sf-on-info: 0, 51, 91;
592
- --color-sf-on-info-container: 173, 219, 255;
593
- --color-sf-warning: 245, 180, 130;
594
- --color-sf-warning-container: 123, 65, 0;
595
- --color-sf-on-warning: 99, 52, 0;
596
- --color-sf-on-warning-container: 255, 220, 193;
597
- --color-sf-spreadsheet-gridline: 231, 224, 236;
598
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
599
- --color-sf-success-text: 0, 0, 0;
600
- --color-sf-warning-text: 0, 0, 0;
601
- --color-sf-info-text: 0, 0, 0;
602
- --color-sf-danger-text: 0, 0, 0;
603
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
604
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
605
- }
606
-
607
496
  /* stylelint-disable property-no-vendor-prefix */
608
497
  @keyframes e-input-ripple {
609
498
  100% {
@@ -1040,117 +929,6 @@ ejs-dropdownlist {
1040
929
  color: rgba(var(--color-sf-on-surface));
1041
930
  }
1042
931
 
1043
- :root {
1044
- --color-sf-black: 0, 0, 0;
1045
- --color-sf-white: 255, 255, 255;
1046
- --color-sf-primary: 103, 80, 164;
1047
- --color-sf-primary-container: 234, 221, 255;
1048
- --color-sf-secondary: 98, 91, 113;
1049
- --color-sf-secondary-container: 232, 222, 248;
1050
- --color-sf-tertiary: 125, 82, 96;
1051
- --color-sf-tertiary-container: 255, 216, 228;
1052
- --color-sf-surface: 255, 255, 255;
1053
- --color-sf-surface-variant: 231, 224, 236;
1054
- --color-sf-background: var(--color-sf-surface);
1055
- --color-sf-on-primary: 255, 255, 255;
1056
- --color-sf-on-primary-container: 33, 0, 94;
1057
- --color-sf-on-secondary: 255, 255, 255;
1058
- --color-sf-on-secondary-container: 30, 25, 43;
1059
- --color-sf-on-tertiary: 255, 255, 255;
1060
- --color-sf-on-tertiary-containe: 55, 11, 30;
1061
- --color-sf-on-surface: 28, 27, 31;
1062
- --color-sf-on-surface-variant: 73, 69, 78;
1063
- --color-sf-on-background: 28, 27, 31;
1064
- --color-sf-outline: 121, 116, 126;
1065
- --color-sf-outline-variant: 196, 199, 197;
1066
- --color-sf-shadow: 0, 0, 0;
1067
- --color-sf-surface-tint-color: 103, 80, 164;
1068
- --color-sf-inverse-surface: 49, 48, 51;
1069
- --color-sf-inverse-on-surface: 244, 239, 244;
1070
- --color-sf-inverse-primary: 208, 188, 255;
1071
- --color-sf-scrim: 0, 0, 0;
1072
- --color-sf-error: 179, 38, 30;
1073
- --color-sf-error-container: 249, 222, 220;
1074
- --color-sf-on-error: 255, 250, 250;
1075
- --color-sf-on-error-container: 65, 14, 11;
1076
- --color-sf-success: 32, 81, 7;
1077
- --color-sf-success-container: 209, 255, 186;
1078
- --color-sf-on-success: 244, 255, 239;
1079
- --color-sf-on-success-container: 13, 39, 0;
1080
- --color-sf-info: 1, 87, 155;
1081
- --color-sf-info-container: 233, 245, 255;
1082
- --color-sf-on-info: 250, 253, 255;
1083
- --color-sf-on-info-container: 0, 51, 91;
1084
- --color-sf-warning: 145, 76, 0;
1085
- --color-sf-warning-container: 254, 236, 222;
1086
- --color-sf-on-warning: 255, 255, 255;
1087
- --color-sf-on-warning-container: 47, 21, 0;
1088
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
1089
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
1090
- --color-sf-diagram-palette-background: --color-sf-white;
1091
- --color-sf-success-text: 255, 255, 255;
1092
- --color-sf-warning-text: 255, 255, 255;
1093
- --color-sf-danger-text: 255, 255, 255;
1094
- --color-sf-info-text: 255, 255, 255;
1095
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
1096
- --color-sf-secondary-bg-color: var(--color-sf-surface);
1097
- }
1098
-
1099
- .e-dark-mode {
1100
- --color-sf-black: 0, 0, 0;
1101
- --color-sf-white: 255, 255, 255;
1102
- --color-sf-primary: 208, 188, 255;
1103
- --color-sf-primary-container: 79, 55, 139;
1104
- --color-sf-secondary: 204, 194, 220;
1105
- --color-sf-secondary-container: 74, 68, 88;
1106
- --color-sf-tertiary: 239, 184, 200;
1107
- --color-sf-tertiary-container: 99, 59, 72;
1108
- --color-sf-surface: 28, 27, 31;
1109
- --color-sf-surface-variant: 28, 27, 31;
1110
- --color-sf-background: var(--color-sf-surface);
1111
- --color-sf-on-primary: 55, 30, 115;
1112
- --color-sf-on-primary-container: 234, 221, 255;
1113
- --color-sf-on-secondary: 51, 45, 65;
1114
- --color-sf-on-secondary-container: 232, 222, 248;
1115
- --color-sf-on-tertiary: 73, 37, 50;
1116
- --color-sf-on-tertiary-containe: 255, 216, 228;
1117
- --color-sf-on-surface: 230, 225, 229;
1118
- --color-sf-on-surface-variant: 202, 196, 208;
1119
- --color-sf-on-background: 230, 225, 229;
1120
- --color-sf-outline: 147, 143, 153;
1121
- --color-sf-outline-variant: 68, 71, 70;
1122
- --color-sf-shadow: 0, 0, 0;
1123
- --color-sf-surface-tint-color: 208, 188, 255;
1124
- --color-sf-inverse-surface: 230, 225, 229;
1125
- --color-sf-inverse-on-surface: 49, 48, 51;
1126
- --color-sf-inverse-primary: 103, 80, 164;
1127
- --color-sf-scrim: 0, 0, 0;
1128
- --color-sf-error: 242, 184, 181;
1129
- --color-sf-error-container: 140, 29, 24;
1130
- --color-sf-on-error: 96, 20, 16;
1131
- --color-sf-on-error-container: 249, 222, 220;
1132
- --color-sf-success: 83, 202, 23;
1133
- --color-sf-success-container: 22, 62, 2;
1134
- --color-sf-on-success: 13, 39, 0;
1135
- --color-sf-on-success-container: 183, 250, 150;
1136
- --color-sf-info: 71, 172, 251;
1137
- --color-sf-info-container: 0, 67, 120;
1138
- --color-sf-on-info: 0, 51, 91;
1139
- --color-sf-on-info-container: 173, 219, 255;
1140
- --color-sf-warning: 245, 180, 130;
1141
- --color-sf-warning-container: 123, 65, 0;
1142
- --color-sf-on-warning: 99, 52, 0;
1143
- --color-sf-on-warning-container: 255, 220, 193;
1144
- --color-sf-spreadsheet-gridline: 231, 224, 236;
1145
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
1146
- --color-sf-success-text: 0, 0, 0;
1147
- --color-sf-warning-text: 0, 0, 0;
1148
- --color-sf-info-text: 0, 0, 0;
1149
- --color-sf-danger-text: 0, 0, 0;
1150
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
1151
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
1152
- }
1153
-
1154
932
  /* stylelint-disable property-no-vendor-prefix */
1155
933
  @keyframes e-input-ripple {
1156
934
  100% {
@@ -1513,378 +1291,44 @@ ejs-dropdownlist {
1513
1291
  .e-bigger .e-ddt.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon, .e-bigger .e-ddt.e-rtl.e-show-text.e-input-group.e-show-dd-icon .e-clear-icon,
1514
1292
  .e-ddt.e-bigger.e-rtl.e-show-chip.e-input-group.e-show-dd-icon .e-clear-icon,
1515
1293
  .e-ddt.e-bigger.e-rtl.e-show-text.e-input-group.e-show-dd-icon .e-clear-icon {
1516
- right: auto;
1517
- }
1518
-
1519
- .e-ddt .e-chips {
1520
- background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
1521
- border-color: rgba(var(--color-sf-outline));
1522
- border: 1px solid;
1523
- }
1524
- .e-ddt .e-chips .e-chips-close::before {
1525
- color: rgba(var(--color-sf-on-surface));
1526
- }
1527
- .e-ddt .e-chips > .e-chipcontent {
1528
- color: rgba(var(--color-sf-on-surface));
1529
- }
1530
- .e-ddt .e-chips:hover {
1531
- background: rgba(var(--color-sf-on-surface), 0.05);
1532
- }
1533
- .e-ddt .e-chips:hover > .e-chipcontent {
1534
- color: rgba(var(--color-sf-on-surface));
1535
- }
1536
- .e-ddt .e-overflow .e-remain {
1537
- color: #757575;
1538
- }
1539
- .e-ddt.e-popup {
1540
- background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
1541
- border-color: rgba(var(--color-sf-outline-variant));
1542
- }
1543
- .e-ddt.e-popup .e-popup-content.e-no-data {
1544
- color: rgba(var(--color-sf-on-surface));
1545
- }
1546
- .e-ddt.e-popup .e-selectall-parent {
1547
- border-bottom-color: rgba(var(--color-sf-outline-variant));
1548
- }
1549
- .e-ddt.e-popup .e-selectall-parent .e-all-text {
1550
- color: rgba(var(--color-sf-on-surface));
1551
- }
1552
-
1553
- :root {
1554
- --color-sf-black: 0, 0, 0;
1555
- --color-sf-white: 255, 255, 255;
1556
- --color-sf-primary: 103, 80, 164;
1557
- --color-sf-primary-container: 234, 221, 255;
1558
- --color-sf-secondary: 98, 91, 113;
1559
- --color-sf-secondary-container: 232, 222, 248;
1560
- --color-sf-tertiary: 125, 82, 96;
1561
- --color-sf-tertiary-container: 255, 216, 228;
1562
- --color-sf-surface: 255, 255, 255;
1563
- --color-sf-surface-variant: 231, 224, 236;
1564
- --color-sf-background: var(--color-sf-surface);
1565
- --color-sf-on-primary: 255, 255, 255;
1566
- --color-sf-on-primary-container: 33, 0, 94;
1567
- --color-sf-on-secondary: 255, 255, 255;
1568
- --color-sf-on-secondary-container: 30, 25, 43;
1569
- --color-sf-on-tertiary: 255, 255, 255;
1570
- --color-sf-on-tertiary-containe: 55, 11, 30;
1571
- --color-sf-on-surface: 28, 27, 31;
1572
- --color-sf-on-surface-variant: 73, 69, 78;
1573
- --color-sf-on-background: 28, 27, 31;
1574
- --color-sf-outline: 121, 116, 126;
1575
- --color-sf-outline-variant: 196, 199, 197;
1576
- --color-sf-shadow: 0, 0, 0;
1577
- --color-sf-surface-tint-color: 103, 80, 164;
1578
- --color-sf-inverse-surface: 49, 48, 51;
1579
- --color-sf-inverse-on-surface: 244, 239, 244;
1580
- --color-sf-inverse-primary: 208, 188, 255;
1581
- --color-sf-scrim: 0, 0, 0;
1582
- --color-sf-error: 179, 38, 30;
1583
- --color-sf-error-container: 249, 222, 220;
1584
- --color-sf-on-error: 255, 250, 250;
1585
- --color-sf-on-error-container: 65, 14, 11;
1586
- --color-sf-success: 32, 81, 7;
1587
- --color-sf-success-container: 209, 255, 186;
1588
- --color-sf-on-success: 244, 255, 239;
1589
- --color-sf-on-success-container: 13, 39, 0;
1590
- --color-sf-info: 1, 87, 155;
1591
- --color-sf-info-container: 233, 245, 255;
1592
- --color-sf-on-info: 250, 253, 255;
1593
- --color-sf-on-info-container: 0, 51, 91;
1594
- --color-sf-warning: 145, 76, 0;
1595
- --color-sf-warning-container: 254, 236, 222;
1596
- --color-sf-on-warning: 255, 255, 255;
1597
- --color-sf-on-warning-container: 47, 21, 0;
1598
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
1599
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
1600
- --color-sf-diagram-palette-background: --color-sf-white;
1601
- --color-sf-success-text: 255, 255, 255;
1602
- --color-sf-warning-text: 255, 255, 255;
1603
- --color-sf-danger-text: 255, 255, 255;
1604
- --color-sf-info-text: 255, 255, 255;
1605
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
1606
- --color-sf-secondary-bg-color: var(--color-sf-surface);
1607
- }
1608
-
1609
- .e-dark-mode {
1610
- --color-sf-black: 0, 0, 0;
1611
- --color-sf-white: 255, 255, 255;
1612
- --color-sf-primary: 208, 188, 255;
1613
- --color-sf-primary-container: 79, 55, 139;
1614
- --color-sf-secondary: 204, 194, 220;
1615
- --color-sf-secondary-container: 74, 68, 88;
1616
- --color-sf-tertiary: 239, 184, 200;
1617
- --color-sf-tertiary-container: 99, 59, 72;
1618
- --color-sf-surface: 28, 27, 31;
1619
- --color-sf-surface-variant: 28, 27, 31;
1620
- --color-sf-background: var(--color-sf-surface);
1621
- --color-sf-on-primary: 55, 30, 115;
1622
- --color-sf-on-primary-container: 234, 221, 255;
1623
- --color-sf-on-secondary: 51, 45, 65;
1624
- --color-sf-on-secondary-container: 232, 222, 248;
1625
- --color-sf-on-tertiary: 73, 37, 50;
1626
- --color-sf-on-tertiary-containe: 255, 216, 228;
1627
- --color-sf-on-surface: 230, 225, 229;
1628
- --color-sf-on-surface-variant: 202, 196, 208;
1629
- --color-sf-on-background: 230, 225, 229;
1630
- --color-sf-outline: 147, 143, 153;
1631
- --color-sf-outline-variant: 68, 71, 70;
1632
- --color-sf-shadow: 0, 0, 0;
1633
- --color-sf-surface-tint-color: 208, 188, 255;
1634
- --color-sf-inverse-surface: 230, 225, 229;
1635
- --color-sf-inverse-on-surface: 49, 48, 51;
1636
- --color-sf-inverse-primary: 103, 80, 164;
1637
- --color-sf-scrim: 0, 0, 0;
1638
- --color-sf-error: 242, 184, 181;
1639
- --color-sf-error-container: 140, 29, 24;
1640
- --color-sf-on-error: 96, 20, 16;
1641
- --color-sf-on-error-container: 249, 222, 220;
1642
- --color-sf-success: 83, 202, 23;
1643
- --color-sf-success-container: 22, 62, 2;
1644
- --color-sf-on-success: 13, 39, 0;
1645
- --color-sf-on-success-container: 183, 250, 150;
1646
- --color-sf-info: 71, 172, 251;
1647
- --color-sf-info-container: 0, 67, 120;
1648
- --color-sf-on-info: 0, 51, 91;
1649
- --color-sf-on-info-container: 173, 219, 255;
1650
- --color-sf-warning: 245, 180, 130;
1651
- --color-sf-warning-container: 123, 65, 0;
1652
- --color-sf-on-warning: 99, 52, 0;
1653
- --color-sf-on-warning-container: 255, 220, 193;
1654
- --color-sf-spreadsheet-gridline: 231, 224, 236;
1655
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
1656
- --color-sf-success-text: 0, 0, 0;
1657
- --color-sf-warning-text: 0, 0, 0;
1658
- --color-sf-info-text: 0, 0, 0;
1659
- --color-sf-danger-text: 0, 0, 0;
1660
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
1661
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
1662
- }
1663
-
1664
- /* stylelint-disable-line no-empty-source */
1665
- :root {
1666
- --color-sf-black: 0, 0, 0;
1667
- --color-sf-white: 255, 255, 255;
1668
- --color-sf-primary: 103, 80, 164;
1669
- --color-sf-primary-container: 234, 221, 255;
1670
- --color-sf-secondary: 98, 91, 113;
1671
- --color-sf-secondary-container: 232, 222, 248;
1672
- --color-sf-tertiary: 125, 82, 96;
1673
- --color-sf-tertiary-container: 255, 216, 228;
1674
- --color-sf-surface: 255, 255, 255;
1675
- --color-sf-surface-variant: 231, 224, 236;
1676
- --color-sf-background: var(--color-sf-surface);
1677
- --color-sf-on-primary: 255, 255, 255;
1678
- --color-sf-on-primary-container: 33, 0, 94;
1679
- --color-sf-on-secondary: 255, 255, 255;
1680
- --color-sf-on-secondary-container: 30, 25, 43;
1681
- --color-sf-on-tertiary: 255, 255, 255;
1682
- --color-sf-on-tertiary-containe: 55, 11, 30;
1683
- --color-sf-on-surface: 28, 27, 31;
1684
- --color-sf-on-surface-variant: 73, 69, 78;
1685
- --color-sf-on-background: 28, 27, 31;
1686
- --color-sf-outline: 121, 116, 126;
1687
- --color-sf-outline-variant: 196, 199, 197;
1688
- --color-sf-shadow: 0, 0, 0;
1689
- --color-sf-surface-tint-color: 103, 80, 164;
1690
- --color-sf-inverse-surface: 49, 48, 51;
1691
- --color-sf-inverse-on-surface: 244, 239, 244;
1692
- --color-sf-inverse-primary: 208, 188, 255;
1693
- --color-sf-scrim: 0, 0, 0;
1694
- --color-sf-error: 179, 38, 30;
1695
- --color-sf-error-container: 249, 222, 220;
1696
- --color-sf-on-error: 255, 250, 250;
1697
- --color-sf-on-error-container: 65, 14, 11;
1698
- --color-sf-success: 32, 81, 7;
1699
- --color-sf-success-container: 209, 255, 186;
1700
- --color-sf-on-success: 244, 255, 239;
1701
- --color-sf-on-success-container: 13, 39, 0;
1702
- --color-sf-info: 1, 87, 155;
1703
- --color-sf-info-container: 233, 245, 255;
1704
- --color-sf-on-info: 250, 253, 255;
1705
- --color-sf-on-info-container: 0, 51, 91;
1706
- --color-sf-warning: 145, 76, 0;
1707
- --color-sf-warning-container: 254, 236, 222;
1708
- --color-sf-on-warning: 255, 255, 255;
1709
- --color-sf-on-warning-container: 47, 21, 0;
1710
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
1711
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
1712
- --color-sf-diagram-palette-background: --color-sf-white;
1713
- --color-sf-success-text: 255, 255, 255;
1714
- --color-sf-warning-text: 255, 255, 255;
1715
- --color-sf-danger-text: 255, 255, 255;
1716
- --color-sf-info-text: 255, 255, 255;
1717
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
1718
- --color-sf-secondary-bg-color: var(--color-sf-surface);
1719
- }
1720
-
1721
- .e-dark-mode {
1722
- --color-sf-black: 0, 0, 0;
1723
- --color-sf-white: 255, 255, 255;
1724
- --color-sf-primary: 208, 188, 255;
1725
- --color-sf-primary-container: 79, 55, 139;
1726
- --color-sf-secondary: 204, 194, 220;
1727
- --color-sf-secondary-container: 74, 68, 88;
1728
- --color-sf-tertiary: 239, 184, 200;
1729
- --color-sf-tertiary-container: 99, 59, 72;
1730
- --color-sf-surface: 28, 27, 31;
1731
- --color-sf-surface-variant: 28, 27, 31;
1732
- --color-sf-background: var(--color-sf-surface);
1733
- --color-sf-on-primary: 55, 30, 115;
1734
- --color-sf-on-primary-container: 234, 221, 255;
1735
- --color-sf-on-secondary: 51, 45, 65;
1736
- --color-sf-on-secondary-container: 232, 222, 248;
1737
- --color-sf-on-tertiary: 73, 37, 50;
1738
- --color-sf-on-tertiary-containe: 255, 216, 228;
1739
- --color-sf-on-surface: 230, 225, 229;
1740
- --color-sf-on-surface-variant: 202, 196, 208;
1741
- --color-sf-on-background: 230, 225, 229;
1742
- --color-sf-outline: 147, 143, 153;
1743
- --color-sf-outline-variant: 68, 71, 70;
1744
- --color-sf-shadow: 0, 0, 0;
1745
- --color-sf-surface-tint-color: 208, 188, 255;
1746
- --color-sf-inverse-surface: 230, 225, 229;
1747
- --color-sf-inverse-on-surface: 49, 48, 51;
1748
- --color-sf-inverse-primary: 103, 80, 164;
1749
- --color-sf-scrim: 0, 0, 0;
1750
- --color-sf-error: 242, 184, 181;
1751
- --color-sf-error-container: 140, 29, 24;
1752
- --color-sf-on-error: 96, 20, 16;
1753
- --color-sf-on-error-container: 249, 222, 220;
1754
- --color-sf-success: 83, 202, 23;
1755
- --color-sf-success-container: 22, 62, 2;
1756
- --color-sf-on-success: 13, 39, 0;
1757
- --color-sf-on-success-container: 183, 250, 150;
1758
- --color-sf-info: 71, 172, 251;
1759
- --color-sf-info-container: 0, 67, 120;
1760
- --color-sf-on-info: 0, 51, 91;
1761
- --color-sf-on-info-container: 173, 219, 255;
1762
- --color-sf-warning: 245, 180, 130;
1763
- --color-sf-warning-container: 123, 65, 0;
1764
- --color-sf-on-warning: 99, 52, 0;
1765
- --color-sf-on-warning-container: 255, 220, 193;
1766
- --color-sf-spreadsheet-gridline: 231, 224, 236;
1767
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
1768
- --color-sf-success-text: 0, 0, 0;
1769
- --color-sf-warning-text: 0, 0, 0;
1770
- --color-sf-info-text: 0, 0, 0;
1771
- --color-sf-danger-text: 0, 0, 0;
1772
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
1773
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
1294
+ right: auto;
1774
1295
  }
1775
1296
 
1776
- /* stylelint-disable-line no-empty-source */
1777
- :root {
1778
- --color-sf-black: 0, 0, 0;
1779
- --color-sf-white: 255, 255, 255;
1780
- --color-sf-primary: 103, 80, 164;
1781
- --color-sf-primary-container: 234, 221, 255;
1782
- --color-sf-secondary: 98, 91, 113;
1783
- --color-sf-secondary-container: 232, 222, 248;
1784
- --color-sf-tertiary: 125, 82, 96;
1785
- --color-sf-tertiary-container: 255, 216, 228;
1786
- --color-sf-surface: 255, 255, 255;
1787
- --color-sf-surface-variant: 231, 224, 236;
1788
- --color-sf-background: var(--color-sf-surface);
1789
- --color-sf-on-primary: 255, 255, 255;
1790
- --color-sf-on-primary-container: 33, 0, 94;
1791
- --color-sf-on-secondary: 255, 255, 255;
1792
- --color-sf-on-secondary-container: 30, 25, 43;
1793
- --color-sf-on-tertiary: 255, 255, 255;
1794
- --color-sf-on-tertiary-containe: 55, 11, 30;
1795
- --color-sf-on-surface: 28, 27, 31;
1796
- --color-sf-on-surface-variant: 73, 69, 78;
1797
- --color-sf-on-background: 28, 27, 31;
1798
- --color-sf-outline: 121, 116, 126;
1799
- --color-sf-outline-variant: 196, 199, 197;
1800
- --color-sf-shadow: 0, 0, 0;
1801
- --color-sf-surface-tint-color: 103, 80, 164;
1802
- --color-sf-inverse-surface: 49, 48, 51;
1803
- --color-sf-inverse-on-surface: 244, 239, 244;
1804
- --color-sf-inverse-primary: 208, 188, 255;
1805
- --color-sf-scrim: 0, 0, 0;
1806
- --color-sf-error: 179, 38, 30;
1807
- --color-sf-error-container: 249, 222, 220;
1808
- --color-sf-on-error: 255, 250, 250;
1809
- --color-sf-on-error-container: 65, 14, 11;
1810
- --color-sf-success: 32, 81, 7;
1811
- --color-sf-success-container: 209, 255, 186;
1812
- --color-sf-on-success: 244, 255, 239;
1813
- --color-sf-on-success-container: 13, 39, 0;
1814
- --color-sf-info: 1, 87, 155;
1815
- --color-sf-info-container: 233, 245, 255;
1816
- --color-sf-on-info: 250, 253, 255;
1817
- --color-sf-on-info-container: 0, 51, 91;
1818
- --color-sf-warning: 145, 76, 0;
1819
- --color-sf-warning-container: 254, 236, 222;
1820
- --color-sf-on-warning: 255, 255, 255;
1821
- --color-sf-on-warning-container: 47, 21, 0;
1822
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
1823
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
1824
- --color-sf-diagram-palette-background: --color-sf-white;
1825
- --color-sf-success-text: 255, 255, 255;
1826
- --color-sf-warning-text: 255, 255, 255;
1827
- --color-sf-danger-text: 255, 255, 255;
1828
- --color-sf-info-text: 255, 255, 255;
1829
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
1830
- --color-sf-secondary-bg-color: var(--color-sf-surface);
1297
+ .e-ddt .e-chips {
1298
+ background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
1299
+ border-color: rgba(var(--color-sf-outline));
1300
+ border: 1px solid;
1831
1301
  }
1832
-
1833
- .e-dark-mode {
1834
- --color-sf-black: 0, 0, 0;
1835
- --color-sf-white: 255, 255, 255;
1836
- --color-sf-primary: 208, 188, 255;
1837
- --color-sf-primary-container: 79, 55, 139;
1838
- --color-sf-secondary: 204, 194, 220;
1839
- --color-sf-secondary-container: 74, 68, 88;
1840
- --color-sf-tertiary: 239, 184, 200;
1841
- --color-sf-tertiary-container: 99, 59, 72;
1842
- --color-sf-surface: 28, 27, 31;
1843
- --color-sf-surface-variant: 28, 27, 31;
1844
- --color-sf-background: var(--color-sf-surface);
1845
- --color-sf-on-primary: 55, 30, 115;
1846
- --color-sf-on-primary-container: 234, 221, 255;
1847
- --color-sf-on-secondary: 51, 45, 65;
1848
- --color-sf-on-secondary-container: 232, 222, 248;
1849
- --color-sf-on-tertiary: 73, 37, 50;
1850
- --color-sf-on-tertiary-containe: 255, 216, 228;
1851
- --color-sf-on-surface: 230, 225, 229;
1852
- --color-sf-on-surface-variant: 202, 196, 208;
1853
- --color-sf-on-background: 230, 225, 229;
1854
- --color-sf-outline: 147, 143, 153;
1855
- --color-sf-outline-variant: 68, 71, 70;
1856
- --color-sf-shadow: 0, 0, 0;
1857
- --color-sf-surface-tint-color: 208, 188, 255;
1858
- --color-sf-inverse-surface: 230, 225, 229;
1859
- --color-sf-inverse-on-surface: 49, 48, 51;
1860
- --color-sf-inverse-primary: 103, 80, 164;
1861
- --color-sf-scrim: 0, 0, 0;
1862
- --color-sf-error: 242, 184, 181;
1863
- --color-sf-error-container: 140, 29, 24;
1864
- --color-sf-on-error: 96, 20, 16;
1865
- --color-sf-on-error-container: 249, 222, 220;
1866
- --color-sf-success: 83, 202, 23;
1867
- --color-sf-success-container: 22, 62, 2;
1868
- --color-sf-on-success: 13, 39, 0;
1869
- --color-sf-on-success-container: 183, 250, 150;
1870
- --color-sf-info: 71, 172, 251;
1871
- --color-sf-info-container: 0, 67, 120;
1872
- --color-sf-on-info: 0, 51, 91;
1873
- --color-sf-on-info-container: 173, 219, 255;
1874
- --color-sf-warning: 245, 180, 130;
1875
- --color-sf-warning-container: 123, 65, 0;
1876
- --color-sf-on-warning: 99, 52, 0;
1877
- --color-sf-on-warning-container: 255, 220, 193;
1878
- --color-sf-spreadsheet-gridline: 231, 224, 236;
1879
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
1880
- --color-sf-success-text: 0, 0, 0;
1881
- --color-sf-warning-text: 0, 0, 0;
1882
- --color-sf-info-text: 0, 0, 0;
1883
- --color-sf-danger-text: 0, 0, 0;
1884
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
1885
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
1302
+ .e-ddt .e-chips .e-chips-close::before {
1303
+ color: rgba(var(--color-sf-on-surface));
1304
+ }
1305
+ .e-ddt .e-chips > .e-chipcontent {
1306
+ color: rgba(var(--color-sf-on-surface));
1307
+ }
1308
+ .e-ddt .e-chips:hover {
1309
+ background: rgba(var(--color-sf-on-surface), 0.05);
1310
+ }
1311
+ .e-ddt .e-chips:hover > .e-chipcontent {
1312
+ color: rgba(var(--color-sf-on-surface));
1313
+ }
1314
+ .e-ddt .e-overflow .e-remain {
1315
+ color: #757575;
1316
+ }
1317
+ .e-ddt.e-popup {
1318
+ background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
1319
+ border-color: rgba(var(--color-sf-outline-variant));
1320
+ }
1321
+ .e-ddt.e-popup .e-popup-content.e-no-data {
1322
+ color: rgba(var(--color-sf-on-surface));
1323
+ }
1324
+ .e-ddt.e-popup .e-selectall-parent {
1325
+ border-bottom-color: rgba(var(--color-sf-outline-variant));
1326
+ }
1327
+ .e-ddt.e-popup .e-selectall-parent .e-all-text {
1328
+ color: rgba(var(--color-sf-on-surface));
1886
1329
  }
1887
1330
 
1331
+ /* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
1888
1332
  /* stylelint-disable property-no-vendor-prefix */
1889
1333
  @keyframes e-input-ripple {
1890
1334
  100% {
@@ -3278,11 +2722,6 @@ ejs-multiselect {
3278
2722
  margin-top: -1.4em;
3279
2723
  }
3280
2724
 
3281
- .e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
3282
- .e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
3283
- margin-top: -1.4em;
3284
- }
3285
-
3286
2725
  .e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
3287
2726
  .e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
3288
2727
  line-height: 40px;
@@ -3294,11 +2733,6 @@ ejs-multiselect {
3294
2733
  top: 100%;
3295
2734
  }
3296
2735
 
3297
- .e-bigger.e-small.e-multiselect.e-control-container .e-multi-select-wrapper .e-ddl-icon,
3298
- .e-bigger.e-small.e-multiselect.e-control-container.e-input-group .e-multi-select-wrapper .e-ddl-icon {
3299
- margin-top: -1.7em;
3300
- }
3301
-
3302
2736
  .e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
3303
2737
  height: 16px;
3304
2738
  width: 16px;
@@ -4314,170 +3748,59 @@ ejs-multiselect {
4314
3748
  color: rgba(var(--color-sf-on-surface-variant));
4315
3749
  }
4316
3750
 
4317
- .e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chips-close::before,
4318
- .e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chips-close::before {
4319
- color: #fff;
4320
- }
4321
-
4322
- .e-multiselect.e-outline:not(.e-disabled) .e-multi-select-wrapper .e-chips:not(.e-chip-selected) .e-chips-close:hover::before,
4323
- .e-multiselect.e-filled:not(.e-disabled) .e-multi-select-wrapper .e-chips:not(.e-chip-selected) .e-chips-close:hover::before {
4324
- color: rgba(var(--color-sf-on-surface), 0.87);
4325
- }
4326
-
4327
- .e-multiselect.e-outline .e-multi-select-wrapper .e-delim-values .e-remain,
4328
- .e-multiselect.e-filled .e-multi-select-wrapper .e-delim-values .e-remain {
4329
- color: rgba(var(--color-sf-on-surface), 0.6);
4330
- }
4331
-
4332
- .e-multiselect.e-outline.e-disabled .e-multi-select-wrapper .e-delim-values,
4333
- .e-multiselect.e-outline.e-disabled .e-multi-select-wrapper .e-delim-values .e-remain,
4334
- .e-multiselect.e-outline.e-disabled .e-multi-select-wrapper .e-chips > .e-chipcontent,
4335
- .e-multiselect.e-outline.e-disabled .e-multi-select-wrapper .e-chips .e-chips-close::before,
4336
- .e-multiselect.e-outline.e-disabled .e-multi-select-wrapper .e-chips-close.e-close-hooker {
4337
- color: rgba(var(--color-sf-on-surface), 0.38);
4338
- }
4339
-
4340
- .e-multiselect.e-disabled .e-multi-select-wrapper .e-delim-values {
4341
- -webkit-text-fill-color: rgba(var(--color-sf-on-surface), 0.38);
4342
- color: rgba(var(--color-sf-on-surface), 0.38);
4343
- }
4344
-
4345
- .e-multiselect.e-outline.e-disabled .e-multi-select-wrapper .e-chips {
4346
- background: transparent;
4347
- }
4348
-
4349
- .e-multiselect.e-filled .e-multi-select-wrapper.e-mob-wrapper .e-chips.e-mob-chip.e-chip-selected,
4350
- .e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected {
4351
- background: rgba(var(--color-sf-primary));
4352
- border-radius: 4px;
4353
- box-sizing: border-box;
4354
- color: #fff;
4355
- height: 40px;
4356
- line-height: 40px;
4357
- margin-left: 0;
4358
- margin-right: 0;
4359
- width: 100%;
4360
- }
4361
-
4362
- .e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chips-close,
4363
- .e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chips-close {
4364
- width: 33px;
4365
- }
4366
-
4367
- .e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chipcontent,
4368
- .e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chipcontent {
4369
- color: #fff;
4370
- }
4371
-
4372
- :root {
4373
- --color-sf-black: 0, 0, 0;
4374
- --color-sf-white: 255, 255, 255;
4375
- --color-sf-primary: 103, 80, 164;
4376
- --color-sf-primary-container: 234, 221, 255;
4377
- --color-sf-secondary: 98, 91, 113;
4378
- --color-sf-secondary-container: 232, 222, 248;
4379
- --color-sf-tertiary: 125, 82, 96;
4380
- --color-sf-tertiary-container: 255, 216, 228;
4381
- --color-sf-surface: 255, 255, 255;
4382
- --color-sf-surface-variant: 231, 224, 236;
4383
- --color-sf-background: var(--color-sf-surface);
4384
- --color-sf-on-primary: 255, 255, 255;
4385
- --color-sf-on-primary-container: 33, 0, 94;
4386
- --color-sf-on-secondary: 255, 255, 255;
4387
- --color-sf-on-secondary-container: 30, 25, 43;
4388
- --color-sf-on-tertiary: 255, 255, 255;
4389
- --color-sf-on-tertiary-containe: 55, 11, 30;
4390
- --color-sf-on-surface: 28, 27, 31;
4391
- --color-sf-on-surface-variant: 73, 69, 78;
4392
- --color-sf-on-background: 28, 27, 31;
4393
- --color-sf-outline: 121, 116, 126;
4394
- --color-sf-outline-variant: 196, 199, 197;
4395
- --color-sf-shadow: 0, 0, 0;
4396
- --color-sf-surface-tint-color: 103, 80, 164;
4397
- --color-sf-inverse-surface: 49, 48, 51;
4398
- --color-sf-inverse-on-surface: 244, 239, 244;
4399
- --color-sf-inverse-primary: 208, 188, 255;
4400
- --color-sf-scrim: 0, 0, 0;
4401
- --color-sf-error: 179, 38, 30;
4402
- --color-sf-error-container: 249, 222, 220;
4403
- --color-sf-on-error: 255, 250, 250;
4404
- --color-sf-on-error-container: 65, 14, 11;
4405
- --color-sf-success: 32, 81, 7;
4406
- --color-sf-success-container: 209, 255, 186;
4407
- --color-sf-on-success: 244, 255, 239;
4408
- --color-sf-on-success-container: 13, 39, 0;
4409
- --color-sf-info: 1, 87, 155;
4410
- --color-sf-info-container: 233, 245, 255;
4411
- --color-sf-on-info: 250, 253, 255;
4412
- --color-sf-on-info-container: 0, 51, 91;
4413
- --color-sf-warning: 145, 76, 0;
4414
- --color-sf-warning-container: 254, 236, 222;
4415
- --color-sf-on-warning: 255, 255, 255;
4416
- --color-sf-on-warning-container: 47, 21, 0;
4417
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
4418
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
4419
- --color-sf-diagram-palette-background: --color-sf-white;
4420
- --color-sf-success-text: 255, 255, 255;
4421
- --color-sf-warning-text: 255, 255, 255;
4422
- --color-sf-danger-text: 255, 255, 255;
4423
- --color-sf-info-text: 255, 255, 255;
4424
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
4425
- --color-sf-secondary-bg-color: var(--color-sf-surface);
3751
+ .e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chips-close::before,
3752
+ .e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chips-close::before {
3753
+ color: #fff;
4426
3754
  }
4427
3755
 
4428
- .e-dark-mode {
4429
- --color-sf-black: 0, 0, 0;
4430
- --color-sf-white: 255, 255, 255;
4431
- --color-sf-primary: 208, 188, 255;
4432
- --color-sf-primary-container: 79, 55, 139;
4433
- --color-sf-secondary: 204, 194, 220;
4434
- --color-sf-secondary-container: 74, 68, 88;
4435
- --color-sf-tertiary: 239, 184, 200;
4436
- --color-sf-tertiary-container: 99, 59, 72;
4437
- --color-sf-surface: 28, 27, 31;
4438
- --color-sf-surface-variant: 28, 27, 31;
4439
- --color-sf-background: var(--color-sf-surface);
4440
- --color-sf-on-primary: 55, 30, 115;
4441
- --color-sf-on-primary-container: 234, 221, 255;
4442
- --color-sf-on-secondary: 51, 45, 65;
4443
- --color-sf-on-secondary-container: 232, 222, 248;
4444
- --color-sf-on-tertiary: 73, 37, 50;
4445
- --color-sf-on-tertiary-containe: 255, 216, 228;
4446
- --color-sf-on-surface: 230, 225, 229;
4447
- --color-sf-on-surface-variant: 202, 196, 208;
4448
- --color-sf-on-background: 230, 225, 229;
4449
- --color-sf-outline: 147, 143, 153;
4450
- --color-sf-outline-variant: 68, 71, 70;
4451
- --color-sf-shadow: 0, 0, 0;
4452
- --color-sf-surface-tint-color: 208, 188, 255;
4453
- --color-sf-inverse-surface: 230, 225, 229;
4454
- --color-sf-inverse-on-surface: 49, 48, 51;
4455
- --color-sf-inverse-primary: 103, 80, 164;
4456
- --color-sf-scrim: 0, 0, 0;
4457
- --color-sf-error: 242, 184, 181;
4458
- --color-sf-error-container: 140, 29, 24;
4459
- --color-sf-on-error: 96, 20, 16;
4460
- --color-sf-on-error-container: 249, 222, 220;
4461
- --color-sf-success: 83, 202, 23;
4462
- --color-sf-success-container: 22, 62, 2;
4463
- --color-sf-on-success: 13, 39, 0;
4464
- --color-sf-on-success-container: 183, 250, 150;
4465
- --color-sf-info: 71, 172, 251;
4466
- --color-sf-info-container: 0, 67, 120;
4467
- --color-sf-on-info: 0, 51, 91;
4468
- --color-sf-on-info-container: 173, 219, 255;
4469
- --color-sf-warning: 245, 180, 130;
4470
- --color-sf-warning-container: 123, 65, 0;
4471
- --color-sf-on-warning: 99, 52, 0;
4472
- --color-sf-on-warning-container: 255, 220, 193;
4473
- --color-sf-spreadsheet-gridline: 231, 224, 236;
4474
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
4475
- --color-sf-success-text: 0, 0, 0;
4476
- --color-sf-warning-text: 0, 0, 0;
4477
- --color-sf-info-text: 0, 0, 0;
4478
- --color-sf-danger-text: 0, 0, 0;
4479
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
4480
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
3756
+ .e-multiselect.e-outline:not(.e-disabled) .e-multi-select-wrapper .e-chips:not(.e-chip-selected) .e-chips-close:hover::before,
3757
+ .e-multiselect.e-filled:not(.e-disabled) .e-multi-select-wrapper .e-chips:not(.e-chip-selected) .e-chips-close:hover::before {
3758
+ color: rgba(var(--color-sf-on-surface), 0.87);
3759
+ }
3760
+
3761
+ .e-multiselect.e-outline .e-multi-select-wrapper .e-delim-values .e-remain,
3762
+ .e-multiselect.e-filled .e-multi-select-wrapper .e-delim-values .e-remain {
3763
+ color: rgba(var(--color-sf-on-surface), 0.6);
3764
+ }
3765
+
3766
+ .e-multiselect.e-outline.e-disabled .e-multi-select-wrapper .e-delim-values,
3767
+ .e-multiselect.e-outline.e-disabled .e-multi-select-wrapper .e-delim-values .e-remain,
3768
+ .e-multiselect.e-outline.e-disabled .e-multi-select-wrapper .e-chips > .e-chipcontent,
3769
+ .e-multiselect.e-outline.e-disabled .e-multi-select-wrapper .e-chips .e-chips-close::before,
3770
+ .e-multiselect.e-outline.e-disabled .e-multi-select-wrapper .e-chips-close.e-close-hooker {
3771
+ color: rgba(var(--color-sf-on-surface), 0.38);
3772
+ }
3773
+
3774
+ .e-multiselect.e-disabled .e-multi-select-wrapper .e-delim-values {
3775
+ -webkit-text-fill-color: rgba(var(--color-sf-on-surface), 0.38);
3776
+ color: rgba(var(--color-sf-on-surface), 0.38);
3777
+ }
3778
+
3779
+ .e-multiselect.e-outline.e-disabled .e-multi-select-wrapper .e-chips {
3780
+ background: transparent;
3781
+ }
3782
+
3783
+ .e-multiselect.e-filled .e-multi-select-wrapper.e-mob-wrapper .e-chips.e-mob-chip.e-chip-selected,
3784
+ .e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected {
3785
+ background: rgba(var(--color-sf-primary));
3786
+ border-radius: 4px;
3787
+ box-sizing: border-box;
3788
+ color: #fff;
3789
+ height: 40px;
3790
+ line-height: 40px;
3791
+ margin-left: 0;
3792
+ margin-right: 0;
3793
+ width: 100%;
3794
+ }
3795
+
3796
+ .e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chips-close,
3797
+ .e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chips-close {
3798
+ width: 33px;
3799
+ }
3800
+
3801
+ .e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chipcontent,
3802
+ .e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-mob-chip.e-chip-selected .e-chipcontent {
3803
+ color: #fff;
4481
3804
  }
4482
3805
 
4483
3806
  .e-listbox-tool .e-moveup::before {
@@ -5032,66 +4355,27 @@ ejs-listbox {
5032
4355
  }
5033
4356
  .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
5034
4357
  .e-small .e-listbox-container.e-filter-list .e-list-parent {
5035
- height: calc(100% - 35px) !important; /* stylelint-disable-line declaration-no-important */
5036
- }
5037
-
5038
- .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
5039
- height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
5040
- }
5041
-
5042
- .e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
5043
- height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
4358
+ height: calc(100% - 35px);
5044
4359
  }
5045
4360
 
4361
+ .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
5046
4362
  .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
5047
- height: 100%;
4363
+ height: calc(100% - 48px);
5048
4364
  }
5049
4365
 
5050
4366
  .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
5051
4367
  .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
5052
- height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
5053
- }
5054
-
5055
- .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
5056
- height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
5057
- }
5058
-
5059
- .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
5060
- height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
5061
- }
5062
-
5063
- .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
5064
- height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
5065
- }
5066
-
5067
- .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
5068
- height: 100%;
4368
+ height: calc(100% - 98px);
5069
4369
  }
5070
4370
 
5071
4371
  .e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
5072
- .e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
5073
- height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
5074
- }
5075
-
5076
4372
  .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
5077
- height: 100%;
4373
+ height: calc(100% - 48px);
5078
4374
  }
5079
4375
 
5080
4376
  .e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
5081
- .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
5082
- height: calc(100% - 37px) !important; /* stylelint-disable-line declaration-no-important */
5083
- }
5084
-
5085
- .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
5086
- height: calc(100% - 76px) !important; /* stylelint-disable-line declaration-no-important */
5087
- }
5088
-
5089
- .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
5090
- height: calc(100% - 92px) !important; /* stylelint-disable-line declaration-no-important */
5091
- }
5092
-
5093
4377
  .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
5094
- height: 100%;
4378
+ height: calc(100% - 37px);
5095
4379
  }
5096
4380
 
5097
4381
  .e-listbox-wrapper,
@@ -5118,13 +4402,13 @@ ejs-listbox {
5118
4402
  .e-listbox-wrapper.e-filter-list .e-list-parent,
5119
4403
  .e-listbox-container.e-filter-list .e-list-parent,
5120
4404
  .e-listboxtool-wrapper.e-filter-list .e-list-parent {
5121
- height: calc(100% - 36px);
4405
+ height: calc(100% - 40px);
5122
4406
  }
5123
4407
 
5124
4408
  .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
5125
4409
  .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
5126
4410
  .e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
5127
- height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
4411
+ height: calc(100% - 79px);
5128
4412
  }
5129
4413
 
5130
4414
  .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
@@ -5400,141 +4684,6 @@ ejs-listbox {
5400
4684
  padding-right: 16px;
5401
4685
  }
5402
4686
 
5403
- .e-listbox-container.e-filter-list .e-list-parent {
5404
- height: 100%;
5405
- }
5406
-
5407
- .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
5408
- height: 100%;
5409
- }
5410
-
5411
- .e-listbox-container .e-selectall-parent + .e-list-parent {
5412
- height: 100%;
5413
- }
5414
-
5415
- .e-listbox-container.e-filter-list .e-list-wrap {
5416
- height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
5417
- }
5418
-
5419
- .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
5420
- height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
5421
- }
5422
-
5423
- .e-listbox-container .e-selectall-parent + .e-list-wrap {
5424
- height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
5425
- }
5426
-
5427
- :root {
5428
- --color-sf-black: 0, 0, 0;
5429
- --color-sf-white: 255, 255, 255;
5430
- --color-sf-primary: 103, 80, 164;
5431
- --color-sf-primary-container: 234, 221, 255;
5432
- --color-sf-secondary: 98, 91, 113;
5433
- --color-sf-secondary-container: 232, 222, 248;
5434
- --color-sf-tertiary: 125, 82, 96;
5435
- --color-sf-tertiary-container: 255, 216, 228;
5436
- --color-sf-surface: 255, 255, 255;
5437
- --color-sf-surface-variant: 231, 224, 236;
5438
- --color-sf-background: var(--color-sf-surface);
5439
- --color-sf-on-primary: 255, 255, 255;
5440
- --color-sf-on-primary-container: 33, 0, 94;
5441
- --color-sf-on-secondary: 255, 255, 255;
5442
- --color-sf-on-secondary-container: 30, 25, 43;
5443
- --color-sf-on-tertiary: 255, 255, 255;
5444
- --color-sf-on-tertiary-containe: 55, 11, 30;
5445
- --color-sf-on-surface: 28, 27, 31;
5446
- --color-sf-on-surface-variant: 73, 69, 78;
5447
- --color-sf-on-background: 28, 27, 31;
5448
- --color-sf-outline: 121, 116, 126;
5449
- --color-sf-outline-variant: 196, 199, 197;
5450
- --color-sf-shadow: 0, 0, 0;
5451
- --color-sf-surface-tint-color: 103, 80, 164;
5452
- --color-sf-inverse-surface: 49, 48, 51;
5453
- --color-sf-inverse-on-surface: 244, 239, 244;
5454
- --color-sf-inverse-primary: 208, 188, 255;
5455
- --color-sf-scrim: 0, 0, 0;
5456
- --color-sf-error: 179, 38, 30;
5457
- --color-sf-error-container: 249, 222, 220;
5458
- --color-sf-on-error: 255, 250, 250;
5459
- --color-sf-on-error-container: 65, 14, 11;
5460
- --color-sf-success: 32, 81, 7;
5461
- --color-sf-success-container: 209, 255, 186;
5462
- --color-sf-on-success: 244, 255, 239;
5463
- --color-sf-on-success-container: 13, 39, 0;
5464
- --color-sf-info: 1, 87, 155;
5465
- --color-sf-info-container: 233, 245, 255;
5466
- --color-sf-on-info: 250, 253, 255;
5467
- --color-sf-on-info-container: 0, 51, 91;
5468
- --color-sf-warning: 145, 76, 0;
5469
- --color-sf-warning-container: 254, 236, 222;
5470
- --color-sf-on-warning: 255, 255, 255;
5471
- --color-sf-on-warning-container: 47, 21, 0;
5472
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
5473
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
5474
- --color-sf-diagram-palette-background: --color-sf-white;
5475
- --color-sf-success-text: 255, 255, 255;
5476
- --color-sf-warning-text: 255, 255, 255;
5477
- --color-sf-danger-text: 255, 255, 255;
5478
- --color-sf-info-text: 255, 255, 255;
5479
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
5480
- --color-sf-secondary-bg-color: var(--color-sf-surface);
5481
- }
5482
-
5483
- .e-dark-mode {
5484
- --color-sf-black: 0, 0, 0;
5485
- --color-sf-white: 255, 255, 255;
5486
- --color-sf-primary: 208, 188, 255;
5487
- --color-sf-primary-container: 79, 55, 139;
5488
- --color-sf-secondary: 204, 194, 220;
5489
- --color-sf-secondary-container: 74, 68, 88;
5490
- --color-sf-tertiary: 239, 184, 200;
5491
- --color-sf-tertiary-container: 99, 59, 72;
5492
- --color-sf-surface: 28, 27, 31;
5493
- --color-sf-surface-variant: 28, 27, 31;
5494
- --color-sf-background: var(--color-sf-surface);
5495
- --color-sf-on-primary: 55, 30, 115;
5496
- --color-sf-on-primary-container: 234, 221, 255;
5497
- --color-sf-on-secondary: 51, 45, 65;
5498
- --color-sf-on-secondary-container: 232, 222, 248;
5499
- --color-sf-on-tertiary: 73, 37, 50;
5500
- --color-sf-on-tertiary-containe: 255, 216, 228;
5501
- --color-sf-on-surface: 230, 225, 229;
5502
- --color-sf-on-surface-variant: 202, 196, 208;
5503
- --color-sf-on-background: 230, 225, 229;
5504
- --color-sf-outline: 147, 143, 153;
5505
- --color-sf-outline-variant: 68, 71, 70;
5506
- --color-sf-shadow: 0, 0, 0;
5507
- --color-sf-surface-tint-color: 208, 188, 255;
5508
- --color-sf-inverse-surface: 230, 225, 229;
5509
- --color-sf-inverse-on-surface: 49, 48, 51;
5510
- --color-sf-inverse-primary: 103, 80, 164;
5511
- --color-sf-scrim: 0, 0, 0;
5512
- --color-sf-error: 242, 184, 181;
5513
- --color-sf-error-container: 140, 29, 24;
5514
- --color-sf-on-error: 96, 20, 16;
5515
- --color-sf-on-error-container: 249, 222, 220;
5516
- --color-sf-success: 83, 202, 23;
5517
- --color-sf-success-container: 22, 62, 2;
5518
- --color-sf-on-success: 13, 39, 0;
5519
- --color-sf-on-success-container: 183, 250, 150;
5520
- --color-sf-info: 71, 172, 251;
5521
- --color-sf-info-container: 0, 67, 120;
5522
- --color-sf-on-info: 0, 51, 91;
5523
- --color-sf-on-info-container: 173, 219, 255;
5524
- --color-sf-warning: 245, 180, 130;
5525
- --color-sf-warning-container: 123, 65, 0;
5526
- --color-sf-on-warning: 99, 52, 0;
5527
- --color-sf-on-warning-container: 255, 220, 193;
5528
- --color-sf-spreadsheet-gridline: 231, 224, 236;
5529
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
5530
- --color-sf-success-text: 0, 0, 0;
5531
- --color-sf-warning-text: 0, 0, 0;
5532
- --color-sf-info-text: 0, 0, 0;
5533
- --color-sf-danger-text: 0, 0, 0;
5534
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
5535
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
5536
- }
5537
-
5538
4687
  /* stylelint-disable-line no-empty-source */
5539
4688
  /* stylelint-disable property-no-vendor-prefix */
5540
4689
  @keyframes material-spinner-rotate {