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

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