@syncfusion/ej2-angular-inputs 29.1.33-ngcc → 29.1.34

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