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

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