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