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

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