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

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