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

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