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

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