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

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