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

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