@syncfusion/ej2-angular-inputs 20.4.38-ngcc → 20.4.39

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 (671) hide show
  1. package/README.md +1 -1
  2. package/esm2020/public_api.mjs +3 -0
  3. package/esm2020/src/color-picker/colorpicker-all.module.mjs +23 -0
  4. package/esm2020/src/color-picker/colorpicker.component.mjs +83 -0
  5. package/esm2020/src/color-picker/colorpicker.module.mjs +25 -0
  6. package/esm2020/src/form-validator/form-validator.mjs +193 -0
  7. package/esm2020/src/index.mjs +28 -0
  8. package/esm2020/src/maskedtextbox/maskedtextbox-all.module.mjs +23 -0
  9. package/esm2020/src/maskedtextbox/maskedtextbox.component.mjs +84 -0
  10. package/esm2020/src/maskedtextbox/maskedtextbox.module.mjs +25 -0
  11. package/esm2020/src/numerictextbox/numerictextbox-all.module.mjs +23 -0
  12. package/esm2020/src/numerictextbox/numerictextbox.component.mjs +84 -0
  13. package/esm2020/src/numerictextbox/numerictextbox.module.mjs +25 -0
  14. package/esm2020/src/rating/rating-all.module.mjs +23 -0
  15. package/esm2020/src/rating/rating.component.mjs +108 -0
  16. package/esm2020/src/rating/rating.module.mjs +25 -0
  17. package/esm2020/src/signature/signature-all.module.mjs +23 -0
  18. package/esm2020/src/signature/signature.component.mjs +83 -0
  19. package/esm2020/src/signature/signature.module.mjs +25 -0
  20. package/esm2020/src/slider/slider-all.module.mjs +23 -0
  21. package/esm2020/src/slider/slider.component.mjs +83 -0
  22. package/esm2020/src/slider/slider.module.mjs +25 -0
  23. package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
  24. package/esm2020/src/textbox/textbox.component.mjs +84 -0
  25. package/esm2020/src/textbox/textbox.module.mjs +25 -0
  26. package/esm2020/src/uploader/files.directive.mjs +58 -0
  27. package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
  28. package/esm2020/src/uploader/uploader.component.mjs +95 -0
  29. package/esm2020/src/uploader/uploader.module.mjs +34 -0
  30. package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
  31. package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1237 -0
  32. package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  33. package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1237 -0
  34. package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
  35. package/package.json +28 -19
  36. package/schematics/utils/lib-details.ts +2 -2
  37. package/src/color-picker/colorpicker-all.module.d.ts +6 -0
  38. package/src/color-picker/colorpicker.component.d.ts +3 -0
  39. package/src/color-picker/colorpicker.module.d.ts +6 -0
  40. package/src/maskedtextbox/maskedtextbox-all.module.d.ts +6 -0
  41. package/src/maskedtextbox/maskedtextbox.component.d.ts +3 -0
  42. package/src/maskedtextbox/maskedtextbox.module.d.ts +6 -0
  43. package/src/numerictextbox/numerictextbox-all.module.d.ts +6 -0
  44. package/src/numerictextbox/numerictextbox.component.d.ts +3 -0
  45. package/src/numerictextbox/numerictextbox.module.d.ts +6 -0
  46. package/src/rating/rating-all.module.d.ts +6 -0
  47. package/src/rating/rating.component.d.ts +3 -0
  48. package/src/rating/rating.module.d.ts +6 -0
  49. package/src/signature/signature-all.module.d.ts +6 -0
  50. package/src/signature/signature.component.d.ts +3 -0
  51. package/src/signature/signature.module.d.ts +6 -0
  52. package/src/slider/slider-all.module.d.ts +6 -0
  53. package/src/slider/slider.component.d.ts +3 -0
  54. package/src/slider/slider.module.d.ts +6 -0
  55. package/src/textbox/textbox-all.module.d.ts +6 -0
  56. package/src/textbox/textbox.component.d.ts +3 -0
  57. package/src/textbox/textbox.module.d.ts +6 -0
  58. package/src/uploader/files.directive.d.ts +5 -0
  59. package/src/uploader/uploader-all.module.d.ts +6 -0
  60. package/src/uploader/uploader.component.d.ts +3 -0
  61. package/src/uploader/uploader.module.d.ts +7 -0
  62. package/styles/bootstrap-dark.css +1 -0
  63. package/styles/bootstrap.css +1 -0
  64. package/styles/bootstrap4.css +1 -0
  65. package/styles/bootstrap5-dark.css +1 -0
  66. package/styles/bootstrap5.css +1 -0
  67. package/styles/color-picker/_all.scss +2 -0
  68. package/styles/color-picker/_bootstrap-dark-definition.scss +131 -0
  69. package/styles/color-picker/_bootstrap-definition.scss +128 -0
  70. package/styles/color-picker/_bootstrap4-definition.scss +127 -0
  71. package/styles/color-picker/_bootstrap5-dark-definition.scss +1 -0
  72. package/styles/color-picker/_bootstrap5-definition.scss +133 -0
  73. package/styles/color-picker/_fabric-dark-definition.scss +131 -0
  74. package/styles/color-picker/_fabric-definition.scss +127 -0
  75. package/styles/color-picker/_fluent-dark-definition.scss +1 -0
  76. package/styles/color-picker/_fluent-definition.scss +133 -0
  77. package/styles/color-picker/_fusionnew-definition.scss +133 -0
  78. package/styles/color-picker/_highcontrast-definition.scss +127 -0
  79. package/styles/color-picker/_highcontrast-light-definition.scss +130 -0
  80. package/styles/color-picker/_layout.scss +1174 -0
  81. package/styles/color-picker/_material-dark-definition.scss +135 -0
  82. package/styles/color-picker/_material-definition.scss +130 -0
  83. package/styles/color-picker/_material3-definition.scss +133 -0
  84. package/styles/color-picker/_tailwind-dark-definition.scss +1 -0
  85. package/styles/color-picker/_tailwind-definition.scss +132 -0
  86. package/styles/color-picker/_theme.scss +183 -0
  87. package/styles/color-picker/bootstrap-dark.scss +11 -1
  88. package/styles/color-picker/bootstrap.scss +11 -1
  89. package/styles/color-picker/bootstrap4.scss +11 -1
  90. package/styles/color-picker/bootstrap5-dark.scss +11 -1
  91. package/styles/color-picker/bootstrap5.scss +11 -1
  92. package/styles/color-picker/fabric-dark.scss +11 -1
  93. package/styles/color-picker/fabric.scss +11 -1
  94. package/styles/color-picker/fluent-dark.scss +11 -1
  95. package/styles/color-picker/fluent.scss +11 -1
  96. package/styles/color-picker/highcontrast-light.scss +11 -1
  97. package/styles/color-picker/highcontrast.scss +11 -1
  98. package/styles/color-picker/icons/_bootstrap-dark.scss +9 -0
  99. package/styles/color-picker/icons/_bootstrap.scss +9 -0
  100. package/styles/color-picker/icons/_bootstrap4.scss +9 -0
  101. package/styles/color-picker/icons/_bootstrap5-dark.scss +1 -0
  102. package/styles/color-picker/icons/_bootstrap5.scss +9 -0
  103. package/styles/color-picker/icons/_fabric-dark.scss +9 -0
  104. package/styles/color-picker/icons/_fabric.scss +9 -0
  105. package/styles/color-picker/icons/_fluent-dark.scss +1 -0
  106. package/styles/color-picker/icons/_fluent.scss +9 -0
  107. package/styles/color-picker/icons/_fusionnew.scss +9 -0
  108. package/styles/color-picker/icons/_highcontrast-light.scss +9 -0
  109. package/styles/color-picker/icons/_highcontrast.scss +9 -0
  110. package/styles/color-picker/icons/_material-dark.scss +9 -0
  111. package/styles/color-picker/icons/_material.scss +9 -0
  112. package/styles/color-picker/icons/_material3.scss +9 -0
  113. package/styles/color-picker/icons/_tailwind-dark.scss +9 -0
  114. package/styles/color-picker/icons/_tailwind.scss +9 -0
  115. package/styles/color-picker/material-dark.scss +11 -1
  116. package/styles/color-picker/material.scss +11 -1
  117. package/styles/color-picker/tailwind-dark.scss +11 -1
  118. package/styles/color-picker/tailwind.scss +11 -1
  119. package/styles/fabric-dark.css +1 -0
  120. package/styles/fabric.css +1 -0
  121. package/styles/fluent-dark.css +1 -0
  122. package/styles/fluent.css +1 -0
  123. package/styles/highcontrast-light.css +1 -0
  124. package/styles/highcontrast.css +1 -0
  125. package/styles/input/_all.scss +3 -0
  126. package/styles/input/_bootstrap-dark-definition.scss +329 -0
  127. package/styles/input/_bootstrap-definition.scss +320 -0
  128. package/styles/input/_bootstrap4-definition.scss +325 -0
  129. package/styles/input/_bootstrap5-dark-definition.scss +1 -0
  130. package/styles/input/_bootstrap5-definition.scss +336 -0
  131. package/styles/input/_definition.scss +232 -0
  132. package/styles/input/_fabric-dark-definition.scss +319 -0
  133. package/styles/input/_fabric-definition.scss +311 -0
  134. package/styles/input/_fluent-dark-definition.scss +1 -0
  135. package/styles/input/_fluent-definition.scss +338 -0
  136. package/styles/input/_fusionnew-definition.scss +336 -0
  137. package/styles/input/_highcontrast-definition.scss +312 -0
  138. package/styles/input/_highcontrast-light-definition.scss +320 -0
  139. package/styles/input/_layout.scss +11009 -0
  140. package/styles/input/_material-dark-definition.scss +573 -0
  141. package/styles/input/_material-definition.scss +573 -0
  142. package/styles/input/_material3-definition.scss +336 -0
  143. package/styles/input/_responsive.scss +1 -0
  144. package/styles/input/_tailwind-dark-definition.scss +1 -0
  145. package/styles/input/_tailwind-definition.scss +335 -0
  146. package/styles/input/_theme.scss +4264 -0
  147. package/styles/input/bootstrap-dark.scss +4 -1
  148. package/styles/input/bootstrap.scss +4 -1
  149. package/styles/input/bootstrap4.scss +4 -1
  150. package/styles/input/bootstrap5-dark.scss +4 -1
  151. package/styles/input/bootstrap5.scss +4 -1
  152. package/styles/input/fabric-dark.scss +4 -1
  153. package/styles/input/fabric.scss +4 -1
  154. package/styles/input/fluent-dark.scss +4 -1
  155. package/styles/input/fluent.scss +4 -1
  156. package/styles/input/highcontrast-light.scss +4 -1
  157. package/styles/input/highcontrast.scss +4 -1
  158. package/styles/input/icons/_bootstrap-dark.scss +17 -0
  159. package/styles/input/icons/_bootstrap.scss +17 -0
  160. package/styles/input/icons/_bootstrap4.scss +17 -0
  161. package/styles/input/icons/_bootstrap5-dark.scss +1 -0
  162. package/styles/input/icons/_bootstrap5.scss +17 -0
  163. package/styles/input/icons/_fabric-dark.scss +17 -0
  164. package/styles/input/icons/_fabric.scss +17 -0
  165. package/styles/input/icons/_fluent-dark.scss +1 -0
  166. package/styles/input/icons/_fluent.scss +17 -0
  167. package/styles/input/icons/_fusionnew.scss +17 -0
  168. package/styles/input/icons/_highcontrast-light.scss +17 -0
  169. package/styles/input/icons/_highcontrast.scss +17 -0
  170. package/styles/input/icons/_material-dark.scss +49 -0
  171. package/styles/input/icons/_material.scss +49 -0
  172. package/styles/input/icons/_material3.scss +17 -0
  173. package/styles/input/icons/_tailwind-dark.scss +1 -0
  174. package/styles/input/icons/_tailwind.scss +17 -0
  175. package/styles/input/material-dark.scss +4 -1
  176. package/styles/input/material.scss +4 -1
  177. package/styles/input/tailwind-dark.scss +4 -1
  178. package/styles/input/tailwind.scss +4 -1
  179. package/styles/maskedtextbox/_all.scss +2 -0
  180. package/styles/maskedtextbox/_bootstrap-dark-definition.scss +7 -0
  181. package/styles/maskedtextbox/_bootstrap-definition.scss +4 -0
  182. package/styles/maskedtextbox/_bootstrap4-definition.scss +4 -0
  183. package/styles/maskedtextbox/_bootstrap5-dark-definition.scss +1 -0
  184. package/styles/maskedtextbox/_bootstrap5-definition.scss +7 -0
  185. package/styles/maskedtextbox/_fabric-dark-definition.scss +7 -0
  186. package/styles/maskedtextbox/_fabric-definition.scss +4 -0
  187. package/styles/maskedtextbox/_fluent-dark-definition.scss +1 -0
  188. package/styles/maskedtextbox/_fluent-definition.scss +7 -0
  189. package/styles/maskedtextbox/_fusionnew-definition.scss +7 -0
  190. package/styles/maskedtextbox/_highcontrast-definition.scss +4 -0
  191. package/styles/maskedtextbox/_highcontrast-light-definition.scss +7 -0
  192. package/styles/maskedtextbox/_layout.scss +33 -0
  193. package/styles/maskedtextbox/_material-dark-definition.scss +7 -0
  194. package/styles/maskedtextbox/_material-definition.scss +4 -0
  195. package/styles/maskedtextbox/_material3-definition.scss +7 -0
  196. package/styles/maskedtextbox/_tailwind-dark-definition.scss +1 -0
  197. package/styles/maskedtextbox/_tailwind-definition.scss +7 -0
  198. package/styles/maskedtextbox/_theme.scss +15 -0
  199. package/styles/maskedtextbox/bootstrap-dark.scss +4 -1
  200. package/styles/maskedtextbox/bootstrap.scss +4 -1
  201. package/styles/maskedtextbox/bootstrap4.scss +4 -1
  202. package/styles/maskedtextbox/bootstrap5-dark.scss +4 -1
  203. package/styles/maskedtextbox/bootstrap5.scss +4 -1
  204. package/styles/maskedtextbox/fabric-dark.scss +4 -1
  205. package/styles/maskedtextbox/fabric.scss +4 -1
  206. package/styles/maskedtextbox/fluent-dark.scss +4 -1
  207. package/styles/maskedtextbox/fluent.scss +4 -1
  208. package/styles/maskedtextbox/highcontrast-light.scss +4 -1
  209. package/styles/maskedtextbox/highcontrast.scss +4 -1
  210. package/styles/maskedtextbox/material-dark.scss +4 -1
  211. package/styles/maskedtextbox/material.scss +4 -1
  212. package/styles/maskedtextbox/tailwind-dark.scss +4 -1
  213. package/styles/maskedtextbox/tailwind.scss +4 -1
  214. package/styles/material-dark.css +1 -0
  215. package/styles/material.css +1 -0
  216. package/styles/numerictextbox/_all.scss +2 -0
  217. package/styles/numerictextbox/_bootstrap-dark-definition.scss +6 -0
  218. package/styles/numerictextbox/_bootstrap-definition.scss +3 -0
  219. package/styles/numerictextbox/_bootstrap4-definition.scss +3 -0
  220. package/styles/numerictextbox/_bootstrap5-dark-definition.scss +1 -0
  221. package/styles/numerictextbox/_bootstrap5-definition.scss +3 -0
  222. package/styles/numerictextbox/_fabric-dark-definition.scss +6 -0
  223. package/styles/numerictextbox/_fabric-definition.scss +3 -0
  224. package/styles/numerictextbox/_fluent-dark-definition.scss +1 -0
  225. package/styles/numerictextbox/_fluent-definition.scss +5 -0
  226. package/styles/numerictextbox/_fusionnew-definition.scss +3 -0
  227. package/styles/numerictextbox/_highcontrast-definition.scss +3 -0
  228. package/styles/numerictextbox/_highcontrast-light-definition.scss +6 -0
  229. package/styles/numerictextbox/_layout.scss +30 -0
  230. package/styles/numerictextbox/_material-dark-definition.scss +6 -0
  231. package/styles/numerictextbox/_material-definition.scss +3 -0
  232. package/styles/numerictextbox/_material3-definition.scss +3 -0
  233. package/styles/numerictextbox/_tailwind-dark-definition.scss +1 -0
  234. package/styles/numerictextbox/_tailwind-definition.scss +3 -0
  235. package/styles/numerictextbox/_theme.scss +39 -0
  236. package/styles/numerictextbox/bootstrap-dark.scss +5 -1
  237. package/styles/numerictextbox/bootstrap.scss +5 -1
  238. package/styles/numerictextbox/bootstrap4.scss +5 -1
  239. package/styles/numerictextbox/bootstrap5-dark.scss +5 -1
  240. package/styles/numerictextbox/bootstrap5.scss +5 -1
  241. package/styles/numerictextbox/fabric-dark.scss +5 -1
  242. package/styles/numerictextbox/fabric.scss +5 -1
  243. package/styles/numerictextbox/fluent-dark.scss +5 -1
  244. package/styles/numerictextbox/fluent.scss +5 -1
  245. package/styles/numerictextbox/highcontrast-light.scss +5 -1
  246. package/styles/numerictextbox/highcontrast.scss +5 -1
  247. package/styles/numerictextbox/icons/_bootstrap-dark.scss +11 -0
  248. package/styles/numerictextbox/icons/_bootstrap.scss +11 -0
  249. package/styles/numerictextbox/icons/_bootstrap4.scss +11 -0
  250. package/styles/numerictextbox/icons/_bootstrap5-dark.scss +1 -0
  251. package/styles/numerictextbox/icons/_bootstrap5.scss +11 -0
  252. package/styles/numerictextbox/icons/_fabric-dark.scss +11 -0
  253. package/styles/numerictextbox/icons/_fabric.scss +11 -0
  254. package/styles/numerictextbox/icons/_fluent-dark.scss +1 -0
  255. package/styles/numerictextbox/icons/_fluent.scss +11 -0
  256. package/styles/numerictextbox/icons/_fusionnew.scss +11 -0
  257. package/styles/numerictextbox/icons/_highcontrast-light.scss +11 -0
  258. package/styles/numerictextbox/icons/_highcontrast.scss +11 -0
  259. package/styles/numerictextbox/icons/_material-dark.scss +11 -0
  260. package/styles/numerictextbox/icons/_material.scss +11 -0
  261. package/styles/numerictextbox/icons/_material3.scss +11 -0
  262. package/styles/numerictextbox/icons/_tailwind-dark.scss +1 -0
  263. package/styles/numerictextbox/icons/_tailwind.scss +11 -0
  264. package/styles/numerictextbox/material-dark.scss +5 -1
  265. package/styles/numerictextbox/material.scss +5 -1
  266. package/styles/numerictextbox/tailwind-dark.scss +5 -1
  267. package/styles/numerictextbox/tailwind.scss +5 -1
  268. package/styles/rating/_all.scss +2 -0
  269. package/styles/rating/_bootstrap-dark-definition.scss +45 -0
  270. package/styles/rating/_bootstrap-definition.scss +45 -0
  271. package/styles/rating/_bootstrap4-definition.scss +45 -0
  272. package/styles/rating/_bootstrap5-dark-definition.scss +1 -0
  273. package/styles/rating/_bootstrap5-definition.scss +45 -0
  274. package/styles/rating/_fabric-dark-definition.scss +45 -0
  275. package/styles/rating/_fabric-definition.scss +45 -0
  276. package/styles/rating/_fluent-dark-definition.scss +1 -0
  277. package/styles/rating/_fluent-definition.scss +45 -0
  278. package/styles/rating/_fusionnew-definition.scss +45 -0
  279. package/styles/rating/_highcontrast-definition.scss +45 -0
  280. package/styles/rating/_highcontrast-light-definition.scss +45 -0
  281. package/styles/rating/_layout.scss +204 -0
  282. package/styles/rating/_material-dark-definition.scss +45 -0
  283. package/styles/rating/_material-definition.scss +45 -0
  284. package/styles/rating/_material3-definition.scss +45 -0
  285. package/styles/rating/_tailwind-dark-definition.scss +1 -0
  286. package/styles/rating/_tailwind-definition.scss +45 -0
  287. package/styles/rating/_theme.scss +158 -0
  288. package/styles/rating/bootstrap-dark.css +1 -0
  289. package/styles/rating/bootstrap-dark.scss +4 -1
  290. package/styles/rating/bootstrap.css +1 -0
  291. package/styles/rating/bootstrap.scss +4 -1
  292. package/styles/rating/bootstrap4.css +1 -0
  293. package/styles/rating/bootstrap4.scss +4 -1
  294. package/styles/rating/bootstrap5-dark.css +1 -0
  295. package/styles/rating/bootstrap5-dark.scss +4 -1
  296. package/styles/rating/bootstrap5.css +1 -0
  297. package/styles/rating/bootstrap5.scss +4 -1
  298. package/styles/rating/fabric-dark.css +1 -0
  299. package/styles/rating/fabric-dark.scss +4 -1
  300. package/styles/rating/fabric.css +1 -0
  301. package/styles/rating/fabric.scss +4 -1
  302. package/styles/rating/fluent-dark.css +1 -0
  303. package/styles/rating/fluent-dark.scss +4 -1
  304. package/styles/rating/fluent.css +1 -0
  305. package/styles/rating/fluent.scss +4 -1
  306. package/styles/rating/highcontrast-light.css +1 -0
  307. package/styles/rating/highcontrast-light.scss +4 -1
  308. package/styles/rating/highcontrast.css +1 -0
  309. package/styles/rating/highcontrast.scss +4 -1
  310. package/styles/rating/material-dark.css +1 -0
  311. package/styles/rating/material-dark.scss +4 -1
  312. package/styles/rating/material.css +1 -0
  313. package/styles/rating/material.scss +4 -1
  314. package/styles/rating/tailwind-dark.css +1 -0
  315. package/styles/rating/tailwind-dark.scss +4 -1
  316. package/styles/rating/tailwind.css +1 -0
  317. package/styles/rating/tailwind.scss +4 -1
  318. package/styles/signature/_all.scss +2 -0
  319. package/styles/signature/_bootstrap-dark-definition.scss +3 -0
  320. package/styles/signature/_bootstrap-definition.scss +3 -0
  321. package/styles/signature/_bootstrap4-definition.scss +3 -0
  322. package/styles/signature/_bootstrap5-dark-definition.scss +1 -0
  323. package/styles/signature/_bootstrap5-definition.scss +3 -0
  324. package/styles/signature/_fabric-dark-definition.scss +3 -0
  325. package/styles/signature/_fabric-definition.scss +3 -0
  326. package/styles/signature/_fluent-dark-definition.scss +1 -0
  327. package/styles/signature/_fluent-definition.scss +3 -0
  328. package/styles/signature/_fusionnew-definition.scss +3 -0
  329. package/styles/signature/_highcontrast-definition.scss +3 -0
  330. package/styles/signature/_highcontrast-light-definition.scss +3 -0
  331. package/styles/signature/_layout.scss +5 -0
  332. package/styles/signature/_material-dark-definition.scss +3 -0
  333. package/styles/signature/_material-definition.scss +3 -0
  334. package/styles/signature/_material3-definition.scss +3 -0
  335. package/styles/signature/_tailwind-dark-definition.scss +1 -0
  336. package/styles/signature/_tailwind-definition.scss +3 -0
  337. package/styles/signature/_theme.scss +7 -0
  338. package/styles/signature/bootstrap-dark.scss +3 -1
  339. package/styles/signature/bootstrap.scss +3 -1
  340. package/styles/signature/bootstrap4.scss +3 -1
  341. package/styles/signature/bootstrap5-dark.scss +3 -1
  342. package/styles/signature/bootstrap5.scss +3 -1
  343. package/styles/signature/fabric-dark.scss +3 -1
  344. package/styles/signature/fabric.scss +3 -1
  345. package/styles/signature/fluent-dark.scss +3 -1
  346. package/styles/signature/fluent.scss +3 -1
  347. package/styles/signature/highcontrast-light.scss +3 -1
  348. package/styles/signature/highcontrast.scss +3 -1
  349. package/styles/signature/material-dark.scss +3 -1
  350. package/styles/signature/material.scss +3 -1
  351. package/styles/signature/tailwind-dark.scss +3 -1
  352. package/styles/signature/tailwind.scss +3 -1
  353. package/styles/slider/_all.scss +3 -0
  354. package/styles/slider/_bootstrap-dark-definition.scss +156 -0
  355. package/styles/slider/_bootstrap-definition.scss +152 -0
  356. package/styles/slider/_bootstrap4-definition.scss +147 -0
  357. package/styles/slider/_bootstrap5-dark-definition.scss +1 -0
  358. package/styles/slider/_bootstrap5-definition.scss +90 -0
  359. package/styles/slider/_fabric-dark-definition.scss +162 -0
  360. package/styles/slider/_fabric-definition.scss +156 -0
  361. package/styles/slider/_fluent-dark-definition.scss +1 -0
  362. package/styles/slider/_fluent-definition.scss +74 -0
  363. package/styles/slider/_fusionnew-definition.scss +90 -0
  364. package/styles/slider/_highcontrast-definition.scss +145 -0
  365. package/styles/slider/_highcontrast-light-definition.scss +149 -0
  366. package/styles/slider/_icons.scss +1 -0
  367. package/styles/slider/_layout.scss +2421 -0
  368. package/styles/slider/_material-dark-definition.scss +159 -0
  369. package/styles/slider/_material-definition.scss +154 -0
  370. package/styles/slider/_material3-definition.scss +90 -0
  371. package/styles/slider/_tailwind-dark-definition.scss +1 -0
  372. package/styles/slider/_tailwind-definition.scss +84 -0
  373. package/styles/slider/_theme.scss +235 -0
  374. package/styles/slider/bootstrap-dark.scss +5 -1
  375. package/styles/slider/bootstrap.scss +5 -1
  376. package/styles/slider/bootstrap4.scss +5 -1
  377. package/styles/slider/bootstrap5-dark.scss +5 -1
  378. package/styles/slider/bootstrap5.scss +5 -1
  379. package/styles/slider/fabric-dark.scss +5 -1
  380. package/styles/slider/fabric.scss +5 -1
  381. package/styles/slider/fluent-dark.scss +5 -1
  382. package/styles/slider/fluent.scss +5 -1
  383. package/styles/slider/highcontrast-light.scss +5 -1
  384. package/styles/slider/highcontrast.scss +5 -1
  385. package/styles/slider/material-dark.scss +5 -1
  386. package/styles/slider/material.scss +5 -1
  387. package/styles/slider/tailwind-dark.scss +5 -1
  388. package/styles/slider/tailwind.scss +5 -1
  389. package/styles/tailwind-dark.css +1 -0
  390. package/styles/tailwind.css +1 -0
  391. package/styles/textbox/_all.scss +1 -0
  392. package/styles/textbox/_bootstrap-dark-definition.scss +1 -0
  393. package/styles/textbox/_bootstrap-definition.scss +1 -0
  394. package/styles/textbox/_bootstrap4-definition.scss +1 -0
  395. package/styles/textbox/_bootstrap5-dark-definition.scss +1 -0
  396. package/styles/textbox/_bootstrap5-definition.scss +1 -0
  397. package/styles/textbox/_fabric-dark-definition.scss +1 -0
  398. package/styles/textbox/_fabric-definition.scss +1 -0
  399. package/styles/textbox/_fluent-dark-definition.scss +1 -0
  400. package/styles/textbox/_fluent-definition.scss +1 -0
  401. package/styles/textbox/_fusionnew-definition.scss +1 -0
  402. package/styles/textbox/_highcontrast-definition.scss +1 -0
  403. package/styles/textbox/_highcontrast-light-definition.scss +1 -0
  404. package/styles/textbox/_layout.scss +10 -0
  405. package/styles/textbox/_material-dark-definition.scss +1 -0
  406. package/styles/textbox/_material-definition.scss +1 -0
  407. package/styles/textbox/_material3-definition.scss +1 -0
  408. package/styles/textbox/_tailwind-dark-definition.scss +1 -0
  409. package/styles/textbox/_tailwind-definition.scss +1 -0
  410. package/styles/textbox/_theme.scss +1 -0
  411. package/styles/textbox/bootstrap-dark.scss +4 -1
  412. package/styles/textbox/bootstrap.scss +4 -1
  413. package/styles/textbox/bootstrap4.scss +4 -1
  414. package/styles/textbox/bootstrap5-dark.scss +4 -1
  415. package/styles/textbox/bootstrap5.scss +4 -1
  416. package/styles/textbox/fabric-dark.scss +4 -1
  417. package/styles/textbox/fabric.scss +4 -1
  418. package/styles/textbox/fluent-dark.scss +4 -1
  419. package/styles/textbox/fluent.scss +4 -1
  420. package/styles/textbox/highcontrast-light.scss +4 -1
  421. package/styles/textbox/highcontrast.scss +4 -1
  422. package/styles/textbox/material-dark.scss +4 -1
  423. package/styles/textbox/material.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 +984 -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-definition.scss +216 -0
  444. package/styles/uploader/_tailwind-dark-definition.scss +1 -0
  445. package/styles/uploader/_tailwind-definition.scss +232 -0
  446. package/styles/uploader/_theme.scss +136 -0
  447. package/styles/uploader/bootstrap-dark.scss +6 -1
  448. package/styles/uploader/bootstrap.scss +6 -1
  449. package/styles/uploader/bootstrap4.scss +6 -1
  450. package/styles/uploader/bootstrap5-dark.scss +6 -1
  451. package/styles/uploader/bootstrap5.scss +6 -1
  452. package/styles/uploader/fabric-dark.scss +6 -1
  453. package/styles/uploader/fabric.scss +6 -1
  454. package/styles/uploader/fluent-dark.scss +6 -1
  455. package/styles/uploader/fluent.scss +6 -1
  456. package/styles/uploader/highcontrast-light.scss +6 -1
  457. package/styles/uploader/highcontrast.scss +6 -1
  458. package/styles/uploader/icons/_bootstrap-dark.scss +34 -0
  459. package/styles/uploader/icons/_bootstrap.scss +34 -0
  460. package/styles/uploader/icons/_bootstrap4.scss +34 -0
  461. package/styles/uploader/icons/_bootstrap5-dark.scss +1 -0
  462. package/styles/uploader/icons/_bootstrap5.scss +34 -0
  463. package/styles/uploader/icons/_fabric-dark.scss +34 -0
  464. package/styles/uploader/icons/_fabric.scss +34 -0
  465. package/styles/uploader/icons/_fluent-dark.scss +1 -0
  466. package/styles/uploader/icons/_fluent.scss +34 -0
  467. package/styles/uploader/icons/_fusionnew.scss +34 -0
  468. package/styles/uploader/icons/_highcontrast-light.scss +34 -0
  469. package/styles/uploader/icons/_highcontrast.scss +34 -0
  470. package/styles/uploader/icons/_material-dark.scss +34 -0
  471. package/styles/uploader/icons/_material.scss +34 -0
  472. package/styles/uploader/icons/_material3.scss +34 -0
  473. package/styles/uploader/icons/_tailwind-dark.scss +1 -0
  474. package/styles/uploader/icons/_tailwind.scss +34 -0
  475. package/styles/uploader/material-dark.scss +6 -1
  476. package/styles/uploader/material.scss +6 -1
  477. package/styles/uploader/tailwind-dark.scss +6 -1
  478. package/styles/uploader/tailwind.scss +6 -1
  479. package/syncfusion-ej2-angular-inputs.d.ts +5 -0
  480. package/@syncfusion/ej2-angular-inputs.es5.js +0 -1759
  481. package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
  482. package/@syncfusion/ej2-angular-inputs.js +0 -1657
  483. package/@syncfusion/ej2-angular-inputs.js.map +0 -1
  484. package/CHANGELOG.md +0 -1444
  485. package/dist/ej2-angular-inputs.umd.js +0 -1848
  486. package/dist/ej2-angular-inputs.umd.js.map +0 -1
  487. package/dist/ej2-angular-inputs.umd.min.js +0 -11
  488. package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
  489. package/ej2-angular-inputs.d.ts +0 -12
  490. package/ej2-angular-inputs.metadata.json +0 -1
  491. package/postinstall/tagchange.js +0 -18
  492. package/schematics/collection.json +0 -105
  493. package/schematics/generators/colorpicker-default/index.d.ts +0 -3
  494. package/schematics/generators/colorpicker-default/index.js +0 -8
  495. package/schematics/generators/colorpicker-default/sample-details.d.ts +0 -5
  496. package/schematics/generators/colorpicker-default/sample-details.js +0 -7
  497. package/schematics/generators/colorpicker-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -5
  498. package/schematics/generators/colorpicker-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  499. package/schematics/generators/colorpicker-default/schema.d.ts +0 -3
  500. package/schematics/generators/colorpicker-default/schema.js +0 -2
  501. package/schematics/generators/colorpicker-default/schema.json +0 -125
  502. package/schematics/generators/maskedtextbox-custommask/index.d.ts +0 -3
  503. package/schematics/generators/maskedtextbox-custommask/index.js +0 -8
  504. package/schematics/generators/maskedtextbox-custommask/sample-details.d.ts +0 -5
  505. package/schematics/generators/maskedtextbox-custommask/sample-details.js +0 -7
  506. package/schematics/generators/maskedtextbox-custommask/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  507. package/schematics/generators/maskedtextbox-custommask/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -14
  508. package/schematics/generators/maskedtextbox-custommask/schema.d.ts +0 -3
  509. package/schematics/generators/maskedtextbox-custommask/schema.js +0 -2
  510. package/schematics/generators/maskedtextbox-custommask/schema.json +0 -125
  511. package/schematics/generators/maskedtextbox-default/index.d.ts +0 -3
  512. package/schematics/generators/maskedtextbox-default/index.js +0 -8
  513. package/schematics/generators/maskedtextbox-default/sample-details.d.ts +0 -5
  514. package/schematics/generators/maskedtextbox-default/sample-details.js +0 -7
  515. package/schematics/generators/maskedtextbox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  516. package/schematics/generators/maskedtextbox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
  517. package/schematics/generators/maskedtextbox-default/schema.d.ts +0 -3
  518. package/schematics/generators/maskedtextbox-default/schema.js +0 -2
  519. package/schematics/generators/maskedtextbox-default/schema.json +0 -125
  520. package/schematics/generators/maskedtextbox-formats/index.d.ts +0 -3
  521. package/schematics/generators/maskedtextbox-formats/index.js +0 -8
  522. package/schematics/generators/maskedtextbox-formats/sample-details.d.ts +0 -5
  523. package/schematics/generators/maskedtextbox-formats/sample-details.js +0 -7
  524. package/schematics/generators/maskedtextbox-formats/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  525. package/schematics/generators/maskedtextbox-formats/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -9
  526. package/schematics/generators/maskedtextbox-formats/schema.d.ts +0 -3
  527. package/schematics/generators/maskedtextbox-formats/schema.js +0 -2
  528. package/schematics/generators/maskedtextbox-formats/schema.json +0 -125
  529. package/schematics/generators/numerictextbox-customformat/index.d.ts +0 -3
  530. package/schematics/generators/numerictextbox-customformat/index.js +0 -8
  531. package/schematics/generators/numerictextbox-customformat/sample-details.d.ts +0 -5
  532. package/schematics/generators/numerictextbox-customformat/sample-details.js +0 -7
  533. package/schematics/generators/numerictextbox-customformat/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  534. package/schematics/generators/numerictextbox-customformat/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -23
  535. package/schematics/generators/numerictextbox-customformat/schema.d.ts +0 -3
  536. package/schematics/generators/numerictextbox-customformat/schema.js +0 -2
  537. package/schematics/generators/numerictextbox-customformat/schema.json +0 -125
  538. package/schematics/generators/numerictextbox-decimals/index.d.ts +0 -3
  539. package/schematics/generators/numerictextbox-decimals/index.js +0 -8
  540. package/schematics/generators/numerictextbox-decimals/sample-details.d.ts +0 -5
  541. package/schematics/generators/numerictextbox-decimals/sample-details.js +0 -7
  542. package/schematics/generators/numerictextbox-decimals/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  543. package/schematics/generators/numerictextbox-decimals/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -20
  544. package/schematics/generators/numerictextbox-decimals/schema.d.ts +0 -3
  545. package/schematics/generators/numerictextbox-decimals/schema.js +0 -2
  546. package/schematics/generators/numerictextbox-decimals/schema.json +0 -125
  547. package/schematics/generators/numerictextbox-default/index.d.ts +0 -3
  548. package/schematics/generators/numerictextbox-default/index.js +0 -8
  549. package/schematics/generators/numerictextbox-default/sample-details.d.ts +0 -5
  550. package/schematics/generators/numerictextbox-default/sample-details.js +0 -7
  551. package/schematics/generators/numerictextbox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -10
  552. package/schematics/generators/numerictextbox-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -22
  553. package/schematics/generators/numerictextbox-default/schema.d.ts +0 -3
  554. package/schematics/generators/numerictextbox-default/schema.js +0 -2
  555. package/schematics/generators/numerictextbox-default/schema.json +0 -125
  556. package/schematics/generators/numerictextbox-range/index.d.ts +0 -3
  557. package/schematics/generators/numerictextbox-range/index.js +0 -8
  558. package/schematics/generators/numerictextbox-range/sample-details.d.ts +0 -5
  559. package/schematics/generators/numerictextbox-range/sample-details.js +0 -7
  560. package/schematics/generators/numerictextbox-range/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -14
  561. package/schematics/generators/numerictextbox-range/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -9
  562. package/schematics/generators/numerictextbox-range/schema.d.ts +0 -3
  563. package/schematics/generators/numerictextbox-range/schema.js +0 -2
  564. package/schematics/generators/numerictextbox-range/schema.json +0 -125
  565. package/schematics/generators/slider-default/index.d.ts +0 -3
  566. package/schematics/generators/slider-default/index.js +0 -8
  567. package/schematics/generators/slider-default/sample-details.d.ts +0 -5
  568. package/schematics/generators/slider-default/sample-details.js +0 -7
  569. package/schematics/generators/slider-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  570. package/schematics/generators/slider-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  571. package/schematics/generators/slider-default/schema.d.ts +0 -3
  572. package/schematics/generators/slider-default/schema.js +0 -2
  573. package/schematics/generators/slider-default/schema.json +0 -125
  574. package/schematics/generators/slider-limits/index.d.ts +0 -3
  575. package/schematics/generators/slider-limits/index.js +0 -8
  576. package/schematics/generators/slider-limits/sample-details.d.ts +0 -5
  577. package/schematics/generators/slider-limits/sample-details.js +0 -7
  578. package/schematics/generators/slider-limits/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  579. package/schematics/generators/slider-limits/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  580. package/schematics/generators/slider-limits/schema.d.ts +0 -3
  581. package/schematics/generators/slider-limits/schema.js +0 -2
  582. package/schematics/generators/slider-limits/schema.json +0 -125
  583. package/schematics/generators/slider-minrange/index.d.ts +0 -3
  584. package/schematics/generators/slider-minrange/index.js +0 -8
  585. package/schematics/generators/slider-minrange/sample-details.d.ts +0 -5
  586. package/schematics/generators/slider-minrange/sample-details.js +0 -7
  587. package/schematics/generators/slider-minrange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  588. package/schematics/generators/slider-minrange/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  589. package/schematics/generators/slider-minrange/schema.d.ts +0 -3
  590. package/schematics/generators/slider-minrange/schema.js +0 -2
  591. package/schematics/generators/slider-minrange/schema.json +0 -125
  592. package/schematics/generators/slider-range/index.d.ts +0 -3
  593. package/schematics/generators/slider-range/index.js +0 -8
  594. package/schematics/generators/slider-range/sample-details.d.ts +0 -5
  595. package/schematics/generators/slider-range/sample-details.js +0 -7
  596. package/schematics/generators/slider-range/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  597. package/schematics/generators/slider-range/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  598. package/schematics/generators/slider-range/schema.d.ts +0 -3
  599. package/schematics/generators/slider-range/schema.js +0 -2
  600. package/schematics/generators/slider-range/schema.json +0 -125
  601. package/schematics/generators/slider-ticks/index.d.ts +0 -3
  602. package/schematics/generators/slider-ticks/index.js +0 -8
  603. package/schematics/generators/slider-ticks/sample-details.d.ts +0 -5
  604. package/schematics/generators/slider-ticks/sample-details.js +0 -7
  605. package/schematics/generators/slider-ticks/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  606. package/schematics/generators/slider-ticks/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  607. package/schematics/generators/slider-ticks/schema.d.ts +0 -3
  608. package/schematics/generators/slider-ticks/schema.js +0 -2
  609. package/schematics/generators/slider-ticks/schema.json +0 -125
  610. package/schematics/generators/slider-vertical/index.d.ts +0 -3
  611. package/schematics/generators/slider-vertical/index.js +0 -8
  612. package/schematics/generators/slider-vertical/sample-details.d.ts +0 -5
  613. package/schematics/generators/slider-vertical/sample-details.js +0 -7
  614. package/schematics/generators/slider-vertical/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -5
  615. package/schematics/generators/slider-vertical/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -1
  616. package/schematics/generators/slider-vertical/schema.d.ts +0 -3
  617. package/schematics/generators/slider-vertical/schema.js +0 -2
  618. package/schematics/generators/slider-vertical/schema.json +0 -125
  619. package/schematics/generators/textbox-floatinglabel/index.d.ts +0 -3
  620. package/schematics/generators/textbox-floatinglabel/index.js +0 -8
  621. package/schematics/generators/textbox-floatinglabel/sample-details.d.ts +0 -5
  622. package/schematics/generators/textbox-floatinglabel/sample-details.js +0 -7
  623. package/schematics/generators/textbox-floatinglabel/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -15
  624. package/schematics/generators/textbox-floatinglabel/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -21
  625. package/schematics/generators/textbox-floatinglabel/schema.d.ts +0 -3
  626. package/schematics/generators/textbox-floatinglabel/schema.js +0 -2
  627. package/schematics/generators/textbox-floatinglabel/schema.json +0 -125
  628. package/schematics/generators/uploader-autoupload/index.d.ts +0 -3
  629. package/schematics/generators/uploader-autoupload/index.js +0 -8
  630. package/schematics/generators/uploader-autoupload/sample-details.d.ts +0 -5
  631. package/schematics/generators/uploader-autoupload/sample-details.js +0 -7
  632. package/schematics/generators/uploader-autoupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  633. package/schematics/generators/uploader-autoupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  634. package/schematics/generators/uploader-autoupload/schema.d.ts +0 -3
  635. package/schematics/generators/uploader-autoupload/schema.js +0 -2
  636. package/schematics/generators/uploader-autoupload/schema.json +0 -125
  637. package/schematics/generators/uploader-chunkupload/index.d.ts +0 -3
  638. package/schematics/generators/uploader-chunkupload/index.js +0 -8
  639. package/schematics/generators/uploader-chunkupload/sample-details.d.ts +0 -5
  640. package/schematics/generators/uploader-chunkupload/sample-details.js +0 -7
  641. package/schematics/generators/uploader-chunkupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  642. package/schematics/generators/uploader-chunkupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  643. package/schematics/generators/uploader-chunkupload/schema.d.ts +0 -3
  644. package/schematics/generators/uploader-chunkupload/schema.js +0 -2
  645. package/schematics/generators/uploader-chunkupload/schema.json +0 -125
  646. package/schematics/generators/uploader-directoryupload/index.d.ts +0 -3
  647. package/schematics/generators/uploader-directoryupload/index.js +0 -8
  648. package/schematics/generators/uploader-directoryupload/sample-details.d.ts +0 -5
  649. package/schematics/generators/uploader-directoryupload/sample-details.js +0 -7
  650. package/schematics/generators/uploader-directoryupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -16
  651. package/schematics/generators/uploader-directoryupload/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  652. package/schematics/generators/uploader-directoryupload/schema.d.ts +0 -3
  653. package/schematics/generators/uploader-directoryupload/schema.js +0 -2
  654. package/schematics/generators/uploader-directoryupload/schema.json +0 -125
  655. package/schematics/generators/uploader-validation/index.d.ts +0 -3
  656. package/schematics/generators/uploader-validation/index.js +0 -8
  657. package/schematics/generators/uploader-validation/sample-details.d.ts +0 -5
  658. package/schematics/generators/uploader-validation/sample-details.js +0 -7
  659. package/schematics/generators/uploader-validation/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -9
  660. package/schematics/generators/uploader-validation/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -7
  661. package/schematics/generators/uploader-validation/schema.d.ts +0 -3
  662. package/schematics/generators/uploader-validation/schema.js +0 -2
  663. package/schematics/generators/uploader-validation/schema.json +0 -125
  664. package/schematics/ng-add/index.d.ts +0 -3
  665. package/schematics/ng-add/index.js +0 -9
  666. package/schematics/ng-add/schema.d.ts +0 -13
  667. package/schematics/ng-add/schema.js +0 -2
  668. package/schematics/ng-add/schema.json +0 -34
  669. package/schematics/tsconfig.json +0 -25
  670. package/schematics/utils/lib-details.d.ts +0 -4
  671. package/schematics/utils/lib-details.js +0 -6
