@syncfusion/ej2-angular-inputs 23.2.4-ngcc → 23.2.4

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 (494) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/color-picker/colorpicker-all.module.mjs +23 -0
  3. package/esm2020/src/color-picker/colorpicker.component.mjs +84 -0
  4. package/esm2020/src/color-picker/colorpicker.module.mjs +25 -0
  5. package/esm2020/src/form-validator/form-validator.mjs +193 -0
  6. package/esm2020/src/index.mjs +28 -0
  7. package/esm2020/src/maskedtextbox/maskedtextbox-all.module.mjs +23 -0
  8. package/esm2020/src/maskedtextbox/maskedtextbox.component.mjs +85 -0
  9. package/esm2020/src/maskedtextbox/maskedtextbox.module.mjs +25 -0
  10. package/esm2020/src/numerictextbox/numerictextbox-all.module.mjs +23 -0
  11. package/esm2020/src/numerictextbox/numerictextbox.component.mjs +85 -0
  12. package/esm2020/src/numerictextbox/numerictextbox.module.mjs +25 -0
  13. package/esm2020/src/rating/rating-all.module.mjs +23 -0
  14. package/esm2020/src/rating/rating.component.mjs +109 -0
  15. package/esm2020/src/rating/rating.module.mjs +25 -0
  16. package/esm2020/src/signature/signature-all.module.mjs +23 -0
  17. package/esm2020/src/signature/signature.component.mjs +84 -0
  18. package/esm2020/src/signature/signature.module.mjs +25 -0
  19. package/esm2020/src/slider/slider-all.module.mjs +23 -0
  20. package/esm2020/src/slider/slider.component.mjs +84 -0
  21. package/esm2020/src/slider/slider.module.mjs +25 -0
  22. package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
  23. package/esm2020/src/textbox/textbox.component.mjs +85 -0
  24. package/esm2020/src/textbox/textbox.module.mjs +25 -0
  25. package/esm2020/src/uploader/files.directive.mjs +58 -0
  26. package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
  27. package/esm2020/src/uploader/uploader.component.mjs +96 -0
  28. package/esm2020/src/uploader/uploader.module.mjs +34 -0
  29. package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
  30. package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1245 -0
  31. package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  32. package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1245 -0
  33. package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  34. package/package.json +26 -12
  35. package/src/color-picker/colorpicker-all.module.d.ts +6 -0
  36. package/src/color-picker/colorpicker.component.d.ts +3 -0
  37. package/src/color-picker/colorpicker.module.d.ts +6 -0
  38. package/src/maskedtextbox/maskedtextbox-all.module.d.ts +6 -0
  39. package/src/maskedtextbox/maskedtextbox.component.d.ts +3 -0
  40. package/src/maskedtextbox/maskedtextbox.module.d.ts +6 -0
  41. package/src/numerictextbox/numerictextbox-all.module.d.ts +6 -0
  42. package/src/numerictextbox/numerictextbox.component.d.ts +3 -0
  43. package/src/numerictextbox/numerictextbox.module.d.ts +6 -0
  44. package/src/rating/rating-all.module.d.ts +6 -0
  45. package/src/rating/rating.component.d.ts +3 -0
  46. package/src/rating/rating.module.d.ts +6 -0
  47. package/src/signature/signature-all.module.d.ts +6 -0
  48. package/src/signature/signature.component.d.ts +3 -0
  49. package/src/signature/signature.module.d.ts +6 -0
  50. package/src/slider/slider-all.module.d.ts +6 -0
  51. package/src/slider/slider.component.d.ts +3 -0
  52. package/src/slider/slider.module.d.ts +6 -0
  53. package/src/textbox/textbox-all.module.d.ts +6 -0
  54. package/src/textbox/textbox.component.d.ts +3 -0
  55. package/src/textbox/textbox.module.d.ts +6 -0
  56. package/src/uploader/files.directive.d.ts +5 -0
  57. package/src/uploader/uploader-all.module.d.ts +6 -0
  58. package/src/uploader/uploader.component.d.ts +3 -0
  59. package/src/uploader/uploader.module.d.ts +7 -0
  60. package/styles/color-picker/_all.scss +2 -0
  61. package/styles/color-picker/_bootstrap-dark-definition.scss +131 -0
  62. package/styles/color-picker/_bootstrap-definition.scss +128 -0
  63. package/styles/color-picker/_bootstrap4-definition.scss +127 -0
  64. package/styles/color-picker/_bootstrap5-dark-definition.scss +1 -0
  65. package/styles/color-picker/_bootstrap5-definition.scss +133 -0
  66. package/styles/color-picker/_fabric-dark-definition.scss +131 -0
  67. package/styles/color-picker/_fabric-definition.scss +127 -0
  68. package/styles/color-picker/_fluent-dark-definition.scss +1 -0
  69. package/styles/color-picker/_fluent-definition.scss +133 -0
  70. package/styles/color-picker/_fusionnew-definition.scss +133 -0
  71. package/styles/color-picker/_highcontrast-definition.scss +127 -0
  72. package/styles/color-picker/_highcontrast-light-definition.scss +130 -0
  73. package/styles/color-picker/_layout.scss +1304 -0
  74. package/styles/color-picker/_material-dark-definition.scss +135 -0
  75. package/styles/color-picker/_material-definition.scss +130 -0
  76. package/styles/color-picker/_material3-dark-definition.scss +1 -0
  77. package/styles/color-picker/_material3-definition.scss +141 -0
  78. package/styles/color-picker/_tailwind-dark-definition.scss +1 -0
  79. package/styles/color-picker/_tailwind-definition.scss +132 -0
  80. package/styles/color-picker/_theme.scss +191 -0
  81. package/styles/color-picker/bootstrap-dark.scss +11 -1
  82. package/styles/color-picker/bootstrap.scss +11 -1
  83. package/styles/color-picker/bootstrap4.scss +11 -1
  84. package/styles/color-picker/bootstrap5-dark.scss +11 -1
  85. package/styles/color-picker/bootstrap5.scss +11 -1
  86. package/styles/color-picker/fabric-dark.scss +11 -1
  87. package/styles/color-picker/fabric.scss +11 -1
  88. package/styles/color-picker/fluent-dark.scss +11 -1
  89. package/styles/color-picker/fluent.scss +11 -1
  90. package/styles/color-picker/highcontrast-light.scss +11 -1
  91. package/styles/color-picker/highcontrast.scss +11 -1
  92. package/styles/color-picker/icons/_bootstrap-dark.scss +9 -0
  93. package/styles/color-picker/icons/_bootstrap.scss +9 -0
  94. package/styles/color-picker/icons/_bootstrap4.scss +9 -0
  95. package/styles/color-picker/icons/_bootstrap5-dark.scss +1 -0
  96. package/styles/color-picker/icons/_bootstrap5.scss +9 -0
  97. package/styles/color-picker/icons/_fabric-dark.scss +9 -0
  98. package/styles/color-picker/icons/_fabric.scss +9 -0
  99. package/styles/color-picker/icons/_fluent-dark.scss +1 -0
  100. package/styles/color-picker/icons/_fluent.scss +9 -0
  101. package/styles/color-picker/icons/_fusionnew.scss +9 -0
  102. package/styles/color-picker/icons/_highcontrast-light.scss +9 -0
  103. package/styles/color-picker/icons/_highcontrast.scss +9 -0
  104. package/styles/color-picker/icons/_material-dark.scss +9 -0
  105. package/styles/color-picker/icons/_material.scss +9 -0
  106. package/styles/color-picker/icons/_material3-dark.scss +1 -0
  107. package/styles/color-picker/icons/_material3.scss +9 -0
  108. package/styles/color-picker/icons/_tailwind-dark.scss +9 -0
  109. package/styles/color-picker/icons/_tailwind.scss +9 -0
  110. package/styles/color-picker/material-dark.scss +11 -1
  111. package/styles/color-picker/material.scss +11 -1
  112. package/styles/color-picker/material3-dark.scss +11 -1
  113. package/styles/color-picker/material3.scss +11 -1
  114. package/styles/color-picker/tailwind-dark.scss +11 -1
  115. package/styles/color-picker/tailwind.scss +11 -1
  116. package/styles/input/_all.scss +3 -0
  117. package/styles/input/_bootstrap-dark-definition.scss +329 -0
  118. package/styles/input/_bootstrap-definition.scss +320 -0
  119. package/styles/input/_bootstrap4-definition.scss +325 -0
  120. package/styles/input/_bootstrap5-dark-definition.scss +1 -0
  121. package/styles/input/_bootstrap5-definition.scss +336 -0
  122. package/styles/input/_definition.scss +232 -0
  123. package/styles/input/_fabric-dark-definition.scss +319 -0
  124. package/styles/input/_fabric-definition.scss +311 -0
  125. package/styles/input/_fluent-dark-definition.scss +1 -0
  126. package/styles/input/_fluent-definition.scss +338 -0
  127. package/styles/input/_fusionnew-definition.scss +336 -0
  128. package/styles/input/_highcontrast-definition.scss +312 -0
  129. package/styles/input/_highcontrast-light-definition.scss +320 -0
  130. package/styles/input/_layout.scss +11364 -0
  131. package/styles/input/_material-dark-definition.scss +573 -0
  132. package/styles/input/_material-definition.scss +573 -0
  133. package/styles/input/_material3-dark-definition.scss +1 -0
  134. package/styles/input/_material3-definition.scss +548 -0
  135. package/styles/input/_responsive.scss +1 -0
  136. package/styles/input/_tailwind-dark-definition.scss +1 -0
  137. package/styles/input/_tailwind-definition.scss +335 -0
  138. package/styles/input/_theme.scss +4284 -0
  139. package/styles/input/bootstrap-dark.scss +4 -1
  140. package/styles/input/bootstrap.scss +4 -1
  141. package/styles/input/bootstrap4.scss +4 -1
  142. package/styles/input/bootstrap5-dark.scss +4 -1
  143. package/styles/input/bootstrap5.scss +4 -1
  144. package/styles/input/fabric-dark.scss +4 -1
  145. package/styles/input/fabric.scss +4 -1
  146. package/styles/input/fluent-dark.scss +4 -1
  147. package/styles/input/fluent.scss +4 -1
  148. package/styles/input/highcontrast-light.scss +4 -1
  149. package/styles/input/highcontrast.scss +4 -1
  150. package/styles/input/icons/_bootstrap-dark.scss +17 -0
  151. package/styles/input/icons/_bootstrap.scss +17 -0
  152. package/styles/input/icons/_bootstrap4.scss +17 -0
  153. package/styles/input/icons/_bootstrap5-dark.scss +1 -0
  154. package/styles/input/icons/_bootstrap5.scss +17 -0
  155. package/styles/input/icons/_fabric-dark.scss +17 -0
  156. package/styles/input/icons/_fabric.scss +17 -0
  157. package/styles/input/icons/_fluent-dark.scss +1 -0
  158. package/styles/input/icons/_fluent.scss +17 -0
  159. package/styles/input/icons/_fusionnew.scss +17 -0
  160. package/styles/input/icons/_highcontrast-light.scss +17 -0
  161. package/styles/input/icons/_highcontrast.scss +17 -0
  162. package/styles/input/icons/_material-dark.scss +49 -0
  163. package/styles/input/icons/_material.scss +49 -0
  164. package/styles/input/icons/_material3-dark.scss +1 -0
  165. package/styles/input/icons/_material3.scss +17 -0
  166. package/styles/input/icons/_tailwind-dark.scss +1 -0
  167. package/styles/input/icons/_tailwind.scss +17 -0
  168. package/styles/input/material-dark.scss +4 -1
  169. package/styles/input/material.scss +4 -1
  170. package/styles/input/material3-dark.scss +4 -1
  171. package/styles/input/material3.scss +4 -1
  172. package/styles/input/tailwind-dark.scss +4 -1
  173. package/styles/input/tailwind.scss +4 -1
  174. package/styles/maskedtextbox/_all.scss +2 -0
  175. package/styles/maskedtextbox/_bootstrap-dark-definition.scss +7 -0
  176. package/styles/maskedtextbox/_bootstrap-definition.scss +4 -0
  177. package/styles/maskedtextbox/_bootstrap4-definition.scss +4 -0
  178. package/styles/maskedtextbox/_bootstrap5-dark-definition.scss +1 -0
  179. package/styles/maskedtextbox/_bootstrap5-definition.scss +7 -0
  180. package/styles/maskedtextbox/_fabric-dark-definition.scss +7 -0
  181. package/styles/maskedtextbox/_fabric-definition.scss +4 -0
  182. package/styles/maskedtextbox/_fluent-dark-definition.scss +1 -0
  183. package/styles/maskedtextbox/_fluent-definition.scss +7 -0
  184. package/styles/maskedtextbox/_fusionnew-definition.scss +7 -0
  185. package/styles/maskedtextbox/_highcontrast-definition.scss +4 -0
  186. package/styles/maskedtextbox/_highcontrast-light-definition.scss +7 -0
  187. package/styles/maskedtextbox/_layout.scss +33 -0
  188. package/styles/maskedtextbox/_material-dark-definition.scss +7 -0
  189. package/styles/maskedtextbox/_material-definition.scss +4 -0
  190. package/styles/maskedtextbox/_material3-dark-definition.scss +1 -0
  191. package/styles/maskedtextbox/_material3-definition.scss +4 -0
  192. package/styles/maskedtextbox/_tailwind-dark-definition.scss +1 -0
  193. package/styles/maskedtextbox/_tailwind-definition.scss +7 -0
  194. package/styles/maskedtextbox/_theme.scss +15 -0
  195. package/styles/maskedtextbox/bootstrap-dark.scss +4 -1
  196. package/styles/maskedtextbox/bootstrap.scss +4 -1
  197. package/styles/maskedtextbox/bootstrap4.scss +4 -1
  198. package/styles/maskedtextbox/bootstrap5-dark.scss +4 -1
  199. package/styles/maskedtextbox/bootstrap5.scss +4 -1
  200. package/styles/maskedtextbox/fabric-dark.scss +4 -1
  201. package/styles/maskedtextbox/fabric.scss +4 -1
  202. package/styles/maskedtextbox/fluent-dark.scss +4 -1
  203. package/styles/maskedtextbox/fluent.scss +4 -1
  204. package/styles/maskedtextbox/highcontrast-light.scss +4 -1
  205. package/styles/maskedtextbox/highcontrast.scss +4 -1
  206. package/styles/maskedtextbox/material-dark.scss +4 -1
  207. package/styles/maskedtextbox/material.scss +4 -1
  208. package/styles/maskedtextbox/material3-dark.scss +4 -1
  209. package/styles/maskedtextbox/material3.scss +4 -1
  210. package/styles/maskedtextbox/tailwind-dark.scss +4 -1
  211. package/styles/maskedtextbox/tailwind.scss +4 -1
  212. package/styles/material3-dark.css +0 -440
  213. package/styles/material3-dark.scss +1 -0
  214. package/styles/material3.css +33 -921
  215. package/styles/material3.scss +1 -0
  216. package/styles/numerictextbox/_all.scss +2 -0
  217. package/styles/numerictextbox/_bootstrap-dark-definition.scss +6 -0
  218. package/styles/numerictextbox/_bootstrap-definition.scss +3 -0
  219. package/styles/numerictextbox/_bootstrap4-definition.scss +3 -0
  220. package/styles/numerictextbox/_bootstrap5-dark-definition.scss +1 -0
  221. package/styles/numerictextbox/_bootstrap5-definition.scss +3 -0
  222. package/styles/numerictextbox/_fabric-dark-definition.scss +6 -0
  223. package/styles/numerictextbox/_fabric-definition.scss +3 -0
  224. package/styles/numerictextbox/_fluent-dark-definition.scss +1 -0
  225. package/styles/numerictextbox/_fluent-definition.scss +5 -0
  226. package/styles/numerictextbox/_fusionnew-definition.scss +3 -0
  227. package/styles/numerictextbox/_highcontrast-definition.scss +3 -0
  228. package/styles/numerictextbox/_highcontrast-light-definition.scss +6 -0
  229. package/styles/numerictextbox/_layout.scss +30 -0
  230. package/styles/numerictextbox/_material-dark-definition.scss +6 -0
  231. package/styles/numerictextbox/_material-definition.scss +3 -0
  232. package/styles/numerictextbox/_material3-dark-definition.scss +1 -0
  233. package/styles/numerictextbox/_material3-definition.scss +4 -0
  234. package/styles/numerictextbox/_tailwind-dark-definition.scss +1 -0
  235. package/styles/numerictextbox/_tailwind-definition.scss +3 -0
  236. package/styles/numerictextbox/_theme.scss +39 -0
  237. package/styles/numerictextbox/bootstrap-dark.scss +5 -1
  238. package/styles/numerictextbox/bootstrap.scss +5 -1
  239. package/styles/numerictextbox/bootstrap4.scss +5 -1
  240. package/styles/numerictextbox/bootstrap5-dark.scss +5 -1
  241. package/styles/numerictextbox/bootstrap5.scss +5 -1
  242. package/styles/numerictextbox/fabric-dark.scss +5 -1
  243. package/styles/numerictextbox/fabric.scss +5 -1
  244. package/styles/numerictextbox/fluent-dark.scss +5 -1
  245. package/styles/numerictextbox/fluent.scss +5 -1
  246. package/styles/numerictextbox/highcontrast-light.scss +5 -1
  247. package/styles/numerictextbox/highcontrast.scss +5 -1
  248. package/styles/numerictextbox/icons/_bootstrap-dark.scss +11 -0
  249. package/styles/numerictextbox/icons/_bootstrap.scss +11 -0
  250. package/styles/numerictextbox/icons/_bootstrap4.scss +11 -0
  251. package/styles/numerictextbox/icons/_bootstrap5-dark.scss +1 -0
  252. package/styles/numerictextbox/icons/_bootstrap5.scss +11 -0
  253. package/styles/numerictextbox/icons/_fabric-dark.scss +11 -0
  254. package/styles/numerictextbox/icons/_fabric.scss +11 -0
  255. package/styles/numerictextbox/icons/_fluent-dark.scss +1 -0
  256. package/styles/numerictextbox/icons/_fluent.scss +11 -0
  257. package/styles/numerictextbox/icons/_fusionnew.scss +11 -0
  258. package/styles/numerictextbox/icons/_highcontrast-light.scss +11 -0
  259. package/styles/numerictextbox/icons/_highcontrast.scss +11 -0
  260. package/styles/numerictextbox/icons/_material-dark.scss +11 -0
  261. package/styles/numerictextbox/icons/_material.scss +11 -0
  262. package/styles/numerictextbox/icons/_material3-dark.scss +1 -0
  263. package/styles/numerictextbox/icons/_material3.scss +11 -0
  264. package/styles/numerictextbox/icons/_tailwind-dark.scss +1 -0
  265. package/styles/numerictextbox/icons/_tailwind.scss +11 -0
  266. package/styles/numerictextbox/material-dark.scss +5 -1
  267. package/styles/numerictextbox/material.scss +5 -1
  268. package/styles/numerictextbox/material3-dark.scss +5 -1
  269. package/styles/numerictextbox/material3.scss +5 -1
  270. package/styles/numerictextbox/tailwind-dark.scss +5 -1
  271. package/styles/numerictextbox/tailwind.scss +5 -1
  272. package/styles/rating/_all.scss +2 -0
  273. package/styles/rating/_bootstrap-dark-definition.scss +43 -0
  274. package/styles/rating/_bootstrap-definition.scss +43 -0
  275. package/styles/rating/_bootstrap4-definition.scss +43 -0
  276. package/styles/rating/_bootstrap5-dark-definition.scss +1 -0
  277. package/styles/rating/_bootstrap5-definition.scss +43 -0
  278. package/styles/rating/_fabric-dark-definition.scss +43 -0
  279. package/styles/rating/_fabric-definition.scss +43 -0
  280. package/styles/rating/_fluent-dark-definition.scss +1 -0
  281. package/styles/rating/_fluent-definition.scss +43 -0
  282. package/styles/rating/_fusionnew-definition.scss +43 -0
  283. package/styles/rating/_highcontrast-definition.scss +43 -0
  284. package/styles/rating/_highcontrast-light-definition.scss +43 -0
  285. package/styles/rating/_layout.scss +207 -0
  286. package/styles/rating/_material-dark-definition.scss +43 -0
  287. package/styles/rating/_material-definition.scss +43 -0
  288. package/styles/rating/_material3-dark-definition.scss +1 -0
  289. package/styles/rating/_material3-definition.scss +43 -0
  290. package/styles/rating/_tailwind-dark-definition.scss +1 -0
  291. package/styles/rating/_tailwind-definition.scss +43 -0
  292. package/styles/rating/_theme.scss +195 -0
  293. package/styles/rating/bootstrap-dark.scss +4 -1
  294. package/styles/rating/bootstrap.scss +4 -1
  295. package/styles/rating/bootstrap4.scss +4 -1
  296. package/styles/rating/bootstrap5-dark.scss +4 -1
  297. package/styles/rating/bootstrap5.scss +4 -1
  298. package/styles/rating/fabric-dark.scss +4 -1
  299. package/styles/rating/fabric.scss +4 -1
  300. package/styles/rating/fluent-dark.scss +4 -1
  301. package/styles/rating/fluent.scss +4 -1
  302. package/styles/rating/highcontrast-light.scss +4 -1
  303. package/styles/rating/highcontrast.scss +4 -1
  304. package/styles/rating/material-dark.scss +4 -1
  305. package/styles/rating/material.scss +4 -1
  306. package/styles/rating/material3-dark.scss +4 -1
  307. package/styles/rating/material3.scss +4 -1
  308. package/styles/rating/tailwind-dark.scss +4 -1
  309. package/styles/rating/tailwind.scss +4 -1
  310. package/styles/signature/_all.scss +2 -0
  311. package/styles/signature/_bootstrap-dark-definition.scss +3 -0
  312. package/styles/signature/_bootstrap-definition.scss +3 -0
  313. package/styles/signature/_bootstrap4-definition.scss +3 -0
  314. package/styles/signature/_bootstrap5-dark-definition.scss +1 -0
  315. package/styles/signature/_bootstrap5-definition.scss +3 -0
  316. package/styles/signature/_fabric-dark-definition.scss +3 -0
  317. package/styles/signature/_fabric-definition.scss +3 -0
  318. package/styles/signature/_fluent-dark-definition.scss +1 -0
  319. package/styles/signature/_fluent-definition.scss +3 -0
  320. package/styles/signature/_fusionnew-definition.scss +3 -0
  321. package/styles/signature/_highcontrast-definition.scss +3 -0
  322. package/styles/signature/_highcontrast-light-definition.scss +3 -0
  323. package/styles/signature/_layout.scss +5 -0
  324. package/styles/signature/_material-dark-definition.scss +3 -0
  325. package/styles/signature/_material-definition.scss +3 -0
  326. package/styles/signature/_material3-dark-definition.scss +1 -0
  327. package/styles/signature/_material3-definition.scss +3 -0
  328. package/styles/signature/_tailwind-dark-definition.scss +1 -0
  329. package/styles/signature/_tailwind-definition.scss +3 -0
  330. package/styles/signature/_theme.scss +7 -0
  331. package/styles/signature/bootstrap-dark.scss +3 -1
  332. package/styles/signature/bootstrap.scss +3 -1
  333. package/styles/signature/bootstrap4.scss +3 -1
  334. package/styles/signature/bootstrap5-dark.scss +3 -1
  335. package/styles/signature/bootstrap5.scss +3 -1
  336. package/styles/signature/fabric-dark.scss +3 -1
  337. package/styles/signature/fabric.scss +3 -1
  338. package/styles/signature/fluent-dark.scss +3 -1
  339. package/styles/signature/fluent.scss +3 -1
  340. package/styles/signature/highcontrast-light.scss +3 -1
  341. package/styles/signature/highcontrast.scss +3 -1
  342. package/styles/signature/material-dark.scss +3 -1
  343. package/styles/signature/material.scss +3 -1
  344. package/styles/signature/material3-dark.scss +3 -1
  345. package/styles/signature/material3.scss +3 -1
  346. package/styles/signature/tailwind-dark.scss +3 -1
  347. package/styles/signature/tailwind.scss +3 -1
  348. package/styles/slider/_all.scss +3 -0
  349. package/styles/slider/_bootstrap-dark-definition.scss +156 -0
  350. package/styles/slider/_bootstrap-definition.scss +152 -0
  351. package/styles/slider/_bootstrap4-definition.scss +147 -0
  352. package/styles/slider/_bootstrap5-dark-definition.scss +1 -0
  353. package/styles/slider/_bootstrap5-definition.scss +90 -0
  354. package/styles/slider/_fabric-dark-definition.scss +162 -0
  355. package/styles/slider/_fabric-definition.scss +156 -0
  356. package/styles/slider/_fluent-dark-definition.scss +1 -0
  357. package/styles/slider/_fluent-definition.scss +74 -0
  358. package/styles/slider/_fusionnew-definition.scss +90 -0
  359. package/styles/slider/_highcontrast-definition.scss +145 -0
  360. package/styles/slider/_highcontrast-light-definition.scss +149 -0
  361. package/styles/slider/_icons.scss +1 -0
  362. package/styles/slider/_layout.scss +2485 -0
  363. package/styles/slider/_material-dark-definition.scss +159 -0
  364. package/styles/slider/_material-definition.scss +154 -0
  365. package/styles/slider/_material3-dark-definition.scss +1 -0
  366. package/styles/slider/_material3-definition.scss +97 -0
  367. package/styles/slider/_tailwind-dark-definition.scss +1 -0
  368. package/styles/slider/_tailwind-definition.scss +84 -0
  369. package/styles/slider/_theme.scss +249 -0
  370. package/styles/slider/bootstrap-dark.scss +5 -1
  371. package/styles/slider/bootstrap.scss +5 -1
  372. package/styles/slider/bootstrap4.scss +5 -1
  373. package/styles/slider/bootstrap5-dark.scss +5 -1
  374. package/styles/slider/bootstrap5.scss +5 -1
  375. package/styles/slider/fabric-dark.scss +5 -1
  376. package/styles/slider/fabric.scss +5 -1
  377. package/styles/slider/fluent-dark.scss +5 -1
  378. package/styles/slider/fluent.scss +5 -1
  379. package/styles/slider/highcontrast-light.scss +5 -1
  380. package/styles/slider/highcontrast.scss +5 -1
  381. package/styles/slider/material-dark.scss +5 -1
  382. package/styles/slider/material.scss +5 -1
  383. package/styles/slider/material3-dark.scss +5 -1
  384. package/styles/slider/material3.scss +5 -1
  385. package/styles/slider/tailwind-dark.scss +5 -1
  386. package/styles/slider/tailwind.scss +5 -1
  387. package/styles/textbox/_all.scss +1 -0
  388. package/styles/textbox/_bootstrap-dark-definition.scss +4 -0
  389. package/styles/textbox/_bootstrap-definition.scss +4 -0
  390. package/styles/textbox/_bootstrap4-definition.scss +4 -0
  391. package/styles/textbox/_bootstrap5-dark-definition.scss +1 -0
  392. package/styles/textbox/_bootstrap5-definition.scss +4 -0
  393. package/styles/textbox/_fabric-dark-definition.scss +4 -0
  394. package/styles/textbox/_fabric-definition.scss +4 -0
  395. package/styles/textbox/_fluent-dark-definition.scss +1 -0
  396. package/styles/textbox/_fluent-definition.scss +4 -0
  397. package/styles/textbox/_fusionnew-definition.scss +4 -0
  398. package/styles/textbox/_highcontrast-definition.scss +4 -0
  399. package/styles/textbox/_highcontrast-light-definition.scss +4 -0
  400. package/styles/textbox/_layout.scss +37 -0
  401. package/styles/textbox/_material-dark-definition.scss +4 -0
  402. package/styles/textbox/_material-definition.scss +4 -0
  403. package/styles/textbox/_material3-dark-definition.scss +1 -0
  404. package/styles/textbox/_material3-definition.scss +4 -0
  405. package/styles/textbox/_tailwind-dark-definition.scss +1 -0
  406. package/styles/textbox/_tailwind-definition.scss +4 -0
  407. package/styles/textbox/_theme.scss +1 -0
  408. package/styles/textbox/bootstrap-dark.scss +4 -1
  409. package/styles/textbox/bootstrap.scss +4 -1
  410. package/styles/textbox/bootstrap4.scss +4 -1
  411. package/styles/textbox/bootstrap5-dark.scss +4 -1
  412. package/styles/textbox/bootstrap5.scss +4 -1
  413. package/styles/textbox/fabric-dark.scss +4 -1
  414. package/styles/textbox/fabric.scss +4 -1
  415. package/styles/textbox/fluent-dark.scss +4 -1
  416. package/styles/textbox/fluent.scss +4 -1
  417. package/styles/textbox/highcontrast-light.scss +4 -1
  418. package/styles/textbox/highcontrast.scss +4 -1
  419. package/styles/textbox/material-dark.scss +4 -1
  420. package/styles/textbox/material.scss +4 -1
  421. package/styles/textbox/material3-dark.scss +4 -1
  422. package/styles/textbox/material3.scss +4 -1
  423. package/styles/textbox/tailwind-dark.scss +4 -1
  424. package/styles/textbox/tailwind.scss +4 -1
  425. package/styles/uploader/_all.scss +2 -0
  426. package/styles/uploader/_bootstrap-dark-definition.scss +213 -0
  427. package/styles/uploader/_bootstrap-definition.scss +208 -0
  428. package/styles/uploader/_bootstrap4-definition.scss +211 -0
  429. package/styles/uploader/_bootstrap5-dark-definition.scss +1 -0
  430. package/styles/uploader/_bootstrap5-definition.scss +216 -0
  431. package/styles/uploader/_definition.scss +142 -0
  432. package/styles/uploader/_fabric-dark-definition.scss +216 -0
  433. package/styles/uploader/_fabric-definition.scss +210 -0
  434. package/styles/uploader/_fluent-dark-definition.scss +1 -0
  435. package/styles/uploader/_fluent-definition.scss +234 -0
  436. package/styles/uploader/_fusionnew-definition.scss +216 -0
  437. package/styles/uploader/_highcontrast-definition.scss +211 -0
  438. package/styles/uploader/_highcontrast-light-definition.scss +219 -0
  439. package/styles/uploader/_layout.scss +989 -0
  440. package/styles/uploader/_material-dark-definition.scss +217 -0
  441. package/styles/uploader/_material-definition.scss +214 -0
  442. package/styles/uploader/_material3-dark-definition.scss +1 -0
  443. package/styles/uploader/_material3-definition.scss +215 -0
  444. package/styles/uploader/_tailwind-dark-definition.scss +1 -0
  445. package/styles/uploader/_tailwind-definition.scss +232 -0
  446. package/styles/uploader/_theme.scss +146 -0
  447. package/styles/uploader/bootstrap-dark.scss +6 -1
  448. package/styles/uploader/bootstrap.scss +6 -1
  449. package/styles/uploader/bootstrap4.scss +6 -1
  450. package/styles/uploader/bootstrap5-dark.scss +6 -1
  451. package/styles/uploader/bootstrap5.scss +6 -1
  452. package/styles/uploader/fabric-dark.scss +6 -1
  453. package/styles/uploader/fabric.scss +6 -1
  454. package/styles/uploader/fluent-dark.scss +6 -1
  455. package/styles/uploader/fluent.scss +6 -1
  456. package/styles/uploader/highcontrast-light.scss +6 -1
  457. package/styles/uploader/highcontrast.scss +6 -1
  458. package/styles/uploader/icons/_bootstrap-dark.scss +34 -0
  459. package/styles/uploader/icons/_bootstrap.scss +34 -0
  460. package/styles/uploader/icons/_bootstrap4.scss +34 -0
  461. package/styles/uploader/icons/_bootstrap5-dark.scss +1 -0
  462. package/styles/uploader/icons/_bootstrap5.scss +34 -0
  463. package/styles/uploader/icons/_fabric-dark.scss +34 -0
  464. package/styles/uploader/icons/_fabric.scss +34 -0
  465. package/styles/uploader/icons/_fluent-dark.scss +1 -0
  466. package/styles/uploader/icons/_fluent.scss +34 -0
  467. package/styles/uploader/icons/_fusionnew.scss +34 -0
  468. package/styles/uploader/icons/_highcontrast-light.scss +34 -0
  469. package/styles/uploader/icons/_highcontrast.scss +34 -0
  470. package/styles/uploader/icons/_material-dark.scss +34 -0
  471. package/styles/uploader/icons/_material.scss +34 -0
  472. package/styles/uploader/icons/_material3-dark.scss +1 -0
  473. package/styles/uploader/icons/_material3.scss +34 -0
  474. package/styles/uploader/icons/_tailwind-dark.scss +1 -0
  475. package/styles/uploader/icons/_tailwind.scss +34 -0
  476. package/styles/uploader/material-dark.scss +6 -1
  477. package/styles/uploader/material.scss +6 -1
  478. package/styles/uploader/material3-dark.scss +6 -1
  479. package/styles/uploader/material3.scss +6 -1
  480. package/styles/uploader/tailwind-dark.scss +6 -1
  481. package/styles/uploader/tailwind.scss +6 -1
  482. package/syncfusion-ej2-angular-inputs.d.ts +5 -0
  483. package/@syncfusion/ej2-angular-inputs.es5.js +0 -1791
  484. package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
  485. package/@syncfusion/ej2-angular-inputs.js +0 -1689
  486. package/@syncfusion/ej2-angular-inputs.js.map +0 -1
  487. package/CHANGELOG.md +0 -1498
  488. package/dist/ej2-angular-inputs.umd.js +0 -1880
  489. package/dist/ej2-angular-inputs.umd.js.map +0 -1
  490. package/dist/ej2-angular-inputs.umd.min.js +0 -11
  491. package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
  492. package/ej2-angular-inputs.d.ts +0 -12
  493. package/ej2-angular-inputs.metadata.json +0 -1
  494. package/postinstall/tagchange.js +0 -18
