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

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