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

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