forked from primefaces/primeng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.md
3326 lines (2643 loc) · 252 KB
/
CHANGELOG.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
# Change Log
## [7.1.3](https://github.com/primefaces/primeng/tree/7.1.3) (2019-05-13)
[Full Changelog](https://github.com/primefaces/primeng/compare/7.1.2...7.1.3)
**Implemented New Features and Enhancements:**
- State save and restore events for Table [\#7666](https://github.com/primefaces/primeng/issues/7666)
- Improve relativePosition method in DomHandler [\#7653](https://github.com/primefaces/primeng/issues/7653)
- Improve Galleria styling [\#7652](https://github.com/primefaces/primeng/issues/7652)
- Left arrow press should focus parent on Tree [\#7619](https://github.com/primefaces/primeng/issues/7619)
- Update dynamic dialog animations [\#7598](https://github.com/primefaces/primeng/issues/7598)
- Update confirmDialog animations [\#7597](https://github.com/primefaces/primeng/issues/7597)
**Fixed bugs:**
- InputMask's style not working [\#7664](https://github.com/primefaces/primeng/issues/7664)
- The scroll bar is not moving correctly on the TurboTable with resizeMode="expand" [\#7659](https://github.com/primefaces/primeng/issues/7659)
- Menu \(Popup\) - double click on item reloads the page [\#7648](https://github.com/primefaces/primeng/issues/7648)
- p-spinner min/max validation on every keypress prevents manual input of value PrimeNG7.1.2 [\#7643](https://github.com/primefaces/primeng/issues/7643)
- \[Spinner\] \(7.1.2\) Decimal spinner control marked as invalid in Firefox [\#7625](https://github.com/primefaces/primeng/issues/7625)
- \[Spinner\] 7.1.2 introduces incompatible changes to spinner control [\#7624](https://github.com/primefaces/primeng/issues/7624)
- The value of Spinner component is not always updated after being manually changed. [\#7623](https://github.com/primefaces/primeng/issues/7623)
- Down arrow press on draggable Tree [\#7617](https://github.com/primefaces/primeng/issues/7617)
- Spinner max length does not work in version 7.1.2 [\#7616](https://github.com/primefaces/primeng/issues/7616)
- p-menubar without AutoDisplay not opening adjacent menu items [\#7600](https://github.com/primefaces/primeng/issues/7600)
- p-dialog not considering content scroll height on resize [\#7573](https://github.com/primefaces/primeng/issues/7573)
- Spinner doesn't get the state filled [\#7532](https://github.com/primefaces/primeng/issues/7532)
- p-fileUpload component has bug on select file [\#7149](https://github.com/primefaces/primeng/issues/7149)
**Unit Tests:**
- DragDrop Unit Test [\#7656](https://github.com/primefaces/primeng/issues/7656)
- TreeTable Unit Test [\#7649](https://github.com/primefaces/primeng/issues/7649)
- DynamicDialog Unit Test [\#7630](https://github.com/primefaces/primeng/issues/7630)
## [7.1.2](https://github.com/primefaces/primeng/tree/7.1.2) (2019-04-24)
[Full Changelog](https://github.com/primefaces/primeng/compare/7.1.1...7.1.2)
**Fixed bugs:**
- Wrong cursor behavior on Calendar with month view [\#7568](https://github.com/primefaces/primeng/issues/7568)
- Calendar navigator icons close the overlay [\#7566](https://github.com/primefaces/primeng/issues/7566)
- With focustrap for dialog you cannot tab past hidden or disabled elements [\#7561](https://github.com/primefaces/primeng/issues/7561)
- \[Calendar\]\[PrimeIcons\] - Chevrons lack tabindex which interrupts tabbing, empty href [\#6270](https://github.com/primefaces/primeng/issues/6270)
## [7.1.1](https://github.com/primefaces/primeng/tree/7.1.1) (2019-04-17)
[Full Changelog](https://github.com/primefaces/primeng/compare/7.1.0...7.1.1)
**Implemented New Features and Enhancements:**
- Add Ability to Expand All Table Rows on Header Click [\#6221](https://github.com/primefaces/primeng/issues/6221)
- Improving Accessibility for Visually Impaired Users Via Aria Attributes [\#6103](https://github.com/primefaces/primeng/issues/6103)
- Add onBlur and onFocus to RadioButton [\#7558](https://github.com/primefaces/primeng/issues/7558)
- Pass total page count to paginator left and right templates [\#7552](https://github.com/primefaces/primeng/issues/7552)
- Maximizable dialog container size improvement [\#7486](https://github.com/primefaces/primeng/issues/7486)
- On Accordion, the disabled head can be focused on [\#7473](https://github.com/primefaces/primeng/issues/7473)
- Update to FullCalendar 4.2.0 [\#7450](https://github.com/primefaces/primeng/issues/7450)
- Update dialog animations [\#7447](https://github.com/primefaces/primeng/issues/7447)
- Pagination bug when removing an item [\#7437](https://github.com/primefaces/primeng/issues/7437)
- loadingBody template for TreeTable VirtualScroll [\#7426](https://github.com/primefaces/primeng/issues/7426)
- Add virtualScroll feature to treeTable component [\#7056](https://github.com/primefaces/primeng/issues/7056)
- Two-way binding support for "first" property of Table [\#6932](https://github.com/primefaces/primeng/issues/6932)
- Add onOptionClick event to p-listbox [\#6161](https://github.com/primefaces/primeng/issues/6161)
- Add currentPageReport option to Paginator [\#6070](https://github.com/primefaces/primeng/issues/6070)
- Accessibility: aria-support for p-autocomplete advanced [\#6066](https://github.com/primefaces/primeng/issues/6066)
- Picklist reordering direction [\#6015](https://github.com/primefaces/primeng/issues/6015)
- Shift key selection for OrderList and PickList [\#6000](https://github.com/primefaces/primeng/issues/6000)
- p-table Lazy load and multiple select with Shift does not select the correct rows [\#5995](https://github.com/primefaces/primeng/issues/5995)
- FocusTrap for Dialog [\#4544](https://github.com/primefaces/primeng/issues/4544)
**Fixed bugs:**
- p-tree renders invalid html for accessibility [\#7550](https://github.com/primefaces/primeng/issues/7550)
- ConfirmDialog are moving from side to center with Safari [\#7545](https://github.com/primefaces/primeng/issues/7545)
- Three Unit tests are failed in a large display environment [\#7529](https://github.com/primefaces/primeng/issues/7529)
- TieredMenu submenu not hiding when onPush enabled [\#7518](https://github.com/primefaces/primeng/issues/7518)
- Table showcase documentation has minor error [\#7516](https://github.com/primefaces/primeng/issues/7516)
- Maximized dialog can remain below other dialogs [\#7499](https://github.com/primefaces/primeng/issues/7499)
- Context menu: submenu unexpectedly disappears [\#7485](https://github.com/primefaces/primeng/issues/7485)
- Autoresize moves scroll position when too large [\#7481](https://github.com/primefaces/primeng/issues/7481)
- Property ActiveIndex ignored in Galleria [\#7472](https://github.com/primefaces/primeng/issues/7472)
- ExpressionChangedAfterItHasBeenCheckedError in dropdown [\#7455](https://github.com/primefaces/primeng/issues/7455)
- p-spinner binds strings instead of numbers on manual input in PrimeNG 7.1.0 [\#7445](https://github.com/primefaces/primeng/issues/7445)
- Dropdown: autoWidth property wrong name [\#7394](https://github.com/primefaces/primeng/issues/7394)
- Calendar TouchUI doesn't open [\#7389](https://github.com/primefaces/primeng/issues/7389)
- TypeError: Cannot read property 'nodeName' of null at Table.handleRowClick [\#7363](https://github.com/primefaces/primeng/issues/7363)
- Weird behavior when expanding in treeTable [\#7362](https://github.com/primefaces/primeng/issues/7362)
- Calendar touchUI on mobile devices - Cannot use due to keyboard popup [\#7358](https://github.com/primefaces/primeng/issues/7358)
- p-panelMenu - Expression changed after checked [\#7351](https://github.com/primefaces/primeng/issues/7351)
- Selecting row doesn't work with inplace [\#7335](https://github.com/primefaces/primeng/issues/7335)
- selectedItemsLabel for Multiselect component plain text bug [\#7324](https://github.com/primefaces/primeng/issues/7324)
- Input range disabled property bug on touch events [\#6026](https://github.com/primefaces/primeng/issues/6026)
- Inputmask doesn't update model when invalid value is cleared [\#5994](https://github.com/primefaces/primeng/issues/5994)
**Unit Tests:**
- ContextMenu Unit Test [\#7512](https://github.com/primefaces/primeng/issues/7512)
- KeyFilter Unit Test Improvement [\#7506](https://github.com/primefaces/primeng/issues/7506)
- ProgressSpinner Unit Test [\#7505](https://github.com/primefaces/primeng/issues/7505)
- ColorPicker Unit Test [\#7501](https://github.com/primefaces/primeng/issues/7501)
- ScrollPanel Unit Test [\#7462](https://github.com/primefaces/primeng/issues/7462)
- Carousel Unit Test [\#7436](https://github.com/primefaces/primeng/issues/7436)
- Tree Unit Test Improvement [\#7414](https://github.com/primefaces/primeng/issues/7414)
## [7.1.0](https://github.com/primefaces/primeng/tree/7.1.0) (2019-03-13)
[Full Changelog](https://github.com/primefaces/primeng/compare/7.1.0-rc.1...7.1.0)
**Fixed bugs:**
- Horizontal scroll may cause misalignment when header elements receive focus [\#7376](https://github.com/primefaces/primeng/issues/7376)
- Dropdown does not have 100% with under .ui-fluid [\#7373](https://github.com/primefaces/primeng/issues/7373)
- Multiselect with \[selectionLimit\] = "1" throws exception [\#7221](https://github.com/primefaces/primeng/issues/7221)
## [7.1.0-rc.1](https://github.com/primefaces/primeng/tree/7.1.0-rc.1) (2019-03-05)
[Full Changelog](https://github.com/primefaces/primeng/compare/7.0.5...7.1.0-rc.1)
**Breaking changes:**
- Remove autoWidth from Dropdown [\#7337](https://github.com/primefaces/primeng/issues/7337)
- expandedRowKeys map value should be a boolean [\#7333](https://github.com/primefaces/primeng/issues/7333)
**Implemented New Features and Enhancements:**
- loadingBody template for Table VirtualScroll [\#7336](https://github.com/primefaces/primeng/issues/7336)
- onShow and onHide events for Menu [\#7307](https://github.com/primefaces/primeng/issues/7307)
- Turbo table column re-order: The drag and drop should not be possible on the same column [\#7295](https://github.com/primefaces/primeng/issues/7295)
- dropdownIcon property for AutoComplete [\#7265](https://github.com/primefaces/primeng/issues/7265)
- Add key option to TreeNode API [\#7237](https://github.com/primefaces/primeng/issues/7237)
- Filtering for TreeTable [\#7230](https://github.com/primefaces/primeng/issues/7230)
- Accessibility: Screen Reader for single option p-selectButton reads incorrectly [\#5952](https://github.com/primefaces/primeng/issues/5952)
- Add Input binding for p-inputMask to set the html attribute "autocomplete" [\#5948](https://github.com/primefaces/primeng/issues/5948)
- Add row index to ContextMenu for tables [\#5940](https://github.com/primefaces/primeng/issues/5940)
- TurboTable edit by row [\#5284](https://github.com/primefaces/primeng/issues/5284)
- Filtering for Tree [\#1683](https://github.com/primefaces/primeng/issues/1683)
**Fixed bugs:**
- p-spinner readonly do not affect buttons [\#7262](https://github.com/primefaces/primeng/issues/7262)
- p-spinner: readonly attribute value ignored [\#7261](https://github.com/primefaces/primeng/issues/7261)
- MultiSelect with filtering and virtual scroll enabled doesn't work properly. [\#7251](https://github.com/primefaces/primeng/issues/7251)
- Class name ui-table-resizer-helper in docs should be ui-column-resizer-helper [\#7246](https://github.com/primefaces/primeng/issues/7246)
- Spinner Tabindex ignored for Buttons [\#7238](https://github.com/primefaces/primeng/issues/7238)
- When using Overlaypanel with appendTo property, closing the overlay when clicking the panel. [\#7235](https://github.com/primefaces/primeng/issues/7235)
- Calendar incorrect minutes validation [\#7232](https://github.com/primefaces/primeng/issues/7232)
- showOtherMonths styling does not work [\#7222](https://github.com/primefaces/primeng/issues/7222)
- p-overlay arrow tip is always on left. [\#7220](https://github.com/primefaces/primeng/issues/7220)
- OverlayPanel arrow appears on the wrong side on PrimeNG 7.0.5 [\#7218](https://github.com/primefaces/primeng/issues/7218)
- P-slider decimal step not working [\#7202](https://github.com/primefaces/primeng/issues/7202)
- p-fileUpload: after upgrade to primeng 7 there is no possibility to get response [\#7179](https://github.com/primefaces/primeng/issues/7179)
- Add blockSroll support to p-confirmDialog [\#7172](https://github.com/primefaces/primeng/issues/7172)
- Calendar doesn't clean up modality [\#7170](https://github.com/primefaces/primeng/issues/7170)
- Autocomplete Multiple model become empty string when delete digits [\#7161](https://github.com/primefaces/primeng/issues/7161)
- Element is not defined in TextEditor Universal build [\#7122](https://github.com/primefaces/primeng/issues/7122)
- android dropdown and multiselect with filter fails [\#7030](https://github.com/primefaces/primeng/issues/7030)
- toast bottom-left needs css change [\#6887](https://github.com/primefaces/primeng/issues/6887)
- SplitButton & TieredMenu - double click on item reloads the page [\#6822](https://github.com/primefaces/primeng/issues/6822)
- p-spinner with mininum set, on lose focus not setting null if empty value [\#6798](https://github.com/primefaces/primeng/issues/6798)
- Menubar gets closed immediately after mouse enter on menu-item when AutoDisplay property as false [\#6657](https://github.com/primefaces/primeng/issues/6657)
- Misalignment with frozen columns [\#6560](https://github.com/primefaces/primeng/issues/6560)
- "Cannot read property 'offsetParent' of null" when changing the route on autocomplete selection [\#6259](https://github.com/primefaces/primeng/issues/6259)
- Tree: checkbox selection, items where 'selectable:false' don't have a check box [\#6144](https://github.com/primefaces/primeng/issues/6144)
- p-tableHeaderCheckbox check with a single space key press [\#6006](https://github.com/primefaces/primeng/issues/6006)
- pKeyFilter stops enter from submitting form [\#5931](https://github.com/primefaces/primeng/issues/5931)
## [7.0.5](https://github.com/primefaces/primeng/tree/7.0.5) (2019-01-24)
[Full Changelog](https://github.com/primefaces/primeng/compare/7.0.4...7.0.5)
**Breaking changes:**
- Reimplement ConfirmDialog Positioning [\#7164](https://github.com/primefaces/primeng/issues/7164)
**Implemented New Features and Enhancements:**
- Screen reader support for multiselect, dropdown and listbox options [\#7169](https://github.com/primefaces/primeng/issues/7169)
- Add showPassword prop to Password component [\#7083](https://github.com/primefaces/primeng/issues/7083)
- DOM Handler causes incorrect offset in components that use "relativePosition" [\#6803](https://github.com/primefaces/primeng/issues/6803)
- Expose Dialog icons for easier customization [\#6102](https://github.com/primefaces/primeng/issues/6102)
- Update time separator in Calendar component with timeOnly [\#5917](https://github.com/primefaces/primeng/issues/5917)
- Focus method for Input Mask component. [\#5874](https://github.com/primefaces/primeng/issues/5874)
- files property on p-fileUpload fail [\#5817](https://github.com/primefaces/primeng/issues/5817)
- Filter inputs in component should have aria-label for accessibility [\#5811](https://github.com/primefaces/primeng/issues/5811)
- Accessibility: p-dropdown does not contain children with role=option [\#5809](https://github.com/primefaces/primeng/issues/5809)
- InputMask misses an INPUT event [\#5799](https://github.com/primefaces/primeng/issues/5799)
- Add scrollTop method to ScrollPanel [\#5787](https://github.com/primefaces/primeng/issues/5787)
- Use HTTPClient in FileUpload [\#4945](https://github.com/primefaces/primeng/issues/4945)
- Incorrect semantic use of HTML label element in multiselect [\#2306](https://github.com/primefaces/primeng/issues/2306)
**Fixed bugs:**
- Themes should not override icons [\#7168](https://github.com/primefaces/primeng/issues/7168)
- The borders of table don't appear on IE [\#7167](https://github.com/primefaces/primeng/issues/7167)
- SplitButton rounded corners broken under 640px [\#7162](https://github.com/primefaces/primeng/issues/7162)
- p-sidebar dimissable flag is not re-evaluated when its value changes [\#7157](https://github.com/primefaces/primeng/issues/7157)
- TurboTable resize columns when clicked only [\#7140](https://github.com/primefaces/primeng/issues/7140)
- Two Null Valued Table Filtering Bugs [\#7134](https://github.com/primefaces/primeng/issues/7134)
- ClearState method is cleaning all states. It should clears only stateKey state. [\#7124](https://github.com/primefaces/primeng/issues/7124)
- closeOnEscape property not working on p-dialog [\#7123](https://github.com/primefaces/primeng/issues/7123)
- p-spinner truncates decimal part for step bigger than 1 [\#7115](https://github.com/primefaces/primeng/issues/7115)
- Up/Down arrow press on draggable Tree [\#7080](https://github.com/primefaces/primeng/issues/7080)
- Accordion space-bar toggle event not working in IE [\#5898](https://github.com/primefaces/primeng/issues/5898)
- Error loading captcha with angular 6 [\#5881](https://github.com/primefaces/primeng/issues/5881)
- p-table column reordering still not working [\#5878](https://github.com/primefaces/primeng/issues/5878)
- OverlayPanel doesn't close on iPhone [\#5870](https://github.com/primefaces/primeng/issues/5870)
- Editor insert image does not update value [\#5841](https://github.com/primefaces/primeng/issues/5841)
- ConfirmDialog doesn't always re-center on browser resize [\#5834](https://github.com/primefaces/primeng/issues/5834)
- Turbo Table: Shows scrollbars on Edge and IE11 even though \[scrollable\] is disabled [\#5824](https://github.com/primefaces/primeng/issues/5824)
- MenuItem\#styleClass suppport for Steps [\#5805](https://github.com/primefaces/primeng/issues/5805)
## [7.0.4](https://github.com/primefaces/primeng/tree/7.0.4) (2018-1-7)
[Full Changelog](https://github.com/primefaces/primeng/compare/7.0.3...7.0.4)
**Implemented New Features and Enhancements:**
- Make DomHandler and ObjectUtils Static Utilities rather than Services [\#7073](https://github.com/primefaces/primeng/issues/7073)
- Table HeaderCheckBox not working when Filtered row count equal to the selected row count [\#7062](https://github.com/primefaces/primeng/issues/7062)
- Accent support in Table Filtering [\#7005](https://github.com/primefaces/primeng/issues/7005)
- Empty message for PickList [\#6967](https://github.com/primefaces/primeng/issues/6967)
- Performance improvements on TreeTable [\#6898](https://github.com/primefaces/primeng/issues/6898)
- InputGroup support for InputMask [\#5783](https://github.com/primefaces/primeng/issues/5783)
- Improve keyboard accessibility for SelectButton and ToggleButton [\#5739](https://github.com/primefaces/primeng/issues/5739)
- MultiSelect dropdown click event [\#5701](https://github.com/primefaces/primeng/issues/5701)
- More options for Editor [\#5695](https://github.com/primefaces/primeng/issues/5695)
- add support for 3rd party modules to quill editor \(image drop and resize\) [\#5622](https://github.com/primefaces/primeng/issues/5622)
- Lazy loading doesn't work on the Accordion [\#5621](https://github.com/primefaces/primeng/issues/5621)
- using multiple lines in p-message\(s\) breaks layout [\#5614](https://github.com/primefaces/primeng/issues/5614)
- p-calendar dateFormat into locale [\#5585](https://github.com/primefaces/primeng/issues/5585)
- Floating label support for textarea [\#5560](https://github.com/primefaces/primeng/issues/5560)
- Custom content support for TabMenu [\#3018](https://github.com/primefaces/primeng/issues/3018)
- Growl should support Message's with arbitrary timeouts [\#2590](https://github.com/primefaces/primeng/issues/2590)
**Fixed bugs:**
- TurboTable is not properly unbinding the body scroll listener [\#7074](https://github.com/primefaces/primeng/issues/7074)
- PickList dragdrop may conflict with other PickLists [\#7072](https://github.com/primefaces/primeng/issues/7072)
- OrderList dragdrop may conflict with other OrderLists [\#7071](https://github.com/primefaces/primeng/issues/7071)
- Table state not working when reorderableColumns being false [\#7057](https://github.com/primefaces/primeng/issues/7057)
- Multiselect Header Checkbox is not working correctly [\#7047](https://github.com/primefaces/primeng/issues/7047)
- Editor active item is not highlighted in toolbar [\#7041](https://github.com/primefaces/primeng/issues/7041)
- Multiselect Keyboard Support Not Working [\#7039](https://github.com/primefaces/primeng/issues/7039)
- style and styleClass for ConfirmDialog [\#7017](https://github.com/primefaces/primeng/issues/7017)
- p-textarea resize bug when used in an overlay + tabs [\#7000](https://github.com/primefaces/primeng/issues/7000)
- AutoComplete onSelect bug with forceSelection [\#6943](https://github.com/primefaces/primeng/issues/6943)
- Autocomplete control does not validate properly when you empty the control [\#6934](https://github.com/primefaces/primeng/issues/6934)
- MenuItem\#styleClass suppport for Steps [\#5805](https://github.com/primefaces/primeng/issues/5805)
- Improve Docs for CodeHighlighter [\#5792](https://github.com/primefaces/primeng/issues/5792)
- Advanced File Upload Defect with cancel buttons [\#5765](https://github.com/primefaces/primeng/issues/5765)
- Primeng KeyFilter does not working well when user do Cut, Copy and Paste [\#5752](https://github.com/primefaces/primeng/issues/5752)
- Separator causes menubar to break to new line [\#5741](https://github.com/primefaces/primeng/issues/5741)
- "in" doesn't properly filter value of null for Table [\#5735](https://github.com/primefaces/primeng/issues/5735)
- pDefer creates duplicate content [\#5730](https://github.com/primefaces/primeng/issues/5730)
- Dialog can be resized/dragged outside the viewport [\#5713](https://github.com/primefaces/primeng/issues/5713)
- Dialog doesn't render in Responsive when loaded from mobile view [\#5662](https://github.com/primefaces/primeng/issues/5662)
- Dataview doesn't reset to first page after filtering [\#5599](https://github.com/primefaces/primeng/issues/5599)
**Unit Tests:**
- Table Unit Test [\#7032](https://github.com/primefaces/primeng/issues/7032)
## [7.0.3](https://github.com/primefaces/primeng/tree/7.0.3) (2018-12-14)
[Full Changelog](https://github.com/primefaces/primeng/compare/7.0.2...7.0.3)
**Fixed bugs:**
- Global Filtering Broken in Table [\#7004](https://github.com/primefaces/primeng/issues/7004)
## [7.0.2](https://github.com/primefaces/primeng/tree/7.0.2) (2018-12-14)
[Full Changelog](https://github.com/primefaces/primeng/compare/7.0.1...7.0.2)
**Implemented New Features and Enhancements:**
- Improve Radio/Checkbox focus visuals on free themes [\#6999](https://github.com/primefaces/primeng/issues/6999)
**Fixed bugs:**
- Aot build not working with fullTemplateTypeCheck option [\#7001](https://github.com/primefaces/primeng/issues/7001)
## [7.0.1](https://github.com/primefaces/primeng/tree/7.0.1) (2018-12-13)
[Full Changelog](https://github.com/primefaces/primeng/compare/7.0.0...7.0.1)
**Implemented New Features and Enhancements:**
- Tree and TreeTable toggle icon selects text [\#6983](https://github.com/primefaces/primeng/issues/6983)
- Refactor OrderList/PickList keyboard navigation [\#6980](https://github.com/primefaces/primeng/issues/6980)
- Refactor MultiSelect keyboard navigation [\#6979](https://github.com/primefaces/primeng/issues/6979)
- Refactor Listbox keyboard navigation [\#6978](https://github.com/primefaces/primeng/issues/6978)
- Refactor deepEquals implementation of ObjectUtils [\#6977](https://github.com/primefaces/primeng/issues/6977)
- Unnecessary save state at filtering during state restore [\#6969](https://github.com/primefaces/primeng/issues/6969)
- Acentuation insensitive filtering for componens having filters [\#6966](https://github.com/primefaces/primeng/issues/6966)
- Clear State Method [\#6950](https://github.com/primefaces/primeng/issues/6950)
- Autofocus on Autocomplete [\#6942](https://github.com/primefaces/primeng/issues/6942)
- VirtualScroller for MultiSelect [\#3952](https://github.com/primefaces/primeng/issues/3952)
- Unitless Dialog Width-Height [\#1990](https://github.com/primefaces/primeng/issues/1990)
**Fixed bugs:**
- Listbox filter does not allow upper case [\#6981](https://github.com/primefaces/primeng/issues/6981)
- SelectButton templating is not aligned with other Select components [\#6974](https://github.com/primefaces/primeng/issues/6974)
- TableState may fail if data gets initialized before state restore [\#6968](https://github.com/primefaces/primeng/issues/6968)
- DynamicDialogModule Could not find a declaration file for module [\#6954](https://github.com/primefaces/primeng/issues/6954)
- Dialog without footer has extra space at the bottom [\#6850](https://github.com/primefaces/primeng/issues/6850)
- Dropdown and MultiSelect converts filter value to lowercase [\#6779](https://github.com/primefaces/primeng/issues/6779)
- Slider onSlideEnd does not fire on touch end [\#4173](https://github.com/primefaces/primeng/issues/4173)
## [7.0.0-rc.1](https://github.com/primefaces/primeng/tree/7.0.0-rc.1) (2018-11-27)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.1.7...7.0.0-rc.1)
**Implemented New Features and Enhancements:**
- Keyboard support for PickList component [\#6897](https://github.com/primefaces/primeng/issues/6897)
- Keyboard support for OrderList component [\#6892](https://github.com/primefaces/primeng/issues/6892)
- Keyboard support for Listbox component [\#6883](https://github.com/primefaces/primeng/issues/6883)
- New Component: p-virtualScroll [\#6869](https://github.com/primefaces/primeng/issues/6869)
- Hide overlays on window resize [\#6834](https://github.com/primefaces/primeng/issues/6834)
- Holding down the up/down arrows should continue to scroll the numbers in timepicker [\#6783](https://github.com/primefaces/primeng/issues/6783)
- CSS calc support for Table ScrollHeight [\#6756](https://github.com/primefaces/primeng/issues/6756)
- Add search box to the sidebar of Showcase [\#6637](https://github.com/primefaces/primeng/issues/6637)
- p-inputSwitch: readonly support request [\#6332](https://github.com/primefaces/primeng/issues/6332)
- Keyboard support for MultiSelect component [\#6025](https://github.com/primefaces/primeng/issues/6025)
- Header/Footer template for MultiSelect [\#5950](https://github.com/primefaces/primeng/issues/5950)
- Add filtering / FilterBy into MultiSelect component [\#5172](https://github.com/primefaces/primeng/issues/5172)
- Ability to cancel dropping node from p-tree [\#3544](https://github.com/primefaces/primeng/issues/3544)
- Improve ContextMenu collision detection [\#3261](https://github.com/primefaces/primeng/issues/3261)
- DialogService for Dynamic Dialogs [\#1940](https://github.com/primefaces/primeng/issues/1940)
- Arrow for OverlayPanel [\#1474](https://github.com/primefaces/primeng/issues/1474)
- TableState for Table [\#304](https://github.com/primefaces/primeng/issues/304)
**Fixed bugs:**
- PickList - OrderList does not highlight drop points [\#6915](https://github.com/primefaces/primeng/issues/6915)
- OverlayPanel issues with components with overlays as children [\#6907](https://github.com/primefaces/primeng/issues/6907)
- p-listbox toggle-all checkbox is autochecked when filter matches no items [\#6903](https://github.com/primefaces/primeng/issues/6903)
- When custom template is provided; select button will unnecesarily manipulate options [\#6876](https://github.com/primefaces/primeng/issues/6876)
- Calendar touchui doesn't close correctly with tab key [\#6863](https://github.com/primefaces/primeng/issues/6863)
- Expandable rows compatibility issues with row selection [\#6861](https://github.com/primefaces/primeng/issues/6861)
- Pagination values mismatch after filtering [\#6859](https://github.com/primefaces/primeng/issues/6859)
- Remove moveOnTop from Dialog mousedown [\#6857](https://github.com/primefaces/primeng/issues/6857)
- Multiselect error fix [\#6838](https://github.com/primefaces/primeng/issues/6838)
- Toast autoZIndex not working correctly [\#6825](https://github.com/primefaces/primeng/issues/6825)
- Fileupload style not working [\#6817](https://github.com/primefaces/primeng/issues/6817)
- Radiobutton onClick is emitted before the form value is changed [\#6780](https://github.com/primefaces/primeng/issues/6780)
- Horizontal scrollable table header borders missing on IE [\#6768](https://github.com/primefaces/primeng/issues/6768)
- Pagination Page Numbers Wrapping After 100 Pages [\#6153](https://github.com/primefaces/primeng/issues/6153)
- Progress Spinner does not work in IE [\#4313](https://github.com/primefaces/primeng/issues/4313)
- Calendars inline with icons overlapping [\#3684](https://github.com/primefaces/primeng/issues/3684)
**Deprecated:**
- Deprecate DataScroller [\#6870](https://github.com/primefaces/primeng/issues/6870)
**Unit Tests:**
- Slider Unit Test Need Improvement [\#6848](https://github.com/primefaces/primeng/issues/6848)
- InputText Unit Test Need Improvement [\#6847](https://github.com/primefaces/primeng/issues/6847)
- CodeHighlighter Unit Test Need Improvement [\#6845](https://github.com/primefaces/primeng/issues/6845)
- Breadcrumb Unit Test Need Improvement [\#6844](https://github.com/primefaces/primeng/issues/6844)
- Dialog Unit Test Need Improvement [\#6843](https://github.com/primefaces/primeng/issues/6843)
- InputSwitch Unit Test Need Improvement [\#6842](https://github.com/primefaces/primeng/issues/6842)
- Autocomplete Unit Test is Crashing [\#6821](https://github.com/primefaces/primeng/issues/6821)
- ConfrimDialog Unit Test is Crashing [\#6820](https://github.com/primefaces/primeng/issues/6820)
- Calendar Unit Test is Crashing [\#6818](https://github.com/primefaces/primeng/issues/6818)
- Fileupload Unit Test [\#6816](https://github.com/primefaces/primeng/issues/6816)
## [6.1.7](https://github.com/primefaces/primeng/tree/6.1.7) (2018-11-23)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.1.6...6.1.7)
**Fixed bugs:**
- OverlayPanel issues with components with overlays as children [\#6907](https://github.com/primefaces/primeng/issues/6907)
## [6.1.6](https://github.com/primefaces/primeng/tree/6.1.6) (2018-11-09)
[Full Changelog](https://github.com/primefaces/primeng/compare/7.0.0-beta.1...6.1.6)
**Implemented New Features and Enhancements:**
- Select a tree node with enter key [\#6836](https://github.com/primefaces/primeng/issues/6836)
**Fixed bugs:**
- Multiselect error fix [\#6838](https://github.com/primefaces/primeng/issues/6838)
## [7.0.0-beta.1](https://github.com/primefaces/primeng/tree/7.0.0-beta.1) (2018-10-25)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.1.5...7.0.0-beta.1)
**Implemented New Features and Enhancements:**
- Calendar should reset the UI when opening for the second time [\#6765](https://github.com/primefaces/primeng/issues/6765)
- Clicking outside of the TreeTable should close editing cell [\#6763](https://github.com/primefaces/primeng/issues/6763)
- Keyboard navigation for TreeTable [\#6762](https://github.com/primefaces/primeng/issues/6762)
- Keyboard accessible sort headers for Table and TreeTable [\#6761](https://github.com/primefaces/primeng/issues/6761)
- Replace href="\#" with tabindex="0" [\#6760](https://github.com/primefaces/primeng/issues/6760)
- Deprecate p-schedule in favor of the new p-fullCalendar [\#6758](https://github.com/primefaces/primeng/issues/6758)
- Improve button focus visuals on Nova and Luna [\#6754](https://github.com/primefaces/primeng/issues/6754)
- Clicking outside of the Table should close editing cell [\#6753](https://github.com/primefaces/primeng/issues/6753)
- Select a tree node with enter key [\#6715](https://github.com/primefaces/primeng/issues/6715)
- Rename title/subtitle properties of Card [\#6703](https://github.com/primefaces/primeng/issues/6703)
- Keyboard Support for Table Row Selection [\#5762](https://github.com/primefaces/primeng/issues/5762)
- positionTop, positionLeft and breakpoint for ConfirmDialog [\#5534](https://github.com/primefaces/primeng/issues/5534)
- readonly support for MultiSelect [\#5506](https://github.com/primefaces/primeng/issues/5506)
- Create CHANGELOG.md [\#1675](https://github.com/primefaces/primeng/issues/1675)
**Fixed bugs:**
- Unselectable rows still get hover on Table [\#6751](https://github.com/primefaces/primeng/issues/6751)
- TreeTable frozen columns alignment issue [\#6748](https://github.com/primefaces/primeng/issues/6748)
- MultiSelect with resetFilterOnHide: input clears on hide, but objects are not refiltered [\#6740](https://github.com/primefaces/primeng/issues/6740)
- Carousel firstVisible is ignored [\#6728](https://github.com/primefaces/primeng/issues/6728)
- Table: blur event not called from an editable cell [\#6701](https://github.com/primefaces/primeng/issues/6701)
- Table.reset\(\) shouldn't reset the sortOrder to 1 [\#5546](https://github.com/primefaces/primeng/issues/5546)
- Slider does not reflect initially bound value when OnPush strategy is used [\#5530](https://github.com/primefaces/primeng/issues/5530)
**Unit Tests:**
- Message Unit Test [\#6698](https://github.com/primefaces/primeng/issues/6698)
## [6.1.5](https://github.com/primefaces/primeng/tree/6.1.5) (2018-10-15)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.1.4...6.1.5)
**Implemented New Features and Enhancements:**
- Accordion tab should be toggled with enter key as well [\#6685](https://github.com/primefaces/primeng/issues/6685)
- Use Flex for OrderList layout [\#6670](https://github.com/primefaces/primeng/issues/6670)
- onClickClick event for Chips component [\#6668](https://github.com/primefaces/primeng/issues/6668)
- Customizable animation transition options per component [\#6652](https://github.com/primefaces/primeng/issues/6652)
- Paginated & lazy loaded TurboTable should not truncate rows added manually [\#6634](https://github.com/primefaces/primeng/issues/6634)
- Reimplement Textarea AutoSize [\#6626](https://github.com/primefaces/primeng/issues/6626)
- TurboTable: provide rowIndex property in event when toggleRowWithCheckbox and toggleRowWithRadio triggered [\#6617](https://github.com/primefaces/primeng/issues/6617)
- Add a property "inputId" in p-dropdown [\#6602](https://github.com/primefaces/primeng/issues/6602)
- Aria properties for AutoComplete [\#6565](https://github.com/primefaces/primeng/issues/6565)
- Add support of "iconPos" to p-toggleButton [\#6526](https://github.com/primefaces/primeng/issues/6526)
- SlideMenu ignores MenuItem.visible flag [\#6330](https://github.com/primefaces/primeng/issues/6330)
- p-panel toggle on header click [\#5694](https://github.com/primefaces/primeng/issues/5694)
- Remove the link displayed at bottom corner when hovering the accordion/tabview header [\#5518](https://github.com/primefaces/primeng/issues/5518)
- Ability to clear listbox filter [\#4680](https://github.com/primefaces/primeng/issues/4680)
- Enhancement: OrderList: new property to place "order panel" on the left or right side [\#4299](https://github.com/primefaces/primeng/issues/4299)
- onShow and onHide events for Dropdown [\#2172](https://github.com/primefaces/primeng/issues/2172)
- Keyboard and Screen Reader support for Vertical Tree component [\#1861](https://github.com/primefaces/primeng/issues/1861)
- Selected Items binding to OrderList [\#1797](https://github.com/primefaces/primeng/issues/1797)
- Optgroup for Dropdown [\#1221](https://github.com/primefaces/primeng/issues/1221)
**Fixed bugs:**
- Dialog may not get maximized [\#6697](https://github.com/primefaces/primeng/issues/6697)
- Multiselect defaultLabel model binding does not work [\#6665](https://github.com/primefaces/primeng/issues/6665)
- p-chips disabled issue [\#6661](https://github.com/primefaces/primeng/issues/6661)
- Calendar accepts invalid/disabled \(typed\) date when editable \(readonlyInput not set\) [\#6655](https://github.com/primefaces/primeng/issues/6655)
- TabView breaks and shows multiple panels when toggling visibility [\#6621](https://github.com/primefaces/primeng/issues/6621)
- TurboTable: Disabled TableHeaderCheckbox is clickable [\#6618](https://github.com/primefaces/primeng/issues/6618)
- Spinner inputStyle type is wrong [\#6597](https://github.com/primefaces/primeng/issues/6597)
- Issue with p-table pTemplate="frozenfooter" not displaying at all and frozenrow show bottom [\#6592](https://github.com/primefaces/primeng/issues/6592)
- Month is not highlighted when the date is not the first day of the month. [\#6535](https://github.com/primefaces/primeng/issues/6535)
- PickList onSourceReorder/onTargetReorder callbacks are not called when reordering the list via dragging of elements [\#6523](https://github.com/primefaces/primeng/issues/6523)
- onHide event not triggered in version 6.1.4 for dialog and overlayPanel [\#6520](https://github.com/primefaces/primeng/issues/6520)
- Listbox header is shown when it should not be. [\#6499](https://github.com/primefaces/primeng/issues/6499)
- Lightbox doesn't behave correctly when the onPush change-detection strategy is used [\#6488](https://github.com/primefaces/primeng/issues/6488)
- OverlayPanel show method not working [\#6467](https://github.com/primefaces/primeng/issues/6467)
- Changing p-schedule option causes no refresh [\#6386](https://github.com/primefaces/primeng/issues/6386)
**Unit Tests:**
- Messages Unit Test [\#6696](https://github.com/primefaces/primeng/issues/6696)
- Terminal Unit Test [\#6691](https://github.com/primefaces/primeng/issues/6691)
- BlockUI unit test [\#6684](https://github.com/primefaces/primeng/issues/6684)
- Inplace unit test [\#6683](https://github.com/primefaces/primeng/issues/6683)
- InputTextArea Unit Test [\#6679](https://github.com/primefaces/primeng/issues/6679)
- InputTextArea unit test [\#6678](https://github.com/primefaces/primeng/issues/6678)
- slidemenu unit test need improvement [\#6677](https://github.com/primefaces/primeng/issues/6677)
- Dialog unit test [\#6648](https://github.com/primefaces/primeng/issues/6648)
- Slidemenu unit test [\#6644](https://github.com/primefaces/primeng/issues/6644)
- Radiobutton unit test [\#6641](https://github.com/primefaces/primeng/issues/6641)
- Tieredmenu unit test [\#6640](https://github.com/primefaces/primeng/issues/6640)
- Autocomplete unit test [\#6638](https://github.com/primefaces/primeng/issues/6638)
- Chips unit test [\#6620](https://github.com/primefaces/primeng/issues/6620)
- Picklist unit test [\#6600](https://github.com/primefaces/primeng/issues/6600)
- picklist unit test [\#6599](https://github.com/primefaces/primeng/issues/6599)
- Spinner unit test [\#6598](https://github.com/primefaces/primeng/issues/6598)
- Spinner unit test [\#6595](https://github.com/primefaces/primeng/issues/6595)
- Checkbox unit test [\#6589](https://github.com/primefaces/primeng/issues/6589)
- Selectbutton unit test [\#6588](https://github.com/primefaces/primeng/issues/6588)
- Calendar unit test [\#6586](https://github.com/primefaces/primeng/issues/6586)
- Listbox unit test [\#6585](https://github.com/primefaces/primeng/issues/6585)
- Megamenu unit test [\#6581](https://github.com/primefaces/primeng/issues/6581)
- Tristatecheckbox unit test [\#6580](https://github.com/primefaces/primeng/issues/6580)
- Orderlist unit test [\#6578](https://github.com/primefaces/primeng/issues/6578)
- calendar unit test [\#6571](https://github.com/primefaces/primeng/issues/6571)
- menubar unit test [\#6515](https://github.com/primefaces/primeng/issues/6515)
## [6.1.4](https://github.com/primefaces/primeng/tree/6.1.4) (2018-09-18)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.1.3...6.1.4)
**Implemented New Features and Enhancements:**
- Rewrite Spinner [\#6496](https://github.com/primefaces/primeng/issues/6496)
- New Luna Free Dark Theme Family [\#6491](https://github.com/primefaces/primeng/issues/6491)
- Improving accessibility for input mask [\#6465](https://github.com/primefaces/primeng/issues/6465)
- Keyboard search for Dropdown [\#3342](https://github.com/primefaces/primeng/issues/3342)
- New grid system based on flex [\#3298](https://github.com/primefaces/primeng/issues/3298)
- ContextMenu - enable left click listener [\#3215](https://github.com/primefaces/primeng/issues/3215)
**Fixed bugs:**
- Dragging a textarea in a draggable header should be prevented. [\#6510](https://github.com/primefaces/primeng/issues/6510)
- Calendar button goes out of bounds in Nova [\#6498](https://github.com/primefaces/primeng/issues/6498)
- Table row reorder indicator not visible on Nova [\#6497](https://github.com/primefaces/primeng/issues/6497)
- OrderList incorrect multiple items reorder on move top\bottom [\#6473](https://github.com/primefaces/primeng/issues/6473)
- Bug in date equality causes wrong initialization of dropdown with date value [\#6469](https://github.com/primefaces/primeng/issues/6469)
- Dialog/OverlayPanel onHide triggered when destroying an hidden dialog [\#6442](https://github.com/primefaces/primeng/issues/6442)
- InputSwitch not firing change detection on external value change with Push Strategy [\#6434](https://github.com/primefaces/primeng/issues/6434)
- Documentation typo on Calendar [\#6430](https://github.com/primefaces/primeng/issues/6430)
- p-dropdown input filter does not get focus anymore [\#6388](https://github.com/primefaces/primeng/issues/6388)
- problem with p-spinner and decimal \(5.2.4\) [\#5490](https://github.com/primefaces/primeng/issues/5490)
**Unit Tests:**
- spinner unit test not working [\#6500](https://github.com/primefaces/primeng/issues/6500)
- panel menu unit test [\#6484](https://github.com/primefaces/primeng/issues/6484)
- menu unit test [\#6483](https://github.com/primefaces/primeng/issues/6483)
- paginator unit test [\#6480](https://github.com/primefaces/primeng/issues/6480)
- slidemenu unit test [\#6475](https://github.com/primefaces/primeng/issues/6475)
- picklist unit test [\#6468](https://github.com/primefaces/primeng/issues/6468)
- orderlist unit test [\#6452](https://github.com/primefaces/primeng/issues/6452)
- calendar unit test [\#6437](https://github.com/primefaces/primeng/issues/6437)
- tieredmenu unit test [\#6428](https://github.com/primefaces/primeng/issues/6428)
## [6.1.3](https://github.com/primefaces/primeng/tree/6.1.3) (2018-08-30)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.1.2...6.1.3)
**Implemented New Features and Enhancements:**
- Dynamic year range for Calendar [\#6415](https://github.com/primefaces/primeng/issues/6415)
- Bold font weight for Table headers [\#6409](https://github.com/primefaces/primeng/issues/6409)
- Add nodeTrackBy to Tree [\#6378](https://github.com/primefaces/primeng/issues/6378)
- Improve shared OverlayPanel display [\#6377](https://github.com/primefaces/primeng/issues/6377)
- Tabview with custom html in the header [\#2462](https://github.com/primefaces/primeng/issues/2462)
**Fixed bugs:**
- p-multiSelect disabled option still possible to select [\#6422](https://github.com/primefaces/primeng/issues/6422)
- MultiSelect display broken if an option is selected and removed [\#6413](https://github.com/primefaces/primeng/issues/6413)
- p-calendar's navigation \(left/right\) is not in sync with selected date, if date is not in current year [\#6393](https://github.com/primefaces/primeng/issues/6393)
- Disabled option\(s\) in p-dropdown are selectable [\#6368](https://github.com/primefaces/primeng/issues/6368)
- ConfirmDialog `appendTo` is broken [\#6362](https://github.com/primefaces/primeng/issues/6362)
- ConfirmDialog screen position not working properly [\#6342](https://github.com/primefaces/primeng/issues/6342)
- Password component throws an error when handling keyup events and feedback is false [\#6334](https://github.com/primefaces/primeng/issues/6334)
- dropdown does not close on selection when change detection is on push [\#6193](https://github.com/primefaces/primeng/issues/6193)
- Calendar not closing on first click when with onPush strategy [\#6174](https://github.com/primefaces/primeng/issues/6174)
- Schedule control not showing events [\#6154](https://github.com/primefaces/primeng/issues/6154)
- p-dialog with height has invalid behavior while resizing [\#5974](https://github.com/primefaces/primeng/issues/5974)
- p-dialog - Size of dialog gets stuck on window zoom or resize [\#5336](https://github.com/primefaces/primeng/issues/5336)
**Unit Tests:**
- steps unit test [\#6424](https://github.com/primefaces/primeng/issues/6424)
- tabmenu unit test [\#6423](https://github.com/primefaces/primeng/issues/6423)
- megamenu unit test [\#6417](https://github.com/primefaces/primeng/issues/6417)
- breadcrumb unit test [\#6405](https://github.com/primefaces/primeng/issues/6405)
- toolbar unit test [\#6403](https://github.com/primefaces/primeng/issues/6403)
- card unit test [\#6402](https://github.com/primefaces/primeng/issues/6402)
- listbox unit test [\#6399](https://github.com/primefaces/primeng/issues/6399)
- tristatecheckbox unit test [\#6398](https://github.com/primefaces/primeng/issues/6398)
- inputswitch unit test [\#6397](https://github.com/primefaces/primeng/issues/6397)
- slider unit test [\#6382](https://github.com/primefaces/primeng/issues/6382)
- confirmDialog unit test [\#6381](https://github.com/primefaces/primeng/issues/6381)
- overlaypanel unit test [\#6374](https://github.com/primefaces/primeng/issues/6374)
- sidebar unit test [\#6373](https://github.com/primefaces/primeng/issues/6373)
- rating unit test [\#6359](https://github.com/primefaces/primeng/issues/6359)
- multiselect unit test [\#6353](https://github.com/primefaces/primeng/issues/6353)
- Progressbar unit test [\#6348](https://github.com/primefaces/primeng/issues/6348)
- dropdown unit test [\#6347](https://github.com/primefaces/primeng/issues/6347)
- Split button unit test notation is not smooth [\#6337](https://github.com/primefaces/primeng/issues/6337)
- Splitbutton test [\#6335](https://github.com/primefaces/primeng/issues/6335)
- Tabview unit test [\#6325](https://github.com/primefaces/primeng/issues/6325)
## [6.1.2](https://github.com/primefaces/primeng/tree/6.1.2) (2018-08-15)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.1.1...6.1.2)
**Implemented New Features and Enhancements:**
- Improve Table and TreeTable Styling in Nova [\#6324](https://github.com/primefaces/primeng/issues/6324)
## [6.1.1](https://github.com/primefaces/primeng/tree/6.1.1) (2018-08-14)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.1.0...6.1.1)
**Implemented New Features and Enhancements:**
- baseZIndex and autoZindex for all overlay components [\#6298](https://github.com/primefaces/primeng/issues/6298)
- Reimplement restore of appendTo logic of overlays [\#6286](https://github.com/primefaces/primeng/issues/6286)
- Get-started guide uses wrong css file [\#6247](https://github.com/primefaces/primeng/issues/6247)
- DataView - Paginator : Add paginatorTemplateLeft and paginatorTemplateRight on DataView component [\#6232](https://github.com/primefaces/primeng/issues/6232)
- Lazy p-table: add option for disabling initial data load and allowing to force load event manually [\#5481](https://github.com/primefaces/primeng/issues/5481)
- Date support for Table filtering [\#5441](https://github.com/primefaces/primeng/issues/5441)
- blockUI support for Table and TreeTable [\#5436](https://github.com/primefaces/primeng/issues/5436)
**Fixed bugs:**
- Event is not defined in InputSwitch [\#6314](https://github.com/primefaces/primeng/issues/6314)
- Dropdown/AutoComplete items with appendTo might have different styling [\#6313](https://github.com/primefaces/primeng/issues/6313)
- inplace editor button is misaligned [\#6310](https://github.com/primefaces/primeng/issues/6310)
- OverlayPanel position not updated if already visible [\#6289](https://github.com/primefaces/primeng/issues/6289)
- Showcase Splitbutton source code error [\#6287](https://github.com/primefaces/primeng/issues/6287)
- double clicking the checkbox/radiobutton causes the label to highlight [\#6278](https://github.com/primefaces/primeng/issues/6278)
- Dialog issue , onHide not triggered [\#6277](https://github.com/primefaces/primeng/issues/6277)
- Sorting of DataView component does not work when filtering is applied [\#6263](https://github.com/primefaces/primeng/issues/6263)
- Calendar - when using monthNavigator/yearNavigator and binding a date - current month/year is based on today vs. the bound date [\#6261](https://github.com/primefaces/primeng/issues/6261)
- Dropdown / Multiselect - Filter still applies after hiding, while displaying empty filter field [\#6256](https://github.com/primefaces/primeng/issues/6256)
- Overlay dialog not maximize without footer template [\#6246](https://github.com/primefaces/primeng/issues/6246)
- Password feedback error [\#6182](https://github.com/primefaces/primeng/issues/6182)
- dropdown. markForCheck being called before hide\(\) [\#6172](https://github.com/primefaces/primeng/issues/6172)
- p-calendar Month Picker rejects text input [\#6119](https://github.com/primefaces/primeng/issues/6119)
- Frozen columns issue with when scrollable columns present [\#5485](https://github.com/primefaces/primeng/issues/5485)
- p-table emits lazy load event twice when initializing and multiSortMeta is provided [\#5480](https://github.com/primefaces/primeng/issues/5480)
- Error in SelectButton Icons Documentation [\#5458](https://github.com/primefaces/primeng/issues/5458)
- Wrong default type of p-button [\#5453](https://github.com/primefaces/primeng/issues/5453)
- Body scrolls on touch devices when p-dialog is open, even with blockScroll="true" [\#5413](https://github.com/primefaces/primeng/issues/5413)
- ScrollPanel has incorrect height setting in .ui-scrollpanel-content. [\#5396](https://github.com/primefaces/primeng/issues/5396)
- Autocomplete - paste via mouse doesn't work [\#4397](https://github.com/primefaces/primeng/issues/4397)
**Unit Tests:**
- Test for Button Component [\#6299](https://github.com/primefaces/primeng/issues/6299)
## [6.1.0](https://github.com/primefaces/primeng/tree/6.1.0) (2018-08-06)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.1.0-rc.1...6.1.0)
**Implemented New Features and Enhancements:**
- Password panel min width should be the same as element width [\#6213](https://github.com/primefaces/primeng/issues/6213)
- Update password meter image [\#6212](https://github.com/primefaces/primeng/issues/6212)
- ToolTip for Tab-Panel [\#2262](https://github.com/primefaces/primeng/issues/2262)
**Fixed bugs:**
- Disabled rating icons still get hover [\#6244](https://github.com/primefaces/primeng/issues/6244)
- Time enabled calendars show a right border [\#6243](https://github.com/primefaces/primeng/issues/6243)
- InputGroup buttons look compressed with Firefox [\#6214](https://github.com/primefaces/primeng/issues/6214)
- Double clicking on a calendar date causes the page to reload [\#6195](https://github.com/primefaces/primeng/issues/6195)
## [6.1.0-rc.1](https://github.com/primefaces/primeng/tree/6.1.0-rc.1) (2018-08-01)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.0.2...6.1.0-rc.1)
**Implemented New Features and Enhancements:**
- New severity classes for p-messages [\#6205](https://github.com/primefaces/primeng/issues/6205)
- Upgrade to Angular 6.1.x and CLI 6.1.x [\#6202](https://github.com/primefaces/primeng/issues/6202)
- Days of other months should not render an anchor [\#6201](https://github.com/primefaces/primeng/issues/6201)
- Add ui-inplace-closable class to inplace [\#6200](https://github.com/primefaces/primeng/issues/6200)
- Align SplitButton animation with other overlay animations [\#6199](https://github.com/primefaces/primeng/issues/6199)
- Deprecate Free Themes in favor of Nova Free Theme Family [\#6198](https://github.com/primefaces/primeng/issues/6198)
**Fixed bugs:**
- Toast should export SharedModule [\#6203](https://github.com/primefaces/primeng/issues/6203)
- Dialog/OverlayPanel error when using appendTo [\#6168](https://github.com/primefaces/primeng/issues/6168)
## [6.0.2](https://github.com/primefaces/primeng/tree/6.0.2) (2018-07-26)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.0.1...6.0.2)
**Implemented New Features and Enhancements:**
- Animation for Messages [\#6160](https://github.com/primefaces/primeng/issues/6160)
- Replace anchors with spans in disabled dates of Calendar [\#6158](https://github.com/primefaces/primeng/issues/6158)
- Deprecate Growl [\#6156](https://github.com/primefaces/primeng/issues/6156)
- New Component: Toast [\#6155](https://github.com/primefaces/primeng/issues/6155)
- Disabled option support for MultiSelect [\#6148](https://github.com/primefaces/primeng/issues/6148)
- Disabled option support for Dropdown [\#6147](https://github.com/primefaces/primeng/issues/6147)
- Disabled option support for SelectButton [\#6146](https://github.com/primefaces/primeng/issues/6146)
- Disabled option support for ListBox [\#6145](https://github.com/primefaces/primeng/issues/6145)
- Reimplement Popup Mode of Menu, TieredMenu and SlideMenu [\#6141](https://github.com/primefaces/primeng/issues/6141)
- Reimplement OverlayPanel Visibility [\#6140](https://github.com/primefaces/primeng/issues/6140)
- Reimplement ConfirmDialog Visibility [\#6139](https://github.com/primefaces/primeng/issues/6139)
- Reimplement ColorPicker Overlay Visibility [\#6138](https://github.com/primefaces/primeng/issues/6138)
- Reimplement Password Overlay Visibility [\#6137](https://github.com/primefaces/primeng/issues/6137)
- Remove lazy from Dropdown [\#6135](https://github.com/primefaces/primeng/issues/6135)
- Reimplement InputSwitch [\#6134](https://github.com/primefaces/primeng/issues/6134)
- Reimplement MultiSelect Overlay Visibility [\#6133](https://github.com/primefaces/primeng/issues/6133)
- Reimplement Dropdown Overlay Visibility [\#6132](https://github.com/primefaces/primeng/issues/6132)
- Reimplement AutoComplete Overlay Visibility [\#6124](https://github.com/primefaces/primeng/issues/6124)
- Reimplement Calendar Overlay Visibility [\#6123](https://github.com/primefaces/primeng/issues/6123)
- Reimplement Dialog Visibility [\#6113](https://github.com/primefaces/primeng/issues/6113)
- Hide overlaypanel on window resize [\#6108](https://github.com/primefaces/primeng/issues/6108)
- Conditional pDraggable and pDroppable [\#6100](https://github.com/primefaces/primeng/issues/6100)
- Add disabled property to SelectItem interface [\#586](https://github.com/primefaces/primeng/issues/586)
**Fixed bugs:**
- TreeTable editable column directive name is wrong [\#6164](https://github.com/primefaces/primeng/issues/6164)
- Month Picker Year Cutoff - CSS Adjustment - Simple [\#6152](https://github.com/primefaces/primeng/issues/6152)
- MultiSelect ScrollHeight is ignored [\#6136](https://github.com/primefaces/primeng/issues/6136)
- p-calendar Month Navigator error [\#6118](https://github.com/primefaces/primeng/issues/6118)
- Decrementing year on month view doesn't display the correct year on the navigator [\#6110](https://github.com/primefaces/primeng/issues/6110)
- OverlayPanel close icon misaligned on free themes [\#6109](https://github.com/primefaces/primeng/issues/6109)
- Table: Virtual scroll broken [\#6098](https://github.com/primefaces/primeng/issues/6098)
- Dialog modal not accessible when open it, with tab key access. [\#6095](https://github.com/primefaces/primeng/issues/6095)
- TreeTable must export SharedModule [\#6034](https://github.com/primefaces/primeng/issues/6034)
- Resize column on TreeTable with scrollable and frozen feature doesnt work [\#5924](https://github.com/primefaces/primeng/issues/5924)
- p-message severity "warn" shows no icon \(primeicons\) [\#5894](https://github.com/primefaces/primeng/issues/5894)
- Color picker background color is dependent on the currently selected color not the current hue [\#4441](https://github.com/primefaces/primeng/issues/4441)
## [6.0.1](https://github.com/primefaces/primeng/tree/6.0.1) (2018-07-12)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.0.0...6.0.1)
**Implemented New Features and Enhancements:**
- Add ariaLabel to sortIcon [\#6040](https://github.com/primefaces/primeng/issues/6040)
- Add dismissable and showCloseIcon properties to Sidebar [\#6027](https://github.com/primefaces/primeng/issues/6027)
- Update to FullCalendar 4.0 [\#6022](https://github.com/primefaces/primeng/issues/6022)
- Improve Dialog Animations [\#6017](https://github.com/primefaces/primeng/issues/6017)
- GTE & LTE match modes don't exist [\#5962](https://github.com/primefaces/primeng/issues/5962)
- Udate moment version to 2.19.3 or newer [\#5926](https://github.com/primefaces/primeng/issues/5926)
- Change checkbox mode behavior in ListBox [\#5638](https://github.com/primefaces/primeng/issues/5638)
- Refactor toggle button icon binding performance [\#5596](https://github.com/primefaces/primeng/issues/5596)
- Customizable ContextMenu selection mode for Table and TreeTable [\#5558](https://github.com/primefaces/primeng/issues/5558)
- Support table style class for TurboTable \(like 'tableStyleClass' in DataTable\) [\#5189](https://github.com/primefaces/primeng/issues/5189)
- TouchUI mode for Calendar [\#4921](https://github.com/primefaces/primeng/issues/4921)
- Support for MenuItem icons in breadcrumb [\#4891](https://github.com/primefaces/primeng/issues/4891)
- Feature to display multiple months in Calendar [\#4759](https://github.com/primefaces/primeng/issues/4759)
- Feature Request: Selection limit for multiselect items [\#4614](https://github.com/primefaces/primeng/issues/4614)
- Month and Year only Calendar [\#3269](https://github.com/primefaces/primeng/issues/3269)
**Fixed bugs:**
- disabled table checkbox/radio still gets focus [\#6041](https://github.com/primefaces/primeng/issues/6041)
- Home icon of breadcrumb is ignored [\#6039](https://github.com/primefaces/primeng/issues/6039)
- ContextMenu selection style issues with row selection \(Table/TreeTable\) [\#6036](https://github.com/primefaces/primeng/issues/6036)
- UI Flicker on expandable rows of Table [\#6035](https://github.com/primefaces/primeng/issues/6035)
- we open date picker by using keyboard focus is not going into the pop up. [\#6014](https://github.com/primefaces/primeng/issues/6014)
- IE - X mark on date fields doesn't clear selected date - p-calendar [\#5998](https://github.com/primefaces/primeng/issues/5998)
- Add blockScroll to the table of properties in the dialog demo page. [\#5972](https://github.com/primefaces/primeng/issues/5972)
- Spinner allowing decimals however output has no decimal [\#5953](https://github.com/primefaces/primeng/issues/5953)
- resetFilterOnHide, p-dropdown do not clear filters on close [\#5915](https://github.com/primefaces/primeng/issues/5915)
- p-table: Bug and Fix Report - Multiselect with Shift on Filtered Table Selects Wrong Rows [\#5777](https://github.com/primefaces/primeng/issues/5777)
- Slider with step 0.1 don't working [\#5581](https://github.com/primefaces/primeng/issues/5581)
- Color problem with south-street theme [\#5504](https://github.com/primefaces/primeng/issues/5504)
- Dropdown autowidth doesn't auto-size in some cases [\#2973](https://github.com/primefaces/primeng/issues/2973)
## [6.0.0](https://github.com/primefaces/primeng/tree/6.0.0) (2018-06-20)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.0.0-rc.1...6.0.0)
**Fixed bugs:**
- Maximizable Dialog make the main window's scrollbar disappear [\#5929](https://github.com/primefaces/primeng/issues/5929)
- Select Button error when options are not defined [\#5913](https://github.com/primefaces/primeng/issues/5913)
- FileUpload styleClass not working in basic mode [\#5909](https://github.com/primefaces/primeng/issues/5909)
- Missing pi CSS class in org chart. [\#5871](https://github.com/primefaces/primeng/issues/5871)
## [6.0.0-rc.1](https://github.com/primefaces/primeng/tree/6.0.0-rc.1) (2018-06-13)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.0.0-beta.1...6.0.0-rc.1)
**Implemented New Features and Enhancements:**
- Remove autoAlign from Dialog [\#5893](https://github.com/primefaces/primeng/issues/5893)
- Remove onValueChange from Calendar [\#5891](https://github.com/primefaces/primeng/issues/5891)
- Add closeCellEdit method to Table [\#5368](https://github.com/primefaces/primeng/issues/5368)
- Turbotable column style when 'pSortableColumnDisabled' [\#5329](https://github.com/primefaces/primeng/issues/5329)
- Maximizable Dialog [\#4124](https://github.com/primefaces/primeng/issues/4124)
**Fixed bugs:**
- am-pm formatting is wrong in Calendar [\#5882](https://github.com/primefaces/primeng/issues/5882)
- Frozen columns resize fails with new TreeTable [\#5867](https://github.com/primefaces/primeng/issues/5867)
- Jumping p-dialog [\#5855](https://github.com/primefaces/primeng/issues/5855)
- Dialog may cause flicker due to repositioning [\#5387](https://github.com/primefaces/primeng/issues/5387)
- Tree: checkbox selection, items where 'selectable:false' still have a check box [\#5359](https://github.com/primefaces/primeng/issues/5359)
- p-autocomplete - ExpressionChangedAfterItHasBeenCheckedError [\#5348](https://github.com/primefaces/primeng/issues/5348)
- slideMenu keeps overflow scrollbar even on item lists smaller than viewportHeight [\#5211](https://github.com/primefaces/primeng/issues/5211)
## [6.0.0-beta.1](https://github.com/primefaces/primeng/tree/6.0.0-beta.1) (2018-06-06)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.0.0-alpha.2...6.0.0-beta.1)
**Implemented New Features and Enhancements:**
- Add onValueChange to Calendar [\#5854](https://github.com/primefaces/primeng/issues/5854)
- Remove UTC mode from Calendar [\#5853](https://github.com/primefaces/primeng/issues/5853)
- Replace FontAwesome with PrimeIcons [\#5098](https://github.com/primefaces/primeng/issues/5098)
**Fixed bugs:**
- Spinner min-max problem [\#5847](https://github.com/primefaces/primeng/issues/5847)
- TurboTable border is not showing in FF, Edge browser [\#5829](https://github.com/primefaces/primeng/issues/5829)
- p-table \(turbo table\) frozenColumns + resize not working [\#5751](https://github.com/primefaces/primeng/issues/5751)
- Height in p-chart is not applied if the responsive parameter is true [\#5748](https://github.com/primefaces/primeng/issues/5748)
- Charts: generateLegend doesn't return value [\#5669](https://github.com/primefaces/primeng/issues/5669)
- p-dropdown doesn't fire focus/blur when editable=true [\#3746](https://github.com/primefaces/primeng/issues/3746)
## [6.0.0-alpha.2](https://github.com/primefaces/primeng/tree/6.0.0-alpha.2) (2018-05-31)
[Full Changelog](https://github.com/primefaces/primeng/compare/6.0.0-alpha.1...6.0.0-alpha.2)
**Implemented New Features and Enhancements:**
- Add ui-multiselect-open class to multiselect component [\#5680](https://github.com/primefaces/primeng/issues/5680)
- New TreeTable [\#4813](https://github.com/primefaces/primeng/issues/4813)
**Fixed bugs:**
- ng-template "emptymessage" not working anymore in data-table [\#5804](https://github.com/primefaces/primeng/issues/5804)
- p-calendar timepicker UTC 12 hour wrong AM/PM [\#5772](https://github.com/primefaces/primeng/issues/5772)
- SplitButton's overlay not being removed [\#5706](https://github.com/primefaces/primeng/issues/5706)
- Turbo Table only applies the last filter before timeout [\#5660](https://github.com/primefaces/primeng/issues/5660)
- Float label not moving over input in Firefox [\#5657](https://github.com/primefaces/primeng/issues/5657)
- Docs error on file upload [\#5618](https://github.com/primefaces/primeng/issues/5618)
- TurboTable IE and Edge Resizable Columns Highlight [\#5446](https://github.com/primefaces/primeng/issues/5446)
## [6.0.0-alpha.1](https://github.com/primefaces/primeng/tree/6.0.0-alpha.1) (2018-05-18)
[Full Changelog](https://github.com/primefaces/primeng/compare/5.2.7...6.0.0-alpha.1)
**Implemented New Features and Enhancements:**
- Angular 6 Compatibility [\#5758](https://github.com/primefaces/primeng/issues/5758)
- Rxjs 6 support [\#5462](https://github.com/primefaces/primeng/issues/5462)
## [5.2.7](https://github.com/primefaces/primeng/tree/5.2.7) (2018-05-17)
[Full Changelog](https://github.com/primefaces/primeng/compare/5.2.6...5.2.7)
**Fixed bugs:**
- Screen readers should not read button icons [\#5744](https://github.com/primefaces/primeng/issues/5744)
- Tooltip life may be ignored [\#5731](https://github.com/primefaces/primeng/issues/5731)
- Calendar broken in 24hr mode between 0:00 - 1:00 [\#5705](https://github.com/primefaces/primeng/issues/5705)
- Table should apply filter if value changes [\#5664](https://github.com/primefaces/primeng/issues/5664)
## [5.2.6](https://github.com/primefaces/primeng/tree/5.2.6) (2018-05-08)
[Full Changelog](https://github.com/primefaces/primeng/compare/5.2.5...5.2.6)
**Implemented New Features and Enhancements:**
- RadioButton should focus on click [\#5702](https://github.com/primefaces/primeng/issues/5702)
**Fixed bugs:**
- Tooltip is not cleared on Safari [\#5699](https://github.com/primefaces/primeng/issues/5699)
- screen reader support of sortable headers [\#5697](https://github.com/primefaces/primeng/issues/5697)
- Tooltip with delay stick on screen when navigating [\#5693](https://github.com/primefaces/primeng/issues/5693)
- Firefox closes editable cell on right click for DataTable [\#5687](https://github.com/primefaces/primeng/issues/5687)
- p-tabview can be closed in disabled state [\#5673](https://github.com/primefaces/primeng/issues/5673)
- ValueChanged is executed when onFocus/unFocus in inputmask component [\#5672](https://github.com/primefaces/primeng/issues/5672)
## [5.2.5](https://github.com/primefaces/primeng/tree/5.2.5) (2018-04-26)
[Full Changelog](https://github.com/primefaces/primeng/compare/5.2.4...5.2.5)
**Implemented New Features and Enhancements:**
- Add modal property to Sidebar [\#5634](https://github.com/primefaces/primeng/issues/5634)
- 100% compatible tslint checks [\#5598](https://github.com/primefaces/primeng/issues/5598)
- Spinner should keep focus on input [\#5555](https://github.com/primefaces/primeng/issues/5555)
- Add trackBy to PickList [\#5536](https://github.com/primefaces/primeng/issues/5536)
- Custom export for TurboTable [\#5493](https://github.com/primefaces/primeng/issues/5493)
- Add resetPageOnSort property to table [\#5464](https://github.com/primefaces/primeng/issues/5464)
- Two way binding for TabView activeIndex [\#5270](https://github.com/primefaces/primeng/issues/5270)
- Add support for max-height on ScrollPanel [\#5250](https://github.com/primefaces/primeng/issues/5250)
- Hide ContextMenu on window resize [\#5200](https://github.com/primefaces/primeng/issues/5200)
- Update Issue template to use Stackblitz instead of Plunkr [\#5187](https://github.com/primefaces/primeng/issues/5187)
- Footer for multiselect [\#5174](https://github.com/primefaces/primeng/issues/5174)
- Added box-sizing: border-box to ui-g [\#5144](https://github.com/primefaces/primeng/issues/5144)
- Use Ng-Template for Selectbutton options. [\#5124](https://github.com/primefaces/primeng/issues/5124)
- Schedule - Emit events navLinkDayClick and navLinkWeekClick available at Full Calendar [\#5117](https://github.com/primefaces/primeng/issues/5117)
- Use same align on TurboTable on editable cell for input and output template [\#5102](https://github.com/primefaces/primeng/issues/5102)
- Add inputStyle and inputStyleClass to Spinner [\#5093](https://github.com/primefaces/primeng/issues/5093)
- acceptLabel - rejectLabel are not settable with ConfirmationService [\#5090](https://github.com/primefaces/primeng/issues/5090)
- PrimeNg Growl component causes Protractor synchronisation with Angular failure [\#4681](https://github.com/primefaces/primeng/issues/4681)
**Fixed bugs:**
- Spinner field have problems with min negative values [\#5656](https://github.com/primefaces/primeng/issues/5656)
- TableHeaderCheckbox not synced with filtering [\#5637](https://github.com/primefaces/primeng/issues/5637)
- Disabled radio button is still editable [\#5633](https://github.com/primefaces/primeng/issues/5633)
- Visible property has no effect on TieredMenu and Menubar [\#5632](https://github.com/primefaces/primeng/issues/5632)
- FileUpload hover animation is not disabled when the component is disabled [\#5591](https://github.com/primefaces/primeng/issues/5591)
- Table - Row Reorder navigates to "b.com" after row drag/drop in Firefox [\#5577](https://github.com/primefaces/primeng/issues/5577)
- Calendar Max Date issue [\#5535](https://github.com/primefaces/primeng/issues/5535)
- input-mask model doesn't update when select-all and delete input [\#5531](https://github.com/primefaces/primeng/issues/5531)
- keyfilter validation when empty but there is no "required" validator [\#5520](https://github.com/primefaces/primeng/issues/5520)
- Sort icon not correctly display [\#5509](https://github.com/primefaces/primeng/issues/5509)
- Table .reset\(\) not resetting column sort style [\#5499](https://github.com/primefaces/primeng/issues/5499)
- Autocomplete multiple forceSelection [\#5498](https://github.com/primefaces/primeng/issues/5498)
- Table frozen column and caption position [\#5491](https://github.com/primefaces/primeng/issues/5491)
- Scrollable-header does not show when p-table is on tabView [\#5451](https://github.com/primefaces/primeng/issues/5451)
- TurboTable - tabbing from an edited cell doesn´t emit onEditComplete [\#5282](https://github.com/primefaces/primeng/issues/5282)
- panel component animation 'collapsed model' driven bug [\#5274](https://github.com/primefaces/primeng/issues/5274)
- Calendar dates display URL when dragged [\#5263](https://github.com/primefaces/primeng/issues/5263)
- Sub-menu incorrectly align with Primeng 5.2 [\#5218](https://github.com/primefaces/primeng/issues/5218)
- Navigation buttons in gallery component embedded in an overlay panel is not clickable [\#5207](https://github.com/primefaces/primeng/issues/5207)
- MenuBar without AutoDisplay: menu doesn't close when clicked [\#5196](https://github.com/primefaces/primeng/issues/5196)
- Scrolling in TurboTable with 'virtualScroll' and 'lazy' enabled leads to jumping [\#5193](https://github.com/primefaces/primeng/issues/5193)
- p-tabMenu should specify item ID attribute [\#5184](https://github.com/primefaces/primeng/issues/5184)
- MegaMenuModule component : ERROR TypeError: Cannot read property 'styleClass' of undefined [\#5169](https://github.com/primefaces/primeng/issues/5169)
- Listbox readonly property doesn't work [\#5168](https://github.com/primefaces/primeng/issues/5168)
- DragAndDrop: dragHandle attribute doesn't work properly [\#5167](https://github.com/primefaces/primeng/issues/5167)
- Autocomplete readonly and forceSelection not work on multiple mode [\#5159](https://github.com/primefaces/primeng/issues/5159)
- DataTable/p-table: sorting doesn't check for null values in multisort mode [\#5158](https://github.com/primefaces/primeng/issues/5158)
- Menubar active item not disappearing with OnPush strategy [\#5131](https://github.com/primefaces/primeng/issues/5131)
- Chips component "max" is limiting does not work [\#5123](https://github.com/primefaces/primeng/issues/5123)
- CodeHighlighter doesn't work in \*ngFor loop [\#5121](https://github.com/primefaces/primeng/issues/5121)
- "disabled" property not working on tableRadioButton and tableCheckbox [\#5095](https://github.com/primefaces/primeng/issues/5095)
- Weird behavior when editing p-spinner and min is set [\#5073](https://github.com/primefaces/primeng/issues/5073)
- KeyFilter pValidateOnly does not accept Null values [\#5047](https://github.com/primefaces/primeng/issues/5047)
- Bug with overlaypanel in 4.3.0 [\#4327](https://github.com/primefaces/primeng/issues/4327)
## [5.2.4](https://github.com/primefaces/primeng/tree/5.2.4) (2018-03-28)
[Full Changelog](https://github.com/primefaces/primeng/compare/5.2.3...5.2.4)
**Implemented New Features and Enhancements:**
- New mode to keyfilter to validate whole value [\#5433](https://github.com/primefaces/primeng/issues/5433)
- Add name property to MultiSelect [\#4991](https://github.com/primefaces/primeng/issues/4991)
- Responsive FileUpload [\#4981](https://github.com/primefaces/primeng/issues/4981)
- labelStyleClass for Checkbox and RadioButton [\#4847](https://github.com/primefaces/primeng/issues/4847)
- name property for p-spinner [\#4821](https://github.com/primefaces/primeng/issues/4821)
- showHeader property for MultiSelect [\#4787](https://github.com/primefaces/primeng/issues/4787)
- Add focus\(\) method to Dropdown [\#4752](https://github.com/primefaces/primeng/issues/4752)
- Add \[autofocus\]="value" in input \(inputMask\) [\#4722](https://github.com/primefaces/primeng/issues/4722)
- Support composite icon inside a button with no label [\#4719](https://github.com/primefaces/primeng/issues/4719)
- Add hideOnDateTimeSelect property to Calendar [\#4710](https://github.com/primefaces/primeng/issues/4710)
- Add onClick event to Dropdown [\#4702](https://github.com/primefaces/primeng/issues/4702)
**Fixed bugs:**
- SplitButton alignment issues with inline content [\#5443](https://github.com/primefaces/primeng/issues/5443)
- rowIndex broken in TurboTable Paginator [\#5442](https://github.com/primefaces/primeng/issues/5442)
- p-growl show 'null' in IE, if without detail [\#5420](https://github.com/primefaces/primeng/issues/5420)
- AutoComplete - ui-state-filled is not updated when remove items thought backspace [\#5369](https://github.com/primefaces/primeng/issues/5369)
- InputMask issue on Android devices [\#5361](https://github.com/primefaces/primeng/issues/5361)
- Documentation error on Dialog [\#5356](https://github.com/primefaces/primeng/issues/5356)
- Turbo table: rowIndex attribute is not attached to event for onRowSelection event [\#5349](https://github.com/primefaces/primeng/issues/5349)
- EffectDuration is ignored in Galleria [\#5345](https://github.com/primefaces/primeng/issues/5345)
- Shift key selection only works on first page [\#5330](https://github.com/primefaces/primeng/issues/5330)
- Bug in p-chart.ts template [\#5322](https://github.com/primefaces/primeng/issues/5322)
- Table tries to sort even sorting is not used [\#5321](https://github.com/primefaces/primeng/issues/5321)
- Scrollable Table misaligns after page-filter [\#5320](https://github.com/primefaces/primeng/issues/5320)
- TurboTable with virtualScroll not display records when totalRecords is set after ngOnInit [\#5303](https://github.com/primefaces/primeng/issues/5303)
- TurboTable Frozen columns and Virtual scroll bottom alignment [\#5245](https://github.com/primefaces/primeng/issues/5245)
- Table checkbox selection ignores filtering [\#5220](https://github.com/primefaces/primeng/issues/5220)
- Autocomplete does not emit onClear event with forceSelection [\#5142](https://github.com/primefaces/primeng/issues/5142)
- class .ui-inputwrapper-filled is not removed on Dropdown [\#5109](https://github.com/primefaces/primeng/issues/5109)
- The array of objects displayed in the p-table is not displayed in original order when using row grouping [\#5050](https://github.com/primefaces/primeng/issues/5050)
- AutoComplete fails with async pipe [\#5030](https://github.com/primefaces/primeng/issues/5030)
- p-card control's line-height style causes inconsistent heights with internal controls [\#5001](https://github.com/primefaces/primeng/issues/5001)
- Resize+Reorder combination fails on TurboTable header [\#4957](https://github.com/primefaces/primeng/issues/4957)
- Organization Chart Alignment problems [\#4906](https://github.com/primefaces/primeng/issues/4906)
- Multiselect updateLabel fails when selectedItemsLabel does not include {} [\#4905](https://github.com/primefaces/primeng/issues/4905)
- Gmap component doesn't remove listeners when removing markers. [\#4873](https://github.com/primefaces/primeng/issues/4873)
- Editor empty value contains formattings [\#4843](https://github.com/primefaces/primeng/issues/4843)
- fullTemplateTypeCheck option incompatibility [\#4832](https://github.com/primefaces/primeng/issues/4832)
- Progressbar label not visible for 0 [\#4831](https://github.com/primefaces/primeng/issues/4831)
- Basic FileUpload fails to clear input field on call to clear\(\) [\#4816](https://github.com/primefaces/primeng/issues/4816)
- p-dialog \[minHeight\] missing [\#4814](https://github.com/primefaces/primeng/issues/4814)
- Accordion RTL icon is wrong [\#4749](https://github.com/primefaces/primeng/issues/4749)
- Dropdown autoWidth is not updated on value change [\#4747](https://github.com/primefaces/primeng/issues/4747)
- Calendar dateType ignored in multiple/range modes [\#4724](https://github.com/primefaces/primeng/issues/4724)
- Autocomplete suggestions are displayed on calendar input [\#4691](https://github.com/primefaces/primeng/issues/4691)
- Tooltip in scrolling containers doens't work [\#4450](https://github.com/primefaces/primeng/issues/4450)
- p-inputMask Cursor-Keys "Left/Right" don't work correctly on Firefox [\#3772](https://github.com/primefaces/primeng/issues/3772)
- Spinner: decimals are separated by the thousand separator [\#2993](https://github.com/primefaces/primeng/issues/2993)
## [5.2.3](https://github.com/primefaces/primeng/tree/5.2.3) (2018-03-09)
[Full Changelog](https://github.com/primefaces/primeng/compare/5.2.2...5.2.3)
**Implemented New Features and Enhancements:**
- Dialog positioning improvement [\#2795](https://github.com/primefaces/primeng/issues/2795)
## [5.2.2](https://github.com/primefaces/primeng/tree/5.2.2) (2018-03-09)
[Full Changelog](https://github.com/primefaces/primeng/compare/5.2.1...5.2.2)
**Implemented New Features and Enhancements:**
- Add minX and minY to dialog [\#5313](https://github.com/primefaces/primeng/issues/5313)