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

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