forked from primefaces/primeng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG_ARCHIVE.md
4950 lines (3965 loc) · 395 KB
/
CHANGELOG_ARCHIVE.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Changelog
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [10.1.5-LTS](https://www.npmjs.com/package/primeng-lts/v/10.1.5) (2021-11-11)
- The escape property does not work for label in Slide Menu component [\#10827](https://github.com/primefaces/primeng/issues/10827)
- Dropdown | autoDisplayFirst not update value of dropdown [\#10768](https://github.com/primefaces/primeng/issues/10768)
- If appendTo property of confirmDialog is set, defaultFocus doesn't work [\#10722](https://github.com/primefaces/primeng/issues/10722)
- Filtered Dropdown unusable on Windows Tablet [\#10648](https://github.com/primefaces/primeng/issues/10648)
- Extra space between MultiSelect and filter list [\#10644](https://github.com/primefaces/primeng/issues/10644)
- Dropdown - scroll to selected item [\#10346](https://github.com/primefaces/primeng/issues/10346)
- Table frozen columns not working with colresize expand mode [\#10310](https://github.com/primefaces/primeng/issues/10310)
- 10286 for ColorPicker [\#10309](https://github.com/primefaces/primeng/issues/10309)
- FileUpload - long filename [\#10275](https://github.com/primefaces/primeng/issues/10275)
- Sidebar wrong animation and close button display [\#10261](https://github.com/primefaces/primeng/issues/10261)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [10.1.4-LTS](https://www.npmjs.com/package/primeng-lts/v/10.1.4) (2021-10-18)
- float-label chips problem [\#10725](https://github.com/primefaces/primeng/issues/10725)
- pButton Directive throws error when label is set when async pipe [\#10719](https://github.com/primefaces/primeng/issues/10719)
- p-radioButton causes layout issues when used inside an overflow: auto div [\#10718](https://github.com/primefaces/primeng/issues/10718)
- float-label pInputText problem [\#10716](https://github.com/primefaces/primeng/issues/10716)
- Thumbnails are not displayed correctly on Galleria if numVisible is greater than the length of value [\#10594](https://github.com/primefaces/primeng/issues/10594)
- Improve resize feature of Dialog [\#10465](https://github.com/primefaces/primeng/issues/10465)
- A maximizable dialog cannot be maximized properly after its size or position has been changed [\#10464](https://github.com/primefaces/primeng/issues/10464)
- Unsubscription error when running any default component test using Steps [\#10379](https://github.com/primefaces/primeng/issues/10379)
- FileUpload Size Calculation is wrong [\#10369](https://github.com/primefaces/primeng/issues/10369)
- p-checkbox causes layout issues when used inside an overflow: auto div [\#9725](https://github.com/primefaces/primeng/issues/9725)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [10.1.3-LTS](https://www.npmjs.com/package/primeng-lts/v/10.1.3) (2021-10-05)
- Improve scrollbar style on BreadCrumb and TabMenu [\#10698](https://github.com/primefaces/primeng/issues/10698)
- Disable the navigation helpers when paginator empty [\#10661](https://github.com/primefaces/primeng/issues/10661)
- Tooltip: word wrap [\#10647](https://github.com/primefaces/primeng/issues/10647)
- Responsive TabMenu and Breadcrumb [\#10338](https://github.com/primefaces/primeng/issues/10338)
- Dropdown selecting disabled option throws error using keyboard arrows [\#10252](https://github.com/primefaces/primeng/issues/10252)
- Sidebar - ngOnDestory throws an exception [\#10247](https://github.com/primefaces/primeng/issues/10247)
- p-dropdown float label overlaps input when selected value is 0 [\#10245](https://github.com/primefaces/primeang/issues/10245)
- Header and Footer Template for AutoComplete [\#10159](https://github.com/primefaces/primeang/issues/10159)
- p-disabled class missing on p-button [\#10140](https://github.com/primefaces/primeang/issues/10140)
- first in currentPageReportTemplate always resolves to "1" even when no rows match [\#9002](https://github.com/primefaces/primeang/issues/9002)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [10.1.2-LTS](https://www.npmjs.com/package/primeng-lts/v/10.1.2) (2021-05-07)
- showNavigator and showIndicator support for Carousel [\#10208](https://github.com/primefaces/primeng/issues/10208)
- IndicatorStyle and IndicatorStyleClass support for Carousel [\#10207](https://github.com/primefaces/primeng/issues/10207)
- p-editor - HTML binding fails [\#10182](https://github.com/primefaces/primeng/issues/10182)
- p-dropdown with editable=true and floating labels results in incorrect behavior with manually entered values [\#10170](https://github.com/primefaces/primeng/issues/10170)
- Footer gets misaligned when used with calendar's inline mode [\#10130](https://github.com/primefaces/primeng/issues/10130)
- Dropdown selecting an unwanted option when pressing Windows key on the keyboard [\#10113](https://github.com/primefaces/primeng/issues/10113)
- Facing accessibility-related issues with primeNg controls and AXE tools. [\#9834](https://github.com/primefaces/primeng/issues/9834)
- Radio buttons do not get unselected on the same group, with Reactive Forms using formControl instead of formControlName [\#9631](https://github.com/primefaces/primeng/issues/9631)
- Hovering on timepicker arrows acting like select after clicking an arrow in the time picker [\#8961](https://github.com/primefaces/primeng/issues/8961)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [10.1.1-LTS](https://www.npmjs.com/package/primeng-lts/v/10.1.1) (2021-04-13)
- p-tree event.accept() not available on first drop [\#10093](https://github.com/primefaces/primeng/issues/10093)
- p-table with save state (localstorage/sessionstorage) remember old value after delete from filter [\#10065](https://github.com/primefaces/primeng/issues/10065)
- Accessibility: Typo in aria attribute valuemin for InputNumber [\#10058](https://github.com/primefaces/primeng/issues/10058)
- Carousel does not always display dynamically added items [\#10051](https://github.com/primefaces/primeng/issues/10051)
- MenuItem's style and styleClass properties should be apply to li [\#10045](https://github.com/primefaces/primeng/issues/10045)
- AutoComplete does not display 0 as value when preselected [\#10031](https://github.com/primefaces/primeng/issues/10031)
- Calendar: WeekNumber looks like it is selectable [\#9746](https://github.com/primefaces/primeng/issues/9746)
- Menubar menuitems must have menu/menubar as parent [\#9680](https://github.com/primefaces/primeng/issues/9680)
- AutoComplete does not display 0 as value [\#9628](https://github.com/primefaces/primeng/issues/9628)
- When no label is assigned to pButton, the button should not render [\#9482](https://github.com/primefaces/primeng/issues/9482)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [10.1.0-LTS](https://www.npmjs.com/package/primeng-lts/v/10.1.0) (2021-03-16)
- First node dropped into empty tree not triggering onNodeDrop [\#9991](https://github.com/primefaces/primeng/issues/9991)
- Changing captcha language does not work [\#9985](https://github.com/primefaces/primeng/issues/9985)
- Defer directive throws ExpressionChangedAfterItHasBeenCheckedError if visible from the beginning [\#9984](https://github.com/primefaces/primeng/issues/9984)
- Chips disabled not working when using with comma [\#9958](https://github.com/primefaces/primeng/issues/9958)
- Disabled p-inputNumber updated after pasting from clipboard [\#9957](https://github.com/primefaces/primeng/issues/9957)
- Unable to access tab menu using keyboard [\#9954](https://github.com/primefaces/primeng/issues/9954)
- OverlayPanel not working unless ShareModule is imported as well [\#9927](https://github.com/primefaces/primeng/issues/9927)
- Galleria: thumbnail items doesn't work properly when responsive options are set [\#9744](https://github.com/primefaces/primeng/issues/9744)
- Autocomplete with multiple and readonly enabled still show button to remove options [\#9513](https://github.com/primefaces/primeng/issues/9513)
- p-dataView not updating view after [layout] change [\#9494](https://github.com/primefaces/primeng/issues/9494)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [10.0.9-LTS](https://www.npmjs.com/package/primeng-lts/v/10.0.9) (2021-03-01)
- When table is lazy and having multiSortMeta then "lazyLoad" execute twice [\#9906](https://github.com/primefaces/primeng/issues/9906)
- p-dialog draggable with maximize [\#9899](https://github.com/primefaces/primeng/issues/9899)
- pSelectableRow blocks typing space on inputs in p-table [\#9893](https://github.com/primefaces/primeng/issues/9893)
- p-inputnumber infinite loop when using buttons [\#9888](https://github.com/primefaces/primeng/issues/9888)
- Enter key should hide calendar [\#9880](https://github.com/primefaces/primeng/issues/9880)
- p-sidebar appendTo has wrong type [\#9876](https://github.com/primefaces/primeng/issues/9876)
- p-slider does not react when clicking on bar in some cases [\#9857](https://github.com/primefaces/primeng/issues/9857)
- Add rowIndex to onRowUnselect [\#9823](https://github.com/primefaces/primeng/issues/9823)
- Expose InputMask OnKeyDown event [\#9718](https://github.com/primefaces/primeng/issues/9718)
- p-table cell edit wrong index on onEditComplete event [\#9075](https://github.com/primefaces/primeng/issues/9075)
- Update Editor Custom Toolbar Documentation [\#8905](https://github.com/primefaces/primeng/issues/8905)
- ConfirmDialog throws exception during onDestroy [\#8585](https://github.com/primefaces/primeng/issues/8585)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [10.0.8-LTS](https://www.npmjs.com/package/primeng-lts/v/10.0.8) (2021-02-11)
- LazyEvent.first coming wrong when sorting with resetPageOnSort true [\#9866](https://github.com/primefaces/primeng/issues/9866)
- Adding [multiSortMeta] to the table causes an extra initial call to fetch data in virtual scroll [\#9854](https://github.com/primefaces/primeng/issues/9854)
- TabPanel's leftIcon and rightIcon properties not working with programmatic change [\#9844](https://github.com/primefaces/primeng/issues/9844)
- Row not selected when using the Table contextMenuSelectionMode="joint" [\#9824](https://github.com/primefaces/primeng/issues/9824)
- Strange behavior using context menu on Safari [\#9814](https://github.com/primefaces/primeng/issues/9814)
- Table onRowSelect calling before the selection change [\#9806](https://github.com/primefaces/primeng/issues/9806)
- The up and down arrow key stops working by the virtualscroller [\#9805](https://github.com/primefaces/primeng/issues/9805)
- Space key causes scroll the browser when using Table selection [\#9804](https://github.com/primefaces/primeng/issues/9804)
- Messages 2way binding is not working [\#9623](https://github.com/primefaces/primeng/issues/9623)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [10.0.7-LTS](https://www.npmjs.com/package/primeng-lts/v/10.0.7) (2021-01-12)
- shiftKey invokes onRowSelect multiple times [\#9747](https://github.com/primefaces/primeng/issues/9747)
- Basic uploader button visual issue [\#9711](https://github.com/primefaces/primeng/issues/9711)
- Table not restoring columns when using virtualscroll [\#9708](https://github.com/primefaces/primeng/issues/9708)
- Toast message icon is not styled [\#9702](https://github.com/primefaces/primeng/issues/9702)
- Float label not working when clearing input on AutoComplete and TextArea [\#9688](https://github.com/primefaces/primeng/issues/9688)
- TabView Header does not update until clicking elsewhere [\#9685](https://github.com/primefaces/primeng/issues/9685)
- p-editor automatically gains focus when intializing model with data [\#9664](https://github.com/primefaces/primeng/issues/9664)
- Lazy loaded tabpanel content loading eagerly when selected input is present [\#9613](https://github.com/primefaces/primeng/issues/9613)
- P-Table with VirtualScroll only header is resizing [\#9598](https://github.com/primefaces/primeng/issues/9598)
- Resizable columns with virtual scroll doesn't work with p-treeTable [\#9575](https://github.com/primefaces/primeng/issues/9575)
- Wrong documentation for controlCase on TabView [\#9490](https://github.com/primefaces/primeng/issues/9490)
- Treetable column resize breaks when columnResizeMode="expand" in combination with [virtualScroll]="true" [\#9202](https://github.com/primefaces/primeng/issues/9202)
- p-treeTable with VirtualScroll only header is resizing [\#9170](https://github.com/primefaces/primeng/issues/9170)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [10.0.6-LTS](https://www.npmjs.com/package/primeng-lts/v/10.0.6) (2020-12-09)
- Checkbox getting highlight when Tree item disabled [\#9619](https://github.com/primefaces/primeng/issues/9619)
- ConfirmDialog top-left top-right bottom-left bottom-right positions not working [\#9612](https://github.com/primefaces/primeng/issues/9612)
- InputTextArea, FloatLabel and Initial State [\#9607](https://github.com/primefaces/primeng/issues/9607)
- Not all the selected items are visible in an autocomplete with multiple="true" [\#9602](https://github.com/primefaces/primeng/issues/9602)
- Change mouse cursor on drag&drop events [\#9536](https://github.com/primefaces/primeng/issues/9536)
- p-calendar: Pressing Enter key on prev or next month arrows calls onPrevButtonClick or onNextButtonClick twice respectively [\#9521](https://github.com/primefaces/primeng/issues/9521)
- Carousel does not respond to change to numVisible [\#9049](https://github.com/primefaces/primeng/issues/9049)
- Add a maximize event on dialog [\#8861](https://github.com/primefaces/primeng/issues/8861)
- Carousel doesn't use 'responsiveOptions' on init [\#8833](https://github.com/primefaces/primeng/issues/8833)
- onShow and onHide event for colorPicker [\#8828](https://github.com/primefaces/primeng/issues/8828)
- ConfirmDialog does not support dismissableMask [\#8791](https://github.com/primefaces/primeng/issues/8791)
- ConfirmationService does not let specify closeOnEscape [\#8790](https://github.com/primefaces/primeng/issues/8790)
- Dialog.onShow should occur when the animation ends [\#8747](https://github.com/primefaces/primeng/issues/8747)
- p-colorPicker not working | Failing on click [\#8746](https://github.com/primefaces/primeng/issues/8746)
- [Bug] Carousel displays last page when circular=true [\#8739](https://github.com/primefaces/primeng/issues/8739)
- [Bug] Carousel does not recalculate the number of dots on refresh [\#8705](https://github.com/primefaces/primeng/issues/8705)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [10.0.5-LTS](https://www.npmjs.com/package/primeng-lts/v/10.0.5) (2020-11-24)
- Galleria Indicators aren't displayed in Firefox [\#9537](https://github.com/primefaces/primeng/issues/9537)
- Popup TieredMenu not closing when click on leaf [\#9534](https://github.com/primefaces/primeng/issues/9534)
- ContextMenu Keyboard Controls does not prevent Tree Keyboard Controls [\#9529](https://github.com/primefaces/primeng/issues/9529)
- Table stored state does not match current columns [\#9510](https://github.com/primefaces/primeng/issues/9510)
- Add keyboard support to ContextMenu [\#9499](https://github.com/primefaces/primeng/issues/9499)
- DOM Exception trigger with ButtonDirective afterViewInit [\#9497](https://github.com/primefaces/primeng/issues/9497)
- p-accordion with lazy loaded content doesnt load when opened programattically [\#9496](https://github.com/primefaces/primeng/issues/9496)
- scrollHeight doesn't change dynamically when using virtualScroll [\#9489](https://github.com/primefaces/primeng/issues/9489)
- p-calendar Dynamic default date [\#9479](https://github.com/primefaces/primeng/issues/9479)
- Align contextmenu menu behavior with menubar [\#9459](https://github.com/primefaces/primeng/issues/9459)
- TieredMenu initial hover is broken [\#9458](https://github.com/primefaces/primeng/issues/9458)
- Visibility option for Paginator's first and last page icons [\#9456](https://github.com/primefaces/primeng/issues/9456)
- Dropdown Item template support for Paginator [\#9455](https://github.com/primefaces/primeng/issues/9455)
- Customizable Toast and Messages [\#9454](https://github.com/primefaces/primeng/issues/9454)
- TieredMenu Keyboard Support [\#9451](https://github.com/primefaces/primeng/issues/9451)
- OverlayPanel target arrow points to the wrong position when target is on the right edge of the screen [\#9441](https://github.com/primefaces/primeng/issues/9441)
- The up and down arrow key stops working by the table virtualscrolling [\#9437](https://github.com/primefaces/primeng/issues/9437)
- pRipple working when disabled(etc menuitem) [\#9406](https://github.com/primefaces/primeng/issues/9406)
- Galleria thumbnailsPosition top and left don't work [\#9381](https://github.com/primefaces/primeng/issues/9381)
- Table lazy virtual scroll triggers multiple separate calls to onLazyLoad() function [\#9316](https://github.com/primefaces/primeng/issues/9316)
- wrong behavior of Dialog.maskClickListener [\#9282](https://github.com/primefaces/primeng/issues/9282)
- Model driven forms support for RadioButton [\#9162](https://github.com/primefaces/primeng/issues/9162)
- Accessibility: Dialog close button needs aria- label [\#8947](https://github.com/primefaces/primeng/issues/8947)
## [10.0.3](https://github.com/primefaces/primeng/tree/10.0.3) (2020-10-08)
[Full Changelog](https://github.com/primefaces/primeng/compare/10.0.2...10.0.3)
**Implemented New Features and Enhancements:**
- Tooltip doesn't close in scrollable containers [\#9353](https://github.com/primefaces/primeng/issues/9353)
**Fixed bugs:**
- Align tiered menu behavior with menubar [\#9379](https://github.com/primefaces/primeng/issues/9379)
- Listbox disabled visuals broken [\#9377](https://github.com/primefaces/primeng/issues/9377)
- SplitButton menu animation not aligned with rest of the overlays [\#9376](https://github.com/primefaces/primeng/issues/9376)
- Primeng 10 breadcrumb doesn't set p-disabled class for disabled menuitems [\#9374](https://github.com/primefaces/primeng/issues/9374)
- Problems when typing or pasting numbers into InputNumber [\#9372](https://github.com/primefaces/primeng/issues/9372)
- If virtual scroll property is enabled, Tree nodes are rendering with no hierarchy even if nested/children nodes are available [\#9368](https://github.com/primefaces/primeng/issues/9368)
- tabView: progomatically changing tabPanel disabled does not have visual affect until tabs are clicked [\#9367](https://github.com/primefaces/primeng/issues/9367)
- Table Keyboard metaSelections not working [\#9366](https://github.com/primefaces/primeng/issues/9366)
- Table arrow keys not working [\#9365](https://github.com/primefaces/primeng/issues/9365)
- InputNumber cannot set value when format property is false [\#9364](https://github.com/primefaces/primeng/issues/9364)
- Table MetaKeySelection Demo not working with shift [\#9363](https://github.com/primefaces/primeng/issues/9363)
- Accordion activeIndex not affecting manually opened tabs, those tabs get in confused state. [\#9355](https://github.com/primefaces/primeng/issues/9355)
- P-autoComplete component not showing the values in Primeng version 10.0.1 [\#9352](https://github.com/primefaces/primeng/issues/9352)
- onDropdownClick not working on Splitbutton in PrimeNG v10 [\#9351](https://github.com/primefaces/primeng/issues/9351)
- DialogService onclose event not fired when you click close button after v9.0.3\(include\) [\#9345](https://github.com/primefaces/primeng/issues/9345)
- InputNumber with spinner mode throws a JS exception [\#9337](https://github.com/primefaces/primeng/issues/9337)
- Angular PrimeNG FocusTrap Tabbing Fix Issue [\#9332](https://github.com/primefaces/primeng/issues/9332)
- p-calendar combination \[showIcon\]="true" \[showOnFocus\]="false" produces an error on using tab-key [\#9257](https://github.com/primefaces/primeng/issues/9257)
- Multiple DynamicDialogs are not closing programmatically [\#8801](https://github.com/primefaces/primeng/issues/8801)
## [10.0.2](https://github.com/primefaces/primeng/tree/10.0.2) (2020-10-01)
[Full Changelog](https://github.com/primefaces/primeng/compare/10.0.1...10.0.2)
**Fixed bugs:**
- Invalid falsey value in menu components [\#9349](https://github.com/primefaces/primeng/issues/9349)
- ColumnResize not working with Table VirtualScroll [\#9347](https://github.com/primefaces/primeng/issues/9347)
- Galleria navigator icons not showing on Bootstrap Ligh [\#9343](https://github.com/primefaces/primeng/issues/9343)
## [10.0.1](https://github.com/primefaces/primeng/tree/10.0.1) (2020-09-30)
[Full Changelog](https://github.com/primefaces/primeng/compare/10.0.0...10.0.1)
**Implemented New Features and Enhancements:**
- RTL support for Steps [\#3774](https://github.com/primefaces/primeng/issues/3774)
- Lighter Highlight Color for PrimeOne Themes [\#9333](https://github.com/primefaces/primeng/issues/9333)
- Improvement in behavior of components that have overlay panels in scrollable containers [\#9324](https://github.com/primefaces/primeng/issues/9324)
- Add inputId to table radio and checkbox components [\#9225](https://github.com/primefaces/primeng/issues/9225)
- Html support for Menu Components [\#4370](https://github.com/primefaces/primeng/issues/4370)
- Typed TreeNode and SelectItem [\#2876](https://github.com/primefaces/primeng/issues/2876)
**Fixed bugs:**
- DataTable style classes documentation is wrong [\#9336](https://github.com/primefaces/primeng/issues/9336)
- Fullcalendar button styling issues [\#9334](https://github.com/primefaces/primeng/issues/9334)
- TabView-Accordion changes due to \*ngIf do not take place [\#9331](https://github.com/primefaces/primeng/issues/9331)
- Alignment issue on Scrollable Datatable [\#9326](https://github.com/primefaces/primeng/issues/9326)
- Alignment issue on Scrollable TreeTable [\#9325](https://github.com/primefaces/primeng/issues/9325)
- TabView tab close does not work when using ripple effect with PrimeNG 10 [\#9323](https://github.com/primefaces/primeng/issues/9323)
- Dynamic scrollHeight support for Table/Tree Virtual Scrolling [\#9322](https://github.com/primefaces/primeng/issues/9322)
- Typo in InputNumber documentation: maxFracionDigits [\#9315](https://github.com/primefaces/primeng/issues/9315)
- After upgrading from 9 to 10 frozen columns ceased to be synchronized with scrollable columns in case on virtual scroll [\#9294](https://github.com/primefaces/primeng/issues/9294)
- TreeTable openCell\(\) not working [\#9279](https://github.com/primefaces/primeng/issues/9279)
- InputNumber: css issue for ng-invalid [\#9271](https://github.com/primefaces/primeng/issues/9271)
- Ripple not working on IE [\#9268](https://github.com/primefaces/primeng/issues/9268)
- Dialog with Long Content does not scroll in IE11 [\#9255](https://github.com/primefaces/primeng/issues/9255)
- VirtualScroll ExpressionChangedAfterItHasBeenCheckedError on TreeTable [\#9254](https://github.com/primefaces/primeng/issues/9254)
- Items in PanelMenu are highlighted wrongly with Material dark themes [\#9253](https://github.com/primefaces/primeng/issues/9253)
## [10.0.0](https://github.com/primefaces/primeng/tree/10.0.0) (2020-09-07)
[Full Changelog](https://github.com/primefaces/primeng/compare/10.0.0-rc.4...10.0.0)
**Implemented New Features and Enhancements:**
- Progress Spinner doesn't have a customization example [\#9232](https://github.com/primefaces/primeng/issues/9232)
- Trigger onClose event when click close button in the DynamicDialog [\#9083](https://github.com/primefaces/primeng/issues/9083)
**Fixed bugs:**
- 10.0.0-rc.4 accordion displays error message in browser developer tool [\#9244](https://github.com/primefaces/primeng/issues/9244)
- InputNumber gets dirty but not touched [\#9239](https://github.com/primefaces/primeng/issues/9239)
- UI doesn't update when control is disabled via Reactive Forms [\#9233](https://github.com/primefaces/primeng/issues/9233)
- InputNumber: overwriting doesn't work correctly [\#9229](https://github.com/primefaces/primeng/issues/9229)
- inputNumber with numeric prefix is not working as expected [\#9125](https://github.com/primefaces/primeng/issues/9125)
## [10.0.0-rc.4](https://github.com/primefaces/primeng/tree/10.0.0-rc.4) (2020-09-02)
[Full Changelog](https://github.com/primefaces/primeng/compare/10.0.0-rc.3...10.0.0-rc.4)
**Implemented New Features and Enhancements:**
- css theme body prefix makes primeng not compatible with shadowdom [\#8756](https://github.com/primefaces/primeng/issues/8756)
- Prevent virtual device calendar on touchUI mode [\#9226](https://github.com/primefaces/primeng/issues/9226)
- Add onInput event to InputNumber [\#9223](https://github.com/primefaces/primeng/issues/9223)
- Add PrimeFlex Setup Documentation [\#9222](https://github.com/primefaces/primeng/issues/9222)
- InputNumber: pasting doesn't work correctly [\#9219](https://github.com/primefaces/primeng/issues/9219)
- Scrollable Table alignment improvement [\#9218](https://github.com/primefaces/primeng/issues/9218)
- Improved visuals for empty message in dropdown and multiselect [\#9217](https://github.com/primefaces/primeng/issues/9217)
- jumpToPageDropdown and showPageLinks for Paginator [\#9213](https://github.com/primefaces/primeng/issues/9213)
- Add style and styleClass to message component [\#9212](https://github.com/primefaces/primeng/issues/9212)
- Use `el.ownerDocument.activeElement` where possible, instead of `document.activeElement` [\#9181](https://github.com/primefaces/primeng/issues/9181)
- Enhance Steps RouterNavigation [\#9174](https://github.com/primefaces/primeng/issues/9174)
- fileUpload chooseIcon always set to default in mode="basic" [\#9173](https://github.com/primefaces/primeng/issues/9173)
- StepsDemo Update [\#9171](https://github.com/primefaces/primeng/issues/9171)
- Sort and Filter support for VirtualScrolling [\#9154](https://github.com/primefaces/primeng/issues/9154)
- Improve calendar tabbing behavior [\#9139](https://github.com/primefaces/primeng/issues/9139)
- Pass files to fileupload content template [\#9121](https://github.com/primefaces/primeng/issues/9121)
- Add Del key support to InputNumber [\#8981](https://github.com/primefaces/primeng/issues/8981)
- Negative sign with InputNumber [\#8919](https://github.com/primefaces/primeng/issues/8919)
- Inputnumber, decimal numbers [\#8900](https://github.com/primefaces/primeng/issues/8900)
- Remove primeng/primeng imports [\#7096](https://github.com/primefaces/primeng/issues/7096)
**Fixed bugs:**
- Warnings after upgrade to Angular 10 [\#9210](https://github.com/primefaces/primeng/issues/9210)
- FileUploadModule - types error in 10+ version [\#9209](https://github.com/primefaces/primeng/issues/9209)
- MenuBar Showcase demo has incorrectly formated SelectItem [\#9203](https://github.com/primefaces/primeng/issues/9203)
- TimePicker broken in 10.0.0-rc.3 [\#9195](https://github.com/primefaces/primeng/issues/9195)
- Pill Text not centered [\#9193](https://github.com/primefaces/primeng/issues/9193)
- Slider handle not working correctly with model driven forms [\#9192](https://github.com/primefaces/primeng/issues/9192)
- In calendar, \<p-footer\> with custom buttons not showing in calendar in v10 [\#9191](https://github.com/primefaces/primeng/issues/9191)
- p-fieldset flickers when it's initialized collapsed \[10.0.0-rc.3\] [\#9179](https://github.com/primefaces/primeng/issues/9179)
- Calendar misplaced layout if more than one month is shown [\#9168](https://github.com/primefaces/primeng/issues/9168)
- Carousel - set page does not work for first and last page [\#9153](https://github.com/primefaces/primeng/issues/9153)
- Menubar not working on mobile devices [\#9127](https://github.com/primefaces/primeng/issues/9127)
- Unable to close p-messages on Firefox [\#9123](https://github.com/primefaces/primeng/issues/9123)
- Showcase does not show active menu [\#9109](https://github.com/primefaces/primeng/issues/9109)
- Redirect to data.com when dropping on datapoint with TreeComponent with Firefox [\#9108](https://github.com/primefaces/primeng/issues/9108)
- \[TriStateCheckbox\] Keyboard gets opened on mobile devices on use [\#9085](https://github.com/primefaces/primeng/issues/9085)
- Table component tries to restore non-existing state [\#9076](https://github.com/primefaces/primeng/issues/9076)
- disabled p-slider still reacts to keyboard input [\#9066](https://github.com/primefaces/primeng/issues/9066)
- p-inputNumber cannot set value bigger than 99.999 for an ES locale [\#9027](https://github.com/primefaces/primeng/issues/9027)
- Table erratic row selection with virtual scroll [\#8952](https://github.com/primefaces/primeng/issues/8952)
- Table scrollHeight="flex" messes columns' width [\#8921](https://github.com/primefaces/primeng/issues/8921)
- VirtualScroll ExpressionChangedAfterItHasBeenCheckedError [\#8886](https://github.com/primefaces/primeng/issues/8886)
- Turbo Table Column Resize Is Ignored If Smaller Than minWidth \[expand mode\] [\#8262](https://github.com/primefaces/primeng/issues/8262)
- sub menu of p-contextMenu in p-table go off screen when right click on the bottom of screen [\#8077](https://github.com/primefaces/primeng/issues/8077)
- Table cell editor not switching correctly from input to output with OnPush [\#8046](https://github.com/primefaces/primeng/issues/8046)
- Frozen Columns and Rows should be exportable to CSV as well [\#7916](https://github.com/primefaces/primeng/issues/7916)
**Deprecated:**
- Deprecate reset\(\) method in favor of new clear\(\) [\#8636](https://github.com/primefaces/primeng/issues/8636)
**Breaking changes:**
- Dialog position property and position classes needs rename [\#9177](https://github.com/primefaces/primeng/issues/9177)
**Unit Tests:**
- Fixed broken tests [\#9116](https://github.com/primefaces/primeng/issues/9116)
## [10.0.0-rc.3](https://github.com/primefaces/primeng/tree/10.0.0-rc.3)
[Full Changelog](https://github.com/primefaces/primeng/compare/10.0.0-rc.2...10.0.0-rc.3)
**Fixed bugs:**
- Padding for Fieldset content [\#9146](https://github.com/primefaces/primeng/issues/9146)
- Content slide animations fail on Safari [\#9145](https://github.com/primefaces/primeng/issues/9145)
- HTML page auto scrolls down when TextArea with AutoResize option is set [\#9129](https://github.com/primefaces/primeng/issues/9129)
- Invalid markup on Calendar Time Picker [\#9137](https://github.com/primefaces/primeng/issues/9137)
- Calendar FocusTrap not working [\#9136](https://github.com/primefaces/primeng/issues/9136)
- Multiselect filter not working in v10.0.0-rc.2 [\#9135](https://github.com/primefaces/primeng/issues/9135)
## [10.0.0-rc.2](https://github.com/primefaces/primeng/tree/10.0.0-rc.2)
[Full Changelog](https://github.com/primefaces/primeng/compare/10.0.0-rc.1...10.0.0-rc.2)
**Fixed bugs:**
- Ripple effect is not working [\#9111](https://github.com/primefaces/primeng/issues/9111)
## [10.0.0-rc.1](https://github.com/primefaces/primeng/tree/10.0.0-rc.1)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.1.3...10.0.0-rc.1)
**Implemented New Features and Enhancements:**
- Sizes for input text and button [\#9100](https://github.com/primefaces/primeng/issues/9100)
- Outlined and Filled Input texts [\#9099](https://github.com/primefaces/primeng/issues/9099)
- Improved Overlay Animations [\#9098](https://github.com/primefaces/primeng/issues/9098)
- Migrate to PrimeIcons 4.0 [\#9097](https://github.com/primefaces/primeng/issues/9097)
- Label Nova, Luna and Rhea as Legacy Themes [\#9095](https://github.com/primefaces/primeng/issues/9095)
- Migrate to PrimeOne Design Architecture [\#9094](https://github.com/primefaces/primeng/issues/9094)
- PrimeOne Themes [\#9093](https://github.com/primefaces/primeng/issues/9093)
- Material Theme [\#9092](https://github.com/primefaces/primeng/issues/9092)
- Bootstrap Theme [\#9091](https://github.com/primefaces/primeng/issues/9091)
- Add Icon template to Panel like PrimeVue [\#9068](https://github.com/primefaces/primeng/issues/9068)
- Add badge and badgeClass to Button [\#9062](https://github.com/primefaces/primeng/issues/9062)
- Add style and styleClass to InputNumber [\#9048](https://github.com/primefaces/primeng/issues/9048)
- p-inputNumber is missing inputStyleClass property [\#9028](https://github.com/primefaces/primeng/issues/9028)
- Reimplement TieredMenu, MegaMenu and MenuBar [\#8780](https://github.com/primefaces/primeng/issues/8780)
- Deprecate ng-content in favor of ng-template [\#8775](https://github.com/primefaces/primeng/issues/8775)
- Multiple Messages display should support multiple severities [\#8767](https://github.com/primefaces/primeng/issues/8767)
- Remove ui-g [\#8761](https://github.com/primefaces/primeng/issues/8761)
- Migrate all components to use ChangeDetectionStrategy.**OnPush** [\#8688](https://github.com/primefaces/primeng/issues/8688)
- Remove deprecated style classes [\#8630](https://github.com/primefaces/primeng/issues/8630)
- Deprecate Responsive Table [\#8611](https://github.com/primefaces/primeng/issues/8611)
- Listbox filter width problem when showToggleAll=false [\#8541](https://github.com/primefaces/primeng/issues/8541)
**Fixed bugs:**
- ToggleButton bug: incorrect background color when not checked \(value=false\) PrimeNG 9.0.6-9.1.2 [\#8915](https://github.com/primefaces/primeng/issues/8915)
**Deprecated:**
- Deprecated Features [\#9096](https://github.com/primefaces/primeng/issues/9096)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.2.8-LTS](https://www.npmjs.com/package/primeng-lts/v/9.2.8) (2021-05-07)
- showNavigator and showIndicator support for Carousel [\#10208](https://github.com/primefaces/primeng/issues/10208)
- IndicatorStyle and IndicatorStyleClass support for Carousel [\#10207](https://github.com/primefaces/primeng/issues/10207)
- p-editor - HTML binding fails [\#10182](https://github.com/primefaces/primeng/issues/10182)
- p-dropdown with editable=true and floating labels results in incorrect behavior with manually entered values [\#10170](https://github.com/primefaces/primeng/issues/10170)
- Dropdown selecting an unwanted option when pressing Windows key on the keyboard [\#10113](https://github.com/primefaces/primeng/issues/10113)
- Facing accessibility-related issues with primeNg controls and AXE tools. [\#9834](https://github.com/primefaces/primeng/issues/9834)
- Radio buttons do not get unselected on the same group, with Reactive Forms using formControl instead of formControlName [\#9631](https://github.com/primefaces/primeng/issues/9631)
- Hovering on timepicker arrows acting like select after clicking an arrow in the time picker [\#8961](https://github.com/primefaces/primeng/issues/8961)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.2.6-LTS](https://www.npmjs.com/package/primeng-lts/v/9.2.6) (2021-04-13)
- p-tree event.accept() not available on first drop [\#10093](https://github.com/primefaces/primeng/issues/10093)
- p-table with save state (localstorage/sessionstorage) remember old value after delete from filter [\#10065](https://github.com/primefaces/primeng/issues/10065)
- Accessibility: Typo in aria attribute valuemin for InputNumber [\#10058](https://github.com/primefaces/primeng/issues/10058)
- Carousel does not always display dynamically added items [\#10051](https://github.com/primefaces/primeng/issues/10051)
- MenuItem's style and styleClass properties should be apply to li [\#10045](https://github.com/primefaces/primeng/issues/10045)
- AutoComplete does not display 0 as value when preselected [\#10031](https://github.com/primefaces/primeng/issues/10031)
- Calendar: WeekNumber looks like it is selectable [\#9746](https://github.com/primefaces/primeng/issues/9746)
- Menubar menuitems must have menu/menubar as parent [\#9680](https://github.com/primefaces/primeng/issues/9680)
- AutoComplete does not display 0 as value [\#9628](https://github.com/primefaces/primeng/issues/9628)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.2.5-LTS](https://www.npmjs.com/package/primeng-lts/v/9.2.5) (2021-03-16)
- First node dropped into empty tree not triggering onNodeDrop [\#9991](https://github.com/primefaces/primeng/issues/9991)
- Changing captcha language does not work [\#9985](https://github.com/primefaces/primeng/issues/9985)
- Defer directive throws ExpressionChangedAfterItHasBeenCheckedError if visible from the beginning [\#9984](https://github.com/primefaces/primeng/issues/9984)
- Chips disabled not working when using with comma [\#9958](https://github.com/primefaces/primeng/issues/9958)
- Disabled p-inputNumber updated after pasting from clipboard [\#9957](https://github.com/primefaces/primeng/issues/9957)
- Unable to access tab menu using keyboard [\#9954](https://github.com/primefaces/primeng/issues/9954)
- OverlayPanel not working unless ShareModule is imported as well [\#9927](https://github.com/primefaces/primeng/issues/9927)
- Galleria: thumbnail items doesn't work properly when responsive options are set [\#9744](https://github.com/primefaces/primeng/issues/9744)
- Autocomplete with multiple and readonly enabled still show button to remove options [\#9513](https://github.com/primefaces/primeng/issues/9513)
- p-dataView not updating view after [layout] change [\#9494](https://github.com/primefaces/primeng/issues/9494)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.2.4-LTS](https://www.npmjs.com/package/primeng-lts/v/9.2.4) (2021-03-01)
- When table is lazy and having multiSortMeta then "lazyLoad" execute twice [\#9906](https://github.com/primefaces/primeng/issues/9906)
- pSelectableRow blocks typing space on inputs in p-table [\#9893](https://github.com/primefaces/primeng/issues/9893)
- p-inputnumber infinite loop when using buttons [\#9888](https://github.com/primefaces/primeng/issues/9888)
- Enter key should hide calendar [\#9880](https://github.com/primefaces/primeng/issues/9880)
- p-sidebar appendTo has wrong type [\#9876](https://github.com/primefaces/primeng/issues/9876)
- p-slider does not react when clicking on bar in some cases [\#9857](https://github.com/primefaces/primeng/issues/9857)
- Add rowIndex to onRowUnselect [\#9823](https://github.com/primefaces/primeng/issues/9823)
- Expose InputMask OnKeyDown event [\#9718](https://github.com/primefaces/primeng/issues/9718)
- p-table cell edit wrong index on onEditComplete event [\#9075](https://github.com/primefaces/primeng/issues/9075)
- ConfirmDialog throws exception during onDestroy [\#8585](https://github.com/primefaces/primeng/issues/8585)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.2.3-LTS](https://www.npmjs.com/package/primeng-lts/v/9.2.3) (2021-02-11)
- LazyEvent.first coming wrong when sorting with resetPageOnSort true [\#9866](https://github.com/primefaces/primeng/issues/9866)
- Adding multiSortMeta to the table causes an extra initial call to fetch data in virtual scroll [\#9854](https://github.com/primefaces/primeng/issues/9854)
- TabPanel's leftIcon and rightIcon properties not working with programmatic change [\#9844](https://github.com/primefaces/primeng/issues/9844)
- Row not selected when using the Table contextMenuSelectionMode="joint" [\#9824](https://github.com/primefaces/primeng/issues/9824)
- Strange behavior using context menu on Safari [\#9814](https://github.com/primefaces/primeng/issues/9814)
- Table onRowSelect calling before the selection change [\#9806](https://github.com/primefaces/primeng/issues/9806)
- The up and down arrow key stops working by the virtualscroller [\#9805](https://github.com/primefaces/primeng/issues/9805)
- Space key causes scroll the browser when using Table selection [\#9804](https://github.com/primefaces/primeng/issues/9804)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.2.2-LTS](https://www.npmjs.com/package/primeng-lts/v/9.2.2) (2021-01-12)
- shiftKey invokes onRowSelect multiple times [\#9747](https://github.com/primefaces/primeng/issues/9747)
- Table not restoring columns when using virtualscroll [\#9708](https://github.com/primefaces/primeng/issues/9708)
- Float label not working when clearing input on AutoComplete and TextArea [\#9688](https://github.com/primefaces/primeng/issues/9688)
- p-editor automatically gains focus when intializing model with data [\#9664](https://github.com/primefaces/primeng/issues/9664)
- Lazy loaded tabpanel content loading eagerly when selected input is present [\#9613](https://github.com/primefaces/primeng/issues/9613)
- Resizable columns with virtual scroll doesn't work with p-treeTable [\#9575](https://github.com/primefaces/primeng/issues/9575)
- Wrong documentation for controlCase on TabView [\#9490](https://github.com/primefaces/primeng/issues/9490)
- Treetable column resize breaks when columnResizeMode="expand" in combination with [virtualScroll]="true" [\#9202](https://github.com/primefaces/primeng/issues/9202)
- p-treeTable with VirtualScroll only header is resizing [\#9170](https://github.com/primefaces/primeng/issues/9170)
- SelectButton - reactive form and disabled control [\#8788](https://github.com/primefaces/primeng/issues/8788)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.2.1-LTS](https://www.npmjs.com/package/primeng-lts/v/9.2.1) (2020-12-09)
- InputTextArea, FloatLabel and Initial State [\#9607](https://github.com/primefaces/primeng/issues/9607)
- Change mouse cursor on drag&drop events [\#9536](https://github.com/primefaces/primeng/issues/9536)
- Carousel does not respond to change to numVisible [\#9049](https://github.com/primefaces/primeng/issues/9049)
- Add a maximize event on dialog [\#8861](https://github.com/primefaces/primeng/issues/8861)
- Carousel doesn't use 'responsiveOptions' on init [\#8833](https://github.com/primefaces/primeng/issues/8833)
- onShow and onHide event for colorPicker [\#8828](https://github.com/primefaces/primeng/issues/8828)
- ConfirmationService does not let specify closeOnEscape [\#8790](https://github.com/primefaces/primeng/issues/8790)
- Dialog.onShow should occur when the animation ends [\#8747](https://github.com/primefaces/primeng/issues/8747)
- p-colorPicker not working | Failing on click [\#8746](https://github.com/primefaces/primeng/issues/8746)
- Autocomplete empty text when lost focus [\#8740](https://github.com/primefaces/primeng/issues/8740)
- [Bug] Carousel displays last page when circular=true [\#8739](https://github.com/primefaces/primeng/issues/8739)
- [Bug] Carousel does not recalculate the number of dots on refresh [\#8705](https://github.com/primefaces/primeng/issues/8705)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.2.0-LTS](https://www.npmjs.com/package/primeng-lts/v/9.2.0) (2020-11-24)
- Galleria Indicators aren't displayed in Firefox [\#9537](https://github.com/primefaces/primeng/issues/9537)
- Popup TieredMenu not closing when click on leaf [\#9534](https://github.com/primefaces/primeng/issues/9534)
- ContextMenu Keyboard Controls does not prevent Tree Keyboard Controls [\#9529](https://github.com/primefaces/primeng/issues/9529)
- Table stored state does not match current columns [\#9510](https://github.com/primefaces/primeng/issues/9510)
- DOM Exception trigger with ButtonDirective afterViewInit [\#9497](https://github.com/primefaces/primeng/issues/9497)
- TieredMenu initial hover is broken [\#9458](https://github.com/primefaces/primeng/issues/9458)
- OverlayPanel target arrow points to the wrong position when target is on the right edge of the screen [\#9441](https://github.com/primefaces/primeng/issues/9441)
- Table with scroll has misaligned headers if scrollbar is not visible [\#9413](https://github.com/primefaces/primeng/issues/9413)
- Galleria thumbnailsPosition top and left don't work [\#9381](https://github.com/primefaces/primeng/issues/9381)
- Table lazy virtual scroll triggers multiple separate calls to onLazyLoad() function [\#9316](https://github.com/primefaces/primeng/issues/9316)
- wrong behavior of Dialog.maskClickListener [\#9282](https://github.com/primefaces/primeng/issues/9282)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.1.8-LTS](https://www.npmjs.com/package/primeng-lts/v/9.1.8) (2020-11-10)
- Add keyboard support to ContextMenu [\#9499](https://github.com/primefaces/primeng/issues/9499)
- p-accordion with lazy loaded content doesnt load when opened programattically[\#9496](https://github.com/primefaces/primeng/issues/9496)
- scrollHeight doesn't change dynamically when using virtualScroll [\#9489](https://github.com/primefaces/primeng/issues/9489)
- p-calendar Dynamic default date [\#9479](https://github.com/primefaces/primeng/issues/9479)
- Align contextmenu menu behavior with menubar [\#9459](https://github.com/primefaces/primeng/issues/9459)
- Visibility option for Paginator's first and last page icons [\#9456](https://github.com/primefaces/primeng/issues/9456)
- Dropdown Item template support for Paginator [\#9455](https://github.com/primefaces/primeng/issues/9455)
- Customizable Toast and Messages [\#9454](https://github.com/primefaces/primeng/issues/9454)
- TieredMenu Keyboard Support [\#9451](https://github.com/primefaces/primeng/issues/9451)
- The up and down arrow key stops working by the table virtualscrolling [\#9437](https://github.com/primefaces/primeng/issues/9437)
- Model driven forms support for RadioButton [\#9162](https://github.com/primefaces/primeng/issues/9162)
- Accessibility: Dialog close button needs aria-label [\#8947](https://github.com/primefaces/primeng/issues/8947)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.1.7-LTS](https://www.npmjs.com/package/primeng-lts/v/9.1.7) (2020-10-12)
- DialogService onclose event not fired when you click close button after v9.0.3(include) [\#9345](https://github.com/primefaces/primeng/issues/9345)
- Align tiered menu behavior with menubar [\#9379](https://github.com/primefaces/primeng/issues/9379)
- Problems when typing or pasting numbers into InputNumber [\#9372](https://github.com/primefaces/primeng/issues/9372)
- Table Keyboard metaSelections not working [\#9366](https://github.com/primefaces/primeng/issues/9366)
- InputNumber cannot set value when format property is false [\#9364](https://github.com/primefaces/primeng/issues/9364)
- ColumnResize not working with Table VirtualScroll [\#9347](https://github.com/primefaces/primeng/issues/9347)
- InputNumber with spinner mode throws a JS exception [\#9337](https://github.com/primefaces/primeng/issues/9337)
- Angular PrimeNG FocusTrap Tabbing Fix Issue [\#9332](https://github.com/primefaces/primeng/issues/9332)
- p-calendar combination [showIcon]="true" [showOnFocus]="false" produces an error on using tab-key [\#9257](https://github.com/primefaces/primeng/issues/9257)
- Multiple DynamicDialogs are not closing programmatically [\#8801](https://github.com/primefaces/primeng/issues/8801)
**Fixed bugs:**
- TreeTable openCell() not working [\#9279](https://github.com/primefaces/primeng/issues/9279)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.1.6-LTS](https://www.npmjs.com/package/primeng-lts/v/9.1.6) (2020-09-23)
**Fixed bugs:**
- TreeTable openCell() not working [\#9279](https://github.com/primefaces/primeng/issues/9279)
- Turbo Table Column Resize Is Ignored If Smaller Than minWidth [expand mode] [\#8262](https://github.com/primefaces/primeng/issues/8262)
- Frozen Columns and Rows should be exportable to CSV as well [\#7916](https://github.com/primefaces/primeng/issues/7916)
- Table cell editor not switching correctly from input to output with OnPush [\#8046](https://github.com/primefaces/primeng/issues/8046)
- sub menu of p-contextMenu in p-table go off screen when right click on the bottom of screen [\#8077](https://github.com/primefaces/primeng/issues/8077)
- InputNumber: overwriting doesn't work correctly [\#9229](https://github.com/primefaces/primeng/issues/9229)
- Add onInput event to InputNumber [\#9223](https://github.com/primefaces/primeng/issues/9223)
- InputNumber: pasting doesn't work correctly [\#9219](https://github.com/primefaces/primeng/issues/9219)
- inputNumber with numeric prefix is not working as expected [\#9125](https://github.com/primefaces/primeng/issues/9125)
- p-inputNumber cannot set value bigger than 99.999 for an ES locale [\#9027](https://github.com/primefaces/primeng/issues/9027)
- Add Del key support to InputNumber [\#8981](https://github.com/primefaces/primeng/issues/8981)
- Inputnumber, decimal numbers [\#8900](https://github.com/primefaces/primeng/issues/8900)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.1.5-LTS](https://www.npmjs.com/package/primeng-lts/v/9.1.5) (2020-09-08)
**Fixed bugs:**
- OverlayPanel doesn't disappear in OnPush components. [\#8804](https://github.com/primefaces/primeng/issues/8804)
- fileUpload chooseIcon always set to default in mode="basic" [\#9173](https://github.com/primefaces/primeng/issues/9173)
- Improve calendar tabbing behavior [\#9139](https://github.com/primefaces/primeng/issues/9139)
- InputNumber gets dirty but not touched [\#9239](https://github.com/primefaces/primeng/issues/9239)
- Prevent virtual device calendar on touchUI mode [\#9226](https://github.com/primefaces/primeng/issues/9226)
- Sort and Filter support for VirtualScrolling [\#9154](https://github.com/primefaces/primeng/issues/9154)
- Redirect to data.com when dropping on datapoint with TreeComponent with Firefox [\#9108](https://github.com/primefaces/primeng/issues/9108)
- Table erratic row selection with virtual scroll [\#8952](https://github.com/primefaces/primeng/issues/8952)
- VirtualScroll ExpressionChangedAfterItHasBeenCheckedError [\#8886](https://github.com/primefaces/primeng/issues/8886)
- VirtualScroll ExpressionChangedAfterItHasBeenCheckedError on TreeTable [\#9254](https://github.com/primefaces/primeng/issues/9254)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [9.1.4-LTS](https://www.npmjs.com/package/primeng-lts/v/9.1.4) (2020-08-18)
**Fixed bugs:**
- Button lose class style after label update with after primeng 9.1.0 [\#8996](https://github.com/primefaces/primeng/issues/8996)
- primeng.css is corrupted in 9.1.3 [\#9161](https://github.com/primefaces/primeng/issues/9161)
- Add style and styleClass to InputNumber [\#9048](https://github.com/primefaces/primeng/issues/9048)
- p-inputNumber is missing inputStyleClass property [\#9028](https://github.com/primefaces/primeng/issues/9028)
- HTML page auto scrolls down when TextArea with AutoResize option is set [\#9129](https://github.com/primefaces/primeng/issues/9129)
## [9.1.3](https://github.com/primefaces/primeng/tree/9.1.3) (2020-07-06)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.1.2...9.1.3)
**Implemented New Features and Enhancements:**
- Use angular style API for components and reduce primeng.css [\#8651](https://github.com/primefaces/primeng/issues/8651)
**Fixed bugs:**
- TreeTable, Table and InputNumber throwing error [\#9007](https://github.com/primefaces/primeng/issues/9007)
## [9.1.2](https://github.com/primefaces/primeng/tree/9.1.2) (2020-06-30)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.1.1...9.1.2)
**Implemented New Features and Enhancements:**
- Add focusTrap attribute to Calendar [\#8968](https://github.com/primefaces/primeng/issues/8968)
- Bug in dialog.ts - variable naming and improvement [\#8964](https://github.com/primefaces/primeng/issues/8964)
- ToggleButton disabled doesn't correctly disable the accessibility input [\#8955](https://github.com/primefaces/primeng/issues/8955)
- Don't close menu components when clicking the disabled option [\#8950](https://github.com/primefaces/primeng/issues/8950)
- Add contentStyleClass to Dialog [\#8945](https://github.com/primefaces/primeng/issues/8945)
- Add listStyleClass to ListBox [\#8944](https://github.com/primefaces/primeng/issues/8944)
- Feature Request: Make activate-on-click optional for Inplace [\#8931](https://github.com/primefaces/primeng/issues/8931)
**Fixed bugs:**
- inputnumber : "spinner button click submitting the form" [\#8984](https://github.com/primefaces/primeng/issues/8984)
- inputnumber : "maxlength" property doesn't work [\#8983](https://github.com/primefaces/primeng/issues/8983)
- 9.1.0 Popup slidemenu item doubleclick causes page to reload [\#8976](https://github.com/primefaces/primeng/issues/8976)
- Incorrect property pEditableRowIndex in Table docs [\#8972](https://github.com/primefaces/primeng/issues/8972)
- InputNumber prevents min key number [\#8956](https://github.com/primefaces/primeng/issues/8956)
- Menu Components getting hover and focus even when disabled [\#8951](https://github.com/primefaces/primeng/issues/8951)
- Angular i18n error [\#8943](https://github.com/primefaces/primeng/issues/8943)
- Filter in p-tree is not working with virtual scroll in primeng 9.1.0 [\#8941](https://github.com/primefaces/primeng/issues/8941)
- Tabview: disabled tab control can be focused [\#8939](https://github.com/primefaces/primeng/issues/8939)
- DynamicDialog and Dialog Closed by clear button on drop down or chips inside [\#8934](https://github.com/primefaces/primeng/issues/8934)
- Button with icon shows no label after change [\#8918](https://github.com/primefaces/primeng/issues/8918)
- 9.1.0 InputNumber node\_modules errors [\#8916](https://github.com/primefaces/primeng/issues/8916)
- ui-fluid not working with dropdown [\#8914](https://github.com/primefaces/primeng/issues/8914)
- p-inputNumber ignores disabled state in reactive forms [\#8901](https://github.com/primefaces/primeng/issues/8901)
- Dialog Resize not working when set height [\#8899](https://github.com/primefaces/primeng/issues/8899)
- javascript error in gallery [\#8897](https://github.com/primefaces/primeng/issues/8897)
- \[PR\] Fix 9.1.0 p-dialog resize bug miscalculates drag position [\#8892](https://github.com/primefaces/primeng/issues/8892)
- DynamicDialog dismissableMask working when it shouldn't [\#8891](https://github.com/primefaces/primeng/issues/8891)
- Typo in the documentation of inputNumber [\#8882](https://github.com/primefaces/primeng/issues/8882)
- SET value to InputMask doesn't work on PrimeNG 9.0.3 - 9.1 [\#8727](https://github.com/primefaces/primeng/issues/8727)
## [9.1.1](https://github.com/primefaces/primeng/tree/9.1.1) (2020-06-30)
Invalid release, use 9.1.2 instead.
## [9.1.0](https://github.com/primefaces/primeng/tree/9.1.0) (2020-05-25)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.0.6...9.1.0)
**Implemented New Features and Enhancements:**
- Filtering for DataGrid [\#2457](https://github.com/primefaces/primeng/issues/2457)
- Add clearCache method to VirtualScroller and Table [\#8881](https://github.com/primefaces/primeng/issues/8881)
- Deprecate Spinner [\#8873](https://github.com/primefaces/primeng/issues/8873)
- Deprecate Lightbox [\#8872](https://github.com/primefaces/primeng/issues/8872)
- Reimplement DataTable-TreeTable-VirtualScroller Lazy Loading Implementation [\#8865](https://github.com/primefaces/primeng/issues/8865)
- minBufferPx and maxBufferPx for Table [\#8860](https://github.com/primefaces/primeng/issues/8860)
- Add scrollToIndex function to VirtualScroller [\#8859](https://github.com/primefaces/primeng/issues/8859)
- Add scrollToVirtualIndex and scrollTo functions to DataTable [\#8857](https://github.com/primefaces/primeng/issues/8857)
- Reimplement TreeTable VirtualScroll [\#8856](https://github.com/primefaces/primeng/issues/8856)
- Reimplement Table VirtualScroll [\#8855](https://github.com/primefaces/primeng/issues/8855)
- Table/TreeTable virtualscroller should reset scroll position after sort and filter [\#8854](https://github.com/primefaces/primeng/issues/8854)
- Deprecate first, cache and totalRecords props of VirtualScroller [\#8850](https://github.com/primefaces/primeng/issues/8850)
- Remove ul-li pair from VirtualScroller [\#8849](https://github.com/primefaces/primeng/issues/8849)
- VirtualScroller Demo Update [\#8848](https://github.com/primefaces/primeng/issues/8848)
- minBufferX and maxBufferX for VirtualScroller [\#8847](https://github.com/primefaces/primeng/issues/8847)
- New FormLayout Utility [\#8843](https://github.com/primefaces/primeng/issues/8843)
- Re-Add center method to Dialog [\#8792](https://github.com/primefaces/primeng/issues/8792)
- Remove ui-g usage from Demos [\#8782](https://github.com/primefaces/primeng/issues/8782)
- Remove ui-g from MegaMenu [\#8762](https://github.com/primefaces/primeng/issues/8762)
- VirtualScrolling for Tree [\#8257](https://github.com/primefaces/primeng/issues/8257)
- Virtual scrolling support without lazy loading [\#7419](https://github.com/primefaces/primeng/issues/7419)
- Pagination Support for Virtual Scrolling [\#6961](https://github.com/primefaces/primeng/issues/6961)
- New Flex mode for Table ScrollHeight [\#5235](https://github.com/primefaces/primeng/issues/5235)
- New Galleria [\#3105](https://github.com/primefaces/primeng/issues/3105)
- New Component: InputNumber [\#1109](https://github.com/primefaces/primeng/issues/1109)
**Fixed bugs:**
- Resizable Dialog is broken [\#8863](https://github.com/primefaces/primeng/issues/8863)
- p-dialog performance degraded after 9.0.0-rc.4 [\#8846](https://github.com/primefaces/primeng/issues/8846)
- Tree missing property documentation [\#8844](https://github.com/primefaces/primeng/issues/8844)
- p-tree validateDrop throws error in subscribe [\#8827](https://github.com/primefaces/primeng/issues/8827)
- VirtualScroller does not display items at page boundaries [\#8733](https://github.com/primefaces/primeng/issues/8733)
- TurboTable reload data automaticly scrolls down [\#8574](https://github.com/primefaces/primeng/issues/8574)
- Dropdowns and MultiSelects open inconsistently or not at all when using a wrapped-label layout [\#8455](https://github.com/primefaces/primeng/issues/8455)
- Virtualscroller cache not working [\#8306](https://github.com/primefaces/primeng/issues/8306)
- Virtual scroll with radio- Incorrect radio\(s\) selected on scroll. [\#8238](https://github.com/primefaces/primeng/issues/8238)
- PrimeNG table lazy loading not working properly on setting the property first [\#7819](https://github.com/primefaces/primeng/issues/7819)
- DataTable virtual scrolling with onLazyLoad: event.first is 0 when sorting [\#7546](https://github.com/primefaces/primeng/issues/7546)
## [9.0.6](https://github.com/primefaces/primeng/tree/9.0.6) (2020-04-22)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.0.5...9.0.6)
**Implemented New Features and Enhancements:**
- Enhance shiftkey support for Table [\#8600](https://github.com/primefaces/primeng/issues/8600)
- Calendar should not use ui-g [\#8769](https://github.com/primefaces/primeng/issues/8769)
- filterLocale for components with filtering [\#8754](https://github.com/primefaces/primeng/issues/8754)
- Update sort icons [\#8753](https://github.com/primefaces/primeng/issues/8753)
- Add modal property to DynamicDialog [\#8726](https://github.com/primefaces/primeng/issues/8726)
- Add onFilter to Tree [\#8710](https://github.com/primefaces/primeng/issues/8710)
- Nested multiple sort support for TreeTable [\#8530](https://github.com/primefaces/primeng/issues/8530)
- Add LazyLoadOnInit flag for Tree Table [\#8527](https://github.com/primefaces/primeng/issues/8527)
- p-autoComplete dropdown menu does not toggle closed on click of menu disclosure button [\#8523](https://github.com/primefaces/primeng/issues/8523)
- Remove zoom css property [\#8440](https://github.com/primefaces/primeng/issues/8440)
- Paginator showAll - Pre-Selecting All Inconsistent [\#8360](https://github.com/primefaces/primeng/issues/8360)
- Original browser event of p-checkbox is not exposed [\#8221](https://github.com/primefaces/primeng/issues/8221)
- Allow static HTML in the messages component [\#1795](https://github.com/primefaces/primeng/issues/1795)
**Fixed bugs:**
- Multiple messages should wrap [\#8768](https://github.com/primefaces/primeng/issues/8768)
- The dynamicDialog can't be closed using the ESC key if the dynamicDialog hasn't the baseZIndex property [\#8760](https://github.com/primefaces/primeng/issues/8760)
- TabMenu RouterLinkActive doesn't work since @9.0.3 [\#8748](https://github.com/primefaces/primeng/issues/8748)
- p-dialog drag not working IE 11 [\#8745](https://github.com/primefaces/primeng/issues/8745)
- Add rePosition Function to Dialog [\#8744](https://github.com/primefaces/primeng/issues/8744)
- All links are highlighted instead of using text color in PanelMenu [\#8731](https://github.com/primefaces/primeng/issues/8731)
- Toast - preventOpenDuplicates does not work - Detail Message is not compared properly [\#8717](https://github.com/primefaces/primeng/issues/8717)
- Toast modal property is not active. [\#8716](https://github.com/primefaces/primeng/issues/8716)
- dismissableMask not working in dynamic dialog [\#8714](https://github.com/primefaces/primeng/issues/8714)
- Typo error in documentation [\#8711](https://github.com/primefaces/primeng/issues/8711)
- Pressing arrow up key in drag and drop enabled tree selects wrong node [\#8623](https://github.com/primefaces/primeng/issues/8623)
- Tiered Menu command does not receive MenuItem in event [\#8592](https://github.com/primefaces/primeng/issues/8592)
- Hovering on timepicker arrows acting like select [\#8584](https://github.com/primefaces/primeng/issues/8584)
- Drag does not work on Dialogs with position set [\#8581](https://github.com/primefaces/primeng/issues/8581)
- p-dialog not centered in IE and overflows on maximize [\#8545](https://github.com/primefaces/primeng/issues/8545)
- Tooltip - new tooltip created without removing old tooltip [\#8516](https://github.com/primefaces/primeng/issues/8516)
- PickList - items dissapear when items are moved and filters are set [\#8514](https://github.com/primefaces/primeng/issues/8514)
- p-calendar selectionMode="multiple" After unselect date, the calendar breaks. [\#8457](https://github.com/primefaces/primeng/issues/8457)
- Dropdown allows selecting disabled options [\#8448](https://github.com/primefaces/primeng/issues/8448)
- Button and SplitButton have different brightness when disabled [\#8416](https://github.com/primefaces/primeng/issues/8416)
- Carousel - Button inside carousel-item is not clickable in mobile phones [\#8377](https://github.com/primefaces/primeng/issues/8377)
- multiselect applies disabled UI state to all items when selectionLimit is reached and selection is reset [\#8374](https://github.com/primefaces/primeng/issues/8374)
- MenuItem items property type error [\#8339](https://github.com/primefaces/primeng/issues/8339)
- Panel: aria-labelledby points to not existing id when toggleable equals false [\#8272](https://github.com/primefaces/primeng/issues/8272)
- \[p-tree\] \[bug\] right arrow key tries to expand a leaf if onNodeExpand function is defined [\#8271](https://github.com/primefaces/primeng/issues/8271)
- Dropdown panelStyle min width overridden when appendTo body is used [\#8218](https://github.com/primefaces/primeng/issues/8218)
- Toast blocks protractor [\#8122](https://github.com/primefaces/primeng/issues/8122)
- fieldset: don't animate into collapse !... when collapse is default [\#8022](https://github.com/primefaces/primeng/issues/8022)
- "no file chosen" tooltip appears after selecting file [\#7957](https://github.com/primefaces/primeng/issues/7957)
- Slider doesn't works properly with ChangeDetectionStrategy.OnPush / reactive forms [\#7692](https://github.com/primefaces/primeng/issues/7692)
**Deprecated:**
- Deprecate positionTop and positionLeft properties [\#8730](https://github.com/primefaces/primeng/issues/8730)
## [9.0.5](https://github.com/primefaces/primeng/tree/9.0.5) (2020-04-01)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.0.4...9.0.5)
**Fixed bugs:**
- MaskStyleClass Does not found [\#8704](https://github.com/primefaces/primeng/issues/8704)
## [9.0.4](https://github.com/primefaces/primeng/tree/9.0.4) (2020-04-01)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.0.3...9.0.4)
**Implemented New Features and Enhancements:**
- Nodes in p-tree can't have individual aria-labels (accessibility) [\#8276](https://github.com/primefaces/primeng/issues/8276)
- Allow BlockUI individual styling [\#8326](https://github.com/primefaces/primeng/issues/8326)
**Fixed bugs:**
- selectOtherMonths is broken in multiple and range mode [\#8349](https://github.com/primefaces/primeng/issues/8349)
- p-spinner does not work after upgrade to 9.0.3 [\#8695](https://github.com/primefaces/primeng/issues/8695)
- Property 'columnheader' does not exist on type 'SortableColumn' [\#8693](https://github.com/primefaces/primeng/issues/8693)
- Change Tooltip disabled doesn't close it [\#8324](https://github.com/primefaces/primeng/issues/8324)
- Incorrect sample code on demo page [\#8697](https://github.com/primefaces/primeng/issues/8697)
- Site Example X Github Example (table/export) [\#8316](https://github.com/primefaces/primeng/issues/8316)
## [9.0.3](https://github.com/primefaces/primeng/tree/9.0.3) (2020-03-30)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.0.2...9.0.3)
**Implemented New Features and Enhancements:**
- pSortableColumn should add aria-sort for readers [\#8684](https://github.com/primefaces/primeng/issues/8684)
- Theme aware focus ring for table rows [\#8682](https://github.com/primefaces/primeng/issues/8682)
- Add 'ui-menuitem-link-active' as the active route link [\#8681](https://github.com/primefaces/primeng/issues/8681)
- ContextMenu selection should focus the row in table [\#8680](https://github.com/primefaces/primeng/issues/8680)
- Remove ui-contextmenu-selected styling from free themes [\#8679](https://github.com/primefaces/primeng/issues/8679)
- Improve performance of FocusTrap and add disable support [\#8678](https://github.com/primefaces/primeng/issues/8678)
- OverlayPanel should use ngTemplateOutlet in favor of ng-content [\#8677](https://github.com/primefaces/primeng/issues/8677)
- Table column resizer should be displayed on mousedown [\#8672](https://github.com/primefaces/primeng/issues/8672)
- ConfirmationService should not override ConfirmDialog Properties [\#8671](https://github.com/primefaces/primeng/issues/8671)
- Dialog Footer is 1px off in free themes [\#8668](https://github.com/primefaces/primeng/issues/8668)
- Review and Refactor static ViewChilds [\#8667](https://github.com/primefaces/primeng/issues/8667)
- Add precision property to Spinner [\#8662](https://github.com/primefaces/primeng/issues/8662)
- Improve Dialog style [\#8656](https://github.com/primefaces/primeng/issues/8656)
- Add maskStyleClass property to Dialog and ConfirmDialog [\#8655](https://github.com/primefaces/primeng/issues/8655)
- Migrate DynamicDialog to new Dialog Impl [\#8653](https://github.com/primefaces/primeng/issues/8653)
- FilterUtils in filter should use deep object equality [\#8648](https://github.com/primefaces/primeng/issues/8648)
- Ability to turn off autofocus on Dropdown/MultiSelect Filter [\#8137](https://github.com/primefaces/primeng/issues/8137)
- Configurable icon for Inplace [\#8125](https://github.com/primefaces/primeng/issues/8125)
- FocusTrap for DynamicDialog [\#7921](https://github.com/primefaces/primeng/issues/7921)
- aria-label for p-tableCheckbox, p-tableHeaderCheckbox and p-tableRadioButton [\#7843](https://github.com/primefaces/primeng/issues/7843)
- Table ContextMenu Selection should be unselected after clicking away [\#7821](https://github.com/primefaces/primeng/issues/7821)
- filterPlaceholder for Listbox [\#7801](https://github.com/primefaces/primeng/issues/7801)
- FullCalendar documentation improvements [\#7719](https://github.com/primefaces/primeng/issues/7719)
- Make Confirmation.message optional [\#7637](https://github.com/primefaces/primeng/issues/7637)
- Improve keyboard navigation performance of Table [\#7632](https://github.com/primefaces/primeng/issues/7632)
- Default focus button should be configurable [\#7622](https://github.com/primefaces/primeng/issues/7622)
- Customizable FileUpload Icons [\#7611](https://github.com/primefaces/primeng/issues/7611)
- Two way binding for Accordion activeIndex [\#7604](https://github.com/primefaces/primeng/issues/7604)
- p-button component in inputgroup has inconsistent border-radius [\#7539](https://github.com/primefaces/primeng/issues/7539)
- Add onResizeInit and onResizeEnd to Dialog [\#7535](https://github.com/primefaces/primeng/issues/7535)
- Add rowIndex to cell edit events [\#7531](https://github.com/primefaces/primeng/issues/7531)
- Refactor icon only buttons for Aria [\#7463](https://github.com/primefaces/primeng/issues/7463)
- Add required property to p-checkBox and p-tableCheckbox [\#7432](https://github.com/primefaces/primeng/issues/7432)
- Add focus\(\) method to checkbox and radiobutton [\#7411](https://github.com/primefaces/primeng/issues/7411)
- Unify style \(horizontal alignment\) for input components \(dropdown, multiSelect\) [\#7367](https://github.com/primefaces/primeng/issues/7367)
- Breadcrumb should support Menuitem style/styleClass of MenuModel [\#7364](https://github.com/primefaces/primeng/issues/7364)
- Default button classes for ConfirmDialog [\#7356](https://github.com/primefaces/primeng/issues/7356)
- Add name and inputId to p-tableCheckbox, p-tableHeaderCheckbox, p-tableRadioButton [\#7346](https://github.com/primefaces/primeng/issues/7346)
- preserveSpace property to OrganizationChart [\#7313](https://github.com/primefaces/primeng/issues/7313)
- Extend MenuModel with new Router Options [\#7299](https://github.com/primefaces/primeng/issues/7299)
- Prevent duplicates and Prevent open duplicates for Toast [\#7219](https://github.com/primefaces/primeng/issues/7219)
- Chips Separator [\#5333](https://github.com/primefaces/primeng/issues/5333)
- Missing common selection mode in TurboTable \(as in DataTable\) [\#4943](https://github.com/primefaces/primeng/issues/4943)
- Add completeOnFocus option to AutoComplete [\#3976](https://github.com/primefaces/primeng/issues/3976)
**Fixed bugs:**
- Slider animate fails [\#8683](https://github.com/primefaces/primeng/issues/8683)
- onEditCancel is not invoked on escape key [\#8669](https://github.com/primefaces/primeng/issues/8669)
- The dynamicDialog can't be closed using the ESC key if the dynamicDialog has the baseZIndex property [\#8666](https://github.com/primefaces/primeng/issues/8666)
- ViewDestroyedError when destroying modal dialogs without closing [\#8661](https://github.com/primefaces/primeng/issues/8661)
- p-messages inside a p-dialog dissapear when closing and reopening it [\#8659](https://github.com/primefaces/primeng/issues/8659)
- MultiSelect: \*ngIf in p-footer not working [\#8646](https://github.com/primefaces/primeng/issues/8646)
- Autocomplete - Not Defined Event Error [\#8645](https://github.com/primefaces/primeng/issues/8645)
- Dropdown floating label ui-inputwrapper-filled css class not applied [\#8614](https://github.com/primefaces/primeng/issues/8614)
- bug in dropdown : TypeError: Cannot read property 'measureScrollOffset' of undefined [\#8140](https://github.com/primefaces/primeng/issues/8140)
- MultiSelect and Dropdown role type is not appropriate [\#7844](https://github.com/primefaces/primeng/issues/7844)
- Table filter change detection race condition [\#7842](https://github.com/primefaces/primeng/issues/7842)
- p-dialog tabbing problem: focus always in the first elemets if two dialogs are opened [\#7754](https://github.com/primefaces/primeng/issues/7754)
- Dynamic Dialog doesn't animate on hide only when showing [\#7728](https://github.com/primefaces/primeng/issues/7728)
- Keyboard navigation not working in IE11 after click on table row [\#7703](https://github.com/primefaces/primeng/issues/7703)
- Checkbox binary property is treated like a boolean, declared as string and documented as boolean [\#7681](https://github.com/primefaces/primeng/issues/7681)
- hideOnDateTimeSelect is not respected when showTime is false [\#7642](https://github.com/primefaces/primeng/issues/7642)
- Dropdown/MultiSelect control should be marked as touched after hiding the list [\#7629](https://github.com/primefaces/primeng/issues/7629)
- ContextMenu disabled menu item shows subitems [\#7585](https://github.com/primefaces/primeng/issues/7585)
- PrimeNG KeyFilter alphanum allows !\#$%&\( in Firefox and IE [\#7570](https://github.com/primefaces/primeng/issues/7570)
- id selector is not being set on toast message [\#7449](https://github.com/primefaces/primeng/issues/7449)
- TabMenu: support Ctrl+click for open link tab with routerLink [\#7434](https://github.com/primefaces/primeng/issues/7434)
- Calendar incorrect time validation [\#7381](https://github.com/primefaces/primeng/issues/7381)
- TreeTable top level nodes not aligned [\#7297](https://github.com/primefaces/primeng/issues/7297)
- RouterLinkActiveOptions doesn't work with free themes [\#7142](https://github.com/primefaces/primeng/issues/7142)
- Spinner silently discards manually entered decimal value if step value is a whole number [\#3853](https://github.com/primefaces/primeng/issues/3853)
## [9.0.2](https://github.com/primefaces/primeng/tree/9.0.2) (2020-03-20)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.0.1...9.0.2)
**Implemented New Features and Enhancements:**
- Pass current files to FileUpload onSelect [\#7421](https://github.com/primefaces/primeng/issues/7421)
**Fixed bugs:**
- Bug: Calendar increasing/decreasing minutes does not clear Timeout [\#7342](https://github.com/primefaces/primeng/issues/7342)
- pCellEditor not triggering edit when clicking on any element inside cell [\#8638](https://github.com/primefaces/primeng/issues/8638)
- Turbo Table empty message always showing even when table has data [\#8637](https://github.com/primefaces/primeng/issues/8637)
## [9.0.1](https://github.com/primefaces/primeng/tree/9.0.1) (2020-03-19)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.0.0...9.0.1)
**Implemented New Features and Enhancements:**
- Use requestAnimationFrame in VirtualScroll [\#8635](https://github.com/primefaces/primeng/issues/8635)
- Sortable columns should not be selectable [\#8634](https://github.com/primefaces/primeng/issues/8634)
- Use loadingbody in regular table according to loading property [\#8633](https://github.com/primefaces/primeng/issues/8633)
- currentPageReportTemplate support for TreeTable [\#8631](https://github.com/primefaces/primeng/issues/8631)
- Chips cover 100% although input is visually smaller [\#8610](https://github.com/primefaces/primeng/issues/8610)
- More options for currentPageReportTemplate [\#8605](https://github.com/primefaces/primeng/issues/8605)
- Customizable Toast Transformations [\#8136](https://github.com/primefaces/primeng/issues/8136)
- Add template for disabled dates of Calendar [\#7259](https://github.com/primefaces/primeng/issues/7259)
- Column toggle demo does not maintain column order [\#7234](https://github.com/primefaces/primeng/issues/7234)
- Toasts use the same icon for both the severity \(error\) and close icon [\#7196](https://github.com/primefaces/primeng/issues/7196)
- Context menu shouldn't close upon clicking an item with children [\#7076](https://github.com/primefaces/primeng/issues/7076)
**Fixed bugs:**
- Increase contract in currentPageReportTemplate [\#8632](https://github.com/primefaces/primeng/issues/8632)
- Dropdown and MultiSelect placeholder color is inconsistent [\#8629](https://github.com/primefaces/primeng/issues/8629)
- \[doc\] wrong demo code in Calendar doc [\#8627](https://github.com/primefaces/primeng/issues/8627)
- DataTable scrollHeight doesn't calculate correctly with frozen columns [\#8618](https://github.com/primefaces/primeng/issues/8618)
- Chips getting focus when clicking outside input [\#8606](https://github.com/primefaces/primeng/issues/8606)
- Float Label doesn't work for Chips and Input Addons [\#8604](https://github.com/primefaces/primeng/issues/8604)
- Click header containing tags does not toggle sorter [\#8597](https://github.com/primefaces/primeng/issues/8597)
- Table and TreeTable footer with vertical scroll might be misaligned with header and body [\#8591](https://github.com/primefaces/primeng/issues/8591)
- DynamicDialog close button alignment is broken [\#8587](https://github.com/primefaces/primeng/issues/8587)
- ConfirmDialog throws exception during onDestroy on v9.0.0 [\#8585](https://github.com/primefaces/primeng/issues/8585)
- Keyfilter paste not working [\#8579](https://github.com/primefaces/primeng/issues/8579)
- Multiselect scrolling down page when opening with keyboard [\#8578](https://github.com/primefaces/primeng/issues/8578)
- p-dialog and p-confirmDialog not centered when set appendTo body [\#8573](https://github.com/primefaces/primeng/issues/8573)
- InputMask not dispatching onInput event [\#8569](https://github.com/primefaces/primeng/issues/8569)
- Autocomplete doesn't clear input value if user tabs before suggestions are displayed [\#8511](https://github.com/primefaces/primeng/issues/8511)
- Table EditableColumn crashing on Tab key when loose ui-editing-cell [\#8470](https://github.com/primefaces/primeng/issues/8470)
- Incorrect position for scroll bars in scrollpanel [\#8400](https://github.com/primefaces/primeng/issues/8400)
- Tooltip flickering [\#8335](https://github.com/primefaces/primeng/issues/8335)
- pTable cell editing: onEditComplete not triggered when clicking other cells. [\#8049](https://github.com/primefaces/primeng/issues/8049)
- SlideMenu: change detection not triggered when hidden [\#7820](https://github.com/primefaces/primeng/issues/7820)
- Spinner buttons should not be focusable [\#7789](https://github.com/primefaces/primeng/issues/7789)
- Dialog draggable wrong header style [\#7258](https://github.com/primefaces/primeng/issues/7258)
- p-dropdown with ui-fluid and ui-inputgroup classes does not grow horizontally [\#7224](https://github.com/primefaces/primeng/issues/7224)
- LazyLoad event triggered by moving horizontal scrollbar [\#7207](https://github.com/primefaces/primeng/issues/7207)
- Pagination not reseting when using multiple sortMode [\#7141](https://github.com/primefaces/primeng/issues/7141)
## [9.0.0](https://github.com/primefaces/primeng/tree/9.0.0) (2020-02-26)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.0.0-rc.4...9.0.0)
**Implemented New Features and Enhancements:**
- Keyboard accessible Steps [\#8546](https://github.com/primefaces/primeng/issues/8546)
- Add position property to ConfirmDialog [\#8543](https://github.com/primefaces/primeng/issues/8543)
- Add position property to Dialog [\#8535](https://github.com/primefaces/primeng/issues/8535)
- Reimplement maximizable dialog [\#8534](https://github.com/primefaces/primeng/issues/8534)
- Autocomplete onShow onHide [\#8519](https://github.com/primefaces/primeng/issues/8519)
- Allow dragging popups outside of the viewport [\#8507](https://github.com/primefaces/primeng/issues/8507)
- Add hide and show emitters to slidemenu [\#8497](https://github.com/primefaces/primeng/issues/8497)
- Provide a callback on DataView format change [\#6953](https://github.com/primefaces/primeng/issues/6953)
**Fixed bugs:**
- ng update @angular/core &@angular/cli to latest fails [\#8542](https://github.com/primefaces/primeng/issues/8542)
- ConfirmationDialog and Dialog leaves screen grayed on rejection [\#8538](https://github.com/primefaces/primeng/issues/8538)
- Dialog blockScroll property not working without modal [\#8533](https://github.com/primefaces/primeng/issues/8533)
- TreeTable metakey selection not working with keyboard [\#8532](https://github.com/primefaces/primeng/issues/8532)
- Table Sortable Column Cannot Used with Filter Input Elements \(etc input multiselect...\) [\#8526](https://github.com/primefaces/primeng/issues/8526)
- Table State not Saving Column Width When Column Reordered [\#8506](https://github.com/primefaces/primeng/issues/8506)
- Carousel allowes navigation if too less items available [\#8500](https://github.com/primefaces/primeng/issues/8500)
- Carousel - Invalid Array Length error [\#8498](https://github.com/primefaces/primeng/issues/8498)
- TypeError: Cannot read property 'childNodes' of null [\#8340](https://github.com/primefaces/primeng/issues/8340)
- Galleria not updating as expected [\#7868](https://github.com/primefaces/primeng/issues/7868)
- dialog’s contentStyle to fail to set the height. [\#7308](https://github.com/primefaces/primeng/issues/7308)
- p-calendar doesn't disable months outside of minDate/maxDate with view="month" [\#7008](https://github.com/primefaces/primeng/issues/7008)
- TabView/TabPanel ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. Previous value: 'ui-helper-hidden: true'. Current value: 'ui-helper-hidden: false' [\#5826](https://github.com/primefaces/primeng/issues/5826)
- Accordion: \[activeIndex\] not bound when accordion tabs are created with \*ngFor [\#4458](https://github.com/primefaces/primeng/issues/4458)
- p-spinner \[\(ngModel\)\]=”value” binding does not fire by paste via right click context menu [\#3970](https://github.com/primefaces/primeng/issues/3970)
## [9.0.0-rc.4](https://github.com/primefaces/primeng/tree/9.0.0-rc.4) (2020-01-27)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.0.0-rc.3...9.0.0-rc.4)
**Implemented New Features and Enhancements:**
- P-Calendar fires onBlur event upon clicking a date in the calendar [\#7357](https://github.com/primefaces/primeng/issues/7357)
**Fixed bugs:**
- 'allSelected' does not exist on type 'MultiSelect' [\#8486](https://github.com/primefaces/primeng/issues/8486)
- ui-inputwrapper-filled doesn't change with toggleAll in multiselect [\#8484](https://github.com/primefaces/primeng/issues/8484)
- InputSwitch doesn't switch when clicked if it is inside a label [\#8466](https://github.com/primefaces/primeng/issues/8466)
- ui-inputwrapper-filled is not removed when multi-select options are deselected [\#8279](https://github.com/primefaces/primeng/issues/8279)
- p-dropdown: emptyFilterMessage does not work with optionLabel [\#7448](https://github.com/primefaces/primeng/issues/7448)
## [9.0.0-rc.3](https://github.com/primefaces/primeng/tree/9.0.0-rc.3) (2020-01-23)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.0.0-rc2...9.0.0-rc.3)
**Implemented New Features and Enhancements:**
- Keyboard accessible Horizontal TreeNode [\#8478](https://github.com/primefaces/primeng/issues/8478)
- Keyboard accessible Inplace [\#8477](https://github.com/primefaces/primeng/issues/8477)
- Unify focus visuals in Themes [\#8476](https://github.com/primefaces/primeng/issues/8476)
- Reimplement ConfirmDialog [\#8475](https://github.com/primefaces/primeng/issues/8475)
- Deprecate breakpoint and responsive properties of Dialog [\#8473](https://github.com/primefaces/primeng/issues/8473)
- Reimplement Dialog [\#8472](https://github.com/primefaces/primeng/issues/8472)
- Enhance ARIA roles and attributes for the components [\#8439](https://github.com/primefaces/primeng/issues/8439)
- Calendar - Keyboard Navigation Support [\#4695](https://github.com/primefaces/primeng/issues/4695)
**Fixed bugs:**
- Issue in Carousel component. Click events or href does not work on touch on mobile devices [\#8302](https://github.com/primefaces/primeng/issues/8302)
- Disabled steps item still receives focus [\#8479](https://github.com/primefaces/primeng/issues/8479)
- Frozen columns misalignment in Firefox [\#8474](https://github.com/primefaces/primeng/issues/8474)
- Scrollbar over footer cause display issue with frozen column [\#8431](https://github.com/primefaces/primeng/issues/8431)
- Table footer scroll not working using with Frozen Columns [\#8417](https://github.com/primefaces/primeng/issues/8417)
- Dropdown resetFilter method not clear filter input value [\#8408](https://github.com/primefaces/primeng/issues/8408)
- ConfirmDialog ignores blockScroll property [\#8395](https://github.com/primefaces/primeng/issues/8395)
- Drag and Drop is not working in PickList in Firefox web browser [\#8320](https://github.com/primefaces/primeng/issues/8320)
- Confirm dialog mask bug [\#8312](https://github.com/primefaces/primeng/issues/8312)
- Popup menu does not hide on document click when parent uses OnPush change detection [\#8226](https://github.com/primefaces/primeng/issues/8226)
## [9.0.0-rc.2](https://github.com/primefaces/primeng/tree/9.0.0-rc.2) (2019-12-05)
[Full Changelog](https://github.com/primefaces/primeng/compare/9.0.0-rc.1...9.0.0-rc.2)
**Fixed bugs:**
- PanelMenu header item does not render id [\#8379](https://github.com/primefaces/primeng/issues/8379)
- TableState resets paginator when sorting is enabled [\#8378](https://github.com/primefaces/primeng/issues/8378)
- Table selection not restored with TableState [\#8376](https://github.com/primefaces/primeng/issues/8376)
- Bug on dialog [\#8364](https://github.com/primefaces/primeng/issues/8364)
- Don't decrease page when totalRecords is not \(yet\) set [\#8358](https://github.com/primefaces/primeng/issues/8358)
- TreeTable column resize for footer [\#8351](https://github.com/primefaces/primeng/issues/8351)
- colorPicker - wrong color rendered [\#8334](https://github.com/primefaces/primeng/issues/8334)
- Dynamic Tooltip rendering wrong [\#8323](https://github.com/primefaces/primeng/issues/8323)
- Timer running even after calendar closing and opening [\#8296](https://github.com/primefaces/primeng/issues/8296)
- ConfirmDialog - Documentation - Incorrect Spelling 'Specifices' [\#8291](https://github.com/primefaces/primeng/issues/8291)
- Documentation error for FullCalendar [\#8286](https://github.com/primefaces/primeng/issues/8286)
- InputMask always setting class ui-inputwrapper-focus [\#8032](https://github.com/primefaces/primeng/issues/8032)
- Document that resetPageOnSort is only available in single sort [\#7953](https://github.com/primefaces/primeng/issues/7953)
## [9.0.0-rc.1](https://github.com/primefaces/primeng/tree/9.0.0-rc.1) (2019-11-26)
[Full Changelog](https://github.com/primefaces/primeng/compare/8.1.1...9.0.0-rc.1)
**Implemented New Features and Enhancements:**
- Angular 9 Compatibility [\#8347](https://github.com/primefaces/primeng/issues/8347)
- Add separator option to the SplitButton [\#8337](https://github.com/primefaces/primeng/issues/8337)
- Delete deprecated components [\#8328](https://github.com/primefaces/primeng/issues/8328)
- Delete deprecated properties [\#8322](https://github.com/primefaces/primeng/issues/8322)
- Delete Autocomplete immutable property [\#8313](https://github.com/primefaces/primeng/issues/8313)
- Add aria-required to Calendar [\#8278](https://github.com/primefaces/primeng/issues/8278)
- Feat\(ng-packagr\): use ng-packagr to build library [\#8057](https://github.com/primefaces/primeng/issues/8057)
**Fixed bugs:**
- Carousel - Invalid Array Length error when array length = 0 [\#8300](https://github.com/primefaces/primeng/issues/8300)
- Calendar Receives Keyboard Focus [\#8280](https://github.com/primefaces/primeng/issues/8280)
- Esc keyboard click is not hiding MultiSelect overlay [\#8181](https://github.com/primefaces/primeng/issues/8181)
**Unit Tests:**
- Angular 9 Compatibility for Unit Tests [\#8352](https://github.com/primefaces/primeng/issues/8352)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [8.2.9-LTS](https://www.npmjs.com/package/primeng-lts/v/8.2.9) (2020-10-12)
**Fixed bugs:**
- Align tiered menu behavior with menubar [\#9379](https://github.com/primefaces/primeng/issues/9379)
- DialogService onclose event not fired when you click close button after v9.0.3(include) [\#9345](https://github.com/primefaces/primeng/issues/9345)
- VirtualScroll ExpressionChangedAfterItHasBeenCheckedError on TreeTable [\#9254](https://github.com/primefaces/primeng/issues/9254)
- Slider handle not working correctly with model driven forms [\#9192](https://github.com/primefaces/primeng/issues/9192)
- Carousel - set page does not work for first and last page [\#9153](https://github.com/primefaces/primeng/issues/9153)
- TriStateCheckbox Keyboard gets opened on mobile devices on use [\#9085](https://github.com/primefaces/primeng/issues/9085)
- Table component tries to restore non-existing state [\#9076](https://github.com/primefaces/primeng/issues/9076)
- disabled p-slider still reacts to keyboard input [\#9066](https://github.com/primefaces/primeng/issues/9066)
- Multiple DynamicDialogs are not closing programmatically [\#8801](https://github.com/primefaces/primeng/issues/8801)
- SelectButton - reactive form and disabled control [\#8788](https://github.com/primefaces/primeng/issues/8788)
## ![LTS](https://www.primefaces.org/wp-content/uploads/2020/01/lts-icon-24.png "PrimeNG LTS") [8.2.8-LTS](https://www.npmjs.com/package/primeng-lts/v/8.2.8) (2020-09-23)
**Fixed bugs:**
- TreeTable openCell() not working [\#9279](https://github.com/primefaces/primeng/issues/9279)
- Turbo Table Column Resize Is Ignored If Smaller Than minWidth [expand mode] [\#8262](https://github.com/primefaces/primeng/issues/8262)