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

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