@@ -119,117 +119,6 @@
119
119
  border-color: rgba(var(--color-sf-outline-variant));
120
120
  }
121
121
 
122
- :root {
123
- --color-sf-black: 0, 0, 0;
124
- --color-sf-white: 255, 255, 255;
125
- --color-sf-primary: 103, 80, 164;
126
- --color-sf-primary-container: 234, 221, 255;
127
- --color-sf-secondary: 98, 91, 113;
128
- --color-sf-secondary-container: 232, 222, 248;
129
- --color-sf-tertiary: 125, 82, 96;
130
- --color-sf-tertiary-container: 255, 216, 228;
131
- --color-sf-surface: 255, 255, 255;
132
- --color-sf-surface-variant: 231, 224, 236;
133
- --color-sf-background: var(--color-sf-surface);
134
- --color-sf-on-primary: 255, 255, 255;
135
- --color-sf-on-primary-container: 33, 0, 94;
136
- --color-sf-on-secondary: 255, 255, 255;
137
- --color-sf-on-secondary-container: 30, 25, 43;
138
- --color-sf-on-tertiary: 255, 255, 255;
139
- --color-sf-on-tertiary-containe: 55, 11, 30;
140
- --color-sf-on-surface: 28, 27, 31;
141
- --color-sf-on-surface-variant: 73, 69, 78;
142
- --color-sf-on-background: 28, 27, 31;
143
- --color-sf-outline: 121, 116, 126;
144
- --color-sf-outline-variant: 196, 199, 197;
145
- --color-sf-shadow: 0, 0, 0;
146
- --color-sf-surface-tint-color: 103, 80, 164;
147
- --color-sf-inverse-surface: 49, 48, 51;
148
- --color-sf-inverse-on-surface: 244, 239, 244;
149
- --color-sf-inverse-primary: 208, 188, 255;
150
- --color-sf-scrim: 0, 0, 0;
151
- --color-sf-error: 179, 38, 30;
152
- --color-sf-error-container: 249, 222, 220;
153
- --color-sf-on-error: 255, 250, 250;
154
- --color-sf-on-error-container: 65, 14, 11;
155
- --color-sf-success: 32, 81, 7;
156
- --color-sf-success-container: 209, 255, 186;
157
- --color-sf-on-success: 244, 255, 239;
158
- --color-sf-on-success-container: 13, 39, 0;
159
- --color-sf-info: 1, 87, 155;
160
- --color-sf-info-container: 233, 245, 255;
161
- --color-sf-on-info: 250, 253, 255;
162
- --color-sf-on-info-container: 0, 51, 91;
163
- --color-sf-warning: 145, 76, 0;
164
- --color-sf-warning-container: 254, 236, 222;
165
- --color-sf-on-warning: 255, 255, 255;
166
- --color-sf-on-warning-container: 47, 21, 0;
167
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
168
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
169
- --color-sf-diagram-palette-background: --color-sf-white;
170
- --color-sf-success-text: 255, 255, 255;
171
- --color-sf-warning-text: 255, 255, 255;
172
- --color-sf-danger-text: 255, 255, 255;
173
- --color-sf-info-text: 255, 255, 255;
174
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
175
- --color-sf-secondary-bg-color: var(--color-sf-surface);
176
- }
177
-
178
- .e-dark-mode {
179
- --color-sf-black: 0, 0, 0;
180
- --color-sf-white: 255, 255, 255;
181
- --color-sf-primary: 208, 188, 255;
182
- --color-sf-primary-container: 79, 55, 139;
183
- --color-sf-secondary: 204, 194, 220;
184
- --color-sf-secondary-container: 74, 68, 88;
185
- --color-sf-tertiary: 239, 184, 200;
186
- --color-sf-tertiary-container: 99, 59, 72;
187
- --color-sf-surface: 28, 27, 31;
188
- --color-sf-surface-variant: 28, 27, 31;
189
- --color-sf-background: var(--color-sf-surface);
190
- --color-sf-on-primary: 55, 30, 115;
191
- --color-sf-on-primary-container: 234, 221, 255;
192
- --color-sf-on-secondary: 51, 45, 65;
193
- --color-sf-on-secondary-container: 232, 222, 248;
194
- --color-sf-on-tertiary: 73, 37, 50;
195
- --color-sf-on-tertiary-containe: 255, 216, 228;
196
- --color-sf-on-surface: 230, 225, 229;
197
- --color-sf-on-surface-variant: 202, 196, 208;
198
- --color-sf-on-background: 230, 225, 229;
199
- --color-sf-outline: 147, 143, 153;
200
- --color-sf-outline-variant: 68, 71, 70;
201
- --color-sf-shadow: 0, 0, 0;
202
- --color-sf-surface-tint-color: 208, 188, 255;
203
- --color-sf-inverse-surface: 230, 225, 229;
204
- --color-sf-inverse-on-surface: 49, 48, 51;
205
- --color-sf-inverse-primary: 103, 80, 164;
206
- --color-sf-scrim: 0, 0, 0;
207
- --color-sf-error: 242, 184, 181;
208
- --color-sf-error-container: 140, 29, 24;
209
- --color-sf-on-error: 96, 20, 16;
210
- --color-sf-on-error-container: 249, 222, 220;
211
- --color-sf-success: 83, 202, 23;
212
- --color-sf-success-container: 22, 62, 2;
213
- --color-sf-on-success: 13, 39, 0;
214
- --color-sf-on-success-container: 183, 250, 150;
215
- --color-sf-info: 71, 172, 251;
216
- --color-sf-info-container: 0, 67, 120;
217
- --color-sf-on-info: 0, 51, 91;
218
- --color-sf-on-info-container: 173, 219, 255;
219
- --color-sf-warning: 245, 180, 130;
220
- --color-sf-warning-container: 123, 65, 0;
221
- --color-sf-on-warning: 99, 52, 0;
222
- --color-sf-on-warning-container: 255, 220, 193;
223
- --color-sf-spreadsheet-gridline: 231, 224, 236;
224
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
225
- --color-sf-success-text: 0, 0, 0;
226
- --color-sf-warning-text: 0, 0, 0;
227
- --color-sf-info-text: 0, 0, 0;
228
- --color-sf-danger-text: 0, 0, 0;
229
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
230
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
231
- }
232
-
233
122
  /* stylelint-disable property-no-vendor-prefix */
