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

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