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

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