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

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