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

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