package/CHANGELOG.md DELETED
@@ -1,1444 +0,0 @@
1
- # Changelog
2
-
3
- ## [Unreleased]
4
-
5
- ### Rating `Preview`
6
-
7
- **Key features**:
8
-
9
-
10
- The Rating component lets the user provide a star rating or view other people’s ratings on a numeric scale for any service provided, such as for movies, applications, or products.
11
-
12
-
13
- - **Precision** - Different precision modes to provide more accurate rating.
14
- - **Tooltip and Label** - Provide more expressive rating with tooltip and label.
15
- - **Template** - Support to customize the rating item to heart, svg or any content that precisely match our unique needs.
16
- - **Accessibility** - The Rating provides built-in compliance with the `WAI-ARIA` specifications and it is achieved through attributes.
17
-
18
- ### NumericTextBox
19
-
20
- #### Bug Fixes
21
-
22
- - `#F170722` - Issue with "change event doesn't trigger while modifying the value using `setValue` method inside reactive form" is resolved.
23
-
24
- ## 19.4.38 (2021-12-17)
25
-
26
- ### Signature
27
-
28
- The Signature control allows user to draw smooth signatures as vector outline of strokes using variable width Bézier curve interpolation. You can use your finger, pen, or mouse on a tablet, touchscreen, etc., to draw your own signature on this Signature control.
29
-
30
-
31
- - **Customization** - Support various customization options like background color, background image, stroke color, stroke width, save with background, undo, redo, clear, readonly, and disabled.
32
- - **Load** - Support to load the signature as base64.
33
- - **Draw** - Support to draw the text with the different font family and font size.
34
- - **Save** - Support to save the signature as image like PNG, JPEG, and SVG.
35
-
36
- The Signature component allows user to draw smooth signatures as vector outline of strokes using variable width Bézier curve interpolation. You can use your finger, pen, or mouse on a tablet, touchscreen, etc., to draw your own signature on this Signature component.
37
-
38
-
39
- - **Customization** - Support various customization options like background color, background image, stroke color, stroke width, save with background, undo, redo, clear, readonly, and disabled.
40
- - **Load** - Support to load the signature as base64.
41
- - **Draw** - Support to draw the text with the different font family and font size.
42
- - **Save** - Support to save the signature as image like PNG, JPEG, and SVG.
43
-
44
- ## 19.3.53 (2021-11-12)
45
-
46
- ### ColorPicker
47
-
48
- #### Bug Fixes
49
-
50
- - Overflow issue in ColorPicker has been resolved.
51
-
52
- ## 19.3.48 (2021-11-02)
53
-
54
- ### ColorPicker
55
-
56
- #### Bug Fixes
57
-
58
- - `createPopupOnClick` property scenario not handled properly in `ColorPicker` has been resolved.
59
- - `I344127` - Issue with ColorPicker value not updated properly if opacity is set to false has been resolved.
60
-
61
- ## 19.3.44 (2021-10-05)
62
-
63
- ### NumericTextBox
64
-
65
- #### Bug Fixes
66
-
67
- - `#I319166` - Issue with "lazy modifier not working" has been resolved.
68
-
69
- ## 19.2.59 (2021-08-31)
70
-
71
- ### Uploader
72
-
73
- #### Bug Fixes
74
-
75
- - `#F165287` - Issue with "files are not uploaded in the sequential upload while retrying the failed duplicate files" has been resolved.
76
-
77
- ## 19.2.48 (2021-07-20)
78
-
79
- ### Range Slider
80
-
81
- #### Bug Fixes
82
-
83
- - `#I329800` - The issue with "The Range Slider tooltip is not closed during the document click" has been resolved.
84
-
85
- ## 19.2.46 (2021-07-06)
86
-
87
- ### ColorPicker
88
-
89
- - Role Attribute error in ColorPicker has been fixed.
90
-
91
- ## 19.1.59 (2021-05-04)
92
-
93
- ### Range Slider
94
-
95
- #### Bug Fixes
96
-
97
- - `#I313394` - The issue with "The Range Slider handle position is moved to the wrong position after performing drag and drop using the range bar" has been fixed.
98
-
99
- ## 19.1.54 (2021-03-30)
100
-
101
- ### MaskedTextBox
102
-
103
- #### New Features
104
-
105
- - `#284609` - Now, the cursor will position based on the value present in the input element while focusing the component.
106
-
107
- ## 18.4.47 (2021-03-09)
108
-
109
- ### Form Validator
110
-
111
- #### Bug Fixes
112
-
113
- - `#315294` - Now, you can use the complex name attribute to add the validation rules.
114
-
115
- ## 18.4.44 (2021-02-23)
116
-
117
- ### TextBox
118
-
119
- #### Bug Fixes
120
-
121
- - Issue with "`e-mappinguid` attribute is added to textarea element while rendering the multiline textbox" has been resolved.
122
-
123
- ## 18.4.43 (2021-02-16)
124
-
125
- ### Uploader
126
-
127
- #### Bug Fixes
128
-
129
- - Issue with "dot present in the end of file name while rendering the preload files without type of file" has been resolved.
130
-
131
- ### TextBox
132
-
133
- #### Bug Fixes
134
-
135
- - `#313099` - Issue with "script error throws when disable the clear button dynamically" has been resolved.
136
-
137
- ### FormValidator
138
-
139
- #### Bug Fixes
140
-
141
- - `#F162275` - Issue with "validation message shows while setting required as false in the rules property" has been resolved.
142
-
143
- ## 18.4.32 (2020-12-29)
144
-
145
- ### ColorPicker
146
-
147
- - `F160947` - Unwanted parent selector removed from the top level selector.
148
-
149
- ## 18.3.52 (2020-12-01)
150
-
151
- ### TextBox
152
-
153
- #### Bug Fixes
154
-
155
- - `#304117`,`#304560` - EJ1 and EJ2 controls theme compatibility issue resolved.
156
-
157
- ## 18.3.48 (2020-11-11)
158
-
159
- ### Uploader
160
-
161
- #### Bug Fixes
162
-
163
- - `#299628` - Issue with "cancelling the file uploading inside the uploading event doesn't work when set `showFileList` property value as false" has been resolved.
164
-
165
- ## 18.3.44 (2020-10-27)
166
-
167
- ### Range Slider
168
-
169
- #### Bug Fixes
170
-
171
- - `#294975` - Issue with Slider's handle staying large in size when clicking out of the screen has been fixed.
172
- - `#296636` - Issue with "Tooltip with Slider is not working properly" has been fixed.
173
-
174
- ## 18.3.35 (2020-10-01)
175
-
176
- ### TextBox
177
-
178
- #### Bug Fixes
179
-
180
- - `#288139` - Issue with "the floating label not moved to top, when choose the value using `autofill` option in chrome browser" has been resolved.
181
-
182
- ### Uploader
183
-
184
- #### Bug Fixes
185
-
186
- - `#F156536` - Now, you can drag and drop the directory without any script issue in the directory upload.
187
- - `#287079` - Issue with "file is removing from file list while providing the invalid remove URL" has been resolved.
188
-
189
- ## 18.2.58 (2020-09-15)
190
-
191
- ### ColorPicker
192
-
193
- - Issue with `enableOpacity` has been fixed.
194
-
195
- ## 18.2.54 (2020-08-18)
196
-
197
- ### Range Slider
198
-
199
- #### Bug Fixes
200
-
201
- - `#277466` - In the mobile view, the scrolling issue when multiple sliders are rendered has been resolved
202
-
203
- ## 18.2.48 (2020-08-04)
204
-
205
- ### TextBox
206
-
207
- #### Bug Fixes
208
-
209
- `282905` - Now, Cross-Site Scripting issues will no longer occurs for placeholder property.
210
-
211
-
212
- ## 18.1.56 (2020-06-09)
213
-
214
- ### Uploader
215
-
216
- #### Bug Fixes
217
-
218
- - Issue with "form name is not updated based on name attribute in chunk upload" has been resolved.
219
-
220
- ## 18.1.55 (2020-06-02)
221
-
222
- ### Slider
223
-
224
- #### Bug Fixes
225
-
226
- - `#278460` Issue with slider refresh method has been resolved.
227
-
228
- ## 18.1.53 (2020-05-19)
229
-
230
- ### Slider
231
-
232
- #### New Features
233
-
234
- - Now, you can set the width of the slider component using `width` property.
235
-
236
- ## 18.1.52 (2020-05-13)
237
-
238
- ### Uploader
239
-
240
- #### Bug Fixes
241
-
242
- - Now, selected files persist properly when enabling enablePersistence property.
243
-
244
- #### New Features
245
-
246
- - `#F150695` - Now, you can customize the drag operation effect using dropEffect property.
247
-
248
- ## 18.1.44 (2020-04-14)
249
-
250
- ### TextBox
251
-
252
- #### Bug Fixes
253
-
254
- - Issue with "destroy throws error in IE" has been resolved.
255
-
256
- ## 18.1.43 (2020-04-07)
257
-
258
- ### TextBox
259
-
260
- #### Bug Fixes
261
-
262
- - `#268311` - Issue with "typed value is not reset in the multiline textbox while destroying the control" has been resolved.
263
-
264
- - `#263811`- Now, multiline textbox expand and collapse icon aligned properly.
265
-
266
- ## 18.1.36-beta (2020-03-19)
267
-
268
- ### Slider
269
-
270
- #### Bug Fixes
271
-
272
- - `#259186` The issue with the Vertical Slider tooltip content that rotate `225` degrees has been resolved.
273
-
274
- ## 17.4.46 (2020-01-30)
275
-
276
- ### Slider
277
-
278
- #### Bug Fixes
279
-
280
- - The issue "z-index value get's updated on each value change" has been resolved.
281
-
282
- ### NumericTextBox
283
-
284
- #### Bug Fixes
285
-
286
- - Issue with "validation message not removed while clear the value using clear button" has been resolved.
287
-
288
- ### ColorPicker
289
-
290
- - Provided `onModeSwitch` event after switching mode.
291
-
292
- ### FormValidator
293
-
294
- #### Bug Fixes
295
-
296
- - `#F150308` - Now, email validation accepts more than five characters in the domain name.
297
-
298
- ### TextBox
299
-
300
- #### Bug Fixes
301
-
302
- - `#261143` - Issue with "console error thrown in the IE browser while navigating the page" has been resolved.
303
-
304
- ## 17.4.41 (2020-01-07)
305
-
306
- ### Slider
307
-
308
- #### Bug Fixes
309
-
310
- - `#259186` - Now, the tooltip is displayed correctly for the slider component while rendering it inside the dialog component.
311
-
312
- ## 17.3.29 (2019-11-26)
313
-
314
- ### Form Validator
315
-
316
- #### Bug Fixes
317
-
318
- - Now, validation works for newly added elements by calling the `refresh` method.
319
-
320
- ## 17.3.28 (2019-11-19)
321
-
322
- ### TextBox
323
-
324
- #### New Features
325
-
326
- - `#226069`, `#247330` - Now, you can add icons to textbox component using `addIcon` method.
327
-
328
- #### Bug Fixes
329
-
330
- - `#254393` - Issue with "while calling the `focusIn` method, focus is not removed in the textbox even press the tab key or mouse action" has been resolved.
331
-
332
- ### NumericTextBox
333
-
334
- #### Bug Fixes
335
-
336
- - `#254252` - Issue with "value not updated properly when set decimal value more than 7" has been resolved.
337
-
338
- ## 17.3.27 (2019-11-12)
339
-
340
- ### TextBox
341
-
342
- #### New Features
343
-
344
- - `#233835`, `#236707` - Now, you can adjust the width of textbox component using `width` property.
345
-
346
- ### Uploader
347
-
348
- #### Bug Fixes
349
-
350
- - `#252841` - Now, you can `drag and drop` the folders in `directory upload`.
351
-
352
- ### ColorPicker
353
-
354
- #### Breaking Changes
355
-
356
- - Opacity value is removed from `value` when `enableOpacity` property is set as false.
357
-
358
- ## 17.3.26 (2019-11-05)
359
-
360
- ### ColorPicker
361
-
362
- #### Bug Fixes
363
-
364
- - `F147566` - In Palette mode, Empty string color value shows the default color(green) instead of no color has been fixed.
365
-
366
- ### Uploader
367
-
368
- #### New Features
369
-
370
- - `#226384`, `#F147065` - Now, the file upload UI get changed for `synchronous upload`.
371
-
372
- ## 17.3.21 (2019-10-30)
373
-
374
- ### NumericTextBox
375
-
376
- #### Bug Fixes
377
-
378
- - `#251466` - Now, you can set width property in `em` unit.
379
-
380
- ## 17.3.16 (2019-10-09)
381
-
382
- ### TextBox
383
-
384
- #### Bug Fixes
385
-
386
- - Issue with `Material2 outline layout` has been resolved.
387
-
388
- ## 17.3.14 (2019-10-03)
389
-
390
- ### TextBox
391
-
392
- #### New Features
393
-
394
- - `#246351` - Provided autocomplete property for setting the autocomplete attribute to the textbox.
395
-
396
- ### Uploader
397
-
398
- #### Bug Fixes
399
-
400
- - `#244526`, `#245738` - Issue with "spinner is shown after the file uploaded successfully" has been resolved.
401
-
402
- ## 17.3.9-beta (2019-09-20)
403
-
404
- ### Slider
405
-
406
- #### New Features
407
-
408
- - `#234797` - Provided the color customization for each range of the slider track.
409
-
410
- ### MaskedTextBox
411
-
412
- #### Bug Fixes
413
-
414
- - Now, e-disabled class is removed from wrapper when dynamically enable the masked textbox from disabled state.
415
-
416
- ## 17.2.49 (2019-09-04)
417
-
418
- ### ColorPicker
419
-
420
- #### Bug Fixes
421
-
422
- - `#243637` - Opacity value is not working Edge browser.
423
-
424
- ## 17.2.47 (2019-08-27)
425
-
426
- ### NumericTextBox
427
-
428
- #### Bug Fixes
429
-
430
- - `#242949` - Resolved the cursor flickering issue on IE11 browser while focus the input by tab and mouse simultaneously.
431
-
432
- ## 17.2.46 (2019-08-22)
433
-
434
- ### Slider
435
-
436
- #### Bug Fixes
437
-
438
- - `I240495` - Ticks rendering issue in the vertical slider has been fixed.
439
-
440
- ## 17.2.41 (2019-08-14)
441
-
442
- ### NumericTextBox
443
-
444
- #### Bug Fixes
445
-
446
- - `#244336` - Now, the percentage textbox value never changed in read-only mode after `focusIn` and `focusOut`.
447
-
448
- ### Uploader
449
-
450
- #### Bug Fixes
451
-
452
- - `#F146285`, `244026` - Now, you can get the files in server-side when drag and drop the files in the synchronous upload.
453
-
454
- ## 17.2.40 (2019-08-06)
455
-
456
- ### MaskedTextBox
457
-
458
- #### Bug Fixes
459
-
460
- - `#243500` - Provided `readonly` property to control user interactions.
461
-
462
- ## 17.2.39 (2019-07-30)
463
-
464
- ### Uploader
465
-
466
- #### Bug Fixes
467
-
468
- - `#F145959`, `#242743` - Provided specific type for success event arguments in the `Uploader`.
469
-
470
- ## 17.2.36 (2019-07-24)
471
-
472
- ### Uploader
473
-
474
- #### Bug Fixes
475
-
476
- - `#F145967`, `#242158` - Resolved removing event restricted while the `args.cancel` is enabled.
477
- - Now, provided `postRawFile` argument to the `remove` method for post either file/file name to the server.
478
-
479
- ## 17.2.35 (2019-07-17)
480
-
481
- ### Form Validator
482
-
483
- #### Bug Fixes
484
-
485
- - `#212351` - Now, localized text of form validator was included in ej2-locale package.
486
-
487
- ### Uploader
488
-
489
- #### Bug Fixes
490
-
491
- - `#145718` - Issue with `Material spinner appearance in Safari browser` has been resolved.
492
-
493
- ### MaskedTextBox
494
-
495
- #### Bug Fixes
496
-
497
- - `#F145575` - Now, existing `cssClass` removed when change the `cssClass` dynamically.
498
-
499
- ### TextBox
500
-
501
- #### Bug Fixes
502
-
503
- - `#240368` - Now, you can get the updated previous value in the `input event` argument.
504
- - `#F145575` - Now, existing `cssClass` removed when change the `cssClass` dynamically.
505
-
506
- ## 17.2.34 (2019-07-11)
507
-
508
- ### NumericTextBox
509
-
510
- #### Bug Fixes
511
-
512
- - `#238077` - Now, numeric textbox model value post to the server instead of a formatted numeric string when submitting the form.
513
-
514
- ### TextBox
515
-
516
- #### New Features
517
-
518
- - `#226404`, `#F141814` - Provided `Material2 outline layout` for textbox.
519
- - `#226950` - Provided `Material2 filled layout` for textbox.
520
-
521
- #### Bug Fixes
522
-
523
- - Now, changed the bottom padding of input to meet the Material theme standard.
524
- - `#240368` - Now, you can get the updated previous value in the `input event` argument.
525
-
526
- ## 17.2.28-beta (2019-06-27)
527
-
528
- ### TextBox
529
-
530
- #### New Features
531
-
532
- - #228310, #233267 - Now, you can add additional html attribute to the element using `htmlAttributes` property.
533
-
534
- #### Bug Fixes
535
-
536
- - #238248 - Issue with "throws error while reset the form" has been resolved.
537
- - #235983 - Resolved the HTML5 standard issues in textbox control.
538
-
539
- ### NumericTextBox
540
-
541
- #### New Features
542
-
543
- - #228310, #233267 - Now, you can add additional html attribute to the element using `htmlAttributes` property.
544
-
545
- #### Bug Fixes
546
-
547
- - #237600 - Now, validation message get removed while change the numeric value through spin buttons.
548
-
549
- ### MaskedTextBox
550
-
551
- #### New Features
552
-
553
- - #228310, #233267 - Now, you can add additional html attribute to the element using `htmlAttributes` property.
554
-
555
- ## 17.1.50 (2019-06-04)
556
-
557
- ### Uploader
558
-
559
- #### Bug Fixes
560
-
561
- - No more script issue occurs, on rendering the preload files as empty.
562
-
563
- ## 17.1.49 (2019-05-29)
564
-
565
- ### TextBox
566
-
567
- #### New Features
568
-
569
- - #236816 - Provided method to `focusIn` and `focusOut`.
570
-
571
- ### NumericTextBox
572
-
573
- #### New Features
574
-
575
- - #236816 - Provided method to `focusIn` and `focusOut`.
576
-
577
- ### MaskedTextBox
578
-
579
- #### New Features
580
-
581
- - #236816 - Provided method to `focusIn` and `focusOut`.
582
-
583
- #### Bug Fixes
584
-
585
- - Now, MaskedTextBox renders properly after calling `refresh` method.
586
-
587
- ### Uploader
588
-
589
- #### Bug Fixes
590
-
591
- - #235532 - Now, you can remove the uploaded files, while using the uploader within form.
592
-
593
- ## 17.1.44 (2019-05-07)
594
-
595
- ### MaskedTextBox
596
-
597
- #### Bug Fixes
598
-
599
- - #230545 - Issue with inequality of Masked Textbox element value and argument value of input event while typing rapidly has been fixed.
600
- - #F144247 - Issue with "typed character update on the next position while typing the same digit" has been fixed.
601
-
602
- ## 17.1.41 (2019-04-16)
603
-
604
- ### NumericTextBox
605
-
606
- #### Bug Fixes
607
-
608
- - #231530 - Now, `change` event trigger when click on clear button.
609
-
610
- ### TextBox
611
-
612
- #### Bug Fixes
613
-
614
- - #231530 - Issue with event argument has null value when click on clear button has been fixed.
615
-
616
- ## 17.1.40 (2019-04-09)
617
-
618
- ### Uploader
619
-
620
- #### Bug Fixes
621
-
622
- - In latest chrome browser, file list is not generated issue fixed.
623
-
624
- ### Form Validator
625
-
626
- #### Bug Fixes
627
-
628
- - When using multiple forms with same name fields, validation not occurs issue has been fixed.
629
-
630
- ### ColorPicker
631
-
632
- #### Bug Fixes
633
-
634
- - Value not updated properly in reactive forms issue fixed.
635
-
636
- ## 17.1.38 (2019-03-29)
637
-
638
- ### Form Validator
639
-
640
- #### Bug Fixes
641
-
642
- - Resolved issue with same validation message displays for all fields when provide validation messages using data attribute.
643
-
644
- ### Uploader
645
-
646
- #### Bug Fixes
647
-
648
- - File name ellipsis issue in `edge` browser has been fixed.
649
-
650
- ### TextBox
651
-
652
- #### Bug Fixes
653
-
654
- - When textbox contains value initially, no more change event will trigger while focus followed by focus out.
655
-
656
- ## 17.1.32-beta (2019-03-13)
657
-
658
- ### MaskedTextBox
659
-
660
- #### Bug Fixes
661
-
662
- - Now, you can get the proper masked textbox value in the `change` event.
663
-
664
- ### TextBox
665
-
666
- #### New Features
667
-
668
- - Provided option to render `multiline textbox` (textarea).
669
-
670
- #### Bug Fixes
671
-
672
- - Now input event will trigger after clear the textbox value using clear icon.
673
-
674
- ### Uploader
675
-
676
- #### Bug Fixes
677
-
678
- - Issue with uploading the file within the form has been fixed.
679
- - Issue with updating the uploader buttons text in firefox lower versions has been fixed.
680
-
681
- ### Slider
682
-
683
- #### New Features
684
-
685
- - Now only single tooltip will be displayed in range slider for resize and drag actions for better user interface.
686
-
687
- ## 16.4.55 (2019-02-27)
688
-
689
- ### TextBox
690
-
691
- #### Bug Fixes
692
-
693
- - Now, the validation works with complex names also.
694
-
695
- ### Uploader
696
-
697
- #### Bug Fixes
698
-
699
- - Resolved the issue with `Tab` key navigation in uploader file list.
700
-
701
- ### Slider
702
-
703
- #### New Features
704
-
705
- - Now, Range Slider in Material theme will support `showOn` property.
706
- - Now, Single tooltip will be used to display values in Range Slider.
707
-
708
- ### FormValidator
709
-
710
- #### Bug Fixes
711
-
712
- - Now, the url validation works with all types of url.
713
-
714
- ## 16.4.54 (2019-02-19)
715
-
716
- ### TextBox
717
-
718
- #### Bug Fixes
719
-
720
- - Now, input event will trigger after clear the textbox value using clear icon.
721
- - Now, the default value is set to the textbox while resetting the form.
722
-
723
- - Now, textbox model value will update on every key press.
724
-
725
- #### Breaking Changes
726
-
727
- - While setting the textbox value programmatically, the `change` event will not trigger.
728
-
729
- ### Slider
730
-
731
- #### Bug Fixes
732
-
733
- - Now, the initial value is setback to the `slider` on form `reset`.
734
-
735
- ### Uploader
736
-
737
- #### Bug Fixes
738
-
739
- - Uploader file list will be cleared while reset the form.
740
-
741
- #### New Features
742
-
743
- - Provided `cssClass` property to add custom CSS classes to an uploader.
744
-
745
- ### MaskedTextBox
746
-
747
- #### Bug Fixes
748
-
749
- - Issue with, “MaskedTextBox not restoring the initial value on form reset” has been fixed.
750
-
751
- ### NumericTextBox
752
-
753
- #### Bug Fixes
754
-
755
- - Issue with, “NumericTextBox not restoring the initial value on form reset” has been fixed.
756
-
757
- ## 16.4.53 (2019-02-13)
758
-
759
- ### ColorPicker
760
-
761
- #### Bug Fixes
762
-
763
- - Form reset issue is fixed.
764
-
765
- ### TextBox
766
-
767
- #### Bug Fixes
768
-
769
- - The events `input` and `change` event are no longer triggered multiple time in Angular application.
770
-
771
- ## 16.4.52 (2019-02-05)
772
-
773
- ### MaskedTextBox
774
-
775
- #### New Features
776
-
777
- - Provided the "focus" and "blur" events for MaskedTextBox that will trigger when the control got focus or losses focus.
778
-
779
- ### NumericTextBox
780
-
781
- #### New Features
782
-
783
- - Provided the "focus" and "blur" events for NumericTextBox that will trigger when the control got focus or losses focus.
784
-
785
- ## 16.4.48 (2019-01-22)
786
-
787
- ### Uploader
788
-
789
- #### New Features
790
-
791
- - Provided template support for preloaded files also to customize its default file list structure.
792
-
793
- #### Bug Fixes
794
-
795
- - Provided option to hide generated promise error manually on ajax failed event.
796
-
797
- ## 16.4.47 (2019-01-16)
798
-
799
- ### TextBox
800
-
801
- #### Bug Fixes
802
-
803
- - The issue with `refresh` method of textbox has been fixed.
804
- - Resolved the issue with placeholder property has 'null' value in Edge browser.
805
-
806
- ## 16.4.46 (2019-01-08)
807
-
808
- ### Uploader
809
-
810
- #### New Features
811
-
812
- - Provided option to customize file upload's status message (label) which is sent from server on success and failure events.
813
- - Provided event which trigger before rendering each file item in a page that helps to customize its default UI structure.
814
- - Provided event to denote all the selected files has processed to upload successfully or failed to server.
815
-
816
- #### Bug Fixes
817
-
818
- - Resolved the issue with updating file data in uploader element while drag-and-drop the files.
819
-
820
- ## 16.4.45 (2019-01-02)
821
-
822
- ### Common
823
-
824
- #### Bug Fixes
825
-
826
- - Fixed `CustomPlacement` typing issue.
827
-
828
- ## 16.4.40-beta (2018-12-10)
829
-
830
- ### Uploader
831
-
832
- #### New Features
833
-
834
- - Enabled sequential upload support to file upload component that upload the selected files one after the other to the server.
835
- - New event provided "chunkUploading" which trigger on every chunk to be upload in file upload.
836
- - Provided the option to get additional data back from a server to client on file upload.
837
-
838
- ### FormValidator
839
-
840
- #### New Features
841
-
842
- - **Localization** - Supports to localize error message for the "FormValidator" to different cultures.
843
-
844
- ## 16.3.33 (2018-11-20)
845
-
846
- ### FormValidator
847
-
848
- #### Bug Fixes
849
-
850
- - Form validator `email` and `min` validation issues has been fixed.
851
-
852
- ### TextBox
853
-
854
- #### Bug Fixes
855
-
856
- - The issue with receiving event arguments of TextBox events have been fixed.
857
-
858
- ## 16.3.29 (2018-10-31)
859
-
860
- ### MaskedTextBox
861
-
862
- #### Bug Fixes
863
-
864
- - Issue with using the space as "promptChar" in Masked TextBox has been fixed.
865
-
866
- ### NumericTextBox
867
-
868
- #### Bug Fixes
869
-
870
- - Issue with triggering unwanted “focusout” and “change” events has been fixed.
871
-
872
- ### Uploader
873
-
874
- #### Bug Fixes
875
-
876
- - Resolved the issue with triggering selected event on cancel the file selection.
877
-
878
- ## 16.3.27 (2018-10-23)
879
-
880
- ### TextBox
881
-
882
- #### Bug Fixes
883
-
884
- - The issue with updating `value` property on model binding has been fixed.
885
-
886
- ## 16.3.25 (2018-10-15)
887
-
888
- ### TextBox
889
-
890
- #### Bug Fixes
891
-
892
- - The issue with adding multiple classes in `cssClass` property has been fixed.
893
-
894
- ### MaskedTextBox
895
-
896
- #### Bug Fixes
897
-
898
- - Issue with entering the first character in masked text box when "floatLabelType" is set to "Never" has been fixed.
899
- - Always last MaskedTextBox component get focus on initial page load in IE browser, issue has been fixed.
900
-
901
- ## 16.3.24 (2018-10-09)
902
-
903
- ### MaskedTextBox
904
-
905
- #### Bug Fixes
906
-
907
- - Issue with setting placeholder in IE browser when "floatLabelType" is set to "never" has been fixed.
908
-
909
- ## 16.3.22 (2018-09-25)
910
-
911
- ### FormValidator
912
-
913
- #### Bug Fixes
914
-
915
- - Form validator for number contain email domain name issue has been fixed.
916
-
917
- ### NumericTextBox
918
-
919
- #### Bug Fixes
920
-
921
- - Validation is not working properly for "NumericTextBox" in focus out, issue has been fixed
922
-
923
- ## 16.3.21 (2018-09-22)
924
-
925
- ### ColorPicker
926
-
927
- #### Bug Fixes
928
-
929
- - ColorPicker collision issue fixed.
930
-
931
- ## 16.3.17 (2018-09-12)
932
-
933
- ### Uploader
934
-
935
- #### New Features
936
-
937
- - Provided directory (folder) upload support that uploads all files of folder including sub-folder to server.
938
- - Provided paste to upload support that helps to uploads any images to a server on pasting images from clipboard.
939
-
940
- #### Bug Fixes
941
-
942
- - The files with the wrong extension cannot be uploaded when filtering the files by all files in the file dialog.
943
- - The `clearAll` method removes upload element’s value along with file list.
944
- - Resolved the issue with uploading a file while disable the `showFileList` API.
945
- - In synchronous upload, while removing a particular file from file list will clear all the files now since couldn't manipulate each file details in input file element.
946
- - Resolved the issue with adding the additional form data in IE browser.
947
-
948
- ### TextBox
949
-
950
- #### New Features
951
-
952
- - Included TextBox component as JavaScript component with floating functionality.
953
-
954
- #### Bug Fixes
955
-
956
- - Resolved the issue with customizing the textbox background color with minimal CSS.
957
- - Resolved the issue with the floating label when choose the value using `autofill` option in chrome browser.
958
-
959
- ## 16.2.48 (2018-08-14)
960
-
961
- ### NumericTextBox
962
-
963
- #### Bug Fixes
964
-
965
- - Issue with entering the text in numeric text box from Firefox browser has been fixed.
966
- - Resolved the issue in numeric text box that did not allow editing the value while using decimal value as 0.
967
-
968
- ### MaskedTextBox
969
-
970
- #### Bug Fixes
971
-
972
- - Resolved the issue with masked text box change event is triggered multiple times while changing the value dynamically.
973
- - Issue occurs while using chrome autofill functionality with masked text box component has been fixed.
974
-
975
- ## 16.2.47 (2018-08-07)
976
-
977
- ### MaskedTextBox
978
-
979
- #### Bug Fixes
980
-
981
- - Issue with setting the background color for masked text box has been fixed.
982
- - Issue with adding name attribute in the input element while creating masked text box without name attribute has been resolved.
983
-
984
- ### Slider
985
-
986
- #### Bug Fixes
987
-
988
- - Provided renderer support.
989
-
990
- ### ColorPicker
991
-
992
- #### Bug Fixes
993
-
994
- - Reactive forms with empty string value issue fixed.
995
-
996
-
997
- ## 16.2.44 (2018-07-10)
998
-
999
- ### NumericTextBox
1000
-
1001
- #### Bug Fixes
1002
-
1003
- - Unable to set higher values for min, max, and value properties of numeric text box issue has been fixed.
1004
-
1005
- ## 16.2.41 (2018-06-25)
1006
-
1007
- ### Common
1008
-
1009
- #### Breaking Changes
1010
-
1011
- - The splitbuttons package is used by ColorPicker component, so the splitbuttons package is a dependency for the inputs package.
1012
-
1013
- ### Form-validator
1014
-
1015
- #### New Features
1016
-
1017
- - Provided option to validate the hidden element by using `validateHidden` attribute.
1018
-
1019
- ### MaskedTextBox
1020
-
1021
- #### New Features
1022
-
1023
- - Provided option to show/hide clear button to reset the value in MaskedTextBox
1024
-
1025
- ### NumericTextBox
1026
-
1027
- #### New Features
1028
-
1029
- - Provided option to show/hide clear button to reset the value in NumericTextBox.
1030
- - Prevented to type unwanted text and symbols in NumericTextBox.
1031
-
1032
- ### Slider
1033
-
1034
- #### New Features
1035
-
1036
- - Limits implemented to limit movement interval of min and max values to certain range.
1037
- - Drag interval implemented to interact with the range slider by dragging the range.
1038
- - Provided to support custom value arrays.
1039
- - Bootstrap theme tooltip appearance improved by enabling tooltip pointer.
1040
-
1041
- #### Breaking Changes
1042
-
1043
- - The following API namings are renamed.
1044
-
1045
- | Existing API Name | New API Name |
1046
- |:-:|:-:|
1047
- | readOnly | readonly |
1048
-
1049
- ### ColorPicker
1050
-
1051
- Color picker is a user interface that is used to select and adjust color values.
1052
-
1053
-
1054
- - **Color specification**: Supports `Red Green Blue`, `Hue Saturation Value` and `Hex` codes.
1055
- - **Mode**: Supports `Picker` and `Palette` mode.
1056
- - **Inline**: Supports inline type rendering of color picker.
1057
- - **Custom palettes**: Allows you to customize palettes and supports multiple palette groups rendering.
1058
- - **Opacity**: Allows to set and change the `opacity` of the selected color.
1059
- - **Accessibility**: Built-in accessibility features to access color picker using the keyboard, screen readers, or other assistive technology devices.
1060
-
1061
- ### Uploader
1062
-
1063
- #### New Features
1064
-
1065
- - Added `chunked upload` support to upload large files asynchronously with `pause` and `resume` options.
1066
- - Support has been provided to resume automatically on failed chunk up to `maximum retry` options.
1067
- - Included option to handle `retry upload` through UI (User Interface).
1068
- - Support to `cancel the request` while uploading a file is added.
1069
-
1070
- #### Bug Fixes
1071
-
1072
- - Provided option to customize request header on trigger uploading and removing events.
1073
- - Provided option to add additional data in removing event.
1074
- - The issue with rendering Uploader component in internet explorer browser has been fixed.
1075
- - The issue with submitting single file upload's value has been fixed.
1076
-
1077
- ### TextBox
1078
-
1079
- #### New Features
1080
-
1081
- - The clear button can be enabled/disabled dynamically through `setClearButton` method.
1082
-
1083
- #### Bug Fixes
1084
-
1085
- - Theme compatibility issue resolved for CSS Input component.
1086
-
1087
- ## 16.1.45 (2018-05-23)
1088
-
1089
- ### Input
1090
-
1091
- #### Bug Fixes
1092
-
1093
- - Added `Focus` and `Blur` event arguments.
1094
-
1095
- ## 16.1.40 (2018-05-08)
1096
-
1097
- ### MaskedTextBox
1098
-
1099
- #### Bug Fixes
1100
-
1101
- - While copying a text and hold the “Ctrl + v” on the MaskedTextBox with number mask, value is not updating properly
1102
- - along with script error issue has been fixed.
1103
-
1104
- ## 16.1.38 (2018-05-02)
1105
-
1106
- ### NumericTextBox
1107
-
1108
- #### Bug Fixes
1109
-
1110
- - Now native events triggered properly in Angular NumericTextBox component.
1111
-
1112
- ## 16.1.37 (2018-04-24)
1113
-
1114
- ### NumericTextBox
1115
-
1116
- #### New Features
1117
-
1118
- - Provided clear button option in NumericTextBox.
1119
-
1120
- #### Bug Fixes
1121
-
1122
- - NumericTextBox is now aligned properly in inline element when `showSpinButton` property disabled.
1123
-
1124
- ## 16.1.35 (2018-04-17)
1125
-
1126
- ### MaskedTextBox
1127
-
1128
- #### Bug Fixes
1129
-
1130
- - While dynamically changing the MaskedTextBox value as null, value not updated properly issue is fixed.
1131
-
1132
- ## 16.1.28 (2018-03-09)
1133
-
1134
- ### NumericTextBox
1135
-
1136
- #### Bug Fixes
1137
-
1138
- - In NumericTextBox, unwanted “change” events has been prevented from triggering.
1139
-
1140
- ## 16.1.24 (2018-02-22)
1141
-
1142
- ### Uploader
1143
-
1144
- ```
1145
- The Uploader component is useful to upload images, documents, and other files to server.
1146
- ```
1147
-
1148
- The component is extended version of HTML5 upload with multiple file selection, auto upload,
1149
- drag and drop, progress bar, preload files, and validation.
1150
-
1151
-
1152
- - The available key features are
1153
- - **Asynchronous Upload** - Allows you to upload the files with asynchronous way.
1154
- - **Drag and Drop** - The files can be dragged from file explorer, and dropping into the drop area.
1155
- - **Form Supports** - The selected or dropped files are received as a collection in a form action when the form is submitted.
1156
- - **File Validation** - Validate the files based on file's size and type.
1157
- - **Template** - Allows you to customize the default appearance of `Uploader`.
1158
- - **Accessibility** - provides built-in accessibility support which helps to access all the `Uploader` features through keyboard, on-screen readers, or other assistive technology devices.
1159
-
1160
- ### TextBox
1161
-
1162
- #### Bug Fixes
1163
-
1164
- - Fixed the input alignment issue in the window 8.1 edge browser.
1165
- - Removed the additional spaces for error messages on the input.
1166
-
1167
- ### Slider
1168
-
1169
- The Slider component allows the user to select a value or range of values in-between the min and max range, by dragging the handle over the slider bar.
1170
-
1171
-
1172
- There are three types of Slider:
1173
-
1174
-
1175
- - `Default` - Shows a default slider to select a single value.
1176
- - `MinRange` - Displays fill color from the start value to the current selected value.
1177
- - `Range` - Select a range of values.
1178
-
1179
- The available key features are
1180
-
1181
-
1182
- - **Types**: Provided three types of Slider.
1183
- - **Orientation**: Displays the Slider in horizontal or vertical direction.
1184
- - **Buttons**: Provided built-in support to render the buttons in both edges of the Slider.
1185
- - **Tooltip**: Displays a tooltip to show the currently selected value.
1186
- - **Ticks**: Displays a scale with small and big ticks.
1187
- - **Format**: Customize the slider values into various format.
1188
- - **Accessibility**: Built-in compliance with the [`WAI-ARIA`](http://www.w3.org/WAI/PF/aria-practices/) specifications.
1189
- - **Keyboard Interaction**: The Slider can be intractable through the keyboard.
1190
-
1191
- ## 15.4.29-preview (2018-02-07)
1192
-
1193
- ### MaskedTextBox
1194
-
1195
- #### Bug Fixes
1196
-
1197
- - While set floatLabelType property as "Never", the placeholder not shown issue has been fixed
1198
- - While set floatLabelType property as "Auto", the value becomes "undefined" at two-way binding issue has been fixed
1199
- - While setting escape sequence in mask format, value is not updated properly issue has been fixed
1200
- - Cursor is not positioned properly while focusing the MaskedTextBox issue has been fixed
1201
-
1202
- ## 15.4.24-preview (2018-01-10)
1203
-
1204
- ### MaskedTextBox
1205
-
1206
- #### Bug Fixes
1207
-
1208
- - Value not maintained properly in the MaskedTextBox two-way binding
1209
-
1210
- ## 15.4.23-preview (2017-12-27)
1211
-
1212
- ### Common
1213
-
1214
- #### New Features
1215
-
1216
- - Added typing file for ES5 global scripts (dist/global/index.d.ts)
1217
-
1218
- #### Breaking Changes
1219
-
1220
- - Modified the module bundle file name for ES6 bundling
1221
-
1222
- ## 15.4.21-preview (2017-12-08)
1223
-
1224
- ### FormValidator
1225
-
1226
- #### Bug Fixes
1227
-
1228
- - **IE11** - Recursive call on form reset.
1229
-
1230
- ### TextBox
1231
-
1232
- #### Bug Fixes
1233
-
1234
- - Height mismatch between input and input with icon issue has fixed.
1235
-
1236
- ## 15.4.20-preview (2017-12-01)
1237
-
1238
- ### Common
1239
-
1240
- #### New Features
1241
-
1242
- - Upgraded TypeScript version to 2.6.2.
1243
-
1244
- ## 15.4.17-preview (2017-11-13)
1245
-
1246
- ### TextBox
1247
-
1248
- TextBox is an input element that allows to get input from the user. It allows the user to edit or display the text value.
1249
-
1250
-
1251
- - **Groups** - Supports to group the icon element with the input
1252
- - **Floating Label** - Added option to float label always, float label on focus, and disable floating support in the input element.
1253
- - **Clear Button** - Provided option to show/hide clear button to reset the value in input element.
1254
- - **Validation States** - Provided option to indicate success, error, and warning states.
1255
-
1256
- ### NumericTextBox
1257
-
1258
- NumericTextBox is used to get the number inputs from the user. The input values can be incremented or decremented by a predefined step value. The available key features are
1259
-
1260
-
1261
- - **Range Validation** - allows to set the minimum and maximum range of values in the NumericTextBox.
1262
- - **Number Formats** - supports the number display formatting with MSDN standard and custom number formats.
1263
- - **Precision Of Numbers** - allows to restrict the number precision when enters the value.
1264
- - **Keyboard Interaction** - allows users to interact with the NumericTextBox using the keyboard.
1265
- - **Accessibility** - provides built-in accessibility support which helps to access all the NumericTextBox component features through keyboard, on-screen readers or other assistive technology devices.
1266
- - **Internationalization** - library provides support for formatting and parsing number using the official Unicode CLDR JSON data.
1267
- - **Localization** - Supports to localize spin up and down buttons title for the tooltip to different cultures.
1268
-
1269
- ### MaskedTextBox
1270
-
1271
- MaskedTextBox allows the user to enter the valid input only based on the provided mask. The available key features are
1272
-
1273
-
1274
- - **Custom Characters** - allows you to use your own characters as the mask elements.
1275
- - **Regular Expression** - can be used as a mask element for each character of the MaskedTextBox.
1276
- - **Accessibility** - provides built-in accessibility support which helps to access all the MaskedTextBox component features through keyboard, on-screen readers, or other assistive technology devices.
1277
-
1278
-
1279
- ## 19.3.47 (2021-10-26)
1280
-
1281
- ### TextBox
1282
-
1283
- #### Bug Fixes
1284
-
1285
- - `#FB29286` - Issue with "return the wrong value in the blur event argument while clearing the value using static clear button" has been resolved.
1286
-
1287
- ## 19.1.66 (2021-06-01)
1288
-
1289
- ### NumericTextBox
1290
-
1291
- #### Bug Fixes
1292
-
1293
- - `#I323536` - Issue with "typed value is changed to positive while typing negative value starting with decimal separator" has been resolved.
1294
-
1295
- ## 19.1.63 (2021-05-13)
1296
-
1297
- ### Uploader
1298
-
1299
- #### Bug Fixes
1300
-
1301
- - `#I325682` - Issue with "exception throws in the customized uploader component when cancel the uploading process using abort icon" has been resolved.
1302
-
1303
- ## 19.1.57 (2021-04-20)
1304
-
1305
- ### MaskedTextBox
1306
-
1307
- #### Bug Fixes
1308
-
1309
- - `#FB23988` - Issue with "blur event gets fired on initial rendering when render the component with placeholder" has been resolved.
1310
-
1311
- ## 18.4.41 (2021-02-02)
1312
-
1313
- ### Uploader
1314
-
1315
- #### Bug Fixes
1316
-
1317
- - `#F161379` - Issue with "drag and drop highlight is flickered when render uploader with custom drop area" has been resolved.
1318
-
1319
- ## 18.4.33 (2021-01-05)
1320
-
1321
- ### MaskedTextBox
1322
-
1323
- #### Bug Fixes
1324
-
1325
- - `#307344` - Issue with "delete key allows to remove only one character from the input while placing cursor between characters" has been resolved.
1326
-
1327
- ## 18.4.31 (2020-12-22)
1328
-
1329
- ### TextBox
1330
-
1331
- #### Bug Fixes
1332
-
1333
- - `#305784` - Issue with "clear icon is not visible until typing a valid email on the email input" has been resolved.
1334
-
1335
- ## 18.4.30 (2020-12-17)
1336
-
1337
- ### NumericTextBox
1338
-
1339
- #### Bug Fixes
1340
-
1341
- - `#300140`- Issue with "form invalid status is not updated properly while clearing the value" has been resolved.
1342
-
1343
- ## 18.3.51 (2020-11-24)
1344
-
1345
- ### NumericTextBox
1346
-
1347
- #### Bug Fixes
1348
-
1349
- - `#300567`, `#299294`- Issue with "dirty and pristine is not updated properly while resetting the form with values" has been resolved.
1350
- - `#300140` - Now, Numeric textbox model value will update on every key press.
1351
-
1352
- #### Breaking Changes
1353
-
1354
- - While setting the numerictextbox value programmatically, the `change` event will not trigger.
1355
-
1356
- ### MaskedTextBox
1357
-
1358
- #### Bug Fixes
1359
-
1360
- - `#300567`, `#299294`- Issue with "dirty and pristine is not updated properly while resetting the form with values" has been resolved.
1361
-
1362
- #### Breaking Changes
1363
-
1364
- - While setting the maskedtextbox value programmatically, the `change` event will not trigger.
1365
-
1366
- ### Uploader
1367
-
1368
- #### Bug Fixes
1369
-
1370
- - `#299942`, `#300515` - Now, you can add the additional form data in canceling event.
1371
-
1372
- ## 18.3.42 (2020-10-20)
1373
-
1374
- ### Uploader
1375
-
1376
- #### Bug Fixes
1377
-
1378
- - `#287079` - Issue with "file is removed from UI while providing the invalid remove URL" has been resolved.
1379
-
1380
- ## 18.2.56 (2020-09-01)
1381
-
1382
- ### Uploader
1383
-
1384
- #### Bug Fixes
1385
-
1386
- `#286772` - Issue with "wrong files get removed from file list when multiple time upload the same files " has been resolved.
1387
-
1388
-
1389
- ## 18.2.47 (2020-07-28)
1390
-
1391
- ### Uploader
1392
-
1393
- #### Bug Fixes
1394
-
1395
- - `#276502` - Issue with "sequential upload is not working with custom upload button" has been resolved.
1396
-
1397
- ## 18.2.45 (2020-07-14)
1398
-
1399
- ### FormValidator
1400
-
1401
- #### Bug Fixes
1402
-
1403
- - `#283063`, `#283067`, `#283061` - Now, required field validation works properly for date picker component.
1404
-
1405
- ## 18.1.54 (2020-05-26)
1406
-
1407
- ### Uploader
1408
-
1409
- #### New Features
1410
-
1411
- - `#248615`, `#F147072` - Now, you can disable the drag and drop upload using `dropArea` property.
1412
-
1413
- ## 18.1.45 (2020-04-21)
1414
-
1415
- ### MaskedTextBox
1416
-
1417
- #### Bug Fixes
1418
-
1419
- - Issue with "character missing in the masked textbox while pasting the value" has been resolved.
1420
-
1421
- ## 17.4.50 (2020-02-18)
1422
-
1423
- ### MaskedTextBox
1424
-
1425
- #### Bug Fixes
1426
-
1427
- - `#262338` - Now, the masked textbox does not get `automatic focus` when rendered with mask in the `IOS device`.
1428
-
1429
- ## 17.4.47 (2020-02-05)
1430
-
1431
- ### Uploader
1432
-
1433
- #### Bug Fixes
1434
-
1435
- - `#259967` - Issue with "script throws while rendering uploader inside toolbar with routing action" has been resolved.
1436
-
1437
- ## 17.1.42 (2019-04-23)
1438
-
1439
- ### TextBox
1440
-
1441
- #### Bug Fixes
1442
-
1443
- - #143987 - Issue with duplicate ID present in input element has been fixed.
1444
-