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

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