234
123
  @keyframes e-input-ripple {
235
124
  100% {
@@ -12619,117 +12508,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
12619
12508
  }
12620
12509
 
12621
12510
  /* stylelint-disable-line no-empty-source */
12622
- :root {
12623
- --color-sf-black: 0, 0, 0;
12624
- --color-sf-white: 255, 255, 255;
12625
- --color-sf-primary: 103, 80, 164;
12626
- --color-sf-primary-container: 234, 221, 255;
12627
- --color-sf-secondary: 98, 91, 113;
12628
- --color-sf-secondary-container: 232, 222, 248;
12629
- --color-sf-tertiary: 125, 82, 96;
12630
- --color-sf-tertiary-container: 255, 216, 228;
12631
- --color-sf-surface: 255, 255, 255;
12632
- --color-sf-surface-variant: 231, 224, 236;
12633
- --color-sf-background: var(--color-sf-surface);
12634
- --color-sf-on-primary: 255, 255, 255;
12635
- --color-sf-on-primary-container: 33, 0, 94;
12636
- --color-sf-on-secondary: 255, 255, 255;
12637
- --color-sf-on-secondary-container: 30, 25, 43;
12638
- --color-sf-on-tertiary: 255, 255, 255;
12639
- --color-sf-on-tertiary-containe: 55, 11, 30;
12640
- --color-sf-on-surface: 28, 27, 31;
12641
- --color-sf-on-surface-variant: 73, 69, 78;
12642
- --color-sf-on-background: 28, 27, 31;
12643
- --color-sf-outline: 121, 116, 126;
12644
- --color-sf-outline-variant: 196, 199, 197;
12645
- --color-sf-shadow: 0, 0, 0;
12646
- --color-sf-surface-tint-color: 103, 80, 164;
12647
- --color-sf-inverse-surface: 49, 48, 51;
12648
- --color-sf-inverse-on-surface: 244, 239, 244;
12649
- --color-sf-inverse-primary: 208, 188, 255;
12650
- --color-sf-scrim: 0, 0, 0;
12651
- --color-sf-error: 179, 38, 30;
12652
- --color-sf-error-container: 249, 222, 220;
12653
- --color-sf-on-error: 255, 250, 250;
12654
- --color-sf-on-error-container: 65, 14, 11;
12655
- --color-sf-success: 32, 81, 7;
12656
- --color-sf-success-container: 209, 255, 186;
12657
- --color-sf-on-success: 244, 255, 239;
12658
- --color-sf-on-success-container: 13, 39, 0;
12659
- --color-sf-info: 1, 87, 155;
12660
- --color-sf-info-container: 233, 245, 255;
12661
- --color-sf-on-info: 250, 253, 255;
12662
- --color-sf-on-info-container: 0, 51, 91;
12663
- --color-sf-warning: 145, 76, 0;
12664
- --color-sf-warning-container: 254, 236, 222;
12665
- --color-sf-on-warning: 255, 255, 255;
12666
- --color-sf-on-warning-container: 47, 21, 0;
12667
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
12668
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
12669
- --color-sf-diagram-palette-background: --color-sf-white;
12670
- --color-sf-success-text: 255, 255, 255;
12671
- --color-sf-warning-text: 255, 255, 255;
12672
- --color-sf-danger-text: 255, 255, 255;
12673
- --color-sf-info-text: 255, 255, 255;
12674
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
12675
- --color-sf-secondary-bg-color: var(--color-sf-surface);
12676
- }
12677
-
12678
- .e-dark-mode {
12679
- --color-sf-black: 0, 0, 0;
12680
- --color-sf-white: 255, 255, 255;
12681
- --color-sf-primary: 208, 188, 255;
12682
- --color-sf-primary-container: 79, 55, 139;
12683
- --color-sf-secondary: 204, 194, 220;
12684
- --color-sf-secondary-container: 74, 68, 88;
12685
- --color-sf-tertiary: 239, 184, 200;
12686
- --color-sf-tertiary-container: 99, 59, 72;
12687
- --color-sf-surface: 28, 27, 31;
12688
- --color-sf-surface-variant: 28, 27, 31;
12689
- --color-sf-background: var(--color-sf-surface);
12690
- --color-sf-on-primary: 55, 30, 115;
12691
- --color-sf-on-primary-container: 234, 221, 255;
12692
- --color-sf-on-secondary: 51, 45, 65;
12693
- --color-sf-on-secondary-container: 232, 222, 248;
12694
- --color-sf-on-tertiary: 73, 37, 50;
12695
- --color-sf-on-tertiary-containe: 255, 216, 228;
12696
- --color-sf-on-surface: 230, 225, 229;
12697
- --color-sf-on-surface-variant: 202, 196, 208;
12698
- --color-sf-on-background: 230, 225, 229;
12699
- --color-sf-outline: 147, 143, 153;
12700
- --color-sf-outline-variant: 68, 71, 70;
12701
- --color-sf-shadow: 0, 0, 0;
12702
- --color-sf-surface-tint-color: 208, 188, 255;
12703
- --color-sf-inverse-surface: 230, 225, 229;
12704
- --color-sf-inverse-on-surface: 49, 48, 51;
12705
- --color-sf-inverse-primary: 103, 80, 164;
12706
- --color-sf-scrim: 0, 0, 0;
12707
- --color-sf-error: 242, 184, 181;
12708
- --color-sf-error-container: 140, 29, 24;
12709
- --color-sf-on-error: 96, 20, 16;
12710
- --color-sf-on-error-container: 249, 222, 220;
12711
- --color-sf-success: 83, 202, 23;
12712
- --color-sf-success-container: 22, 62, 2;
12713
- --color-sf-on-success: 13, 39, 0;
12714
- --color-sf-on-success-container: 183, 250, 150;
12715
- --color-sf-info: 71, 172, 251;
12716
- --color-sf-info-container: 0, 67, 120;
12717
- --color-sf-on-info: 0, 51, 91;
12718
- --color-sf-on-info-container: 173, 219, 255;
12719
- --color-sf-warning: 245, 180, 130;
12720
- --color-sf-warning-container: 123, 65, 0;
12721
- --color-sf-on-warning: 99, 52, 0;
12722
- --color-sf-on-warning-container: 255, 220, 193;
12723
- --color-sf-spreadsheet-gridline: 231, 224, 236;
12724
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
12725
- --color-sf-success-text: 0, 0, 0;
12726
- --color-sf-warning-text: 0, 0, 0;
12727
- --color-sf-info-text: 0, 0, 0;
12728
- --color-sf-danger-text: 0, 0, 0;
12729
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
12730
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
12731
- }
12732
-
12733
12511
  /* stylelint-disable property-no-vendor-prefix */
12734
12512
  @keyframes e-input-ripple {
12735
12513
  100% {
@@ -12793,117 +12571,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
12793
12571
  font-size: 18px;
12794
12572
  }
12795
12573
 
12796
- :root {
12797
- --color-sf-black: 0, 0, 0;
12798
- --color-sf-white: 255, 255, 255;
12799
- --color-sf-primary: 103, 80, 164;
12800
- --color-sf-primary-container: 234, 221, 255;
12801
- --color-sf-secondary: 98, 91, 113;
12802
- --color-sf-secondary-container: 232, 222, 248;
12803
- --color-sf-tertiary: 125, 82, 96;
12804
- --color-sf-tertiary-container: 255, 216, 228;
12805
- --color-sf-surface: 255, 255, 255;
12806
- --color-sf-surface-variant: 231, 224, 236;
12807
- --color-sf-background: var(--color-sf-surface);
12808
- --color-sf-on-primary: 255, 255, 255;
12809
- --color-sf-on-primary-container: 33, 0, 94;
12810
- --color-sf-on-secondary: 255, 255, 255;
12811
- --color-sf-on-secondary-container: 30, 25, 43;
12812
- --color-sf-on-tertiary: 255, 255, 255;
12813
- --color-sf-on-tertiary-containe: 55, 11, 30;
12814
- --color-sf-on-surface: 28, 27, 31;
12815
- --color-sf-on-surface-variant: 73, 69, 78;
12816
- --color-sf-on-background: 28, 27, 31;
12817
- --color-sf-outline: 121, 116, 126;
12818
- --color-sf-outline-variant: 196, 199, 197;
12819
- --color-sf-shadow: 0, 0, 0;
12820
- --color-sf-surface-tint-color: 103, 80, 164;
12821
- --color-sf-inverse-surface: 49, 48, 51;
12822
- --color-sf-inverse-on-surface: 244, 239, 244;
12823
- --color-sf-inverse-primary: 208, 188, 255;
12824
- --color-sf-scrim: 0, 0, 0;
12825
- --color-sf-error: 179, 38, 30;
12826
- --color-sf-error-container: 249, 222, 220;
12827
- --color-sf-on-error: 255, 250, 250;
12828
- --color-sf-on-error-container: 65, 14, 11;
12829
- --color-sf-success: 32, 81, 7;
12830
- --color-sf-success-container: 209, 255, 186;
12831
- --color-sf-on-success: 244, 255, 239;
12832
- --color-sf-on-success-container: 13, 39, 0;
12833
- --color-sf-info: 1, 87, 155;
12834
- --color-sf-info-container: 233, 245, 255;
12835
- --color-sf-on-info: 250, 253, 255;
12836
- --color-sf-on-info-container: 0, 51, 91;
12837
- --color-sf-warning: 145, 76, 0;
12838
- --color-sf-warning-container: 254, 236, 222;
12839
- --color-sf-on-warning: 255, 255, 255;
12840
- --color-sf-on-warning-container: 47, 21, 0;
12841
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
12842
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
12843
- --color-sf-diagram-palette-background: --color-sf-white;
12844
- --color-sf-success-text: 255, 255, 255;
12845
- --color-sf-warning-text: 255, 255, 255;
12846
- --color-sf-danger-text: 255, 255, 255;
12847
- --color-sf-info-text: 255, 255, 255;
12848
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
12849
- --color-sf-secondary-bg-color: var(--color-sf-surface);
12850
- }
12851
-
12852
- .e-dark-mode {
12853
- --color-sf-black: 0, 0, 0;
12854
- --color-sf-white: 255, 255, 255;
12855
- --color-sf-primary: 208, 188, 255;
12856
- --color-sf-primary-container: 79, 55, 139;
12857
- --color-sf-secondary: 204, 194, 220;
12858
- --color-sf-secondary-container: 74, 68, 88;
12859
- --color-sf-tertiary: 239, 184, 200;
12860
- --color-sf-tertiary-container: 99, 59, 72;
12861
- --color-sf-surface: 28, 27, 31;
12862
- --color-sf-surface-variant: 28, 27, 31;
12863
- --color-sf-background: var(--color-sf-surface);
12864
- --color-sf-on-primary: 55, 30, 115;
12865
- --color-sf-on-primary-container: 234, 221, 255;
12866
- --color-sf-on-secondary: 51, 45, 65;
12867
- --color-sf-on-secondary-container: 232, 222, 248;
12868
- --color-sf-on-tertiary: 73, 37, 50;
12869
- --color-sf-on-tertiary-containe: 255, 216, 228;
12870
- --color-sf-on-surface: 230, 225, 229;
12871
- --color-sf-on-surface-variant: 202, 196, 208;
12872
- --color-sf-on-background: 230, 225, 229;
12873
- --color-sf-outline: 147, 143, 153;
12874
- --color-sf-outline-variant: 68, 71, 70;
12875
- --color-sf-shadow: 0, 0, 0;
12876
- --color-sf-surface-tint-color: 208, 188, 255;
12877
- --color-sf-inverse-surface: 230, 225, 229;
12878
- --color-sf-inverse-on-surface: 49, 48, 51;
12879
- --color-sf-inverse-primary: 103, 80, 164;
12880
- --color-sf-scrim: 0, 0, 0;
12881
- --color-sf-error: 242, 184, 181;
12882
- --color-sf-error-container: 140, 29, 24;
12883
- --color-sf-on-error: 96, 20, 16;
12884
- --color-sf-on-error-container: 249, 222, 220;
12885
- --color-sf-success: 83, 202, 23;
12886
- --color-sf-success-container: 22, 62, 2;
12887
- --color-sf-on-success: 13, 39, 0;
12888
- --color-sf-on-success-container: 183, 250, 150;
12889
- --color-sf-info: 71, 172, 251;
12890
- --color-sf-info-container: 0, 67, 120;
12891
- --color-sf-on-info: 0, 51, 91;
12892
- --color-sf-on-info-container: 173, 219, 255;
12893
- --color-sf-warning: 245, 180, 130;
12894
- --color-sf-warning-container: 123, 65, 0;
12895
- --color-sf-on-warning: 99, 52, 0;
12896
- --color-sf-on-warning-container: 255, 220, 193;
12897
- --color-sf-spreadsheet-gridline: 231, 224, 236;
12898
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
12899
- --color-sf-success-text: 0, 0, 0;
12900
- --color-sf-warning-text: 0, 0, 0;
12901
- --color-sf-info-text: 0, 0, 0;
12902
- --color-sf-danger-text: 0, 0, 0;
12903
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
12904
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
12905
- }
12906
-
12907
12574
  /* stylelint-disable property-no-vendor-prefix */
12908
12575
  @keyframes e-input-ripple {
12909
12576
  100% {
@@ -12953,117 +12620,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
12953
12620
  color: rgba(var(--color-sf-error));
12954
12621
  }
12955
12622
 
12956
- :root {
12957
- --color-sf-black: 0, 0, 0;
12958
- --color-sf-white: 255, 255, 255;
12959
- --color-sf-primary: 103, 80, 164;
12960
- --color-sf-primary-container: 234, 221, 255;
12961
- --color-sf-secondary: 98, 91, 113;
12962
- --color-sf-secondary-container: 232, 222, 248;
12963
- --color-sf-tertiary: 125, 82, 96;
12964
- --color-sf-tertiary-container: 255, 216, 228;
12965
- --color-sf-surface: 255, 255, 255;
12966
- --color-sf-surface-variant: 231, 224, 236;
12967
- --color-sf-background: var(--color-sf-surface);
12968
- --color-sf-on-primary: 255, 255, 255;
12969
- --color-sf-on-primary-container: 33, 0, 94;
12970
- --color-sf-on-secondary: 255, 255, 255;
12971
- --color-sf-on-secondary-container: 30, 25, 43;
12972
- --color-sf-on-tertiary: 255, 255, 255;
12973
- --color-sf-on-tertiary-containe: 55, 11, 30;
12974
- --color-sf-on-surface: 28, 27, 31;
12975
- --color-sf-on-surface-variant: 73, 69, 78;
12976
- --color-sf-on-background: 28, 27, 31;
12977
- --color-sf-outline: 121, 116, 126;
12978
- --color-sf-outline-variant: 196, 199, 197;
12979
- --color-sf-shadow: 0, 0, 0;
12980
- --color-sf-surface-tint-color: 103, 80, 164;
12981
- --color-sf-inverse-surface: 49, 48, 51;
12982
- --color-sf-inverse-on-surface: 244, 239, 244;
12983
- --color-sf-inverse-primary: 208, 188, 255;
12984
- --color-sf-scrim: 0, 0, 0;
12985
- --color-sf-error: 179, 38, 30;
12986
- --color-sf-error-container: 249, 222, 220;
12987
- --color-sf-on-error: 255, 250, 250;
12988
- --color-sf-on-error-container: 65, 14, 11;
12989
- --color-sf-success: 32, 81, 7;
12990
- --color-sf-success-container: 209, 255, 186;
12991
- --color-sf-on-success: 244, 255, 239;
12992
- --color-sf-on-success-container: 13, 39, 0;
12993
- --color-sf-info: 1, 87, 155;
12994
- --color-sf-info-container: 233, 245, 255;
12995
- --color-sf-on-info: 250, 253, 255;
12996
- --color-sf-on-info-container: 0, 51, 91;
12997
- --color-sf-warning: 145, 76, 0;
12998
- --color-sf-warning-container: 254, 236, 222;
12999
- --color-sf-on-warning: 255, 255, 255;
13000
- --color-sf-on-warning-container: 47, 21, 0;
13001
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
13002
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
13003
- --color-sf-diagram-palette-background: --color-sf-white;
13004
- --color-sf-success-text: 255, 255, 255;
13005
- --color-sf-warning-text: 255, 255, 255;
13006
- --color-sf-danger-text: 255, 255, 255;
13007
- --color-sf-info-text: 255, 255, 255;
13008
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
13009
- --color-sf-secondary-bg-color: var(--color-sf-surface);
13010
- }
13011
-
13012
- .e-dark-mode {
13013
- --color-sf-black: 0, 0, 0;
13014
- --color-sf-white: 255, 255, 255;
13015
- --color-sf-primary: 208, 188, 255;
13016
- --color-sf-primary-container: 79, 55, 139;
13017
- --color-sf-secondary: 204, 194, 220;
13018
- --color-sf-secondary-container: 74, 68, 88;
13019
- --color-sf-tertiary: 239, 184, 200;
13020
- --color-sf-tertiary-container: 99, 59, 72;
13021
- --color-sf-surface: 28, 27, 31;
13022
- --color-sf-surface-variant: 28, 27, 31;
13023
- --color-sf-background: var(--color-sf-surface);
13024
- --color-sf-on-primary: 55, 30, 115;
13025
- --color-sf-on-primary-container: 234, 221, 255;
13026
- --color-sf-on-secondary: 51, 45, 65;
13027
- --color-sf-on-secondary-container: 232, 222, 248;
13028
- --color-sf-on-tertiary: 73, 37, 50;
13029
- --color-sf-on-tertiary-containe: 255, 216, 228;
13030
- --color-sf-on-surface: 230, 225, 229;
13031
- --color-sf-on-surface-variant: 202, 196, 208;
13032
- --color-sf-on-background: 230, 225, 229;
13033
- --color-sf-outline: 147, 143, 153;
13034
- --color-sf-outline-variant: 68, 71, 70;
13035
- --color-sf-shadow: 0, 0, 0;
13036
- --color-sf-surface-tint-color: 208, 188, 255;
13037
- --color-sf-inverse-surface: 230, 225, 229;
13038
- --color-sf-inverse-on-surface: 49, 48, 51;
13039
- --color-sf-inverse-primary: 103, 80, 164;
13040
- --color-sf-scrim: 0, 0, 0;
13041
- --color-sf-error: 242, 184, 181;
13042
- --color-sf-error-container: 140, 29, 24;
13043
- --color-sf-on-error: 96, 20, 16;
13044
- --color-sf-on-error-container: 249, 222, 220;
13045
- --color-sf-success: 83, 202, 23;
13046
- --color-sf-success-container: 22, 62, 2;
13047
- --color-sf-on-success: 13, 39, 0;
13048
- --color-sf-on-success-container: 183, 250, 150;
13049
- --color-sf-info: 71, 172, 251;
13050
- --color-sf-info-container: 0, 67, 120;
13051
- --color-sf-on-info: 0, 51, 91;
13052
- --color-sf-on-info-container: 173, 219, 255;
13053
- --color-sf-warning: 245, 180, 130;
13054
- --color-sf-warning-container: 123, 65, 0;
13055
- --color-sf-on-warning: 99, 52, 0;
13056
- --color-sf-on-warning-container: 255, 220, 193;
13057
- --color-sf-spreadsheet-gridline: 231, 224, 236;
13058
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
13059
- --color-sf-success-text: 0, 0, 0;
13060
- --color-sf-warning-text: 0, 0, 0;
13061
- --color-sf-info-text: 0, 0, 0;
13062
- --color-sf-danger-text: 0, 0, 0;
13063
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
13064
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
13065
- }
13066
-
13067
12623
  /* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
13068
12624
  /* stylelint-disable property-no-vendor-prefix */
13069
12625
  .e-control-wrapper.e-slider-container.e-material-slider .e-slider .e-handle.e-material-handle {
@@ -13756,261 +13312,39 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
13756
13312
  outline: none;
13757
13313
  position: absolute;
13758
13314
  }
13759
- .e-control-wrapper.e-slider-container .e-slider .e-range {
13760
- background-color: rgba(var(--color-sf-primary));
13761
- }
13762
- .e-control-wrapper.e-slider-container .e-slider .e-handle {
13763
- background-color: rgba(var(--color-sf-primary));
13764
- border-color: rgba(var(--color-sf-primary));
13765
- }
13766
- .e-control-wrapper.e-slider-container .e-slider .e-handle.e-material-tooltip {
13767
- background-color: transparent;
13768
- border-color: transparent;
13769
- }
13770
- .e-control-wrapper.e-slider-container.e-slider-hover .e-slider-track {
13771
- background-color: rgba(var(--color-sf-surface-variant));
13772
- }
13773
- .e-control-wrapper.e-slider-container.e-slider-hover .e-handle {
13774
- border-color: rgba(var(--color-sf-primary));
13775
- }
13776
- :root {
13777
- --color-sf-black: 0, 0, 0;
13778
- --color-sf-white: 255, 255, 255;
13779
- --color-sf-primary: 103, 80, 164;
13780
- --color-sf-primary-container: 234, 221, 255;
13781
- --color-sf-secondary: 98, 91, 113;
13782
- --color-sf-secondary-container: 232, 222, 248;
13783
- --color-sf-tertiary: 125, 82, 96;
13784
- --color-sf-tertiary-container: 255, 216, 228;
13785
- --color-sf-surface: 255, 255, 255;
13786
- --color-sf-surface-variant: 231, 224, 236;
13787
- --color-sf-background: var(--color-sf-surface);
13788
- --color-sf-on-primary: 255, 255, 255;
13789
- --color-sf-on-primary-container: 33, 0, 94;
13790
- --color-sf-on-secondary: 255, 255, 255;
13791
- --color-sf-on-secondary-container: 30, 25, 43;
13792
- --color-sf-on-tertiary: 255, 255, 255;
13793
- --color-sf-on-tertiary-containe: 55, 11, 30;
13794
- --color-sf-on-surface: 28, 27, 31;
13795
- --color-sf-on-surface-variant: 73, 69, 78;
13796
- --color-sf-on-background: 28, 27, 31;
13797
- --color-sf-outline: 121, 116, 126;
13798
- --color-sf-outline-variant: 196, 199, 197;
13799
- --color-sf-shadow: 0, 0, 0;
13800
- --color-sf-surface-tint-color: 103, 80, 164;
13801
- --color-sf-inverse-surface: 49, 48, 51;
13802
- --color-sf-inverse-on-surface: 244, 239, 244;
13803
- --color-sf-inverse-primary: 208, 188, 255;
13804
- --color-sf-scrim: 0, 0, 0;
13805
- --color-sf-error: 179, 38, 30;
13806
- --color-sf-error-container: 249, 222, 220;
13807
- --color-sf-on-error: 255, 250, 250;
13808
- --color-sf-on-error-container: 65, 14, 11;
13809
- --color-sf-success: 32, 81, 7;
13810
- --color-sf-success-container: 209, 255, 186;
13811
- --color-sf-on-success: 244, 255, 239;
13812
- --color-sf-on-success-container: 13, 39, 0;
13813
- --color-sf-info: 1, 87, 155;
13814
- --color-sf-info-container: 233, 245, 255;
13815
- --color-sf-on-info: 250, 253, 255;
13816
- --color-sf-on-info-container: 0, 51, 91;
13817
- --color-sf-warning: 145, 76, 0;
13818
- --color-sf-warning-container: 254, 236, 222;
13819
- --color-sf-on-warning: 255, 255, 255;
13820
- --color-sf-on-warning-container: 47, 21, 0;
13821
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
13822
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
13823
- --color-sf-diagram-palette-background: --color-sf-white;
13824
- --color-sf-success-text: 255, 255, 255;
13825
- --color-sf-warning-text: 255, 255, 255;
13826
- --color-sf-danger-text: 255, 255, 255;
13827
- --color-sf-info-text: 255, 255, 255;
13828
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
13829
- --color-sf-secondary-bg-color: var(--color-sf-surface);
13830
- }
13831
-
13832
- .e-dark-mode {
13833
- --color-sf-black: 0, 0, 0;
13834
- --color-sf-white: 255, 255, 255;
13835
- --color-sf-primary: 208, 188, 255;
13836
- --color-sf-primary-container: 79, 55, 139;
13837
- --color-sf-secondary: 204, 194, 220;
13838
- --color-sf-secondary-container: 74, 68, 88;
13839
- --color-sf-tertiary: 239, 184, 200;
13840
- --color-sf-tertiary-container: 99, 59, 72;
13841
- --color-sf-surface: 28, 27, 31;
13842
- --color-sf-surface-variant: 28, 27, 31;
13843
- --color-sf-background: var(--color-sf-surface);
13844
- --color-sf-on-primary: 55, 30, 115;
13845
- --color-sf-on-primary-container: 234, 221, 255;
13846
- --color-sf-on-secondary: 51, 45, 65;
13847
- --color-sf-on-secondary-container: 232, 222, 248;
13848
- --color-sf-on-tertiary: 73, 37, 50;
13849
- --color-sf-on-tertiary-containe: 255, 216, 228;
13850
- --color-sf-on-surface: 230, 225, 229;
13851
- --color-sf-on-surface-variant: 202, 196, 208;
13852
- --color-sf-on-background: 230, 225, 229;
13853
- --color-sf-outline: 147, 143, 153;
13854
- --color-sf-outline-variant: 68, 71, 70;
13855
- --color-sf-shadow: 0, 0, 0;
13856
- --color-sf-surface-tint-color: 208, 188, 255;
13857
- --color-sf-inverse-surface: 230, 225, 229;
13858
- --color-sf-inverse-on-surface: 49, 48, 51;
13859
- --color-sf-inverse-primary: 103, 80, 164;
13860
- --color-sf-scrim: 0, 0, 0;
13861
- --color-sf-error: 242, 184, 181;
13862
- --color-sf-error-container: 140, 29, 24;
13863
- --color-sf-on-error: 96, 20, 16;
13864
- --color-sf-on-error-container: 249, 222, 220;
13865
- --color-sf-success: 83, 202, 23;
13866
- --color-sf-success-container: 22, 62, 2;
13867
- --color-sf-on-success: 13, 39, 0;
13868
- --color-sf-on-success-container: 183, 250, 150;
13869
- --color-sf-info: 71, 172, 251;
13870
- --color-sf-info-container: 0, 67, 120;
13871
- --color-sf-on-info: 0, 51, 91;
13872
- --color-sf-on-info-container: 173, 219, 255;
13873
- --color-sf-warning: 245, 180, 130;
13874
- --color-sf-warning-container: 123, 65, 0;
13875
- --color-sf-on-warning: 99, 52, 0;
13876
- --color-sf-on-warning-container: 255, 220, 193;
13877
- --color-sf-spreadsheet-gridline: 231, 224, 236;
13878
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
13879
- --color-sf-success-text: 0, 0, 0;
13880
- --color-sf-warning-text: 0, 0, 0;
13881
- --color-sf-info-text: 0, 0, 0;
13882
- --color-sf-danger-text: 0, 0, 0;
13883
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
13884
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
13885
- }
13886
-
13887
- /* stylelint-disable property-no-vendor-prefix */
13888
- @keyframes e-input-ripple {
13889
- 100% {
13890
- opacity: 0;
13891
- transform: scale(4);
13892
- }
13893
- }
13894
- @keyframes slideTopUp {
13895
- from {
13896
- transform: translate3d(0, 0, 0) scale(1);
13897
- }
13898
- to {
13899
- transform: translate3d(0, 0, 0) scale(1);
13900
- }
13901
- }
13902
- /* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
13903
- :root {
13904
- --color-sf-black: 0, 0, 0;
13905
- --color-sf-white: 255, 255, 255;
13906
- --color-sf-primary: 103, 80, 164;
13907
- --color-sf-primary-container: 234, 221, 255;
13908
- --color-sf-secondary: 98, 91, 113;
13909
- --color-sf-secondary-container: 232, 222, 248;
13910
- --color-sf-tertiary: 125, 82, 96;
13911
- --color-sf-tertiary-container: 255, 216, 228;
13912
- --color-sf-surface: 255, 255, 255;
13913
- --color-sf-surface-variant: 231, 224, 236;
13914
- --color-sf-background: var(--color-sf-surface);
13915
- --color-sf-on-primary: 255, 255, 255;
13916
- --color-sf-on-primary-container: 33, 0, 94;
13917
- --color-sf-on-secondary: 255, 255, 255;
13918
- --color-sf-on-secondary-container: 30, 25, 43;
13919
- --color-sf-on-tertiary: 255, 255, 255;
13920
- --color-sf-on-tertiary-containe: 55, 11, 30;
13921
- --color-sf-on-surface: 28, 27, 31;
13922
- --color-sf-on-surface-variant: 73, 69, 78;
13923
- --color-sf-on-background: 28, 27, 31;
13924
- --color-sf-outline: 121, 116, 126;
13925
- --color-sf-outline-variant: 196, 199, 197;
13926
- --color-sf-shadow: 0, 0, 0;
13927
- --color-sf-surface-tint-color: 103, 80, 164;
13928
- --color-sf-inverse-surface: 49, 48, 51;
13929
- --color-sf-inverse-on-surface: 244, 239, 244;
13930
- --color-sf-inverse-primary: 208, 188, 255;
13931
- --color-sf-scrim: 0, 0, 0;
13932
- --color-sf-error: 179, 38, 30;
13933
- --color-sf-error-container: 249, 222, 220;
13934
- --color-sf-on-error: 255, 250, 250;
13935
- --color-sf-on-error-container: 65, 14, 11;
13936
- --color-sf-success: 32, 81, 7;
13937
- --color-sf-success-container: 209, 255, 186;
13938
- --color-sf-on-success: 244, 255, 239;
13939
- --color-sf-on-success-container: 13, 39, 0;
13940
- --color-sf-info: 1, 87, 155;
13941
- --color-sf-info-container: 233, 245, 255;
13942
- --color-sf-on-info: 250, 253, 255;
13943
- --color-sf-on-info-container: 0, 51, 91;
13944
- --color-sf-warning: 145, 76, 0;
13945
- --color-sf-warning-container: 254, 236, 222;
13946
- --color-sf-on-warning: 255, 255, 255;
13947
- --color-sf-on-warning-container: 47, 21, 0;
13948
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
13949
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
13950
- --color-sf-diagram-palette-background: --color-sf-white;
13951
- --color-sf-success-text: 255, 255, 255;
13952
- --color-sf-warning-text: 255, 255, 255;
13953
- --color-sf-danger-text: 255, 255, 255;
13954
- --color-sf-info-text: 255, 255, 255;
13955
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
13956
- --color-sf-secondary-bg-color: var(--color-sf-surface);
13957
- }
13958
-
13959
- .e-dark-mode {
13960
- --color-sf-black: 0, 0, 0;
13961
- --color-sf-white: 255, 255, 255;
13962
- --color-sf-primary: 208, 188, 255;
13963
- --color-sf-primary-container: 79, 55, 139;
13964
- --color-sf-secondary: 204, 194, 220;
13965
- --color-sf-secondary-container: 74, 68, 88;
13966
- --color-sf-tertiary: 239, 184, 200;
13967
- --color-sf-tertiary-container: 99, 59, 72;
13968
- --color-sf-surface: 28, 27, 31;
13969
- --color-sf-surface-variant: 28, 27, 31;
13970
- --color-sf-background: var(--color-sf-surface);
13971
- --color-sf-on-primary: 55, 30, 115;
13972
- --color-sf-on-primary-container: 234, 221, 255;
13973
- --color-sf-on-secondary: 51, 45, 65;
13974
- --color-sf-on-secondary-container: 232, 222, 248;
13975
- --color-sf-on-tertiary: 73, 37, 50;
13976
- --color-sf-on-tertiary-containe: 255, 216, 228;
13977
- --color-sf-on-surface: 230, 225, 229;
13978
- --color-sf-on-surface-variant: 202, 196, 208;
13979
- --color-sf-on-background: 230, 225, 229;
13980
- --color-sf-outline: 147, 143, 153;
13981
- --color-sf-outline-variant: 68, 71, 70;
13982
- --color-sf-shadow: 0, 0, 0;
13983
- --color-sf-surface-tint-color: 208, 188, 255;
13984
- --color-sf-inverse-surface: 230, 225, 229;
13985
- --color-sf-inverse-on-surface: 49, 48, 51;
13986
- --color-sf-inverse-primary: 103, 80, 164;
13987
- --color-sf-scrim: 0, 0, 0;
13988
- --color-sf-error: 242, 184, 181;
13989
- --color-sf-error-container: 140, 29, 24;
13990
- --color-sf-on-error: 96, 20, 16;
13991
- --color-sf-on-error-container: 249, 222, 220;
13992
- --color-sf-success: 83, 202, 23;
13993
- --color-sf-success-container: 22, 62, 2;
13994
- --color-sf-on-success: 13, 39, 0;
13995
- --color-sf-on-success-container: 183, 250, 150;
13996
- --color-sf-info: 71, 172, 251;
13997
- --color-sf-info-container: 0, 67, 120;
13998
- --color-sf-on-info: 0, 51, 91;
13999
- --color-sf-on-info-container: 173, 219, 255;
14000
- --color-sf-warning: 245, 180, 130;
14001
- --color-sf-warning-container: 123, 65, 0;
14002
- --color-sf-on-warning: 99, 52, 0;
14003
- --color-sf-on-warning-container: 255, 220, 193;
14004
- --color-sf-spreadsheet-gridline: 231, 224, 236;
14005
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
14006
- --color-sf-success-text: 0, 0, 0;
14007
- --color-sf-warning-text: 0, 0, 0;
14008
- --color-sf-info-text: 0, 0, 0;
14009
- --color-sf-danger-text: 0, 0, 0;
14010
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
14011
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
14012
- }
14013
-
13315
+ .e-control-wrapper.e-slider-container .e-slider .e-range {
13316
+ background-color: rgba(var(--color-sf-primary));
13317
+ }
13318
+ .e-control-wrapper.e-slider-container .e-slider .e-handle {
13319
+ background-color: rgba(var(--color-sf-primary));
13320
+ border-color: rgba(var(--color-sf-primary));
13321
+ }
13322
+ .e-control-wrapper.e-slider-container .e-slider .e-handle.e-material-tooltip {
13323
+ background-color: transparent;
13324
+ border-color: transparent;
13325
+ }
13326
+ .e-control-wrapper.e-slider-container.e-slider-hover .e-slider-track {
13327
+ background-color: rgba(var(--color-sf-surface-variant));
13328
+ }
13329
+ .e-control-wrapper.e-slider-container.e-slider-hover .e-handle {
13330
+ border-color: rgba(var(--color-sf-primary));
13331
+ }
13332
+ /* stylelint-disable property-no-vendor-prefix */
13333
+ @keyframes e-input-ripple {
13334
+ 100% {
13335
+ opacity: 0;
13336
+ transform: scale(4);
13337
+ }
13338
+ }
13339
+ @keyframes slideTopUp {
13340
+ from {
13341
+ transform: translate3d(0, 0, 0) scale(1);
13342
+ }
13343
+ to {
13344
+ transform: translate3d(0, 0, 0) scale(1);
13345
+ }
13346
+ }
13347
+ /* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
14014
13348
  /* stylelint-disable property-no-vendor-prefix */
14015
13349
  @keyframes material-spinner-rotate {
14016
13350
  0% {
@@ -14817,117 +14151,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
14817
14151
  box-shadow: 0 0 0 transparent;
14818
14152
  }
14819
14153
 
14820
- :root {
14821
- --color-sf-black: 0, 0, 0;
14822
- --color-sf-white: 255, 255, 255;
14823
- --color-sf-primary: 103, 80, 164;
14824
- --color-sf-primary-container: 234, 221, 255;
14825
- --color-sf-secondary: 98, 91, 113;
14826
- --color-sf-secondary-container: 232, 222, 248;
14827
- --color-sf-tertiary: 125, 82, 96;
14828
- --color-sf-tertiary-container: 255, 216, 228;
14829
- --color-sf-surface: 255, 255, 255;
14830
- --color-sf-surface-variant: 231, 224, 236;
14831
- --color-sf-background: var(--color-sf-surface);
14832
- --color-sf-on-primary: 255, 255, 255;
14833
- --color-sf-on-primary-container: 33, 0, 94;
14834
- --color-sf-on-secondary: 255, 255, 255;
14835
- --color-sf-on-secondary-container: 30, 25, 43;
14836
- --color-sf-on-tertiary: 255, 255, 255;
14837
- --color-sf-on-tertiary-containe: 55, 11, 30;
14838
- --color-sf-on-surface: 28, 27, 31;
14839
- --color-sf-on-surface-variant: 73, 69, 78;
14840
- --color-sf-on-background: 28, 27, 31;
14841
- --color-sf-outline: 121, 116, 126;
14842
- --color-sf-outline-variant: 196, 199, 197;
14843
- --color-sf-shadow: 0, 0, 0;
14844
- --color-sf-surface-tint-color: 103, 80, 164;
14845
- --color-sf-inverse-surface: 49, 48, 51;
14846
- --color-sf-inverse-on-surface: 244, 239, 244;
14847
- --color-sf-inverse-primary: 208, 188, 255;
14848
- --color-sf-scrim: 0, 0, 0;
14849
- --color-sf-error: 179, 38, 30;
14850
- --color-sf-error-container: 249, 222, 220;
14851
- --color-sf-on-error: 255, 250, 250;
14852
- --color-sf-on-error-container: 65, 14, 11;
14853
- --color-sf-success: 32, 81, 7;
14854
- --color-sf-success-container: 209, 255, 186;
14855
- --color-sf-on-success: 244, 255, 239;
14856
- --color-sf-on-success-container: 13, 39, 0;
14857
- --color-sf-info: 1, 87, 155;
14858
- --color-sf-info-container: 233, 245, 255;
14859
- --color-sf-on-info: 250, 253, 255;
14860
- --color-sf-on-info-container: 0, 51, 91;
14861
- --color-sf-warning: 145, 76, 0;
14862
- --color-sf-warning-container: 254, 236, 222;
14863
- --color-sf-on-warning: 255, 255, 255;
14864
- --color-sf-on-warning-container: 47, 21, 0;
14865
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
14866
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
14867
- --color-sf-diagram-palette-background: --color-sf-white;
14868
- --color-sf-success-text: 255, 255, 255;
14869
- --color-sf-warning-text: 255, 255, 255;
14870
- --color-sf-danger-text: 255, 255, 255;
14871
- --color-sf-info-text: 255, 255, 255;
14872
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
14873
- --color-sf-secondary-bg-color: var(--color-sf-surface);
14874
- }
14875
-
14876
- .e-dark-mode {
14877
- --color-sf-black: 0, 0, 0;
14878
- --color-sf-white: 255, 255, 255;
14879
- --color-sf-primary: 208, 188, 255;
14880
- --color-sf-primary-container: 79, 55, 139;
14881
- --color-sf-secondary: 204, 194, 220;
14882
- --color-sf-secondary-container: 74, 68, 88;
14883
- --color-sf-tertiary: 239, 184, 200;
14884
- --color-sf-tertiary-container: 99, 59, 72;
14885
- --color-sf-surface: 28, 27, 31;
14886
- --color-sf-surface-variant: 28, 27, 31;
14887
- --color-sf-background: var(--color-sf-surface);
14888
- --color-sf-on-primary: 55, 30, 115;
14889
- --color-sf-on-primary-container: 234, 221, 255;
14890
- --color-sf-on-secondary: 51, 45, 65;
14891
- --color-sf-on-secondary-container: 232, 222, 248;
14892
- --color-sf-on-tertiary: 73, 37, 50;
14893
- --color-sf-on-tertiary-containe: 255, 216, 228;
14894
- --color-sf-on-surface: 230, 225, 229;
14895
- --color-sf-on-surface-variant: 202, 196, 208;
14896
- --color-sf-on-background: 230, 225, 229;
14897
- --color-sf-outline: 147, 143, 153;
14898
- --color-sf-outline-variant: 68, 71, 70;
14899
- --color-sf-shadow: 0, 0, 0;
14900
- --color-sf-surface-tint-color: 208, 188, 255;
14901
- --color-sf-inverse-surface: 230, 225, 229;
14902
- --color-sf-inverse-on-surface: 49, 48, 51;
14903
- --color-sf-inverse-primary: 103, 80, 164;
14904
- --color-sf-scrim: 0, 0, 0;
14905
- --color-sf-error: 242, 184, 181;
14906
- --color-sf-error-container: 140, 29, 24;
14907
- --color-sf-on-error: 96, 20, 16;
14908
- --color-sf-on-error-container: 249, 222, 220;
14909
- --color-sf-success: 83, 202, 23;
14910
- --color-sf-success-container: 22, 62, 2;
14911
- --color-sf-on-success: 13, 39, 0;
14912
- --color-sf-on-success-container: 183, 250, 150;
14913
- --color-sf-info: 71, 172, 251;
14914
- --color-sf-info-container: 0, 67, 120;
14915
- --color-sf-on-info: 0, 51, 91;
14916
- --color-sf-on-info-container: 173, 219, 255;
14917
- --color-sf-warning: 245, 180, 130;
14918
- --color-sf-warning-container: 123, 65, 0;
14919
- --color-sf-on-warning: 99, 52, 0;
14920
- --color-sf-on-warning-container: 255, 220, 193;
14921
- --color-sf-spreadsheet-gridline: 231, 224, 236;
14922
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
14923
- --color-sf-success-text: 0, 0, 0;
14924
- --color-sf-warning-text: 0, 0, 0;
14925
- --color-sf-info-text: 0, 0, 0;
14926
- --color-sf-danger-text: 0, 0, 0;
14927
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
14928
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
14929
- }
14930
-
14931
14154
  /* stylelint-disable-line no-empty-source */
14932
14155
  /* stylelint-disable property-no-vendor-prefix */
14933
14156
  @keyframes e-input-ripple {
@@ -15753,117 +14976,6 @@ body.e-colorpicker-overflow {
15753
14976
  border-color: rgba(var(--color-sf-white));
15754
14977
  }
15755
14978
 
15756
- :root {
15757
- --color-sf-black: 0, 0, 0;
15758
- --color-sf-white: 255, 255, 255;
15759
- --color-sf-primary: 103, 80, 164;
15760
- --color-sf-primary-container: 234, 221, 255;
15761
- --color-sf-secondary: 98, 91, 113;
15762
- --color-sf-secondary-container: 232, 222, 248;
15763
- --color-sf-tertiary: 125, 82, 96;
15764
- --color-sf-tertiary-container: 255, 216, 228;
15765
- --color-sf-surface: 255, 255, 255;
15766
- --color-sf-surface-variant: 231, 224, 236;
15767
- --color-sf-background: var(--color-sf-surface);
15768
- --color-sf-on-primary: 255, 255, 255;
15769
- --color-sf-on-primary-container: 33, 0, 94;
15770
- --color-sf-on-secondary: 255, 255, 255;
15771
- --color-sf-on-secondary-container: 30, 25, 43;
15772
- --color-sf-on-tertiary: 255, 255, 255;
15773
- --color-sf-on-tertiary-containe: 55, 11, 30;
15774
- --color-sf-on-surface: 28, 27, 31;
15775
- --color-sf-on-surface-variant: 73, 69, 78;
15776
- --color-sf-on-background: 28, 27, 31;
15777
- --color-sf-outline: 121, 116, 126;
15778
- --color-sf-outline-variant: 196, 199, 197;
15779
- --color-sf-shadow: 0, 0, 0;
15780
- --color-sf-surface-tint-color: 103, 80, 164;
15781
- --color-sf-inverse-surface: 49, 48, 51;
15782
- --color-sf-inverse-on-surface: 244, 239, 244;
15783
- --color-sf-inverse-primary: 208, 188, 255;
15784
- --color-sf-scrim: 0, 0, 0;
15785
- --color-sf-error: 179, 38, 30;
15786
- --color-sf-error-container: 249, 222, 220;
15787
- --color-sf-on-error: 255, 250, 250;
15788
- --color-sf-on-error-container: 65, 14, 11;
15789
- --color-sf-success: 32, 81, 7;
15790
- --color-sf-success-container: 209, 255, 186;
15791
- --color-sf-on-success: 244, 255, 239;
15792
- --color-sf-on-success-container: 13, 39, 0;
15793
- --color-sf-info: 1, 87, 155;
15794
- --color-sf-info-container: 233, 245, 255;
15795
- --color-sf-on-info: 250, 253, 255;
15796
- --color-sf-on-info-container: 0, 51, 91;
15797
- --color-sf-warning: 145, 76, 0;
15798
- --color-sf-warning-container: 254, 236, 222;
15799
- --color-sf-on-warning: 255, 255, 255;
15800
- --color-sf-on-warning-container: 47, 21, 0;
15801
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
15802
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
15803
- --color-sf-diagram-palette-background: --color-sf-white;
15804
- --color-sf-success-text: 255, 255, 255;
15805
- --color-sf-warning-text: 255, 255, 255;
15806
- --color-sf-danger-text: 255, 255, 255;
15807
- --color-sf-info-text: 255, 255, 255;
15808
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
15809
- --color-sf-secondary-bg-color: var(--color-sf-surface);
15810
- }
15811
-
15812
- .e-dark-mode {
15813
- --color-sf-black: 0, 0, 0;
15814
- --color-sf-white: 255, 255, 255;
15815
- --color-sf-primary: 208, 188, 255;
15816
- --color-sf-primary-container: 79, 55, 139;
15817
- --color-sf-secondary: 204, 194, 220;
15818
- --color-sf-secondary-container: 74, 68, 88;
15819
- --color-sf-tertiary: 239, 184, 200;
15820
- --color-sf-tertiary-container: 99, 59, 72;
15821
- --color-sf-surface: 28, 27, 31;
15822
- --color-sf-surface-variant: 28, 27, 31;
15823
- --color-sf-background: var(--color-sf-surface);
15824
- --color-sf-on-primary: 55, 30, 115;
15825
- --color-sf-on-primary-container: 234, 221, 255;
15826
- --color-sf-on-secondary: 51, 45, 65;
15827
- --color-sf-on-secondary-container: 232, 222, 248;
15828
- --color-sf-on-tertiary: 73, 37, 50;
15829
- --color-sf-on-tertiary-containe: 255, 216, 228;
15830
- --color-sf-on-surface: 230, 225, 229;
15831
- --color-sf-on-surface-variant: 202, 196, 208;
15832
- --color-sf-on-background: 230, 225, 229;
15833
- --color-sf-outline: 147, 143, 153;
15834
- --color-sf-outline-variant: 68, 71, 70;
15835
- --color-sf-shadow: 0, 0, 0;
15836
- --color-sf-surface-tint-color: 208, 188, 255;
15837
- --color-sf-inverse-surface: 230, 225, 229;
15838
- --color-sf-inverse-on-surface: 49, 48, 51;
15839
- --color-sf-inverse-primary: 103, 80, 164;
15840
- --color-sf-scrim: 0, 0, 0;
15841
- --color-sf-error: 242, 184, 181;
15842
- --color-sf-error-container: 140, 29, 24;
15843
- --color-sf-on-error: 96, 20, 16;
15844
- --color-sf-on-error-container: 249, 222, 220;
15845
- --color-sf-success: 83, 202, 23;
15846
- --color-sf-success-container: 22, 62, 2;
15847
- --color-sf-on-success: 13, 39, 0;
15848
- --color-sf-on-success-container: 183, 250, 150;
15849
- --color-sf-info: 71, 172, 251;
15850
- --color-sf-info-container: 0, 67, 120;
15851
- --color-sf-on-info: 0, 51, 91;
15852
- --color-sf-on-info-container: 173, 219, 255;
15853
- --color-sf-warning: 245, 180, 130;
15854
- --color-sf-warning-container: 123, 65, 0;
15855
- --color-sf-on-warning: 99, 52, 0;
15856
- --color-sf-on-warning-container: 255, 220, 193;
15857
- --color-sf-spreadsheet-gridline: 231, 224, 236;
15858
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
15859
- --color-sf-success-text: 0, 0, 0;
15860
- --color-sf-warning-text: 0, 0, 0;
15861
- --color-sf-info-text: 0, 0, 0;
15862
- --color-sf-danger-text: 0, 0, 0;
15863
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
15864
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
15865
- }
15866
-
15867
14979
  .e-rating-container {
15868
14980
  display: -ms-inline-flexbox;
15869
14981
  display: inline-flex;